blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
171
content_id
stringlengths
40
40
detected_licenses
sequencelengths
0
8
license_type
stringclasses
2 values
repo_name
stringlengths
6
82
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
13 values
visit_date
timestamp[ns]
revision_date
timestamp[ns]
committer_date
timestamp[ns]
github_id
int64
1.59k
594M
star_events_count
int64
0
77.1k
fork_events_count
int64
0
33.7k
gha_license_id
stringclasses
12 values
gha_event_created_at
timestamp[ns]
gha_created_at
timestamp[ns]
gha_language
stringclasses
46 values
src_encoding
stringclasses
14 values
language
stringclasses
2 values
is_vendor
bool
2 classes
is_generated
bool
1 class
length_bytes
int64
4
7.87M
extension
stringclasses
101 values
filename
stringlengths
2
149
content
stringlengths
4
7.87M
has_macro_def
bool
2 classes
96f9b3864bb70b32f7e6163a4a5f7384451e8090
9db1a54c264a331b41e352365e143c7b2b2e6a3e
/code/chapter_2/Ex.2.58.b.rkt
e1673104d04d173497cece8d26758802d10f4202
[]
no_license
magic3007/sicp
7103090baa9a52a372be360075fb86800fcadc70
b45e691ae056410d0eab57d65c260b6e489a145b
refs/heads/master
2021-01-27T10:20:28.743896
2020-06-05T15:17:10
2020-06-05T15:17:10
243,478,192
4
0
null
null
null
null
UTF-8
Racket
false
false
1,749
rkt
Ex.2.58.b.rkt
#lang racket (define variable? symbol?) (define same-variable? eq?) (define sum? (curry member '+)) (define product? (curry member '*)) (define (wrap e) (if (list? e) e (list e))) (define (unwrap e) (if (and (list? e) (null? (cdr e))) (unwrap (car e)) e)) (define (make-sum x y) (cond [(eq? 0 x) y] [(eq? 0 y) x] [else (append (wrap x) (list '+) (wrap y))])) (define (make-product x y) (cond [(or (eq? x 0) (eq? y 0)) 0] [(eq? x 1) y] [(eq? y 1) x] [else (list x '* y)])) (define (index-of lst v n) (if (null? lst) (error "wrong format") (if (eq? (car lst) v) n (index-of (cdr lst) v (add1 n))))) (define (split lst dlt) (let* ([index (index-of lst dlt 0)]) (values (take lst index) (drop lst (add1 index))))) (define (addend e) (let-values ([(a b) (split e '+)]) (unwrap a))) (define (augend e) (let-values ([(a b) (split e '+)]) (unwrap b))) (define (multiplier e) (let-values ([(a b) (split e '*)]) (unwrap a))) (define (multiplicand e) (let-values ([(a b) (split e '*)]) (unwrap b))) (define (deriv exp var) (cond ((number? exp ) 0) ((variable? exp) (if (same-variable? exp var) 1 0)) ((sum? exp) (make-sum (deriv (addend exp) var) (deriv (augend exp) var))) ((product? exp) (make-sum (make-product (multiplier exp) (deriv (multiplicand exp) var)) (make-product (deriv (multiplier exp) var) (multiplicand exp)))) (else (error "wrong format")))) (define (myloop) (let ((a (read))) (if (eq? a eof) (void) (begin (display (deriv a 'x)) (newline) (myloop))))) (myloop)
false
86e1be2b598d93274fbd3db18fb68f834b05c041
2668b85397ac70375f66eb65f7f55f509e0a1e75
/hato/hato_racket_2.rkt
55c0757afc24a64afc4a0a4575c5222e6be1b68f
[]
no_license
reonaito/repo
ca6ef908eb670e5546ea1de4f1dfff0b8df662f1
21ac72631f5fa0160b2a83a5dc4e22b1516ad07b
refs/heads/master
2020-03-19T20:19:28.423734
2019-02-22T08:42:06
2019-02-22T08:42:06
136,896,567
0
0
null
null
null
null
UTF-8
Racket
false
false
367
rkt
hato_racket_2.rkt
#lang racket (define-syntax f (begin (display "窓は閉めましたよね? (y/n)\n") (lambda (x) (syntax-case x (y) ((_) (let ((c (read))) #`(f #,c))) ((_ y) #'(display "お疲れ様でした.\n")) (_ (begin (display "窓を閉めてください.鳩が入ります.\n") #'(f))))))) (f)
true
fbbe6bd886dfe34ab33526fa9b822d92a9687193
4f5f8ef5be95f239f013495fb75c0c47d4cb3597
/tool/syntax-color.rkt
548d636b69ce882c1bee84629035d70089355a45
[]
no_license
kugelblitz/calc
c4c0a3889809174a4aaf88dcd3496b455fa82d6e
f1432642389d6aadcfd74ca1d1ad45582a3113eb
refs/heads/master
2021-01-18T13:57:32.716243
2011-11-02T08:44:31
2011-11-02T08:44:31
2,682,587
2
0
null
null
null
null
UTF-8
Racket
false
false
970
rkt
syntax-color.rkt
#lang racket (require parser-tools/lex (prefix-in : parser-tools/lex-sre) calc/lexer) (provide get-syntax-token) (define (syn-val lexeme type paren start end) (values lexeme type paren (position-offset start) (position-offset end))) (define get-syntax-token (lexer ((:+ whitespace) (syn-val lexeme 'whitespace #f start-pos end-pos)) (lex:comment (syn-val lexeme 'comment #f start-pos end-pos)) (lex:number (syn-val lexeme 'constant #f start-pos end-pos)) ((lex-ci "print") (syn-val lexeme 'keyword #f start-pos end-pos)) (lex:identifier (syn-val lexeme 'symbol #f start-pos end-pos)) ((:or #\+ #\- #\/ #\* #\=) (syn-val lexeme 'parenthesis #f start-pos end-pos)) (#\( (syn-val lexeme 'parenthesis '|(| start-pos end-pos)) (#\) (syn-val lexeme 'parenthesis '|)| start-pos end-pos)) ((eof) (syn-val lexeme 'eof #f start-pos end-pos)) (any-char (syn-val lexeme 'error #f start-pos end-pos))))
false
124081b311ad54eae660fa0a2043a139d724583e
1335ef22e0c7a074fb85cedd91d43518f0a960d7
/Assignments/Assignment8/a8.2.3.rkt
ac0fb26a74924ee1b1863283632459f031aea1f3
[]
no_license
zhengguan/Scheme
55d35fbf40790fd22cd98876dba484e5bd59ad99
e27eedd2531c18a9b23134dc889a4ed1a0cd22c9
refs/heads/master
2021-01-13T04:58:50.945397
2014-12-19T05:24:36
2014-12-19T05:24:36
29,330,341
1
0
null
2015-01-16T03:12:28
2015-01-16T03:12:28
null
UTF-8
Racket
false
false
1,288
rkt
a8.2.3.rkt
#lang racket (require C311/pmatch) (define k* 'kahii) (define n* 'kahii) (define ls* 'kahii) (define empty-k (lambda () (lambda (v) v))) (define inner-k-depth (lambda (define ack (lambda (m n k) (cond [(zero? m) (k (add1 n))] [(zero? n) (ack (sub1 m) 1 k)] [else (ack m (sub1 n) (lambda (v) (ack (sub1 m) v k)))]))) (define depth (lambda (ls k) (cond [(null? ls) (k 1)] [(pair? (car ls)) (depth (car ls) (lambda (l) (depth (cdr ls) (lambda (r) (let ((l (add1 l))) (k (if (< l r) r l)))))))] [else (depth (cdr ls) k)]))) (define fact (lambda (n k) ((lambda (fact k) (fact fact n k)) (lambda (fact n k) (cond [(zero? n) (k 1)] [else (fact fact (sub1 n) (lambda (v) (k (* n v))))])) k))) (define pascal (lambda (n k) (let ((pascal (lambda (pascal k) (k (lambda (m a k) (cond [(> m n) (k '())] [else (let ((a (+ a m))) (pascal pascal (lambda (f) (f (add1 m) a (lambda (v) (k (cons a v)))))))])))))) (pascal pascal (lambda (f) (f 1 0 k)))))) (ack 0 0 (empty-k)) ;7 (depth '(1 (2 (3 (4)))) (empty-k)) ;4 (fact 5 (empty-k)) ;120 (pascal 10 (empty-k)) ;(1 3 6 10 15 21 28 36 45 55)
false
09134c81fcb3449db67e0ef1a81f118319940e51
00ff1a1f0fe8046196c043258d0c5e670779009b
/test/base/term.rkt
f49b060d2f76cf7a314f0e1c274019826eb5375b
[ "BSD-2-Clause" ]
permissive
edbutler/rosette
73364d4e5c25d156c0656b8292b6d6f3d74ceacf
55dc935a5b92bd6979e21b5c12fe9752c8205e7d
refs/heads/master
2021-01-14T14:10:57.343419
2014-10-26T05:12:03
2014-10-26T05:12:03
27,899,312
1
0
null
null
null
null
UTF-8
Racket
false
false
1,466
rkt
term.rkt
#lang racket (require rackunit rackunit/text-ui rosette/base/term rosette/base/bool rosette/base/num (only-in rosette/base/define define-symbolic)) (define-symbolic x @number?) (define-symbolic y @number?) (define-symbolic z @number?) (define-symbolic a @boolean?) (define-symbolic b @boolean?) (define-symbolic c @boolean?) (define (check-ordered v1 v2) (check-true (and (or (term<? v1 v2) (term<? v2 v1)) (not (and (term<? v1 v2) (term<? v2 v1)))))) (define (check-cached op . args) (check-true (equal? (apply op args) (apply op args)))) (define value-tests (test-suite "Tests for rosette/base/term.rkt" #:before (lambda () (printf "Testing rosette/base/term.rkt\n")) (check-false (term<? x x)) (check-false (term<? a a)) (check-false (term<? (&& a b) (&& b a))) (check-false (term<? (@+ x y z) (@+ x y z))) (check-ordered b a) (check-ordered x a) (check-ordered x y) (check-ordered (! b) (! a)) (check-ordered (&& b a) (&& a c)) (check-ordered x (@* x y)) (check-ordered (@/ x y) (@- x y)) (check-ordered (@expt x y) (@+ x y z)) (check-ordered a (|| a b)) (check-cached && a b) (check-cached || a b) (check-cached ! a) (check-cached @+ x y) (check-cached @- x y) (check-cached @* x y) (check-cached @/ x y) (check-cached @expt x y) (check-cached @= x y) (check-cached @< x y))) (time (run-tests value-tests))
false
fd3ae4208801ff1e5577140d9170f86bcbcd44bc
0ef2678b48fd4ace9b2b941224a04283a287e7ed
/cover-test/cover/tests/do-syntax.rkt
2ee4af9eab1cd0d0c562bcadf64ea6a427398b80
[ "MIT" ]
permissive
florence/cover
7cdc72379f6afdf7c9e06a20f6581d19333c24d1
bc17e4e22d47b1da91ddaa5eafefe28f4675e85c
refs/heads/master
2022-05-31T21:40:14.776498
2020-03-10T13:59:25
2020-03-10T13:59:25
24,347,312
42
11
MIT
2022-05-15T12:22:00
2014-09-22T22:04:32
Racket
UTF-8
Racket
false
false
427
rkt
do-syntax.rkt
#lang racket (require cover rackunit racket/runtime-path) (define-runtime-path syntax.rkt "syntax.rkt") (test-begin (parameterize ([current-cover-environment (make-cover-environment)]) (test-files! syntax.rkt) (define x (get-test-coverage)) (define c? (curry x (path->string syntax.rkt))) (for ([i (in-naturals 1)] [_ (in-string (file->string syntax.rkt))]) (check-not-eq? (c? i) 'uncovered (~a i)))))
false
e9fca9632fafd7bff6552ba1aa93efe8167024a0
14be9e4cde12392ebc202e69ae87bbbedd2fea64
/CSC324/lecture/w7/simple-class.rkt
ef36e359e157c8e44f16e79c82836b395ff4b837
[ "LicenseRef-scancode-unknown-license-reference", "GLWTPL" ]
permissive
zijuzhang/Courses
948e9d0288a5f168b0d2dddfdf825b4ef4ef4e1e
71ab333bf34d105a33860fc2857ddd8dfbc8de07
refs/heads/master
2022-01-23T13:31:58.695290
2019-08-07T03:13:09
2019-08-07T03:13:09
null
0
0
null
null
null
null
UTF-8
Racket
false
false
947
rkt
simple-class.rkt
#lang racket (require "mm.rkt") ; Let's make this #;(class (Point a b) [a a] [b b] [size (sqrt (+ (sqr a) (sqr b)))] [double (set! a (* 2 a)) (set! b (* 2 b))]) ; mean this: #;(define (Point a b) (λ (message) (match message ['a a] ['b b] ['size (sqrt (+ (sqr a) (sqr b)))] ['double (set! a (* 2 a)) (set! b (* 2 b))]))) (define-syntax class (syntax-rules () [(class (class-id init-id ...) [method-id body-expr ...] ...) (define (class-id init-id ...) (λ (message) (match message ['method-id body-expr ...] ...)))])) (class (Point a b) [a a] [b b] [size (sqrt (+ (sqr a) (sqr b)))] [double (set! a (* 2 a)) (set! b (* 2 b))]) (define p0 (Point 3 4)) (p0 'size) (define p1 (Point 8 15)) (p0 'double) (p0 'size) (p1 'size)
true
4f286416a991d1314253a2cb319b12d525a6e496
ea02bd6dd8db9d22c3c8b471952a548a657054e2
/healer-farm-enemies/main.rkt
d916118d34590d8c9c07d3777c48914225019c59
[ "Apache-2.0" ]
permissive
thoughtstem/healer
d8d0f7ed5b137e2da1401bfd6fe892582c76e113
4a7c7affe7a7b007504677fd2d3adb0e8a89dabc
refs/heads/master
2020-07-31T16:03:50.589547
2019-09-26T23:16:57
2019-09-26T23:16:57
210,666,646
0
1
null
null
null
null
UTF-8
Racket
false
false
1,144
rkt
main.rkt
#lang racket (require ratchet) (define-ratchet-lang (provide (all-from-out racket) (all-from-out healer-farm-lib) (all-from-out animal-assets)) (require racket animal-assets healer-farm-lib (only-in 2htdp/image square) ) #:wrapper launch-game-engine [start = play-icon] [llama l (draw-sprite llama)] [horse h (draw-sprite horse)] [cow c (draw-sprite cow)] [rabbit r (draw-sprite rabbit)] [sheep s (draw-sprite sheep)] [dog d (draw-sprite dog)] [wolf w (draw-sprite wolf)] [apple a (draw-sprite apple)] [grapes g (draw-sprite grapes)] [kiwi k (draw-sprite kiwi)] [pepper p (draw-sprite pepper)] [copper x (draw-sprite copper)] [silver y (draw-sprite silver)] [gold z (draw-sprite gold)] [rand ? question-icon] [red R (square 32 'solid 'red)] [orange O (square 32 'solid 'orange)] [yellow Y (square 32 'solid 'yellow)] [green G (square 32 'solid 'green)] [blue B (square 32 'solid 'blue)] [purple P (square 32 'solid 'purple)])
false
0c644662139435108d51c91858fc6677a343c9a2
69609239b747008bc3f5e6fad0f10df5fd176051
/example/rfib.rkt
7431ca1bd6347d2ed049e1778c1a4b63a953af6e
[]
no_license
lwhjp/racket-asm
9cbebfeddd4e7caaaad51edc1d9acbefc8488796
57abd235fcb8c7505990f8e9731c01c716324ee5
refs/heads/master
2021-07-18T18:09:16.313611
2021-02-28T05:25:36
2021-02-28T05:25:36
48,312,940
19
2
null
null
null
null
UTF-8
Racket
false
false
626
rkt
rfib.rkt
#lang racket ;; ;; Translated from the GNU lightning Fibonacci example ;; (require asm asm/generic ffi/unsafe) (provide rfib rfib-obj) (define rfib-obj (assemble #:global rfib #:label top (prolog) (getarg v0 (arg 0)) (blt 'end v0 2) (sub v1 v0 1) (sub v2 v0 2) (prepare) (putarg (arg 0) v1) (finish 'top) (retval v1) (prepare) (putarg (arg 0) v2) (finish 'top) (retval v2) (add v1 v1 1) (add r0 v1 v2) (epilog) (ret r0) #:label end (mov r0 1) (epilog) (ret r0))) (define rfib (object->proc rfib-obj (_fun _int -> _int)))
false
ef1bf4698d7c6b369c08b40b3e8f50fcdb54618c
37858e0ed3bfe331ad7f7db424bd77bf372a7a59
/book/2ed/10_1-impl/4-interface/reify-s.rkt
67108b56d51481c1ac39d8b2a769bed6733aa9bf
[]
no_license
chansey97/the-reasoned-schemer
ecb6f6a128ff0ca078a45e097ddf320cd13e81bf
a6310920dde856c6c98fbecec702be0fbc4414a7
refs/heads/main
2023-05-13T16:23:07.738206
2021-06-02T22:24:51
2021-06-02T22:24:51
364,944,122
0
0
null
null
null
null
UTF-8
Racket
false
false
1,287
rkt
reify-s.rkt
#lang racket (require "../1-substitution/var.rkt") (require "../1-substitution/empty-s.rkt") (require "../1-substitution/walk.rkt") (provide (all-defined-out)) ;; 10.93 (define (reify-name n) (string->symbol (string-append "_" (number->string n)))) ;; 10.104 (define (reify-s v r) (let ((v (walk v r))) (cond ((var? v) (let ((n (length r))) (let ((rn (reify-name n))) (cons `(,v . ,rn) r)))) ((pair? v) (let ((r (reify-s (car v) r))) (reify-s (cdr v) r))) (else r)))) (module+ main (define u (var 'u)) (define v (var 'v)) (define w (var 'w)) (define x (var 'x)) (define y (var 'y)) (define z (var 'z)) ;; reified name substitution ;; `((,z . _2 ) (,y . _1) (,x . _0)) ;; 注意: ;; (reify-s v empty-s) ;; reify-s的初始参数必须是空的subst,第一个参数必须是被walk*ed,也就是说第一个参数里假定变量都是fresh的 ;; 尽管这些约束无法体现在reify的参数里 ;; reify-s的目的是根据v里的变量生成出一个reified name substitution ;; 也就是把v里的所有变量全部变成`((,z . _2 ) (,y . _1) (,x . _0))这样的东西 (reify-s `(99 123 ,x) empty-s) )
false
05152b6f98638b961ebe10be7d67f36e439f524a
b0c07ea2a04ceaa1e988d4a0a61323cda5c43e31
/langs/fraud-plus/semantics.rkt
e96186bb8409e4e626a89f10bd8a96920ae03a0f
[ "AFL-3.0" ]
permissive
cmsc430/www
effa48f2e69fb1fd78910227778a1eb0078e0161
82864f846a7f8f6645821e237de42fac94dff157
refs/heads/main
2023-09-03T17:40:58.733672
2023-08-28T15:26:33
2023-08-28T15:26:33
183,064,322
39
30
null
2023-08-28T15:49:59
2019-04-23T17:30:12
Racket
UTF-8
Racket
false
false
1,722
rkt
semantics.rkt
#lang racket (provide F 𝑭-𝒆𝒏𝒗) (require redex/reduction-semantics (rename-in (only-in "../fraud/semantics.rkt" F 𝑭-𝒆𝒏𝒗) [F F-] [𝑭-𝒆𝒏𝒗 𝑭--𝒆𝒏𝒗])) ; for use in presentations (informally noting x can't be let, etc.) (define-extended-language F F- (e ::= .... (cond [e_p0 e_a0] ... [else e_an]))) (define-extended-judgment-form F 𝑭--𝒆𝒏𝒗 #:contract (𝑭-𝒆𝒏𝒗 e r a) #:mode (𝑭-𝒆𝒏𝒗 I I O) [(𝑭-𝒆𝒏𝒗 e_p0 r v_p0) ... (is-false v_p0) ... (𝑭-𝒆𝒏𝒗 e_pk r v) (is-true v) (𝑭-𝒆𝒏𝒗 e_ak r a) -------- (𝑭-𝒆𝒏𝒗 (cond [e_p0 e_a0] ... [e_pk e_ak] [e_pk+1 e_ak+1] ... [else e_an]) r a)] [(𝑭-𝒆𝒏𝒗 e_p0 r v_p0) ... (is-false v_p0) ... (𝑭-𝒆𝒏𝒗 e_an r a) -------- (𝑭-𝒆𝒏𝒗 (cond [e_p0 e_a0] ... [else e_an]) r a)] [(𝑭-𝒆𝒏𝒗 e_p0 r v_p0) ... (is-false v_p0) ... (𝑭-𝒆𝒏𝒗 e_pk r err) -------- (𝑭-𝒆𝒏𝒗 (cond [e_p0 e_a0] ... [e_pk e_ak] [e_pk+1 e_ak+1] ... [else e_an]) r err)] #| [(𝑭-𝒆𝒏𝒗 e_0 r v_0) (𝑭-𝒆𝒏𝒗 e_1 (ext r x v_0) a) ----- "let" (𝑭-𝒆𝒏𝒗 (let ((x e_0)) e_1) r a)] [(𝑭-𝒆𝒏𝒗 e_0 r err) ----------- "let-err" (𝑭-𝒆𝒏𝒗 (let ((x e_0)) e_1) r err)] ;; Primitive application [(𝑭-𝒆𝒏𝒗 e_0 r a_0) ----------- "prim" (𝑭-𝒆𝒏𝒗 (p e_0) r (𝑭-𝒑𝒓𝒊𝒎 (p a_0)))]) |# ) (define-judgment-form F #:mode (is-true I) #:contract (is-true v) [---- (is-true #t)] [----- (is-true i)]) (define-judgment-form F #:mode (is-false I) #:contract (is-false v) [---- (is-false #f)])
false
18607c41d7c619d25ca5c37ab5234e56a7dd0868
b811ad0c7f77c5e39c995719b632197dbdafeb8f
/external.rkt
36c514dce510c651c889dfb946546aae38c56dd2
[ "Apache-2.0", "MIT" ]
permissive
sorawee/find-expr
36a25866413b1cb72195f3b79cd109c59f4cb940
441c8c37ef4dc14c1dac9ad63c5e069b257cfc33
refs/heads/master
2022-12-03T01:34:05.517031
2020-08-24T17:50:23
2020-08-24T17:50:23
289,982,088
0
0
null
null
null
null
UTF-8
Racket
false
false
2,795
rkt
external.rkt
#lang racket/base (provide clickable-image-snip%) (require racket/class racket/gui/base) (define arrow-cursor (make-object cursor% 'arrow)) (define (clickable-snip-mixin snip%) (class snip% (init-rest args) (inherit get-flags set-flags get-admin get-extent) (define callback void) (define/public (set-callback cb) (set! callback cb)) (define/public (get-callback) callback) (define grabbed? #f) (define in-bounds? #f) (define/private (set-clicked new-grabbed? new-in-bounds? dc) (define needs-invalidate? (or (not (equal? grabbed? new-grabbed?)) (not (equal? new-in-bounds? in-bounds?)))) (set! grabbed? new-grabbed?) (set! in-bounds? new-in-bounds?) (when needs-invalidate? (invalidate dc))) (define/override (draw dc x y left top right bottom dx dy draw-caret) (super draw dc x y left top right bottom dx dy draw-caret) (when (and in-bounds? grabbed?) (let ([brush (send dc get-brush)] [pen (send dc get-pen)]) (let-values ([(w h) (get-w/h dc)]) (send dc set-brush (send the-brush-list find-or-create-brush "black" 'hilite)) (send dc set-pen (send the-pen-list find-or-create-pen "white" 1 'transparent)) (send dc draw-rectangle x y w h) (send dc set-pen pen) (send dc set-brush brush))))) (define/override (on-event dc x y editorx editory evt) (define-values (w h) (get-w/h dc)) (define in-bounds? (and (<= (- (send evt get-x) x) w) (<= (- (send evt get-y) y) h))) (cond [(send evt button-down? 'left) (set-clicked #t in-bounds? dc)] [(send evt button-up? 'left) (let ([admin (send this get-admin)]) (when admin (send (send admin get-editor) set-caret-owner #f 'global))) (when (and grabbed? in-bounds?) (callback this)) (set-clicked #f in-bounds? dc)] [else (set-clicked grabbed? in-bounds? dc)])) (define/private (invalidate dc) (let ([admin (get-admin)]) (when admin (let-values ([(w h) (get-w/h dc)]) (send admin needs-update this 0 0 w h))))) (define/private (get-w/h dc) (let ([wb (box 0)] [hb (box 0)]) ;; know that the snip is the same size everywhere, ;; so just use (0,0) for its position (get-extent dc 0 0 wb hb #f #f #f #f) (values (unbox wb) (unbox hb)))) (define/override (adjust-cursor dc x y editorx editory event) arrow-cursor) (apply super-make-object args) (set-flags (cons 'handles-events (get-flags))))) (define clickable-image-snip% (clickable-snip-mixin image-snip%))
false
54cb36059cc94208d5d2cd98711aa1dca7d44b6e
b8c6b6ba64dc36ed781d1cb7870a48792fec3d00
/datetime/generic/utc-offset-provider.rkt
5c546b31df623342a2b035b92fdf74f62c98a4e1
[ "MIT" ]
permissive
97jaz/datetime-lib
9b3aa8d861b0b5b1b38e737f0f1bb2589f8ef1ff
99b70473ad53f1c08c16d5ea66ce31e8dc7aa0b9
refs/heads/master
2021-06-21T17:59:30.356032
2021-06-11T20:55:54
2021-06-11T20:55:54
60,790,946
1
0
null
null
null
null
UTF-8
Racket
false
false
1,572
rkt
utc-offset-provider.rkt
#lang racket/base (require racket/contract/base racket/function racket/generic "../base-date.rkt" "../datetime.rkt" "../datetime/offset.rkt" "../datetime/tz.rkt" "../zone.rkt") (define-generics utc-offset-provider (->datetime/offset utc-offset-provider [offset]) (->utc-offset utc-offset-provider) (->local-datetime utc-offset-provider) (->utc-datetime utc-offset-provider) #:defaults ([datetime/offset? (define ->datetime/offset datetime/offset-at-utc-offset) (define ->utc-offset datetime/offset->utc-offset) (define ->local-datetime datetime/offset->local-datetime) (define ->utc-datetime datetime/offset->utc-datetime)] [datetime/tz? (define ->datetime/offset datetime/tz->datetime/offset) (define ->utc-offset datetime/tz->utc-offset) (define ->local-datetime datetime/tz->local-datetime) (define ->utc-datetime datetime/tz->utc-datetime)] [base-date/compat? (define ->datetime/offset base-date->datetime/offset*) (define ->utc-offset base-date->utc-offset) (define ->local-datetime base-date->datetime) (define ->utc-datetime base-date->utc-datetime)])) (provide gen:utc-offset-provider utc-offset-provider?) (provide/contract [->datetime/offset (->* (utc-offset-provider?) (utc-offset/c) datetime/offset?)] [->utc-offset (-> utc-offset-provider? utc-offset/c)] [->local-datetime (-> utc-offset-provider? datetime?)] [->utc-datetime (-> utc-offset-provider? datetime?)])
false
fad1bae152f83d29eafd10669e8e39e9a7125e12
799b5de27cebaa6eaa49ff982110d59bbd6c6693
/soft-contract/benchmark-contract-overhead/snake.rkt
de177d01a41db28826e84893ff09de0ce9fe81d1
[ "MIT" ]
permissive
philnguyen/soft-contract
263efdbc9ca2f35234b03f0d99233a66accda78b
13e7d99e061509f0a45605508dd1a27a51f4648e
refs/heads/master
2021-07-11T03:45:31.435966
2021-04-07T06:06:25
2021-04-07T06:08:24
17,326,137
33
7
MIT
2021-02-19T08:15:35
2014-03-01T22:48:46
Racket
UTF-8
Racket
false
false
18,555
rkt
snake.rkt
#lang racket (module image racket (require 2htdp/image) (define image/c (λ (x) (image? x))) (provide/contract [image/c any/c] [circle (real? string? string? . -> . image/c)] [empty-scene (real? real? . -> . image/c)] [place-image (image/c real? real? image/c . -> . image/c)]) #;(define (image? x) •)) (module unsafe-image racket (require 2htdp/image) (define image/c (λ (x) (image? x))) (provide circle empty-scene place-image) #;(define (image? x) •)) (module data racket (struct snake (dir segs)) (struct world (snake food)) (struct posn (x y)) (define (nelistof c) (cons/c c (listof c))) (define DIR/C (or/c "up" "down" "left" "right")) (define POSN/C (struct/c posn real? real?)) (define SNAKE/C (struct/c snake DIR/C (nelistof POSN/C))) (define WORLD/C (struct/c world SNAKE/C POSN/C)) (define (posn=? p1 p2) (and (= (posn-x p1) (posn-x p2)) (= (posn-y p1) (posn-y p2)))) (provide (contract-out [struct posn ([x real?] [y real?])])) (provide/contract [posn=? (POSN/C POSN/C . -> . boolean?)] [struct snake ([dir DIR/C] [segs (nelistof POSN/C)])] [struct world ([snake SNAKE/C] [food POSN/C])] [DIR/C any/c] [POSN/C any/c] [SNAKE/C any/c] [WORLD/C any/c] [nelistof (any/c . -> . any/c)])) (module unsafe-data racket (struct snake (dir segs)) (struct world (snake food)) (struct posn (x y)) (define (nelistof c) (cons/c c (listof c))) (define DIR/C (or/c "up" "down" "left" "right")) (define POSN/C (struct/c posn real? real?)) (define SNAKE/C (struct/c snake DIR/C (nelistof POSN/C))) (define WORLD/C (struct/c world SNAKE/C POSN/C)) (define (posn=? p1 p2) (and (= (posn-x p1) (posn-x p2)) (= (posn-y p1) (posn-y p2)))) (provide [struct-out posn]) (provide posn=? [struct-out snake] [struct-out world] DIR/C POSN/C SNAKE/C WORLD/C)) (module const racket (require (submod ".." image) (submod ".." data)) (define GRID-SIZE 30) (define BOARD-HEIGHT 20) (define BOARD-WIDTH 30) (define (BOARD-HEIGHT-PIXELS) (* GRID-SIZE BOARD-HEIGHT)) (define (BOARD-WIDTH-PIXELS) (* GRID-SIZE BOARD-WIDTH)) (define (BACKGROUND) (empty-scene (BOARD-WIDTH-PIXELS) (BOARD-HEIGHT-PIXELS))) (define (SEGMENT-RADIUS) (/ GRID-SIZE 2)) (define (SEGMENT-IMAGE) (circle (SEGMENT-RADIUS) "solid" "red")) (define (FOOD-RADIUS) (SEGMENT-RADIUS)) (define (FOOD-IMAGE) (circle (FOOD-RADIUS) "solid" "green")) (define (WORLD) (world (snake "right" (cons (posn 5 3) empty)) (posn 8 12))) (provide/contract [WORLD (-> WORLD/C)] [BACKGROUND (-> image/c)] [FOOD-IMAGE (-> image/c)] [SEGMENT-IMAGE (-> image/c)] [GRID-SIZE real?] [BOARD-HEIGHT-PIXELS (-> real?)] [BOARD-WIDTH real?] [BOARD-HEIGHT real?])) (module unsafe-const racket (require (submod ".." unsafe-image) (submod ".." unsafe-data)) (define GRID-SIZE 30) (define BOARD-HEIGHT 20) (define BOARD-WIDTH 30) (define (BOARD-HEIGHT-PIXELS) (* GRID-SIZE BOARD-HEIGHT)) (define (BOARD-WIDTH-PIXELS) (* GRID-SIZE BOARD-WIDTH)) (define (BACKGROUND) (empty-scene (BOARD-WIDTH-PIXELS) (BOARD-HEIGHT-PIXELS))) (define (SEGMENT-RADIUS) (/ GRID-SIZE 2)) (define (SEGMENT-IMAGE) (circle (SEGMENT-RADIUS) "solid" "red")) (define (FOOD-RADIUS) (SEGMENT-RADIUS)) (define (FOOD-IMAGE) (circle (FOOD-RADIUS) "solid" "green")) (define (WORLD) (world (snake "right" (cons (posn 5 3) empty)) (posn 8 12))) (provide WORLD BACKGROUND FOOD-IMAGE SEGMENT-IMAGE GRID-SIZE BOARD-HEIGHT-PIXELS BOARD-WIDTH BOARD-HEIGHT)) (module collide racket (require (submod ".." data) (submod ".." const)) ;; snake-wall-collide? : Snake -> Boolean ;; Is the snake colliding with any of the walls? (define (snake-wall-collide? snk) (head-collide? (car (snake-segs snk)))) ;; head-collide? : Posn -> Boolean (define (head-collide? p) (or (<= (posn-x p) 0) (>= (posn-x p) BOARD-WIDTH) (<= (posn-y p) 0) (>= (posn-y p) BOARD-HEIGHT))) ;; snake-self-collide? : Snake -> Boolean (define (snake-self-collide? snk) (segs-self-collide? (car (snake-segs snk)) (cdr (snake-segs snk)))) ;; segs-self-collide? : Posn Segs -> Boolean (define (segs-self-collide? h segs) (cond [(empty? segs) #f] [else (or (posn=? (car segs) h) (segs-self-collide? h (cdr segs)))])) (provide/contract [snake-wall-collide? (SNAKE/C . -> . boolean?)] [snake-self-collide? (SNAKE/C . -> . boolean?)])) (module unsafe-collide racket (require (submod ".." unsafe-data) (submod ".." unsafe-const)) ;; snake-wall-collide? : Snake -> Boolean ;; Is the snake colliding with any of the walls? (define (snake-wall-collide? snk) (head-collide? (car (snake-segs snk)))) ;; head-collide? : Posn -> Boolean (define (head-collide? p) (or (<= (posn-x p) 0) (>= (posn-x p) BOARD-WIDTH) (<= (posn-y p) 0) (>= (posn-y p) BOARD-HEIGHT))) ;; snake-self-collide? : Snake -> Boolean (define (snake-self-collide? snk) (segs-self-collide? (car (snake-segs snk)) (cdr (snake-segs snk)))) ;; segs-self-collide? : Posn Segs -> Boolean (define (segs-self-collide? h segs) (cond [(empty? segs) #f] [else (or (posn=? (car segs) h) (segs-self-collide? h (cdr segs)))])) (provide snake-wall-collide? snake-self-collide?)) (module cut-tail racket (require (submod ".." data)) ;; NeSegs is one of: ;; - (cons Posn empty) ;; - (cons Posn NeSegs) ;; cut-tail : NeSegs -> Segs ;; Cut off the tail. (define (cut-tail segs) (let ([r (cdr segs)]) (cond [(empty? r) empty] [else (cons (car segs) (cut-tail r))]))) (provide/contract [cut-tail ((nelistof POSN/C) . -> . (listof POSN/C))])) (module unsafe-cut-tail racket (require (submod ".." unsafe-data)) ;; NeSegs is one of: ;; - (cons Posn empty) ;; - (cons Posn NeSegs) ;; cut-tail : NeSegs -> Segs ;; Cut off the tail. (define (cut-tail segs) (let ([r (cdr segs)]) (cond [(empty? r) empty] [else (cons (car segs) (cut-tail r))]))) (provide cut-tail)) (module motion-help racket (require (submod ".." data) (submod ".." cut-tail)) ;; next-head : Posn Direction -> Posn ;; Compute next position for head. (define (next-head seg dir) (cond [(equal? "right" dir) (posn (add1 (posn-x seg)) (posn-y seg))] [(equal? "left" dir) (posn (sub1 (posn-x seg)) (posn-y seg))] [(equal? "down" dir) (posn (posn-x seg) (sub1 (posn-y seg)))] [else (posn (posn-x seg) (add1 (posn-y seg)))])) ;; snake-slither : Snake -> Snake ;; move the snake one step (define (snake-slither snk) (let ([d (snake-dir snk)]) (snake d (cons (next-head (car (snake-segs snk)) d) (cut-tail (snake-segs snk)))))) ;; snake-grow : Snake -> Snake ;; Grow the snake one segment. (define (snake-grow snk) (let ([d (snake-dir snk)]) (snake d (cons (next-head (car (snake-segs snk)) d) (snake-segs snk))))) (provide/contract [snake-slither (SNAKE/C . -> . SNAKE/C)] [snake-grow (SNAKE/C . -> . SNAKE/C)])) (module unsafe-motion-help racket (require (submod ".." unsafe-data) (submod ".." unsafe-cut-tail)) ;; next-head : Posn Direction -> Posn ;; Compute next position for head. (define (next-head seg dir) (cond [(equal? "right" dir) (posn (add1 (posn-x seg)) (posn-y seg))] [(equal? "left" dir) (posn (sub1 (posn-x seg)) (posn-y seg))] [(equal? "down" dir) (posn (posn-x seg) (sub1 (posn-y seg)))] [else (posn (posn-x seg) (add1 (posn-y seg)))])) ;; snake-slither : Snake -> Snake ;; move the snake one step (define (snake-slither snk) (let ([d (snake-dir snk)]) (snake d (cons (next-head (car (snake-segs snk)) d) (cut-tail (snake-segs snk)))))) ;; snake-grow : Snake -> Snake ;; Grow the snake one segment. (define (snake-grow snk) (let ([d (snake-dir snk)]) (snake d (cons (next-head (car (snake-segs snk)) d) (snake-segs snk))))) (provide snake-slither snake-grow)) (module motion racket (require (submod ".." data) (submod ".." const) (submod ".." motion-help)) (provide reset!) (define r (make-pseudo-random-generator)) (define (reset!) (parameterize ((current-pseudo-random-generator r)) (random-seed 1324))) ;; world->world : World -> World (define (world->world w) (cond [(eating? w) (snake-eat w)] [else (world (snake-slither (world-snake w)) (world-food w))])) ;; eating? : World -> Boolean ;; Is the snake eating the food in the world. (define (eating? w) (posn=? (world-food w) (car (snake-segs (world-snake w))))) ;; snake-change-direction : Snake Direction -> Snake ;; Change the direction of the snake. (define (snake-change-direction snk dir) (snake dir (snake-segs snk))) ;; world-change-dir : World Direction -> World ;; Change direction of the world. (define (world-change-dir w dir) (world (snake-change-direction (world-snake w) dir) (world-food w))) ;; snake-eat : World -> World ;; Eat the food and generate a new one. (define (snake-eat w) (define i (add1 (random (sub1 BOARD-WIDTH) r))) (define j (add1 (random (sub1 BOARD-HEIGHT) r))) (world (snake-grow (world-snake w)) (posn i j) #;(posn (- BOARD-WIDTH 1) (- BOARD-HEIGHT 1)))) (provide/contract [world-change-dir (WORLD/C DIR/C . -> . WORLD/C)] [world->world (WORLD/C . -> . WORLD/C)])) (module unsafe-motion racket (require (submod ".." unsafe-data) (submod ".." unsafe-const) (submod ".." unsafe-motion-help)) (provide reset!) (define r (make-pseudo-random-generator)) (define (reset!) (parameterize ((current-pseudo-random-generator r)) (random-seed 1324))) ;; world->world : World -> World (define (world->world w) (cond [(eating? w) (snake-eat w)] [else (world (snake-slither (world-snake w)) (world-food w))])) ;; eating? : World -> Boolean ;; Is the snake eating the food in the world. (define (eating? w) (posn=? (world-food w) (car (snake-segs (world-snake w))))) ;; snake-change-direction : Snake Direction -> Snake ;; Change the direction of the snake. (define (snake-change-direction snk dir) (snake dir (snake-segs snk))) ;; world-change-dir : World Direction -> World ;; Change direction of the world. (define (world-change-dir w dir) (world (snake-change-direction (world-snake w) dir) (world-food w))) ;; snake-eat : World -> World ;; Eat the food and generate a new one. (define (snake-eat w) (define i (add1 (random (sub1 BOARD-WIDTH) r))) (define j (add1 (random (sub1 BOARD-HEIGHT) r))) (world (snake-grow (world-snake w)) (posn i j) #;(posn (- BOARD-WIDTH 1) (- BOARD-HEIGHT 1)))) (provide world-change-dir world->world)) (module handlers racket ;; Movie handlers ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (require (submod ".." data) (submod ".." motion) (submod ".." collide)) ;; handle-key : World String -> World (define (handle-key w ke) (cond [(equal? ke "w") (world-change-dir w "up")] [(equal? ke "s") (world-change-dir w "down")] [(equal? ke "a") (world-change-dir w "left")] [(equal? ke "d") (world-change-dir w "right")] [else w])) ;; game-over? : World -> Boolean (define (game-over? w) (or (snake-wall-collide? (world-snake w)) (snake-self-collide? (world-snake w)))) (provide/contract [handle-key (WORLD/C string? . -> . WORLD/C)] [game-over? (WORLD/C . -> . boolean?)])) (module unsafe-handlers racket ;; Movie handlers ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (require (submod ".." unsafe-data) (submod ".." unsafe-motion) (submod ".." unsafe-collide)) ;; handle-key : World String -> World (define (handle-key w ke) (cond [(equal? ke "w") (world-change-dir w "up")] [(equal? ke "s") (world-change-dir w "down")] [(equal? ke "a") (world-change-dir w "left")] [(equal? ke "d") (world-change-dir w "right")] [else w])) ;; game-over? : World -> Boolean (define (game-over? w) (or (snake-wall-collide? (world-snake w)) (snake-self-collide? (world-snake w)))) (provide handle-key game-over?)) (module scenes racket (require (submod ".." data) (submod ".." const) (submod ".." image)) ;; world->scene : World -> Image ;; Build an image of the given world. (define (world->scene w) (snake+scene (world-snake w) (food+scene (world-food w) (BACKGROUND)))) ;; food+scene : Food Image -> Image ;; Add image of food to the given scene. (define (food+scene f scn) (place-image-on-grid (FOOD-IMAGE) (posn-x f) (posn-y f) scn)) ;; place-image-on-grid : Image Number Number Image -> Image ;; Just like PLACE-IMAGE, but use grid coordinates. (define (place-image-on-grid img x y scn) (place-image img (* GRID-SIZE x) (- (BOARD-HEIGHT-PIXELS) (* GRID-SIZE y)) scn)) ;; snake+scene : Snake Image -> Image ;; Add an image of the snake to the scene. (define (snake+scene snk scn) (segments+scene (snake-segs snk) scn)) ;; segments+scene : Segs Image -> Image ;; Add an image of the snake segments to the scene. (define (segments+scene segs scn) (cond [(empty? segs) scn] [else (segments+scene (cdr segs) ;; tail recursion (segment+scene (car segs) scn))])) ;; segment+scene : Posn Image -> Image ;; Add one snake segment to a scene. (define (segment+scene seg scn) (place-image-on-grid (SEGMENT-IMAGE) (posn-x seg) (posn-y seg) scn)) (provide/contract [world->scene (WORLD/C . -> . image/c)] [food+scene (POSN/C image/c . -> . image/c)] [place-image-on-grid (image/c real? real? image/c . -> . image/c)] [snake+scene (SNAKE/C image/c . -> . image/c)] [segments+scene ((listof POSN/C) image/c . -> . image/c)] [segment+scene (POSN/C image/c . -> . image/c)])) (module unsafe-scenes racket (require (submod ".." unsafe-data) (submod ".." unsafe-const) (submod ".." unsafe-image)) ;; world->scene : World -> Image ;; Build an image of the given world. (define (world->scene w) (snake+scene (world-snake w) (food+scene (world-food w) (BACKGROUND)))) ;; food+scene : Food Image -> Image ;; Add image of food to the given scene. (define (food+scene f scn) (place-image-on-grid (FOOD-IMAGE) (posn-x f) (posn-y f) scn)) ;; place-image-on-grid : Image Number Number Image -> Image ;; Just like PLACE-IMAGE, but use grid coordinates. (define (place-image-on-grid img x y scn) (place-image img (* GRID-SIZE x) (- (BOARD-HEIGHT-PIXELS) (* GRID-SIZE y)) scn)) ;; snake+scene : Snake Image -> Image ;; Add an image of the snake to the scene. (define (snake+scene snk scn) (segments+scene (snake-segs snk) scn)) ;; segments+scene : Segs Image -> Image ;; Add an image of the snake segments to the scene. (define (segments+scene segs scn) (cond [(empty? segs) scn] [else (segments+scene (cdr segs) ;; tail recursion (segment+scene (car segs) scn))])) ;; segment+scene : Posn Image -> Image ;; Add one snake segment to a scene. (define (segment+scene seg scn) (place-image-on-grid (SEGMENT-IMAGE) (posn-x seg) (posn-y seg) scn)) (provide world->scene food+scene place-image-on-grid snake+scene segments+scene segment+scene)) (require 2htdp/universe) (require 'data 'const 'scenes 'handlers 'motion 'collide) (require (prefix-in unsafe: 'unsafe-data) (prefix-in unsafe: 'unsafe-const) (prefix-in unsafe: 'unsafe-scenes) (prefix-in unsafe: 'unsafe-handlers) (prefix-in unsafe: 'unsafe-motion) (prefix-in unsafe: 'unsafe-collide)) (define history empty) (define (! e) (set! history (cons e history))) (define (play) (big-bang (WORLD) (on-tick (λ (w) (! `(on-tick)) (world->world w)) 1/5) (on-key (λ (w ke) (! `(on-key ,ke)) (handle-key w ke))) (to-draw (λ (w) (world->scene w))) (stop-when (λ (w) (! `(stop-when)) (game-over? w))))) #; (with-output-to-file "snake-hist-2.txt" (λ () (set! history empty) (play) (write history))) (define (replay w0 hist) (reset!) (let loop ((w w0) (h hist)) (if (empty? h) w (let () (loop (match (car h) [`(on-key ,ke) (handle-key w ke)] [`(on-tick) (world->world w)] [`(stop-when) (game-over? w) w]) (cdr h)))))) (define (unsafe:replay w0 hist) (unsafe:reset!) (let loop ((w w0) (h hist)) (if (empty? h) w (let () (loop (match (car h) [`(on-key ,ke) (unsafe:handle-key w ke)] [`(on-tick) (unsafe:world->world w)] [`(stop-when) (unsafe:game-over? w) w]) (cdr h)))))) (define (start w) (big-bang w (on-tick unsafe:world->world 1/5) (on-key unsafe:handle-key) (to-draw unsafe:world->scene) (stop-when unsafe:game-over?))) (define w0 (WORLD)) (define unsafe:w0 (unsafe:WORLD)) ;(replay (WORLD) h) (provide replay unsafe:replay w0 unsafe:w0 start)
false
e66226abd346097ae0cf7c771b25c97cc4c949e2
420d4556259f9de5440ce409063c7a90b4f89a6a
/image.rkt
c963fbb54652f5e36d1f72ffc7b894c460714706
[]
no_license
Postumius/fighting-game
0d6d16211fa6f84a6d5b1a929973c1bdf60f22ca
af86f423df69808af263918e2feb1298bd0a67e3
refs/heads/master
2021-05-27T11:58:12.373417
2020-07-20T01:29:27
2020-07-20T01:29:27
254,265,507
0
0
null
null
null
null
UTF-8
Racket
false
false
561
rkt
image.rkt
#lang racket (require 2htdp/image racket/flonum) (provide place-bottom place-bottom-center) (define divide (compose round /)) (define/contract (place-bottom image x y scene) (-> image? real? real? image? image?) (place-image image x (- (image-height scene) (divide (image-height image) 2) y) scene)) (define/contract (place-bottom-center image x y scene) (-> image? real? real? image? image?) (place-image image (+ x (divide (image-width scene) 2)) (- (image-height scene) (divide (image-height image) 2) y) scene))
false
12ac93be57870f8b45fbe9b7ddc8d55e3e5338de
510f259401bb920ac045a563eefde41e9924fa24
/archicad/objects.rkt
9ae65a28c3df805be934f88dacbc213fd19ffd5e
[]
no_license
Xylios13/archigd
9e10444f84f93211952b1cb6eee33995adad2708
2276679ae60858f80efdf286fdd9fb38663e2269
refs/heads/master
2021-01-24T23:51:34.502646
2017-02-22T19:53:50
2017-02-22T19:53:50
44,599,790
6
1
null
null
null
null
UTF-8
Racket
false
false
68,539
rkt
objects.rkt
#lang racket (provide (except-out (all-defined-out) trim?)) (require "protobuf1/protobuf.rkt") (require "protobuf1/encoding.rkt") (require "messages.rkt") (require "communication.rkt") (require "geometry.rkt") (require "../base/coord.rkt" "../base/connection.rkt") (require srfi/26) (define DEGRAD (/ pi 180.0)) (define crash-on-no-material? (make-parameter #t)) (define crash-on-no-name? (make-parameter #t)) (define trim? (make-parameter #f)) (define non-trim-layer (make-parameter "Non Trim Layer")) (define trim-layer (make-parameter "Trim Layer")) (define (default-layer) (if (trim?) (trim-layer) (non-trim-layer))) ;(define default-top-link (make-parameter #t)) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;Functions to create objects;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (define default-wall-alignment (make-parameter "Center")) (define default-wall-type-of-material (make-parameter "Basic")) (define default-wall-thickness (make-parameter 0.3)) (define default-wall-material (make-parameter (cond [(eq? (default-wall-type-of-material) "Basic") "GENERIC - STRUCTURAL"] [(eq? (default-wall-type-of-material) "Composite") "Generic Wall/Shell"]))) #| Can be: Normal | Slanted - alpha angle needed \ DoubleSlanted - alpha and beta angle needed /\ |# (define default-wall-profile (make-parameter "Normal")) #| Function used to create a wall TODO information returns: id of the created wall Example of usage: (send (wall (list (xy 0 0)(xy 10 0)))) (send (wall (list (xy 0 0)(xy 10 0)) #:type-of-profile "Slanted" #:alpha-angle (* 80 DEGRAD))) (send (wall (list (xy 0 0)(xy 10 0)) #:type-of-profile "DoubleSlanted" #:alpha-angle (* 100 DEGRAD) #:beta-angle (* 80 DEGRAD))) (send (wall (list (x 0)(x 5)) #:ref-material "Metal - Brass" #:opp-material "Metal - Brass" #:sid-material "Metal - Brass")) Question: Make the wall always double slanted whatever the angles? |# (define (walls guide #:alignment [alignment (default-wall-alignment)] #:bottom-level [bottom-level (current-level)] #:top-level [top-level (upper-level bottom-level)] ;;ArchiCAD ONLY -------------------------------------------------------------- #:thickness [thickness (default-wall-thickness)] #:arcs [arcs (list)] #:type-of-material [type-of-material (default-wall-type-of-material)] #:material [material (cond [(eq? type-of-material "Basic") #;"GENERIC - STRUCTURAL" "GENERIC - INTERNAL FILLER"] [(eq? type-of-material "Composite") "Generic Wall/Shell"])] #:alpha-angle [alpha-angle (/ pi 2)] #:beta-angle [beta-angle (/ pi 2)] #:type-of-profile [type-of-profile (default-wall-profile)] #:height [height null] #:profile-name [profile-name ""] #:flipped? [flipped? #f] #:bottom-offset [bottom-offset 0] #:layer [layer "Structural - Bearing"] #:windows [windows (list)] #:window-order [window-order (list)] #:reference-offset [reference-offset 0] #:ref-material [ref-material ""] #:opp-material [opp-material ""] #:sid-material [sid-material ""]) (let* ( ;Don't like this if, was unable to do (unless (null? height) #:height height) (msg (if (null? height) (wallmsg* #:pts (if (pointsmessage? guide) guide (prepare-points-to-send guide)) #:bottomindex (if (storyinfo? bottom-level) (storyinfo-index bottom-level) bottom-level) #:upperindex (if (storyinfo? top-level) (storyinfo-index top-level) top-level) #:thickness thickness #:arcs (if (polyarcsmessage? arcs) arcs (prepare-arcs-to-send arcs)) #:material material #:type type-of-material #:referenceline alignment #:alphaangle alpha-angle #:betaangle beta-angle #:typeprofile type-of-profile #:profilename profile-name #:flipped (not flipped?) #:bottomoffset bottom-offset #:layer layer #:windows windows #:windoworder window-order #:refoffset reference-offset #:refmat ref-material #:oppmat opp-material #:sidmat sid-material ;#:toplinked top-linked? ) (wallmsg* #:pts (if (pointsmessage? guide) guide (prepare-points-to-send guide)) #:bottomindex (if (storyinfo? bottom-level) (storyinfo-index bottom-level) bottom-level) #:upperindex (if (storyinfo? top-level) (storyinfo-index top-level) top-level) #:thickness thickness #:arcs (if (polyarcsmessage? arcs) arcs (prepare-arcs-to-send arcs)) #:material material #:type type-of-material #:referenceline alignment #:alphaangle alpha-angle #:betaangle beta-angle #:typeprofile type-of-profile #:height height #:profilename profile-name #:flipped (not flipped?) #:bottomoffset bottom-offset #:layer layer #:windows windows #:windoworder window-order #:refoffset reference-offset #:refmat ref-material #:oppmat opp-material #:sidmat sid-material ;#:toplinked top-linked? )))) (write-msg "NewWall" msg) ;(send-points guide) (let ((result (read-guids*))) (if (and (elementidlist-crashmaterial result) (crash-on-no-material?)) (begin (disconnect) (error (string-append "The material does not exist - " material))) (elementidlist-guid result) #;(if (null? (cdr (elementidlist-guid result))) (car (elementidlist-guid result)) (elementidlist-guid result)))))) (define (sub-polygons-from-list holes [counter 0]) (if (null? holes) (list) (cons (+ counter (length (car holes))) (sub-polygons-from-list (cdr holes) (+ counter (length (car holes))))))) (define (wall pt0 pt1 #:alignment [alignment (default-wall-alignment)] #:bottom-level [bottom-level (current-level)] #:top-level [top-level (upper-level bottom-level)] ;;ArchiCAD ONLY -------------------------------------------------------------- #:thickness [thickness (default-wall-thickness)] #:arcs [arcs (list)] #:type-of-material [type-of-material (default-wall-type-of-material)] #:material [material (cond [(eq? type-of-material "Basic") #;"GENERIC - STRUCTURAL" "GENERIC - INTERNAL FILLER"] [(eq? type-of-material "Composite") "Generic Wall/Shell"])] #:alpha-angle [alpha-angle (/ pi 2)] #:beta-angle [beta-angle (/ pi 2)] #:type-of-profile [type-of-profile (default-wall-profile)] #:height [height null] #:profile-name [profile-name ""] #:flipped? [flipped? #f] #:bottom-offset [bottom-offset 0] #:layer [layer "Structural - Bearing"] #:windows [windows (list)] #:window-order [window-order (list)] #:reference-offset [reference-offset 0] #:ref-material [ref-material ""] #:opp-material [opp-material ""] #:sid-material [sid-material ""] ;#:top-linked? [top-linked? (default-top-link)] ) (car (walls (list pt0 pt1) #:alignment alignment #:bottom-level bottom-level #:top-level top-level #:thickness thickness #:arcs arcs #:type-of-material type-of-material #:material material #:alpha-angle alpha-angle #:beta-angle beta-angle #:type-of-profile type-of-profile #:height height #:profile-name profile-name #:flipped? flipped? #:bottom-offset bottom-offset #:layer layer #:windows windows #:window-order window-order #:reference-offset reference-offset #:ref-material ref-material #:opp-material opp-material #:sid-material sid-material ;#:top-linked? top-linked? ))) #| Function used to create a door into an existing wall guid: id of wall, this value is returned by the functions that create walls (wall ...) objloc: object location in the wall zpos: z of the door returns: door id Example of usage: (send (door wallId 1.0 0.0)) |# (define default-door-type (make-parameter "Door 18")) (define anchor-beg-fix -1) (define anchor-center-fix 0) (define anchor-end-fix 1) (define (door guid p #:type [type-of-door (default-door-type)] #:width [width -10000] #:height [height -10000] #:flip-x [flip-x #f] #:flip-y [flip-y #f] #:properties [properties (list)] #:layer [layer "Default Layer"] #:fix-point [fix-point anchor-center-fix]) (let ((splitted-list (split-params-list properties))) (send/rcv-id "Door" (doormessage* #:guid guid #:objloc (cx p) #:depthoffset (cy p) #:zpos (cz p) #:height height #:width width #:hole #f #:name type-of-door #:flipx flip-x #:flipy flip-y #:params (additionalparams* #:names (list-ref splitted-list 0) #:integers (list-ref splitted-list 1) #:doubles (list-ref splitted-list 2) #:strings (list-ref splitted-list 3) #:booleans (list-ref splitted-list 4) #:intarrays (list-ref splitted-list 5) #:doublearrays (list-ref splitted-list 6) #:stringarrays (list-ref splitted-list 7) #:boolarrays (list-ref splitted-list 8) #:paramtype (list-ref splitted-list 9) #:isarray (list-ref splitted-list 10)) #:layer layer #:fixpoint fix-point)))) ;;TODO Review this function (define (hole-in-wall guid objloc [width -10000] [bottom 0] [height -10000] #:flip-x [flip-x #f] #:flip-y [flip-y #f] #:properties [properties (list)]) (let ((splitted-list (split-params-list properties))) (send/rcv-id "Door" (doormessage* #:guid guid #:objloc objloc #:zpos bottom #:height height #:width width #:hole #t #:name "" #:flipx flip-x #:flipy flip-y #:params (additionalparams* #:names (list-ref splitted-list 0) #:integers (list-ref splitted-list 1) #:doubles (list-ref splitted-list 2) #:strings (list-ref splitted-list 3) #:booleans (list-ref splitted-list 4) #:intarrays (list-ref splitted-list 5) #:doublearrays (list-ref splitted-list 6) #:stringarrays (list-ref splitted-list 7) #:boolarrays (list-ref splitted-list 8) #:paramtype (list-ref splitted-list 9) #:isarray (list-ref splitted-list 10)))))) ;;TODO Review this function (define (hole-in-wall-test guid list-points [list-arcs (list)]) (let ((msg (holemsg* #:guid guid ))) (write-msg "HoleTest" msg) (send-points list-points) (send-arcs list-arcs) (read-guid))) #| Function used to create a window into a existing wall guid: id of wall, this value is returned by the functions that create walls (wall ...) objloc: object location in the wall zpos: z of the window returns: window id Example of usage: (send (window wallId 1.0 1.0)) |# (define (window guid p #:width [width -10000] #:height [height -10000] #:flip-x [flip-x #f] #:flip-y [flip-y #f] #:type-of-window [type-of-window "Window 18"] #:properties [properties (list)] #:layer [layer "Default Layer"]) (let ((splitted-list (split-params-list properties))) (send/rcv-id "Window" (windowmessage* #:guid guid #:objloc (cx p) #:depthoffset (cy p) #:zpos (cz p) #:name type-of-window #:width width #:height height #:flipx flip-x #:flipy flip-y #:params (additionalparams* #:names (list-ref splitted-list 0) #:integers (list-ref splitted-list 1) #:doubles (list-ref splitted-list 2) #:strings (list-ref splitted-list 3) #:booleans (list-ref splitted-list 4) #:intarrays (list-ref splitted-list 5) #:doublearrays (list-ref splitted-list 6) #:stringarrays (list-ref splitted-list 7) #:boolarrays (list-ref splitted-list 8) #:paramtype (list-ref splitted-list 9) #:isarray (list-ref splitted-list 10)) #:layer layer)))) #| Function to create a Curtain Wall TODO information main-or-distinct-panel: determines if a panel is a main panel or distinct panel. They have different materials, controlled by #:panel-material #:secondary-panel-material returns: curtain-wall id Example of usage: (send (delete-stories)(curtain-wall (list (xy 0 0)(xy 10 0)))) (send (curtain-wall (list (x 0)(x 10)) (list 2 3 5)(list 0.5 1 1.5) #:main-panel? (list #t #t #t #f #f #f #t #t #t))) (send (slab (list (x 0)(x 10)(xy 10 10)(xy 0 10)) #:parcs (list pi pi pi pi)) (curtain-wall (list (x 0)(x 10)(xy 10 10)(xy 0 10)(xy 0 0)) (list 2 3 5)(list 0.5 1 1.5) #:panels-angle pi/3 #:main-panel? (list #t #t #t #f #f #f #t #t #t) #:arcs (list pi pi pi pi))) (send (slab (list (x 0)(x 10)(xy 10 10)(xy 0 10)) #:parcs (list pi pi pi pi)) (curtain-wall (list (x 0)(x 10)(xy 10 10)(xy 0 10)(xy 0 0)) (list 1)(list 1) #:main-panel? (list #f) #:arcs (list pi pi pi pi))) |# (define (curtain-wall guide primary-segments secondary-segments #:panel-material [panel-material "Metal - Stainless Steel"] #:secondary-panel-material [secondary-panel-material "Glass - Blue"] #:panels-angle [panels-angle 0] #:vertical-segments-material [vertical-segments-material "Metal - Stainless Steel"] #:horizontal-segments-material [horizontal-segments-material "Metal - Stainless Steel"] #:boundary-material [boundary-material "Metal - Stainless Steel"] #:main-panel? [main-panel? (for/list ([i (* (length primary-segments) (length secondary-segments))]) #t)] #:arcs [arcs (list)] #:bottom-level [bottom-level (current-level)] #:top-level [top-level (upper-level bottom-level)] #:offset [offset 0] #:layer [layer "Finish - Wall"] #:height [height null] #:main-panel-thickness [main-panel-thickness 0.2] #:secondary-panel-thickness [secondary-panel-thickness 0.2] #:boundary-frame-width [boundary-frame-width 0.1] #:boundary-frame-depth [boundary-frame-depth 0.3] #:boundary-frame-depth-offset [boundary-frame-depth-offset 0.25] #:mullion-frame-width [mullion-frame-width 0.08] #:mullion-frame-depth [mullion-frame-depth 0.25] #:mullion-frame-depth-offset [mullion-frame-depth-offset 0.2] #:transom-frame-width [transom-frame-width 0.06] #:transom-frame-depth [transom-frame-depth 0.1] #:transom-frame-depth-offset [transom-frame-depth-offset 0.11] ;Does NOT work because API does not support it ;#:top-linked? [top-linked? (default-top-link)] ) (let ((c-wall-msg (if (null? height) (curtainwallmsg* #:pts (prepare-points-to-send guide) #:arcs (prepare-arcs-to-send arcs) #:bottomindex (storyinfo-index bottom-level) #:upperindex (storyinfo-index top-level) #:primaries primary-segments #:secondaries secondary-segments #:mainpanels main-panel? #:panelmaterial secondary-panel-material #:secpanelmaterial panel-material #:verticalframematerial vertical-segments-material #:horizontalframematerial horizontal-segments-material #:framematerial boundary-material #:panelsangle panels-angle #:offset offset #:layer layer #:mainpanelthickness main-panel-thickness #:secondarypanelthickness secondary-panel-thickness #:bframewidth boundary-frame-width #:bframedepth boundary-frame-depth #:bframeoffset boundary-frame-depth-offset #:mframewidth mullion-frame-width #:mframedepth mullion-frame-depth #:mframeoffset mullion-frame-depth-offset #:tframewidth transom-frame-width #:tframedepth transom-frame-depth #:tframeoffset transom-frame-depth-offset ;#:toplinked top-linked? ) (curtainwallmsg* #:pts (prepare-points-to-send guide) #:arcs (prepare-arcs-to-send arcs) #:bottomindex (storyinfo-index bottom-level) #:upperindex (storyinfo-index top-level) #:primaries primary-segments #:secondaries secondary-segments #:mainpanels main-panel? #:panelmaterial secondary-panel-material #:secpanelmaterial panel-material #:verticalframematerial vertical-segments-material #:horizontalframematerial horizontal-segments-material #:framematerial boundary-material #:panelsangle panels-angle #:offset offset #:layer layer #:height height #:mainpanelthickness main-panel-thickness #:secondarypanelthickness secondary-panel-thickness #:bframewidth boundary-frame-width #:bframedepth boundary-frame-depth #:bframeoffset boundary-frame-depth-offset #:mframewidth mullion-frame-width #:mframedepth mullion-frame-depth #:mframeoffset mullion-frame-depth-offset #:tframewidth transom-frame-width #:tframedepth transom-frame-depth #:tframeoffset transom-frame-depth-offset ;#:toplinked top-linked? )))) (send/rcv-id "CurtainWall" c-wall-msg))) #|Functions do not work. Nothing happens. (define (internal-transform-curtain-wall cwall op x y z angle scale) (let ((msg (transformmsg* #:op op #:guid cwall #:x x #:y y #:z z #:angle angle #:scale scale))) (send/no-rcv "CWTransform" msg))) (define (translate-curtain-wall cwall pt) (internal-transform-curtain-wall cwall "t" (cx pt)(cy pt)(cz pt) 0 0)) (define (rotate-curtain-wall cwall angle) (internal-transform-curtain-wall cwall "r" 0 0 0 angle 0)) (define (scale-curtain-wall cwall scale) (internal-transform-curtain-wall cwall "s" 0 0 0 0 scale)) |# #| Function to create a Slab TODO information returns: slab id Example of usage: (send (slab cPoints)) |# (define (sub-polys-position-specific-argument points [counter 0]) (cond [(null? points) (list)] [(list? (car points)) (cons (+ counter (length (car points))) (sub-polys-position-specific-argument (cdr points) (+ counter (length (car points)))))] [else (sub-polys-position-specific-argument (cdr points) counter)])) (define (sub-polys-position points [counter 0]) (cond [(null? points) (list counter)] [(list? (car points)) (cons counter (sub-polys-position (cdr points) (+ counter (length (car points)))))] [else (sub-polys-position (cdr points) (+ counter 1))])) (define (prepare-points points) (let ((points (close-guide points (car points)))) (list (flatten points) (sub-polys-position points)))) (define default-slab-reference (make-parameter "Top")) (define default-slab-type-of-material (make-parameter "Basic")) #;(define default-slab-material (make-parameter (cond [(eq? (default-slab-type-of-material) "Basic") "GENERIC - STRUCTURAL"] [(eq? (default-slab-type-of-material) "Composite") "Generic Slab/Roof"]))) (define (slab guide #:bottom-level [bottom-level (current-level)] ;;ArchiCAD ONLY -------------------------------------------------------------- #:thickness [thickness 0.3] #:bottom [bottom 0] #:type-of-material [type-of-material (default-slab-type-of-material)] #:material [material (cond [(eq? type-of-material "Basic") "GENERIC - STRUCTURAL"] [(eq? type-of-material "Composite") "Generic Slab/Roof"])] #:parcs [parcs (list)] #:layer [layer "Structural - Bearing"] #:reference [reference (default-slab-reference)] ;#:sub-polygons [sub-polygons (list (length guide))] ) (let* ((slab-info (prepare-points guide)) (slab-msg (slabmessage* #:level bottom #:material material #:thickness thickness #:type type-of-material #:bottomlevel (storyinfo-index bottom-level) #:subpolygons (cadr slab-info) #:pts (prepare-points-to-send (car slab-info)) #:parcs (prepare-arcs-to-send parcs) #:layer layer #:reference reference))) (write-msg "NewSlab" slab-msg) ;(send-points guide) ;(send-points (car slab-info)) ;(read-guid) (read-material-guid))) (define (read-material-guid) (let ((result (read-guid-aux))) (if (and (elementid-crashmaterial result) (crash-on-no-material?)) (begin (disconnect) (error "The material does not exist")) (elementid-guid result)))) #| Function to create a hole on a slab listpoints: list of points that define the hole IMPORTANT: the list must end on the point that it began so it is a closed slab listarcs: list of eventual angles that will be applied to the hole can be empty returns: slab id Example of usage: (send (hole-slab (slab slabPoints) hole-points)) |# (define (hole id pts arcs type) (let ((msg (holemsg* #:guid id #:pts (prepare-points-to-send (close-guide pts (car pts))) #:arcs (prepare-arcs-to-send arcs) #:type type))) (send/rcv-id "HoleSlab" msg))) (define (hole-slab slab-id pts [arcs (list)]) (hole slab-id pts arcs 0)) (define (hole-roof roof-id pts [arcs (list)]) (hole roof-id pts arcs 1)) #| Function to create walls from a Slab slab-id: id of the slab from where the walls will be created height: height of the walls that will be created material: material of the walls that will be created returns: a list with all the id's of the wall that were created Example of usage: (send (walls-from-slab slabId 5.0)) |# (define (internal-walls-from-slab slab-id height thickness material reference-line type layer) (let ((ele-id-msg (wallsfromslab* #:guid slab-id #:height height #:thickness thickness #:material material #:type type #:referenceline reference-line #:layer layer))) (write-msg "WallsSlab" ele-id-msg) ;(elementidlist-guid (read-guids)) (let ((result (read-guids*))) (if (and (elementidlist-crashmaterial result) (crash-on-no-material?)) (begin (disconnect) (error "The material does not exist")) (elementidlist-guid result))))) (define walls-from-slab-material-default #;(make-parameter "GENERIC - STRUCTURAL")(make-parameter "Glass")) (define walls-from-slab-reference-line-default (make-parameter "Center")) (define (walls-from-slab slab-id [height (default-level-to-level-height)] #:thickness [thickness 0.3] #:material [material (walls-from-slab-material-default)] #:reference-line [reference-line (walls-from-slab-reference-line-default)] #:layer [layer "Structural - Bearing"]) (internal-walls-from-slab slab-id height thickness material reference-line "BasicStructure" layer)) #| Function to create walls from a Slab, using composite materials slab-id: id of the slab from where the walls will be created height: height of the walls that will be created material: material of the walls that will be created returns: a list with all the id's of the wall that were created Example of usage: (send (walls-from-slab slabId 5.0)) |# (define walls-from-slab-composite-material-default (make-parameter "Generic Wall/Shell")) (define walls-from-slab-composite-reference-line-default (make-parameter "Center")) (define (walls-from-slab-composite slab-id [height (default-level-to-level-height)] #:thickness [thickness 0.3] #:material [material (walls-from-slab-composite-material-default)] #:reference-line [reference-line (walls-from-slab-composite-reference-line-default)] #:layer [layer "Structural - Bearing"]) (internal-walls-from-slab slab-id height thickness material reference-line "CompositeStructure" layer)) #|HEIGHT NOT WORKING Function to create curtain walls from a Slab slab-id: id of the slab from where the curtain walls will be created height: height of the curtain walls that will be created returns: a list with all the id's of the curtain wall that were created Example of usage: (send (walls-from-slab slabId)) |# (define (cwalls-from-slab slabId height) (let ((ele-id-msg (elementid* #:guid slabId #:crashmaterial #f))) (write-msg "CWallsSlab" ele-id-msg) (send-double height) (read-guid))) #| Function to create a column orig-pos: origin of column circle-based?: circle column or not angle: rotation of the column on its on axis depth: size of y-axis width: size of x-axis Example of usage: (send (column (xy 0 0))) (send (column (xy 0 0) #:slant-angle (/ pi 4))) (send (column (xy 0 0) #:slant-angle (/ pi 4) #:slant-direction (/ pi 2))) |# (define (column orig-pos #:bottom-level [bottom-level (current-level)] #:top-level [top-level (upper-level bottom-level)] ;;ArchiCAD ONLY -------------------------------------------------------------- ;#:top-linked? [top-linked? (default-top-link)] #:circle-based? [circle-based? #f] #:angle [angle 0] #:depth [depth 0.15] #:width [width 0.15] #:slant-angle [slant-angle (/ pi 2)] #:slant-direction [slant-direction 0] #:height [height null] #:profile-name [profile-name ""] #:bottom-offset [bottom-offset 0] #:layer [layer "Structural - Bearing"]) (let ((msg (if (null? height) (columnmsg* #:posx (cx orig-pos) #:posy (cy orig-pos) #:bottom (cz orig-pos) #:circlebased circle-based? #:angle angle #:depth depth #:width width #:slantangle slant-angle #:slantdirection slant-direction #:bottomindex (storyinfo-index bottom-level) #:upperindex (storyinfo-index top-level) #:profilename profile-name #:layer layer ;#:toplinked top-linked? ) (columnmsg* #:posx (cx orig-pos) #:posy (cy orig-pos) #:bottom (cz orig-pos) #:height height #:circlebased circle-based? #:angle angle #:depth depth #:width width #:slantangle slant-angle #:slantdirection slant-direction #:bottomindex (storyinfo-index bottom-level) #:upperindex (storyinfo-index top-level) #:profilename profile-name #:layer layer ;#:toplinked top-linked? )))) (write-msg "NewColumn" msg) ;(read-guid) (read-material-guid))) (define (column-two-points p1 p2 #:bottom-level [bottom-level (current-level)] ;;ArchiCAD ONLY -------------------------------------------------------------- #:circle-based? [circle-based? #f] #:angle [angle 0] #:depth [depth 0.15] #:width [width 0.15] #:profile-name [profile-name ""] #:layer [layer "Structural - Bearing"]) (let ((msg (columnmsg* #:posx (cx p1) #:posy (cy p1) #:bottom (cz p1) #:height (abs (- (cz p2)(cz p1))) #:circlebased circle-based? #:angle angle #:depth depth #:width width #:slantangle (- pi/2 (sph-psi (p-p p2 p1))) #:slantdirection (- (sph-phi (p-p p2 p1)) pi/2) #:bottomindex (storyinfo-index bottom-level) #:upperindex (storyinfo-index bottom-level) #:profilename profile-name #:layer layer))) (write-msg "NewColumn" msg) ;(read-guid) (read-material-guid))) ;(send (columns-from-slab (slab (list (xy -1 -1)(xy 1 -1)(xy 1 1)(xy -1 1)(xy -1 -1))) 5)) (define columns-from-slab-material-default (make-parameter "GENERIC - STRUCTURAL")) (define (columns-from-slab slab height #:depth [depth 0.15] #:width [width 0.15] #:circle-based? [circle-based? #t] #:material [material (columns-from-slab-material-default)] #:layer [layer "Structural - Bearing"]) (let ((msg (columnsfromslab* #:guid slab #:height height #:circlebased circle-based? #:depth depth #:width width #:material material #:layer layer))) (write-msg "ColumnsSlab" msg) ;(read-guid) (read-material-guid))) (define default-beam-profile (make-parameter "")) (define (beam p0 p1 #:beam-height [beam-height 0.15] #:beam-width [beam-width 0.15] #:bottom-level [bottom-level (current-level)] #:material [material "GENERIC - STRUCTURAL"] #:profile [profile (default-beam-profile)] #:layer [layer "Structural - Bearing"] #:profile-angle [profile-angle 0]) (let* ((new-p0 (loc-in-world p0)) (new-p1 (loc-in-world p1)) (msg (beammsg* #:x0 (cx new-p0) #:y0 (cy new-p0) #:x1 (cx new-p1) #:y1 (cy new-p1) #:beamheight beam-height #:beamwidth beam-width #:levelheight (cz new-p0) #:bottomlevel (storyinfo-index bottom-level) #:angle (- pi/2 (sph-psi (p-p p1 p0))) #:material material #:profilename profile #:layer layer #:profileangle profile-angle))) (write-msg "Beam" msg) ;(read-guid) (read-material-guid))) (define (split-params-list property-lst) (let ((names (list)) (int-values (list)) (double-values (list)) (string-values (list)) (bool-values (list)) (lst-int-values (list)) (lst-double-values (list)) (lst-string-values (list)) (lst-bool-values (list)) (param-types (list)) (is-array? (list)) (store? #t)) (when (not (empty? property-lst)) (begin (for ([name property-lst] [value (cdr property-lst)]) (if store? (begin (set! names (append names (list name))) (if (list? value) (begin (set! is-array? (append is-array? (list #t))) (cond [(string? (car value)) (begin (set! param-types (append param-types (list "s"))) (set! lst-string-values (append lst-string-values (list (stringarray* #:lst value)))))] [(real? (car value)) (begin (set! param-types (append param-types (list "d"))) (set! lst-double-values (append lst-double-values (list (doublearray* #:lst value)))))] [(integer? (car value)) (begin (set! param-types (append param-types (list "i"))) (set! lst-int-values (append lst-int-values (list (intarray* #:lst value)))))] [(boolean? (car value)) (begin (set! param-types (append param-types (list "b"))) (set! lst-bool-values (append lst-bool-values (list (boolarray* #:lst value)))))])) (begin (set! is-array? (append is-array? (list #f))) (cond [(string? value) (begin (set! param-types (append param-types (list "s"))) (set! string-values (append string-values (list value))))] [(real? value) (begin (set! param-types (append param-types (list "d"))) (set! double-values (append double-values (list value))))] [(integer? value) (begin (set! param-types (append param-types (list "i"))) (set! int-values (append int-values (list value))))] [(boolean? value) (begin (set! param-types (append param-types (list "b"))) (set! bool-values (append bool-values (list value))))]))) (set! store? #f)) (set! store? #t))))) (list names int-values double-values string-values bool-values lst-int-values lst-double-values lst-string-values lst-bool-values param-types is-array?))) #;(define (split-params-list lsst) (let ((names (list)) (int-values (list)) (double-values (list)) (string-values (list)) (bool-values (list)) (lst-int-values (list)) (lst-double-values (list)) (lst-string-values (list)) (lst-bool-values (list)) (param-types (list)) (is-array? (list))) (for ([lst lsst]) (let ((name (car lst)) (value (cadr lst))) (set! names (append names (list name))) (if (list? value) (begin (set! is-array? (append is-array? (list #t))) (cond [(string? (car value)) (begin (set! param-types (append param-types (list "s"))) (set! lst-string-values (append lst-string-values (list (stringarray* #:lst value)))))] [(real? (car value)) (begin (set! param-types (append param-types (list "d"))) (set! lst-double-values (append lst-double-values (list (doublearray* #:lst value)))))] [(integer? (car value)) (begin (set! param-types (append param-types (list "i"))) (set! lst-int-values (append lst-int-values (list (intarray* #:lst value)))))] [(boolean? (car value)) (begin (set! param-types (append param-types (list "b"))) (set! lst-bool-values (append lst-bool-values (list (boolarray* #:lst value)))))])) (begin (set! is-array? (append is-array? (list #f))) (cond [(string? value) (begin (set! param-types (append param-types (list "s"))) (set! string-values (append string-values (list value))))] [(real? value) (begin (set! param-types (append param-types (list "d"))) (set! double-values (append double-values (list value))))] [(integer? value) (begin (set! param-types (append param-types (list "i"))) (set! int-values (append int-values (list value))))] [(boolean? value) (begin (set! param-types (append param-types (list "b"))) (set! bool-values (append bool-values (list value))))]))))) (list names int-values double-values string-values bool-values lst-int-values lst-double-values lst-string-values lst-bool-values param-types is-array?))) #| Function to create a object index: index that indentifies what object will be used (needs better documentation) orig-pos: position of the object Example of usage: (send (object 1324 (xy 0.0 0.0))) (send (object "Dormer Pitched 18" (xy 0.0 0.0) #:additional-parameters (list (list "gs_roofang_deg" pi/2)))) |# (define (object index/name orig-pos #:level [level (current-level)] #:use-xy-fix-size? [use-xy-fix-size? #f] #:x-ratio [x-ratio 1] #:y-ratio [y-ratio 1] #:use-obj-sect-attrs? [use-obj-sect-attrs? #t] #:angle [angle 0] #:height [height 0] #:properties [properties (list)] #:layer [layer "Interior - Furniture "]) (let* ((splitted-list (split-params-list properties)) (msg (if (string? index/name) (objectmsg* #:index 0 #:posx (cx orig-pos) #:posy (cy orig-pos) #:usexyfixsize use-xy-fix-size? #:useobjsectattrs use-obj-sect-attrs? #:xratio x-ratio #:yratio y-ratio #:bottom height #:angle angle #:level (storyinfo-index level) #:params (additionalparams* #:names (list-ref splitted-list 0) #:integers (list-ref splitted-list 1) #:doubles (list-ref splitted-list 2) #:strings (list-ref splitted-list 3) #:booleans (list-ref splitted-list 4) #:intarrays (list-ref splitted-list 5) #:doublearrays (list-ref splitted-list 6) #:stringarrays (list-ref splitted-list 7) #:boolarrays (list-ref splitted-list 8) #:paramtype (list-ref splitted-list 9) #:isarray (list-ref splitted-list 10)) #:layer layer #:name index/name) (objectmsg* #:index index/name #:posx (cx orig-pos) #:posy (cy orig-pos) #:usexyfixsize use-xy-fix-size? #:useobjsectattrs use-obj-sect-attrs? #:xratio x-ratio #:yratio y-ratio #:bottom height #:angle angle #:level (storyinfo-index level) #:params (additionalparams* #:names (list-ref splitted-list 0) #:integers (list-ref splitted-list 1) #:doubles (list-ref splitted-list 2) #:strings (list-ref splitted-list 3) #:booleans (list-ref splitted-list 4) #:intarrays (list-ref splitted-list 5) #:doublearrays (list-ref splitted-list 6) #:stringarrays (list-ref splitted-list 7) #:boolarrays (list-ref splitted-list 8) #:paramtype (list-ref splitted-list 9) #:isarray (list-ref splitted-list 10)) #:layer layer)))) (write-msg "Object" msg) (read-guid) )) #| Function to create stairs index: index that indentifies what stairs will be used (needs better documentation) orig-pos: position of the stairs (send (stairs "Stair L-Shape 18" (u0) #:additional-parameters (list (list "stairSlabThk" 2)))) (send (stairs "Stair Spiral 18" (u0) #:additional-parameters (list (list "angle" (/ (* 10 2pi) 360)) (list "zzyzx" 0.3) (list "nRisers" 3) (list "iShowRailingOn" 4) (list "bShowRailAboveBreakLine" #f) (list "bShowRailOnFloorPlan" #f)))) |# (define (stairs name orig-pos #:angle [angle 0] #:x-ratio [x-ratio 1] #:y-ratio [y-ratio 1] #:bottom-offset [bottom-offset 0] #:bottom-level [bottom-level (current-level)] #:top-level [top-level (upper-level bottom-level)] #:use-xy-fix-size [use-xy-fix-size #f] #:properties [properties (list)] #:layer [layer "Structural - Combined"] #:height [height 0] ;Does NOT work because API does not support it ;#:top-linked? [top-linked? (default-top-link)] ) (let* ((splitted-list (split-params-list properties)) (msg (stairsmsg* #:name name #:posx (cx orig-pos) #:posy (cy orig-pos) #:bottom bottom-offset #:xratio x-ratio #:yratio y-ratio #:angle angle #:bottomindex (storyinfo-index bottom-level) #:upperindex (storyinfo-index top-level) #:usexyfixsize use-xy-fix-size #:params (additionalparams* #:names (list-ref splitted-list 0) #:integers (list-ref splitted-list 1) #:doubles (list-ref splitted-list 2) #:strings (list-ref splitted-list 3) #:booleans (list-ref splitted-list 4) #:intarrays (list-ref splitted-list 5) #:doublearrays (list-ref splitted-list 6) #:stringarrays (list-ref splitted-list 7) #:boolarrays (list-ref splitted-list 8) #:paramtype (list-ref splitted-list 9) #:isarray (list-ref splitted-list 10)) #:layer layer #:height height ;#:toplink top-linked? ))) ;(list names int-values double-values string-values bool-values lst-int-values lst-double-values lst-string-values lst-bool-values param-types is-array?) (write-msg "Stairs" msg) ;(read-guid) (read-material-guid))) #| Function to create a library part At the moment does not return anything. It would be more interesting than returning an idex, to be able to use the name given to the library part. Example: (send (library-part "Test Library Part 1" "PROJECT2 3, 270, 2 \r\n" "MATERIAL mat \r\n BLOCK a, b, 1 \r\n ADD a * 0.5, b* 0.5, 1 \r\n CYLIND zzyzx - 3, MIN (a, b) * 0.5 \r\n ADDZ zzyzx - 3 \r\n CONE 2, MIN (a, b) * 0.5, 0.0, 90, 90 \r\n" #:parameter-code "VALUES \"zzyzx\" RANGE [6,]")) This example uses \r\n, newline for windows, it also works with \n... To use the created library part, reference by name! (send (object "Test Library Part 1" (u0))) |# (define (library-part name 2D-section 3D-section #:master-code [master-code ""] #:parameter-code [parameter-code ""] #:type [type "Object"] #:parent-id [parent-id "ModelElement"] #:properties [properties (list)]) (let* ((splitted-list (split-params-list properties)) (msg (libpartmsg* #:name name #:twocode 2D-section #:threecode 3D-section #:mastercode master-code #:parametercode parameter-code #:type type #:parentid parent-id #:names (list-ref splitted-list 0) #:integers (list-ref splitted-list 1) #:doubles (list-ref splitted-list 2) #:strings (list-ref splitted-list 3) #:booleans (list-ref splitted-list 4) #:intarrays (list-ref splitted-list 5) #:doublearrays (list-ref splitted-list 6) #:stringarrays (list-ref splitted-list 7) #:boolarrays (list-ref splitted-list 8) #:paramtype (list-ref splitted-list 9) #:isarray (list-ref splitted-list 10)))) (write-msg "LibraryPart" msg) name )) #| Function to create a plane roof listpoints: list with the points that define the roof shape height: height of the roof listarcs: list with angles between two consecutive points ex: (list (* 90 DEGRAD) (* 45 DEGRAD)), this means between the first and second points of the roof there is an angle of 90o and between the second and third points one of 45o Example of usage: (send (roof slabPoints 3)) |# (define default-roof-alignment (make-parameter "Center")) (define default-roof-type-of-material (make-parameter "Basic")) #;(define default-roof-material (make-parameter (cond [(eq? (default-roof-type-of-material) "Basic") "GENERIC - STRUCTURAL"] [(eq? (default-roof-type-of-material) "Composite") "Generic Roof/Shell"]))) (define (roof guide #:bottom-level [bottom-level (current-level)] ;;ArchiCAD ONLY -------------------------------------------------------------- #:thickness [thickness 0.3] #:height [height 0] #:type-of-material [type-of-material (default-roof-type-of-material)] #:material [material (cond [(eq? type-of-material "Basic") "GENERIC - EXTERNAL FILLER"] [(eq? type-of-material "Composite") "Generic Roof/Shell"])] #:layer [layer "Shell - Roof"]) (let ((roof-info (prepare-points guide)) (roof-msg (roofmsg* #:height height #:material material #:thickness thickness #:type type-of-material #:bottomlevel (storyinfo-index bottom-level) #:layer layer))) (write-msg "NewRoof" roof-msg) (send-points (car roof-info)) ;(read-guid) (read-material-guid))) #| Function to create a poly roof |# (define (internal-poly-roof listpoints bottom-level height listarcs thickness levels-angle levels-height material type layer) (let* ((msg (roofmsg* #:height height #:material material #:thickness thickness #:type type #:bottomlevel (storyinfo-index bottom-level) #:layer layer)) (roof-levels-msg (rooflevelsmsg* #:angle levels-angle #:height levels-height)) (sub-poly-list (get-sub-polys listpoints)) (sub-poly-msg (intlistmsg* #:ilist sub-poly-list))) (write-msg "PolyRoof" msg) (send-points (flatten listpoints)) (send-arcs listarcs) (let ((output (connection-out (bim-connection)))) (write-sized serialize sub-poly-msg output) (write-sized serialize roof-levels-msg output)) ;(read-guid) (read-material-guid) )) (define poly-roof-material-default (make-parameter "GENERIC - EXTERNAL FILLER")) (define roof-material-default (make-parameter "GENERIC - STRUCTURAL")) (define (poly-roof listpoints #:bottom-level [bottom-level (current-level)] #:height [height 0] #:listarcs [listarcs (list)] #:thickness [thickness 0.3] #:levels-angle [levels-angle (list)] #:levels-height [levels-height (list)] #:material [material (roof-material-default)] #:layer [layer "Shell - Roof"]) (internal-poly-roof listpoints bottom-level height listarcs thickness levels-angle levels-height material "BasicStructure") layer) (define poly-roof-composite-material-default (make-parameter "Generic Roof/Shell")) (define roof-composite-material-default (make-parameter "Generic Roof/Shell")) (define (poly-roof-composite listpoints #:bottom-level [bottom-level (current-level)] #:height [height 0] #:listarcs [listarcs (list)] #:thickness [thickness 0.3] #:levels-angle [levels-angle (list)] #:levels-height [levels-height (list)] #:material [material (roof-composite-material-default)] #:layer [layer "Shell - Roof"]) (internal-poly-roof listpoints bottom-level height listarcs thickness levels-angle levels-height material "CompositeStructure") layer) ;(send (poly-roof (list (list (xy 10 10)(xy 10 -10)(xy -10 -10)(xy -10 10)(xy 10 10))(list (xy 5 0)(xy -5 0)(xy 5 0))) 0 (list 0 0 0 0 0 pi pi))) (define default-mesh-material (make-parameter "GENERIC - ENVIRONMENT")) #| (send (mesh (list (xyz 0 0 0)(xyz 5 0 5)(xyz 5 5 0) (xyz 0 5 0)(xyz 0 0 0)))) (send (mesh (list (xyz 0 0 0)(xyz 10 0 0)(xyz 10 10 0)(xyz 0 10 0)(xyz 0 0 0)))) (send (mesh (list (xyz 0 0 0)(xyz 5 0 0)(xyz 10 0 0)(xyz 10 5 0)(xyz 10 10 0)(xyz 5 10 0)(xyz 0 10 0)(xyz 0 5 0)(xyz 0 0 0)))) (send (mesh (list (xyz 0 0 0)(xyz 10 0 0)(xyz 10 10 0)(xyz 0 10 0)(xyz 0 0 0)) #:level-lines (list (xyz 2 2 2)(xyz 8 2 2)(xyz 8 8 2)(xyz 2 8 2)))) |# (define (mesh guide #:bottom-level [bottom-level (current-level)] ;;ArchiCAD ONLY -------------------------------------------------------------- #:bottom [bottom 0] #:material [material (default-mesh-material)] #:level-lines [level-lines (list)] #:override-material [override-material null] #:layer [layer "Site & Landscape - Terrain"]) (let ((msg (if (null? override-material) (meshmessage* #:level bottom #:material material #:bottomlevel (storyinfo-index bottom-level) #:layer layer) (meshmessage* #:level bottom #:material material #:bottomlevel (storyinfo-index bottom-level) #:overridematerial override-material #:layer layer)))) (write-msg "Mesh" msg) (send-points guide) (send-points level-lines) ;(read-guid) (read-material-guid))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;Functions to manipulate objects;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; #| NOT WORKING Function to add arcs to an Element Example of usage: (send (add-arcs elementId cArcs)) |# (define (add-arcs id listarcs) (let ((ele-id-msg (elementid* #:guid id #:crashmaterial #f))) (write-msg "AddArcs" ele-id-msg) (send-arcs listarcs) (read-guid) )) #|NOT WORKING Function to translate an element Receives a point that represents the translation and the object ID Example of usage: (send (translate-element id (xyz 0 0 10)) |# (define (translate-element ID point) (let ((t-msg (translatemsg* #:tx (cx point) #:ty (cy point) #:tz (cz point) #:guid ID))) (write-msg "Translate" t-msg) ;;(read-guid) )) #| Function to rotate an element on the z-axis id: id of the element to rotate IMPORTANT: Working with slabs and columns at the moment. angle: angle of the rotation in radians Example of usage: (send (rotate-element-z (slab slabPoints (list)) (* 45 DEGRAD))) |# (define (rotate-element-z ID angle [copy #f]) (define eleList (if (list? ID) ID (list ID))) (let ((r-msg (rotatemsg* #:guid eleList #:axis "z" #:angle angle #:copy copy))) (write-msg "RotateZ" r-msg) (define return-list (elementidlist-guid (read-guids*))) (if (equal? (length return-list) 1) (car return-list) return-list) ;(read-guid) )) #| Function to mirror an element on the x-axis |# (define (mirror-element-x ID [copy #t]) (send/rcv-id "Mirror" (mirrormsg* #:guid ID #:axis "x" #:copy copy))) #| Function to mirror an element on the y-axis |# (define (mirror-element-y ID [copy #t]) (send/rcv-id "Mirror" (mirrormsg* #:guid ID #:axis "y" #:copy copy))) #| Function to trim an element Receives the ID of two elements to trim Example of usage: (trim-element idWall idSlab) |# (define (trim-elements ids [shell-ids (list)]) (send/no-rcv "Trim" (trimmsg* #:guids ids #:guids2 shell-ids))) #| Function to intersect a wall with an element ID1: id of the element that will suffer the changes (wall) ID2: id of the element that may suffer changes (depends on destructive) destructive: If #t, will destroy both elements, and the result of the operation will be the intersection If #f, the second element will remain intact. Useful for the construction of Absolute Towers Example of usage: (send (intersect-wall (wall (xy -15 0) (xy 15 0) 3.0) (slab slabPoints (list)))) |# (define (intersect-wall ID1 ID2 [destructive #f]) (let ((i-msg (intersectmsg* #:guid1 ID1 #:guid2 ID2))) (if destructive (write-msg "DestructiveIntersectWall" i-msg)(write-msg "IntersectWall" i-msg)) (read-guid) )) #| Function to create a profile. At the moment profiles are only supported by walls. The name of the profile is what is used to identify it, and the function returns that name. Example: (send (wall (list (x 0)(x 10)) #:profile-name (profile "curved" (list (xy 0 0)(xy 5 0)(xy 5 5)(xy 3 5)) #:arcs (list 0 0 0 pi/2)))) |# (define (profile name points #:arcs [arcs (list)] #:material [material "GENERIC - STRUCTURAL"]) (send/no-rcv "Profile" (profilemsg* #:pts (prepare-points-to-send (append points (list (car points)))) #:arcs (prepare-arcs-to-send arcs) #:material material #:name name))) #| (send (profile "test 1" (list (xy 0 0)(xy 5 0)(xy 5 5)(xy 0 5))) (add-hole-profile "test 1" (list (xy 2 2)(xy 3 2)(xy 3 3)(xy 2 3))) (wall (list (x 0)(x 5)) #:profile-name "test 1")) |# (define (add-hole-profile name points #:arcs [arcs (list)] #:material [material "GENERIC - STRUCTURAL"]) (send/no-rcv "AddToProfile" (profilemsg* #:pts (prepare-points-to-send (append points (list (car points)))) #:arcs (prepare-arcs-to-send arcs) #:material material #:name name))) #| Function to delete list of elements elem-id: id of the element to be deleted, or list of ids to be deleted Example of usage: (send (delete-elements elemID)) (send (delete-elements elemListID)) TODO: delete a door that was deleted before because the wall was deleted |# (define (delete-elements elem-id) (define eleList (if (list? elem-id) elem-id (list elem-id))) (let ((msg (elementidlist* #:guid eleList #:crashmaterial #f))) (write-msg "Delete" msg))) (define (render file-name) (send/no-rcv "Render" (rendermsg* #:file file-name))) (define (group elements) (send/rcv-id "Group" (elementidlist* #:guid elements #:crashmaterial #f))) (define (delete-all-elements) (write-msg-name "DeleteAll")) ;; CAMERA (define (camera c-pos t-pos lens [sun-azimuth pi] [sun-altitude pi/4]) (send/no-rcv "Camera" (cameramsg* #:cx (cx c-pos) #:cy (cy c-pos) #:cz (cz c-pos) #:tx (cx t-pos) #:ty (cy t-pos) #:tz (cz t-pos) #:lens lens #:sunazimuth sun-azimuth #:sunaltitude sun-altitude)))
false
9954c55c17164e997e2b37540b7d6e1f6b2d5343
59bc8c1cf296f49909f6282ab9034908b391b26c
/src/mil/mil-runtime.rkt
7b5c90ef6b17229acc8fa987169e1966054609c0
[]
no_license
gunther-bachmann/6510
cba8a2f28866f2121a35df9d61edecef67b37094
0086e646a5e1f1862f30b5a5f694d163f6236dd1
refs/heads/master
2023-07-27T17:09:44.464179
2023-07-16T17:41:19
2023-07-16T17:41:19
188,591,223
0
0
null
null
null
null
UTF-8
Racket
false
false
29,694
rkt
mil-runtime.rkt
#lang racket (require "../6510.rkt") (require "../ast/6510-calc-opcode-facades.rkt") (provide mil-runtime) (define MILRT_CONSTANTS (list (byte-const STRING_ID_FORMAT_ERROR 0) ;; type id for values on the expression stack : ADJUST MILRT_POP and MILRT_DISPLAY! (byte-const MILRT_SYMBOL_TYPE 0) (byte-const MILRT_STRING_TYPE 1) (byte-const MILRT_UINT8_TYPE 2) (byte-const MILRT_BOOL_TYPE 3) (byte-const MILRT_CONS_CELL_TYPE 4) (byte-const MILRT_LIST_TYPE_START 5) (byte-const MILRT_LIST_TYPE_END 6) (word-const MILRT_VAL_HEAP #x9eff) ;; growing down (byte-const MILRT_ZP_VAL_HEAP_PTR #x71) ;; ptr to val-heap next free cell (byte-const MILRT_ZP_VAL_HEAP_PTRP1 #x72) ;; 2nd part (byte-const MILRT_ZP_STRING_PTR #xfb) ;; ptr for string/symbol copy 1 (byte-const MILRT_ZP_STRING_PTRP1 #xfc) (byte-const MILRT_ZP_STRING_PTR2 #xfd) ;; ptr for string/symbol copy 2 (byte-const MILRT_ZP_STRING_PTR2P1 #xfe) (byte-const MILRT_LIST_LEVEL #xff) (word-const MILRT_STRING_ID_TABLE #xc000) ;; growing up (word-const MILRT_STRING_ID_TABLE_P2 #xc100) (word-const MILRT_STRING_TABLE #xc200) ;; growing up (word-const MILRT_SYMBOL_ID_TABLE #xcf00) ;; growing up (word-const MILRT_SYMBOL_TABLE #xceff) ;; growing down )) (define MILRT_ZERO_PAGE_SETUP (list (label MILRT_SETUP) (LDA !<STRING-TABLE) (STA MILRT_ZP_VAL_HEAP_PTR) (LDA !>STRING-TABLE) (STA MILRT_ZP_VAL_HEAP_PTRP1) (LDA !<MILRT_STRING_ID_TABLE) (STA MILRT_ZP_STRING_PTR) (LDA !>MILRT_STRING_ID_TABLE) (STA MILRT_ZP_STRING_PTRP1))) (define MILRT_COPY_STRINGS_TO_IDTABLE (list (LDA !<MILRT_STRING_TABLE) (STA MILRT_ZP_STRING_PTR2) (LDA !>MILRT_STRING_TABLE) (STA MILRT_ZP_STRING_PTR2P1) (label MLRT_SETUP__COPY_STRINGS) (LDA-immediate (char->integer #\.)) (JSR $FFD2) (LDY !0) (LDA (MILRT_ZP_VAL_HEAP_PTR),y) (TAX) ;; put len into x (BEQ MILRT_SETUP__DONE) ;; store current ptr into MLRT_STRING_TABLE into MLRT_STRING_ID_TABLE (LDA MILRT_ZP_STRING_PTR2) (STA (MILRT_ZP_STRING_PTR),y) (LDA MILRT_ZP_STRING_PTR2P1) (INY) (STA (MILRT_ZP_STRING_PTR),y) (INX) ;; copy len = strlen + len info itself (LDY !0) (label MLRT_SETUP__COPY) (LDA (MILRT_ZP_VAL_HEAP_PTR),y) (STA (MILRT_ZP_STRING_PTR2),y) (INY) (DEX) (BNE MLRT_SETUP__COPY) ;; increment string table ptr by Y (TYA) (CLC) (ADC MILRT_ZP_STRING_PTR2) (STA MILRT_ZP_STRING_PTR2) (BCC MILRT_SETUP__COPY_INC_NEXT) (INC MILRT_ZP_STRING_PTR2P1) (label MILRT_SETUP__COPY_INC_NEXT) ;; increment value expression ptr (src of strings) (TYA) (CLC) (ADC MILRT_ZP_VAL_HEAP_PTR) (STA MILRT_ZP_VAL_HEAP_PTR) (BCC MILRT_SETUP__COPY_INC_NEXT3) (INC MILRT_ZP_VAL_HEAP_PTRP1) (label MILRT_SETUP__COPY_INC_NEXT3) ;; increment location in string id table (CLC) (LDA !2) (ADC MILRT_ZP_STRING_PTR) (STA MILRT_ZP_STRING_PTR) (BCC MILRT_SETUP__COPY_INC_NEXT2) (INC MILRT_ZP_STRING_PTRP1) (label MILRT_SETUP__COPY_INC_NEXT2) (JMP MLRT_SETUP__COPY_STRINGS) (label MILRT_SETUP__DONE) (LDA !13) (JSR $FFD2) )) (define MILRT_SETUP_VAL_HEAP (list (label MILRT_SETUP_VALUE_HEAP) (LDA !<MILRT_VAL_HEAP) (STA MILRT_ZP_VAL_HEAP_PTR) (LDA !>MILRT_VAL_HEAP) (STA MILRT_ZP_VAL_HEAP_PTRP1))) (define MILRT_PUSH_STRING (list ;; push the STRING_ID in A onto the value stack ;; A = MILRT_STRING_TYPE, Y = 0 (label MILRT_PUSH_STRING) (LDY !2) (JSR MILRT_DEC_VAL_HEAP_BY_Y) (LDY !2) (STA (MILRT_ZP_VAL_HEAP_PTR),y) (DEY) (LDA !MILRT_STRING_TYPE) (STA (MILRT_ZP_VAL_HEAP_PTR),y) (DEY) ;; return w/ Y=0 (RTS))) (define MILRT_DEC_VAL_HEAP_BY_Y (list ;; decrement ptr to free tos of value stack (push) by Y ;; Y = 0 (label MILRT_DEC_VAL_HEAP_BY_Y) (DEC MILRT_ZP_VAL_HEAP_PTR) (BNE MILRT_DVHBY_DONE) (DEC MILRT_ZP_VAL_HEAP_PTRP1) (label MILRT_DVHBY_DONE) (DEY) (BNE MILRT_DEC_VAL_HEAP_BY_Y) (RTS))) (define MILRT_INC_VAL_HEAP_BY_Y (list ;; increment ptr to free tos of value stack (pop) by Y ;; Y = 0 (label MILRT_INC_VAL_HEAP_BY_Y) (INC MILRT_ZP_VAL_HEAP_PTR) (BNE MILRT_IVHBY_DONE) (INC MILRT_ZP_VAL_HEAP_PTRP1) (label MILRT_IVHBY_DONE) (DEY) (BNE MILRT_INC_VAL_HEAP_BY_Y) (RTS))) (define MILRT_PUSH_LIST_END_MARKER (list (label MILRT_PUSH_LIST_END_MARKER) (LDY !2) (JSR MILRT_DEC_VAL_HEAP_BY_Y) (INY) (LDA !MILRT_LIST_TYPE_END) (STA (MILRT_ZP_VAL_HEAP_PTR),y) (DEY) ;; return w/ Y=0 (RTS))) (define MILRT_PUSH_LIST_START_MARKER (list (label MILRT_PUSH_LIST_START_MARKER) (LDY !2) (JSR MILRT_DEC_VAL_HEAP_BY_Y) (INY) (LDA !MILRT_LIST_TYPE_START) (STA (MILRT_ZP_VAL_HEAP_PTR),y) (DEY) ;; return w/ Y=0 (RTS))) (define MILRT_GENERIC_POP (list (label MILRT_INTERNAL_POP) (LDY !1) (LDA (MILRT_ZP_VAL_HEAP_PTR),y) (CMP !MILRT_UINT8_TYPE) (BEQ MILRT_GENERIC_POP__POPUINT8) (CMP !MILRT_BOOL_TYPE) (BEQ MILRT_GENERIC_POP__POPBOOL) (CMP !MILRT_STRING_TYPE) (BEQ MILRT_GENERIC_POP__POPSTRING) (CMP !MILRT_SYMBOL_TYPE) (BEQ MILRT_GENERIC_POP__POPSYMBOL) (CMP !MILRT_LIST_TYPE_START) (BEQ MILRT_GENERIC_POP__POPLIST) (CMP !MILRT_CONS_CELL_TYPE) (BEQ MILRT_GENERIC_POP__POPCONS) (label MILRT_GENERIC_POP__POPUINT8) (JMP MILRT_POP_UINT8) (label MILRT_GENERIC_POP__POPBOOL) (JMP MILRT_POP_BOOL) (label MILRT_GENERIC_POP__POPSTRING) (JMP MILRT_POP_STRING) (label MILRT_GENERIC_POP__POPSYMBOL) (JMP MILRT_POP_SYMBOL) (label MILRT_GENERIC_POP__POPLIST) (JMP MILRT_POP_LIST) (label MILRT_GENERIC_POP__POPCONS) (JMP MILRT_POP_CONS_CELL) )) (define MILRT_POP_LIST (list (label MILRT_POP_LIST) (LDX !1) (label MILRT_POP_LIST__CONT) (LDY !1) (LDA (MILRT_ZP_VAL_HEAP_PTR),y) (CMP !MILRT_LIST_TYPE_START) (BEQ MILRT_POP_LIST__INC_LEVEL) (CMP !MILRT_LIST_TYPE_END) (BEQ MILRT_POP_LIST__DEC_LEVEL) (JSR MILRT_GENERIC_POP) (label MILRT_POP_LIST__INC_LEVEL) (INX) (INX) ;; since another dex is executed (label MILRT_POP_LIST__DEC_LEVEL) (LDY !2) (JSR MILRT_DEC_VAL_HEAP_BY_Y) (DEX) (BNE MILRT_POP_LIST__CONT) (RTS))) ;; combines the two top elements on the stack to a cons cell (define MILRT_PUSH_CONS_CELLT (list (label MILRT_PUSH_CONS_CELLT) (LDY !2) (JSR MILRT_DEC_VAL_HEAP_BY_Y) (INY) (LDA !MILRT_CONS_CELL_TYPE) (STA (MILRT_ZP_VAL_HEAP_PTR),y) (DEY) ;; return w/ Y=0 (RTS))) (define MILRT_POP_CONS_CELL (list (label MILRT_POP_CONS_CELL) (LDY !6) (JMP MILRT_INC_VAL_HEAP_BY_Y))) (define MILRT_PUSH_UINT8 (list ;; push the UINT8 in A onto the value stack ;; A = MILRT_UINT8_TYPE, Y = 0 (label MILRT_PUSH_UINT8) (LDY !2) (JSR MILRT_DEC_VAL_HEAP_BY_Y) (LDY !2) (STA (MILRT_ZP_VAL_HEAP_PTR),y) (DEY) (LDA !MILRT_UINT8_TYPE) (STA (MILRT_ZP_VAL_HEAP_PTR),y) (DEY) ;; return w/ Y=0 (RTS))) (define MILRT_POP_UINT8 (list (label MILRT_POP_UINT8) (LDY !1) (LDA (MILRT_ZP_VAL_HEAP_PTR),y) (CMP !MILRT_UINT8_TYPE) (BEQ MILRT_POP_UINT8__CONT) (JMP MILRT_TYPE_ERROR) (label MILRT_POP_UINT8__CONT) (INY) (LDA (MILRT_ZP_VAL_HEAP_PTR),y) (JSR MILRT_INC_VAL_HEAP_BY_Y) (RTS))) (define MILRT_PUSH_BOOL (list ;; push the UINT8 in A onto the value stack ;; A = MILRT_BOOL_TYPE, Y = 0 (label MILRT_PUSH_BOOL) (LDY !2) (JSR MILRT_DEC_VAL_HEAP_BY_Y) (label MILRT_SETTOS_BOOL) (LDY !2) (STA (MILRT_ZP_VAL_HEAP_PTR),y) (DEY) (LDA !MILRT_BOOL_TYPE) (STA (MILRT_ZP_VAL_HEAP_PTR),y) (DEY) ;; return w/ Y=0 (RTS))) (define MILRT_POP_BOOL (list (label MILRT_POP_BOOL) (LDY !1) (LDA (MILRT_ZP_VAL_HEAP_PTR),y) (CMP !MILRT_BOOL_TYPE) (BEQ MILRT_POP_BOOL__CONT) (JMP MILRT_TYPE_ERROR) (label MILRT_POP_BOOL__CONT) (INY) (LDA (MILRT_ZP_VAL_HEAP_PTR),y) (JSR MILRT_INC_VAL_HEAP_BY_Y) (CMP !0) (RTS))) (define MILRT_GREATER (list (label MILRT_GREATER) (JSR MILRT_POP_UINT8) (PHA) (LDY !1) (LDA (MILRT_ZP_VAL_HEAP_PTR),y) (CMP !MILRT_UINT8_TYPE) (BEQ MILRT_GREATER__CONT) (PLA) ;; drop pushed a from stack (JMP MILRT_TYPE_ERROR) (label MILRT_GREATER__CONT) (PLA) (INY) (CMP (MILRT_ZP_VAL_HEAP_PTR),y) (BEQ MILRT_GREATER__FALSE) (BCC MILRT_GREATER__FALSE) (LDA !$FF) ;; true (JMP MILRT_SETTOS_BOOL) (label MILRT_GREATER__FALSE) (LDA !0) (JMP MILRT_SETTOS_BOOL))) (define MILRT_SMALLER (list (label MILRT_SMALLER) (JSR MILRT_POP_UINT8) (PHA) (LDY !1) (LDA (MILRT_ZP_VAL_HEAP_PTR),y) (CMP !MILRT_UINT8_TYPE) (BEQ MILRT_SMALLER__CONT) (PLA) ;; drop pushed a from stack (JMP MILRT_TYPE_ERROR) (label MILRT_SMALLER__CONT) (PLA) (INY) (CMP (MILRT_ZP_VAL_HEAP_PTR),y) (BCS MILRT_SMALLER__FALSE) (LDA !$FF) ;; true (JMP MILRT_SETTOS_BOOL) (label MILRT_SMALLER__FALSE) (LDA !0) ;; false (JMP MILRT_SETTOS_BOOL))) (define MILRT_PLUS (list (label MILRT_PLUS) (JSR MILRT_POP_UINT8) (PHA) (LDY !1) (LDA (MILRT_ZP_VAL_HEAP_PTR),y) (CMP !MILRT_UINT8_TYPE) (BEQ MILRT_PLUS__CONT) (PLA) ;; drop pushed a from stack (JMP MILRT_TYPE_ERROR) (label MILRT_PLUS__CONT) (PLA) (INY) (CLC) (ADC (MILRT_ZP_VAL_HEAP_PTR),y) (STA (MILRT_ZP_VAL_HEAP_PTR),y) (RTS))) (define MILRT_MINUS (list (label MILRT_MINUS) (JSR MILRT_POP_UINT8) (PHA) (LDY !1) (LDA (MILRT_ZP_VAL_HEAP_PTR),y) (CMP !MILRT_UINT8_TYPE) (BEQ MILRT_MINUS__CONT) (PLA) ;; drop pushed a from stack (JMP MILRT_TYPE_ERROR) (label MILRT_MINUS__CONT) (PLA) (INY) (CLC) (SBC (MILRT_ZP_VAL_HEAP_PTR),y) (STA (MILRT_ZP_VAL_HEAP_PTR),y) (RTS))) (define MILRT_CDR (list (label MILRT_CDR) (RTS))) (define MILRT_CAR (list (label MILRT_CAR) (RTS))) (define MILRT_CONS (list (label MILRT_CONS) (RTS))) (define MILRT_EQUAL (list (label MILRT_EQUAL) (RTS))) (define MILRT_NOT (list (label MILRT_NOT) (RTS))) (define MILRT_ZERO (list (label MILRT_ZERO) (RTS))) (define MILRT_TYPE_ERROR (list (label MILRT_TYPE_ERROR) (LDA-immediate (char->integer #\X)) (JMP $FFD2))) (define MILRT_DISPLAY_STRING (list (label MILRT_DISPLAY_STRING) (LDA-immediate (char->integer #\")) (JSR $FFD2) (LDY !2) ;; expecting bytes on the stack (TYA) (PHA) (LDA (MILRT_ZP_VAL_HEAP_PTR),y) ;; get string id (JSR MILRT_STRING_ID2PTR) (PLA) (TAY) (JSR MILRT_INC_VAL_HEAP_BY_Y) ;; drop string from value stack (LDA (MILRT_ZP_STRING_PTR),y) ;; y should be 0, a= strlen (TAY);; y = strlen (label MILRT_DISPLAY_STRING__NEXT) (LDA (MILRT_ZP_STRING_PTR),y) (CMP-immediate (char->integer #\")) (BNE MILRT_DISPLAY_STRING__REG) ;; (LDA-immediate (char->integer #\#)) (JSR $FFD2) ;; (LDA (MILRT_ZP_STRING_PTR),y) (label MILRT_DISPLAY_STRING__REG) (JSR $FFD2) (DEY) (BNE MILRT_DISPLAY_STRING__NEXT) (LDA-immediate (char->integer #\")) (JSR $FFD2) (RTS))) (define MILRT_DISPLAY (list ;; DISPLAY string with STRING_ID on the value stack ;; Y = 0, A = last char of string (label MILRT_DISPLAY) (LDY !2) ;; expecting bytes on the stack (TYA) (PHA) (LDA (MILRT_ZP_VAL_HEAP_PTR),y) ;; get string id (JSR MILRT_STRING_ID2PTR) (PLA) (TAY) (JSR MILRT_INC_VAL_HEAP_BY_Y) ;; drop string from value stack (LDA (MILRT_ZP_STRING_PTR),y) ;; y should be 0, a= strlen (TAY);; y = strlen (label MILRT_DISPLAY__NEXT) (LDA (MILRT_ZP_STRING_PTR),y) ;; if A = #\^, then special (up arrow) (CMP !$5E) (BNE MILRT_DISPLAY__REG) (DEY) (LDA (MILRT_ZP_STRING_PTR),y) (CMP !$5E) (BNE MILRT_DISPLAY__OTHER) (label MILRT_DISPLAY__REG) (JSR $FFD2) (label MILRT_DISPLAY__REG_CONT) (DEY) (BNE MILRT_DISPLAY__NEXT) (RTS) (label MILRT_DISPLAY__OTHER) (CMP !97) ;; 'a' (BNE MILRT_DISPLAY__STR_FORMAT_ERROR) ;; keep y (TYA) (PHA) (JSR MILRT_DISPLAY_OBJECT) (PLA) (TAY) (JMP MILRT_DISPLAY__REG_CONT) ;; continue with rest of string (label MILRT_DISPLAY__STR_FORMAT_ERROR) (LDA !STRING_ID_FORMAT_ERROR) (JSR MILRT_PUSH_STRING) (JMP MILRT_DISPLAY))) (define MILRT_DISPLAY_OBJECT (list ;; print object tos as string and pop ;; uint8 => 0..255, string => string, char => char, bool => true/false ;; cons-cell => (a . b), list => (a b ... ) ;; Y = *, A = * (label MILRT_DISPLAY_OBJECT) (LDY !1) ;; (LDA (MILRT_ZP_VAL_HEAP_PTR),y) ;; get type descriptor (label MILRT_DISPLAY_OBJECT_A) (CMP !MILRT_UINT8_TYPE) (BNE MILRT_DISPLAY_NONUINT) (label MILRT_DISPLAY_UINT8) (INY) (LDA !36) ;; prefix with '$' (JSR $FFD2) (LDA (MILRT_ZP_VAL_HEAP_PTR),y) ;; get uint value (JSR MILRT_INC_VAL_HEAP_BY_Y) ;; pop uint incl. type descriptor from stack (JMP MILRT_DISPLAY_UINT8-RAW) (label MILRT_DISPLAY_NONUINT) ;; TODO: implement printing strings, cons-cells, lists and boolean (CMP !MILRT_LIST_TYPE_START) (BNE MILRT_DISPLAY_OBJECT__NOLIST) (JMP MILRT_DISPLAY_LIST) (label MILRT_DISPLAY_OBJECT__NOLIST) (CMP !MILRT_STRING_TYPE) (BNE MILRT_DISPLAY_OBJECT_NOSTRING) (JMP MILRT_DISPLAY_STRING) (label MILRT_DISPLAY_OBJECT_NOSTRING) (LDA-immediate (char->integer #\?)) (JMP $FFD2))) (define MILRT_DISPLAY_LIST (list (label MILRT_DISPLAY_LIST) (LDA !0) (STA MILRT_LIST_LEVEL) (label MILRT_DISPLAY_LIST__NEXTLEVEL) (INC MILRT_LIST_LEVEL) (LDY !2) (JSR MILRT_INC_VAL_HEAP_BY_Y) (LDA-immediate (char->integer #\()) (JSR $FFD2) (label MILRT_DISPLAY_LIST__CONT) (LDY !1) (LDA (MILRT_ZP_VAL_HEAP_PTR),y) (CMP !MILRT_LIST_TYPE_END) (BEQ MILRT_DISPLAY_LIST__LE) (PHA) (LDA-immediate (char->integer #\ )) (JSR $FFD2) (PLA) (CMP !MILRT_LIST_TYPE_START) (BEQ MILRT_DISPLAY_LIST__NEXTLEVEL) (JSR MILRT_DISPLAY_OBJECT_A) (JMP MILRT_DISPLAY_LIST__CONT) (label MILRT_DISPLAY_LIST__LE) (LDY !2) (JSR MILRT_INC_VAL_HEAP_BY_Y) (LDA-immediate (char->integer #\))) (JSR $FFD2) (DEC MILRT_LIST_LEVEL) (BNE MILRT_DISPLAY_LIST__CONT) (RTS) )) (define MILRT_DISPLAY_UINT8-RAW (list ;; basic routine to write byte ! ;; print byte in A as Hex ;; A = last Digit, need 1 stack slot (label MILRT_DISPLAY_UINT8-RAW) (PHA) ; Save A (LSR) (LSR) (LSR) (LSR) ; Move top nybble to bottom nybble (JSR MILRT_DISPLAY_NIBBLE) ; Print this nybble (PLA) ; Get A back and print bottom nybble (label MILRT_DISPLAY_NIBBLE) (AND !15) ; Keep bottom four bits (CMP !10) (BCC MILRT_DISPLAY_DIGIT) ; If 0-9, jump to print (ADC !6) ; Convert ':' to 'A' (label MILRT_DISPLAY_DIGIT) (ADC !48) ; 0 -> 0 (JMP $FFD2))) (define MILRT_STRING_ID2PTR (list ;; load ptr to string with A = STRING ID ;; into zero page MILRT_ZP_STRING_PTR, MILRT_ZP_STRING_PTRP1 (low, high) ;; A = *, Y = * (label MILRT_STRING_ID2PTR) (ASL A) (TAY) (BCS MILRT_STRING_ID2PTR_2) (LDA MILRT_STRING_ID_TABLE,y) (STA MILRT_ZP_STRING_PTR) (INY) (LDA MILRT_STRING_ID_TABLE,y) (STA MILRT_ZP_STRING_PTRP1) (RTS) (label MILRT_STRING_ID2PTR_2) (LDA MILRT_STRING_ID_TABLE_P2,y) (STA MILRT_ZP_STRING_PTR) (INY) (LDA MILRT_STRING_ID_TABLE_P2,y) (STA MILRT_ZP_STRING_PTRP1) (RTS))) (define mil-runtime (append MILRT_CONSTANTS MILRT_ZERO_PAGE_SETUP MILRT_COPY_STRINGS_TO_IDTABLE MILRT_SETUP_VAL_HEAP (list (JMP MAIN)) MILRT_DEC_VAL_HEAP_BY_Y MILRT_INC_VAL_HEAP_BY_Y MILRT_PUSH_STRING MILRT_PUSH_UINT8 MILRT_POP_UINT8 MILRT_PUSH_BOOL MILRT_POP_BOOL MILRT_GREATER MILRT_SMALLER MILRT_PLUS MILRT_MINUS MILRT_CDR MILRT_CAR MILRT_CONS MILRT_EQUAL MILRT_NOT MILRT_ZERO MILRT_TYPE_ERROR MILRT_DISPLAY MILRT_DISPLAY_OBJECT MILRT_DISPLAY_UINT8-RAW MILRT_DISPLAY_LIST MILRT_STRING_ID2PTR MILRT_PUSH_LIST_START_MARKER MILRT_PUSH_LIST_END_MARKER MILRT_DISPLAY_STRING (list (label MAIN) ;; (LDA-immediate (char->integer #\Z)) ;; (JMP $FFD2) )))
false
9187cae7a2edb49c58ec7774b93a85a841dd3607
03e4064a7a55b5d00937e74cddb587ab09cf7af9
/nscheme/old/old-experiments/datalog.rkt
276d2024ceaaaa432523ad1263ba4b9d6158515c
[ "BSD-2-Clause" ]
permissive
gregr/ina
29f28396cd47aa443319147ecde5235d11e1c3d1
16188050caa510899ae22ff303a67897985b1c3b
refs/heads/master
2023-08-25T13:31:44.131598
2023-08-14T16:46:48
2023-08-14T16:46:48
40,606,975
17
0
null
null
null
null
UTF-8
Racket
false
false
8,698
rkt
datalog.rkt
#lang racket/base (provide db-empty db-prune db-sorted datalog-rules datalog-facts datalog-link datalog-eval ) (require racket/list racket/match racket/set ) (define set-empty (set)) (define hash-empty (hash)) (define db-empty hash-empty) ;; TODO: aggregates in head; other rule body constraints (define (var? d) (symbol? d)) (define (constant? d) (or (boolean? d) (null? d) (number? d) (char? d) (string? d) (pair? d) (vector? d))) (define (term? d) (or (constant? d) (var? d))) (define (term-list? d) (or (null? d) (and (pair? d) (term? (car d)) (term-list? (cdr d))))) (define (predicate? d) (and (pair? d) (symbol? (car d)) (term-list? (cdr d)))) (define (predicate-name p) (car p)) (define (predicate-param* p) (cdr p)) (struct rule (head positive negative) #:transparent) (define (rule-name r) (car (rule-head r))) (define (rule-deps-positive r) (list->set (map car (rule-positive r)))) (define (rule-deps-negative r) (list->set (map car (rule-negative r)))) (define (rule-empty head) (rule head '() '())) (define (rule-add-positive r p) (match-define (rule head pos neg) r) (rule head (cons p pos) neg)) (define (rule-add-negative r n) (match-define (rule head pos neg) r) (rule head pos (cons n neg))) (define (rule-body? r d) (match d ('() r) (`(,(? predicate? p) . ,body) (define rb (rule-body? r body)) (and rb (rule-add-positive rb p))) (`((#f ,(? predicate? np)) . ,body) (define rb (rule-body? r body)) (and rb (rule-add-negative rb np))) (_ (error "invalid rule body:" r d)))) (define (vars-predicate p) (list->set (filter var? (predicate-param* p)))) (define (vars-predicate* p*) (foldl set-union set-empty (map vars-predicate p*))) (define (rule-vars-covered r) (match-define (rule head pos neg) r) (define missing (set-subtract (vars-predicate head) (vars-predicate* pos))) (when (not (set-empty? missing)) (error "incomplete variable coverage:" missing r))) (define (covered-rule? d) (define r (and (pair? d) (predicate? (car d)) (rule-body? (rule-empty (car d)) (cdr d)))) (and r (rule-vars-covered r) r)) (define (predicate-arity-union a b) (for/fold ((result b)) (((name arity) (in-hash a))) (when (not (= arity (hash-ref b name arity))) (error "predicate arity mismatch:" name arity (hash-ref b name arity))) (hash-set result name arity))) (define (predicate-arity-union* a a*) (foldl predicate-arity-union a a*)) (define (predicate-arity p) (hash (car p) (length (cdr p)))) (define (rule->predicate-arity r) (match-define (rule head pos neg) r) (predicate-arity-union* (predicate-arity-union* (predicate-arity head) (map predicate-arity pos)) (map predicate-arity neg))) (define (datalog-rules rules) (define r* (map (lambda (d) (define r (covered-rule? d)) (when (not r) (error "invalid rule:" d)) r) rules)) ;; raises error on failure (predicate-arity-union* hash-empty (map rule->predicate-arity r*)) r*) (define (datalog-link* r**) ;; raises error on failure (foldl (lambda (r* a*) (predicate-arity-union* a* (map rule->predicate-arity r*))) hash-empty r**) (append* r**)) (define (datalog-link . r**) (datalog-link* r**)) (define (datalog-facts facts) (datalog-rules (map list facts))) (define (walk st t) (if (var? t) (hash-ref st t t) t)) (define (walk* st t*) (map (lambda (t) (walk st t)) t*)) (define (unify* st ta* b*) (define (unify st a b) (if (var? a) (hash-set st a b) (and (equal? a b) st))) (and st (if (null? ta*) st (unify* (unify st (walk st (car ta*)) (car b*)) (cdr ta*) (cdr b*))))) (define (db-union a b) (for/fold ((result b)) (((name t**) (in-hash a))) (hash-set result name (set-union t** (hash-ref result name set-empty))))) (define (db-union* db*) (foldl db-union hash-empty db*)) (define (db-subtract a b) (for/fold ((result a)) (((name t**) (in-hash b))) (define new (set-subtract (hash-ref result name set-empty) t**)) (if (set-empty? new) (hash-remove result name) (hash-set result name new)))) (define (datalog-eval db r*) (define (fixed-point-eval db r*) (define (rule-eval r) (define st* (let loop ((st hash-empty) (pos* (rule-positive r))) (if (null? pos*) (let nloop ((st st) (neg* (rule-negative r))) (if (null? neg*) (list st) (let ((name (predicate-name (car neg*))) (t* (predicate-param* (car neg*)))) (if (ormap (lambda (b*) (unify* st t* b*)) (set->list (hash-ref db name set-empty))) '() (nloop st (cdr neg*)))))) (let ((name (predicate-name (car pos*))) (t* (predicate-param* (car pos*)))) (for/fold ((st* '())) ((b* (in-set (hash-ref db name set-empty)))) (define st-new (unify* st t* b*)) (append (if st-new (loop st-new (cdr pos*)) '()) st*)))))) (define t* (cdr (rule-head r))) (if (null? st*) hash-empty (hash (rule-name r) (for/set ((st st*)) (walk* st t*))))) (define db-new (db-subtract (db-union* (map rule-eval r*)) db)) (if (hash-empty? db-new) db (fixed-point-eval (db-union db-new db) r*))) (define (stratified-eval db n*-pending n*-later r*-later r*) (define (should-wait? r) (or (set-member? n*-later (rule-name r)) (ormap (lambda (p) (set-member? n*-pending (predicate-name p))) (rule-negative r)) (ormap (lambda (p) (set-member? n*-later (predicate-name p))) (rule-positive r)))) (define r*-wait (filter should-wait? r*)) (define n*-wait (list->set (map rule-name r*-wait))) (define r*-continue (filter (lambda (r) (not (should-wait? r))) r*)) (cond ((and (null? r*-later) (null? r*)) db) ((pair? r*-wait) (stratified-eval db n*-pending (set-union n*-wait n*-later) (append r*-wait r*-later) r*-continue)) ((null? r*-continue) (error "unstratifiable:" n*-later)) (else (stratified-eval (fixed-point-eval db r*) (list->set (map rule-name r*-later)) set-empty '() r*-later)))) (stratified-eval db (list->set (map rule-name r*)) set-empty '() r*)) (define example-rules (datalog-rules '( ((path X Y) (edge X Y)) ((path X Z) (path X Y) (path Y Z) (#f (obstacle Y)) ) ;; alternatively, one of these: ;; ((path X Z) (edge X Y) (path Y Z)) ;; ((path X Z) (path X Y) (edge Y Z)) ;; optional reflexivity ;((path X X) (edge X Y)) ;((path X X) (edge Y X)) ))) (define example-facts (datalog-facts '( ;(obstacle #f) ;(obstacle 'c) (edge 'a 'b) (edge 'b 'c) (edge 'c 'd) ;; optional cycle ;(edge 'd 'a) ))) (define (pair<? a b) (or (any<? (car a) (car b)) (and (not (any<? (car b) (car a))) (any<? (cdr a) (cdr b))))) (define (vector<? a b) (or (< (vector-length a) (vector-length b)) (let loop ((i 0)) (and (< i (vector-length a)) (or (any<? (vector-ref a i) (vector-ref b i)) (and (not (any<? (vector-ref b i) (vector-ref a i))) (loop (+ i 1)))))))) (define comparators `((,null? . ,(lambda _ #f)) (,boolean? . ,(lambda (a b) (not a))) (,number? . ,<) (,symbol? . ,symbol<?) (,char? . ,char<?) (,string? . ,string<?) (,pair? . ,pair<?) (,vector? . ,vector<?))) (define (any<? a b) (define (find-comparator x) (let loop ((i 0) (c* comparators)) (if (or (null? c*) ((caar c*) x)) (cons i (cdar c*)) (loop (+ i 1) (cdr c*))))) (match-define (cons ia c<) (find-comparator a)) (match-define (cons ib _) (find-comparator b)) (or (< ia ib) (and (= ia ib) (c< a b)))) (define (db-sorted db) (define (sorted-set x*) (sort (set->list x*) any<?)) (sort (map (lambda (kv) (cons (car kv) (sorted-set (cdr kv)))) (hash->list db)) (lambda (n m) (symbol<? (car n) (car m))))) (define (db-prune keep? db) (for/fold ((result hash-empty)) (((name t**) (in-hash db))) (define kept (list->set (filter keep? (set->list t**)))) (if (set-empty? kept) result (hash-set result name kept)))) ;; testing (define (test) (db-sorted (datalog-eval db-empty (datalog-link example-rules example-facts))))
false
43778d1e6f5a65de8207dd62c2e9f7a46d9cdcb7
bb6ddf239800c00988a29263947f9dc2b03b0a22
/solutions/exercise-7.5.rkt
6573a679e53184a0a196888d57b13a8af93efc60
[]
no_license
aboots/EOPL-Exercises
f81b5965f3b17f52557ffe97c0e0a9e40ec7b5b0
11667f1e84a1a3e300c2182630b56db3e3d9246a
refs/heads/master
2022-05-31T21:29:23.752438
2018-10-05T06:38:55
2018-10-05T06:38:55
null
0
0
null
null
null
null
UTF-8
Racket
false
false
12,276
rkt
exercise-7.5.rkt
#lang eopl ;; Exercise 7.5 [★★] Extend the checker to handle multiple let declarations, multiargument procedures, and multiple ;; letrec declarations. You will need to add types of the form (t1 * t2 * ... * tn -> t) to handle multiargument ;; procedures. ;; Grammar. (define the-lexical-spec '([whitespace (whitespace) skip] [comment ("%" (arbno (not #\newline))) skip] [identifier (letter (arbno (or letter digit "_" "-" "?"))) symbol] [number (digit (arbno digit)) number] [number ("-" digit (arbno digit)) number])) (define the-grammar '([program (expression) a-program] [expression (number) const-exp] [expression ("-" "(" expression "," expression ")") diff-exp] [expression ("zero?" "(" expression ")") zero?-exp] [expression ("if" expression "then" expression "else" expression) if-exp] [expression (identifier) var-exp] [expression ("let" (arbno identifier "=" expression) "in" expression) let-exp] [expression ("proc" "(" (separated-list identifier ":" type ",") ")" expression) proc-exp] [expression ("(" expression (arbno expression) ")") call-exp] [expression ("letrec" (arbno type identifier "(" (separated-list identifier ":" type ",") ")" "=" expression) "in" expression) letrec-exp] [type ("int") int-type] [type ("bool") bool-type] [type ("(" (separated-list type "*") "->" type ")") proc-type])) (sllgen:make-define-datatypes the-lexical-spec the-grammar) (define scan&parse (sllgen:make-string-parser the-lexical-spec the-grammar)) ;; Data structures - expressed values. (define-datatype proc proc? [procedure [bvars (list-of symbol?)] [body expression?] [env environment?]]) (define-datatype expval expval? [num-val [value number?]] [bool-val [boolean boolean?]] [proc-val [proc proc?]]) (define expval-extractor-error (lambda (variant value) (eopl:error 'expval-extractors "Looking for a ~s, found ~s" variant value))) (define expval->num (lambda (v) (cases expval v [num-val (num) num] [else (expval-extractor-error 'num v)]))) (define expval->bool (lambda (v) (cases expval v [bool-val (bool) bool] [else (expval-extractor-error 'bool v)]))) (define expval->proc (lambda (v) (cases expval v [proc-val (proc) proc] [else (expval-extractor-error 'proc v)]))) ;; Data structures - environment. (define-datatype environment environment? [empty-env] [extend-env [bvar symbol?] [bval expval?] [saved-env environment?]] [extend-env-rec [p-names (list-of symbol?)] [b-vars (list-of (list-of symbol?))] [p-bodies (list-of expression?)] [saved-env environment?]]) (define apply-env (lambda (env search-sym) (cases environment env [empty-env () (eopl:error 'apply-env "No binding for ~s" search-sym)] [extend-env (bvar bval saved-env) (if (eqv? search-sym bvar) bval (apply-env saved-env search-sym))] [extend-env-rec (p-names b-vars p-bodies saved-env) (let loop ([p-names p-names] [b-vars b-vars] [p-bodies p-bodies]) (cond [(null? p-names) (apply-env saved-env search-sym)] [(eqv? search-sym (car p-names)) (proc-val (procedure (car b-vars) (car p-bodies) env))] [else (loop (cdr p-names) (cdr b-vars) (cdr p-bodies))]))]))) (define extend-env* (lambda (bvars bvals saved-env) (if (null? bvars) saved-env (extend-env* (cdr bvars) (cdr bvals) (extend-env (car bvars) (car bvals) saved-env))))) ;; Data structures - type environment. (define-datatype type-environment type-environment? [empty-tenv-record] [extended-tenv-record [sym symbol?] [type type?] [tenv type-environment?]]) (define apply-tenv (lambda (tenv sym) (cases type-environment tenv [empty-tenv-record () (eopl:error 'apply-tenv "Unbound variable ~s" sym)] [extended-tenv-record (sym1 val1 old-env) (if (eqv? sym sym1) val1 (apply-tenv old-env sym))]))) (define empty-tenv empty-tenv-record) (define extend-tenv extended-tenv-record) (define extend-tenv* (lambda (syms types saved-tenv) (if (null? syms) saved-tenv (extend-tenv* (cdr syms) (cdr types) (extend-tenv (car syms) (car types) saved-tenv))))) ;; Checker. (define list-join (lambda (lst sep) (if (null? lst) '() (let loop ([acc (list (car lst))] [lst (cdr lst)]) (if (null? lst) (reverse acc) (loop (cons (car lst) (cons sep acc)) (cdr lst))))))) (define type-to-external-form (lambda (ty) (cases type ty [int-type () 'int] [bool-type () 'bool] [proc-type (arg-types result-type) (append (list-join (map type-to-external-form arg-types) '*) (list '-> (type-to-external-form result-type)))]))) (define report-unequal-types (lambda (ty1 ty2 exp) (eopl:error 'check-equal-type! "Types didn't match: ~s != ~a in~%~a" (type-to-external-form ty1) (type-to-external-form ty2) exp))) (define check-equal-type! (lambda (ty1 ty2 exp) (when (not (equal? ty1 ty2)) (report-unequal-types ty1 ty2 exp)))) (define report-rator-not-a-proc-type (lambda (rator-type rator) (eopl:error 'type-of-expression "Rator not a proc type:~%~s~%had rator type ~s" rator (type-to-external-form rator-type)))) (define type-of (lambda (exp tenv) (cases expression exp [const-exp (num) (int-type)] [var-exp (var) (apply-tenv tenv var)] [diff-exp (exp1 exp2) (let ([ty1 (type-of exp1 tenv)] [ty2 (type-of exp2 tenv)]) (check-equal-type! ty1 (int-type) exp1) (check-equal-type! ty2 (int-type) exp2) (int-type))] [zero?-exp (exp1) (let ([ty1 (type-of exp1 tenv)]) (check-equal-type! ty1 (int-type) exp1) (bool-type))] [if-exp (exp1 exp2 exp3) (let ([ty1 (type-of exp1 tenv)] [ty2 (type-of exp2 tenv)] [ty3 (type-of exp3 tenv)]) (check-equal-type! ty1 (bool-type) exp1) (check-equal-type! ty2 ty3 exp) ty2)] [let-exp (vars exps body) (let ([exp-types (map (lambda (exp1) (type-of exp1 tenv)) exps)]) (type-of body (extend-tenv* vars exp-types tenv)))] [proc-exp (vars var-types body) (let ([result-type (type-of body (extend-tenv* vars var-types tenv))]) (proc-type var-types result-type))] [call-exp (rator rands) (let ([rator-type (type-of rator tenv)] [rand-types (map (lambda (rand) (type-of rand tenv)) rands)]) (cases type rator-type [proc-type (arg-types result-type) (begin (for-each check-equal-type! arg-types rand-types rands) result-type)] [else (report-rator-not-a-proc-type rator-type rator)]))] [letrec-exp (p-result-types p-names b-vars b-var-types p-bodies letrec-body) (let ([tenv-for-letrec-body (extend-tenv* p-names (map (lambda (b-var-type p-result-type) (proc-type b-var-type p-result-type)) b-var-types p-result-types) tenv)]) (let ([p-body-types (map (lambda (b-vars b-var-types p-body) (type-of p-body (extend-tenv* b-vars b-var-types tenv-for-letrec-body))) b-vars b-var-types p-bodies)]) (for-each check-equal-type! p-body-types p-result-types p-bodies) (type-of letrec-body tenv-for-letrec-body)))]))) (define type-of-program (lambda (pgm) [cases program pgm (a-program (exp1) (type-of exp1 (empty-tenv)))])) ;; Interpreter. (define apply-procedure (lambda (proc1 args) (cases proc proc1 [procedure (vars body saved-env) (value-of body (extend-env* vars args saved-env))]))) (define value-of (lambda (exp env) (cases expression exp [const-exp (num) (num-val num)] [var-exp (var) (apply-env env var)] [diff-exp (exp1 exp2) (let ([val1 (expval->num (value-of exp1 env))] [val2 (expval->num (value-of exp2 env))]) (num-val (- val1 val2)))] [zero?-exp (exp1) (let ([val1 (expval->num (value-of exp1 env))]) (if (zero? val1) (bool-val #t) (bool-val #f)))] [if-exp (exp0 exp1 exp2) (if (expval->bool (value-of exp0 env)) (value-of exp1 env) (value-of exp2 env))] [let-exp (vars exps body) (let ([vals (map (lambda (exp1) (value-of exp1 env)) exps)]) (value-of body (extend-env* vars vals env)))] [proc-exp (bvars tys body) (proc-val (procedure bvars body env))] [call-exp (rator rands) (let ([proc (expval->proc (value-of rator env))] [args (map (lambda (rand) (value-of rand env)) rands)]) (apply-procedure proc args))] [letrec-exp (tys1 p-names b-vars tys2 p-bodies letrec-body) (value-of letrec-body (extend-env-rec p-names b-vars p-bodies env))]))) (define value-of-program (lambda (pgm) (cases program pgm [a-program (body) (value-of body (empty-env))]))) ;; Interface. (define check (lambda (string) (type-to-external-form (type-of-program (scan&parse string))))) (define run (lambda (string) (value-of-program (scan&parse string)))) (provide bool-val check num-val run)
false
e71a9acebd03f5d188c383569357e1849bfe379d
061db6d37c5d05d56d4b7eedbda08568f42da533
/gui-easy-lib/gui/easy/private/renderer.rkt
1678b6b4d356cfbac1ff2fd528cad585d3ec3a1c
[ "BSD-3-Clause" ]
permissive
DavidAlphaFox/racket-gui-easy
f2d34da14cf3c73c58119023d591f185ad63d071
d61300c08250ca594464d5285cdfd5e2b49195fb
refs/heads/master
2023-06-29T04:42:03.232576
2021-08-01T09:28:29
2021-08-01T09:28:29
null
0
0
null
null
null
null
UTF-8
Racket
false
false
2,137
rkt
renderer.rkt
#lang racket/base (require box-extra racket/class (prefix-in gui: racket/gui) "logger.rkt" "observable.rkt" "view/window.rkt") (provide render render-popup-menu renderer<%>) (define id-seq (box 0)) (define update-id-seq! (make-box-update-proc id-seq)) (define (next-id!) (update-id-seq! add1)) (define renderer<%> (interface () get-root render destroy)) (define renderer% (class* object% (renderer<%>) (init-field id tree) (super-new) (define root #f) (define/public (get-root) root) (define deps (send tree dependencies)) (define handlers null) (define/public (render parent) (set! root (send tree create parent)) (set! handlers (for/list ([dep (in-list deps)]) (define (f v) (gui:queue-callback (λ () (send tree update root dep v)) #f)) (begin0 f (obs-observe! dep f)))) root) (define/public (destroy) (for ([dep (in-list deps)] [handler (in-list handlers)]) (obs-unobserve! dep handler)) (hash-remove! renderers id) (send tree destroy root) (set! root #f)))) (define renderers (make-hasheqv)) (define (render tree [parent #f]) (define id (next-id!)) (define r (new renderer% [id id] [tree tree])) (define root (send r render (and parent (renderer-root parent)))) (log-gui-easy-debug "rendered window ~a" id) (begin0 r (hash-set! renderers id r) (send root show #t) (when (is-a? tree dialog%) (send r destroy) (log-gui-easy-debug "destroyed window ~a" id)))) (define (render-popup-menu r tree x y) (define id (next-id!)) (define menu-r (new renderer% [id id] [tree tree])) (define menu (send menu-r render #f)) (define window (send r get-root)) (log-gui-easy-debug "rendered popup menu ~a" id) (send window popup-menu menu x y) (send menu-r destroy) (log-gui-easy-debug "destroyed popup menu ~a" id)) (define (renderer-root r) (send r get-root))
false
a0221a1afc102a92fce2149c02b95d30c20d8071
804e0b7ef83b4fd12899ba472efc823a286ca52d
/old/pipeline/vp8dec.rkt
40264f962f49a03ae49aedecece9ab7aa1e46b83
[]
no_license
cha63506/CRESTaceans
6ec436d1bcb0256e17499ea9eccd5c034e9158bf
a0d24fd3e93fc39eaf25a0b5df90ce1c4a96ec9b
refs/heads/master
2017-05-06T16:59:57.189426
2013-10-17T15:22:35
2013-10-17T15:22:35
null
0
0
null
null
null
null
UTF-8
Racket
false
false
845
rkt
vp8dec.rkt
#lang racket/base (require "../bindings/vp8/vp8.rkt" "util.rkt" "structs.rkt" racket/contract racket/match) (provide make-vp8-decoder) (define/contract (make-vp8-decoder signaller) (thread? . -> . (-> void)) (define is-signaller? (make-thread-id-verifier signaller)) (define d (vp8dec-new)) (λ () (let loop () (match (receive-killswitch/whatever is-signaller?) [(? die? _) (vp8dec-delete d) (reply/state-report signaller #f)] [(? bytes? pkt) (vp8dec-decode d (bytes-length pkt) pkt) (loop)] [(FrameBuffer data size λdisposal ts) (printf "\tvideo start of life => end of life: ~a ms~n" (- (current-inexact-milliseconds) ts)) (vp8dec-decode d size data) (λdisposal) (loop)]))))
false
5d2d82dac0293341248bcabe81fb802f3b81ffe7
8c492ce2dfcb1e047c28de8753c173842fdaeb21
/proof/static.rkt
bec766364ddf86f643e247d4d17acd43b2f3a8c8
[]
no_license
carl-eastlund/refined-acl2
f8775e2f899e71778a1909d74066e6063b60d645
2e344ad7bcbc5b5a758296a8158dcf9a7f3880bd
refs/heads/master
2021-01-21T21:47:42.946847
2016-03-19T18:32:50
2016-03-19T18:32:50
12,603,459
2
1
null
2016-03-19T18:32:50
2013-09-04T22:22:07
Racket
UTF-8
Racket
false
false
1,379
rkt
static.rkt
#lang mischief (provide writable-proof-obligations module-path->proof-obligation write-program-obligations-to-file write-certification-script all-modules-with-proofs proof-dependencies) (require refined-acl2/proof/term refined-acl2/model refined-acl2/expansion/paths) (define (writable-proof-obligations) (for/hash {[{mod pf} (in-dict (all-proof-obligations))] #:when (path? mod)} (values mod pf))) (define (module-path->proof-obligation mod-path) (define name (resolved-module-path-name (resolve-module-path mod-path #:load? #false))) (lookup-proof-obligation name)) (define (write-program-obligations-to-file file pf) (define book (book-path file)) (make-directory* (path-only book)) (with-output-to-file book #:exists 'replace (thunk (write-acl2 '(#s(:: ACL2 IN-PACKAGE) "DRACULA")) (for {[term (in-list pf)]} (printf "\n") (write-acl2 term))))) (define (write-certification-script . mod-paths) (for-each write-acl2 portcullis-events) (for-each write-acl2 portcullis-non-events) (write-acl2 '(RESET-PREHISTORY)) (for {[mod (in-list mod-paths)]} (write-acl2 `(CERTIFY-BOOK ,(book-path-without-extension mod) ,(add1 (length portcullis-events)) #s(:: ACL2 T) #:SKIP-PROOFS-OKP #s(:: ACL2 T))) (write-acl2 '(UBU! 0))))
false
904857ba61798b55a6479630d4fd97a2844bf270
561eac844dbad77a7fa88720d8f5b9ab6e6ba4b2
/corpse-reviver/test/synth/array-utils.rkt
dac49ae30c34fd3d56fdccd7dc790ddc65794c07
[ "0BSD" ]
permissive
camoy/corpse-reviver
7c0a5c5d7abbeccd8f2260a4adea4ca6b3363567
67fda012093bfd5fe8f9bb699b7558699743217d
refs/heads/master
2023-08-18T14:47:26.601987
2023-08-03T15:17:01
2023-08-03T15:17:01
261,932,938
19
0
null
null
null
null
UTF-8
Racket
false
false
6,098
rkt
array-utils.rkt
#lang typed/racket/base (require (only-in racket/performance-hint begin-encourage-inline) (for-syntax racket/base) (only-in racket/fixnum fx* fx+) "typed-data.rkt") (provide array-shape-size check-array-shape check-array-shape-size make-thread-local-indexes next-indexes! unsafe-array-index->value-index unsafe-vector-insert unsafe-vector-remove vector-copy-all ) (begin-encourage-inline (: vector->supertype-vector (All (A B) ((Vectorof A) -> (Vectorof (U A B))))) (define (vector->supertype-vector js) (define dims (vector-length js)) (cond [(= dims 0) (vector)] [else (define: new-js : (Vectorof (U A B)) (make-vector dims (vector-ref js 0))) (let loop ([#{i : Integer} 1]) (cond [(i . < . dims) (vector-set! new-js i (vector-ref js i)) (loop (+ i 1))] [else new-js]))])) (: vector-copy-all (All (A) ((Vectorof A) -> (Vectorof A)))) (define (vector-copy-all js) ((inst vector->supertype-vector A A) js)) (: array-shape-size (Indexes -> Integer)) (define (array-shape-size ds) (define dims (vector-length ds)) (let loop ([#{i : Integer} 0] [#{n : Integer} 1]) (cond [(i . < . dims) (define d (vector-ref ds i)) (loop (+ i 1) (* n d))] [else n]))) (: check-array-shape-size (Symbol Indexes -> Integer)) (define (check-array-shape-size name ds) (define size (array-shape-size ds)) (cond [(index? size) size] [else (error name "array size ~e (for shape ~e) is too large (is not an Index)" size ds)])) (: check-array-shape ((Vectorof Integer) (-> Nothing) -> Indexes)) (define (check-array-shape ds fail) (define dims (vector-length ds)) (define: new-ds : Indexes (make-vector dims 0)) (let loop ([#{i : Integer} 0]) (cond [(i . < . dims) (define di (vector-ref ds i)) (cond [(index? di) (vector-set! new-ds i di) (loop (+ i 1))] [else (fail)])] [else new-ds]))) (: unsafe-array-index->value-index (Indexes Indexes -> Integer)) (define (unsafe-array-index->value-index ds js) (define dims (vector-length ds)) (let loop ([#{i : Integer} 0] [#{j : Integer} 0]) (cond [(i . < . dims) (define di (vector-ref ds i)) (define ji (vector-ref js i)) (loop (+ i 1) (fx+ ji (fx* di j)))] [else j]))) ) ; begin-encourage-inline (: raise-array-index-error (Symbol Indexes In-Indexes -> Nothing)) (define (raise-array-index-error name ds js) (error name "expected indexes for shape ~e; given ~e" (vector->list ds) js)) (: array-index->value-index (Symbol Indexes In-Indexes -> Integer)) (define (array-index->value-index name ds js) (define (raise-index-error) (raise-array-index-error name ds js)) (define dims (vector-length ds)) (unless (= dims (vector-length js)) (raise-index-error)) (let loop ([#{i : Integer} 0] [#{j : Integer} 0]) (cond [(i . < . dims) (define di (vector-ref ds i)) (define ji (vector-ref js i)) (cond [(and (exact-integer? ji) (0 . <= . ji) (ji . < . di)) (loop (+ i 1) (fx+ ji (fx* di j)))] [else (raise-index-error)])] [else j]))) (: check-array-indexes (Symbol Indexes In-Indexes -> Indexes)) (define (check-array-indexes name ds js) (define (raise-index-error) (raise-array-index-error name ds js)) (define dims (vector-length ds)) (unless (= dims (vector-length js)) (raise-index-error)) (define: new-js : Indexes (make-vector dims 0)) (let loop ([#{i : Integer} 0]) (cond [(i . < . dims) (define di (vector-ref ds i)) (define ji (vector-ref js i)) (cond [(and (exact-integer? ji) (0 . <= . ji) (ji . < . di)) (vector-set! new-js i ji) (loop (+ i 1))] [else (raise-index-error)])] [else new-js]))) (: unsafe-vector-remove (All (I) ((Vectorof I) Integer -> (Vectorof I)))) (define (unsafe-vector-remove vec k) (define n (vector-length vec)) (define n-1 (sub1 n)) (cond [(not (index? n-1)) (error 'unsafe-vector-remove "internal error")] [else (define: new-vec : (Vectorof I) (make-vector n-1 (vector-ref vec 0))) (let loop ([#{i : Integer} 0]) (when (i . < . k) (vector-set! new-vec i (vector-ref vec i)) (loop (+ i 1)))) (let loop ([#{i : Integer} k]) (cond [(i . < . n-1) (vector-set! new-vec i (vector-ref vec (+ i 1))) (loop (+ i 1))] [else new-vec]))])) (: unsafe-vector-insert (All (I) ((Vectorof I) Integer I -> (Vectorof I)))) (define (unsafe-vector-insert vec k v) (define n (vector-length vec)) (define: dst-vec : (Vectorof I) (make-vector (+ n 1) v)) (let loop ([#{i : Integer} 0]) (when (i . < . k) (vector-set! dst-vec i (vector-ref vec i)) (loop (+ i 1)))) (let loop ([#{i : Integer} k]) (when (i . < . n) (let ([i+1 (+ i 1)]) (vector-set! dst-vec i+1 (vector-ref vec i)) (loop i+1)))) dst-vec) (: make-thread-local-indexes (Integer -> (-> Indexes))) (define (make-thread-local-indexes dims) (let ([val : (Thread-Cellof (U #f Indexes)) (make-thread-cell #f)]) (λ () (or (thread-cell-ref val) (let ([v : Indexes (make-vector dims 0)]) (thread-cell-set! val v) v))))) (: next-indexes! (Indexes Integer Indexes -> Void)) ;; Sets js to the next vector of indexes, in row-major order (define (next-indexes! ds dims js) (let loop ([#{k : Integer} dims]) (unless (zero? k) (let ([k (- k 1)]) (define jk (vector-ref js k)) (define dk (vector-ref ds k)) (let ([jk (+ jk 1)]) (cond [(jk . >= . dk) (vector-set! js k 0) (loop k)] [else (vector-set! js k jk)]))))))
false
30f8f8f013c8abd98c982e9bd5f573ef6ced0c2c
a10b9011582079d783282e79e4cfdc93ace6f6d3
/exercises/11/10repeat-lists.rkt
f40dd506844cd1331ded17b40825e172996e9733
[]
no_license
hristozov/fpkn1415
2996a488c1feba6a595e466ca42a1418b03e2a77
9b44eb9c9ff4402ff22c2a5f55285c1f59b99722
refs/heads/master
2016-09-05T13:02:38.264241
2015-08-22T14:11:05
2015-08-22T14:11:05
24,793,324
11
1
null
null
null
null
UTF-8
Racket
false
false
1,132
rkt
10repeat-lists.rkt
#lang racket (require "../../lib/rkt/unit.rkt") (require "04stream-take.rkt") (require "09repeat-list.rkt") ; Първи вариант - две взаимно рекурсивни процедури, които правят същото като ; процедурата от repeat-list. Когато списъците се изчерпат, процедурите се ; викат взаимно. (define (repeat-lists l1 l2) (define (helper1 current-list) (if (null? current-list) (helper2 l2) (stream-cons (car current-list) (helper1 (cdr current-list))))) (define (helper2 current-list) (if (null? current-list) (helper1 l1) (stream-cons (car current-list) (helper2 (cdr current-list))))) (helper1 l1)) ; По-прост вариант на решението, без взаимно рекурсивни процедури. (define (repeat-lists2 l1 l2) (repeat-list (append l1 l2))) (assert-equal '(1 2 3 4 1 2 3) (stream->list (stream-take (repeat-lists '(1 2) '(3 4)) 7)))
false
2d2c244b5b382970b7ab8a8fe316723a1c40d44a
561eac844dbad77a7fa88720d8f5b9ab6e6ba4b2
/corpse-reviver-benchmark/benchmarks/zombie/untyped/math.rkt
43f45d586e546d70f4228f2d730d3829e7693b75
[ "0BSD" ]
permissive
camoy/corpse-reviver
7c0a5c5d7abbeccd8f2260a4adea4ca6b3363567
67fda012093bfd5fe8f9bb699b7558699743217d
refs/heads/master
2023-08-18T14:47:26.601987
2023-08-03T15:17:01
2023-08-03T15:17:01
261,932,938
19
0
null
null
null
null
UTF-8
Racket
false
false
505
rkt
math.rkt
#lang racket/base (provide min ;(number? number? . -> . number?)] max ;(number? number? . -> . number?)] abs ;(number? . -> . number?)] msqrt ;(number? . -> . number?)] sqr ;(number? . -> . number?)] ) (require "untyped.rkt") ;; ============================================================================= (define (min x y) (if (<= x y) x y)) (define (max x y) (if (>= x y) x y)) (define (abs x) (if (>= x 0) x (- 0 x))) (define (sqr x) (* x x)) (define (msqrt x) (assert (sqrt x) real?))
false
70e63ca1412db872ca2f82ca459fbaf92c32ce1f
5bbc152058cea0c50b84216be04650fa8837a94b
/paper/piday-2016/data/py/fsm-transient.txt.rktd
d5de96ed24e17eedfdefc4e7c61e04ee5544f00a
[]
no_license
nuprl/gradual-typing-performance
2abd696cc90b05f19ee0432fb47ca7fab4b65808
35442b3221299a9cadba6810573007736b0d65d4
refs/heads/master
2021-01-18T15:10:01.739413
2018-12-15T18:44:28
2018-12-15T18:44:28
27,730,565
11
3
null
2018-12-01T13:54:08
2014-12-08T19:15:22
Racket
UTF-8
Racket
false
false
2,913,773
rktd
fsm-transient.txt.rktd
;; Generated from 'py/fsm-transient.txt' on '#(struct:date* 41 32 23 15 5 2016 0 135 #t -14400 984535932 EDT)' #( (0.009407548000000016) (0.009566682499999993) (0.009544583999999995) (0.009314219500000012) (0.009247927000000003) (0.009360914999999997) (0.009384737000000004) (0.0093704285) (0.009722838500000011) (0.009485567) (0.009424713500000015) (0.009540124499999997) (0.00932340999999999) (0.009685502499999998) (0.0095032075) (0.009371959999999999) (0.00919311049999999) (0.009642944) (0.009314418000000005) (0.009422185999999985) (0.009434389499999987) (0.009236251000000001) (0.009388027000000021) (0.0093468585) (0.009720653999999995) (0.009396205000000005) (0.009492301999999994) (0.009543348499999993) (0.00935598650000001) (0.009649554500000004) (0.009446567500000003) (0.009683567500000004) (0.009955996999999994) (0.009518045000000003) (0.009698816999999998) (0.009626929500000006) (0.009995890499999993) (0.009723801500000004) (0.009610710000000008) (0.009737125) (0.009857031500000002) (0.00980761749999999) (0.009824267500000011) (0.009847126999999997) (0.009734221000000001) (0.009990440499999989) (0.009893770499999996) (0.009751496000000012) (0.0097056425) (0.009858227000000011) (0.009710589500000005) (0.009769029499999998) (0.009971149499999998) (0.009739483000000007) (0.009671698000000006) (0.009706676999999997) (0.009922579) (0.009747929999999988) (0.0098492585) (0.009884304999999996) (0.010172245499999996) (0.009662284000000007) (0.009946696000000005) (0.009914968999999982) (0.009518870499999998) (0.009474593500000003) (0.009510057000000002) (0.009425060999999998) (0.009532705500000002) (0.009477334500000004) (0.009393087000000008) (0.009577598999999992) (0.00980386250000001) (0.0094544825) (0.009436228500000005) (0.009497218000000002) (0.009540925499999992) (0.009511891500000008) (0.009330984) (0.009601082499999997) (0.009337292000000011) (0.009552447500000005) (0.009440064999999997) (0.009342500000000004) (0.009438626000000006) (0.0093213335) (0.009422820000000012) (0.009545066000000019) (0.009469916000000009) (0.00968472300000002) (0.009610011500000001) (0.00961044250000001) (0.009577722999999996) (0.0095951715) (0.009476567499999991) (0.009643535999999994) (0.009811013499999993) (0.009712941500000002) (0.009787444499999992) (0.0099401135) (0.009645901499999998) (0.009767479999999995) (0.009606580999999989) (0.010054976000000007) (0.009913481500000002) (0.009910058999999999) (0.00996791200000001) (0.010202077500000004) (0.009875011500000003) (0.010167277000000002) (0.009876295500000007) (0.009857988500000012) (0.009729130999999988) (0.009778424000000008) (0.009618343000000001) (0.009864124500000002) (0.009634893500000005) (0.009779052999999996) (0.009644457999999995) (0.00990890250000001) (0.010270404499999997) (0.009847303500000001) (0.009920083999999996) (0.009770398) (0.009962166999999994) (0.010061358499999992) (0.009848588500000005) (0.00948824849999999) (0.009571667000000006) (0.009329291000000003) (0.009356013499999996) (0.009254606000000012) (0.009679846000000006) (0.009468921000000005) (0.009398041499999996) (0.009563981) (0.009412728999999995) (0.009593860499999995) (0.009664593999999999) (0.009625496499999997) (0.009664095999999997) (0.009428776) (0.009765312499999998) (0.00939849949999999) (0.009386895499999992) (0.009397493000000007) (0.009610706499999996) (0.00977223399999999) (0.009322572000000015) (0.00925724600000001) (0.009225884500000003) (0.00934203950000001) (0.009707972499999995) (0.009333511499999989) (0.009435298000000009) (0.009456851000000016) (0.009514981499999992) (0.009474826499999991) (0.009393126000000002) (0.009684418) (0.009671182999999986) (0.009750030999999992) (0.0095955115) (0.00964885700000001) (0.009886056500000004) (0.009846369000000008) (0.009694804999999987) (0.009874202000000012) (0.009895890000000004) (0.010027534500000004) (0.009707925000000006) (0.009904150000000014) (0.009755637999999997) (0.009735670000000002) (0.0098089435) (0.009756507499999997) (0.00968580400000002) (0.009799486999999996) (0.009820729) (0.0097043775) (0.009685563000000008) (0.010038342499999992) (0.010594806499999998) (0.009857630999999992) (0.009859698500000014) (0.009898170499999998) (0.009869253500000008) (0.009711302500000005) (0.009832144999999987) (0.0100128035) (0.010015920499999997) (0.009633865999999991) (0.009395877999999996) (0.009596922000000008) (0.009342575999999991) (0.00938149599999999) (0.009532808000000004) (0.00946581099999999) (0.009497832999999997) (0.009661108500000001) (0.009460559000000007) (0.009531730000000002) (0.009556878000000005) (0.009645111999999997) (0.009611835999999999) (0.009431401000000006) (0.009418029499999994) (0.009472770500000005) (0.009583714999999993) (0.009468645499999997) (0.009431064000000003) (0.009474254999999987) (0.009370741000000016) (0.009595963999999998) (0.009390404000000005) (0.009550534499999985) (0.009817295000000004) (0.009849672500000003) (0.009709065500000003) (0.009689485499999997) (0.009765847500000008) (0.009486862500000012) (0.009757017500000006) (0.009675009999999998) (0.00989954500000001) (0.009802191500000002) (0.010065506000000002) (0.009757021000000005) (0.0098156135) (0.009641554999999996) (0.009819800000000004) (0.009866970500000002) (0.00973711300000002) (0.009907160999999998) (0.01010692399999999) (0.009718130500000005) (0.009841701000000008) (0.009820120000000016) (0.009797713999999985) (0.00986271100000001) (0.0098447745) (0.009677435499999998) (0.009878276000000005) (0.009833271500000004) (0.009513053999999993) (0.009646255999999992) (0.009747406) (0.010096622999999999) (0.00996164749999999) (0.009992628000000003) (0.009904791499999996) (0.009862910500000002) (0.010063137500000013) (0.009908054500000013) (0.010083425500000007) (0.009463201000000004) (0.009221841500000008) (0.009382071999999991) (0.009420366) (0.009598408500000016) (0.009667875500000006) (0.009550301499999997) (0.009388825500000003) (0.0095697785) (0.009395806999999992) (0.009551707000000006) (0.0094519775) (0.009441137000000002) (0.009682439000000001) (0.009843377) (0.009648289500000004) (0.009693843999999993) (0.009264386999999999) (0.009415345500000005) (0.009569796500000019) (0.009366552) (0.009283885500000005) (0.009448827500000007) (0.009420624500000016) (0.009475047499999986) (0.009597640000000005) (0.009296883000000006) (0.009412338499999992) (0.009517764499999984) (0.0094138515) (0.009445824000000005) (0.009346241500000005) (0.009758942499999992) (0.00983128250000001) (0.009751198499999988) (0.009839244000000011) (0.00975082749999999) (0.0097460345) (0.01021277999999999) (0.009735688499999992) (0.009842524000000005) (0.009934127500000015) (0.009991775000000008) (0.009770313500000016) (0.009861819500000008) (0.009807300000000005) (0.009845839500000009) (0.009759844500000003) (0.009683902499999994) (0.009881665500000025) (0.009671247999999993) (0.009746779499999997) (0.0095652965) (0.009584753000000015) (0.009550376) (0.009851487000000006) (0.00977059999999999) (0.009833110500000006) (0.009967746500000013) (0.00986827300000001) (0.009893561000000009) (0.00988261650000001) (0.009737223500000003) (0.009740802499999993) (0.009456409999999998) (0.009291687000000007) (0.009649586500000001) (0.009567556000000005) (0.009410846499999986) (0.009463059999999995) (0.009325178000000003) (0.009567110000000004) (0.009357185500000004) (0.0094748895) (0.009517307500000002) (0.009584605999999996) (0.0095050775) (0.009542936000000002) (0.009514155499999996) (0.009560185999999984) (0.009458687500000021) (0.009406974499999998) (0.00942650199999999) (0.009502347500000008) (0.009408430499999995) (0.00959712850000001) (0.009388415499999983) (0.009433604499999998) (0.009752246999999992) (0.0095194725) (0.00959831650000001) (0.00950397) (0.009363966500000001) (0.009685476500000012) (0.009391614999999992) (0.009606975000000004) (0.010086545499999988) (0.009751242000000007) (0.009568061499999989) (0.00998025100000001) (0.009631893000000002) (0.009789652999999982) (0.009847359) (0.009893471499999987) (0.009648646999999996) (0.009910520999999992) (0.009965837000000005) (0.009781163499999995) (0.009713207000000001) (0.009823759000000001) (0.009707852000000003) (0.009787058500000001) (0.009706088500000001) (0.00980226649999999) (0.009727452999999997) (0.009806740999999994) (0.009812408500000008) (0.00976617049999999) (0.00965900850000001) (0.009714266999999999) (0.0099078415) (0.009659316500000015) (0.010202351999999984) (0.0100935085) (0.010068405500000002) (0.014881200000000011) (0.00992241100000002) (0.00988599250000001) (0.009417703000000013) (0.009295115500000006) (0.009388351000000017) (0.00941001150000001) (0.009598892999999983) (0.009473784499999999) (0.009458121) (0.009513956500000004) (0.009598621000000002) (0.009536450000000002) (0.009920805500000004) (0.009446312999999998) (0.009573861000000003) (0.009507857000000008) (0.009582227999999998) (0.009429374000000004) (0.009396218999999997) (0.009383261500000004) (0.009308294499999994) (0.00943327649999999) (0.009451125000000005) (0.009339914000000005) (0.009418686499999995) (0.009678011000000014) (0.009605909999999995) (0.009510196499999998) (0.009759281000000009) (0.009740045500000002) (0.009406365) (0.009498078499999993) (0.009861494499999998) (0.009491125500000003) (0.0098044625) (0.009687717500000012) (0.009777135000000006) (0.009776622500000012) (0.009711021000000014) (0.009904028500000009) (0.009700827499999995) (0.009783869500000014) (0.0097589025) (0.009799358999999994) (0.010055210500000009) (0.009691306999999996) (0.009882909499999995) (0.0097496205) (0.009995289500000004) (0.00984271099999999) (0.009648381500000011) (0.009710742500000008) (0.009926355999999997) (0.009758608500000002) (0.00981974549999999) (0.009616627000000003) (0.009723253500000001) (0.009632429999999997) (0.010026256000000011) (0.009728255499999991) (0.009785781500000007) (0.009733745000000002) (0.009734127000000009) (0.009833230999999998) (0.009850280500000017) (0.0098649965) (0.00935338899999999) (0.009543486500000004) (0.009648915999999993) (0.009295835000000002) (0.009643984000000008) (0.00928775150000001) (0.009412239499999989) (0.00938195600000001) (0.009680629999999996) (0.009578273999999998) (0.009520439999999991) (0.009437046500000004) (0.009795629) (0.009580568999999997) (0.009490764999999984) (0.009453862999999993) (0.009410316500000002) (0.009518118500000006) (0.009415745999999989) (0.009540238999999992) (0.009410989499999994) (0.009487738999999995) (0.009487454999999992) (0.009634954999999987) (0.009444557000000006) (0.009915497499999995) (0.009693674499999999) (0.009612517000000015) (0.009482729499999995) (0.009719672499999998) (0.00940568750000001) (0.009529625500000014) (0.009758082500000015) (0.009694577999999995) (0.009691141) (0.009679017500000012) (0.0098330685) (0.009890531000000008) (0.010034773999999996) (0.009803835999999996) (0.009885137000000002) (0.010266979499999995) (0.010081050999999994) (0.009913945999999993) (0.009863705) (0.009762377500000016) (0.00997762599999999) (0.0098699285) (0.009765398999999994) (0.009598051999999996) (0.009838621000000006) (0.009814333000000008) (0.009755587999999996) (0.009951571000000006) (0.009731496999999992) (0.009622796000000003) (0.009748646) (0.009888581499999993) (0.009987107499999981) (0.009764651999999999) (0.009780363) (0.010001203) (0.009866753500000006) (0.009757299999999997) (0.009451256499999991) (0.009398502499999989) (0.009494753499999994) (0.009313831499999994) (0.009486694500000004) (0.009530810000000015) (0.009350846999999995) (0.009610320000000006) (0.009542680500000011) (0.009749636000000006) (0.009551524499999992) (0.009420080999999997) (0.009543927500000007) (0.009407870499999998) (0.009557615500000005) (0.009595249499999986) (0.0094773685) (0.009491362499999989) (0.009471999499999995) (0.009380347499999997) (0.009348930000000005) (0.009479743000000013) (0.009418191499999992) (0.00946850299999999) (0.009633389499999992) (0.009936356499999993) (0.009622552499999992) (0.0097538405) (0.0094715675) (0.0095359515) (0.009869095000000008) (0.009591906999999997) (0.009656678500000015) (0.009631154500000016) (0.009691498999999992) (0.009752354500000004) (0.00982635350000001) (0.009692040500000013) (0.009533180499999988) (0.009837351500000008) (0.009702063999999996) (0.00975532649999998) (0.009706645) (0.009834547000000013) (0.009875068) (0.009776175499999998) (0.01011807549999999) (0.009892102500000013) (0.009822030999999995) (0.0097399975) (0.009788255999999995) (0.009774120500000011) (0.00980487050000002) (0.009635400500000002) (0.00956688700000001) (0.009795555999999997) (0.010282151000000003) (0.010045850999999995) (0.009900240500000018) (0.009875398999999993) (0.009776973999999994) (0.009859273499999988) (0.009967770000000015) (0.00993538599999999) (0.009625699000000015) (0.00937610550000001) (0.009355009500000011) (0.0095487935) (0.009299885000000008) (0.009417457000000018) (0.009443272500000002) (0.009494074500000005) (0.009543156000000011) (0.009487833499999987) (0.009627261499999984) (0.009682302000000004) (0.009379098000000016) (0.009416354500000002) (0.009547897999999999) (0.009570953000000007) (0.00943028650000001) (0.009491204000000003) (0.00943980450000001) (0.009398246499999999) (0.009519797499999996) (0.009687358499999993) (0.009593946000000006) (0.009387512999999986) (0.009484239500000005) (0.009349032500000007) (0.009552785499999994) (0.009617698499999994) (0.009671620500000006) (0.00955789) (0.009670384500000004) (0.010125998999999997) (0.009815024500000005) (0.009788179000000008) (0.009865662000000011) (0.009970515) (0.009757597499999993) (0.009657163999999996) (0.009877091500000018) (0.009825446500000001) (0.009915410999999999) (0.00963146949999999) (0.010047649000000006) (0.009912543999999995) (0.009874803500000001) (0.01465831599999999) (0.009795972) (0.009858012499999999) (0.009823339000000014) (0.009857270000000001) (0.009864494000000001) (0.009962552) (0.00995276249999999) (0.0099236345) (0.010024038000000013) (0.009686222500000008) (0.009815899500000003) (0.009861331000000001) (0.0099023325) (0.009767155000000013) (0.009769721500000009) (0.01073578950000001) (0.009967706999999992) (0.010087820999999997) (0.009350841999999984) (0.0094463895) (0.00947563400000001) (0.00973839700000001) (0.009701365000000003) (0.009340262500000016) (0.009541428500000004) (0.009699222000000007) (0.009327277000000009) (0.009789384499999998) (0.009462716499999996) (0.00960222849999999) (0.0097432945) (0.009488192999999992) (0.009748313500000008) (0.009617959500000009) (0.0093571125) (0.009408932999999994) (0.009302336499999994) (0.0094951895) (0.009433590999999991) (0.009406499500000012) (0.009520358499999992) (0.009477637999999997) (0.00956717999999998) (0.009516182999999998) (0.009468962999999997) (0.009579552500000019) (0.009686680999999989) (0.009757951999999986) (0.009578090499999997) (0.009638231999999997) (0.009606979000000002) (0.009853543000000006) (0.00977214400000001) (0.009872474000000006) (0.009877577999999998) (0.0096331895) (0.009988094999999989) (0.00979165450000001) (0.009836497999999999) (0.00989283299999999) (0.010017710499999999) (0.009760841000000006) (0.009766458500000005) (0.00982168450000001) (0.009798834500000006) (0.009893268499999996) (0.010009601499999993) (0.009701540499999994) (0.009660924500000001) (0.009702806999999994) (0.009980104000000004) (0.009857029000000003) (0.009852221500000008) (0.009809077999999999) (0.0100354775) (0.009960932000000006) (0.009967394500000004) (0.009856541999999996) (0.009872964999999997) (0.0099478645) (0.010038765000000005) (0.010236258499999998) (0.00949775550000001) (0.00946474500000001) (0.00967423349999999) (0.00974330850000002) (0.009520868500000015) (0.00938737299999999) (0.009473948499999996) (0.009578840000000005) (0.009477374999999996) (0.00946404649999999) (0.009613345500000009) (0.009753189499999995) (0.009437038000000009) (0.009531603) (0.009419780000000003) (0.009571952500000008) (0.009394865000000016) (0.009476194499999993) (0.009401306999999998) (0.009493491499999993) (0.009538453500000016) (0.009476320999999996) (0.009391656999999998) (0.009446895499999997) (0.009722261999999995) (0.009638263000000008) (0.0095366645) (0.00967931050000001) (0.009663381500000012) (0.009629625500000003) (0.009660362500000005) (0.009481204000000007) (0.009847097999999999) (0.009790992499999998) (0.009791883500000001) (0.009782967000000004) (0.0100191315) (0.009554893500000008) (0.009738966000000002) (0.009773966999999995) (0.00985594749999999) (0.009802320499999989) (0.009984917499999996) (0.01007798850000001) (0.009993745000000012) (0.010193779) (0.009911801499999998) (0.009707071500000011) (0.009892635499999997) (0.009731609000000002) (0.00975271950000002) (0.009674018500000006) (0.00975421) (0.009731175500000008) (0.009684634999999997) (0.009845697) (0.009957375000000018) (0.010025544499999997) (0.009763835999999998) (0.009867487999999994) (0.009786422000000003) (0.010035394499999989) (0.010095802000000001) (0.009960622500000002) (0.009341411000000008) (0.009402580999999993) (0.009286567499999995) (0.009370872499999988) (0.009429238999999992) (0.009561952499999998) (0.009441617500000013) (0.009364399500000009) (0.009713409500000006) (0.009390152000000013) (0.0095250635) (0.009315718500000014) (0.009526308999999983) (0.009428806999999984) (0.009501832000000002) (0.009440677999999994) (0.009431216499999992) (0.009408021500000016) (0.009414499499999993) (0.00948014200000001) (0.009426258000000007) (0.009339549000000003) (0.009622475000000005) (0.009457724) (0.009622991000000011) (0.009614983499999993) (0.009670195500000006) (0.009522170499999996) (0.009576333499999992) (0.009421788) (0.009495565500000011) (0.009580713500000004) (0.009728145500000007) (0.009680681499999996) (0.009866878499999995) (0.009824325499999995) (0.010150569000000012) (0.009794395999999997) (0.009837577500000014) (0.009711864999999986) (0.010095620000000013) (0.00987102749999999) (0.01019407600000001) (0.009977630499999987) (0.009702290500000002) (0.0097349085) (0.010074672500000006) (0.01000211749999999) (0.009735115000000003) (0.009700216000000011) (0.009860643500000002) (0.009666625500000012) (0.009694758499999998) (0.009896762000000003) (0.009949860500000005) (0.009777926500000006) (0.009764612500000006) (0.010197601499999986) (0.009770497000000003) (0.009942738000000007) (0.009766644500000005) (0.009770466999999991) (0.009938063999999996) (0.009915787499999995) (0.009395318) (0.009429800000000002) (0.00942982399999999) (0.009744887499999993) (0.009621417500000007) (0.00945644050000001) (0.009538978000000004) (0.009611704999999998) (0.009431782) (0.009577778000000009) (0.009464603999999988) (0.009494270499999999) (0.009599932499999991) (0.009447980000000009) (0.009469646999999998) (0.009584977499999994) (0.009614287499999999) (0.009408281500000004) (0.009503630500000013) (0.009509361500000008) (0.009724346500000008) (0.009415892000000009) (0.009509446500000004) (0.009411940499999993) (0.00959763100000001) (0.00965833649999999) (0.009547240999999984) (0.009453401) (0.009388249000000001) (0.00960631399999999) (0.009553139000000002) (0.009587900999999996) (0.009683679500000014) (0.009685834000000018) (0.009815416999999993) (0.009833810999999998) (0.009633132500000002) (0.009698441000000002) (0.009896251000000009) (0.010279757) (0.010001901500000007) (0.009760160500000004) (0.00978494499999999) (0.00987701149999999) (0.009759142499999998) (0.009981824999999986) (0.009670047000000001) (0.009727434500000007) (0.009787282000000008) (0.009957427500000005) (0.010037372500000002) (0.009631024500000002) (0.009766155500000012) (0.009594326999999986) (0.00969639650000001) (0.009757072000000006) (0.009807856500000003) (0.0099221045) (0.009755436000000006) (0.009883650999999993) (0.009951909000000009) (0.009947728000000003) (0.009912338499999993) (0.01014454549999999) (0.009552868499999992) (0.009586502999999996) (0.009473011500000003) (0.009511554499999991) (0.0095517975) (0.009469489500000011) (0.009483135500000017) (0.009544674000000003) (0.009554656999999994) (0.009559126999999987) (0.009647048500000019) (0.0094680075) (0.009535874000000014) (0.009570951999999994) (0.009547587499999996) (0.009518482499999995) (0.009574237999999999) (0.009764541000000002) (0.009491135499999998) (0.009867059500000011) (0.009702439500000007) (0.0095509025) (0.009482951500000003) (0.009406727000000004) (0.009445597500000014) (0.009487892999999997) (0.009539833500000011) (0.009505684) (0.009722203499999998) (0.009614011499999991) (0.009593344500000003) (0.009637213499999991) (0.009908055999999998) (0.009919576499999999) (0.0097887995) (0.009649712499999977) (0.009640063000000004) (0.009895857500000008) (0.009628736499999999) (0.009721870500000007) (0.009726675000000004) (0.009896372500000014) (0.010218058000000002) (0.009797347500000012) (0.009786528499999989) (0.010013135499999992) (0.010077034999999998) (0.009883991500000008) (0.009946604499999984) (0.009942376500000003) (0.009758276999999996) (0.010086851000000008) (0.0097569755) (0.009820941) (0.009593313000000006) (0.009875808) (0.009924310500000005) (0.00970531749999999) (0.009791573999999997) (0.009920211500000012) (0.009909058499999998) (0.009740110499999996) (0.00973715) (0.009822241500000009) (0.009371947500000005) (0.009705914999999996) (0.009377822000000008) (0.009360662999999991) (0.009445970499999998) (0.009578057499999987) (0.009480517000000008) (0.009568272499999989) (0.009649564999999999) (0.009451099500000004) (0.009502295000000008) (0.009628713499999997) (0.009624738500000007) (0.009564646499999996) (0.0097023215) (0.00952426449999999) (0.009374577000000009) (0.009654768999999994) (0.009655044500000015) (0.0095880265) (0.009426117999999997) (0.009504511000000007) (0.009636207499999994) (0.009492160000000013) (0.009613374499999994) (0.009446830000000003) (0.009447056500000009) (0.009673330500000007) (0.009564412999999994) (0.009469051999999992) (0.009503145500000004) (0.009548163999999998) (0.009842747499999999) (0.009687050499999988) (0.009908339499999988) (0.009861938999999986) (0.009697809499999988) (0.009779022500000012) (0.009668425999999994) (0.010041034500000004) (0.009950595000000007) (0.009867911500000007) (0.009888643500000002) (0.009962224000000006) (0.009888071499999998) (0.009693463499999999) (0.009948888999999989) (0.009998530000000005) (0.00983548699999999) (0.009845316000000007) (0.010057767999999995) (0.009761280499999997) (0.009892196500000006) (0.009730211000000002) (0.009789932500000001) (0.009616573000000003) (0.009908694499999995) (0.010148426500000002) (0.010078392499999991) (0.009938741000000001) (0.009885930000000001) (0.009756969000000004) (0.009712660499999998) (0.009911675499999995) (0.009514197500000002) (0.009347221500000003) (0.009536184999999989) (0.00961874950000001) (0.009418940000000015) (0.009421793499999997) (0.009310019500000002) (0.0093232875) (0.00967789849999999) (0.009315855999999997) (0.009471834499999998) (0.009627760499999999) (0.00956100600000001) (0.009524027500000004) (0.009481811999999992) (0.009397797999999999) (0.009478919000000002) (0.009283400499999997) (0.009359467499999996) (0.009552027000000005) (0.009424348499999999) (0.009409614999999996) (0.009449608499999984) (0.009592634000000003) (0.009500179499999997) (0.009458245500000004) (0.009324436999999991) (0.009672407500000008) (0.009466122499999993) (0.009593393000000006) (0.00948438900000001) (0.009590229999999991) (0.009849896999999996) (0.009876099) (0.009707395000000008) (0.0097192755) (0.009858947000000007) (0.00972820549999999) (0.009954690500000002) (0.00971995099999999) (0.009607774000000013) (0.009776174500000012) (0.00987982400000001) (0.00982949050000001) (0.010050922500000004) (0.009844760499999994) (0.009847318999999993) (0.009809011499999978) (0.009690236500000005) (0.009743505500000013) (0.009792438) (0.009731711500000018) (0.009634234500000005) (0.009574212999999998) (0.009644923) (0.009812909999999994) (0.0098132685) (0.0096798825) (0.009982674499999997) (0.009798844000000001) (0.009773426999999987) (0.009910471000000004) (0.009865225000000019) (0.009768258499999988) (0.00929548799999999) (0.009433969) (0.009534604500000002) (0.009430705999999997) (0.00934059999999999) (0.009276703999999997) (0.00960209400000002) (0.009402285499999996) (0.009623908499999986) (0.009569331500000014) (0.009606855500000011) (0.009713566500000007) (0.009605964500000008) (0.009431069) (0.009417136999999992) (0.009483556000000004) (0.009628301500000006) (0.009371248000000013) (0.00950042949999999) (0.009424956499999998) (0.00936327449999999) (0.00952220799999999) (0.010338819999999999) (0.009461365500000013) (0.009466859000000008) (0.009461620000000004) (0.009582539500000015) (0.009408024000000001) (0.009654863999999999) (0.009500097999999985) (0.009663764500000005) (0.009555586500000018) (0.009657636999999997) (0.009622609500000004) (0.009747479500000003) (0.009677279499999997) (0.009963778999999992) (0.009801004500000002) (0.009765379500000004) (0.009828709000000005) (0.010038889999999995) (0.009742685500000015) (0.009829075499999992) (0.009881904999999996) (0.009850178999999987) (0.009880539000000008) (0.009770307500000006) (0.009742488999999993) (0.009907863500000003) (0.009672632500000014) (0.009594250999999998) (0.009814679999999992) (0.009679528499999979) (0.00969506399999999) (0.009647451000000001) (0.009707887999999998) (0.009882853499999997) (0.009783645500000007) (0.009929437500000013) (0.009698168500000007) (0.009769025000000015) (0.00999298300000001) (0.009667595500000015) (0.009777056500000006) (0.009457837999999996) (0.009492877999999996) (0.0093938425) (0.009494760500000005) (0.009436440000000004) (0.009344702499999996) (0.009320555500000008) (0.009334364999999997) (0.009495051500000004) (0.009349652999999986) (0.009365201500000017) (0.0095254845) (0.009766352500000006) (0.009503979499999982) (0.009813908499999996) (0.009400730499999996) (0.009359692999999988) (0.0094408245) (0.009378544499999988) (0.009400343000000005) (0.009374977999999992) (0.009571748000000005) (0.009593621499999996) (0.009450660000000013) (0.009727929999999996) (0.009540939999999998) (0.009523978000000016) (0.009561991500000006) (0.009542888499999999) (0.009779582000000009) (0.009488322999999993) (0.009380735500000015) (0.009825326500000009) (0.00960178049999999) (0.009782477999999997) (0.009760721) (0.00982944999999999) (0.009739059500000008) (0.0097404455) (0.009634533500000014) (0.010004179999999988) (0.0098726695) (0.009922134499999999) (0.009880159) (0.009943651499999984) (0.009788178500000008) (0.009781184999999998) (0.00998727349999999) (0.009784041000000007) (0.009669738499999997) (0.00974606850000001) (0.009600007500000021) (0.009807405000000005) (0.009641482999999992) (0.009939007500000013) (0.00988746850000001) (0.010094280499999997) (0.010111806000000001) (0.0102022695) (0.009923089999999996) (0.010133661000000002) (0.010329435999999997) (0.009817665000000003) (0.010026503500000006) (0.009352594500000005) (0.00966070099999998) (0.009528731499999998) (0.00940194350000001) (0.009488031000000008) (0.009477140999999994) (0.009606208000000005) (0.010163450500000004) (0.009584072499999999) (0.009485158499999993) (0.009646137999999999) (0.009596589500000002) (0.009673297000000011) (0.009474907500000004) (0.009533357999999992) (0.009557509500000005) (0.009393013500000005) (0.009486380000000003) (0.009412909499999997) (0.00946160950000001) (0.009622645000000013) (0.009444126000000011) (0.009495235000000005) (0.009560361500000003) (0.009718292500000003) (0.009607926500000002) (0.009485568000000014) (0.009506684000000015) (0.009501435500000002) (0.00944685499999999) (0.00950513850000001) (0.009444441999999997) (0.009549120000000008) (0.009834234500000011) (0.009878307499999989) (0.0096998155) (0.009810725500000006) (0.009721785999999996) (0.009634922000000004) (0.009664958500000001) (0.010109796000000004) (0.009826582) (0.0098952905) (0.010075748999999995) (0.009836859999999989) (0.009890581999999995) (0.010003834000000003) (0.009870231500000007) (0.009814728499999995) (0.009729712999999987) (0.0096315565) (0.009732112499999987) (0.0097102835) (0.009686922) (0.009705046000000009) (0.009823970000000001) (0.010008949000000003) (0.0098317235) (0.009853847499999999) (0.009923792) (0.009794524999999998) (0.009736627499999984) (0.009767332000000004) (0.009850347499999995) (0.009561122500000005) (0.009350187499999996) (0.0093616755) (0.009427288499999992) (0.009502431999999991) (0.009320280999999986) (0.009685907999999993) (0.009674763500000017) (0.009413711500000005) (0.009499350000000004) (0.009496558500000002) (0.009660772499999998) (0.009586566000000005) (0.009568679999999996) (0.009422126000000003) (0.009654015000000002) (0.009373305999999998) (0.009469286500000007) (0.00935148899999999) (0.00945253) (0.009287695499999984) (0.009662789000000005) (0.009602667499999981) (0.009379887500000003) (0.009373878500000016) (0.009433815000000012) (0.009425412000000008) (0.009572296500000008) (0.009419284500000014) (0.009547089999999994) (0.00942090999999999) (0.009793956000000006) (0.009806234499999997) (0.00972981149999999) (0.009779036500000018) (0.009570128999999997) (0.010231057000000002) (0.009702230000000006) (0.009899691499999988) (0.009858551000000007) (0.009780869499999997) (0.009972295500000006) (0.009987598500000014) (0.01000392600000001) (0.009885566000000012) (0.009954509) (0.009721941499999998) (0.009998302) (0.010017586000000009) (0.009738711499999997) (0.009605946000000004) (0.009631444499999989) (0.009610018499999998) (0.009799684999999989) (0.009659540499999994) (0.009749569) (0.009598252500000001) (0.009873147499999999) (0.010058407999999991) (0.009826504500000013) (0.009795142000000007) (0.009931189000000007) (0.0099806395) (0.009707324999999989) (0.009318892499999995) (0.00938386599999999) (0.009562227000000006) (0.009530867500000012) (0.009465915000000005) (0.009310112999999995) (0.009336062000000006) (0.009430436) (0.00968467449999999) (0.0095237975) (0.009657869000000013) (0.009451059999999997) (0.009700508499999996) (0.0094393995) (0.009552902500000002) (0.009675574499999992) (0.009593713500000003) (0.009465775499999995) (0.009484161000000019) (0.009582874499999991) (0.00979876099999999) (0.009542047499999998) (0.009688574999999991) (0.009417223500000002) (0.009343426000000016) (0.009525830000000013) (0.009549083) (0.00944234250000002) (0.009609326999999987) (0.009429974999999993) (0.009413505000000003) (0.009554459500000001) (0.009714769499999998) (0.009869649500000008) (0.009730878499999998) (0.00968988799999998) (0.009606010999999998) (0.009775813000000008) (0.009823793500000011) (0.010015308) (0.009653796500000006) (0.009723091000000017) (0.009922118999999993) (0.009884610000000002) (0.009742919000000017) (0.010028470999999997) (0.009817917999999995) (0.009997808999999996) (0.00966955700000001) (0.010005706000000003) (0.009903833500000014) (0.0097967115) (0.009646713500000015) (0.009813844000000002) (0.009860719000000004) (0.009843443000000007) (0.009780094000000003) (0.010026530000000006) (0.009874007000000004) (0.010090778999999994) (0.009704256499999994) (0.009916856500000001) (0.009950236500000001) (0.009890811500000013) (0.009448161999999996) (0.00932723499999999) (0.009368849999999998) (0.009388622999999999) (0.009319308499999998) (0.00940236550000001) (0.009507118499999995) (0.009545785999999987) (0.009554342999999993) (0.009455020499999994) (0.009524551499999992) (0.009707239000000006) (0.009421315) (0.009685527999999999) (0.009396932999999996) (0.00960683150000001) (0.009417696000000003) (0.009375687000000008) (0.0096694155) (0.009336111499999994) (0.009545152500000001) (0.009507712499999987) (0.009571702500000001) (0.009463485000000008) (0.009506499000000002) (0.009729217500000012) (0.00966943599999999) (0.009898226499999996) (0.009561446500000001) (0.009527324500000003) (0.009678680499999995) (0.009691877000000002) (0.009597115999999989) (0.009680036000000003) (0.00979592800000001) (0.009736840499999996) (0.009927489000000012) (0.0098551895) (0.00968940900000001) (0.009675330999999995) (0.009944572999999998) (0.00990139050000001) (0.009728823500000011) (0.00971377000000001) (0.009905531999999995) (0.00967887399999999) (0.010037742000000002) (0.009933819499999996) (0.009726117000000006) (0.009916985000000017) (0.009622747000000015) (0.009873652999999982) (0.009677214000000003) (0.009840830500000008) (0.009806632499999995) (0.009700722500000009) (0.00972736149999999) (0.009830423000000005) (0.009837114999999994) (0.009675287500000004) (0.00979448899999999) (0.009851064500000006) (0.009973206999999998) (0.009901048999999995) (0.009465316000000001) (0.009331922500000006) (0.009459168000000004) (0.009642723000000006) (0.009539926000000004) (0.009373287999999994) (0.009353898000000013) (0.0094202055) (0.009535679499999991) (0.009619617499999997) (0.009470642000000001) (0.009572297000000007) (0.009572853999999992) (0.009466407999999996) (0.009516509500000006) (0.00941649600000001) (0.009530352500000006) (0.009443471999999994) (0.009647851999999998) (0.009415051500000007) (0.009542736999999996) (0.009572137000000008) (0.00960663299999999) (0.009389704499999985) (0.009414665500000002) (0.009411167999999998) (0.009787709499999991) (0.009570566000000003) (0.009801438499999995) (0.009623450499999991) (0.009518325000000008) (0.009561420000000001) (0.009764004499999993) (0.0099626315) (0.009699689999999997) (0.009606476000000003) (0.009876366000000011) (0.009996062999999986) (0.00959580900000001) (0.009677665999999988) (0.0098740945) (0.009800640000000013) (0.009848972499999997) (0.010183981999999994) (0.009704308500000008) (0.010169090500000005) (0.009944175999999999) (0.009996202999999995) (0.00991139399999999) (0.00982144900000001) (0.0096791445) (0.009790568000000013) (0.009688969500000005) (0.009720498000000008) (0.009725042000000003) (0.009798829000000009) (0.009946293500000009) (0.009740830999999991) (0.010127007500000007) (0.009842514499999996) (0.010127515000000004) (0.009780571000000002) (0.009762191500000003) (0.01009906599999999) (0.00935842299999999) (0.009479170499999995) (0.009452058999999999) (0.00947208799999999) (0.00947344750000001) (0.009341183000000003) (0.009371994499999994) (0.009492151000000004) (0.009462879499999993) (0.009532898999999997) (0.009569053999999994) (0.009744257500000006) (0.009470189500000017) (0.009776625999999997) (0.009404624999999986) (0.009473414999999999) (0.009634829000000011) (0.009389696500000017) (0.009505897999999999) (0.009279376500000006) (0.009494472500000004) (0.009461701000000003) (0.009500831000000001) (0.009614873999999995) (0.009668593999999989) (0.009621646000000011) (0.009384530000000002) (0.009581752000000013) (0.009619256499999992) (0.009682789000000011) (0.009436415500000003) (0.009483531000000003) (0.009607966999999995) (0.009737690499999993) (0.00974344349999999) (0.009677307499999996) (0.010003141000000007) (0.009715560999999998) (0.009642496500000014) (0.010016840500000013) (0.009858855999999985) (0.009639176999999999) (0.009902986000000003) (0.009857691500000001) (0.010053349500000003) (0.010185479999999997) (0.009760128499999993) (0.009830401500000002) (0.009659213999999985) (0.009897000000000003) (0.009695882000000003) (0.009743070499999992) (0.009798153000000004) (0.009849583000000009) (0.009876932000000005) (0.00995093100000001) (0.009781417) (0.00959484649999999) (0.00993838950000002) (0.00980708550000002) (0.009792652500000013) (0.0096323475) (0.009822141000000006) (0.009904560499999993) (0.00942560399999999) (0.009659111999999997) (0.009479041999999993) (0.009364874999999995) (0.009415353000000001) (0.009643427499999996) (0.009439555499999988) (0.009536976000000003) (0.00944267650000001) (0.009618195999999996) (0.009704052000000005) (0.009621815500000006) (0.00937821200000001) (0.009872175999999996) (0.009520372999999985) (0.00968967300000001) (0.009451888500000005) (0.009546102000000015) (0.00984911799999999) (0.009445079499999995) (0.009529350000000006) (0.009430343499999994) (0.00962874000000001) (0.009474102999999998) (0.009515732499999985) (0.0095728395) (0.009462248000000006) (0.009513107500000006) (0.009677757000000009) (0.009506245499999982) (0.009541393000000009) (0.009695166500000005) (0.00976548449999999) (0.0096932495) (0.009726945) (0.009596400500000005) (0.009735796500000005) (0.00986334550000001) (0.009687513499999995) (0.00963262699999999) (0.009862065999999989) (0.01000805049999999) (0.009941697499999999) (0.010052209000000006) (0.0100500865) (0.009990956500000009) (0.0100645075) (0.009922358000000006) (0.009712558499999996) (0.009757136) (0.009641707999999999) (0.009701994499999991) (0.009841292500000001) (0.009818342500000007) (0.00969964999999999) (0.009681422000000009) (0.009974160499999996) (0.009847718999999991) (0.009739463500000017) (0.010026331000000013) (0.009682867500000011) (0.009864824499999994) (0.010026871999999992) (0.009779772499999992) (0.009423043499999992) (0.009373614000000002) (0.009546107499999998) (0.009745979499999988) (0.009400402499999988) (0.009377270000000007) (0.009509667999999999) (0.009445282999999999) (0.009606341500000004) (0.009695223999999988) (0.009509237500000003) (0.00941090650000001) (0.009688310999999991) (0.009460178999999999) (0.009581360999999983) (0.009612100000000012) (0.00946602399999999) (0.0096419425) (0.009472327000000003) (0.009447424999999995) (0.009508699500000009) (0.009382934999999995) (0.00956861249999999) (0.009379668500000007) (0.009551690499999987) (0.009652702500000013) (0.009573021000000015) (0.009628961999999991) (0.009369676000000007) (0.009477718499999996) (0.009821813499999998) (0.009553928500000003) (0.00985051150000002) (0.009739587000000008) (0.009716838000000005) (0.009697947999999998) (0.009865354000000007) (0.009843142500000013) (0.009901698000000014) (0.009709330999999988) (0.009803244500000002) (0.009802585500000002) (0.009925721999999998) (0.00982716850000001) (0.009928026499999992) (0.009963800499999995) (0.009920628000000015) (0.009998213999999991) (0.00981781100000001) (0.009987832500000002) (0.009766665999999993) (0.009692102499999994) (0.009629692500000009) (0.009729411499999993) (0.009958503000000007) (0.009588515999999991) (0.009761176999999996) (0.010005825499999996) (0.00988813949999999) (0.009886239000000005) (0.009926159500000004) (0.009759504000000002) (0.009928404000000002) (0.009754128) (0.009414361999999982) (0.009351550499999986) (0.009731055499999988) (0.009521613999999998) (0.009560766499999998) (0.009606959500000012) (0.009643965500000004) (0.009484795500000004) (0.009542725000000002) (0.009419496) (0.009820494500000013) (0.009618385500000007) (0.009618547000000005) (0.009503146000000004) (0.009702394999999989) (0.009613945999999998) (0.009595158500000006) (0.009620238000000003) (0.009572633999999997) (0.009456721000000001) (0.009527199500000014) (0.009570586000000006) (0.009549155500000003) (0.009456317499999992) (0.009545511499999992) (0.009703630000000005) (0.00950671950000001) (0.009818661999999992) (0.009582675499999999) (0.00948720950000001) (0.009518091500000006) (0.009366026) (0.009761009000000001) (0.009796628999999987) (0.009956964999999998) (0.009728979000000013) (0.009956002000000005) (0.009804791500000007) (0.009883929500000013) (0.010008154500000005) (0.009861327999999989) (0.009874795500000005) (0.010016716999999994) (0.009859807999999998) (0.009788362000000023) (0.00997616300000001) (0.009912281500000009) (0.009827457499999998) (0.010096988500000015) (0.00974967950000001) (0.009885511500000013) (0.009645730000000005) (0.009921380000000007) (0.009683384999999989) (0.009857532500000002) (0.009911503500000002) (0.009801729000000009) (0.009997899500000004) (0.00990988000000001) (0.009797888500000004) (0.009913481000000002) (0.009923689500000013) (0.010093998999999992) (0.010030446999999998) (0.009478333499999991) (0.009473405500000004) (0.00950260650000001) (0.009373307999999997) (0.00934878950000001) (0.009345436499999998) (0.009360633499999993) (0.009479223000000009) (0.00951159950000001) (0.009479747499999996) (0.009737665500000006) (0.009694445499999996) (0.009369732000000006) (0.0095254065) (0.009655402499999993) (0.009581931500000002) (0.00947200450000002) (0.009586063000000006) (0.0094193625) (0.009321073499999999) (0.009281853999999978) (0.009298112999999997) (0.009532394) (0.009585911999999988) (0.009472089500000003) (0.009422400499999997) (0.00949113) (0.009452800000000025) (0.009560114500000008) (0.009423499000000002) (0.009625651999999998) (0.009602515500000006) (0.009718468500000008) (0.009744449999999988) (0.0097112045) (0.009670102000000014) (0.009782672000000006) (0.009756806499999993) (0.010314942000000007) (0.009781348999999995) (0.009818816999999994) (0.009758353500000011) (0.009853019500000004) (0.009884042499999995) (0.009466765000000002) (0.0099281715) (0.009739765999999997) (0.009717908000000011) (0.009787971500000006) (0.009789986500000014) (0.009861872499999993) (0.009841294) (0.009958659999999994) (0.010033980999999997) (0.009747734500000008) (0.00982359499999999) (0.010217540499999997) (0.009848688999999994) (0.009951123500000006) (0.009973306500000001) (0.009815653999999993) (0.009787192500000014) (0.010010022500000007) (0.009748354999999986) (0.009346560000000004) (0.009498594499999985) (0.009383006499999999) (0.009562633000000015) (0.009586342499999997) (0.009632977000000001) (0.009562935000000009) (0.009429496499999995) (0.009665010000000002) (0.009645283000000004) (0.00958874300000001) (0.009808611499999995) (0.009410140499999997) (0.0095319975) (0.009614603499999999) (0.009520835500000005) (0.009431217000000006) (0.009301281000000008) (0.009575567000000007) (0.009551673999999996) (0.009494167499999998) (0.0093406615) (0.009484675999999997) (0.009429710500000008) (0.009507422000000001) (0.00964137100000001) (0.009499535500000003) (0.00943152650000001) (0.009644782000000005) (0.009525511) (0.009515984500000005) (0.009557379500000004) (0.0098650765) (0.009777054500000007) (0.009739493500000002) (0.009644743000000011) (0.009950083499999984) (0.009825003500000012) (0.0096601365) (0.009919000999999997) (0.009933529499999996) (0.01018029249999998) (0.009857866000000007) (0.009929814499999995) (0.009865238500000012) (0.009708212500000007) (0.009706461) (0.009815039499999997) (0.0096994195) (0.009915305499999999) (0.009672600500000003) (0.009797451000000013) (0.009681742500000007) (0.009748606499999993) (0.009785621000000008) (0.009745407999999997) (0.009861496499999997) (0.009876250500000003) (0.009831112999999989) (0.0098979805) (0.009856706000000007) (0.009877633499999997) (0.009747174999999997) (0.009917165999999991) (0.009352799500000009) (0.009336028999999996) (0.009348366999999996) (0.009464052) (0.009374793999999992) (0.009439109000000001) (0.009555996999999997) (0.009426125500000007) (0.009437202500000005) (0.009688930999999998) (0.009637980000000018) (0.00939991300000001) (0.009522402499999999) (0.009521502500000015) (0.009594830000000013) (0.009642415500000001) (0.009355825499999998) (0.009709568999999987) (0.009489757999999987) (0.009677099499999994) (0.009343167999999999) (0.009470137500000003) (0.009507941999999991) (0.009345270500000002) (0.009627728000000002) (0.009610731500000011) (0.009646907999999996) (0.009561512500000008) (0.009559498) (0.009472875499999991) (0.0094729385) (0.009769053) (0.009813560500000013) (0.00994590549999999) (0.009665387499999997) (0.010179191500000004) (0.009761047499999995) (0.009835086999999992) (0.009740045500000016) (0.009816750000000013) (0.009887290500000007) (0.0097279495) (0.0099956665) (0.009655551999999998) (0.009729229500000006) (0.009925087499999999) (0.009745300999999998) (0.009742835500000005) (0.009999411) (0.0097082005) (0.009737991500000001) (0.009715292) (0.009725227000000003) (0.009901505500000005) (0.009842021000000006) (0.009828360999999994) (0.009970244999999989) (0.009694118499999987) (0.010056091999999989) (0.009923425999999999) (0.009833857000000001) (0.009915632499999993) (0.00984462300000001) (0.009815507499999987) (0.0094646055) (0.00942904700000001) (0.009629424999999997) (0.00962792450000001) (0.009501410000000002) (0.009675034999999998) (0.009459692000000006) (0.009543666999999992) (0.00966856599999999) (0.009595021500000009) (0.009686804499999993) (0.009636767000000004) (0.009484718999999989) (0.009911383499999996) (0.009473789499999996) (0.009633679000000006) (0.009595823000000003) (0.009442318500000005) (0.009556355499999988) (0.009610784999999997) (0.009447610499999995) (0.009548414000000005) (0.009441003999999989) (0.009293397000000009) (0.009637004000000005) (0.009543149500000014) (0.009632492500000006) (0.009393004999999996) (0.009526310499999996) (0.00944399550000001) (0.009638290500000007) (0.009603082499999999) (0.009769909000000007) (0.009789660500000005) (0.009655663000000009) (0.009717684000000004) (0.009675185500000003) (0.009826338000000004) (0.009808081499999996) (0.010139165500000005) (0.009814748999999998) (0.009945129000000011) (0.0098887805) (0.010104506999999999) (0.009941189999999989) (0.010210359500000002) (0.010138257499999997) (0.01002525700000001) (0.009655712499999997) (0.009811049000000002) (0.00980099949999999) (0.00966821000000001) (0.009806030000000007) (0.010125616000000004) (0.009945287499999997) (0.009746260500000006) (0.009751927000000021) (0.009778443000000012) (0.009800864500000006) (0.009887702499999998) (0.009691928999999988) (0.009712236499999999) (0.009867400499999984) (0.009817411499999984) (0.009460560000000007) (0.009300601999999991) (0.009196480500000007) (0.009537338499999992) (0.0093727745) (0.009252990000000003) (0.009556981999999992) (0.009524955000000015) (0.009587997000000001) (0.009521092000000009) (0.00951250699999999) (0.009403321999999992) (0.009940250500000011) (0.009480274499999997) (0.009536472000000004) (0.009468976500000004) (0.009306157499999995) (0.009338909000000006) (0.009310661500000011) (0.00939665399999999) (0.009457527499999993) (0.009614015500000003) (0.009564481) (0.009319126999999996) (0.009468827499999999) (0.009488214500000008) (0.009475041500000017) (0.009409360500000005) (0.009344816499999992) (0.00950809900000002) (0.009635290000000005) (0.009512940000000011) (0.009690058000000001) (0.00957392) (0.009622847500000004) (0.009911456499999999) (0.009796337500000002) (0.009759104000000005) (0.009957857) (0.009809577000000014) (0.009583019499999998) (0.010018416000000002) (0.009899314500000006) (0.009819414499999998) (0.00987035650000001) (0.009763656999999995) (0.009672570000000005) (0.009939421000000004) (0.0096972575) (0.00973391500000001) (0.009697614999999993) (0.009605488500000009) (0.00976163549999999) (0.0097158735) (0.009548872500000014) (0.009865513500000006) (0.009724545500000015) (0.009683438499999988) (0.010079500500000005) (0.009871505000000017) (0.009877523) (0.010032220500000008) (0.009877819499999996) (0.009714919000000002) (0.009568247500000002) (0.009634160999999988) (0.009426082000000002) (0.009439686000000003) (0.009536986000000011) (0.00932343749999999) (0.009258552000000003) (0.009385039999999997) (0.009423240499999985) (0.009390403500000005) (0.009649485999999999) (0.009617425500000013) (0.00956140300000001) (0.009475449999999996) (0.009506578500000015) (0.00958899399999999) (0.009510841500000006) (0.009544253500000002) (0.009298451499999985) (0.009488927499999994) (0.009473571000000014) (0.009352548499999988) (0.009353749000000008) (0.009378638499999994) (0.00942085949999999) (0.009352740499999998) (0.009725695000000006) (0.009508066999999995) (0.009445926500000007) (0.009627195500000005) (0.009661285500000005) (0.009692840500000008) (0.009669727500000003) (0.009716075000000005) (0.00959766649999999) (0.009764693500000005) (0.009651074499999995) (0.010084439000000014) (0.00978139900000001) (0.009621473499999991) (0.009893124500000003) (0.009836853999999992) (0.0102904375) (0.009809767999999996) (0.010047336000000018) (0.00973966150000001) (0.010017286) (0.009600472999999984) (0.009748405500000001) (0.009833788499999996) (0.009621731500000008) (0.009754607999999998) (0.009954595999999982) (0.009765758) (0.009758959000000011) (0.009930595500000014) (0.009884139999999986) (0.009964814000000002) (0.010198745500000009) (0.01009180350000001) (0.009964650999999991) (0.009854222499999996) (0.00996472150000001) (0.010057670500000004) (0.009352010000000008) (0.009598521999999984) (0.009270041999999992) (0.009464408000000007) (0.00944868900000001) (0.009595208499999994) (0.009525497499999994) (0.009480357000000009) (0.0095720985) (0.0095425425) (0.009436791) (0.010195434499999989) (0.00944863600000001) (0.009589401999999997) (0.0094613915) (0.009453658000000004) (0.00939574) (0.009684801999999992) (0.00935498550000001) (0.00956741600000001) (0.009841439500000007) (0.009543260999999997) (0.009614252000000004) (0.009428926000000004) (0.009367417500000003) (0.0094105045) (0.009372922000000006) (0.009335621000000002) (0.009605539499999996) (0.00962469099999999) (0.009645005999999998) (0.009567394500000007) (0.0097215925) (0.009637582999999991) (0.00963136199999999) (0.009656565999999991) (0.009873349500000003) (0.00978764750000001) (0.009996858000000011) (0.009677470500000007) (0.00984953949999999) (0.009821869999999983) (0.009847213500000007) (0.010153372500000007) (0.009861486000000003) (0.009927653000000008) (0.009680558000000006) (0.009968057500000002) (0.00970330450000001) (0.00976797950000001) (0.009587288999999999) (0.009993335999999992) (0.009768676500000004) (0.009847369499999994) (0.009977477999999998) (0.009807001499999995) (0.009936779500000006) (0.010082650999999998) (0.009892562500000007) (0.00982148599999999) (0.009886205999999995) (0.010149745000000002) (0.009825911500000006) (0.009920909000000006) (0.00951420750000001) (0.009432290999999995) (0.009460407000000004) (0.009349130999999997) (0.009397698499999996) (0.009425181500000004) (0.0093608565) (0.009329686000000004) (0.009697839) (0.009534094999999992) (0.009584964500000001) (0.009502902500000007) (0.009371545000000009) (0.009636472000000007) (0.009779752500000002) (0.009529540999999989) (0.009669609499999995) (0.009903574499999998) (0.009502360000000015) (0.009598403000000005) (0.009398184500000004) (0.009309454500000008) (0.009607882500000012) (0.009637582000000006) (0.009838444000000002) (0.009598776500000017) (0.009787472000000005) (0.009760136500000002) (0.009631686500000014) (0.009798954499999998) (0.009504450499999997) (0.009589016000000006) (0.009997711500000006) (0.009721782000000012) (0.0099387425) (0.009957332499999999) (0.009940251499999997) (0.009839856999999994) (0.009681640000000005) (0.00989048649999999) (0.009797480499999997) (0.009796800000000008) (0.009674281999999992) (0.009781573500000001) (0.010137313499999995) (0.009910291000000016) (0.010098231500000013) (0.009830787999999993) (0.009602405499999994) (0.009637786999999995) (0.0096803045) (0.009619507499999999) (0.009756668499999996) (0.009840737500000002) (0.009951302000000009) (0.00997392300000001) (0.009862143000000004) (0.009916180499999996) (0.009850756500000002) (0.009992837500000004) (0.009996901000000002) (0.010217923000000004) (0.010098243000000007) (0.010031001500000011) (0.009560907500000007) (0.009409425499999999) (0.009569666500000004) (0.00947783549999999) (0.009460582999999995) (0.009395017000000006) (0.009399371500000003) (0.00938200850000001) (0.009480430499999998) (0.009643465500000004) (0.009540890499999982) (0.009644554999999999) (0.009602176000000004) (0.009434835500000002) (0.009568457500000002) (0.009383278000000009) (0.009508229999999993) (0.009249098999999997) (0.009424578500000003) (0.0094081305) (0.009225528999999996) (0.009338127000000002) (0.009489190500000008) (0.009362861) (0.009565280500000009) (0.00963380400000001) (0.009561348499999983) (0.009523991499999995) (0.009516849499999994) (0.009506972499999988) (0.009528110500000006) (0.00943251149999999) (0.009727455999999995) (0.010147874500000001) (0.009755660000000013) (0.009954041999999996) (0.009881554) (0.009641388000000015) (0.009853620999999993) (0.010026608999999992) (0.009845642500000001) (0.009966243) (0.01010955849999999) (0.009799826000000011) (0.00974129) (0.009714960500000008) (0.009804489) (0.009787493499999994) (0.00965286700000001) (0.009793257999999999) (0.009738712499999996) (0.00962605350000001) (0.009850831000000004) (0.010375950500000009) (0.009984693500000003) (0.009995399500000002) (0.009954241500000016) (0.009943617500000002) (0.009947976500000011) (0.009746823000000002) (0.009773536999999999) (0.009756120499999993) (0.009714128000000002) (0.009867086499999983) (0.009434539500000005) (0.009452702500000007) (0.009475624000000002) (0.009496815500000005) (0.009461474999999983) (0.009586478500000009) (0.009554430000000003) (0.009426480000000015) (0.009662399000000002) (0.009668714999999994) (0.0094822175) (0.009529736999999996) (0.009809323999999994) (0.009611036500000003) (0.009558384000000003) (0.009625634000000008) (0.009499327000000002) (0.009569513000000016) (0.009404391999999998) (0.009575254500000005) (0.0092705805) (0.009644558500000011) (0.009324953999999996) (0.009580488499999998) (0.009614358000000003) (0.009519853499999995) (0.009503142000000006) (0.009618246999999983) (0.009375919999999996) (0.009734963999999999) (0.009538257000000008) (0.009666942499999998) (0.00962156950000001) (0.009818142499999988) (0.009804144000000015) (0.009854531000000014) (0.009710205000000013) (0.009736977999999993) (0.00970139149999999) (0.009796719999999995) (0.009780549000000013) (0.010030477999999995) (0.009830458) (0.009903398999999993) (0.009910931000000012) (0.009793882000000004) (0.009804665500000018) (0.009816170999999999) (0.009689081499999988) (0.0096307125) (0.009732648499999996) (0.009925687499999988) (0.009660922499999988) (0.010082211500000007) (0.009653598000000013) (0.009806270000000006) (0.009901766999999992) (0.010003001999999983) (0.009852880999999994) (0.009771613499999998) (0.010104104499999988) (0.009742802000000009) (0.009823833000000004) (0.010056671999999989) (0.009463186499999998) (0.009711413000000016) (0.009374005500000004) (0.009386085000000002) (0.0094951375) (0.009469209500000006) (0.009432452000000008) (0.009461476999999996) (0.009502531000000008) (0.009473176) (0.010012695000000002) (0.009880875499999997) (0.009459732000000012) (0.009601324999999994) (0.009639002000000008) (0.009554114500000016) (0.009524112500000001) (0.009313028000000015) (0.009617724999999994) (0.009635710000000006) (0.009511441999999995) (0.009599507999999993) (0.009490880499999993) (0.009575752500000007) (0.00953713299999999) (0.009444723000000016) (0.00954671700000001) (0.009574896) (0.009444063500000002) (0.009578139999999999) (0.009529778499999988) (0.009441201999999996) (0.009740257000000002) (0.00964872500000001) (0.00988574099999999) (0.009813348) (0.009691619500000012) (0.009598537000000004) (0.009575416000000003) (0.009802394999999992) (0.0100165495) (0.009705778500000012) (0.010020568999999993) (0.009809068500000004) (0.009762073499999996) (0.009712190999999995) (0.009782587999999995) (0.009791359000000013) (0.009738772000000007) (0.00989768100000002) (0.00973144649999999) (0.009919742999999995) (0.009744548500000005) (0.009694790500000008) (0.009627762499999998) (0.009974294500000008) (0.009912148999999995) (0.009727923) (0.009808722499999992) (0.009803284999999995) (0.0098190415) (0.009933876500000008) (0.009707167499999989) (0.009790982500000003) (0.009383750999999982) (0.009734571500000011) (0.009518204000000002) (0.009463862000000003) (0.009452377499999984) (0.009431421999999995) (0.00937139699999999) (0.009455093000000012) (0.009520141999999995) (0.009554645000000014) (0.009567895500000007) (0.009622655500000007) (0.00970377950000001) (0.0097815505) (0.009469522499999994) (0.009471115500000002) (0.009943046999999997) (0.009384000500000003) (0.009626524000000011) (0.009568840499999995) (0.009596892999999995) (0.009561318499999999) (0.009348961499999989) (0.00934102149999999) (0.00949014849999999) (0.009432471499999998) (0.009454011499999984) (0.009596478500000005) (0.009547612999999996) (0.009554430999999988) (0.009488886000000016) (0.009591652999999992) (0.009891358499999989) (0.009784673500000007) (0.009831912999999998) (0.009867097000000019) (0.009660985999999996) (0.009798538500000023) (0.009906506500000009) (0.009641805000000003) (0.01037788499999999) (0.009785908999999995) (0.009824930499999995) (0.010065469000000007) (0.010133667999999998) (0.009838479999999997) (0.009799355999999995) (0.009842777499999997) (0.010253073000000015) (0.009813683500000003) (0.009635311500000007) (0.009719559499999988) (0.009974292499999995) (0.0097516495) (0.010179666500000004) (0.009793824500000006) (0.009725971) (0.009960760500000013) (0.009894928999999997) (0.009777861499999999) (0.009708141999999989) (0.010001638999999993) (0.009894026) (0.00983848000000001) (0.009406119000000004) (0.009429278000000013) (0.009399751999999997) (0.009384851) (0.009555007000000004) (0.009530945499999999) (0.009653840999999996) (0.009515056499999994) (0.009433056000000009) (0.009579213500000003) (0.009362531000000007) (0.009774146500000011) (0.00962533950000001) (0.009653150499999999) (0.009644233500000002) (0.009610151499999997) (0.009421423499999998) (0.009581891499999995) (0.009311273500000009) (0.009450981999999997) (0.0096905605) (0.009326468500000004) (0.009534205500000004) (0.00926249350000001) (0.009602675500000019) (0.009678706500000009) (0.009556494499999998) (0.009596810999999997) (0.009777508000000004) (0.009600433999999991) (0.009530909000000004) (0.009667171000000002) (0.009867992499999992) (0.009750592999999988) (0.009788069999999996) (0.010001504499999994) (0.01001299500000001) (0.00986865499999999) (0.009696761000000012) (0.00983507850000001) (0.009874033000000004) (0.010511153999999995) (0.00983199600000001) (0.009875014999999987) (0.009725954499999995) (0.009798411000000007) (0.009711980999999995) (0.009842034999999985) (0.009722345000000007) (0.009693007500000003) (0.00979390749999999) (0.009647860500000008) (0.009724711000000011) (0.009708434000000002) (0.009678529500000005) (0.0097974485) (0.010011472499999993) (0.010120175499999995) (0.010441124999999996) (0.009834539000000003) (0.01010008900000002) (0.01011377849999999) (0.010439503000000003) (0.009671032499999996) (0.00963290700000001) (0.009570773500000004) (0.009285131000000002) (0.009312868500000016) (0.009399213000000003) (0.009449012500000006) (0.009472055500000007) (0.009479908500000009) (0.009478735500000002) (0.00956210049999999) (0.009462061000000008) (0.009559457999999979) (0.009544327000000005) (0.009625083999999992) (0.0095307315) (0.009405210999999997) (0.009576479499999999) (0.009409302499999994) (0.009344500000000006) (0.009342370500000002) (0.009337389500000015) (0.009501653499999999) (0.009378358000000003) (0.009660305000000008) (0.009631013499999994) (0.009431688000000008) (0.009570534000000006) (0.009441873999999989) (0.009452365000000004) (0.00971098899999999) (0.0095367165) (0.009607824000000001) (0.009644965999999991) (0.009732498499999992) (0.009833968500000012) (0.009749943000000011) (0.009820878000000005) (0.009725251500000004) (0.009706216500000003) (0.009754997000000001) (0.009799560499999999) (0.00989154099999999) (0.010010232999999993) (0.009792002999999994) (0.009835389000000014) (0.00989192450000001) (0.010138441999999998) (0.009759003000000002) (0.009680435499999987) (0.009670548000000001) (0.009761898500000005) (0.009730250499999996) (0.009739348999999994) (0.0097333525) (0.009784837500000004) (0.009968034) (0.00988423849999999) (0.009833302000000016) (0.009788988999999998) (0.010021369500000016) (0.010383004500000015) (0.009926601500000007) (0.009906351499999994) (0.009726515000000005) (0.009361518) (0.009468012499999984) (0.009422057499999997) (0.00963855050000001) (0.009547408999999993) (0.009766482999999992) (0.009673791000000015) (0.00957396449999999) (0.009507911500000008) (0.00961402950000001) (0.009700673499999993) (0.009625226) (0.009758412999999994) (0.009599289499999997) (0.009446698500000003) (0.0097302675) (0.009537615) (0.00940171200000002) (0.009670007500000008) (0.009493652000000005) (0.009484043500000011) (0.009490764500000012) (0.009373639999999989) (0.009696319499999995) (0.009375328000000016) (0.009588105500000013) (0.009656481000000008) (0.009386555000000005) (0.009512008000000002) (0.00946085599999999) (0.009602880999999994) (0.009432752500000016) (0.009848844500000009) (0.009787215000000002) (0.009777370499999993) (0.009712347499999996) (0.00991423000000001) (0.009766480499999994) (0.009753927499999995) (0.009837093500000005) (0.010034325999999996) (0.009689228500000008) (0.009883737000000004) (0.009928341500000007) (0.010013877500000004) (0.009970234000000008) (0.009706079500000006) (0.009914850000000003) (0.00974432900000001) (0.009624233499999996) (0.009853237499999987) (0.009632671499999995) (0.009716001000000016) (0.009821371499999995) (0.009760188500000003) (0.009922155000000002) (0.009878608999999997) (0.010002778000000004) (0.009842898499999989) (0.01025135549999999) (0.009777319000000007) (0.009770686) (0.00973388700000001) (0.009710945999999998) (0.009694046499999998) (0.009502355500000018) (0.009430235999999995) (0.0093893585) (0.00947129749999999) (0.009513230500000011) (0.009774303499999998) (0.009413183500000005) (0.009489348000000009) (0.009737832000000002) (0.009469197999999998) (0.009606475000000003) (0.009482066499999997) (0.0093984805) (0.009617880499999995) (0.009711927999999995) (0.009666274000000002) (0.009345001000000006) (0.009582699499999986) (0.009556391499999997) (0.009462539999999992) (0.009539806999999997) (0.009570876500000006) (0.00954324099999998) (0.009460831000000003) (0.009520908499999994) (0.009593853999999999) (0.009687297499999997) (0.00953881799999999) (0.009579354999999998) (0.009806233500000011) (0.009745098000000008) (0.009721069500000012) (0.009918736000000011) (0.009802703999999982) (0.009897802499999997) (0.009798039500000008) (0.009687543999999992) (0.010080785500000009) (0.009778987000000003) (0.009816738500000005) (0.010039232999999995) (0.009940562) (0.01008749149999999) (0.009873769000000004) (0.009720526000000007) (0.009951885499999993) (0.009761876500000002) (0.009828735000000005) (0.009856810999999993) (0.009683448999999997) (0.009741640999999995) (0.009801982) (0.009771744999999998) (0.010123571000000012) (0.009777748500000003) (0.010771208000000004) (0.010231923000000018) (0.009785493000000006) (0.009880744499999983) (0.00987867249999999) (0.009716315999999989) (0.009907468000000003) (0.00992382) (0.00939157950000001) (0.009446339500000012) (0.00947431) (0.009547590999999994) (0.009417875999999992) (0.009344763000000006) (0.009646867500000003) (0.009337640999999994) (0.009520023500000002) (0.009491378500000008) (0.009421421499999999) (0.009674866000000004) (0.009445338499999997) (0.009668847999999994) (0.009551562999999999) (0.009651357) (0.009462893500000014) (0.009513838999999996) (0.009471756000000012) (0.00934570600000001) (0.0093055425) (0.009383000500000002) (0.009550618999999996) (0.0096088015) (0.0094669805) (0.009455748) (0.009502540000000018) (0.009487257000000013) (0.009540535500000003) (0.009628269499999995) (0.009539726999999998) (0.009768430999999994) (0.009778064999999989) (0.009918348000000007) (0.009667107500000008) (0.009903698000000016) (0.009624941999999997) (0.009753727000000018) (0.009756770499999998) (0.009965110499999999) (0.009774035500000014) (0.009744035499999984) (0.009747270000000002) (0.009960612000000008) (0.00983867749999999) (0.009897139999999999) (0.0098087335) (0.0097128395) (0.009729975499999988) (0.009529406000000004) (0.009673779000000007) (0.009715861500000006) (0.00980503499999999) (0.009908753000000006) (0.009769077000000001) (0.010227705000000004) (0.010015853500000005) (0.009920282000000002) (0.009727316000000014) (0.009760679500000022) (0.009893559499999996) (0.009745091999999997) (0.009893580499999999) (0.0099288305) (0.009685092499999992) (0.009650946000000007) (0.009554555500000006) (0.009553884999999984) (0.009464493000000004) (0.0095805635) (0.00955676400000001) (0.009609918999999995) (0.009413163000000002) (0.009632595000000008) (0.009551961499999997) (0.009560951499999998) (0.009541099000000011) (0.009478892000000017) (0.009477360000000004) (0.009435773499999994) (0.011090779499999981) (0.009448537000000007) (0.009426337999999992) (0.00940569899999999) (0.009367023499999988) (0.00933210600000002) (0.009530998999999998) (0.009697684499999998) (0.009708837499999998) (0.009688457500000011) (0.009332851000000003) (0.009860675000000013) (0.009635944500000007) (0.009614453000000009) (0.009457443499999996) (0.009506532999999984) (0.009782506499999996) (0.009836321499999995) (0.009700619499999993) (0.009649416500000008) (0.009839174500000006) (0.009813925000000001) (0.0097101235) (0.010006641499999996) (0.009793006999999992) (0.009801572999999994) (0.009843787000000007) (0.009983762000000007) (0.009901795000000005) (0.009895149000000006) (0.0100698085) (0.009900981000000003) (0.009918118500000017) (0.009726809500000003) (0.009935175000000004) (0.00971237250000001) (0.010032808500000004) (0.009642431999999992) (0.009847713000000008) (0.009763176999999998) (0.0098733305) (0.009996816500000005) (0.0098652865) (0.009979468500000005) (0.009882657999999989) (0.009957656500000009) (0.009784939500000006) (0.009872786000000008) (0.009506852499999996) (0.00941654800000001) (0.009609520499999982) (0.009485631999999994) (0.009576704000000005) (0.009462178500000001) (0.009576595999999993) (0.009456879500000001) (0.009575757500000004) (0.0095231905) (0.009669420500000012) (0.009590332499999993) (0.009566821500000003) (0.009374293999999991) (0.009418418000000012) (0.009475464500000003) (0.009552267000000003) (0.009474676999999987) (0.009497412999999996) (0.009456313500000008) (0.010486778000000002) (0.009406054499999997) (0.009327390000000005) (0.009480755000000007) (0.009609443499999995) (0.009919954500000008) (0.009386742000000003) (0.009735921500000008) (0.009688880999999996) (0.0095379025) (0.009493619000000009) (0.009513400000000005) (0.009865583999999997) (0.009761797000000003) (0.009860562000000003) (0.009873695000000002) (0.009814744) (0.009644410500000006) (0.0097652305) (0.009968024499999992) (0.010009740500000003) (0.009781819000000011) (0.009728190000000012) (0.009842206499999992) (0.009886238999999991) (0.00975384) (0.009864838999999986) (0.00990714899999999) (0.009919693999999993) (0.010020500500000001) (0.009706115000000001) (0.009808593000000018) (0.009889583499999993) (0.009751296499999992) (0.009816711499999992) (0.009721803000000001) (0.009935717999999996) (0.00985717300000001) (0.009963339999999987) (0.009807426500000008) (0.009860954500000005) (0.009715097000000006) (0.009689231499999992) (0.00991494250000001) (0.009485614000000003) (0.009513860999999998) (0.009689045500000007) (0.009406384500000003) (0.009562984499999982) (0.00949085899999999) (0.009438020000000005) (0.009344701999999983) (0.009545174500000003) (0.009668572999999986) (0.009680212000000007) (0.009549740499999987) (0.009592242) (0.009752445000000012) (0.009474978500000009) (0.00950152600000001) (0.009442709000000007) (0.009476007000000009) (0.009397034999999998) (0.0094878625) (0.0094177555) (0.0093716415) (0.009396343000000001) (0.009476099999999987) (0.009468073000000007) (0.009686415500000004) (0.009667543999999986) (0.009659862000000005) (0.009493441000000005) (0.009565773) (0.009688213499999987) (0.009547954000000011) (0.009710710999999997) (0.009796252999999991) (0.009756262000000002) (0.009687271499999997) (0.009832475500000007) (0.009685507499999996) (0.009925261500000004) (0.009952014000000009) (0.00998486799999998) (0.009854320000000014) (0.009792373000000007) (0.009821272000000006) (0.009748039) (0.009996922000000005) (0.009708979000000006) (0.009942286999999994) (0.009671651000000003) (0.009856558499999987) (0.010127713999999996) (0.00985006749999999) (0.009696620500000003) (0.00971685450000001) (0.009901898999999978) (0.009752713499999996) (0.009774618999999998) (0.009824505999999997) (0.010717382499999997) (0.009975674000000004) (0.009991115000000009) (0.009966250999999995) (0.009888000999999993) (0.009747206999999994) (0.009390657999999996) (0.009343329000000011) (0.009551052500000004) (0.009602663499999997) (0.009554074499999995) (0.009364106000000011) (0.00933940450000001) (0.009390593500000002) (0.009460915999999986) (0.00973330950000001) (0.009449128000000001) (0.009531668500000007) (0.009545176499999988) (0.009502913000000016) (0.009659857500000008) (0.009430063000000002) (0.009361022499999996) (0.009470050499999993) (0.009460501999999996) (0.009676196000000012) (0.009656305500000004) (0.009332988500000014) (0.009331734499999994) (0.009629645500000006) (0.009440963999999996) (0.009489665499999994) (0.009588046000000003) (0.009376589500000018) (0.009485162000000005) (0.009535917000000005) (0.0096054515) (0.009554371000000006) (0.009664227999999997) (0.009818166500000003) (0.009659744999999997) (0.009760827) (0.00968311799999999) (0.009762710000000008) (0.009592346000000002) (0.009743273999999996) (0.009682521999999985) (0.0096563395) (0.009719041999999997) (0.009942006000000003) (0.009971734499999996) (0.009945809500000014) (0.009932766499999995) (0.0099192845) (0.009804694500000002) (0.009705365500000007) (0.009627468) (0.00965857349999999) (0.009648090000000012) (0.009852300000000008) (0.009929150999999997) (0.009650308499999996) (0.009815440500000008) (0.009808226999999989) (0.00998442799999999) (0.010012386999999998) (0.009831468499999996) (0.009989084500000009) (0.009743180500000004) (0.009809589500000007) (0.009471571000000012) (0.009448256500000002) (0.009298305499999993) (0.0093803415) (0.009520385500000006) (0.009400917499999994) (0.009606283999999993) (0.00937121299999999) (0.009440984000000013) (0.009429531000000005) (0.0094650565) (0.009791448999999994) (0.009547951500000013) (0.009535406999999996) (0.009567347000000018) (0.00953793600000001) (0.009318054500000006) (0.009460932000000005) (0.009536061499999998) (0.009346686000000007) (0.00951593499999999) (0.010126854999999976) (0.009448870999999998) (0.009561164999999983) (0.009570785499999998) (0.009421110499999996) (0.009535899) (0.009464244499999996) (0.009420501000000012) (0.009587124500000002) (0.009631389000000004) (0.009571786999999998) (0.009729267) (0.009797493000000004) (0.009708173500000014) (0.009792617500000003) (0.009853062999999981) (0.00979155999999999) (0.009699603000000001) (0.009701862499999991) (0.009861928999999992) (0.00974192950000001) (0.00981438400000001) (0.009865992500000004) (0.009937694999999996) (0.009735858) (0.009823890000000002) (0.009671730000000003) (0.009714119000000007) (0.009817475500000006) (0.00973553050000002) (0.00991511049999999) (0.009657783999999989) (0.009811780500000006) (0.009840785500000004) (0.009803764000000006) (0.009738840499999998) (0.009944138500000005) (0.009961312000000014) (0.009662782500000008) (0.010305947999999995) (0.01006804650000001) (0.009963113499999995) (0.0096509615) (0.009509614) (0.009341631500000003) (0.009641417) (0.009307387) (0.009267744000000008) (0.009464777999999993) (0.0092938605) (0.012239226999999991) (0.009544420500000012) (0.010076673999999994) (0.009575610999999998) (0.009666047999999983) (0.0095958815) (0.00954302700000001) (0.009570993) (0.009395864500000004) (0.009402958500000003) (0.009324329500000006) (0.0093852715) (0.009374265999999992) (0.009503243999999994) (0.009306888) (0.009431859500000014) (0.009520839499999989) (0.00954822100000001) (0.009501276000000003) (0.009483575000000008) (0.009468916499999994) (0.00973487449999999) (0.009492511999999995) (0.009518428500000009) (0.009443654499999996) (0.00979406749999999) (0.009612208499999997) (0.009654402499999992) (0.009672953999999984) (0.009712569000000004) (0.009879557499999997) (0.009651631500000007) (0.010060573500000003) (0.00988752200000001) (0.009690210500000004) (0.010105322) (0.00974952450000001) (0.009839080500000014) (0.009976544500000004) (0.010037125499999994) (0.009648924500000003) (0.009632464499999993) (0.009614030999999995) (0.010017756000000003) (0.00983513350000001) (0.009745396500000003) (0.009727854000000008) (0.00973424099999999) (0.009682053499999996) (0.009876374499999993) (0.009967727999999981) (0.009721805) (0.009759335000000008) (0.009716965500000008) (0.009762103999999994) (0.009756200999999992) (0.010103254000000006) (0.009335854000000005) (0.009377399000000008) (0.009502733500000013) (0.009491449999999998) (0.009526318000000006) (0.009360640500000017) (0.009292979999999992) (0.009511116000000014) (0.0096608485) (0.009470122499999983) (0.009672430499999995) (0.009586769499999995) (0.0094481535) (0.009468186000000003) (0.009465210500000001) (0.009724364499999999) (0.009603030499999984) (0.009700312500000002) (0.009499254500000012) (0.009572035499999992) (0.0092938365) (0.009589883499999993) (0.009332903000000017) (0.009553522500000008) (0.009498155000000008) (0.009441037499999999) (0.009341572000000006) (0.009537352499999999) (0.009508885999999994) (0.009537005500000015) (0.009706364499999995) (0.009439773999999984) (0.009686987999999994) (0.009659304000000021) (0.009754048000000001) (0.009855552000000004) (0.009832771000000004) (0.009788472999999992) (0.009715330499999994) (0.009720974500000007) (0.009851792500000012) (0.010115587500000009) (0.009843119999999997) (0.009806671499999989) (0.009918904000000006) (0.009974200499999988) (0.009924048000000005) (0.009795245499999994) (0.009854747499999997) (0.009622369000000006) (0.009875371000000008) (0.009870808499999995) (0.009715823499999998) (0.009693065500000014) (0.010021764499999988) (0.009812257000000005) (0.009960073) (0.009911386500000022) (0.009909771000000012) (0.009931376499999992) (0.009922633000000014) (0.009891893000000013) (0.009902483500000003) (0.009806482500000005) (0.009386025499999992) (0.009524209999999991) (0.009343888999999994) (0.009424374) (0.00934858849999999) (0.009468499499999991) (0.009513686999999993) (0.009328425000000001) (0.009710205499999985) (0.009338456000000009) (0.009559578499999999) (0.009428988499999999) (0.009450450499999999) (0.00973602500000001) (0.009600377000000007) (0.009615560499999995) (0.009350411000000003) (0.00937433900000001) (0.009564936499999996) (0.009418895999999996) (0.009314954) (0.009358568500000011) (0.00940152050000001) (0.009475274499999992) (0.009685083499999997) (0.0098433505) (0.00941310849999999) (0.009584497499999997) (0.009382173999999993) (0.009517219999999993) (0.009398438499999981) (0.009746903999999987) (0.009756281999999991) (0.009627112000000007) (0.009596115000000002) (0.009742752000000007) (0.00957537550000001) (0.009937176000000006) (0.009744046500000006) (0.009762300000000002) (0.00993980350000001) (0.009888255500000012) (0.009590413500000006) (0.009703997999999991) (0.010037249500000012) (0.009782880000000008) (0.00983637300000001) (0.009758540499999996) (0.009661722500000011) (0.0097840555) (0.009997790499999992) (0.009872169500000014) (0.009786912999999994) (0.010033065500000007) (0.009740717999999995) (0.009546865500000015) (0.009827000500000002) (0.00981281149999999) (0.009801838499999993) (0.009748306000000012) (0.00965734950000001) (0.009943760499999996) (0.009744593499999982) (0.009606110000000001) (0.009324559999999996) (0.009438705499999991) (0.009458127499999996) (0.009363085499999993) (0.009477362500000003) (0.009338533499999996) (0.009411388499999992) (0.00949266800000001) (0.009520796499999984) (0.009391621000000003) (0.010003689999999996) (0.009577621500000008) (0.009536434999999996) (0.009444144500000001) (0.009717220500000012) (0.009461646500000004) (0.009305152999999997) (0.009412692500000014) (0.009512220500000002) (0.0092873745) (0.009617945000000003) (0.009378342499999998) (0.009649444000000007) (0.009414833500000011) (0.009536451000000001) (0.009616179500000002) (0.009598644000000003) (0.009524753499999983) (0.009629485499999993) (0.009506790000000001) (0.009563749999999996) (0.009457745500000003) (0.009908374500000011) (0.009757350999999997) (0.009730968000000007) (0.009637511500000001) (0.0095614475) (0.009793958499999991) (0.009741937500000006) (0.009683569000000003) (0.0098526575) (0.009909182500000002) (0.009779512500000004) (0.00985335000000001) (0.00974912900000001) (0.009808929500000008) (0.009954394499999991) (0.009746338999999993) (0.009859048500000009) (0.009854389000000005) (0.009769910000000007) (0.009834613499999992) (0.009809299500000007) (0.009649269500000002) (0.009692946499999994) (0.009651458000000002) (0.009796022500000001) (0.009868332000000007) (0.00990086250000001) (0.010183125000000001) (0.009715358500000007) (0.009734397500000005) (0.00988181099999999) (0.009748431000000002) (0.009680292500000007) (0.009239253500000016) (0.009313059999999998) (0.009466358499999994) (0.009355178999999991) (0.009606181999999991) (0.009316932) (0.009297288) (0.009457799999999988) (0.009478174500000006) (0.009527252500000014) (0.009805354499999988) (0.009518346499999997) (0.00957820849999999) (0.009592876500000014) (0.009608417000000008) (0.009266940500000015) (0.009289343999999991) (0.009385838000000007) (0.009356020000000007) (0.00941233150000001) (0.009676312500000006) (0.009516811) (0.009297596499999991) (0.00934620700000001) (0.009630081499999998) (0.009459805999999987) (0.009393818999999998) (0.009551852999999999) (0.009663409000000012) (0.009426246500000013) (0.00944096550000001) (0.009707820500000006) (0.009879957000000009) (0.009760343500000004) (0.009734619499999986) (0.0101764565) (0.009786023500000005) (0.009875339999999996) (0.009870248499999998) (0.009672073500000003) (0.009906634999999997) (0.009774323499999987) (0.009753642499999993) (0.009840312000000004) (0.009798482999999997) (0.009799188) (0.010307773000000006) (0.009863914500000001) (0.009732019999999994) (0.009755554) (0.009738518500000015) (0.009995653999999993) (0.009762948500000007) (0.010026816499999994) (0.009678142999999986) (0.009796906500000008) (0.009892160499999997) (0.010071049999999998) (0.00972131200000001) (0.009896684000000017) (0.009799080500000001) (0.009962302999999992) (0.009874766999999993) (0.009358748499999986) (0.009455349500000002) (0.009702048500000005) (0.009555858) (0.009456835999999996) (0.009523642999999998) (0.00943064099999999) (0.009614375499999994) (0.009557839999999998) (0.009511781999999996) (0.009627485499999991) (0.009490027499999998) (0.0096623505) (0.009777865999999996) (0.009717863000000007) (0.009472120000000014) (0.009687178500000004) (0.009453713000000016) (0.009429595999999998) (0.009688937000000009) (0.009290845000000006) (0.009375813499999996) (0.009296829500000006) (0.009440819500000003) (0.010050904999999999) (0.009636945500000008) (0.009475207000000013) (0.009611709499999996) (0.009580710000000006) (0.00954455450000001) (0.009500449499999994) (0.009474046499999986) (0.009810379999999994) (0.009851920999999986) (0.00956010950000001) (0.009786503999999988) (0.009828867500000019) (0.009698169999999992) (0.009964002999999999) (0.010084460000000003) (0.009898660000000004) (0.00975322699999999) (0.009850428999999994) (0.010018659999999999) (0.009990270499999995) (0.009802857500000012) (0.009802704500000009) (0.009744987499999996) (0.009832142500000002) (0.009857704500000009) (0.009789024999999993) (0.009679244000000004) (0.011857096499999997) (0.0096964405) (0.0097894335) (0.009997801) (0.009877086500000007) (0.009983766499999991) (0.009694915999999998) (0.009815782000000009) (0.010127683000000012) (0.009808716999999995) (0.01009660250000001) (0.009725625500000001) (0.009602923500000013) (0.009372946000000007) (0.0094951925) (0.0095253815) (0.00956634000000002) (0.009349773499999992) (0.009535474999999988) (0.009399363500000008) (0.009462803999999991) (0.009320883999999988) (0.009640410000000016) (0.00942772) (0.00941440049999999) (0.009416330500000014) (0.009385655500000006) (0.009470897999999991) (0.009476631) (0.009406908999999991) (0.0094518715) (0.009422359499999991) (0.009511257499999995) (0.009493454000000012) (0.00945789150000001) (0.009468344000000004) (0.009479882500000009) (0.00952420750000002) (0.009379193999999993) (0.009437709500000002) (0.009690271499999986) (0.009600094500000003) (0.009570741499999993) (0.009471819499999992) (0.009713285500000016) (0.009743070999999992) (0.009941181499999993) (0.009923332499999993) (0.010212931500000008) (0.009910517000000008) (0.009672374499999997) (0.009891945) (0.009781267499999996) (0.009660174500000007) (0.009699905500000022) (0.009835021999999999) (0.009640706499999999) (0.009744050500000018) (0.009858721) (0.009725148999999988) (0.009598218500000005) (0.009681367499999996) (0.009970758499999996) (0.009674534500000012) (0.010005792) (0.009786756999999993) (0.00985116450000001) (0.009736620000000001) (0.009796045500000003) (0.009829324499999986) (0.00974957700000001) (0.010039584000000004) (0.010089134000000013) (0.009794370999999996) (0.0097799935) (0.009839197000000008) (0.009455149999999996) (0.009461020999999986) (0.009473926500000007) (0.009427486499999999) (0.00965365) (0.009386669000000014) (0.009559896000000012) (0.009514923500000008) (0.009585013000000003) (0.009649032000000002) (0.009534202999999991) (0.009800672999999996) (0.009429206999999995) (0.009559879000000007) (0.00947004700000001) (0.009417476999999994) (0.009457587500000003) (0.009482737000000005) (0.00940637200000001) (0.009649075500000007) (0.00939696000000001) (0.009503490000000003) (0.009388229999999984) (0.009556000499999981) (0.009523086499999986) (0.009546235000000014) (0.009619015000000022) (0.009598980500000007) (0.00946380749999999) (0.009470865000000009) (0.009455743500000002) (0.009467901999999986) (0.009730824999999999) (0.009844447999999992) (0.009665244500000017) (0.009838445500000001) (0.009680538500000002) (0.009638995499999997) (0.009638385999999999) (0.009832810499999997) (0.010023940999999995) (0.009742540499999994) (0.009723427000000007) (0.009968747499999986) (0.01009118249999999) (0.010165945499999995) (0.014536244000000004) (0.009758810999999992) (0.009764572499999999) (0.009659729000000006) (0.009953717) (0.009737580499999995) (0.010045297500000008) (0.009631874499999998) (0.009783009999999995) (0.009786643999999997) (0.009799427) (0.009763203499999998) (0.009693344999999992) (0.009761442499999995) (0.0101825205) (0.010003914000000003) (0.009910816499999989) (0.00998711400000002) (0.009539035999999987) (0.009497530000000004) (0.009577869000000003) (0.009414673999999998) (0.009406151000000001) (0.009345023000000008) (0.009512048000000009) (0.00926963750000001) (0.009506277500000007) (0.00952781200000001) (0.009740106499999998) (0.009554758999999996) (0.009430284499999997) (0.009575884999999992) (0.00957118400000001) (0.009758428) (0.009551621999999996) (0.009342767999999987) (0.009532427999999982) (0.009500143500000002) (0.009520056499999985) (0.009247112500000002) (0.009578951500000002) (0.009377753000000003) (0.009492979999999998) (0.009558284) (0.009607486499999998) (0.009709971499999998) (0.009593327499999985) (0.009630928499999997) (0.00969967549999999) (0.009482468000000008) (0.009696363000000013) (0.009700986500000008) (0.009868014999999994) (0.009696552999999997) (0.010007762000000003) (0.009778613999999991) (0.009864101500000014) (0.009701003) (0.0097397615) (0.00982965949999999) (0.009907792999999998) (0.009856250499999997) (0.009885460499999998) (0.009797938999999992) (0.009858305500000011) (0.0097449535) (0.00963733550000001) (0.009602424999999998) (0.009750134000000008) (0.00975923350000002) (0.009716528500000002) (0.009815965499999982) (0.009797407000000008) (0.009790809499999997) (0.009841638999999985) (0.009944744999999991) (0.009942516499999998) (0.009733858500000012) (0.009811089000000009) (0.009846115000000003) (0.009869412000000008) (0.009788293500000003) (0.00943735350000001) (0.009551710000000005) (0.009693134999999992) (0.009541765000000008) (0.009483250999999984) (0.009521275499999995) (0.009380934999999993) (0.009397714500000001) (0.009428244500000002) (0.009440607000000004) (0.009538185000000005) (0.009496106500000004) (0.009547306499999991) (0.009548927500000012) (0.009716205000000006) (0.009690835500000008) (0.009451219999999996) (0.009425411000000009) (0.009446491000000001) (0.009631427500000012) (0.009499315500000008) (0.009634072999999993) (0.009402967499999998) (0.009497752999999998) (0.00937600949999999) (0.009638051499999994) (0.009653117000000003) (0.009484544999999997) (0.009536386500000008) (0.00943091) (0.009729760500000004) (0.009454215499999988) (0.009699602500000001) (0.009780137999999994) (0.009720551500000008) (0.009949800499999994) (0.009709987500000017) (0.009627382500000004) (0.009735089500000002) (0.010068182500000009) (0.0097683945) (0.009892328500000006) (0.009930744499999991) (0.010065405) (0.009932358500000002) (0.010109632999999993) (0.009917662500000007) (0.009951635) (0.009704618499999998) (0.009624664500000005) (0.009854442000000005) (0.009755475499999985) (0.010101221499999993) (0.009854595499999994) (0.009833269000000006) (0.009772644000000011) (0.00975770899999999) (0.009944403500000004) (0.010003761000000014) (0.009818597999999984) (0.009821705) (0.009802909999999998) (0.00986359249999999) (0.00977154949999999) (0.009521747999999997) (0.00929811450000001) (0.009548124000000005) (0.009283382500000006) (0.009444024999999995) (0.009433147000000003) (0.00966654900000001) (0.009428906) (0.009475860999999988) (0.009441480999999988) (0.009439470500000005) (0.009523298) (0.009834073499999998) (0.009440578499999991) (0.009559243999999995) (0.009704628499999993) (0.009316340999999992) (0.009294690499999994) (0.009494001500000002) (0.009625543) (0.00950492600000001) (0.009534214499999999) (0.009419002499999996) (0.009349540999999989) (0.009400559000000017) (0.009558869499999997) (0.009641232999999985) (0.009573908000000006) (0.009474252000000002) (0.009473635999999994) (0.009750742499999993) (0.009513988000000001) (0.009764938) (0.009835899500000009) (0.009850526499999998) (0.009750756000000013) (0.009857618499999984) (0.00965583049999999) (0.009763627499999997) (0.010093836999999994) (0.0098096285) (0.009673945000000017) (0.009785214500000014) (0.009714292999999999) (0.009748279999999998) (0.009858817000000006) (0.009993247999999996) (0.009922645000000008) (0.009780596499999988) (0.009691437999999983) (0.009805962999999987) (0.009822631499999998) (0.009877538499999991) (0.009878663999999995) (0.00990524949999999) (0.009675080000000003) (0.00988428899999999) (0.009847064000000016) (0.009763059000000004) (0.009887517499999998) (0.009816225999999997) (0.010140587999999992) (0.009941107500000018) (0.010318719000000004) (0.009335323000000006) (0.009428284499999995) (0.00942168900000001) (0.009396301499999996) (0.009664250999999999) (0.009537215500000001) (0.00935659450000001) (0.00973657800000001) (0.009456892499999994) (0.009782024) (0.009778535000000005) (0.009524242999999988) (0.009620855999999997) (0.009482630000000006) (0.009488121000000002) (0.009474356500000003) (0.009427974999999991) (0.009311837000000003) (0.009666369499999994) (0.009443609999999991) (0.009805079499999994) (0.009407028500000011) (0.009479068499999993) (0.009501641499999977) (0.009412769999999987) (0.009338195500000007) (0.009839739500000014) (0.009529750000000003) (0.009693981000000004) (0.009447225000000004) (0.009755720499999995) (0.009533309500000017) (0.009772029500000015) (0.009704934000000012) (0.009775490499999998) (0.0099512655) (0.009646317000000001) (0.009784699000000008) (0.009809411500000004) (0.009610941499999998) (0.010125502500000008) (0.009763009999999989) (0.009793857500000003) (0.0096573665) (0.010035394000000003) (0.009838047500000002) (0.009849577999999998) (0.00999030749999999) (0.009721103500000008) (0.009868831999999994) (0.009835848500000008) (0.010098004999999993) (0.009772152999999992) (0.009780234500000012) (0.009781611999999981) (0.009745050000000005) (0.009810746000000023) (0.009701671499999995) (0.010071491999999987) (0.009965832999999993) (0.009835023500000012) (0.009880549999999988) (0.009773334999999994) (0.009879584499999997) (0.009359584500000004) (0.0095275685) (0.009520608) (0.009578057000000001) (0.009494793999999987) (0.009393147000000004) (0.009552794500000003) (0.009656419000000013) (0.009373167999999987) (0.009473472499999996) (0.009912082999999988) (0.00951690899999999) (0.009406328000000005) (0.009679684999999993) (0.009640408500000003) (0.010144990000000007) (0.009576357999999993) (0.009428207500000008) (0.009440398000000003) (0.009482062) (0.009510590999999999) (0.009523099500000007) (0.0095412785) (0.009726439999999989) (0.009603511999999995) (0.009423229499999991) (0.009469662000000004) (0.009660955000000013) (0.009647793000000016) (0.00973213449999999) (0.009669817000000011) (0.009366473) (0.009679696500000001) (0.0096633525) (0.009658462500000006) (0.009863108500000009) (0.00978241199999999) (0.009723019499999985) (0.009838403500000023) (0.0100724965) (0.009850518000000003) (0.010021682500000004) (0.009988637000000009) (0.009865848999999996) (0.010038923500000005) (0.010549987499999997) (0.009773920999999991) (0.009834324999999991) (0.009823356000000005) (0.009943423499999993) (0.009660806999999993) (0.009809555999999997) (0.009653975999999995) (0.010059289999999999) (0.0096983925) (0.009795217000000009) (0.009834405000000004) (0.009848833500000001) (0.009926186500000003) (0.010021972500000004) (0.00976520950000001) (0.01023553449999999) (0.009780209500000012) (0.009991546500000004) (0.009425074499999991) (0.009635697499999998) (0.009632615000000011) (0.00938249599999999) (0.009519861500000004) (0.0095268315) (0.009505491500000005) (0.0093551885) (0.009544105499999983) (0.009657888500000003) (0.0093725385) (0.009579642499999999) (0.009527595999999985) (0.009659795499999999) (0.009503337) (0.009676634000000003) (0.009518045000000003) (0.009533403999999995) (0.009816626500000009) (0.009416464999999999) (0.0095337905) (0.009398670499999998) (0.009520853499999996) (0.009475973999999998) (0.009952533999999999) (0.009635570999999996) (0.009566459999999999) (0.009570595500000001) (0.009455461999999998) (0.009521467499999992) (0.009690171500000011) (0.009444477499999993) (0.009744754999999994) (0.009708510500000017) (0.009976841999999986) (0.009676468999999993) (0.009868154500000018) (0.009879557999999997) (0.009708385) (0.009981449000000003) (0.009968477500000003) (0.010031763499999985) (0.00990496049999999) (0.009953068499999981) (0.009981890500000007) (0.009814754999999994) (0.009923658000000002) (0.009898926999999988) (0.009916520499999998) (0.009721720499999989) (0.009623304) (0.009895420500000002) (0.009824379499999994) (0.00984260499999999) (0.009797536499999995) (0.009745107000000003) (0.009908556999999998) (0.00995862950000001) (0.009718479499999988) (0.009739393999999998) (0.010073304499999991) (0.010029719499999992) (0.009992145499999994) (0.010087450499999998) (0.009472475000000008) (0.009392559999999994) (0.009475519499999988) (0.009460094000000002) (0.009279734999999983) (0.009373423000000006) (0.009279862499999986) (0.009405140499999992) (0.009422855499999994) (0.009552188999999989) (0.009577062500000011) (0.009634754500000009) (0.00936532000000001) (0.009512742500000004) (0.0094745725) (0.0095341585) (0.009462784000000002) (0.00931502749999999) (0.009481915000000007) (0.00932583699999999) (0.009307496499999998) (0.009464085000000011) (0.009680393499999995) (0.009386304499999998) (0.009546406500000007) (0.009539440499999996) (0.009416885500000013) (0.009634777999999997) (0.009686027000000014) (0.0094872285) (0.009351930999999994) (0.009510718500000001) (0.009713085999999996) (0.009780870999999997) (0.009689818000000003) (0.009938304999999995) (0.009887998000000009) (0.010044184000000012) (0.009791178000000011) (0.009699169999999993) (0.009868698500000009) (0.009664627999999995) (0.009731419000000005) (0.009815683000000006) (0.0099868865) (0.009769989499999993) (0.009746385999999996) (0.0098352305) (0.009968123499999995) (0.009669578499999998) (0.009933564999999991) (0.009700145999999993) (0.009954877) (0.009625817499999995) (0.009581697) (0.009855968499999992) (0.009971952000000006) (0.009883458999999997) (0.009778031999999992) (0.009742062999999995) (0.009705626999999994) (0.009708833500000014) (0.009793922499999996) (0.009953909999999982) (0.009401273000000016) (0.009461645000000005) (0.009379580499999998) (0.00947058349999999) (0.009545069000000003) (0.009544523999999999) (0.009575637999999997) (0.00952168149999999) (0.009457229499999997) (0.009589769999999997) (0.009532947) (0.009523003000000002) (0.009649545999999995) (0.009409914000000005) (0.009751249999999989) (0.009607503500000003) (0.009459671500000003) (0.009759699999999996) (0.009381943000000004) (0.009709586499999992) (0.009529438500000001) (0.009471643000000002) (0.009627534499999993) (0.009373711000000007) (0.009500205000000012) (0.009620045000000008) (0.009499473000000008) (0.009514561500000004) (0.0095245375) (0.009580109500000003) (0.009498648999999998) (0.009604459999999995) (0.009661571000000022) (0.009744112999999999) (0.009612673499999988) (0.009835689499999994) (0.009600735500000013) (0.009646899) (0.009863536000000006) (0.009920924999999997) (0.009749737499999994) (0.009732610999999988) (0.009972302000000002) (0.009817479500000004) (0.009785676500000007) (0.009852696500000022) (0.009724356999999989) (0.009891067000000003) (0.009821109999999994) (0.009819846999999993) (0.009818580500000007) (0.009792041000000015) (0.009891347500000008) (0.009747481500000002) (0.00963190350000001) (0.009669638499999994) (0.009945054499999995) (0.009862638500000007) (0.009814646999999982) (0.00981050550000001) (0.009724560000000007) (0.009652806500000014) (0.009800371499999988) (0.009762497999999994) (0.009421863999999988) (0.009626467500000013) (0.009377754999999988) (0.009329809999999994) (0.009617123000000005) (0.00945926350000001) (0.009422097500000004) (0.009422391000000002) (0.00962808350000001) (0.009559023999999985) (0.00942206100000001) (0.009744064999999996) (0.009799556000000001) (0.009573396999999997) (0.009505190499999996) (0.009802372000000004) (0.009493599999999991) (0.00951874250000001) (0.009550909499999996) (0.009439298499999985) (0.009492927500000012) (0.009545952499999996) (0.009472138000000005) (0.009494531) (0.009651130500000007) (0.009518137999999995) (0.00942722900000001) (0.009583257499999984) (0.009411949000000017) (0.009509966999999994) (0.009562958499999996) (0.009412605000000004) (0.009622797499999988) (0.009905405999999992) (0.009762459000000001) (0.009711740999999982) (0.009746023000000006) (0.00982781449999999) (0.00973330800000001) (0.009995426500000001) (0.009833644000000002) (0.009966055500000001) (0.009953691999999986) (0.009824435000000006) (0.009853545500000005) (0.009961492500000002) (0.010029707499999999) (0.009714301500000008) (0.009744734500000005) (0.009683174999999988) (0.009657257000000016) (0.009745576499999992) (0.009871459999999999) (0.009791076499999996) (0.009879999) (0.009984799999999988) (0.009915309000000011) (0.010033742499999998) (0.010017365000000014) (0.01003301450000002) (0.010150727999999998) (0.009945198999999988) (0.010164123000000011) (0.009912054000000003) (0.00933054450000001) (0.0097668645) (0.009615452499999996) (0.009422755500000005) (0.009506699500000007) (0.009430515499999986) (0.009641613000000007) (0.009578686500000003) (0.009525562000000001) (0.009508668499999998) (0.009580919499999993) (0.009389735499999996) (0.0096011555) (0.009666197000000015) (0.009744098499999992) (0.009521314000000017) (0.009459180999999997) (0.00933755700000001) (0.009425808499999994) (0.009425033500000013) (0.009405541000000003) (0.00946482350000001) (0.009413418999999992) (0.009624311499999996) (0.009532425999999997) (0.009492978999999999) (0.009606569500000009) (0.00957450650000001) (0.009554217000000004) (0.009641496999999999) (0.009520790000000001) (0.009685695499999994) (0.009796560499999996) (0.009769921) (0.009990813999999987) (0.009839412000000006) (0.009731246000000013) (0.0098055415) (0.00963927199999999) (0.009753129499999999) (0.009778057999999992) (0.009886025000000007) (0.009889713000000008) (0.009966484500000011) (0.009761516500000011) (0.009758041000000009) (0.009719778500000012) (0.010041142000000003) (0.009634318000000003) (0.009901271999999989) (0.009968100500000007) (0.009786866500000005) (0.009650640500000002) (0.00957666) (0.009645900999999998) (0.00965290299999999) (0.009832196499999987) (0.009790991499999999) (0.009719029500000004) (0.009917152999999998) (0.009764504499999993) (0.009945696500000017) (0.009764765499999994) (0.009975672000000005) (0.009366801499999994) (0.009398127999999992) (0.009666195499999988) (0.00942849950000002) (0.009276656499999994) (0.0094036745) (0.009425834000000008) (0.009537219999999999) (0.0093197005) (0.009446465500000015) (0.009365319499999997) (0.009532696500000007) (0.009533690000000011) (0.009624708999999995) (0.009491060999999995) (0.009531948000000012) (0.00934450299999999) (0.0093639945) (0.009507300999999982) (0.00958821650000001) (0.009491402999999995) (0.009423025000000002) (0.009532198500000005) (0.009392052999999997) (0.00968812849999999) (0.009457980000000005) (0.009419985500000005) (0.009347678000000012) (0.009610657000000009) (0.009450544499999991) (0.009727580000000013) (0.011547971500000004) (0.009730857499999995) (0.0098887005) (0.009835319499999995) (0.009609176499999997) (0.009747911999999997) (0.009880340500000001) (0.009749057500000005) (0.009816268000000003) (0.009748073499999996) (0.009930437) (0.009829560000000001) (0.009874107500000007) (0.009982511) (0.009736166500000004) (0.010008585) (0.009796358500000005) (0.0098173825) (0.009747442000000009) (0.009699672499999992) (0.009761712500000005) (0.010253318999999997) (0.009593006000000001) (0.009859176500000011) (0.009691684500000006) (0.009973515000000002) (0.009746903000000001) (0.009811267000000012) (0.009948617000000007) (0.010264177) (0.009952800000000012) (0.009764947999999996) (0.009664235499999993) (0.009332542499999999) (0.009531177500000002) (0.009422405500000008) (0.00949585750000001) (0.009375216999999991) (0.009444349500000004) (0.00937512750000001) (0.009278559000000006) (0.009522359999999994) (0.009734186499999992) (0.009496411999999996) (0.009585921000000011) (0.009636055500000004) (0.009379805500000005) (0.009489113000000007) (0.009380910000000006) (0.009674864000000005) (0.00945903649999999) (0.0095218485) (0.009328406499999997) (0.0094948995) (0.009439508999999999) (0.009436626999999989) (0.009393714999999997) (0.009538720000000014) (0.009561879499999995) (0.00949092600000001) (0.009581046499999996) (0.0095191825) (0.009470158499999992) (0.009451097999999991) (0.009427810499999995) (0.009803851000000002) (0.009673376000000011) (0.009761589000000001) (0.009823139499999994) (0.009841448500000002) (0.009655965500000002) (0.009904540000000017) (0.009849876999999993) (0.009917875999999992) (0.010036451500000002) (0.0100007815) (0.009884417000000006) (0.009759634999999989) (0.009975208499999999) (0.009820037000000018) (0.009879907000000007) (0.009832617000000002) (0.009870355500000011) (0.009730898500000001) (0.009646907499999996) (0.009809368499999999) (0.009820839500000011) (0.009820715999999993) (0.009874915500000012) (0.009824504999999997) (0.009908934500000008) (0.009946429999999992) (0.009883203499999993) (0.009773227499999995) (0.009768844999999998) (0.009963470499999988) (0.009810632500000013) (0.009559577999999999) (0.009293183999999996) (0.009422943499999989) (0.009902606999999994) (0.00929187749999999) (0.0095283855) (0.009367530499999999) (0.0094621815) (0.009573966500000003) (0.009672234999999987) (0.009496477000000003) (0.0097362275) (0.009852882499999993) (0.00950682) (0.009462736499999999) (0.009457193000000003) (0.009477987500000007) (0.009686932499999995) (0.00941958050000001) (0.00939155350000001) (0.009421421499999999) (0.009522100999999991) (0.009511041000000012) (0.009337251500000004) (0.0094965875) (0.009532626500000002) (0.009546814) (0.009484710500000007) (0.009543730000000014) (0.009612565000000003) (0.009516348500000021) (0.009419523500000013) (0.009886560000000003) (0.009741247499999994) (0.01002792050000001) (0.009976521500000002) (0.009830776999999999) (0.009883859499999995) (0.0097650725) (0.009865567500000005) (0.009969613000000002) (0.009954831499999997) (0.009755334000000004) (0.009859776) (0.009630109500000011) (0.009885828499999999) (0.010103385000000006) (0.009806817499999995) (0.009894310999999989) (0.009880582000000013) (0.0097472475) (0.009822200000000017) (0.010079511499999985) (0.009604148500000007) (0.009647918500000005) (0.009786322) (0.009698166000000008) (0.009939765500000003) (0.0099101625) (0.009687817500000001) (0.009749076500000009) (0.009942685999999992) (0.009951502000000001) (0.009876383500000016) (0.009558655499999999) (0.00948343800000001) (0.009502154499999999) (0.009506794000000013) (0.00965592400000001) (0.0095054985) (0.009585049500000012) (0.009509107500000016) (0.009672292999999998) (0.009542938500000014) (0.009519171999999992) (0.009586567500000004) (0.009699780500000005) (0.009724917499999985) (0.009596631999999994) (0.009588505999999997) (0.009654188999999994) (0.009511878999999987) (0.009338805500000005) (0.009401975499999993) (0.009648912499999995) (0.009830085500000002) (0.009416510500000017) (0.00957015750000001) (0.009622743000000003) (0.009741831499999992) (0.009539606000000006) (0.009607748999999999) (0.0095857825) (0.0095470015) (0.009458754) (0.009582814499999995) (0.009896281999999992) (0.009771076500000003) (0.009865124499999989) (0.009850671999999991) (0.009649251999999997) (0.009913019500000009) (0.009818197) (0.010006358999999992) (0.00988496400000001) (0.0099632635) (0.009877085499999994) (0.009819767999999993) (0.009840795500000013) (0.009934552999999999) (0.009863418000000013) (0.009830652500000009) (0.009659454499999998) (0.009819473999999995) (0.010070830499999989) (0.009704247999999985) (0.009921179500000002) (0.00971101249999999) (0.009776234000000009) (0.00972498749999999) (0.009774835499999995) (0.009748451000000005) (0.009876361499999986) (0.010007145499999995) (0.00983682100000001) (0.010163735000000007) (0.00998135600000001) (0.010038856000000013) (0.009269389000000003) (0.009468926999999988) (0.009511009500000014) (0.009551010499999998) (0.009557389999999999) (0.009469087999999987) (0.009380810000000003) (0.009539708500000008) (0.009628394500000012) (0.009578065499999996) (0.0094725965) (0.009638413999999998) (0.009452222999999996) (0.009459054499999994) (0.009451632000000001) (0.00981687349999999) (0.009674767) (0.009465295999999998) (0.009631689999999998) (0.00939934549999999) (0.009444256499999998) (0.009564835999999993) (0.009306246000000004) (0.009658292499999999) (0.00941165699999999) (0.009683649000000016) (0.009691975499999991) (0.009741042000000005) (0.009657678500000003) (0.009620471499999991) (0.009563792500000015) (0.009580325) (0.00986534750000001) (0.009917531499999993) (0.009760186500000018) (0.00957470449999999) (0.009901162000000005) (0.009837871999999984) (0.009812440000000006) (0.009882987999999981) (0.009808058999999994) (0.009946218499999993) (0.009953846500000016) (0.009810538000000008) (0.010188160000000002) (0.009836942500000001) (0.009799804499999995) (0.009663488999999997) (0.009673894500000016) (0.009745987500000011) (0.009724619000000018) (0.009685204500000003) (0.009763920999999995) (0.009632679499999991) (0.009625012500000016) (0.009947414499999988) (0.009780380499999991) (0.009976822999999996) (0.010033816500000015) (0.009804294000000005) (0.009868118999999995) (0.0098898065) (0.009778228) (0.009731504499999988) (0.009471393499999994) (0.00948317650000001) (0.00961111399999999) (0.009466964000000008) (0.009503992499999989) (0.009511557500000004) (0.009346419000000009) (0.009697361499999987) (0.009684529500000011) (0.009574898999999998) (0.009391663000000008) (0.009646007999999998) (0.009599428000000007) (0.00940128300000001) (0.009574588499999995) (0.009529147500000001) (0.009677643500000013) (0.009322138000000008) (0.009378433000000005) (0.009402744500000004) (0.009475786500000014) (0.009361473999999995) (0.009537684500000004) (0.009634206500000006) (0.009739242500000009) (0.009326657500000016) (0.009469745999999987) (0.009591344999999987) (0.009510775500000013) (0.009511064999999999) (0.00954532050000001) (0.009738158499999996) (0.009759159000000003) (0.009774743000000002) (0.009766226000000003) (0.009618176499999992) (0.009706887499999983) (0.010007741) (0.010076742999999999) (0.009872707999999994) (0.010029583999999994) (0.009922249999999994) (0.009805191000000005) (0.009746656500000006) (0.009860984000000003) (0.009780230000000015) (0.009788732500000008) (0.009733148499999997) (0.009723873499999994) (0.009841009499999998) (0.009837317999999998) (0.009806419999999996) (0.009696226499999988) (0.009917770500000006) (0.009688870999999988) (0.009742811000000004) (0.009901195500000015) (0.009610935000000001) (0.009871536) (0.009844345000000004) (0.00984901149999999) (0.00983067800000001) (0.009960155000000012) (0.009740473999999999) (0.009475723499999991) (0.009525661500000004) (0.009497128499999993) (0.009414663000000004) (0.00951879500000001) (0.009679528499999993) (0.009566659500000005) (0.009648446500000019) (0.009373183999999993) (0.009478143500000008) (0.009716668499999997) (0.009879469500000002) (0.009642192499999994) (0.009481087499999999) (0.009440878499999986) (0.009507649499999993) (0.00948607) (0.009608551499999993) (0.009553739000000006) (0.009442720000000002) (0.009769224999999992) (0.009518937000000005) (0.009519065000000007) (0.009583598999999998) (0.009878168499999992) (0.009607398500000003) (0.009629352500000007) (0.009549612499999999) (0.009600712999999997) (0.009638895999999994) (0.009490593500000005) (0.0096083275) (0.0100016505) (0.009730155000000004) (0.009968964499999997) (0.009626267000000022) (0.009788529500000004) (0.009766387000000001) (0.009672804499999993) (0.00988146799999999) (0.009929921499999994) (0.00972585799999999) (0.010011988) (0.009943569499999999) (0.009898467500000008) (0.009841477500000001) (0.009805036000000017) (0.009829859999999982) (0.009722636500000006) (0.009872495499999995) (0.009748845500000006) (0.009867089499999995) (0.009927718500000002) (0.009702873) (0.010058299999999992) (0.009618623500000006) (0.010027655499999996) (0.009914500999999992) (0.0096561285) (0.009784911500000007) (0.009842052500000004) (0.009888156499999981) (0.009750311499999997) (0.010191308999999996) (0.009334658999999995) (0.00942370699999999) (0.00947655900000001) (0.009548005500000012) (0.009356603000000005) (0.009485328499999987) (0.009508561000000013) (0.009591798999999998) (0.00950939549999999) (0.009483836999999995) (0.00945551900000001) (0.009667249000000003) (0.009524783000000009) (0.009456524500000008) (0.009523568999999996) (0.00952045750000001) (0.009404443499999998) (0.009579480500000001) (0.009325243999999996) (0.0095811955) (0.009472026000000008) (0.009411364999999991) (0.009380897) (0.009606537499999998) (0.009722238999999994) (0.009801841500000005) (0.009574262000000014) (0.0094721745) (0.00946353450000001) (0.00991019999999998) (0.009778534500000005) (0.009528127000000011) (0.0100075045) (0.009999236500000008) (0.00972421200000001) (0.009930239000000007) (0.00981502649999999) (0.009839732500000004) (0.009736857000000002) (0.009676083500000002) (0.00989640650000001) (0.009783979999999998) (0.009861160000000008) (0.009859274000000001) (0.010083465500000013) (0.009776924500000006) (0.010361431500000018) (0.009890157499999996) (0.009742144000000008) (0.009883274499999997) (0.009732012999999998) (0.009897672499999996) (0.00962972699999999) (0.009804500499999994) (0.009634072999999993) (0.009815044000000009) (0.009906129999999999) (0.009948061000000008) (0.009796380500000007) (0.009715703500000006) (0.0100238525) (0.0098178825) (0.009780906500000006) (0.009921328500000007) (0.009460437500000002) (0.00955100149999999) (0.0094375815) (0.009326188) (0.009651755000000012) (0.009582552999999994) (0.009327216) (0.009612865499999998) (0.009549168499999983) (0.0096807815) (0.009502207000000013) (0.009473414000000013) (0.009359247999999987) (0.009410505999999999) (0.009560616999999993) (0.009459459000000003) (0.009558867999999998) (0.009394353499999994) (0.009593504500000002) (0.009465841500000002) (0.009442506500000003) (0.009589998499999988) (0.009551645999999997) (0.009534530500000013) (0.009763487000000001) (0.009494983499999998) (0.009529585999999993) (0.009446034000000006) (0.009643828999999993) (0.009679000999999993) (0.009548374500000012) (0.009639545999999985) (0.009683978499999996) (0.010099159999999996) (0.009648766000000003) (0.009793685999999996) (0.009677342500000005) (0.009646936000000009) (0.009702974000000003) (0.009692119499999999) (0.009779886000000002) (0.009944373000000006) (0.009796664499999996) (0.00979083700000001) (0.009845832499999999) (0.009728080499999986) (0.009954602499999993) (0.010094178500000009) (0.009763031000000005) (0.010062229499999992) (0.010040963) (0.009838380999999993) (0.009970181500000008) (0.009755367000000001) (0.009670499499999999) (0.009818237000000007) (0.00975868299999999) (0.009810068499999991) (0.009780797000000008) (0.00981124500000001) (0.009671030000000011) (0.009900898500000005) (0.009778956000000005) (0.009795955499999995) (0.0093919155) (0.009438217499999998) (0.009600544500000002) (0.009436090000000008) (0.009559549500000014) (0.009510594499999997) (0.009357649999999995) (0.009388874499999991) (0.009704309999999994) (0.009437580000000001) (0.009737128499999997) (0.009539901000000003) (0.00965207550000001) (0.009617052000000015) (0.0094812435) (0.009575749499999994) (0.00931960200000001) (0.009322300499999991) (0.009372549999999993) (0.009692075499999994) (0.009445580000000009) (0.009317106499999991) (0.009396371500000014) (0.009365575499999987) (0.0095345295) (0.009573606500000012) (0.009736916999999998) (0.009378630499999999) (0.009612153499999998) (0.009409461000000008) (0.0096143895) (0.009764901500000006) (0.009721490499999999) (0.00986317099999999) (0.009911450000000002) (0.009804784999999996) (0.009573453999999995) (0.009541373499999992) (0.009723461000000017) (0.009797474) (0.009802665500000002) (0.009846838499999996) (0.00981375000000001) (0.009876359500000001) (0.009831231999999995) (0.009894310999999989) (0.010099403499999993) (0.009720312499999995) (0.009725656999999999) (0.010011102999999993) (0.009790732999999996) (0.009676221999999998) (0.009649406) (0.009762300999999987) (0.009757070500000006) (0.00957865699999999) (0.010006651499999991) (0.009778529499999994) (0.009811701999999992) (0.009931107500000008) (0.009746508000000001) (0.009899682500000007) (0.009737555000000009) (0.009805755999999985) (0.009417114500000004) (0.00931873350000001) (0.009504570000000018) (0.009317860499999997) (0.009543187000000009) (0.009388573999999997) (0.009581328500000014) (0.009513185499999993) (0.009616627500000002) (0.009636120499999998) (0.009695217999999992) (0.009707805999999986) (0.009647482999999998) (0.009597383000000001) (0.009407183999999999) (0.009401158000000007) (0.009569988500000001) (0.009459143499999989) (0.009301493999999993) (0.009686710000000015) (0.009467007500000013) (0.009314230999999992) (0.009316015999999996) (0.0094473645) (0.009405633499999996) (0.009511602999999993) (0.009589780000000006) (0.009461870000000011) (0.009589013999999993) (0.009464033499999996) (0.009433290999999996) (0.009906567000000019) (0.009774306499999996) (0.009647510499999998) (0.01001275) (0.009820013500000002) (0.009861769499999992) (0.01007929199999999) (0.0097988185) (0.009691921500000006) (0.009949488000000006) (0.009784018999999991) (0.009822474499999997) (0.009735296000000004) (0.009786141999999998) (0.009795114000000008) (0.010024223000000013) (0.010001693499999992) (0.009785473500000003) (0.009678812500000009) (0.009702555500000001) (0.009802975500000005) (0.0096231695) (0.00967212399999999) (0.009684708) (0.009923553000000002) (0.0098158005) (0.00983622599999999) (0.009902889500000012) (0.009736108999999993) (0.009888390499999997) (0.009827629000000004) (0.009937864500000004) (0.009893897499999998) (0.009598599000000013) (0.009588991500000005) (0.009511987999999985) (0.009419871499999996) (0.009485523999999995) (0.009547766999999985) (0.00954757199999999) (0.009420517500000003) (0.009475803000000005) (0.009468817500000004) (0.009418316999999995) (0.009589901499999984) (0.009465724500000008) (0.009646824999999998) (0.00976949249999999) (0.00956694650000002) (0.009598373999999993) (0.009410398) (0.009545886500000017) (0.009407073500000002) (0.009310346499999997) (0.009501687500000008) (0.00948691900000001) (0.009600875000000009) (0.0095418835) (0.009483507500000002) (0.009625955499999991) (0.009579204999999993) (0.009692633000000006) (0.009697351500000007) (0.009413672500000012) (0.009538145499999998) (0.00983585449999999) (0.009847505000000006) (0.009995525500000005) (0.009765470499999998) (0.009746317000000004) (0.009765690499999993) (0.009858185500000005) (0.009608891999999994) (0.009952899000000001) (0.010154743499999994) (0.009754780000000005) (0.009824450999999998) (0.009872667999999987) (0.009862231999999999) (0.009747017499999996) (0.0100178915) (0.009681035000000004) (0.009681943999999998) (0.009861406000000003) (0.009768949499999999) (0.00986843350000001) (0.00975554449999999) (0.010264105499999995) (0.00972084799999999) (0.009766210499999997) (0.009760892000000021) (0.009748666500000003) (0.009725414000000002) (0.010031250999999991) (0.009906639000000009) (0.009903101500000011) (0.009772801499999997) (0.009391786) (0.009339779999999992) (0.0093726415) (0.009494278000000009) (0.00929793700000002) (0.009492859499999992) (0.00952159000000001) (0.009444098999999997) (0.009543443999999998) (0.009771389500000005) (0.0097465875) (0.009466800999999997) (0.009377706999999999) (0.009487456500000005) (0.009474075999999998) (0.009551697500000011) (0.009491926999999997) (0.009384485500000012) (0.009273793000000002) (0.009469007999999987) (0.009612504499999994) (0.009356484499999998) (0.009485209000000008) (0.009443022999999995) (0.009599982000000007) (0.009618237999999987) (0.009671391500000001) (0.009461381500000005) (0.009684972500000014) (0.009836590500000006) (0.009703643999999984) (0.00940386) (0.009851736) (0.00991052299999999) (0.009732438499999996) (0.009862147000000002) (0.009810062999999994) (0.009702651000000007) (0.009849247000000005) (0.009814773500000012) (0.009864291000000011) (0.009912889000000008) (0.009697269500000008) (0.009791571499999999) (0.009913778999999984) (0.009905030999999995) (0.009849621500000003) (0.009877012500000004) (0.009652332999999999) (0.009820547499999999) (0.009688049500000004) (0.009702597499999993) (0.0097987135) (0.009705883499999984) (0.009794185000000025) (0.00984623300000001) (0.009910353999999996) (0.009785425999999986) (0.009703753999999995) (0.010074570500000005) (0.009935924999999998) (0.009693399999999991) (0.009769255500000004) (0.009826842000000002) (0.009407288) (0.00957391299999999) (0.009661917500000006) (0.009422227499999991) (0.00929050549999999) (0.009312600500000004) (0.009301834500000009) (0.009577081500000001) (0.009574721999999994) (0.00943744199999999) (0.00951514349999999) (0.00946110650000001) (0.009412795500000001) (0.009499726499999986) (0.009501487500000003) (0.009623260000000008) (0.009380393) (0.009393631999999999) (0.009530043500000016) (0.00939693450000001) (0.009581468499999982) (0.009513314000000009) (0.009418991500000001) (0.009532259000000001) (0.009819576999999996) (0.0097541305) (0.009574864000000016) (0.009372805499999998) (0.00954251099999999) (0.00947323500000001) (0.009544913000000002) (0.009483721) (0.009862372999999994) (0.009698556999999997) (0.009871599999999994) (0.009790922999999993) (0.010023366000000006) (0.009780008000000007) (0.009748238499999978) (0.009717195499999998) (0.009848938500000001) (0.009871099999999994) (0.010012872000000006) (0.00974261400000001) (0.00972358600000002) (0.009917469499999998) (0.010047304499999993) (0.009694851000000004) (0.009841507999999999) (0.009949651500000004) (0.009744498500000004) (0.009696746500000006) (0.009760011500000013) (0.009852605500000014) (0.009613848000000008) (0.009703556499999988) (0.009895780500000007) (0.009787220999999985) (0.009700062499999981) (0.009840138999999998) (0.009832354999999987) (0.010006671000000009) (0.009757486499999996) (0.009776681500000009) (0.009467761499999991) (0.009319649499999999) (0.009494931499999998) (0.009803407) (0.00948491) (0.009315011999999998) (0.009718943499999994) (0.009427896000000019) (0.009513665000000004) (0.009703086) (0.009425622999999994) (0.009704382499999997) (0.009574729500000004) (0.009651230999999996) (0.00948884300000001) (0.009668181500000012) (0.009350927999999994) (0.009438095500000007) (0.009648272999999999) (0.009396569999999993) (0.009435453499999996) (0.009391918499999999) (0.009381771499999997) (0.0094827475) (0.009476898499999997) (0.009789871499999991) (0.009858359499999997) (0.009587126000000001) (0.009434832000000004) (0.00936591099999999) (0.009492309000000004) (0.009448669499999993) (0.009661009000000012) (0.009788654999999993) (0.009615684000000013) (0.009864972999999999) (0.009763511999999988) (0.009718270999999987) (0.009828290500000003) (0.0097103085) (0.009947061999999993) (0.009842722999999998) (0.009804278999999999) (0.009759384999999995) (0.010153939) (0.00972587200000001) (0.009839166999999996) (0.009881591500000009) (0.009798501500000015) (0.010055592500000016) (0.00978031) (0.009679841999999994) (0.009714547500000004) (0.009656431000000007) (0.009837857500000005) (0.009675768500000001) (0.009872935) (0.009875712999999994) (0.009648199499999996) (0.009921204000000003) (0.010001581499999981) (0.009822031000000009) (0.010073799499999994) (0.009895573500000004) (0.0097074615) (0.009418426999999993) (0.009638809999999998) (0.009355710500000017) (0.009418231999999999) (0.009445619000000002) (0.009616826499999995) (0.009455508000000001) (0.009850946) (0.009552863499999995) (0.009516124499999987) (0.009612390999999998) (0.009619863000000006) (0.009706488500000013) (0.009595801000000001) (0.009538675499999996) (0.009490346499999996) (0.009406766499999997) (0.009590517499999993) (0.00960227750000002) (0.00939324850000002) (0.00941336949999999) (0.00951014850000001) (0.009736786499999997) (0.00943216799999999) (0.009515177) (0.009563269000000013) (0.009618676499999992) (0.009719054500000004) (0.009777131999999994) (0.009923755000000006) (0.009671977499999998) (0.009958286499999996) (0.009767895499999998) (0.009753106999999983) (0.009754851999999994) (0.009802259000000008) (0.010201945500000004) (0.009965819999999986) (0.009726593500000005) (0.009968264500000004) (0.00994270350000001) (0.009865325999999994) (0.010012286499999995) (0.010146323499999998) (0.009867562499999996) (0.009892494500000001) (0.009715483499999997) (0.009749734499999996) (0.009731529500000016) (0.009807980000000008) (0.0097366495) (0.009774221) (0.009758889499999993) (0.009708948000000009) (0.009730519499999993) (0.009975417) (0.009764566000000002) (0.009969729999999996) (0.0099638965) (0.010126943999999999) (0.009851738999999998) (0.0097695) (0.00987695000000001) (0.009251616000000004) (0.009471358999999999) (0.009548476500000014) (0.009499196000000001) (0.009552509) (0.010048819499999986) (0.009573631999999999) (0.009378302000000005) (0.009504976999999998) (0.00968545300000001) (0.009382501500000001) (0.009396571499999992) (0.0094785535) (0.009471195000000002) (0.009783183499999987) (0.009563009499999983) (0.011197935000000006) (0.009463182500000014) (0.009606217500000014) (0.009347117500000016) (0.009505731000000003) (0.009526578499999994) (0.009286335999999978) (0.009472413499999999) (0.009423998000000003) (0.009455955500000002) (0.00964623349999999) (0.009502015500000002) (0.009571627999999999) (0.009674768499999986) (0.0093231015) (0.009610952500000006) (0.009992763000000002) (0.00993479650000001) (0.009745221499999998) (0.009693634999999992) (0.0098356275) (0.009865158499999999) (0.00962549800000001) (0.009680438) (0.009729219499999997) (0.00988512649999998) (0.00986234200000001) (0.009863385999999988) (0.009858138000000016) (0.009752682999999998) (0.009960437500000016) (0.009805231500000011) (0.009770954499999998) (0.00968393599999999) (0.01003751800000001) (0.009791853500000003) (0.009765171000000003) (0.009710899499999995) (0.009838242999999997) (0.009780467999999987) (0.009798491999999992) (0.009773593000000011) (0.009736938) (0.009827072000000006) (0.009958782499999999) (0.009965824999999998) (0.009974464000000002) (0.009724250500000017) (0.009532790499999999) (0.009318785999999996) (0.009323687499999997) (0.009327860500000007) (0.009437033999999997) (0.009401353000000001) (0.009319732999999997) (0.009547885000000006) (0.009607898000000004) (0.009938877499999998) (0.009563128000000004) (0.009398908999999997) (0.009413262499999991) (0.009479612499999998) (0.009560438500000004) (0.009614891999999986) (0.009413865000000007) (0.009643071499999989) (0.0094257435) (0.009523410499999996) (0.009297197500000007) (0.009353114499999995) (0.009433500000000011) (0.009490742999999996) (0.009454192499999986) (0.009690365500000006) (0.009625438500000014) (0.009722673000000001) (0.009805488500000015) (0.009408842999999986) (0.009539073500000009) (0.009488403500000006) (0.00990817599999999) (0.009883335500000007) (0.00979645400000001) (0.009794815999999998) (0.00973505999999999) (0.009792926499999993) (0.009857085500000001) (0.009946777000000004) (0.009883370499999988) (0.009669839999999999) (0.0099969575) (0.009895333500000006) (0.009801479499999988) (0.009814961499999997) (0.009885250500000012) (0.009749318000000007) (0.009710240500000009) (0.009802021500000008) (0.009844572499999996) (0.009656078999999998) (0.009677112000000002) (0.009888883500000015) (0.00972278) (0.0098385535) (0.009717812500000006) (0.00976751449999999) (0.009765972999999997) (0.00989183149999999) (0.009766368999999997) (0.009744712499999988) (0.009865770499999996) (0.009949804499999992) (0.009448129) (0.009580401000000002) (0.009344705499999995) (0.00960402049999999) (0.009472398500000007) (0.009750243500000005) (0.009428815499999993) (0.009531877000000008) (0.009811759999999989) (0.009545175500000003) (0.009643895999999999) (0.009434876999999994) (0.009510416500000007) (0.009583082500000006) (0.00954957499999999) (0.009763352499999989) (0.009427560500000015) (0.009450015500000006) (0.009450127500000002) (0.009378858500000004) (0.009486155999999996) (0.009506518500000005) (0.009595649000000012) (0.009557557499999994) (0.009447075000000013) (0.009572516500000003) (0.0094577785) (0.009478693999999996) (0.009630861000000004) (0.009511032500000002) (0.009580033000000002) (0.00947372099999999) (0.009828871000000003) (0.009596210000000008) (0.010327062500000012) (0.009945278499999988) (0.009781909000000005) (0.009791714000000007) (0.0097464055) (0.009734215500000004) (0.009730251500000009) (0.01005125450000001) (0.009737235499999997) (0.0100591805) (0.009753928999999995) (0.009747529000000005) (0.00980303099999999) (0.0100616345) (0.009684459999999992) (0.009884180000000006) (0.009726463000000005) (0.009863603499999998) (0.009757413500000006) (0.00964210850000001) (0.009724945500000012) (0.009728630000000002) (0.009896461999999995) (0.009890959500000004) (0.009994026500000003) (0.009844089) (0.010418614000000007) (0.009821032499999993) (0.009968946000000006) (0.009896427000000013) (0.009493019500000005) (0.009578203000000007) (0.009413778000000012) (0.009430230999999997) (0.009376376500000005) (0.009420724000000005) (0.009689760000000006) (0.009667668000000004) (0.009575395) (0.009501595000000015) (0.009760097999999995) (0.009524494499999994) (0.009793837999999985) (0.009619845000000002) (0.009545414500000002) (0.009502876500000007) (0.009375873499999993) (0.009522658000000003) (0.009513637500000005) (0.00958223100000001) (0.009491210500000014) (0.009608260999999993) (0.009383869500000003) (0.009619453000000014) (0.009421574500000016) (0.009514256499999985) (0.009388283999999997) (0.009646029499999986) (0.009450544500000005) (0.009652701500000013) (0.009539386999999996) (0.0094922115) (0.009728119000000007) (0.009979545500000006) (0.00983806050000001) (0.009768882500000006) (0.009666400500000005) (0.010009020499999993) (0.009792698000000002) (0.010131646499999994) (0.009880399999999998) (0.0098612535) (0.009867699500000007) (0.010111697000000003) (0.009705152999999994) (0.009818672) (0.009904481999999992) (0.009896638999999999) (0.009928560499999989) (0.009636509000000001) (0.009635861999999995) (0.010011265000000005) (0.009849652) (0.010311012499999994) (0.009958172000000001) (0.009751518000000015) (0.009790975000000007) (0.009921462500000006) (0.00974317949999999) (0.009899721) (0.009791506500000005) (0.010002771500000007) (0.010115742999999996) (0.009766474999999997) (0.009452293000000014) (0.00940212850000001) (0.009318973499999994) (0.009452246499999997) (0.009327716500000013) (0.009312223500000008) (0.009363076499999998) (0.00945601) (0.009523353499999998) (0.009400060500000015) (0.009704110999999987) (0.00948711699999999) (0.009523876499999986) (0.009495654999999992) (0.009440332499999995) (0.009499881500000001) (0.009341422499999988) (0.009340011500000009) (0.00937251950000001) (0.009514848500000006) (0.009507303000000009) (0.009438766999999987) (0.009415297000000003) (0.009562076500000002) (0.009555492499999999) (0.009699877999999995) (0.009493605500000002) (0.009528768499999993) (0.00969188) (0.009549325000000011) (0.009864638000000009) (0.009681319499999994) (0.009807627999999985) (0.009810896500000013) (0.009739607499999997) (0.009718928000000002) (0.009780519000000015) (0.009942857999999999) (0.009601485999999992) (0.009740392500000014) (0.009900380500000014) (0.009948081999999997) (0.009872379) (0.009860536499999989) (0.009840660499999987) (0.009849826000000006) (0.009708998999999996) (0.009811505499999998) (0.009937824499999998) (0.009742671499999994) (0.009650995999999995) (0.0096774835) (0.00992546200000001) (0.009728601999999989) (0.00972854799999999) (0.009732343000000004) (0.009862711499999996) (0.009823286499999986) (0.009818298000000017) (0.009865106999999998) (0.009665068999999998) (0.0098508145) (0.009765989000000003) (0.009833765499999994) (0.009496053500000004) (0.009494161500000015) (0.009659108) (0.009452377000000012) (0.009540395000000007) (0.009549279000000022) (0.009629821499999996) (0.009453531999999987) (0.009601052499999985) (0.009582294500000005) (0.009597157500000009) (0.009464191999999996) (0.009405924499999996) (0.010128839999999986) (0.009576718999999997) (0.009616088499999995) (0.009414344499999991) (0.009549644499999996) (0.00944073849999999) (0.00939189850000001) (0.0093100765) (0.009586177000000015) (0.009525821000000004) (0.009544755500000002) (0.0094795045) (0.009495698999999996) (0.009713640499999995) (0.009573002000000011) (0.009721787999999995) (0.009480420000000003) (0.009600259000000014) (0.0095439675) (0.009826204499999991) (0.009923161) (0.009643479999999996) (0.009833562000000004) (0.009709574500000012) (0.009732768999999988) (0.009584060499999991) (0.009757607000000001) (0.009739002999999996) (0.009895496500000003) (0.009887867000000009) (0.009966929999999999) (0.009895250500000008) (0.009741609999999998) (0.01035934949999999) (0.00973296450000001) (0.009817783499999996) (0.009701874999999999) (0.009820671999999989) (0.009807729000000001) (0.0098523145) (0.009932378500000005) (0.009636626999999995) (0.009717253499999995) (0.009960009999999991) (0.00986563800000001) (0.010092208499999991) (0.0100670655) (0.00991633800000001) (0.009866302500000007) (0.009915206999999995) (0.009695501499999995) (0.009338725000000006) (0.009512411000000012) (0.009735449000000007) (0.009636003000000004) (0.009515531500000007) (0.009343491499999995) (0.009323553999999998) (0.009420194499999993) (0.009450059999999996) (0.009588374499999996) (0.009494938500000008) (0.009611741500000007) (0.009738356000000004) (0.009596067499999986) (0.0094596515) (0.009646408499999981) (0.009494980000000014) (0.009645744500000011) (0.009576972500000003) (0.009371599499999994) (0.009686524000000002) (0.009407613999999995) (0.009534644999999994) (0.009639569) (0.009565827999999998) (0.0094584915) (0.009615812000000001) (0.009490773000000008) (0.009465938500000007) (0.009611436999999987) (0.009399856999999998) (0.00960783300000001) (0.009692673999999984) (0.009821902999999993) (0.009855623999999993) (0.009711489000000004) (0.009760085000000016) (0.009839908499999994) (0.009716012999999996) (0.009798583999999985) (0.010012509000000003) (0.009783833499999992) (0.009790822000000005) (0.009750923499999994) (0.009933174499999989) (0.010108145000000013) (0.009743507499999998) (0.009793920999999997) (0.009734496500000009) (0.010092309500000007) (0.009853352499999996) (0.009940002000000003) (0.009785764999999988) (0.009670722000000007) (0.009911905000000013) (0.00975355800000001) (0.009992408499999994) (0.0097440035) (0.009866041500000006) (0.009765464000000001) (0.009944631999999995) (0.009773986500000012) (0.009815628499999993) (0.009706069999999997) (0.009376612500000006) (0.009690127499999993) (0.009625616500000003) (0.009446490999999987) (0.009837193500000008) (0.009568471500000009) (0.009521295000000013) (0.009578391999999991) (0.009624747000000003) (0.009403141500000003) (0.009466060499999984) (0.009505150500000004) (0.009603182499999988) (0.009523001000000003) (0.00951698500000002) (0.009616373000000011) (0.009598121499999987) (0.009573153000000001) (0.009460816999999982) (0.009401376000000003) (0.009470631000000007) (0.009484973500000007) (0.00945497100000002) (0.009584583999999993) (0.009699858999999991) (0.009812410000000008) (0.009458211500000008) (0.009750407500000002) (0.009509047000000007) (0.009590436999999993) (0.009561685500000014) (0.009698037999999992) (0.009615103) (0.009761139499999988) (0.009888560500000004) (0.009756912500000006) (0.009753690999999995) (0.009947567000000004) (0.009748916499999996) (0.009947289500000012) (0.009997886499999997) (0.009953551000000005) (0.010044897999999997) (0.009920419) (0.009878643500000006) (0.009854405499999996) (0.009883644499999997) (0.009778572999999985) (0.009655852500000006) (0.009651446000000008) (0.00974432800000001) (0.009973311000000012) (0.0099305155) (0.00976457700000001) (0.01011635050000001) (0.009896907499999996) (0.00973697400000001) (0.0099169135) (0.00984328100000001) (0.009882858000000008) (0.009942742000000004) (0.009928246000000002) (0.009839516499999992) (0.00992791500000001) (0.009539362499999995) (0.009631352999999995) (0.009639892499999983) (0.009283501999999985) (0.009434217500000008) (0.009281809500000016) (0.00932920100000001) (0.009774319500000003) (0.009473375999999992) (0.009676080000000004) (0.009400809499999996) (0.009439191) (0.0095476335) (0.009583369999999994) (0.009598964000000001) (0.00941545249999999) (0.0093803155) (0.009453785500000006) (0.009406649999999989) (0.009414494499999995) (0.009534776999999994) (0.009413102000000007) (0.009310860000000018) (0.009638466500000012) (0.009492928000000012) (0.009521647999999994) (0.009501505499999993) (0.009793174000000002) (0.009472026999999994) (0.009425530500000001) (0.00943680899999999) (0.009544458500000005) (0.009797095499999992) (0.009717201499999994) (0.009967498499999991) (0.009838892500000002) (0.009719652499999995) (0.00957834049999999) (0.009799867000000004) (0.009635167) (0.00979638549999999) (0.009994174500000008) (0.009710518500000001) (0.009741237499999986) (0.00974764950000001) (0.009792529999999994) (0.010148394500000005) (0.009770306000000006) (0.009947323499999994) (0.009617184999999986) (0.009804847500000005) (0.00987001350000001) (0.009634807000000009) (0.0097233355) (0.009658097500000004) (0.009879880000000008) (0.00976378550000001) (0.009839598500000005) (0.009898258500000007) (0.010039314000000008) (0.011469019999999996) (0.00977024899999998) (0.009834699000000016) (0.009834113999999991) (0.00936408800000002) (0.009482187000000003) (0.009517802500000005) (0.009496937499999997) (0.009544451999999995) (0.00940999599999999) (0.009616268499999997) (0.009539075000000022) (0.009495120999999995) (0.00965385199999999) (0.009553358999999997) (0.009838158499999985) (0.009641151) (0.009760893499999992) (0.009510994999999994) (0.009749486000000002) (0.009470701499999998) (0.009366064500000021) (0.009617213) (0.009507094999999993) (0.009573859000000018) (0.009420724000000005) (0.00951905850000001) (0.009787407999999997) (0.00984848649999999) (0.009600168499999992) (0.009589670499999994) (0.0095042355) (0.009555389500000011) (0.009799406999999996) (0.009525582000000005) (0.009590102999999989) (0.009822566000000005) (0.009894894499999987) (0.009941255999999996) (0.0099003805) (0.009753216499999995) (0.009676457) (0.009717590499999984) (0.009996005499999988) (0.009993548000000005) (0.009834336499999999) (0.009833638499999992) (0.009784500000000002) (0.01002589000000001) (0.009977909500000007) (0.009825908999999994) (0.009804222500000015) (0.009786130500000004) (0.00962370650000001) (0.009763168500000002) (0.009712459499999979) (0.009785774499999997) (0.009696964500000002) (0.009706418999999994) (0.009775501500000006) (0.009823093500000005) (0.009896140999999997) (0.009850271499999994) (0.009863071000000001) (0.009906259499999986) (0.009837221999999993) (0.0097703455) (0.009960037000000005) (0.009608786000000008) (0.009406125999999987) (0.00944242549999999) (0.009605477000000015) (0.009431032500000006) (0.009450095500000005) (0.009579346499999988) (0.009385726999999996) (0.009532722999999993) (0.009370676499999994) (0.009859909500000014) (0.009465202500000006) (0.009580462499999998) (0.009555385) (0.009391159999999996) (0.009407105500000013) (0.009497715000000004) (0.009471598000000012) (0.009441877000000001) (0.009503391) (0.00929419649999999) (0.009467786500000006) (0.009680532999999991) (0.009437193499999996) (0.009573441000000002) (0.009728716499999998) (0.009466199500000008) (0.0095546985) (0.009748405500000001) (0.0094306755) (0.009497631500000006) (0.009497394499999992) (0.00972018799999999) (0.010113086500000007) (0.009837395499999985) (0.009743401999999998) (0.009759746999999985) (0.009764699999999987) (0.009801028500000003) (0.00988783650000001) (0.009811121999999992) (0.010004753500000005) (0.009880318999999985) (0.009924046999999991) (0.009932207999999998) (0.009736399500000006) (0.009946297500000006) (0.010197400999999995) (0.009684723999999992) (0.0097871655) (0.009640284499999999) (0.009845877500000003) (0.00991473050000001) (0.009796915499999989) (0.00967074300000001) (0.00979873199999999) (0.00986121999999999) (0.00977668000000001) (0.009873089500000001) (0.009800324999999985) (0.009741267500000012) (0.009711949000000011) (0.009835746999999992) (0.009876944500000012) (0.009401856) (0.009450981000000011) (0.009563210000000003) (0.009717936499999996) (0.009638267500000006) (0.009448362000000002) (0.009828394000000004) (0.009682980000000008) (0.009471958500000016) (0.009490564500000007) (0.009820610999999993) (0.009547461999999993) (0.009807106999999995) (0.009625358499999986) (0.009696454999999993) (0.009625259999999997) (0.009603986499999995) (0.009392279500000003) (0.009460636999999994) (0.009727416499999988) (0.009353437499999992) (0.009433496500000013) (0.009501759999999998) (0.009471942499999997) (0.009644344499999999) (0.00955707) (0.009512385000000012) (0.009689807000000009) (0.009443802000000015) (0.009847566500000002) (0.009724937500000017) (0.00953242550000001) (0.009771772499999998) (0.010130074000000003) (0.00989603850000001) (0.009870556000000003) (0.009654053499999996) (0.009762226499999999) (0.00963446350000001) (0.009652983500000004) (0.010086403499999994) (0.009798624500000006) (0.009821836) (0.009919377000000007) (0.009900754499999997) (0.009707430500000003) (0.0099963265) (0.009959724500000017) (0.009697600999999986) (0.00976104450000001) (0.009927946500000007) (0.009775828500000014) (0.009919092000000004) (0.009913033499999988) (0.009749387499999998) (0.009761486) (0.009882414000000006) (0.00973429599999999) (0.009828143499999997) (0.009846844499999993) (0.0098748055) (0.009832664500000005) (0.009764758999999998) (0.009742689999999984) (0.009701568500000007) (0.009685945500000001) (0.009447136000000009) (0.009343189000000002) (0.0094465475) (0.0097124985) (0.009590244499999998) (0.009358041500000011) (0.00942519) (0.009555062000000003) (0.009500109000000007) (0.009363440999999986) (0.00964677400000001) (0.009440225499999996) (0.009341443000000005) (0.009746118999999998) (0.009398460999999997) (0.009285387499999992) (0.009313133000000001) (0.009543954000000007) (0.0095352155) (0.009601574500000001) (0.009491044000000018) (0.00937823950000001) (0.009622472000000007) (0.009618739000000001) (0.009825111999999997) (0.009629075000000015) (0.009669362) (0.009683625500000001) (0.00967114799999999) (0.00982967350000001) (0.010054546999999997) (0.009764136500000006) (0.009712801000000007) (0.009737102000000011) (0.009741097500000004) (0.009705094999999997) (0.00975285649999999) (0.009723886000000015) (0.010026813499999995) (0.009701506500000012) (0.009936068500000006) (0.009838622000000005) (0.00991047149999999) (0.009922943999999989) (0.009867056500000013) (0.009854934499999995) (0.009986399499999993) (0.00955729100000001) (0.009762810999999996) (0.00972070350000001) (0.009805941499999998) (0.009722002500000007) (0.009626353500000004) (0.009731612500000014) (0.01000301649999999) (0.009710431500000005) (0.010073151999999988) (0.009864475500000011) (0.00996246449999999) (0.009837383500000019) (0.009753091999999991) (0.009810574000000002) (0.0092674425) (0.009562523500000003) (0.009595179500000009) (0.0092942055) (0.009461629499999999) (0.009666420000000009) (0.009390585000000007) (0.009387995999999996) (0.009469419500000006) (0.009380108500000012) (0.009775503500000005) (0.009406689999999995) (0.009534627000000004) (0.009451782500000006) (0.009431486500000003) (0.009987059000000006) (0.009404333999999986) (0.009297528499999999) (0.009516869000000011) (0.009565532500000015) (0.009501830500000003) (0.009430631999999994) (0.009483322500000002) (0.009303428000000002) (0.009528110500000006) (0.009466374) (0.009900001999999991) (0.009653049999999996) (0.009561170999999993) (0.009452597499999993) (0.009590423) (0.009736731500000012) (0.009780578499999998) (0.009868183000000003) (0.009648664000000001) (0.009687744999999998) (0.009794069500000002) (0.009576905999999996) (0.009880786999999988) (0.009881758500000004) (0.00980863350000001) (0.009717590999999998) (0.009989085999999994) (0.009711814499999999) (0.009791591999999988) (0.0098003485) (0.010121118000000012) (0.009920534999999994) (0.009795361500000002) (0.00970335700000001) (0.009845941999999996) (0.00965218100000001) (0.009728166499999996) (0.009758786500000005) (0.00964879199999999) (0.009733157500000006) (0.0101096185) (0.009884800499999999) (0.00984397599999999) (0.009893645999999992) (0.00970021800000001) (0.01000451649999999) (0.009806645500000002) (0.010089927500000012) (0.009542385000000014) (0.009429729499999998) (0.009591943499999991) (0.009349836499999986) (0.009474523499999998) (0.009587992000000004) (0.009475546000000001) (0.009491241499999983) (0.009618820500000014) (0.009658230500000003) (0.009429108499999991) (0.009567992999999997) (0.009689043999999994) (0.009491125000000003) (0.009580612500000002) (0.00963146799999999) (0.009576991499999993) (0.0094814025) (0.009346574999999996) (0.0094663725) (0.009381551000000002) (0.009325143499999994) (0.009550317500000002) (0.009475025499999998) (0.009489717500000008) (0.00970431749999999) (0.009624385000000013) (0.009473226499999987) (0.0097091245) (0.009504723500000006) (0.009368839500000004) (0.009552324000000001) (0.009857328999999998) (0.009716574499999991) (0.009774731000000009) (0.009670668500000007) (0.010161772999999999) (0.009787347000000002) (0.009841526500000017) (0.00969874250000001) (0.009897235000000018) (0.009929238000000007) (0.009812491000000007) (0.009981727499999996) (0.009828466499999994) (0.009798894000000002) (0.0099882045) (0.009889414) (0.009966616000000011) (0.00962433900000001) (0.010117002500000014) (0.009631935999999994) (0.00981266) (0.009812960999999995) (0.009786607500000002) (0.009912812499999993) (0.00992503850000001) (0.009900211500000006) (0.009825798999999996) (0.010669598500000002) (0.009780579499999997) (0.009937209500000002) (0.009760653500000008) (0.009984157499999993) (0.009599074999999999) (0.00945338100000001) (0.009495600000000007) (0.00948314950000001) (0.009453302499999996) (0.009461005999999994) (0.009632120500000008) (0.009464409999999993) (0.009542778000000002) (0.009874307999999998) (0.009471096999999998) (0.009507596000000007) (0.009622959) (0.00943338099999999) (0.009623972500000008) (0.009566072999999994) (0.009514355500000016) (0.009486453499999992) (0.009524910499999997) (0.009514041500000014) (0.0094727005) (0.009728682500000002) (0.009449957499999995) (0.009612577999999997) (0.00971108200000001) (0.009660478999999986) (0.009815786000000007) (0.009616763) (0.009670513500000005) (0.009764043499999986) (0.009475641000000007) (0.009651179999999995) (0.009968987999999998) (0.009752747999999992) (0.009832055500000006) (0.009826256000000005) (0.009694044499999999) (0.009762252999999999) (0.009808888000000002) (0.009658836000000004) (0.009802257000000009) (0.009807386500000001) (0.0100388805) (0.00986794349999999) (0.009740545000000003) (0.010084564500000004) (0.009760410999999997) (0.009882719499999998) (0.009940538499999999) (0.009880588999999981) (0.009809895499999999) (0.009868210500000002) (0.009804794000000006) (0.009961671500000019) (0.00983168899999999) (0.009997682500000007) (0.009770902999999997) (0.009942158000000006) (0.009714837500000004) (0.010031007500000022) (0.00982313) (0.010068305999999999) (0.00978638150000001) (0.009860044999999998) (0.009405624500000001) (0.00946817350000001) (0.009319446500000009) (0.009452291000000002) (0.009450828499999994) (0.009417981500000006) (0.009409447000000001) (0.009450028999999999) (0.009608560000000002) (0.009456203499999996) (0.009405698500000004) (0.009605151500000006) (0.009554023499999995) (0.009811613499999997) (0.009662642999999985) (0.009544353500000005) (0.009335490000000002) (0.009422754499999991) (0.009526725000000014) (0.00945317250000001) (0.00923006500000001) (0.009222951499999993) (0.009379459500000006) (0.009570683499999996) (0.009282474499999999) (0.009562032499999998) (0.009567044499999997) (0.009548635) (0.009668206499999998) (0.009667713000000008) (0.009503708) (0.009376608999999994) (0.009778550999999996) (0.009758570000000008) (0.009669182499999998) (0.009807250000000003) (0.009690927500000002) (0.00973724799999999) (0.009583128499999996) (0.009651713500000006) (0.0099075795) (0.009881249499999994) (0.0099333635) (0.010100564000000006) (0.009955952500000004) (0.009935846999999984) (0.009826613500000012) (0.009820511000000004) (0.009845491000000012) (0.009718788000000006) (0.009648010999999998) (0.009714814500000002) (0.009745201500000009) (0.009964497000000003) (0.009976686499999998) (0.0097296885) (0.009722192000000004) (0.010071705000000014) (0.009849849999999993) (0.009803064) (0.009969711000000006) (0.009741380500000008) (0.009740158500000012) (0.0100493995) (0.009465809999999991) (0.009370853499999998) (0.009376337499999998) (0.00963378749999999) (0.009386478500000003) (0.009615459500000006) (0.009319329500000001) (0.009661641999999998) (0.0098831095) (0.009590825999999997) (0.009542278500000015) (0.009728546000000005) (0.009669904500000007) (0.009462522000000001) (0.009503018000000002) (0.0096390165) (0.009590972499999989) (0.009395659) (0.009437993499999991) (0.009576730000000006) (0.009551749999999998) (0.009714796499999998) (0.009308182499999998) (0.009514460000000002) (0.0096074825) (0.009605376999999998) (0.009580057000000003) (0.009516631499999997) (0.009387154999999994) (0.009534062999999995) (0.009600709999999998) (0.009433933499999991) (0.009726844499999984) (0.009759489999999996) (0.009696050000000012) (0.009851877500000009) (0.009807096000000001) (0.009729920999999989) (0.009642368000000012) (0.009737999499999997) (0.009785889500000006) (0.00977153850000001) (0.009704437999999996) (0.010001167000000019) (0.009719899000000018) (0.009747381) (0.009988979499999995) (0.009864484500000006) (0.009686599000000004) (0.009755317) (0.0096534915) (0.009725566500000005) (0.00981011100000001) (0.0096835485) (0.009637939999999998) (0.00968431900000001) (0.010259565000000012) (0.010206401500000004) (0.009871607000000004) (0.009924856999999995) (0.010257244999999998) (0.009997303499999999) (0.009892282000000002) (0.009957292499999992) (0.00951513050000001) (0.009414376000000016) (0.009517948499999984) (0.009407133499999998) (0.0096287615) (0.009505927500000011) (0.009473400000000007) (0.009266588999999992) (0.009504308000000003) (0.009567752499999999) (0.009579777499999997) (0.009704072500000008) (0.00957958099999999) (0.009528918999999997) (0.009432071499999986) (0.009595408499999986) (0.009384208000000005) (0.00923119650000001) (0.009717581999999989) (0.009672608) (0.009520937000000007) (0.009579492499999995) (0.009314092499999982) (0.009726219999999994) (0.009806679499999998) (0.00955627349999999) (0.009820496499999998) (0.009584675) (0.009699515500000006) (0.009550141999999998) (0.009627725000000018) (0.009536134499999988) (0.009707867499999995) (0.009813781500000007) (0.00985362699999999) (0.009697779000000004) (0.010063637500000014) (0.009928907) (0.009862935000000003) (0.009712607000000012) (0.009878192999999993) (0.009610168500000016) (0.009996157999999991) (0.009767033500000008) (0.009652474500000022) (0.009919406999999991) (0.009722590499999989) (0.009943739999999993) (0.00971422949999999) (0.00974396000000001) (0.009849058000000022) (0.009803842499999993) (0.009622367999999992) (0.0096856825) (0.00972236750000001) (0.009646255499999992) (0.009885645500000012) (0.010178857000000013) (0.00973940849999999) (0.009860975000000008) (0.00990368350000001) (0.010067448000000007) (0.010053826999999987) (0.009904298999999991) (0.009538143999999998) (0.009447907000000005) (0.00965017800000001) (0.009447473499999998) (0.009618281999999992) (0.009482935499999998) (0.009627702000000002) (0.009388980500000005) (0.009582041) (0.00956025449999999) (0.009564680999999992) (0.0094942675) (0.009594033499999988) (0.009414047000000009) (0.009657230000000017) (0.009620768000000002) (0.009373911500000012) (0.009494201000000008) (0.00957123) (0.009334761499999997) (0.00950672150000001) (0.009626076000000011) (0.009417002499999994) (0.009599559500000007) (0.009375280000000014) (0.009734296000000003) (0.009529906000000005) (0.009431888000000013) (0.009749207999999995) (0.0096352475) (0.009570775500000003) (0.009757763500000002) (0.00956565899999999) (0.0098914415) (0.009808229500000001) (0.009695120500000001) (0.010123850500000003) (0.0098253175) (0.009836018000000002) (0.00991647250000001) (0.009757721999999996) (0.009800744) (0.010056457000000005) (0.009864154999999986) (0.009854734000000004) (0.009810734500000001) (0.009883116499999997) (0.00992000500000001) (0.010059886000000004) (0.009659073500000004) (0.009839254999999991) (0.009811519000000005) (0.010225631999999998) (0.009876618000000004) (0.009882109) (0.009974808000000002) (0.009885480499999988) (0.010064953000000001) (0.009706605999999993) (0.009832913499999998) (0.009909468000000005) (0.009935838999999988) (0.009708213999999993) (0.010125611000000007) (0.009378600500000014) (0.009305084500000005) (0.009437477500000013) (0.009234166500000016) (0.009546106500000012) (0.009361220000000017) (0.009353934000000008) (0.009622870000000006) (0.009612120500000002) (0.009340348000000012) (0.009436223000000007) (0.009600033000000008) (0.009677431499999986) (0.009489527999999997) (0.009635050000000006) (0.009528148000000014) (0.009720123499999997) (0.009296872000000012) (0.009616463500000005) (0.009283030999999997) (0.009525690500000003) (0.009734915499999997) (0.009583166000000004) (0.009470808000000011) (0.009813991499999994) (0.009677310000000008) (0.009544677000000015) (0.009856629999999991) (0.009845367000000008) (0.009841238500000002) (0.009475600500000014) (0.009704999999999991) (0.009628367000000013) (0.009892898499999997) (0.009999018499999998) (0.00987772399999999) (0.009839936499999993) (0.009639379500000003) (0.010147365999999991) (0.009809188999999996) (0.009951582) (0.009812873500000013) (0.009833266000000007) (0.009727822000000011) (0.010078537999999984) (0.009830415500000009) (0.009807143500000004) (0.009859227499999998) (0.009729683500000003) (0.009607071000000009) (0.009693234000000009) (0.009784585499999998) (0.00976487999999999) (0.009930199) (0.00961558450000001) (0.009908212999999999) (0.009882238999999987) (0.01000008799999999) (0.009879849499999996) (0.009849674500000002) (0.009966868000000004) (0.009822564999999991) (0.009760230500000008) (0.009759205499999993) (0.009460205999999999) (0.009386149999999996) (0.009354704499999991) (0.009523264000000017) (0.009276159500000006) (0.009335417999999998) (0.009522210499999989) (0.00960320399999999) (0.009448978999999996) (0.009593543999999996) (0.009526296500000003) (0.009391978499999995) (0.009564869000000004) (0.009517701500000017) (0.009556705499999985) (0.009584678499999999) (0.009420163999999995) (0.009371437999999996) (0.009618780999999993) (0.009367013999999993) (0.00953949150000001) (0.009550414999999993) (0.00960511850000001) (0.009341672499999995) (0.009488208499999998) (0.009601461500000005) (0.009476311000000001) (0.009595732999999995) (0.0095058175) (0.009587835000000003) (0.009544649500000002) (0.009483543499999997) (0.009751858499999988) (0.009651868999999993) (0.009758766500000016) (0.009677047499999994) (0.009765432500000004) (0.009974652) (0.009719988500000012) (0.009833875999999991) (0.010003753000000004) (0.009918889999999986) (0.0098925765) (0.009907158499999999) (0.009897628999999991) (0.0103267405) (0.009753681) (0.009963709500000001) (0.009714030500000012) (0.010009403) (0.009621015999999982) (0.009817233999999994) (0.009870564999999984) (0.010044957000000007) (0.009845888000000011) (0.009823436000000005) (0.009894524500000015) (0.009679234499999995) (0.0097467465) (0.009843471500000006) (0.009713168499999994) (0.010050760500000006) (0.009764429500000019) (0.009703228499999994) (0.009426488999999996) (0.009698337500000001) (0.009460494000000014) (0.009433366000000012) (0.009660417000000004) (0.009559880000000007) (0.009596625500000011) (0.009357023500000006) (0.009577344000000002) (0.00941070749999999) (0.009462308500000002) (0.009661049000000005) (0.009467798999999999) (0.009593134000000003) (0.009647234500000004) (0.009655548500000014) (0.009460009999999991) (0.009489035500000007) (0.009671465000000004) (0.009664843499999992) (0.009496421500000005) (0.00928904550000001) (0.009404501999999995) (0.009598775500000004) (0.009479174499999993) (0.009499784000000011) (0.009838945500000001) (0.009489763999999998) (0.009806436999999987) (0.009669163499999994) (0.009445011500000003) (0.009490758000000002) (0.009790777499999986) (0.009904168500000005) (0.009862621500000002) (0.009979041000000008) (0.00989300550000001) (0.010070719999999991) (0.009613603499999998) (0.009780360500000002) (0.010179715500000006) (0.00980218849999999) (0.009854599500000005) (0.009759536499999999) (0.010139532499999993) (0.009762658500000007) (0.01002125999999999) (0.009969191500000016) (0.009736713499999994) (0.009715162999999999) (0.009614437500000003) (0.009763083500000005) (0.009752735999999998) (0.009591390499999991) (0.0099752595) (0.00967113700000001) (0.010048622499999993) (0.010213238500000013) (0.009684574000000001) (0.010053429000000003) (0.0097570295) (0.009976110999999982) (0.009836281999999988) (0.0100305475) (0.009373332499999998) (0.009662937999999996) (0.009628677000000002) (0.009652847000000006) (0.009525851500000002) (0.009413926499999989) (0.009462132999999998) (0.009427472500000006) (0.009975808000000003) (0.009594951000000004) (0.009824050500000014) (0.009800904) (0.0097534425) (0.00977402749999999) (0.009597290499999994) (0.009446157999999996) (0.009562071500000005) (0.009457024500000008) (0.009472345500000007) (0.009465150000000006) (0.009565636999999988) (0.009574519500000003) (0.00939962350000001) (0.009457529499999978) (0.0097156085) (0.009540583000000005) (0.009502742499999994) (0.009544589000000006) (0.00952338200000001) (0.009778592000000003) (0.009581235999999993) (0.009477886500000005) (0.00968919800000001) (0.010098344500000009) (0.010147047000000006) (0.00974556) (0.009684242499999995) (0.009679212999999992) (0.009921994500000003) (0.009772208000000004) (0.009997252000000012) (0.009959041000000016) (0.009802191000000002) (0.010043055499999995) (0.009865104999999999) (0.009898878) (0.009802789500000006) (0.01000362299999999) (0.00984126149999999) (0.009845778) (0.009851021500000001) (0.009966186999999987) (0.009916072499999998) (0.009730044999999993) (0.009771436999999994) (0.009975373999999995) (0.009753967000000002) (0.009883475500000002) (0.009962802500000006) (0.009811896000000014) (0.009835348000000008) (0.009832701999999999) (0.010039965999999984) (0.009863367499999984) (0.009362840999999997) (0.009402500999999994) (0.009557394499999997) (0.009397726500000009) (0.009329493500000008) (0.009479629000000017) (0.009522054000000002) (0.009652912999999999) (0.0095940885) (0.009750944999999997) (0.009547507499999996) (0.009388200999999999) (0.009695714999999994) (0.009455825999999987) (0.009602069000000005) (0.009388004499999991) (0.009343749999999998) (0.00932160750000001) (0.009751303499999989) (0.009357089499999999) (0.00941552100000001) (0.009480916499999992) (0.00924386349999999) (0.009377030999999994) (0.009458244500000004) (0.009521359499999993) (0.009728788000000002) (0.009424910499999994) (0.009584312999999997) (0.009511496999999994) (0.009476936500000005) (0.0096248565) (0.009539340500000007) (0.009934639499999995) (0.010043192499999992) (0.009730786500000005) (0.009852686999999999) (0.009709513000000003) (0.009820573500000013) (0.0096206925) (0.009840784000000005) (0.009851838000000002) (0.009885933500000013) (0.009780666999999993) (0.009756478499999999) (0.009954162000000003) (0.009741897500000013) (0.00999626449999999) (0.009668587500000006) (0.0099542185) (0.009830851000000002) (0.009628811000000001) (0.009814581000000003) (0.009736041999999986) (0.009629268499999996) (0.009778039000000002) (0.009857875000000002) (0.010074756000000004) (0.009841141999999997) (0.009930802500000016) (0.009902375000000005) (0.009792257500000012) (0.009871549999999993) (0.009982824500000001) (0.009340482999999997) (0.009401044999999997) (0.009349907500000004) (0.009588379500000008) (0.009389303500000001) (0.009496691500000001) (0.009518003000000011) (0.009314463499999995) (0.009650243500000003) (0.009487260999999997) (0.009634083500000001) (0.009436709000000001) (0.009493031500000013) (0.0095137775) (0.009637728999999998) (0.00946851) (0.009388494499999997) (0.009534139499999997) (0.009600427999999994) (0.009460786500000012) (0.009338158499999999) (0.009470397500000019) (0.009519259500000002) (0.009498000499999992) (0.009537331499999996) (0.009667055500000007) (0.009388790000000008) (0.0099357105) (0.009680561000000004) (0.009476329999999991) (0.009505876499999996) (0.009683761999999999) (0.009779958000000005) (0.009585611500000008) (0.009653343499999995) (0.00982221500000001) (0.009933728000000017) (0.009906593500000005) (0.009707426999999977) (0.0097592165) (0.0098710095) (0.009753645499999991) (0.009746377) (0.009898145999999997) (0.00972481850000001) (0.009733676999999996) (0.009713615000000009) (0.009782964500000005) (0.009824030500000011) (0.009668743999999993) (0.009969435999999984) (0.009600447999999998) (0.009893530499999997) (0.009847044500000013) (0.009665976999999992) (0.009829753499999996) (0.009843497499999992) (0.009931087500000005) (0.009822931000000007) (0.009799084999999999) (0.009670485499999992) (0.00988088600000002) (0.009804382) (0.010027534500000004) (0.009391099000000014) (0.009374198999999986) (0.009298621000000007) (0.009441185500000004) (0.009520029) (0.009325920000000015) (0.009363878999999992) (0.009420084499999995) (0.009613559999999993) (0.009545145000000005) (0.009627002499999995) (0.009622977000000005) (0.00942426099999999) (0.009631601000000004) (0.009457624999999997) (0.009701935500000008) (0.009592536499999998) (0.009562822499999998) (0.009458347999999991) (0.009505038500000007) (0.009651093) (0.009480468500000006) (0.009389202499999999) (0.009335999500000011) (0.009666446000000009) (0.00964326750000001) (0.009565995000000008) (0.00951436800000001) (0.00955396750000001) (0.009743287500000003) (0.009477908999999993) (0.009810376499999995) (0.00972144400000001) (0.009891412000000002) (0.009625357000000015) (0.009826776999999995) (0.009866004499999984) (0.009865133499999998) (0.009607011999999984) (0.009965875999999999) (0.009753811999999987) (0.009885518999999995) (0.009802215500000017) (0.009689712000000003) (0.009931936500000002) (0.010009136000000002) (0.00981486749999999) (0.009855922000000003) (0.00967817850000001) (0.009760829999999998) (0.009743761500000003) (0.009760098000000009) (0.009763190500000005) (0.009899663500000003) (0.009629078499999985) (0.009766250000000004) (0.009790302) (0.009704894000000006) (0.0098040415) (0.009955588000000001) (0.009776219500000016) (0.009872124999999995) (0.009879616999999993) (0.009775605500000006) (0.009740064999999992) (0.009556424999999993) (0.009469700000000011) (0.009471191500000004) (0.009786896500000003) (0.009551911999999996) (0.00955268649999999) (0.009483093499999998) (0.009608370000000005) (0.009466674499999994) (0.00958990400000001) (0.009601145999999991) (0.00966930349999999) (0.009733189500000003) (0.00958269149999999) (0.009593045499999994) (0.009639706499999998) (0.009658434500000007) (0.009451761000000017) (0.009459211999999995) (0.009450097500000004) (0.009359168000000001) (0.0093421115) (0.009650632000000006) (0.009616728000000005) (0.009534831000000007) (0.009595987) (0.009712178499999988) (0.009592079000000003) (0.009820514500000002) (0.009448641500000007) (0.0095492415) (0.00987795499999998) (0.009727007999999995) (0.010003595000000018) (0.009908065000000008) (0.009801632500000004) (0.009675107500000016) (0.009652143500000002) (0.009896238000000002) (0.0097701345) (0.009968178500000008) (0.0101205605) (0.009967279999999995) (0.009746025000000005) (0.009864762000000013) (0.009950473500000001) (0.010115205500000002) (0.009730674500000008) (0.00974713549999999) (0.009672663499999998) (0.009700026500000014) (0.009912296000000001) (0.009742163499999998) (0.009839640499999996) (0.009856825499999985) (0.00969334999999999) (0.009901825999999989) (0.0096915365) (0.010087033000000009) (0.010247000500000006) (0.009984111500000004) (0.010001142000000005) (0.00981187650000001) (0.009346872500000006) (0.009329244499999986) (0.009364559500000008) (0.009495090999999983) (0.009371990999999996) (0.009380342499999986) (0.009446472500000011) (0.009498592) (0.009384875) (0.009562660500000014) (0.009383161000000001) (0.009669729500000016) (0.00980785499999999) (0.009422797499999996) (0.009636747000000001) (0.009487326500000004) (0.00953704950000002) (0.009638351000000003) (0.009553305999999998) (0.009237750500000017) (0.009514818999999994) (0.009487926499999993) (0.009341737499999989) (0.00961580350000002) (0.009694910000000001) (0.009504326499999993) (0.00960050300000001) (0.009629535000000009) (0.009724095500000002) (0.009635599999999994) (0.00945494600000002) (0.009482144499999998) (0.0098159045) (0.010381814000000003) (0.009784003) (0.009727352999999994) (0.009826395500000001) (0.009552162500000003) (0.009814696499999997) (0.009903173000000001) (0.009807634499999995) (0.009844269499999989) (0.00978440600000001) (0.009789756999999996) (0.009803854) (0.00990434400000001) (0.00965730749999999) (0.009880431999999995) (0.009785457999999997) (0.009717855999999997) (0.0097543665) (0.009538504500000017) (0.00979123200000001) (0.010113595000000017) (0.009915441999999983) (0.009893658500000013) (0.009867584999999998) (0.009805845000000007) (0.009877561000000007) (0.009912521000000007) (0.009787230499999994) (0.009810053000000013) (0.009820928000000007) (0.009944699000000001) (0.009508477000000015) (0.009443828000000001) (0.00953617800000002) (0.009378807000000003) (0.009582129499999995) (0.009585827499999991) (0.009486057500000006) (0.00931913849999999) (0.009535027000000001) (0.009488482500000006) (0.009477538499999993) (0.00947626900000001) (0.009653000999999994) (0.009705963500000012) (0.00947504099999999) (0.009438951000000001) (0.009516660999999996) (0.009535431999999996) (0.009683228499999988) (0.009626100999999998) (0.009506594500000007) (0.009613896499999983) (0.009298127000000003) (0.009354764000000002) (0.009554499000000008) (0.009677508999999987) (0.009649201999999996) (0.009624190000000005) (0.009361448000000008) (0.00953472100000001) (0.009621012499999998) (0.009591579500000003) (0.009797296499999997) (0.01037139649999999) (0.009825713) (0.009950767) (0.009840216499999999) (0.009878827500000006) (0.009832504000000006) (0.009708472499999996) (0.009831450000000005) (0.009910226499999994) (0.010157882999999993) (0.009843485499999999) (0.009788424000000004) (0.009746185000000004) (0.010125149499999986) (0.009893527) (0.010056411500000001) (0.009700987499999994) (0.010011188000000004) (0.00971278049999999) (0.009690315000000005) (0.009882938500000008) (0.009896252000000008) (0.009856667000000013) (0.009659624499999991) (0.009757089499999996) (0.010022338500000005) (0.009774562500000014) (0.009966571999999993) (0.009844718499999988) (0.009700348499999997) (0.009897114499999998) (0.009653490500000014) (0.009409808500000005) (0.009512359500000012) (0.009378032000000008) (0.00955478650000001) (0.009456060500000002) (0.00936411799999999) (0.009621025500000005) (0.009521954999999999) (0.009435641500000008) (0.009554182500000008) (0.009538999499999992) (0.009462973000000013) (0.009481812000000006) (0.00961588749999999) (0.009548635999999985) (0.014239582) (0.009693855500000001) (0.009193417999999995) (0.009492434999999994) (0.009589762500000001) (0.009342086000000013) (0.009489682499999999) (0.0093431405) (0.009627281000000001) (0.0097747995) (0.009510960999999998) (0.009497415500000009) (0.009666656499999995) (0.009773981000000001) (0.009664307999999996) (0.009405701500000002) (0.009948613500000009) (0.00974280750000002) (0.009639747500000004) (0.009803180500000008) (0.009760607000000004) (0.009732733000000007) (0.009716313500000004) (0.009810415499999989) (0.0098902035) (0.010022782500000008) (0.009924948500000003) (0.01015627949999999) (0.009869673499999995) (0.009890445499999997) (0.00985333549999999) (0.009843963499999997) (0.009580125499999995) (0.009716331000000009) (0.0096122275) (0.009702966999999993) (0.009706416999999995) (0.009680884500000014) (0.009600330500000004) (0.00976315450000001) (0.009691376000000002) (0.00966748299999999) (0.009898069499999981) (0.009855465000000008) (0.00994470950000001) (0.009816585000000003) (0.010109141000000002) (0.009845132999999992) (0.009591066499999995) (0.009555282500000012) (0.009539806999999983) (0.009288380499999999) (0.009484143) (0.00956734799999999) (0.009509862999999993) (0.00943712599999999) (0.009609076499999994) (0.009635289500000005) (0.0096767975) (0.00958121499999999) (0.009611029000000007) (0.009346378500000002) (0.009557859000000016) (0.009444448000000008) (0.009472031000000006) (0.009459566000000003) (0.00936479450000001) (0.009464352499999995) (0.009432033000000006) (0.009475347499999995) (0.009427139000000001) (0.009589187499999999) (0.009579918999999992) (0.009528604499999996) (0.009425526500000003) (0.00962283600000001) (0.009441137000000002) (0.00950185549999999) (0.009613777000000004) (0.009579909999999983) (0.009674455000000012) (0.009846901000000005) (0.0099069705) (0.009921500000000014) (0.0099200215) (0.009986629499999997) (0.009715043500000006) (0.009736931000000004) (0.009859528499999992) (0.009909452) (0.009727925000000012) (0.009793294000000008) (0.009911984499999998) (0.009834044) (0.009903441499999999) (0.009859253999999998) (0.009732776499999998) (0.009745570000000009) (0.00976550100000001) (0.0098454615) (0.01014459049999998) (0.009813265000000015) (0.0099341535) (0.009649416500000008) (0.009795332500000004) (0.00992737099999999) (0.009827833999999994) (0.009677763499999992) (0.010032662000000012) (0.009714343) (0.009827898500000001) (0.009731953500000001) (0.009593757500000008) (0.009522145999999995) (0.009465889499999991) (0.00925605950000001) (0.009403933499999989) (0.009569761999999996) (0.009500888499999999) (0.009476431999999993) (0.009666690999999991) (0.009524496000000007) (0.009404115000000005) (0.009504853000000008) (0.00957848650000001) (0.009312995500000004) (0.009378115499999992) (0.009444126999999997) (0.009490350499999994) (0.009393455500000009) (0.009359220000000001) (0.009396790500000002) (0.00936658600000001) (0.009445381000000003) (0.009358278499999997) (0.009305928000000005) (0.009497217000000002) (0.009536465499999994) (0.009551650500000008) (0.009569082500000006) (0.00948512650000001) (0.009560567000000006) (0.009516550999999998) (0.009505782000000018) (0.009666109000000006) (0.009530754500000002) (0.009789917500000009) (0.009712820999999983) (0.009934587499999994) (0.00972935250000001) (0.009655723000000005) (0.009717291000000003) (0.009743891000000005) (0.009730748499999997) (0.010075286499999989) (0.009887183000000008) (0.010060988500000007) (0.010055406500000003) (0.00988691849999998) (0.009830745000000002) (0.009589848499999998) (0.009804056000000005) (0.009631536999999996) (0.009491067500000006) (0.009729849499999998) (0.010030130499999998) (0.009660441000000006) (0.009625318499999994) (0.010016208499999998) (0.009769634) (0.009677343000000005) (0.009886355) (0.009803507500000003) (0.009842532000000001) (0.009874235999999995) (0.009890008000000006) (0.009565774999999999) (0.009559302000000006) (0.00949989200000001) (0.010009888999999994) (0.009543763499999983) (0.009447471499999999) (0.009366332500000005) (0.009545870999999997) (0.009507206000000004) (0.009534729500000005) (0.009556352000000004) (0.0096434735) (0.009537005500000001) (0.009525129000000007) (0.00966546850000001) (0.0096104345) (0.009713263) (0.009378518000000016) (0.009645892000000003) (0.00939163400000001) (0.009387500000000007) (0.009405637000000008) (0.009532520000000003) (0.009292015499999987) (0.009718091499999984) (0.0096590005) (0.009765953499999994) (0.009581768000000004) (0.009907567000000006) (0.009601750499999992) (0.009506794999999998) (0.009648379999999984) (0.010098788499999997) (0.009627491500000002) (0.009555079500000008) (0.009834408500000003) (0.010092936999999982) (0.009644560999999996) (0.009652711499999994) (0.009694855499999988) (0.009891359500000002) (0.010123572500000011) (0.009724630000000012) (0.009707377500000017) (0.009776302000000014) (0.0099814305) (0.009750638499999992) (0.009866647500000006) (0.009791409000000001) (0.009708701499999986) (0.009595540000000014) (0.009586330000000004) (0.010002326499999992) (0.00972554199999999) (0.009946913500000001) (0.009851224500000005) (0.010140937000000003) (0.009856961000000011) (0.009754244000000009) (0.009781446) (0.009981779999999996) (0.010002867500000012) (0.009930435500000001) (0.009773704500000008) (0.009407481499999995) (0.009309606499999998) (0.009362072499999999) (0.009580918999999993) (0.009620787500000005) (0.009589091499999994) (0.009450531499999998) (0.009453598500000007) (0.009525464499999997) (0.009431659000000009) (0.009803646999999999) (0.009435803000000006) (0.009618471500000003) (0.009519497999999987) (0.009503748500000006) (0.009782561999999995) (0.009455415999999994) (0.009780430499999992) (0.009506705500000004) (0.009475423499999996) (0.00963551800000001) (0.009531329000000005) (0.009591907499999996) (0.009443534000000003) (0.00950753800000001) (0.009664578499999993) (0.009826842500000002) (0.009628221000000006) (0.009519493500000004) (0.00945194449999999) (0.00952452799999999) (0.0095184195) (0.009736816500000009) (0.010023784500000008) (0.009881049500000003) (0.009811014999999992) (0.0096957815) (0.009865223499999992) (0.009942011) (0.009895986499999995) (0.009802514500000012) (0.009860672000000015) (0.014645814999999979) (0.009715551000000003) (0.009737331499999988) (0.009640032500000006) (0.010066061500000001) (0.009954693) (0.009769190499999997) (0.009804275000000001) (0.009651953500000005) (0.009844036499999986) (0.009781724999999991) (0.009893998000000001) (0.00972848350000001) (0.009775472000000007) (0.009777989000000015) (0.009832213499999992) (0.009785638999999999) (0.009817335999999996) (0.009740590000000007) (0.009887228500000012) (0.010013435000000015) (0.009801932999999985) (0.009601210499999999) (0.009534288499999988) (0.009476317499999998) (0.009534568999999993) (0.009398651499999994) (0.009497104000000006) (0.009464771499999997) (0.009479848999999999) (0.009522417500000005) (0.009601680000000001) (0.00980620850000001) (0.009554820500000005) (0.009455874000000003) (0.009403707999999997) (0.009741425499999998) (0.009536521500000006) (0.00940515950000001) (0.009513686500000007) (0.009766521999999986) (0.009497250499999998) (0.009413413999999995) (0.009467245000000013) (0.00959935499999999) (0.009443400500000004) (0.009597047500000011) (0.009680867999999995) (0.009578411500000009) (0.009467930000000013) (0.009808941500000001) (0.009747824000000002) (0.009408386500000004) (0.009534135) (0.00973437449999999) (0.009979510499999997) (0.009795192500000008) (0.009813543999999993) (0.009891801000000006) (0.009707992499999998) (0.009812375000000012) (0.009710463000000016) (0.0098447225) (0.009972895999999995) (0.009710487000000004) (0.00990663) (0.009910297999999998) (0.010003926999999996) (0.009836036000000006) (0.009850378499999993) (0.0096216135) (0.009833421499999995) (0.010031789999999999) (0.009773247499999999) (0.009769914000000005) (0.009746541999999997) (0.009851709500000014) (0.009646395999999988) (0.009929575999999996) (0.009929711000000008) (0.010289886500000012) (0.01046847749999999) (0.009941332999999997) (0.01063607300000001) (0.009783691000000011) (0.01014359799999999) (0.009566375499999988) (0.009508920000000004) (0.009420103999999999) (0.009268069000000004) (0.009700417000000003) (0.009337255500000002) (0.009375231000000012) (0.009640283) (0.009494862500000006) (0.009381123000000019) (0.009512210499999993) (0.009661601000000006) (0.009461162500000009) (0.009477521000000003) (0.009720375000000017) (0.00941524249999999) (0.009459495499999998) (0.00948035500000001) (0.00956071900000001) (0.009407568500000005) (0.009342703000000008) (0.009512213500000005) (0.009371077000000005) (0.009440021499999993) (0.00979861500000001) (0.009843179999999993) (0.009518027499999998) (0.009654617500000004) (0.009534203500000005) (0.009592432499999998) (0.009958042499999986) (0.009461039500000018) (0.009851212000000012) (0.009750479000000006) (0.009681216500000006) (0.009905467000000001) (0.009836178000000001) (0.009879291000000012) (0.009649864000000008) (0.009760576500000007) (0.00991611399999999) (0.00977844700000001) (0.009800265000000002) (0.009730529500000001) (0.009930458000000003) (0.010036056500000015) (0.009838606) (0.00980864699999999) (0.009857736500000006) (0.009674533999999999) (0.009910754500000007) (0.0098769155) (0.00974472350000001) (0.009802696) (0.009946481500000007) (0.009729617999999995) (0.009680593000000001) (0.009863815000000012) (0.010017666499999994) (0.009855847000000001) (0.009742727999999992) (0.0099670845) (0.009911758999999992) (0.0105836505) (0.009424605000000003) (0.009433582499999996) (0.009445987000000003) (0.009510219) (0.009595396499999992) (0.009548608500000014) (0.0095292835) (0.009356572999999993) (0.009795692499999994) (0.009576025500000002) (0.009531141999999992) (0.009556307) (0.009633271499999999) (0.009900888999999996) (0.009409169000000009) (0.009585666999999992) (0.009541801000000003) (0.009468564499999998) (0.009386443500000008) (0.009637596000000012) (0.009820339499999997) (0.009367041999999992) (0.009422383500000006) (0.009440598499999994) (0.009672942000000004) (0.009590500500000015) (0.009533692999999982) (0.009555237500000008) (0.009489379500000006) (0.009732997499999993) (0.009714469000000003) (0.00947099400000001) (0.009770349499999997) (0.00985277050000001) (0.009915355) (0.009919343999999997) (0.009633176499999993) (0.009773460499999997) (0.009707847999999991) (0.010142715999999982) (0.009872852000000001) (0.009678823500000003) (0.009784515500000007) (0.009676982) (0.009707303500000014) (0.009685425500000011) (0.00993935500000001) (0.009795684500000013) (0.009638360000000012) (0.009976434499999992) (0.00982232949999999) (0.009846011000000002) (0.00980678900000001) (0.009556318499999994) (0.009837820499999997) (0.009812416500000004) (0.010210081999999995) (0.009799019999999992) (0.00989815949999999) (0.010123875500000004) (0.009794961500000005) (0.009755563500000008) (0.00996187150000001) (0.0100603685) (0.009288262500000005) (0.00963209299999998) (0.009393072999999988) (0.009437316500000001) (0.009666013999999987) (0.009364188999999995) (0.009432024999999997) (0.009477149000000004) (0.009546004499999997) (0.00949504000000001) (0.009550606500000003) (0.00979149750000001) (0.00946193649999999) (0.009589612499999997) (0.009541908500000001) (0.009421027499999998) (0.009414567000000013) (0.009514098999999984) (0.009587260000000014) (0.0094457825) (0.009629166500000022) (0.009712380499999992) (0.009432826500000005) (0.0093513935) (0.009705488500000012) (0.009652159000000007) (0.009644628000000002) (0.009657557499999997) (0.009662715500000002) (0.009563763499999989) (0.009402483000000003) (0.009454570500000009) (0.009790820000000006) (0.009937254000000006) (0.009753611999999995) (0.009710257) (0.009741453000000011) (0.009635223999999998) (0.009682413) (0.009930862499999998) (0.009862321500000007) (0.009677914499999996) (0.009782188999999997) (0.010039832999999998) (0.009788064000000013) (0.009760216000000002) (0.00988251100000001) (0.009922168499999995) (0.009710485000000005) (0.00965944399999999) (0.009752190000000008) (0.00979876049999999) (0.009665906500000002) (0.009945487499999989) (0.009829687500000017) (0.009912640999999986) (0.009857523499999993) (0.009730051500000003) (0.010120807999999995) (0.009846029000000006) (0.009968022000000007) (0.009796865499999988) (0.0098056495) (0.009692498500000007) (0.009494307499999993) (0.009477457999999994) (0.009466867000000018) (0.009543341999999996) (0.009495635000000002) (0.010037312500000006) (0.009785333000000007) (0.009414306999999997) (0.009574961999999992) (0.009847746000000004) (0.009568704499999997) (0.009591790000000003) (0.010309233000000001) (0.009768062999999994) (0.009664130500000007) (0.009670287) (0.009616945000000002) (0.009380068500000005) (0.009529306500000001) (0.009458977499999993) (0.009570270499999992) (0.009354808499999992) (0.009586222500000005) (0.009418188500000008) (0.0094293025) (0.009686161500000012) (0.009701893000000003) (0.009706024500000007) (0.009860402000000004) (0.00962988699999999) (0.009717414499999993) (0.009700120999999992) (0.009716195499999997) (0.009742777499999994) (0.00991420400000001) (0.009767011000000006) (0.009580837499999995) (0.009733909499999999) (0.009882149000000007) (0.009776214000000005) (0.009816604500000006) (0.009834398500000022) (0.009935964999999991) (0.0099165415) (0.009888237499999994) (0.009865093999999991) (0.009909543500000006) (0.00996104149999999) (0.009821654999999999) (0.009788237499999991) (0.009823675500000004) (0.009932473499999997) (0.009754653500000002) (0.0100664315) (0.009834212000000009) (0.009767904499999994) (0.009889651999999999) (0.009769447999999986) (0.009903163000000006) (0.010054480500000004) (0.009897417500000005) (0.009945433999999989) (0.00977172250000001) (0.010020471999999989) (0.00948410700000002) (0.009362290999999981) (0.009303060500000002) (0.009594012500000013) (0.009475333499999988) (0.009333576999999982) (0.009346600499999996) (0.009394204500000003) (0.009630872499999998) (0.009465348499999998) (0.009576692999999983) (0.009483440499999995) (0.009810566500000006) (0.009812112499999998) (0.00962047000000002) (0.009562965999999992) (0.009397632499999989) (0.009325573000000004) (0.009362536000000005) (0.0095393525) (0.009580453000000017) (0.009523601999999992) (0.009483094499999997) (0.0095934035) (0.009573773000000008) (0.009622566500000013) (0.009532140499999994) (0.0096620335) (0.00970355099999999) (0.009391577000000012) (0.009464249500000008) (0.009536659000000017) (0.009784665500000012) (0.009642152000000001) (0.009646556000000014) (0.009787481500000014) (0.010022615999999998) (0.009777670500000016) (0.00975838150000001) (0.00968566500000001) (0.009689943000000006) (0.00969694800000001) (0.0098562965) (0.009773047000000007) (0.009750210999999995) (0.0099297775) (0.009993103000000003) (0.009886969499999981) (0.009954974499999991) (0.009896210500000002) (0.009800977500000002) (0.009706808999999997) (0.009734551500000008) (0.009801932500000013) (0.010041048499999997) (0.009854622500000021) (0.009818322000000004) (0.009906706000000015) (0.010016650500000002) (0.010004913000000004) (0.009906092000000005) (0.009979279999999993) (0.009885381499999998) (0.009979601500000004) (0.009731915499999994) (0.009426212500000003) (0.00955055049999999) (0.009511776500000013) (0.009374350500000003) (0.009547037499999994) (0.009546369499999999) (0.009425706500000006) (0.009488927499999994) (0.009686686) (0.009760839000000007) (0.009453067499999995) (0.009512708000000009) (0.009443524499999995) (0.009594040499999998) (0.009851777500000006) (0.009484522999999995) (0.009436522499999989) (0.009465193999999996) (0.00937669599999999) (0.009325498000000002) (0.009372881) (0.009422084499999997) (0.009359412000000011) (0.009550363999999992) (0.009674299499999997) (0.009632693499999997) (0.009506611499999998) (0.009537043000000009) (0.009463680000000002) (0.009467004000000001) (0.009601705500000002) (0.009703634500000002) (0.00970406900000001) (0.009809246999999993) (0.009870602499999992) (0.009845837499999996) (0.009839065999999994) (0.010036967000000008) (0.010000667000000019) (0.009841306999999994) (0.009767880500000006) (0.009863391999999999) (0.009964145500000007) (0.009813305999999994) (0.009685981499999996) (0.009943171) (0.009843881000000013) (0.00976602650000001) (0.009681150000000013) (0.010021045000000006) (0.009759453500000001) (0.010050985999999998) (0.009781092500000005) (0.009703499000000004) (0.009742187499999999) (0.009909552000000016) (0.010005281500000004) (0.009959307499999986) (0.009811946999999988) (0.009921624500000004) (0.009889054999999994) (0.009872273) (0.009696514500000003) (0.009594486999999999) (0.0094551135) (0.009598196999999989) (0.009512383999999999) (0.0094905235) (0.009401366999999994) (0.00945676799999999) (0.0095328675) (0.009638951500000006) (0.009553059500000002) (0.009732690500000002) (0.009510221499999985) (0.0095537765) (0.009553391000000008) (0.009871006500000001) (0.009548389500000004) (0.009417362499999998) (0.009509291500000003) (0.009547277999999992) (0.009673067499999993) (0.009314650499999994) (0.009485410500000013) (0.009539450500000005) (0.009527576999999995) (0.00954634750000001) (0.009444504000000006) (0.00966234299999999) (0.009902563500000003) (0.009594138000000002) (0.009560389000000016) (0.009566272000000015) (0.009723994) (0.009786997500000005) (0.009898050500000005) (0.009867008999999996) (0.009762172) (0.009611790499999995) (0.00987603649999999) (0.009678931500000001) (0.009715225500000008) (0.009789038) (0.00986766800000001) (0.009933808999999988) (0.009714414000000005) (0.009895961999999994) (0.00981572) (0.009973396499999981) (0.009693053000000007) (0.009928019999999996) (0.009925148500000008) (0.0098412425) (0.009690452500000002) (0.009691145499999984) (0.009638559000000019) (0.00985058150000001) (0.009786476000000002) (0.009827626500000006) (0.010199646499999993) (0.009831473500000007) (0.009815902000000001) (0.010002855500000005) (0.009890072500000013) (0.01008423700000001) (0.009973461000000017) (0.009596167500000002) (0.009465256499999991) (0.009351589000000007) (0.009477980499999997) (0.009487445499999997) (0.009721186000000007) (0.009364966499999988) (0.0095591265) (0.009580569000000011) (0.009483908999999999) (0.009498669499999987) (0.009700489499999979) (0.009679384499999999) (0.009565701000000024) (0.009600834500000002) (0.0096432335) (0.009465510999999996) (0.009768136999999996) (0.009620857499999996) (0.0095521675) (0.009597598499999999) (0.009309162499999996) (0.009314659500000003) (0.009564078500000003) (0.009521573000000005) (0.00991200199999999) (0.009594441000000009) (0.009479277500000008) (0.009401246000000002) (0.009577736000000017) (0.009734455500000003) (0.00945086149999999) (0.009623422500000006) (0.009713389500000016) (0.009925236500000004) (0.009834569000000001) (0.009744899000000001) (0.00975227549999999) (0.009674653000000005) (0.00963528850000002) (0.009801558500000002) (0.009993819000000001) (0.009943586500000004) (0.009889069) (0.009991169000000008) (0.010266763999999998) (0.009809484500000007) (0.0097914355) (0.009897806500000009) (0.009893055500000011) (0.00970945749999999) (0.009790883999999986) (0.00968629750000001) (0.009879298000000009) (0.009711457500000006) (0.009763798000000004) (0.010026064000000001) (0.009877230000000015) (0.009894241000000012) (0.009791501000000008) (0.010226579999999985) (0.009984283999999996) (0.009794787999999999) (0.009670329500000005) (0.011533886499999993) (0.011669011000000007) (0.011608847499999991) (0.011786658499999991) (0.011721201) (0.011757268500000001) (0.011642665999999996) (0.011944784000000014) (0.011719474499999993) (0.011630530999999986) (0.0117791) (0.011948448500000014) (0.01203041199999999) (0.011931964499999989) (0.011874353000000004) (0.011750674499999988) (0.011690935) (0.012056043000000002) (0.01175601300000001) (0.01167667750000001) (0.011754179000000003) (0.011948136499999998) (0.01148362) (0.011625371999999995) (0.011795594500000006) (0.011811585) (0.011950060500000012) (0.011776116499999989) (0.011893409500000007) (0.01185855899999999) (0.01149835149999999) (0.011568241500000007) (0.012080452999999991) (0.011758144999999998) (0.01224682349999999) (0.012084188999999995) (0.012425748499999986) (0.012000553999999997) (0.011916044500000014) (0.011982971500000009) (0.011922886500000007) (0.012329345500000005) (0.012378757500000004) (0.011967305999999997) (0.012195622000000003) (0.01251373900000001) (0.012248903000000005) (0.01201392200000001) (0.012243023999999991) (0.012066133500000006) (0.011994924000000004) (0.012145406999999997) (0.012072040499999992) (0.012433233499999988) (0.011864024999999986) (0.0122360195) (0.01202258349999999) (0.012526539999999989) (0.012113573000000002) (0.0120997105) (0.012131924000000002) (0.012247203999999998) (0.012011237999999994) (0.012304799000000005) (0.011563311000000007) (0.01188408199999999) (0.011804501500000009) (0.01159621000000001) (0.01155099150000001) (0.01171539349999999) (0.011680407500000003) (0.011741198500000008) (0.01177375800000001) (0.012095328500000002) (0.0116152115) (0.012073369499999986) (0.011685486000000009) (0.011879085500000011) (0.011873208499999996) (0.011935648500000007) (0.011809583000000012) (0.011972983500000006) (0.011643974999999987) (0.011721536000000005) (0.011898379) (0.011590741999999987) (0.011746088499999988) (0.011722777500000003) (0.011703499499999992) (0.0121609035) (0.011749256999999999) (0.012093835499999983) (0.011884992999999996) (0.012137358000000001) (0.01174320949999999) (0.011971223000000003) (0.012157052500000015) (0.011880752000000008) (0.012019841999999989) (0.012137601999999997) (0.011968744999999989) (0.011809047499999989) (0.011962012000000008) (0.0118916305) (0.012141145999999992) (0.012175475499999991) (0.012334049) (0.011949591499999995) (0.012346667499999991) (0.012429264499999995) (0.01216782650000002) (0.01219933849999999) (0.011990111500000011) (0.011889957000000007) (0.01201559549999999) (0.011768701000000006) (0.012275595) (0.012378762499999987) (0.012254851499999997) (0.0122274765) (0.012062868500000004) (0.012338985499999996) (0.012002387500000017) (0.011989907999999994) (0.01241742949999998) (0.012003674500000006) (0.012043533999999995) (0.012093198000000013) (0.011683410000000005) (0.011922027999999987) (0.011778908500000004) (0.011822135499999997) (0.011549890500000007) (0.011661510999999986) (0.0119624495) (0.011773516499999997) (0.011871442999999995) (0.01206623050000001) (0.0116180065) (0.012227722499999996) (0.012321373499999996) (0.01175595850000001) (0.012148677999999982) (0.011865849000000012) (0.011824394499999988) (0.011840585999999986) (0.011833865000000013) (0.011798450999999988) (0.011673738499999989) (0.01199252549999999) (0.011820670999999991) (0.011891342) (0.011804389999999998) (0.011770388000000007) (0.011981931000000001) (0.01206170749999999) (0.011813951000000003) (0.012104379499999998) (0.011809814000000002) (0.011605785000000007) (0.011872914499999998) (0.012292334500000002) (0.012046329000000008) (0.012033804500000009) (0.0120075885) (0.012144616999999996) (0.01199618899999999) (0.011945951999999996) (0.012198515000000007) (0.011937973500000018) (0.012287352000000001) (0.012238246500000008) (0.01207805449999999) (0.012119383999999997) (0.012451151500000007) (0.012158257500000005) (0.012047485999999996) (0.01223442650000002) (0.012079806999999998) (0.012213591999999995) (0.012041593500000003) (0.012292550999999985) (0.011995667000000002) (0.012007677500000008) (0.012184462499999993) (0.01224497799999999) (0.012430942) (0.012113335000000003) (0.011925789000000006) (0.011951961499999997) (0.012284835999999993) (0.012157920500000002) (0.011895108499999987) (0.011651260999999996) (0.011676332500000011) (0.011974413000000003) (0.011645537499999997) (0.012149874000000005) (0.01168085449999999) (0.011878872500000012) (0.011918890500000001) (0.011787550999999993) (0.011935195999999981) (0.011889511999999991) (0.012124271999999992) (0.011663546499999997) (0.011893809000000005) (0.011773489500000012) (0.011668703999999988) (0.01172443649999999) (0.011832597) (0.011852848000000013) (0.011762332500000014) (0.011914483000000003) (0.011861808000000001) (0.011795968000000018) (0.011754314499999988) (0.01182525999999999) (0.011641145000000006) (0.011847601999999999) (0.012112414999999987) (0.011727471000000003) (0.011797177499999992) (0.012068389499999999) (0.012218657500000007) (0.011884241000000004) (0.012094233499999996) (0.012115447000000001) (0.012072678000000017) (0.012339517500000008) (0.012131069999999994) (0.01211183149999999) (0.012435194499999996) (0.012109749999999989) (0.011940986499999987) (0.012079702499999997) (0.012358302499999987) (0.012040898000000008) (0.012071455499999995) (0.012060552000000002) (0.012129927499999998) (0.012280821500000011) (0.011977437999999993) (0.011951551500000004) (0.01207431199999999) (0.012161463000000011) (0.012224101500000015) (0.012016061000000008) (0.012233539000000002) (0.012143969500000004) (0.012398683500000007) (0.012198746499999996) (0.012183488500000006) (0.012166625) (0.0121630405) (0.012030137499999996) (0.011921349499999997) (0.0123021735) (0.011982849500000003) (0.011736733) (0.0116910125) (0.011759652499999995) (0.011646642500000012) (0.011929811499999998) (0.011777778500000016) (0.011863920999999986) (0.011812193999999998) (0.012189802000000013) (0.012185571499999992) (0.011631307000000007) (0.011825934499999996) (0.011808372499999997) (0.011882530000000002) (0.011747246500000016) (0.011895752999999995) (0.012000817999999996) (0.011555554499999995) (0.0114945605) (0.012105611500000002) (0.011835230500000016) (0.011864996499999989) (0.011993402) (0.0120164725) (0.011645647999999995) (0.011831752000000001) (0.012165596999999986) (0.011875964000000003) (0.0117102325) (0.012213325999999997) (0.011786758499999994) (0.011970987500000002) (0.01218677600000001) (0.012024218000000003) (0.01190988150000001) (0.012038786500000023) (0.012146369500000004) (0.011980839500000007) (0.011950249499999996) (0.011966599999999994) (0.012164500999999994) (0.012491019999999992) (0.012025349000000005) (0.012097081499999995) (0.012181041000000004) (0.012061925000000001) (0.011969245000000003) (0.011902589500000005) (0.012010846500000005) (0.01221004199999999) (0.011878240000000012) (0.011940383499999999) (0.012564615499999987) (0.012258668) (0.012402822499999994) (0.012163966499999998) (0.011885042500000012) (0.011969921500000008) (0.012025142999999988) (0.012310000000000001) (0.012115926499999999) (0.01174131049999999) (0.011831756499999999) (0.011872553999999994) (0.011793018000000002) (0.011736294999999994) (0.011760936999999999) (0.012071705999999988) (0.011506046499999992) (0.011574119000000008) (0.012000658499999997) (0.01210217899999999) (0.011848339500000013) (0.01192180150000001) (0.011658492500000006) (0.011731769000000003) (0.011996035000000002) (0.011648775) (0.012098995000000001) (0.012050129500000006) (0.011779104499999998) (0.011773252500000012) (0.011710667500000008) (0.011516051499999999) (0.011683707500000015) (0.011926715000000004) (0.011729157500000004) (0.012160777999999997) (0.011784760500000019) (0.011620294500000003) (0.011765650000000002) (0.011961176000000004) (0.011805257) (0.011892227000000005) (0.01234025050000001) (0.011865497000000003) (0.012118977500000003) (0.012181490000000003) (0.012297145999999995) (0.012034315500000003) (0.012097709000000012) (0.012027000499999996) (0.012366771000000013) (0.012320607999999997) (0.012029665499999995) (0.012160719) (0.012055187499999995) (0.01210339149999999) (0.012179847000000008) (0.012115017999999991) (0.012048491500000008) (0.01196107099999999) (0.011974852000000008) (0.01197060250000001) (0.012233081000000007) (0.012108753) (0.012305914000000015) (0.012458056500000009) (0.012607966500000012) (0.012173634999999988) (0.012152747500000005) (0.012013917999999985) (0.012458078000000011) (0.012268491999999992) (0.012128727000000006) (0.011589118500000009) (0.011735950999999994) (0.011856410500000011) (0.012101951500000013) (0.011539275000000002) (0.0119101645) (0.012099794499999997) (0.011792882000000005) (0.011788747500000002) (0.01172775899999999) (0.011826513999999996) (0.011819928000000021) (0.011748196999999988) (0.011707150999999999) (0.011845005499999992) (0.011887870000000009) (0.0118228935) (0.011765669500000006) (0.011882773999999999) (0.011921172500000007) (0.011695368999999997) (0.011696169000000006) (0.011588327499999995) (0.01162629250000001) (0.012056722500000006) (0.011851680500000003) (0.01175835750000001) (0.01171570000000001) (0.011740849500000011) (0.011975030500000011) (0.011716309000000008) (0.011804739999999994) (0.012427885) (0.012104865500000006) (0.012125933000000005) (0.01229334) (0.012085697999999992) (0.012170420000000001) (0.012066935) (0.012068407000000003) (0.012085134999999997) (0.011961998500000001) (0.012057783000000002) (0.012120339500000007) (0.012146218000000014) (0.012346639499999992) (0.012044699000000006) (0.012539439000000013) (0.012017883999999993) (0.012253329500000007) (0.012122597499999999) (0.012117995499999992) (0.012112978499999996) (0.011800771499999987) (0.011872315500000008) (0.012085001499999984) (0.012183062499999994) (0.012299477000000003) (0.011985529000000009) (0.012247094) (0.012216035) (0.012439886999999997) (0.012119330999999997) (0.012232009500000002) (0.011770312500000005) (0.012079889499999996) (0.011593491999999997) (0.01207255850000001) (0.011995977500000005) (0.011909147499999995) (0.012068338999999997) (0.011890637499999995) (0.012137837499999998) (0.011840627999999992) (0.011983235499999995) (0.011784141999999997) (0.011728943000000006) (0.011888964000000002) (0.011979863000000007) (0.012111579000000011) (0.011624998999999997) (0.011596109500000007) (0.011857881000000015) (0.011627003499999997) (0.011966611500000002) (0.011798720499999998) (0.011959112500000008) (0.01199317150000001) (0.011953912999999997) (0.011826975500000003) (0.011926381000000014) (0.011770125999999992) (0.011770700499999995) (0.012151294499999993) (0.011884409999999998) (0.012030757499999989) (0.01211765749999999) (0.012060629500000003) (0.012118363499999993) (0.012032870000000001) (0.012215008) (0.012260362499999997) (0.01221335649999998) (0.012031135999999984) (0.012282632999999987) (0.012151067500000001) (0.011995996499999995) (0.012092173999999997) (0.0125161825) (0.012297574999999991) (0.012408489999999994) (0.012302373500000005) (0.012163244000000004) (0.012083147500000002) (0.012242231000000006) (0.012255398000000015) (0.012045508999999996) (0.01208139250000001) (0.012224948500000013) (0.012127826499999994) (0.012124941499999986) (0.0120433645) (0.011960179000000001) (0.011983677999999998) (0.012238738499999999) (0.012316492999999984) (0.012151767500000007) (0.012235101999999998) (0.011479691) (0.011622114999999988) (0.011630832500000007) (0.011682091500000005) (0.011644560499999998) (0.011724973999999999) (0.01180402500000001) (0.0117488865) (0.011670922) (0.011607447000000007) (0.011959703499999988) (0.011807838500000015) (0.01220117200000001) (0.011929385) (0.012142137999999997) (0.011681391999999999) (0.011765752000000004) (0.012007293500000002) (0.011746614500000002) (0.011678028500000007) (0.011637464999999986) (0.01159458449999999) (0.011769027500000001) (0.011936600500000005) (0.011641967000000003) (0.012024977000000006) (0.011651096) (0.011879151000000004) (0.0119769495) (0.01174325000000001) (0.011746507999999989) (0.012014395999999997) (0.012069579499999997) (0.01193050100000001) (0.01237150799999999) (0.012258679000000008) (0.012263550000000012) (0.012277806500000002) (0.011880402500000012) (0.01221456700000001) (0.0121534675) (0.012476616999999995) (0.012173364500000006) (0.012003320999999997) (0.012127436999999991) (0.012405962500000006) (0.012264408500000004) (0.012004670000000009) (0.012151097999999999) (0.012326057500000001) (0.011926339499999994) (0.01224926250000001) (0.01249054350000002) (0.012099392000000014) (0.011969942499999997) (0.012273998000000008) (0.011945258) (0.011943924500000022) (0.012240508000000011) (0.012044968500000003) (0.011993425499999988) (0.012006150000000007) (0.012155601500000002) (0.012186840000000004) (0.011806911500000003) (0.011739760999999987) (0.012023495500000009) (0.01157630200000001) (0.012065581000000006) (0.011629070500000005) (0.011649951999999991) (0.011936041000000008) (0.011867209000000004) (0.01191804199999999) (0.012486245000000007) (0.012044723499999993) (0.01183869450000001) (0.012049795000000002) (0.011688198999999996) (0.011975870000000013) (0.011658067499999994) (0.011754044500000005) (0.011715387000000008) (0.0121010535) (0.011860663000000007) (0.011621082000000005) (0.011682564000000006) (0.011745053000000005) (0.012034351500000012) (0.011960713499999998) (0.011746375500000003) (0.011699419500000002) (0.011873637500000006) (0.011990635499999985) (0.011675228499999996) (0.011826393000000004) (0.012041300000000005) (0.012103611) (0.012069589000000006) (0.012254802999999995) (0.011973157500000012) (0.012143185) (0.011993943000000007) (0.012374663999999994) (0.01214381099999999) (0.0123299885) (0.01210663549999999) (0.012257480999999987) (0.012161262000000006) (0.012301042499999998) (0.012541325999999992) (0.012121281999999997) (0.012151134999999993) (0.011950419000000004) (0.011972391500000013) (0.012084589500000006) (0.011928004499999992) (0.012115367499999988) (0.011873700000000001) (0.012193118499999989) (0.012545481499999997) (0.012044669499999994) (0.012287211500000006) (0.011911065500000012) (0.01194655850000001) (0.012273176999999996) (0.012094800000000003) (0.012108168000000016) (0.01177461049999999) (0.011482738999999992) (0.0119275675) (0.01167887799999999) (0.011898837500000009) (0.011765089499999992) (0.012001285) (0.012092647000000012) (0.011677166000000003) (0.012038349000000004) (0.011801166500000002) (0.01167449000000001) (0.011899017999999983) (0.011732168500000001) (0.012044886500000018) (0.012234920999999996) (0.011683323500000009) (0.011942108499999993) (0.011688023999999991) (0.012350984500000009) (0.011902780000000002) (0.011981999999999993) (0.011659647499999995) (0.01201000549999999) (0.011837201000000006) (0.011810456499999997) (0.011844005000000005) (0.011977620999999994) (0.011730537999999999) (0.011867925500000001) (0.011531443499999988) (0.012070412500000002) (0.012247061500000003) (0.012087318) (0.012230757000000009) (0.011828843500000005) (0.01205991549999999) (0.01198858450000001) (0.012083040000000017) (0.012387427500000006) (0.012045181999999988) (0.012293825500000022) (0.012634372000000019) (0.011911982499999987) (0.012041205500000013) (0.01214837299999999) (0.012278973000000012) (0.012154864500000001) (0.012418648500000004) (0.011960691499999995) (0.012021357499999996) (0.012311143499999996) (0.012341838499999994) (0.011880596500000007) (0.01204715449999999) (0.01189772700000001) (0.012513644000000004) (0.012029138999999994) (0.01226596349999999) (0.012351783500000005) (0.01209115899999999) (0.012296959499999996) (0.0121974735) (0.011983447499999994) (0.01173908500000001) (0.011918587500000008) (0.011685771000000011) (0.011708179499999999) (0.011760832999999998) (0.011754735000000002) (0.011883054500000004) (0.011936823499999985) (0.012347432500000005) (0.011701580500000003) (0.011875438500000002) (0.011904895499999998) (0.011959529999999982) (0.012159396500000003) (0.011785079500000004) (0.011829639000000003) (0.012017001499999999) (0.011837818500000014) (0.011830660999999992) (0.011659708000000005) (0.011699992000000006) (0.011815269000000003) (0.011676397500000005) (0.011978294500000014) (0.011757799499999999) (0.012174906000000013) (0.01202586450000001) (0.011820703500000002) (0.011873541000000001) (0.012211182000000001) (0.011844623000000012) (0.01205977200000001) (0.012192031500000006) (0.012012507000000006) (0.012079561000000003) (0.011952134999999989) (0.012361151500000014) (0.011908505) (0.011935021000000004) (0.011863653000000002) (0.011997851000000004) (0.012170540499999993) (0.012054413000000014) (0.012057973999999999) (0.012550105500000006) (0.012260193500000002) (0.012116229000000006) (0.01229685250000001) (0.0118772875) (0.012149591000000001) (0.012016695999999993) (0.011917338999999999) (0.01202823750000001) (0.011993290000000004) (0.012510328000000001) (0.011895308999999979) (0.012186483999999997) (0.012018253000000007) (0.012142029499999998) (0.012189020000000009) (0.012225864999999989) (0.012073413000000005) (0.012052824500000003) (0.012055383000000003) (0.011635664500000018) (0.011879558500000012) (0.011647417500000007) (0.012121136000000005) (0.01166013149999999) (0.011833475499999996) (0.011630915500000005) (0.011970783500000012) (0.011839509000000012) (0.011776425999999993) (0.011718116500000014) (0.011818830499999988) (0.011835162499999996) (0.011866144000000009) (0.011821001499999997) (0.011778432500000005) (0.01196660599999999) (0.011952857000000011) (0.011818950499999994) (0.011982616500000001) (0.011762374999999992) (0.012029993500000002) (0.011818018999999999) (0.011733797500000004) (0.011861243499999993) (0.011861843499999997) (0.011891511000000007) (0.012055299500000005) (0.011841431999999999) (0.011992186500000016) (0.011915752500000001) (0.011689031000000003) (0.012259153499999995) (0.012089674500000008) (0.012116231499999991) (0.012178274500000003) (0.0121028725) (0.01195162050000001) (0.012383757499999995) (0.012027775000000004) (0.0119227405) (0.012445498499999999) (0.01217219650000001) (0.012400117500000002) (0.012165782500000014) (0.012252607499999998) (0.012229073000000007) (0.012263141500000005) (0.012142843) (0.012092641999999987) (0.011907703000000006) (0.012074350999999983) (0.012045927999999997) (0.012068022999999997) (0.012294449999999998) (0.012327318500000004) (0.012129676500000006) (0.012112999499999985) (0.012243378499999999) (0.012290600499999998) (0.012473142000000007) (0.0123039395) (0.012148002500000005) (0.012444571000000001) (0.011609827999999989) (0.01169684600000001) (0.012266514500000006) (0.011694535000000006) (0.01184282149999999) (0.011665765500000008) (0.011816087499999989) (0.011745281999999996) (0.0119145695) (0.011740492500000005) (0.011863944000000001) (0.011968515500000013) (0.011865618500000008) (0.011869228499999995) (0.01191052849999999) (0.011717059000000002) (0.011819547) (0.011868992999999994) (0.011647413500000009) (0.01168121300000001) (0.011748099499999998) (0.011547202500000006) (0.012030198000000006) (0.011827022999999992) (0.011843906000000001) (0.011787352000000015) (0.011654468500000001) (0.012346263499999996) (0.011972614500000006) (0.011813188500000002) (0.012218295500000004) (0.011788947999999994) (0.012153998999999999) (0.012068968999999999) (0.012356923000000006) (0.012175262500000006) (0.012164017499999999) (0.012159544999999994) (0.012368692499999986) (0.012072610499999997) (0.012225610000000012) (0.012329985500000001) (0.012246590000000002) (0.01214592099999999) (0.012197078) (0.012509888999999982) (0.012048125500000006) (0.012024605499999994) (0.011966068499999996) (0.012055308500000014) (0.012518592500000009) (0.012301877000000003) (0.011962160000000013) (0.012302221500000002) (0.011875110000000008) (0.01202673500000001) (0.012152322999999993) (0.012045053) (0.012574363499999991) (0.011973028499999996) (0.01228770600000001) (0.012428664000000006) (0.01212946600000002) (0.012310286500000003) (0.011617573999999992) (0.011669397500000012) (0.012181240499999996) (0.011690220000000001) (0.011731100999999994) (0.011757168499999998) (0.011615555) (0.011696598000000002) (0.012316592500000015) (0.011824878999999996) (0.011938142499999999) (0.011982568499999999) (0.011758796000000002) (0.011860047999999998) (0.0119480265) (0.011895408499999996) (0.011640705500000001) (0.011724009499999993) (0.011858091000000001) (0.01176529350000001) (0.011825912500000008) (0.011897135000000003) (0.011864595499999991) (0.011753016000000005) (0.012228350499999999) (0.011850516500000005) (0.011758936499999997) (0.011862327000000006) (0.012009959999999986) (0.011915637999999992) (0.011776257000000012) (0.01205559199999999) (0.012147951000000004) (0.012008502500000004) (0.011947662999999997) (0.012121215500000018) (0.011865673499999993) (0.012260695000000002) (0.01191624799999999) (0.0120883445) (0.012202152000000008) (0.01236878999999999) (0.012099012999999992) (0.012145334999999993) (0.012018776500000009) (0.012066241500000005) (0.012474156499999986) (0.012240920999999988) (0.01212450700000002) (0.012052583499999991) (0.012096810499999985) (0.012376862499999988) (0.011856937000000012) (0.012093919999999994) (0.011923194999999998) (0.012094558500000005) (0.012635293499999992) (0.012278716500000009) (0.01210211500000001) (0.012325400000000014) (0.012173231500000006) (0.012847340999999998) (0.0121467725) (0.012359194000000018) (0.011802919999999995) (0.01193930600000001) (0.011807994000000002) (0.011799884999999996) (0.011708218000000006) (0.011976992999999991) (0.011962164999999997) (0.011920717499999983) (0.011851622000000006) (0.012202093000000011) (0.01218451000000001) (0.011993590999999998) (0.011704619500000013) (0.012035355499999997) (0.011732356999999985) (0.012228113499999999) (0.0117028785) (0.011866522500000004) (0.011799701499999982) (0.011698821999999998) (0.012317993499999999) (0.012070900499999995) (0.011682641500000007) (0.011792085499999994) (0.011932873499999996) (0.0118559835) (0.011814526500000005) (0.0118290115) (0.011870417000000008) (0.011919682999999986) (0.011703999499999992) (0.012142452499999998) (0.011949468500000004) (0.011907444000000003) (0.01218736699999999) (0.012211144500000007) (0.012214436999999995) (0.012003333500000005) (0.012059867500000002) (0.012123668500000004) (0.012367477000000002) (0.012279504999999996) (0.012380593999999995) (0.012078218000000002) (0.012177895000000008) (0.012449270499999998) (0.01221771449999999) (0.012267817000000014) (0.012240125500000018) (0.012028731500000014) (0.011903301499999991) (0.011857631500000007) (0.012068116000000004) (0.011888190999999992) (0.012169072000000003) (0.01196828300000001) (0.012378436000000007) (0.012643347499999999) (0.0121828945) (0.012051668500000001) (0.012102863499999991) (0.0122851135) (0.012030881500000007) (0.012180282) (0.011532048999999989) (0.011708472500000011) (0.011806424499999996) (0.011652858499999988) (0.011701444499999991) (0.011653173500000003) (0.011741464499999979) (0.011733044000000012) (0.012295503999999999) (0.011965995499999993) (0.011761077500000008) (0.0118347335) (0.011920433500000008) (0.011702652999999993) (0.011853563999999983) (0.011826252999999995) (0.011549822500000001) (0.011708154999999998) (0.011862540000000019) (0.011694972499999998) (0.011683012999999992) (0.011946492500000003) (0.01172385599999999) (0.011815791000000006) (0.011808095000000005) (0.012025492499999985) (0.0119024415) (0.011867865499999991) (0.011748005000000006) (0.011556526500000011) (0.012037746500000002) (0.012114567500000006) (0.012012125499999998) (0.0119960405) (0.012052198) (0.012168122999999989) (0.011991283500000005) (0.012059984999999995) (0.012136897499999993) (0.01197529) (0.011994715500000003) (0.011970523499999997) (0.012014356500000004) (0.012363329999999992) (0.012510484000000016) (0.012146897500000003) (0.012043748499999993) (0.01212146750000001) (0.0119632135) (0.01203100600000001) (0.011851248000000009) (0.012094394499999994) (0.012107611000000004) (0.012659159500000003) (0.01180531700000001) (0.011992306000000008) (0.012332897999999995) (0.012122687999999993) (0.012296929999999998) (0.012231972499999993) (0.012082427500000006) (0.012211384499999992) (0.012423931499999999) (0.012469532500000005) (0.011640990000000004) (0.012012103499999982) (0.011732918500000009) (0.011764472999999998) (0.011857300000000001) (0.011567563000000003) (0.011655573500000002) (0.011934529499999999) (0.011913651999999997) (0.012178274500000003) (0.01172032399999999) (0.01199352849999999) (0.011755628500000004) (0.011926787999999994) (0.01189849450000001) (0.011952726999999996) (0.011833219999999992) (0.011642590000000008) (0.01192275949999999) (0.011911931) (0.011866794000000014) (0.0122417425) (0.011702723499999998) (0.011820572500000001) (0.011847003499999995) (0.0118206805) (0.012015913000000003) (0.011783671499999995) (0.012004968000000005) (0.011749360000000014) (0.01165269549999999) (0.011863744500000009) (0.01184740749999999) (0.011882057000000001) (0.012042218999999993) (0.012130449500000001) (0.012080584500000005) (0.012086898999999998) (0.011967367499999992) (0.012090106000000003) (0.011963041500000007) (0.01240458400000001) (0.01211076350000001) (0.012122306499999985) (0.012211822499999997) (0.012165950499999995) (0.011992458499999997) (0.012041273000000005) (0.01196483999999999) (0.0122159305) (0.01207721299999999) (0.012086235499999987) (0.0121640945) (0.012203344000000005) (0.012162775000000015) (0.012361046500000014) (0.012203508000000002) (0.012068492000000014) (0.011974405500000007) (0.012020224499999996) (0.012065314500000007) (0.012075527500000002) (0.012297331499999994) (0.012136559499999991) (0.011523971000000008) (0.011884366500000007) (0.011710133500000011) (0.011560548500000004) (0.01179301100000002) (0.011906590500000008) (0.01156284149999999) (0.012117439999999993) (0.011813882999999997) (0.011877169499999993) (0.011940021499999995) (0.011853156500000003) (0.011980532000000016) (0.012278208999999998) (0.011693017) (0.011891609000000011) (0.011752048000000001) (0.011641186499999998) (0.011750616000000005) (0.012277785499999999) (0.011990842999999987) (0.011656501500000013) (0.011624161499999994) (0.011623100499999997) (0.011742771500000013) (0.011727733000000004) (0.012078361499999996) (0.011865506000000012) (0.011911996500000008) (0.011690729999999983) (0.01205329949999999) (0.011618361000000008) (0.012066089500000002) (0.011867501000000003) (0.011874240500000008) (0.01206167050000001) (0.011874722500000004) (0.012253356499999993) (0.011961956999999995) (0.012065620499999985) (0.012176772999999988) (0.012241688) (0.012281791) (0.011928300000000003) (0.012233828500000016) (0.012444226000000003) (0.012208057499999994) (0.012206561500000004) (0.012017994500000004) (0.011900380000000016) (0.012052262999999994) (0.011796878999999996) (0.0119227415) (0.0120311575) (0.012174999499999992) (0.012390958500000007) (0.012142921000000001) (0.012501570500000017) (0.0120417325) (0.012707875999999993) (0.012093478500000004) (0.012204971500000009) (0.012084984500000007) (0.01222281800000001) (0.01190954100000001) (0.011956372999999992) (0.011851165999999996) (0.011772001000000004) (0.011673267499999987) (0.011769112999999998) (0.011750666999999992) (0.011715988999999996) (0.01206163049999999) (0.011954952500000005) (0.011938532000000016) (0.011790213000000008) (0.011816716500000005) (0.0119082415) (0.011829807499999997) (0.01210609850000001) (0.011690350000000002) (0.011908937500000008) (0.01208295999999999) (0.011804488000000002) (0.011821221499999993) (0.011770361999999993) (0.011811141999999997) (0.011799972500000006) (0.012205073499999983) (0.011990742999999998) (0.012011279499999986) (0.011923528500000002) (0.012089422500000016) (0.011711147000000005) (0.01190163399999998) (0.01184233400000001) (0.012037341499999993) (0.0119237175) (0.011925410999999997) (0.012290440000000014) (0.012084648000000003) (0.0120042665) (0.012095334) (0.0121796255) (0.012236557999999995) (0.012161445000000007) (0.012237926499999996) (0.012344272500000003) (0.012096375000000006) (0.012186490499999994) (0.012086882999999993) (0.012055187999999994) (0.011856560000000002) (0.012197652499999989) (0.012138279500000002) (0.012174873999999988) (0.012177793500000006) (0.012155232500000002) (0.01209023749999999) (0.012162048500000008) (0.012227807999999993) (0.011975995000000003) (0.012043569500000004) (0.012362168000000007) (0.01225080349999999) (0.012536013499999984) (0.011978351499999984) (0.012080367499999994) (0.012283251999999995) (0.011818580999999995) (0.012476500500000001) (0.011771860000000009) (0.011800078499999991) (0.011750721500000005) (0.011819250999999989) (0.012102124999999991) (0.011803657999999995) (0.011751240499999996) (0.012096051499999996) (0.012033873999999986) (0.011834831000000004) (0.011839006499999999) (0.012010255000000011) (0.011893659499999987) (0.011586726500000005) (0.0117549235) (0.011830461999999986) (0.011922418000000004) (0.011686333500000007) (0.011596069) (0.011813653500000007) (0.011917708500000013) (0.012201697999999997) (0.011919136999999996) (0.012055649000000015) (0.012070372500000023) (0.011727615999999996) (0.011810162499999999) (0.011916734999999998) (0.011887372500000007) (0.0120613485) (0.011956558000000006) (0.011985931500000005) (0.012038154500000009) (0.0122404245) (0.011994453500000016) (0.011966258499999993) (0.012251939000000003) (0.012185791499999987) (0.012036868000000006) (0.012111451499999995) (0.012336033499999996) (0.012209485999999992) (0.012127683) (0.011964238000000002) (0.012120926000000004) (0.011972918999999999) (0.012091181500000006) (0.012340653999999979) (0.011822021000000002) (0.012221651) (0.012334008499999993) (0.012075510499999983) (0.012052942499999997) (0.012365664499999998) (0.012065272000000002) (0.012196516500000004) (0.012530615999999994) (0.012113145000000006) (0.01213631350000001) (0.0120737655) (0.011953421500000005) (0.012152087000000006) (0.011831785500000011) (0.011559332000000005) (0.011640510499999993) (0.01174594200000001) (0.01183352800000001) (0.011882126999999992) (0.011552304) (0.0120068225) (0.012074668499999996) (0.01193370449999999) (0.011709831000000004) (0.011716481500000014) (0.011893889500000004) (0.012022962499999984) (0.012045537499999995) (0.012140672000000005) (0.011708096999999987) (0.011861421999999996) (0.01164878400000001) (0.011708154999999998) (0.011548806999999994) (0.011629788500000002) (0.011701311999999991) (0.011861208000000012) (0.011883211500000004) (0.01189651650000001) (0.011807636999999996) (0.01200515549999999) (0.011966901500000002) (0.011857905500000002) (0.011811643499999983) (0.012155905000000009) (0.012116653000000005) (0.011981052999999992) (0.012132999500000005) (0.012349586999999995) (0.012012327000000003) (0.012165674500000001) (0.01188029900000001) (0.012082635999999994) (0.012708944500000013) (0.012004685500000015) (0.012014246500000006) (0.012439596000000011) (0.012049121499999996) (0.0123581215) (0.012026752499999988) (0.012104562) (0.012168954999999995) (0.012178473499999995) (0.012031800499999995) (0.012272322000000016) (0.01220597000000001) (0.012468632500000007) (0.012073410499999992) (0.01244481850000001) (0.01223414099999999) (0.012142775999999994) (0.012171304500000008) (0.011944704499999986) (0.01215990900000001) (0.012003477999999998) (0.011933799000000009) (0.011694640000000006) (0.011935295499999998) (0.011665680499999997) (0.011948022500000002) (0.011613476499999997) (0.01195276549999999) (0.011687148000000008) (0.011724887000000003) (0.01177781550000001) (0.011947974499999986) (0.011862031000000009) (0.012026776000000003) (0.011836624500000004) (0.011677925000000006) (0.011806552499999984) (0.0120283625) (0.011799554000000004) (0.011804930500000005) (0.011546516999999992) (0.011928120499999986) (0.011810215999999998) (0.01164875500000001) (0.011974234) (0.011794412500000004) (0.012222165999999993) (0.011813754499999995) (0.012089192999999998) (0.01197791949999999) (0.011812491499999994) (0.011829338999999994) (0.011873725999999987) (0.012106743500000003) (0.012055417999999998) (0.011979647499999996) (0.012070756000000016) (0.012078045999999995) (0.012767426000000012) (0.012185199500000007) (0.012202744500000015) (0.011968787000000009) (0.012019662) (0.012294685999999999) (0.012666254999999987) (0.011933836000000017) (0.012117384999999994) (0.011966301999999998) (0.012095309999999984) (0.012159569499999995) (0.01197914700000001) (0.011994364500000007) (0.012478447500000003) (0.011869599499999994) (0.012062957000000013) (0.011938883499999997) (0.01182801750000001) (0.01203111400000001) (0.011993240000000002) (0.01209834700000001) (0.012192194000000003) (0.012065711499999993) (0.012062549000000006) (0.012160951000000003) (0.012089709500000004) (0.012279038499999992) (0.0117494645) (0.011658748499999996) (0.011715699499999996) (0.011491841000000017) (0.011644752000000008) (0.011733066000000014) (0.01193467749999999) (0.012322377500000023) (0.011926308999999996) (0.0117756985) (0.011833867999999984) (0.011824349499999998) (0.012032212499999986) (0.0118795565) (0.012228634000000016) (0.0117798925) (0.011646546500000007) (0.011739304500000006) (0.011722087500000006) (0.01168203050000001) (0.011941389499999996) (0.011851801999999995) (0.011819951000000009) (0.011758862500000009) (0.0121699475) (0.011878977499999999) (0.012362409000000005) (0.011955924499999993) (0.012129245499999997) (0.011870355499999999) (0.011859810500000012) (0.012362720999999993) (0.0120146535) (0.011866043499999993) (0.012616111500000013) (0.011915142000000004) (0.01228823150000001) (0.012392303499999993) (0.0121981075) (0.0119073975) (0.012153931000000007) (0.01199815600000001) (0.012514366000000013) (0.012181754000000003) (0.012123664000000006) (0.012470831999999987) (0.01202214950000001) (0.012046345000000014) (0.01213540149999999) (0.012040669000000004) (0.012126336500000015) (0.012151501499999995) (0.012064230500000009) (0.012001134999999982) (0.012279618500000006) (0.0122747785) (0.012079361999999996) (0.01227512800000001) (0.012198254000000006) (0.011951708499999991) (0.012159186500000002) (0.011997757000000012) (0.012239356500000007) (0.012085845999999983) (0.011744482) (0.012042737000000012) (0.011989848000000011) (0.011749375999999992) (0.011599342500000012) (0.012143151500000005) (0.01161097400000001) (0.011924155000000006) (0.011570661499999996) (0.01194096) (0.012138666500000006) (0.012297439500000007) (0.011889404500000006) (0.011863047000000002) (0.011710012500000005) (0.01206900150000001) (0.01178114000000001) (0.012055144000000004) (0.0119107715) (0.012084077999999998) (0.011525966000000012) (0.01172662649999999) (0.01212997149999999) (0.011713699000000008) (0.011852864500000004) (0.012267231500000003) (0.012116548500000004) (0.011793210499999998) (0.012030608999999998) (0.011942720000000004) (0.012152462500000002) (0.012072503499999984) (0.011851036500000009) (0.011945791500000011) (0.01212208749999999) (0.012165269999999992) (0.012128696000000008) (0.012369345000000004) (0.012123097499999999) (0.0122749365) (0.012419322499999996) (0.012267267499999998) (0.012105170999999998) (0.012184186500000013) (0.012171608) (0.012044415500000002) (0.0119063695) (0.011969229999999997) (0.011970452000000006) (0.012152572) (0.012479260499999992) (0.012091246499999986) (0.012113569000000005) (0.011880221999999996) (0.01214266650000001) (0.012089342999999989) (0.012403658999999997) (0.011927079500000007) (0.012254259500000003) (0.011911441999999994) (0.01232895149999999) (0.012313855999999998) (0.012049813999999992) (0.012336923999999985) (0.011839844999999988) (0.01184244949999999) (0.011861392999999998) (0.011896513499999997) (0.011881988999999982) (0.011911022499999993) (0.011848893) (0.0117727465) (0.011788304) (0.01233178850000001) (0.011739892000000002) (0.011822995500000016) (0.012088386499999992) (0.01182618399999999) (0.0119794285) (0.012057871500000011) (0.011751378500000006) (0.011922033000000012) (0.011539055499999992) (0.011818484000000004) (0.011791662999999994) (0.011738246500000007) (0.012054717000000006) (0.011724065000000006) (0.011841925000000003) (0.011929898999999994) (0.011733858) (0.011835494999999988) (0.011954917999999981) (0.011795994000000004) (0.011969898000000007) (0.011872325999999989) (0.012278046) (0.012421268) (0.012157834000000006) (0.01222206399999999) (0.012050858500000011) (0.012158095500000007) (0.011909205500000006) (0.012067667500000004) (0.012274191500000003) (0.01200944750000002) (0.012054185000000009) (0.012076306499999995) (0.012074986499999996) (0.012293183000000013) (0.012245363999999995) (0.012101206500000017) (0.011966714999999989) (0.012273249) (0.011882286999999991) (0.012199275499999995) (0.011901296500000005) (0.012145640000000013) (0.012097950499999996) (0.011818893999999996) (0.012088912499999993) (0.012137386500000014) (0.012156630000000015) (0.012172115999999997) (0.012196934499999992) (0.011903578000000012) (0.012069619000000004) (0.012102776999999995) (0.011676041000000012) (0.011705973999999994) (0.011709802000000005) (0.011713649500000006) (0.012103441500000006) (0.01203352349999999) (0.011697689499999983) (0.01201141900000001) (0.011961399499999997) (0.012046954499999998) (0.011784272499999998) (0.012042670500000005) (0.012272724999999998) (0.01193204049999999) (0.011833711499999996) (0.012004652500000004) (0.011768298499999996) (0.011824163999999998) (0.01197633350000002) (0.011717113999999987) (0.011973911000000004) (0.011984467500000012) (0.011694380500000004) (0.011782433499999995) (0.012011045000000012) (0.012010278499999999) (0.012060131500000015) (0.011840885499999995) (0.012249549500000012) (0.011778926500000009) (0.012121062000000002) (0.011782726999999993) (0.012065455499999989) (0.01205988799999999) (0.012002694999999994) (0.012054726000000002) (0.011975298999999995) (0.011950087499999998) (0.012490875000000012) (0.012055261499999997) (0.012389121000000003) (0.012206506499999992) (0.012140410500000004) (0.012106201999999996) (0.01196403) (0.012004489500000007) (0.012082919499999997) (0.012088358000000007) (0.012265544000000003) (0.012266347499999997) (0.01200394049999999) (0.011993933499999998) (0.012114927499999983) (0.012006433999999996) (0.012020476999999988) (0.011986939500000002) (0.012196658999999999) (0.01200037299999998) (0.011983235000000009) (0.012201571999999994) (0.012283002999999987) (0.012290382500000002) (0.012425377000000001) (0.01240774750000001) (0.011896174500000009) (0.011684262499999987) (0.011710868) (0.011897339500000007) (0.011952295000000002) (0.011860741500000008) (0.011670093000000006) (0.0119102725) (0.012116129000000003) (0.011818873999999993) (0.011772860999999996) (0.011832483000000005) (0.011803095000000013) (0.012074532999999985) (0.012232450500000006) (0.011756249999999996) (0.011920631999999987) (0.011852304499999994) (0.011890381000000005) (0.011924591500000012) (0.011645377499999984) (0.011837174999999991) (0.011581260999999995) (0.011695063500000005) (0.011818581999999994) (0.011962245499999996) (0.011885782499999997) (0.011918037499999992) (0.012132467000000008) (0.011952587) (0.011931210999999997) (0.011798879499999998) (0.012014212999999996) (0.01219895850000001) (0.012257820500000002) (0.011988872999999997) (0.012260525000000008) (0.011970399500000006) (0.012199533999999998) (0.012078062) (0.01234439250000001) (0.012421306999999993) (0.012360894999999997) (0.012046979499999999) (0.012073914000000005) (0.012221837) (0.012137161499999993) (0.012272847999999989) (0.012090496500000006) (0.011951927499999987) (0.012138748500000004) (0.012265538499999992) (0.011911013500000012) (0.011916244000000006) (0.012080332999999999) (0.012037296000000003) (0.012474485499999993) (0.012199597999999992) (0.011938818500000004) (0.011989557499999998) (0.012416793999999995) (0.012008148999999996) (0.012204523999999994) (0.01205898050000001) (0.011772806499999997) (0.01170037950000001) (0.011836030500000011) (0.011598677000000016) (0.011626940000000002) (0.012019620499999994) (0.0116043745) (0.011616184000000015) (0.011920395999999986) (0.011738656000000014) (0.011863728500000004) (0.011641128000000014) (0.012064736999999992) (0.011630447500000016) (0.011851094000000006) (0.011907817999999987) (0.012026836000000013) (0.011828150999999995) (0.011866583500000014) (0.011781426499999997) (0.011784586500000013) (0.011956051999999995) (0.011701700500000009) (0.011958112000000007) (0.011834195499999992) (0.011825792999999987) (0.011737942000000015) (0.011825617499999996) (0.011840695500000012) (0.011875143500000004) (0.011728558) (0.011787323499999988) (0.011967844499999991) (0.011948901499999998) (0.012225778000000007) (0.011988186500000012) (0.012164973499999995) (0.0119739705) (0.01202647250000001) (0.012061296999999985) (0.012436082000000001) (0.012332058499999993) (0.011990101000000003) (0.011948914500000005) (0.012266287499999987) (0.012243706500000007) (0.01231431999999999) (0.012236125) (0.012229721499999999) (0.011954028500000019) (0.012105003999999989) (0.012168623000000003) (0.012100756000000004) (0.011936827000000011) (0.011914084500000005) (0.012439242499999989) (0.011993496500000006) (0.012074155500000003) (0.012074455500000011) (0.012173842500000004) (0.012243018000000008) (0.012077198499999997) (0.01191224149999999) (0.012395743500000014) (0.012312730500000008) (0.011956265500000021) (0.012057172000000005) (0.011756354999999996) (0.011804990500000001) (0.011781447500000014) (0.011689801) (0.01168864650000001) (0.0118602555) (0.011824899000000014) (0.011723271499999993) (0.011884535999999987) (0.0117017185) (0.011751485500000006) (0.012574791499999988) (0.011771636000000002) (0.01181024750000001) (0.01178576449999999) (0.01175457499999999) (0.011885245000000003) (0.011880991499999993) (0.011775937500000014) (0.011852357499999994) (0.011708669000000005) (0.011918761999999986) (0.011973716499999995) (0.011916928499999993) (0.011864431500000008) (0.0118680345) (0.011724011000000006) (0.012134132000000006) (0.011963287500000017) (0.01236817900000002) (0.01205068949999999) (0.011967170499999999) (0.012091775500000013) (0.011850554499999999) (0.012132996999999993) (0.012253740999999999) (0.012217432999999986) (0.0123605985) (0.012423484499999998) (0.011939169500000013) (0.012206335999999998) (0.012112803500000005) (0.012096464000000015) (0.012146890500000007) (0.012172358999999994) (0.012131533) (0.012163048499999995) (0.012097576500000012) (0.012102065499999995) (0.012321714000000011) (0.011896176999999994) (0.012209119000000004) (0.011892721000000009) (0.012369618999999998) (0.01226155050000001) (0.012162737500000007) (0.012354862499999994) (0.012166059999999992) (0.011958796499999994) (0.012241188) (0.012307572500000002) (0.012060137499999984) (0.011782193999999982) (0.012079618000000014) (0.011703898500000004) (0.011841826) (0.01197301349999999) (0.011735513500000017) (0.012103737000000003) (0.01186801550000001) (0.011850221500000022) (0.011960494000000002) (0.011847801000000005) (0.011849754500000004) (0.0117271065) (0.012062740499999988) (0.012035539500000011) (0.0121476145) (0.011704222) (0.011943456500000005) (0.011656566499999979) (0.011756342000000003) (0.01179563950000001) (0.011696757000000002) (0.011961348999999996) (0.011823716499999998) (0.011748186999999993) (0.012034279500000009) (0.012069289499999997) (0.012023772000000002) (0.011784969499999992) (0.011732691500000003) (0.011755672499999995) (0.012015297500000008) (0.012150913) (0.012484818999999994) (0.012089758499999992) (0.012309292999999999) (0.011966056000000003) (0.01198262) (0.012128059999999996) (0.012691543) (0.012002947) (0.012289300000000003) (0.012216105000000005) (0.012073031500000012) (0.012521740500000003) (0.01200396849999999) (0.012475952500000012) (0.012220991000000014) (0.012012909500000016) (0.012333737499999997) (0.012211436499999992) (0.012037377500000002) (0.012125791499999997) (0.011922359499999993) (0.012288244000000004) (0.012007248999999998) (0.012255193999999997) (0.01228459500000001) (0.012391850999999995) (0.012082863499999999) (0.012090581499999989) (0.01221784699999999) (0.012277845499999995) (0.012029139000000008) (0.011658158000000002) (0.011715743) (0.01209431150000001) (0.011916710000000011) (0.012031429499999996) (0.01175377050000001) (0.011691514) (0.011618264499999989) (0.012054853500000004) (0.0117331995) (0.011810105000000001) (0.011920612999999997) (0.011861965999999988) (0.012033505) (0.011854318500000002) (0.011689353500000013) (0.011770191) (0.012256633000000017) (0.012247433500000002) (0.012044468000000003) (0.011727304500000008) (0.011895979999999987) (0.012024031000000004) (0.011699996500000004) (0.012029118000000005) (0.011901968499999999) (0.011838517500000006) (0.012064099999999994) (0.011784221500000011) (0.01190271200000001) (0.0118412185) (0.012014870999999996) (0.012062220499999998) (0.012226187999999985) (0.012044754500000018) (0.012014770999999994) (0.012165330500000016) (0.012163772999999989) (0.012411966499999996) (0.012079845000000006) (0.012065025000000007) (0.011996456500000002) (0.012049925500000017) (0.012475642999999995) (0.012392544500000005) (0.012223095499999989) (0.011981238500000019) (0.01193148949999999) (0.012167339499999999) (0.012196311000000015) (0.012028613499999993) (0.012108347500000005) (0.012524955500000004) (0.012166259500000012) (0.012163655500000009) (0.012133551999999992) (0.012098321000000009) (0.012301933000000001) (0.012035383499999996) (0.011995918499999994) (0.012090275500000011) (0.012059373499999984) (0.012250364499999986) (0.011775737999999994) (0.011623556999999993) (0.012186955000000013) (0.011883830999999997) (0.011641024) (0.011882354499999997) (0.011978899499999987) (0.011871063500000015) (0.012079996999999995) (0.011889993500000001) (0.011942670000000016) (0.012008289500000005) (0.0117132925) (0.012023259999999994) (0.011926425500000004) (0.011840324999999999) (0.011757504000000002) (0.011879167499999996) (0.011730655500000006) (0.012115865000000003) (0.01215068300000001) (0.011775311999999982) (0.011546777500000008) (0.011890160499999997) (0.011995259499999994) (0.01178071) (0.011685967999999991) (0.011518209499999987) (0.011962024500000001) (0.011813448500000004) (0.012400084500000005) (0.01201497650000001) (0.011790976999999994) (0.011863811000000016) (0.011759363000000009) (0.012090493500000007) (0.012146583500000016) (0.01225493150000001) (0.012210001499999984) (0.011895789500000004) (0.012085870999999998) (0.012093870499999992) (0.012551981500000003) (0.012038213500000006) (0.011900751000000015) (0.012270708500000019) (0.012092460499999999) (0.012020141499999984) (0.01213814199999999) (0.012034522500000006) (0.01190572949999999) (0.012069291999999995) (0.012184515999999992) (0.011909949500000003) (0.012051720500000002) (0.012164275000000002) (0.012143522000000004) (0.012412453000000004) (0.01306707) (0.012193764499999996) (0.012030900499999997) (0.012125854499999991) (0.012300336500000009) (0.012274171) (0.011609422999999994) (0.011891463500000005) (0.011828407999999999) (0.011924680999999993) (0.011667166500000006) (0.011732079000000006) (0.011972906499999977) (0.011721631999999996) (0.012138387) (0.01210682099999999) (0.011922500999999988) (0.011960901499999982) (0.011663643000000001) (0.011783595499999994) (0.011790259000000011) (0.011735369999999995) (0.011694279500000002) (0.011734359499999986) (0.0120095125) (0.011733539500000001) (0.011942821500000006) (0.011594914499999998) (0.011583393499999997) (0.01195737450000002) (0.01174963599999998) (0.011793113499999994) (0.011680199500000002) (0.012301892999999994) (0.012136579499999994) (0.0118828495) (0.011883259999999993) (0.012031862000000018) (0.01213697300000001) (0.01210165199999999) (0.012117394000000004) (0.011964830999999995) (0.011934497999999988) (0.012096515000000002) (0.012162950999999991) (0.012403879499999992) (0.012126632999999998) (0.011949693500000011) (0.012145070000000008) (0.012431283000000001) (0.012446187999999997) (0.012180716000000008) (0.012146907499999984) (0.012333974500000011) (0.012042843499999997) (0.012132725999999996) (0.01214199149999999) (0.012032117999999994) (0.011899748999999987) (0.012014225500000003) (0.012036110999999988) (0.0119021225) (0.012637266500000008) (0.012145547000000007) (0.012231583000000004) (0.01208766700000001) (0.012050910499999998) (0.012182970999999987) (0.01236283299999999) (0.012088717500000012) (0.011726680000000003) (0.011765026500000011) (0.011609337499999997) (0.01176340499999999) (0.011722991500000002) (0.011869980499999988) (0.011978410500000009) (0.011541979500000007) (0.012232062499999988) (0.01214539249999999) (0.011769080999999987) (0.012155410999999991) (0.011659909499999996) (0.01154678649999999) (0.01181118149999999) (0.011798021500000005) (0.012029288999999999) (0.011568238500000008) (0.012040953500000007) (0.011633110000000002) (0.011979046000000007) (0.011836015499999991) (0.011806770000000008) (0.011712543000000006) (0.011763117000000003) (0.0118584375) (0.011883319000000003) (0.011905972) (0.01188431849999999) (0.011843216000000004) (0.011709399999999995) (0.012463709000000017) (0.01189651650000001) (0.012011739500000007) (0.012089641500000012) (0.012089113999999998) (0.012142729500000005) (0.011920196000000008) (0.011917074000000014) (0.012079335999999996) (0.011951853499999998) (0.012149370000000007) (0.012033227500000007) (0.012100789) (0.012318276999999989) (0.012137810999999984) (0.012035562) (0.0121671795) (0.012239570000000005) (0.012088082499999986) (0.012059383000000007) (0.012132820500000002) (0.012079602999999994) (0.011883813999999993) (0.011986507500000007) (0.01210608249999999) (0.012068357000000002) (0.011898406499999986) (0.012095544) (0.012054800000000004) (0.012013477499999994) (0.012248782) (0.012105726499999997) (0.011910152500000007) (0.011557114000000007) (0.011896153999999992) (0.012030048000000002) (0.011764142500000005) (0.01183820649999999) (0.011767883500000006) (0.011671230500000004) (0.011704455000000002) (0.011913738500000007) (0.011948695500000009) (0.012133790999999991) (0.012117581000000002) (0.011989876499999982) (0.011838056999999985) (0.011958755500000001) (0.011866250499999995) (0.011696460500000005) (0.011873326500000003) (0.011980759500000007) (0.011782777499999994) (0.012046230000000005) (0.011632698999999996) (0.011946187000000011) (0.012043017500000003) (0.01176700650000001) (0.011820329500000004) (0.012091186000000018) (0.011896088499999999) (0.0118935545) (0.012066073999999996) (0.0118365775) (0.012137044) (0.01188114550000001) (0.012701524500000005) (0.01221858499999999) (0.012153999999999998) (0.011948184) (0.012387995999999998) (0.012012913) (0.012140788999999985) (0.012413143000000015) (0.012222738999999982) (0.012022821999999989) (0.012355601000000008) (0.012224686499999984) (0.012250592500000018) (0.012399465499999998) (0.01189420649999999) (0.011987539999999991) (0.012148345000000005) (0.012043225500000004) (0.011932801999999992) (0.012080955500000004) (0.011999512500000004) (0.012293166500000008) (0.012115105999999987) (0.012524068) (0.012092621500000011) (0.012001395999999984) (0.012100502499999999) (0.0121509655) (0.011998307) (0.012051281499999997) (0.012119059999999987) (0.011859653999999983) (0.012101631000000002) (0.01182345550000001) (0.011663369999999992) (0.011711279000000005) (0.01168274100000001) (0.011849688000000011) (0.011623996499999997) (0.012025091500000001) (0.011629232000000017) (0.011716451000000017) (0.011839337999999991) (0.012554182999999997) (0.011808686999999998) (0.011936893500000004) (0.011638107999999994) (0.011885735999999994) (0.011785375) (0.011712586499999997) (0.01169830949999999) (0.012029299500000007) (0.011767911000000006) (0.011644076500000003) (0.01175905200000002) (0.011694253500000015) (0.011675496000000007) (0.011955939999999998) (0.011900158500000008) (0.011628827999999994) (0.012121132500000006) (0.011836165499999995) (0.01169007050000001) (0.012084667499999993) (0.012044776000000007) (0.012126291499999997) (0.012212252499999993) (0.012232098999999996) (0.012228720999999998) (0.012029638999999995) (0.012089598500000007) (0.012099421999999999) (0.012363749999999993) (0.012369580000000005) (0.012103535499999998) (0.01230001900000001) (0.012227521500000005) (0.012542483000000007) (0.012254745000000011) (0.011957439) (0.011968741000000005) (0.012222645500000004) (0.01209225500000001) (0.012162024000000007) (0.011932158499999998) (0.012119195499999985) (0.012020139000000013) (0.011998530499999993) (0.012330511999999988) (0.012296527500000001) (0.011965819000000003) (0.011973854500000006) (0.0122174605) (0.012354752499999996) (0.012326150499999994) (0.011659731499999992) (0.011883429499999987) (0.011531240499999998) (0.011895750999999996) (0.011616326999999996) (0.0116671005) (0.011956937) (0.01184582449999999) (0.011814730999999995) (0.011968552500000007) (0.012284258000000006) (0.011639648499999988) (0.011915367499999996) (0.011797553000000002) (0.011804636500000007) (0.011857489999999998) (0.011746302) (0.011899386500000012) (0.011762744000000006) (0.011744626999999994) (0.011699312500000003) (0.011656295499999997) (0.011618743999999986) (0.011829855) (0.012111608499999996) (0.011648167000000001) (0.012317204499999984) (0.012001868499999985) (0.011766293499999983) (0.01192217550000002) (0.011967883999999998) (0.011853453499999986) (0.012091287500000006) (0.012244858999999983) (0.012121564500000001) (0.012079243500000003) (0.011930701499999988) (0.011924102499999992) (0.012080738000000008) (0.012070770000000008) (0.012347927999999994) (0.01223911699999998) (0.012197541499999992) (0.01217291999999999) (0.0121832375) (0.012119900500000017) (0.012389111499999994) (0.012037190999999989) (0.012333042500000002) (0.0121935455) (0.011981063) (0.011899101999999995) (0.011927494499999997) (0.012131402) (0.012254814000000003) (0.01200892599999999) (0.01216160600000002) (0.011920011500000008) (0.011949683000000003) (0.012557614500000008) (0.012062414999999993) (0.012424216499999988) (0.012064525999999992) (0.012321660499999998) (0.012172436499999995) (0.011709066000000004) (0.011591522000000007) (0.011725329500000006) (0.011649145000000014) (0.011884016499999997) (0.011922668499999997) (0.011789181999999995) (0.011956199) (0.011744444499999993) (0.012129166499999997) (0.011834068000000003) (0.011679218000000005) (0.011749721500000004) (0.011649169999999986) (0.011713019000000005) (0.01155181999999999) (0.0116462425) (0.011647470500000007) (0.011857571500000011) (0.011805902000000007) (0.011678016999999999) (0.011944232000000013) (0.01168195000000001) (0.01197105000000001) (0.011806885999999989) (0.011826298500000013) (0.011716051499999991) (0.01165551599999999) (0.011870930999999987) (0.01179441299999999) (0.011793731500000001) (0.01231594200000001) (0.012033357500000008) (0.012105920500000006) (0.012428161500000007) (0.012056152) (0.011990813000000003) (0.01199589650000002) (0.011841346999999988) (0.011995040999999998) (0.012195668000000007) (0.012344482500000017) (0.012161490999999983) (0.012211108000000012) (0.012108993499999998) (0.012590149500000009) (0.012075778499999995) (0.011974323000000009) (0.012001602) (0.012236072) (0.012323484499999995) (0.011994895499999991) (0.01186473099999999) (0.011956273500000003) (0.01196783350000001) (0.012600427999999997) (0.012051320000000004) (0.0122099705) (0.01188583600000001) (0.012088339000000003) (0.012120536000000001) (0.012270206999999991) (0.012100315) (0.011825785500000005) (0.011799733499999993) (0.011566824500000003) (0.011781131499999986) (0.012035888500000008) (0.012061483499999998) (0.011814802) (0.011937998499999991) (0.011833159999999995) (0.011769496500000004) (0.01175029150000001) (0.012124248500000004) (0.01186559999999999) (0.011856093499999998) (0.01206873850000001) (0.012023382999999985) (0.011863132499999998) (0.011845044999999998) (0.011961948) (0.011824658000000002) (0.0118410075) (0.011486534499999992) (0.011818184999999995) (0.011812859000000009) (0.011726998500000002) (0.011829292000000005) (0.012049289500000004) (0.011611267999999994) (0.011693390999999997) (0.011725366000000001) (0.012042553999999997) (0.011946922999999984) (0.012091945499999993) (0.012383236999999991) (0.012542703500000002) (0.0120501425) (0.011894349499999998) (0.011980686000000004) (0.012478477500000001) (0.011847697500000004) (0.012362668000000007) (0.012158505999999986) (0.012513899500000009) (0.01207619800000001) (0.01214692449999999) (0.012299506500000001) (0.012145654500000005) (0.012296009499999996) (0.012120806000000012) (0.012184524500000002) (0.011991062499999997) (0.012464251499999995) (0.012000287499999998) (0.012201466499999994) (0.011899297500000003) (0.011806325499999992) (0.012244874999999988) (0.012130375000000013) (0.011923021500000006) (0.012012764000000009) (0.012060294) (0.012265648000000004) (0.012248724500000002) (0.012286369500000005) (0.011803741500000006) (0.011776043) (0.011941277500000014) (0.011739749000000008) (0.011791194500000005) (0.011707451999999993) (0.011684700000000006) (0.0117580885) (0.012143490999999992) (0.011622990499999986) (0.011728878499999998) (0.0116366215) (0.012218346000000005) (0.0117844015) (0.011985916499999999) (0.011823571000000005) (0.011996745999999989) (0.011750621000000003) (0.011757231500000007) (0.011864799999999995) (0.011982300999999987) (0.011843249500000014) (0.011718838999999995) (0.01165440899999999) (0.012250076500000012) (0.012017387500000004) (0.011726954500000011) (0.012040030500000007) (0.01161454449999999) (0.012279639000000009) (0.01192601850000001) (0.011679328500000002) (0.011890186499999997) (0.011959983500000007) (0.012167207999999999) (0.012217482000000002) (0.011968145) (0.012300142000000014) (0.012342321000000003) (0.012365230000000005) (0.012033217999999984) (0.012073439000000005) (0.012402547) (0.012004877499999997) (0.012347497999999998) (0.012241857499999995) (0.012238948) (0.012409579000000004) (0.011966108500000003) (0.012100698000000007) (0.012193703000000014) (0.012312132999999989) (0.012371943999999996) (0.011908304500000008) (0.012172353999999996) (0.012286841500000006) (0.012599574000000002) (0.012098236999999998) (0.012008695) (0.012243747499999999) (0.012076952500000002) (0.0122469085) (0.012369414999999995) (0.012030195500000007) (0.011731604000000007) (0.011808163999999996) (0.011883214000000003) (0.011838444000000004) (0.011883761499999992) (0.0118610465) (0.0115402275) (0.011691132500000007) (0.012249734499999998) (0.011581816499999995) (0.01169084799999999) (0.011738439000000003) (0.01182785850000001) (0.012049600499999993) (0.012158419000000004) (0.012097086999999992) (0.011794556500000011) (0.011785917999999992) (0.011816435999999986) (0.011588686) (0.011645948500000003) (0.011658297999999997) (0.011726828000000009) (0.011842867500000007) (0.01202128349999998) (0.011913507500000003) (0.011869119500000011) (0.011684137999999997) (0.011712361500000004) (0.011762560500000005) (0.011842804499999984) (0.011944252500000002) (0.012192156499999995) (0.01218752549999999) (0.011998182499999996) (0.012353626000000006) (0.012010713499999992) (0.01208516350000001) (0.011966726999999996) (0.012224364500000001) (0.012251836000000002) (0.012133006499999988) (0.012380469500000005) (0.012111977499999996) (0.012012142000000003) (0.012125199000000003) (0.01221678000000001) (0.012195950499999997) (0.012150155499999996) (0.012123953000000007) (0.012061859500000008) (0.012403324000000007) (0.012398334499999997) (0.012280900999999997) (0.011983986000000002) (0.012161009000000014) (0.012128633) (0.012427595) (0.012213225499999994) (0.012249113499999992) (0.012032487000000008) (0.012378870500000014) (0.012769907499999983) (0.012206793499999993) (0.011785424000000003) (0.012655670499999994) (0.011794742999999996) (0.011933984499999994) (0.012078199500000011) (0.011856905000000001) (0.011706381999999987) (0.011657911000000007) (0.011858709999999995) (0.012003748000000009) (0.011916234499999998) (0.011747615000000003) (0.01179263350000001) (0.011985047999999998) (0.011744067499999997) (0.011851921500000001) (0.011740793999999985) (0.012032625500000005) (0.012019232500000004) (0.011662962999999998) (0.011767581) (0.011940939499999997) (0.01153149199999999) (0.011675198499999997) (0.011968599999999996) (0.011824318000000014) (0.011930558499999994) (0.011851195999999994) (0.011850199999999991) (0.012234405000000004) (0.01182780700000001) (0.011606436999999997) (0.012198455499999997) (0.012135402000000017) (0.011837046000000004) (0.011978467500000006) (0.012003165999999996) (0.012025600999999997) (0.012227564999999996) (0.012152061999999991) (0.012125792999999996) (0.012134163000000003) (0.012156299999999995) (0.01236284750000001) (0.01206926400000001) (0.012403131000000012) (0.012421875000000013) (0.012128242500000011) (0.0123285105) (0.0120745575) (0.012226984499999996) (0.011971418500000011) (0.012029631500000013) (0.011983643500000002) (0.012384212500000005) (0.011876357500000004) (0.012407156500000002) (0.01219394900000001) (0.012194805000000003) (0.011994571499999995) (0.01215928899999999) (0.012268215999999998) (0.01237828000000002) (0.011983320999999991) (0.011746620499999985) (0.011662338499999994) (0.011661364499999993) (0.011946185999999998) (0.011754108500000013) (0.011821804000000005) (0.011775949000000008) (0.012000571499999987) (0.011831272000000004) (0.01187710900000001) (0.011683494999999988) (0.01232925) (0.012055509499999992) (0.011966001000000004) (0.011729628499999992) (0.011933444500000001) (0.01167725850000001) (0.011712573500000004) (0.012091858499999997) (0.011758704499999995) (0.011866865500000004) (0.01169883200000002) (0.011897441500000008) (0.011847759500000013) (0.011789950999999993) (0.012013744999999992) (0.011854220999999998) (0.011783350499999998) (0.011772564) (0.012142454999999996) (0.011895272499999998) (0.011851544499999991) (0.012481016500000011) (0.012026187499999993) (0.01212587100000001) (0.01206853599999999) (0.012120255499999996) (0.012104992999999994) (0.01218485200000001) (0.011981515999999984) (0.012314717000000003) (0.012042058500000008) (0.012142130000000001) (0.0123371845) (0.012297849999999999) (0.0121518335) (0.012175866500000007) (0.012358057000000006) (0.012002213999999997) (0.0123409825) (0.012244379) (0.012286419499999993) (0.012089420999999989) (0.012246768000000005) (0.012397690500000003) (0.012134323000000002) (0.012213819500000014) (0.012281220999999995) (0.012231993499999996) (0.011950206500000005) (0.012088804000000009) (0.012240531999999985) (0.012282825499999997) (0.012017389500000003) (0.011773254999999996) (0.012193227999999987) (0.011948108499999999) (0.011681250500000004) (0.011854679000000007) (0.011732274000000001) (0.011733311499999996) (0.01170371299999999) (0.011825911000000008) (0.011925794000000003) (0.011852195999999995) (0.011982017499999997) (0.012118515999999996) (0.011941311999999996) (0.011965737000000004) (0.012020824000000013) (0.012099682) (0.01179806600000001) (0.011886160499999993) (0.011674693) (0.012011487000000001) (0.011555924500000009) (0.011720042000000014) (0.012150623500000013) (0.011895900000000001) (0.011923620499999996) (0.012047904999999998) (0.011855518500000009) (0.011621702499999997) (0.01195847600000001) (0.011885359499999998) (0.0121491455) (0.0119242975) (0.0119257485) (0.012272356999999998) (0.012553017999999999) (0.012305975999999982) (0.012235082499999994) (0.012107313999999994) (0.011807139500000008) (0.0121300835) (0.01224646) (0.012096016999999987) (0.012598098500000002) (0.012223111000000009) (0.012306499500000012) (0.012215522000000006) (0.012152957999999991) (0.012212857000000008) (0.012225864500000003) (0.012265059500000008) (0.012178617500000002) (0.011990707500000003) (0.011921921499999988) (0.011989779500000006) (0.012267567000000007) (0.012218466499999983) (0.011964818000000002) (0.012233191500000004) (0.012127172499999991) (0.011952456) (0.012150439999999998) (0.012169734000000015) (0.0121856865) (0.011887961500000002) (0.011770713000000002) (0.011626522) (0.011686832000000008) (0.011822747000000008) (0.011684824999999996) (0.011649612500000003) (0.012281843) (0.011797824499999998) (0.011779722499999992) (0.011822950999999984) (0.012057360999999989) (0.012022349500000001) (0.012327421000000005) (0.011843612500000003) (0.01210778400000001) (0.011684398499999984) (0.011823788500000015) (0.011642355500000007) (0.011584644499999991) (0.011713289999999987) (0.011875707) (0.011821286) (0.011670246000000009) (0.011734025499999995) (0.011888216499999993) (0.0117710595) (0.011874999499999997) (0.011679870999999994) (0.011843894500000007) (0.011949981499999984) (0.011747885000000013) (0.01203091399999999) (0.012530203500000003) (0.012144066499999995) (0.011974908000000006) (0.012483947000000009) (0.012217383499999998) (0.012195411000000003) (0.0120291025) (0.012004121499999992) (0.012456529999999993) (0.012045532499999997) (0.012717252499999998) (0.012031297999999996) (0.014370557000000006) (0.012188682500000006) (0.012129850499999997) (0.012275407000000002) (0.011981692500000002) (0.011931883500000004) (0.012273069499999997) (0.012057117500000006) (0.011991498500000003) (0.012320410500000004) (0.012209933000000006) (0.012169844999999999) (0.012397367500000006) (0.012274738999999979) (0.012223869000000012) (0.012208384500000002) (0.012361016500000002) (0.012361636999999995) (0.012261939) (0.011802140000000003) (0.011706662500000006) (0.011773318000000005) (0.011754489500000007) (0.01205100349999999) (0.012359959000000004) (0.011589511499999997) (0.011965803000000011) (0.011844430000000003) (0.012105830500000012) (0.011719921499999994) (0.011709429500000007) (0.011867428499999999) (0.011874287000000011) (0.011795363499999989) (0.011730128500000006) (0.0117961085) (0.01184723800000001) (0.011892023999999987) (0.01239274500000001) (0.012132071500000008) (0.011579033499999988) (0.012103417500000005) (0.011790369500000022) (0.011968865500000009) (0.0118127705) (0.011751929500000008) (0.011681273000000006) (0.011961355999999992) (0.011766560500000009) (0.011980234500000006) (0.012089788000000004) (0.0120752405) (0.012407537499999996) (0.011906618000000008) (0.012228461499999996) (0.01194759699999999) (0.012536487499999999) (0.011907549000000003) (0.012248630499999996) (0.012352173499999994) (0.012057125000000016) (0.012121088000000002) (0.011992289999999989) (0.011954311999999995) (0.012051785499999995) (0.012052149000000012) (0.012167382000000004) (0.012201308000000008) (0.012040523500000011) (0.011949998000000003) (0.012122538500000002) (0.011820677000000002) (0.012067579499999995) (0.012164990500000014) (0.011921022500000003) (0.01219459249999999) (0.012074529499999986) (0.012589969500000006) (0.012056349500000008) (0.012014583500000009) (0.012446577) (0.012599579999999999) (0.012109218000000005) (0.0116274205) (0.011994899999999989) (0.011924921000000005) (0.0118675585) (0.012042721999999992) (0.012046496500000003) (0.011874985500000004) (0.011654661499999996) (0.011825114500000011) (0.011651888) (0.0119038645) (0.012045194499999995) (0.012085911500000004) (0.011963341499999988) (0.011876981000000009) (0.012179846500000008) (0.011698446000000001) (0.011566868499999994) (0.011652985000000005) (0.012085458499999993) (0.011828033500000015) (0.011700513499999995) (0.011797894000000003) (0.011803621000000014) (0.011892360000000005) (0.011883078499999991) (0.011883004000000016) (0.011981690000000003) (0.011626851999999993) (0.011754583499999999) (0.011784701999999994) (0.012133049500000007) (0.012238547000000002) (0.011996220499999988) (0.012162776) (0.012304661000000008) (0.011985982499999992) (0.012081115500000017) (0.012248701500000014) (0.012211557499999984) (0.012194512500000004) (0.012354475000000004) (0.012116612999999998) (0.012288748000000002) (0.0124189195) (0.012525767000000007) (0.012126783999999988) (0.01195473000000001) (0.012199243499999998) (0.012031113999999996) (0.0121896445) (0.011971587500000005) (0.012159700499999995) (0.012152622500000002) (0.012261162000000006) (0.012309001) (0.012324529) (0.012096626499999999) (0.012069814499999998) (0.012278919999999985) (0.012032191499999997) (0.012547712500000002) (0.012287167500000015) (0.012358572000000012) (0.011605769000000002) (0.01191648599999999) (0.011858774000000002) (0.011614188999999997) (0.011979322499999986) (0.011900431000000017) (0.011658401999999998) (0.012271247499999985) (0.011653997499999999) (0.011932803000000006) (0.012273945000000008) (0.011959954500000008) (0.011944043000000001) (0.012255989499999995) (0.011759258500000008) (0.011897305499999997) (0.011764227999999988) (0.011852163499999999) (0.0117980325) (0.011943692999999991) (0.01177019650000001) (0.011718040499999999) (0.01168300550000001) (0.011506924000000002) (0.011875685499999997) (0.011770346500000015) (0.01197047000000001) (0.011804437000000001) (0.011849527499999998) (0.011978655500000004) (0.011716520499999994) (0.011942610000000006) (0.011990771499999997) (0.012013680999999998) (0.012181662999999995) (0.012106454500000002) (0.012300000000000005) (0.012077785499999993) (0.01187025600000001) (0.012330881500000002) (0.012008583000000003) (0.012064719500000015) (0.012197441500000003) (0.012494828) (0.012022314999999992) (0.011960710999999999) (0.012176191500000016) (0.012003825499999995) (0.011788634500000006) (0.011919637499999997) (0.012139309000000001) (0.012175323500000002) (0.011880310500000005) (0.011921578999999988) (0.0127052275) (0.012345624000000013) (0.012247002000000007) (0.012034890499999992) (0.012156622500000006) (0.012312180499999992) (0.01242640049999999) (0.01233235399999999) (0.012178137000000006) (0.012447741499999998) (0.011739217999999996) (0.011723023500000013) (0.011948739) (0.01158612149999999) (0.01163843399999999) (0.012020091499999996) (0.011760917499999995) (0.011799562500000013) (0.0118553765) (0.011877544000000004) (0.011723888499999988) (0.011962856999999993) (0.011724431999999993) (0.012105516999999982) (0.012159548000000006) (0.011840064000000011) (0.011835247000000007) (0.011768149499999991) (0.011894396499999987) (0.011820871999999996) (0.01194007200000001) (0.011572695999999993) (0.012006309499999993) (0.011738000499999998) (0.011791167499999991) (0.012221238999999995) (0.012113405500000007) (0.012003172000000006) (0.011782175500000006) (0.01180246850000001) (0.011976550499999988) (0.011825118999999995) (0.012159495999999992) (0.012268024500000002) (0.01184159550000001) (0.012008935000000012) (0.012098446500000012) (0.01213536250000001) (0.012235266500000008) (0.012048803999999996) (0.012536303499999985) (0.012381696499999997) (0.012074767000000014) (0.01197677400000001) (0.012295584999999998) (0.012154785500000001) (0.0120356395) (0.012142566999999993) (0.0122059885) (0.012099973500000014) (0.01195969999999999) (0.012158530999999986) (0.012162757499999996) (0.012490015000000007) (0.012239144000000007) (0.011928820999999992) (0.01230313999999999) (0.012019324999999997) (0.012236761500000012) (0.012026965000000014) (0.011993483499999999) (0.012050798500000001) (0.01229585200000001) (0.012122098999999997) (0.012057626000000002) (0.011845343999999994) (0.011805932500000005) (0.01182343999999999) (0.011751121000000003) (0.011812067499999995) (0.011643450000000014) (0.011709426500000009) (0.0119369265) (0.011897955500000015) (0.011887482000000005) (0.011980457500000014) (0.01178836400000001) (0.011621736999999993) (0.011972473499999997) (0.011929195500000003) (0.012440405500000001) (0.0118072065) (0.011966304499999997) (0.011690691000000003) (0.011691808999999997) (0.012335195500000007) (0.011766293999999997) (0.011864627500000002) (0.011909892500000005) (0.011834462000000004) (0.01191599850000001) (0.011914580500000008) (0.011961713500000012) (0.011876160499999996) (0.011974995000000002) (0.011640235999999998) (0.012088752500000008) (0.012260421500000007) (0.012129022000000003) (0.012094229499999998) (0.012062912499999995) (0.012435707500000004) (0.011986669499999991) (0.012160784499999994) (0.012360858000000002) (0.012089967000000007) (0.01222707200000002) (0.012616431499999997) (0.012384221999999986) (0.012343558500000004) (0.012079445000000008) (0.012147267999999989) (0.011941575999999995) (0.0120842055) (0.012053395499999994) (0.012109614000000019) (0.012223005499999995) (0.011863033999999995) (0.012218359999999998) (0.012007967499999994) (0.012063901000000002) (0.011983695000000003) (0.012034115999999984) (0.012143528999999986) (0.012174876500000001) (0.012008961000000012) (0.012006680999999991) (0.012020817999999989) (0.012093762499999994) (0.011824849500000012) (0.011781911500000006) (0.011737469500000014) (0.01198321849999999) (0.011915882500000002) (0.011883439999999995) (0.011706511499999989) (0.01165302) (0.012007181000000006) (0.011803668499999989) (0.011826732500000006) (0.011769088999999996) (0.01173621750000002) (0.011613455500000008) (0.011693778000000002) (0.012177764499999993) (0.011692459000000002) (0.011644666499999998) (0.0115822025) (0.011548960999999996) (0.011968471499999994) (0.011566488000000014) (0.011806153999999985) (0.012130514999999994) (0.011840955) (0.011829116) (0.011962067500000007) (0.011736654) (0.011970645500000002) (0.011978027500000002) (0.011705815500000008) (0.012344518999999998) (0.012200480999999999) (0.012095081000000008) (0.0119637415) (0.012051303) (0.01231286799999999) (0.012011984000000017) (0.01236959700000001) (0.012153412500000002) (0.012049437499999996) (0.012146265000000003) (0.012143833999999992) (0.012378564500000008) (0.012085447) (0.012076311499999992) (0.012352897000000002) (0.012124911000000002) (0.011977825499999997) (0.012172972000000004) (0.011995032000000003) (0.012100899999999998) (0.011938534) (0.012036128499999993) (0.011854021500000006) (0.012215293000000002) (0.012267385500000005) (0.012183168499999994) (0.012203910999999998) (0.012114633499999986) (0.012152786499999998) (0.012160361999999994) (0.012214204999999992) (0.011823156000000001) (0.01192244399999999) (0.011883704999999994) (0.011784632500000003) (0.0120485335) (0.011740706500000003) (0.011786039999999998) (0.011872564000000002) (0.011913127999999995) (0.011581382500000001) (0.011749523999999983) (0.011651206499999997) (0.012047929000000013) (0.011593443999999994) (0.011704350500000002) (0.012017004499999998) (0.011810998000000017) (0.011721217000000006) (0.01192272400000001) (0.0118538225) (0.0120270455) (0.011773914499999996) (0.011790521500000012) (0.011664413999999998) (0.011713821) (0.012046353999999995) (0.0117583245) (0.012262351000000005) (0.011700286000000018) (0.011865267499999999) (0.011581936000000001) (0.011893575500000017) (0.01201107849999998) (0.012268857499999994) (0.012042676500000002) (0.011965691500000014) (0.011858773500000003) (0.011970381000000002) (0.011944000999999996) (0.012165244499999991) (0.011890878999999993) (0.012004017000000006) (0.012182587000000009) (0.012171703000000006) (0.012091753499999996) (0.012055746999999992) (0.012079299000000002) (0.011923089499999998) (0.012059284000000003) (0.011858809500000012) (0.012022606499999991) (0.012103390000000006) (0.012017095000000005) (0.012139251500000003) (0.011828189500000003) (0.011947287999999986) (0.012235844999999995) (0.012306270000000008) (0.012128157) (0.012245181000000008) (0.012068345999999994) (0.012127395499999999) (0.0121689725) (0.01220545449999999) (0.011757333000000009) (0.011702424500000003) (0.011798930999999999) (0.012031426499999998) (0.01177338650000001) (0.012004092000000008) (0.011771982) (0.011723876999999994) (0.012041437499999988) (0.0139474775) (0.011669950000000012) (0.011794620000000006) (0.011966934000000012) (0.011875953499999994) (0.011746876999999989) (0.011931963500000003) (0.011625599) (0.011742724999999996) (0.011648373500000003) (0.011774271500000016) (0.011802481000000004) (0.011913883000000014) (0.011791609500000008) (0.012103313500000004) (0.011940784999999995) (0.011730899000000003) (0.011974826500000008) (0.011777515499999988) (0.011750954999999993) (0.012078878000000001) (0.011911303999999998) (0.012162501500000006) (0.017893820000000005) (0.012041053999999995) (0.012123717000000006) (0.012065095999999997) (0.011991857000000009) (0.011923229500000007) (0.011951769000000001) (0.012015052499999998) (0.01189525100000001) (0.012037605000000007) (0.01208157650000001) (0.012034238500000002) (0.012327309500000008) (0.012110465499999987) (0.012084383500000004) (0.011987994499999988) (0.012205849500000018) (0.012067754) (0.011985891999999998) (0.011785448000000004) (0.012091100000000007) (0.011868637000000001) (0.012082273000000004) (0.011892039500000007) (0.01213567800000001) (0.012345579999999995) (0.011939781999999996) (0.012386810500000012) (0.012410815499999991) (0.012209227499999989) (0.012431860000000003) (0.012160542499999996) (0.011675290000000005) (0.011839178000000006) (0.011655699500000005) (0.011909913500000008) (0.0116118365) (0.011930173000000002) (0.011698127000000003) (0.01174087850000001) (0.011975490999999991) (0.011974941999999988) (0.011778787499999999) (0.012051417500000008) (0.011739974) (0.011706782999999985) (0.011966888000000009) (0.012252878500000008) (0.011616142999999995) (0.011924006000000001) (0.012044002499999998) (0.011673826500000012) (0.011703549000000008) (0.011538453500000018) (0.011989464000000005) (0.011911094999999997) (0.01192571399999999) (0.012009747499999987) (0.012174841999999991) (0.011644947500000002) (0.012137061000000018) (0.011996165499999989) (0.012136800500000003) (0.01166368050000001) (0.011998522999999997) (0.012060110999999998) (0.012332690000000007) (0.012261322499999991) (0.011883044499999995) (0.012388567000000017) (0.012005268000000013) (0.012147250499999984) (0.01193378199999999) (0.012061037499999996) (0.0121841315) (0.012130260500000004) (0.012388206999999998) (0.012486836500000001) (0.012056321500000008) (0.012052924999999992) (0.011920039500000007) (0.012122961500000001) (0.012085573500000016) (0.011981302999999999) (0.0122290605) (0.012053140000000004) (0.012187649500000008) (0.012196567500000005) (0.012253313500000015) (0.012147625000000009) (0.012179895999999996) (0.012162053499999992) (0.012257601000000007) (0.012070566500000005) (0.012460656500000014) (0.012086285500000002) (0.011825827499999997) (0.011865271499999983) (0.01201388149999999) (0.011827594499999997) (0.01212906050000001) (0.011815382999999999) (0.011961525000000015) (0.0119199995) (0.01186192350000001) (0.0118223415) (0.012116999500000003) (0.011751671499999991) (0.01209621000000001) (0.011932218499999994) (0.012052949499999993) (0.011753748499999994) (0.011853853999999997) (0.012125730000000001) (0.012318079999999995) (0.011606708499999993) (0.011987000499999984) (0.011772470500000007) (0.012318268999999993) (0.011774079000000007) (0.011821962999999991) (0.011868749999999997) (0.011647896500000005) (0.011932246499999993) (0.011956109500000006) (0.01210573849999999) (0.012023329500000013) (0.011871284999999995) (0.012039957500000004) (0.0121858975) (0.011929394999999995) (0.012147843500000019) (0.012041279000000002) (0.01235036299999999) (0.012070845499999996) (0.011932681499999986) (0.01222018350000001) (0.012246732999999996) (0.012563577000000006) (0.01206307949999999) (0.012035815500000005) (0.012082673500000002) (0.01206177700000001) (0.012201755500000008) (0.01223226799999999) (0.012262391999999997) (0.012118210000000018) (0.012337172499999993) (0.012103826999999998) (0.012391424499999984) (0.012101094499999993) (0.011974679500000002) (0.012382030000000002) (0.012278130999999998) (0.0119697515) (0.012004133999999986) (0.012122369499999994) (0.011979468500000007) (0.012242714500000001) (0.0121638035) (0.011546970000000004) (0.011807532999999981) (0.011915122000000014) (0.011801986) (0.011717695500000014) (0.011828926000000003) (0.011867515499999995) (0.011738893) (0.0119633465) (0.011776217500000005) (0.011788778) (0.01189307199999999) (0.011810154000000003) (0.011598380500000005) (0.011974577) (0.01189556700000001) (0.012211510000000009) (0.011615383000000007) (0.011934224000000007) (0.011748996999999997) (0.011734928500000005) (0.011652204) (0.011856645000000013) (0.011749162000000007) (0.01163217100000001) (0.012191359000000013) (0.012025843999999994) (0.011750901500000008) (0.01205666250000001) (0.011916409000000003) (0.011652304500000002) (0.012129452000000013) (0.012265855999999978) (0.012440268000000004) (0.012041354000000004) (0.012020221999999983) (0.012327373500000002) (0.012296304999999993) (0.012039243000000005) (0.012283189500000014) (0.012155527) (0.012210424499999997) (0.012269710500000003) (0.012226233000000003) (0.012032069999999992) (0.01221409200000001) (0.012024025000000022) (0.012034700500000009) (0.012280571500000004) (0.011940533000000017) (0.012206883499999988) (0.012297230000000006) (0.012085744500000009) (0.01215678449999999) (0.012001430500000007) (0.012162579999999992) (0.01264273049999999) (0.012200498000000004) (0.01222224000000001) (0.012241218499999998) (0.01208083) (0.012109871000000008) (0.012211145500000006) (0.012183053) (0.012146387999999994) (0.012218596499999984) (0.012053572499999998) (0.011892941000000004) (0.011726293499999998) (0.011932838000000001) (0.012093519999999996) (0.01165248499999999) (0.011919509999999994) (0.011739520500000003) (0.011660002500000002) (0.011750115000000005) (0.01191080450000001) (0.011703211500000005) (0.011818911000000001) (0.011684095999999991) (0.011728643499999997) (0.01202152749999999) (0.0117216245) (0.012431167500000007) (0.012084298500000007) (0.012208368499999997) (0.011781864999999989) (0.011639760499999999) (0.011846311000000012) (0.012240023000000003) (0.011934456999999996) (0.011740345) (0.0118068105) (0.01172107650000001) (0.011970372999999992) (0.011941791000000007) (0.012197838000000003) (0.012319121500000002) (0.011920203000000004) (0.012063558500000002) (0.012070086499999994) (0.012207884499999988) (0.012346402499999992) (0.012342115) (0.012465981000000001) (0.0120413895) (0.012176825500000002) (0.012071601000000015) (0.012220773000000004) (0.012048461999999996) (0.012177260499999995) (0.012168709500000013) (0.011731329500000012) (0.011961602000000002) (0.012234588500000004) (0.012507400999999987) (0.012001081999999996) (0.012375525999999998) (0.012229468999999993) (0.012269086500000012) (0.012301089000000001) (0.0120170795) (0.012360575999999998) (0.0121605605) (0.012177029000000006) (0.012107114500000002) (0.0127151145) (0.012187017000000022) (0.011815682000000008) (0.01190247999999998) (0.011871862499999997) (0.011797702499999993) (0.011749384500000001) (0.011744134500000003) (0.012018228000000006) (0.011616461500000008) (0.011694530999999994) (0.012036389000000008) (0.011867663) (0.01178841600000001) (0.011974114500000008) (0.011812516000000009) (0.011869643499999985) (0.011866497000000004) (0.011683840000000001) (0.011915034500000005) (0.012023841000000007) (0.011617231000000006) (0.011925802999999985) (0.012091916000000008) (0.011988061000000008) (0.011692786999999996) (0.011735680999999998) (0.01168802649999999) (0.011697794499999997) (0.012250418499999999) (0.011911589500000014) (0.01171534249999999) (0.011662620500000012) (0.012064610500000003) (0.012344001999999993) (0.012523399000000004) (0.012269983500000012) (0.012171070500000006) (0.012080889999999997) (0.012164157499999995) (0.012011525999999995) (0.012187791000000003) (0.012401318999999994) (0.012321245500000008) (0.012092413999999996) (0.012016911000000005) (0.011966342000000005) (0.012088205500000004) (0.012075148500000008) (0.012154288) (0.012208444999999998) (0.012092983000000002) (0.012023077999999993) (0.012317761999999996) (0.012035748500000013) (0.012279650500000003) (0.012532379499999996) (0.01217608449999999) (0.012110057500000007) (0.012056053499999997) (0.011987192500000007) (0.012293429499999994) (0.012672703000000007) (0.012256968499999993) (0.01224193400000001) (0.012169825999999995) (0.011845684999999995) (0.0117248655) (0.012149518999999998) (0.011835017500000003) (0.011666393999999997) (0.011867743) (0.01168384750000001) (0.011864513999999993) (0.012158534999999998) (0.011851829499999994) (0.011872390499999996) (0.012108753) (0.011704296999999989) (0.011980037999999998) (0.011884884999999998) (0.011730853) (0.011797374499999999) (0.01180370950000001) (0.011870758999999995) (0.011662355499999999) (0.011802359499999998) (0.011692907000000002) (0.011797977500000001) (0.012107703999999997) (0.011869187000000003) (0.012927835500000012) (0.012092477500000004) (0.01176276200000001) (0.011718765999999992) (0.011607910000000013) (0.011746323500000003) (0.011946330000000005) (0.012189358999999997) (0.012145056000000001) (0.012463286500000004) (0.012137767499999993) (0.011955647) (0.012155626500000002) (0.012414693500000004) (0.012176435499999999) (0.012029829000000006) (0.01272586299999999) (0.012206667000000004) (0.012239397500000013) (0.012145030000000001) (0.012065286999999994) (0.012155413500000004) (0.012199337500000004) (0.012284617999999997) (0.012099192999999994) (0.01216114950000001) (0.0121788055) (0.012191599999999997) (0.011972595000000003) (0.012278069500000002) (0.012057535500000008) (0.012179897999999995) (0.012143533499999998) (0.012522411499999997) (0.01208194700000001) (0.012570601000000015) (0.012228368000000003) (0.012179102499999997) (0.012250136999999994) (0.0118461225) (0.011747141000000003) (0.012027875000000007) (0.012209909500000005) (0.012072831000000006) (0.011930189999999993) (0.011876016500000003) (0.0120541495) (0.012143491000000006) (0.011779973999999999) (0.011996061500000002) (0.011844308499999998) (0.011808962499999992) (0.012096152499999999) (0.0117196985) (0.011825862500000006) (0.011753329000000007) (0.011679583499999993) (0.011794048500000015) (0.011786462999999997) (0.011714745000000013) (0.011608372499999992) (0.011780971500000001) (0.0118381355) (0.011857798999999988) (0.012028136000000009) (0.011809724499999993) (0.01163752500000001) (0.012049883999999997) (0.012039955500000005) (0.012031769999999983) (0.012083992499999988) (0.012410906) (0.012014863999999986) (0.012048161500000001) (0.012380685500000002) (0.011962406000000009) (0.011851488999999993) (0.0119328135) (0.012030389999999988) (0.011950844000000016) (0.012066233999999995) (0.012168363000000001) (0.012165032499999992) (0.012168147000000004) (0.012307198999999991) (0.01204190649999999) (0.012158431499999997) (0.012092560500000002) (0.011901669500000003) (0.0120023405) (0.011828470499999993) (0.012020657000000004) (0.012368361000000008) (0.012095357000000001) (0.012220347999999992) (0.012265864999999987) (0.0122272685) (0.012343550500000022) (0.0120419685) (0.012276164499999992) (0.011981899500000004) (0.012346377499999991) (0.012172078500000003) (0.011738905499999994) (0.011722051999999997) (0.011943809999999985) (0.011717443500000008) (0.011621335499999996) (0.011864619000000007) (0.011764476499999996) (0.011758587000000001) (0.011816916999999996) (0.011948624500000005) (0.0117548695) (0.011921617499999995) (0.011826878499999999) (0.011824867000000003) (0.011988413500000003) (0.011916218499999992) (0.011913283999999982) (0.011691847499999991) (0.0118356555) (0.012151895999999995) (0.0118991435) (0.011717749) (0.011990017500000005) (0.011690060500000002) (0.012245458) (0.011758662000000003) (0.011823194000000009) (0.011788697) (0.012004045000000005) (0.012176588999999988) (0.011906285500000016) (0.011676366000000007) (0.011978233000000005) (0.012322295999999996) (0.012000306500000002) (0.012127305000000005) (0.012016849499999996) (0.011994610500000003) (0.012097258000000014) (0.011979893500000005) (0.012147952000000004) (0.011965074500000006) (0.012140100000000001) (0.012025665000000005) (0.012043830500000005) (0.012352594999999994) (0.01216466350000002) (0.012564762999999993) (0.012095846000000007) (0.0121557885) (0.012159788000000005) (0.012118414000000008) (0.011956918499999997) (0.012192085999999991) (0.012322374000000011) (0.011961450499999998) (0.012273155499999994) (0.012225143000000022) (0.012323901499999998) (0.012257965999999995) (0.012140013500000005) (0.012634000000000006) (0.01215042849999999) (0.012148759000000009) (0.011915499499999996) (0.0115565725) (0.011802128499999995) (0.011853582000000001) (0.011930083499999994) (0.0115975465) (0.012088622999999993) (0.011935428499999998) (0.011993562499999999) (0.011848375000000008) (0.012212065999999994) (0.011780161999999997) (0.011816965499999998) (0.011697467000000003) (0.011946536500000007) (0.011940615500000001) (0.011907223999999994) (0.011962727000000006) (0.011723216000000009) (0.011659271499999999) (0.011589576500000004) (0.011923136) (0.012055116000000005) (0.01176968099999999) (0.011795411499999992) (0.011690236499999992) (0.011790319500000021) (0.011903414000000001) (0.01189427450000001) (0.012156417500000002) (0.011691727499999985) (0.011615945500000016) (0.012305055999999995) (0.012124056999999994) (0.0120913265) (0.012116232500000004) (0.012136247500000016) (0.012242608999999988) (0.012067451999999992) (0.012312728499999995) (0.012450223999999996) (0.01206793049999999) (0.012245890500000009) (0.012129397) (0.012200473500000003) (0.01221451950000002) (0.012194376500000007) (0.012272561000000001) (0.011891369499999999) (0.012122572499999998) (0.012070179) (0.011872279) (0.01245148800000001) (0.011989304500000006) (0.012677167000000003) (0.012007607500000003) (0.01202391650000001) (0.012443241500000007) (0.012128035499999995) (0.012367872000000002) (0.012098277000000018) (0.012263214999999994) (0.01204021050000001) (0.012468842999999993) (0.011604871500000002) (0.01188209400000001) (0.01194589900000001) (0.011556007500000007) (0.011684743999999997) (0.012185742) (0.011776615000000004) (0.01186855399999999) (0.011797811500000005) (0.012048813000000005) (0.011939527500000005) (0.012139070499999988) (0.01199626600000002) (0.012133658499999991) (0.011922737500000016) (0.011669983499999995) (0.012138099500000013) (0.011601025999999987) (0.011912325500000001) (0.011864881000000008) (0.011833526000000011) (0.012056441000000001) (0.011635725) (0.011804448499999995) (0.011865854999999995) (0.01167653049999999) (0.011764231) (0.011969180499999996) (0.011576541499999995) (0.011849947999999999) (0.011924317500000003) (0.012193779500000002) (0.011935454000000012) (0.012178739499999994) (0.012233029500000006) (0.012116816000000002) (0.012444084999999994) (0.012253365000000002) (0.0122745415) (0.012359506499999978) (0.012067798000000005) (0.012194079499999996) (0.012114513499999993) (0.011925374000000002) (0.012042317499999997) (0.011978362500000006) (0.012512247000000018) (0.012324901) (0.012344492499999998) (0.012010710500000008) (0.011886443499999996) (0.012036259000000007) (0.012215471000000006) (0.012214657000000004) (0.012085485499999993) (0.011781900499999998) (0.011984446499999982) (0.01212830300000002) (0.012221619000000017) (0.012061550000000032) (0.0120877645) (0.012236154999999999) (0.01186957999999999) (0.012349117000000007) (0.011599535999999994) (0.011682558999999995) (0.011773048499999994) (0.011600414000000003) (0.011622167000000003) (0.011612865) (0.011656928999999996) (0.0119427005) (0.01177399350000001) (0.011694624499999987) (0.011665084000000006) (0.011758998000000007) (0.011810084500000012) (0.01176734850000001) (0.011799611500000001) (0.011897262500000005) (0.011694598) (0.011907568500000007) (0.011520624000000007) (0.01166756200000002) (0.011982856999999986) (0.0162323075) (0.011904655) (0.011838733500000004) (0.011648023499999993) (0.011711242999999996) (0.011852256499999991) (0.011760608000000006) (0.012102481999999998) (0.012175091500000013) (0.011853446500000003) (0.011945931999999992) (0.011712230000000004) (0.012032489499999993) (0.012215596000000009) (0.0118903635) (0.011850123500000004) (0.012209418999999985) (0.011807833000000004) (0.012042517000000003) (0.012669453499999997) (0.011879040000000007) (0.011999344000000009) (0.012117057500000014) (0.012390442500000015) (0.012028701500000002) (0.01200322650000002) (0.0119907135) (0.012330668000000003) (0.012027448499999996) (0.01208213000000001) (0.012324453999999999) (0.011979602999999991) (0.011905518500000004) (0.012193783500000013) (0.012093785999999995) (0.012024752) (0.012557533499999995) (0.012415352000000004) (0.012266560999999995) (0.012138061500000005) (0.012119741999999989) (0.011869996000000008) (0.011942414000000012) (0.011776942499999998) (0.012089221499999997) (0.011605434999999983) (0.011801382) (0.011663299500000002) (0.011639522) (0.011910364500000006) (0.011921781000000006) (0.011827363000000007) (0.012004579500000001) (0.011762028500000007) (0.012095908000000002) (0.011547020500000019) (0.01163196200000001) (0.011699808999999992) (0.012059771499999997) (0.012039581499999993) (0.012054121500000015) (0.011583667499999992) (0.01184788349999999) (0.012246789999999994) (0.011733039) (0.011939341499999992) (0.011693899999999993) (0.011633477000000003) (0.011638830000000017) (0.011895784499999992) (0.012126358500000017) (0.0117724035) (0.011786554000000005) (0.011954846499999991) (0.012383942000000009) (0.012028861500000015) (0.011974142499999993) (0.012033550000000004) (0.012316275499999987) (0.011913668500000002) (0.011875946499999998) (0.011873217999999991) (0.012130339500000004) (0.012162123999999983) (0.012232641999999988) (0.012109578999999981) (0.012704651000000011) (0.012284349499999986) (0.0122716405) (0.012133199999999997) (0.012191721499999988) (0.011775486500000001) (0.011902891500000012) (0.01211380649999999) (0.012034271) (0.012153868000000012) (0.012034456000000013) (0.011957365499999997) (0.012135856) (0.012052826499999988) (0.012249239999999995) (0.012138972500000011) (0.0120345845) (0.012244409499999998) (0.012486075999999999) (0.012221495499999999) (0.012108371000000007) (0.011820027999999996) (0.01198879550000001) (0.01156049250000002) (0.011642009499999995) (0.011548134000000002) (0.011862478999999995) (0.011945083500000009) (0.011951980999999987) (0.011946350499999994) (0.011971923500000009) (0.011886377500000003) (0.01177853000000001) (0.011674457999999999) (0.012262523999999997) (0.011874486500000003) (0.011652846499999994) (0.012113869) (0.011635063000000001) (0.011889519500000001) (0.011664642499999989) (0.011504232999999989) (0.011660090999999997) (0.011597374500000007) (0.011744452500000002) (0.01172433349999999) (0.011762865499999997) (0.011971958500000004) (0.011718494499999996) (0.0117632275) (0.012089363500000005) (0.011673993000000008) (0.01179595800000001) (0.011944991000000002) (0.012373936999999988) (0.012285306999999995) (0.01204743400000001) (0.012084504499999996) (0.01185683350000001) (0.012362785000000001) (0.012373122) (0.012119989000000012) (0.012111130000000012) (0.0120900605) (0.012129010999999995) (0.012250151) (0.011926047000000009) (0.0122174605) (0.012164367500000009) (0.012323427999999997) (0.012190033000000003) (0.012073340000000002) (0.011901473499999995) (0.012483769000000006) (0.012539671999999988) (0.012076482) (0.012078454499999988) (0.012299823500000001) (0.012255465999999993) (0.012180794500000008) (0.012411498499999993) (0.012187787500000005) (0.01218748700000001) (0.012557904999999994) (0.012103422500000002) (0.011682885500000004) (0.011830003000000006) (0.0117040105) (0.011694646000000003) (0.0122368635) (0.01158758850000001) (0.01231407050000001) (0.011745381499999999) (0.011769998500000003) (0.011850814000000001) (0.011725905000000009) (0.012180606499999996) (0.0125374855) (0.011776122) (0.011723376500000007) (0.011988204500000002) (0.01178934000000001) (0.011758235000000006) (0.01189383699999999) (0.011673514499999996) (0.011865117499999994) (0.011582515500000001) (0.011847080499999996) (0.011659674999999994) (0.012024978500000005) (0.01173584250000001) (0.011758839500000007) (0.011811995000000006) (0.012084909500000005) (0.011829673999999998) (0.011854400000000001) (0.0117747255) (0.0121959165) (0.012175745500000015) (0.012031008999999995) (0.012338618999999995) (0.012023392000000008) (0.0119780845) (0.012196115000000007) (0.012285453000000002) (0.012094224) (0.012074854499999996) (0.012189050000000007) (0.012257682500000006) (0.012160390000000007) (0.012258158499999991) (0.01197090349999999) (0.012190971499999995) (0.012099520000000002) (0.012027156499999983) (0.01202046200000001) (0.012092972499999993) (0.012004054) (0.011988414999999988) (0.012407668999999996) (0.011997035000000003) (0.01211367549999999) (0.012578561000000002) (0.012295893999999988) (0.012290805500000002) (0.012232078499999993) (0.012016679500000002) (0.012017845499999999) (0.012740599500000005) (0.011764965999999988) (0.011915447499999995) (0.011879513000000008) (0.01173922899999999) (0.011664704500000012) (0.011802304999999999) (0.011717277999999998) (0.01157978450000001) (0.011850137499999996) (0.011790657499999996) (0.012018056999999999) (0.011836614499999995) (0.011715581000000017) (0.012085296499999995) (0.011932909500000005) (0.011743062999999998) (0.011655903499999995) (0.011834405500000006) (0.012291015000000002) (0.011640904000000007) (0.011690174499999997) (0.011700995000000006) (0.012280208) (0.011601005999999997) (0.011826230999999993) (0.012107082000000005) (0.011602461499999994) (0.011752208) (0.011790488999999987) (0.012580454000000005) (0.011789091000000002) (0.011905540999999992) (0.012020918000000005) (0.012191770500000004) (0.011986356000000004) (0.012093182000000008) (0.012001273000000007) (0.012160897500000004) (0.012187490500000009) (0.011891648000000019) (0.012298082999999987) (0.0124842005) (0.01224842100000001) (0.011996698000000014) (0.012007642999999998) (0.012299159000000004) (0.012523777000000014) (0.012337294500000012) (0.011811318000000001) (0.011866505) (0.012202804999999997) (0.011904480499999995) (0.011883848000000002) (0.01216971850000001) (0.011917183000000012) (0.012122231999999997) (0.0119413305) (0.012099155) (0.012221599999999999) (0.01222954150000001) (0.012329374500000004) (0.012244934000000013) (0.012251394499999999) (0.01203338100000001) (0.011769027000000001) (0.012191863499999997) (0.011643133999999986) (0.01166361149999999) (0.011741314000000003) (0.011891475499999998) (0.011785515999999982) (0.012192805999999987) (0.012060824000000012) (0.011840201499999994) (0.0116320595) (0.011931024499999998) (0.012238645500000006) (0.011704760500000008) (0.011740676000000005) (0.011724587499999994) (0.01231872249999999) (0.0115700985) (0.011805143000000004) (0.011990803499999994) (0.011610731500000013) (0.011697308000000003) (0.01185675750000001) (0.011894585000000013) (0.011931276000000005) (0.012071365) (0.011830761499999995) (0.01226324849999999) (0.011716772499999986) (0.0120970455) (0.011735702) (0.012019769) (0.012188017999999995) (0.012095967499999999) (0.012616822) (0.01199137950000001) (0.011964847) (0.01194637250000001) (0.011894673500000008) (0.01228133449999999) (0.012122095) (0.012175064) (0.012332581000000009) (0.012584599000000002) (0.012098196500000005) (0.011931505500000009) (0.012163139000000017) (0.012141449499999998) (0.011910239000000003) (0.01192135250000001) (0.012194844499999996) (0.012067629499999996) (0.011989698000000007) (0.012274750500000015) (0.011801950000000005) (0.011910173499999996) (0.01212247150000001) (0.012013561000000006) (0.012392837000000018) (0.011970443999999983) (0.012393498999999988) (0.0120395155) (0.011978259000000005) (0.012455949500000008) (0.0117752005) (0.012009442500000009) (0.011834840500000013) (0.011790745000000005) (0.011808285000000002) (0.011740986500000009) (0.012114153500000002) (0.011900095500000013) (0.011904875999999995) (0.0118652915) (0.012079771500000003) (0.011738656) (0.012026556999999993) (0.011749263499999996) (0.011958128500000012) (0.012052600999999996) (0.011889063499999991) (0.012273129000000008) (0.011581163000000005) (0.01186983250000001) (0.011862577999999999) (0.011654893999999999) (0.011759882499999999) (0.011774300000000001) (0.011933423999999998) (0.011867035499999998) (0.011670186000000013) (0.011704621999999998) (0.011626889500000001) (0.0119515065) (0.01199396400000001) (0.011872093500000014) (0.01205468250000001) (0.012211980499999997) (0.0127624135) (0.011938511499999985) (0.01203187750000001) (0.011892607) (0.012166037500000004) (0.012109745500000019) (0.012235690999999993) (0.012057405499999993) (0.012085914500000003) (0.012319561000000007) (0.012415591500000003) (0.012081928500000005) (0.012040061000000005) (0.012426861000000011) (0.012177191000000004) (0.011951350999999999) (0.011978438000000008) (0.011981326) (0.012380868499999989) (0.012034768500000015) (0.012253120500000006) (0.01246828450000001) (0.012304943499999985) (0.012195105500000011) (0.012174320500000002) (0.012226617000000009) (0.01222629) (0.012119182500000006) (0.012195418) (0.01221465699999999) (0.011824751500000008) (0.011898820500000004) (0.011778490500000002) (0.01196866249999999) (0.011766882999999992) (0.011958100500000013) (0.01165732600000001) (0.012404613499999995) (0.011886960000000016) (0.012019040500000008) (0.012223670499999992) (0.011707046999999998) (0.011828197999999998) (0.011608331999999999) (0.0119315475) (0.011753895499999986) (0.011764820500000023) (0.011750374999999993) (0.01179334999999998) (0.011827824) (0.011735646500000016) (0.01175071250000001) (0.01187625249999999) (0.011663595999999998) (0.012246010000000002) (0.011899039) (0.0117237595) (0.012063559499999987) (0.011811580500000002) (0.01191183450000001) (0.011934674499999992) (0.011806949499999997) (0.0120868945) (0.01201270850000001) (0.01199359400000001) (0.012216450000000004) (0.012150757999999998) (0.012524867499999995) (0.012252104) (0.012032930000000011) (0.012119602000000007) (0.012270933499999997) (0.01205797850000001) (0.012266336999999988) (0.012083009000000006) (0.01202748549999999) (0.012106859499999997) (0.012412436500000013) (0.011896318500000003) (0.012099052999999999) (0.011916350000000006) (0.012233962499999987) (0.012019252500000008) (0.0123190725) (0.012148406) (0.011909890999999992) (0.01211433349999999) (0.012407886000000007) (0.012541015999999988) (0.014728679500000008) (0.012113825500000022) (0.012054522499999998) (0.012214412999999993) (0.012446196500000006) (0.011841484) (0.011636719000000004) (0.01233991899999999) (0.011826615499999998) (0.011683310500000002) (0.01188099799999999) (0.011864214000000012) (0.011955905999999988) (0.011943063000000018) (0.011862083499999995) (0.01204196199999999) (0.011718034000000002) (0.012045922) (0.012059628499999989) (0.011850067500000006) (0.011691768499999977) (0.01189122450000002) (0.011624883999999988) (0.011636886999999999) (0.011822258500000002) (0.012099462499999991) (0.0115544645) (0.011876920999999985) (0.011985928999999992) (0.01197070800000001) (0.012042286499999999) (0.011937854500000011) (0.011693724499999988) (0.011793023000000014) (0.011749811999999998) (0.012054351000000005) (0.011867629000000005) (0.012052089000000002) (0.012126353999999992) (0.012201979500000001) (0.011896058000000001) (0.012362257000000015) (0.012332278500000002) (0.012077499000000005) (0.011995527000000006) (0.012416035499999992) (0.012424613000000015) (0.011984100000000011) (0.012282804500000008) (0.012123425500000007) (0.012115075000000003) (0.01208335549999999) (0.012315461) (0.012066256000000011) (0.012246282999999997) (0.011925633000000005) (0.012250099499999986) (0.0119494235) (0.012052303) (0.011875276500000004) (0.012335368500000013) (0.012285135500000016) (0.012025440499999998) (0.012350246500000009) (0.012189539999999999) (0.01222697049999999) (0.012419796499999997) (0.012380016499999993) (0.012204268000000018) (0.011778709999999998) (0.011871994499999997) (0.011637877500000005) (0.011983871000000007) (0.011974580499999998) (0.011801704999999996) (0.011826250499999996) (0.011532236000000001) (0.011947814000000001) (0.011776889000000013) (0.011663697) (0.011973349499999994) (0.012034038999999996) (0.012065865000000009) (0.011726270499999997) (0.012086247499999994) (0.011901531000000007) (0.011722295000000008) (0.011789574999999997) (0.011947371500000012) (0.01162410450000001) (0.011881472500000004) (0.011776836000000013) (0.011763329499999989) (0.011859923499999994) (0.011841881499999998) (0.011696633999999984) (0.011749641000000005) (0.01222570549999999) (0.012269312000000004) (0.012174184500000004) (0.011723594000000004) (0.012494095999999996) (0.011904428500000008) (0.012617072500000007) (0.011984638500000006) (0.012142545000000005) (0.011918301499999992) (0.012155612499999996) (0.012184609999999998) (0.012090349) (0.012164986999999988) (0.012086907000000008) (0.012470243999999991) (0.012395490500000009) (0.012173326500000012) (0.011960341) (0.012432987500000006) (0.011945670000000005) (0.012111685000000011) (0.012177172) (0.012079779999999998) (0.011953090999999999) (0.012414166500000004) (0.012038097999999997) (0.012109950500000008) (0.012304231999999998) (0.012155124500000003) (0.012318125999999999) (0.012277481999999992) (0.012493379999999998) (0.0120684145) (0.01229718199999999) (0.01230948300000001) (0.011954557500000004) (0.012499819999999995) (0.011809632) (0.011774571499999997) (0.012299451500000003) (0.012029025999999984) (0.011645875) (0.011608120500000013) (0.011854718) (0.012006051500000003) (0.011711937499999991) (0.011899851499999989) (0.01167307799999999) (0.011743213000000002) (0.012106687000000005) (0.011839949499999988) (0.011765453500000009) (0.01163242099999999) (0.011819782000000001) (0.011973872999999996) (0.011828850000000002) (0.012093008500000002) (0.011847058999999993) (0.011635209000000007) (0.011999107999999994) (0.01200110700000001) (0.012315796000000004) (0.012039371499999993) (0.01181372850000001) (0.012010070499999997) (0.011863827499999993) (0.011848892499999986) (0.0122782585) (0.01203304849999999) (0.012250554499999997) (0.011887162999999992) (0.01204081400000001) (0.012285954000000002) (0.011985739499999995) (0.012269005999999999) (0.012312838999999992) (0.012544014000000006) (0.012117965999999994) (0.012325282499999993) (0.012161559500000002) (0.012063024499999991) (0.012108893999999995) (0.012530441999999989) (0.012324131499999988) (0.012002264000000012) (0.01196213900000001) (0.012050579000000006) (0.012236101) (0.01199301350000001) (0.011802108499999991) (0.012098494000000001) (0.012147934499999999) (0.012383483500000014) (0.012150872499999993) (0.012204120499999999) (0.012349131) (0.01216630299999999) (0.012225030000000012) (0.012777834499999988) (0.012153170500000005) (0.012095964) (0.012001916000000015) (0.011535950000000003) (0.011681877000000007) (0.011886999499999995) (0.011819923999999996) (0.011939111499999988) (0.012128532499999997) (0.011885512) (0.011577837000000007) (0.011904439999999988) (0.011948408499999993) (0.011906788500000015) (0.01197988699999998) (0.012130616999999996) (0.011800296000000002) (0.011785096000000009) (0.011799872000000003) (0.011872352000000003) (0.01187307650000001) (0.011880791000000002) (0.012144277500000009) (0.011657314000000002) (0.011802003500000005) (0.011936025499999989) (0.011986702000000002) (0.011876524000000013) (0.012013573999999999) (0.01170943549999999) (0.011985098999999999) (0.011968566499999986) (0.012136591000000002) (0.011948117499999994) (0.012217042999999997) (0.012166883000000003) (0.012472632000000011) (0.012204520499999996) (0.011841606500000018) (0.012698542999999993) (0.012079349500000003) (0.012402152) (0.012325089500000011) (0.012225704500000004) (0.012220044500000013) (0.012056136999999995) (0.012380249999999982) (0.012220442999999984) (0.012076342000000004) (0.012507435000000011) (0.011977809500000006) (0.012257310500000007) (0.01213085400000001) (0.011936290499999988) (0.01212136300000001) (0.012189446000000007) (0.012285603999999992) (0.012382290000000004) (0.012457683499999997) (0.012267506999999997) (0.012446416000000002) (0.012154640999999994) (0.012464048000000005) (0.012164743499999991) (0.011799944999999992) (0.011845676999999999) (0.011542753000000003) (0.011822640499999995) (0.011817413999999998) (0.011781191999999996) (0.011680857500000003) (0.011700030499999986) (0.012089138500000013) (0.011788993499999997) (0.011947103499999986) (0.01191802850000001) (0.012403646500000004) (0.01187720199999999) (0.011882415499999993) (0.011802621) (0.0117439035) (0.01174336849999999) (0.011754314000000002) (0.011716664500000001) (0.011769195999999996) (0.012084744000000008) (0.011677529000000006) (0.012065356) (0.012323540000000008) (0.011870040000000012) (0.011852271000000011) (0.012650902500000005) (0.012015114499999993) (0.011705136500000018) (0.011933859000000005) (0.012108385) (0.011891861000000004) (0.012379872) (0.011957703) (0.012135348000000004) (0.011945119000000004) (0.012161822500000002) (0.011972057499999994) (0.012145274999999997) (0.012119329500000012) (0.011969490000000013) (0.012156068500000006) (0.012035699499999997) (0.012271626500000007) (0.0123729115) (0.012450815500000004) (0.012114241000000012) (0.012410693500000014) (0.012063688500000003) (0.012039167500000003) (0.012182343499999984) (0.012032560499999997) (0.01185694200000001) (0.012413031500000005) (0.012231709000000021) (0.012420883500000007) (0.012285193) (0.012170233500000002) (0.012027853000000005) (0.01216155449999999) (0.012267782000000005) (0.012298813000000006) (0.012153010000000006) (0.011726122000000005) (0.011772263500000005) (0.011659939999999994) (0.011686170999999981) (0.011972811) (0.011929309999999999) (0.011826224499999996) (0.011960544000000004) (0.011781914000000004) (0.012113620999999991) (0.011962841999999987) (0.011949674000000007) (0.0117979) (0.0119811155) (0.011861912500000002) (0.011829909) (0.011890820499999996) (0.0116838165) (0.011586033999999995) (0.01164862400000001) (0.011731621999999997) (0.0116868475) (0.011852447500000016) (0.011653318999999995) (0.011663204499999996) (0.011808476499999998) (0.011779973499999999) (0.011809010499999995) (0.01190783899999999) (0.011770907499999997) (0.011905492500000003) (0.012040980499999993) (0.01221629049999999) (0.012131808499999994) (0.012235028000000009) (0.012061455500000012) (0.01191845900000002) (0.012139602500000013) (0.012177244500000003) (0.012203461999999998) (0.012519296000000013) (0.012104299499999999) (0.01220585099999999) (0.012082700000000002) (0.012300895000000006) (0.012332415) (0.012170872) (0.012252654000000002) (0.012176587500000016) (0.012050979500000003) (0.012324420499999988) (0.011988005999999995) (0.012010774000000002) (0.012202242999999988) (0.011987046000000015) (0.01243830650000001) (0.012375960500000005) (0.012249118999999989) (0.012275229499999998) (0.011967106500000005) (0.012186650000000007) (0.01215106349999999) (0.012079882) (0.012134636500000004) (0.011771738500000004) (0.011552126499999996) (0.01173782050000001) (0.011653182999999998) (0.011657093499999993) (0.011660801000000012) (0.011981867499999993) (0.011710539999999992) (0.011871094999999998) (0.011942689000000006) (0.011783201000000007) (0.011936277000000009) (0.011779458000000007) (0.011922462499999995) (0.011862421999999997) (0.01211155500000001) (0.011894104999999988) (0.011814754499999996) (0.011577713000000003) (0.012131933499999997) (0.011816810000000011) (0.011876977999999996) (0.012167016499999989) (0.011946900999999996) (0.011883512999999998) (0.011941081500000006) (0.011889122500000002) (0.012141859500000005) (0.0119809835) (0.011840588999999999) (0.012042927000000009) (0.011925085999999988) (0.012427965499999999) (0.012059899999999998) (0.012261144999999987) (0.012053390999999997) (0.012175285499999994) (0.012312265500000003) (0.012043133000000011) (0.012093592999999986) (0.012381647499999995) (0.01230756899999999) (0.012175240500000004) (0.012654378999999993) (0.012186963499999995) (0.0121701325) (0.012459777500000019) (0.012200923499999988) (0.012049721499999999) (0.012420696000000009) (0.011979605000000004) (0.012127212499999998) (0.011957105999999995) (0.0122699805) (0.012431558499999995) (0.012162121999999997) (0.01204978150000001) (0.012621447999999993) (0.012049105500000004) (0.012096788499999997) (0.012083566000000004) (0.012551101999999995) (0.012054190500000006) (0.012323534000000011) (0.011960543500000004) (0.01176123350000001) (0.011652623499999987) (0.011929328500000003) (0.011750343499999982) (0.011667955499999993) (0.011680220000000005) (0.011804547999999984) (0.011920010499999995) (0.011735612499999992) (0.011954937499999985) (0.011714975500000002) (0.0118579335) (0.011892774499999995) (0.012175795000000003) (0.011715692500000013) (0.011818556500000008) (0.01164896) (0.011795963500000006) (0.01213835549999999) (0.011621623499999997) (0.011922582499999987) (0.0117440335) (0.011668261000000013) (0.012285794000000003) (0.011766203500000003) (0.012202688500000003) (0.011874034000000006) (0.011733150500000011) (0.012140129000000013) (0.011774794500000005) (0.011919165500000009) (0.012039426000000006) (0.012349582499999998) (0.012205613000000004) (0.012548833500000009) (0.012054318500000008) (0.012123971500000011) (0.011902024000000011) (0.012070192999999993) (0.012233596499999999) (0.012374034000000006) (0.012211321000000011) (0.01201521450000001) (0.012083767500000009) (0.012064828) (0.01208516250000001) (0.012040035500000004) (0.011988433999999992) (0.012415810999999985) (0.011949235500000002) (0.01212358600000002) (0.012409048500000006) (0.011936480999999985) (0.012073348999999997) (0.012322319499999998) (0.012091165999999987) (0.012021267999999988) (0.012209145500000004) (0.012333500999999997) (0.01228697799999999) (0.012193570499999987) (0.01207953249999999) (0.012313660000000018) (0.012053991) (0.011701150000000007) (0.011578270500000001) (0.011909094499999981) (0.011610063500000017) (0.011913844999999992) (0.011774041999999985) (0.011559171499999993) (0.011675749) (0.011866866000000004) (0.011781947999999987) (0.011829119999999999) (0.012029005999999995) (0.011710254000000003) (0.01192435850000001) (0.011967518499999996) (0.011817913499999985) (0.011831114000000004) (0.011726767999999999) (0.011678033000000004) (0.012243565000000012) (0.011747500499999994) (0.011960938500000004) (0.012114287000000001) (0.01182828250000001) (0.011730256499999994) (0.011682614999999993) (0.012060259500000003) (0.011826825000000013) (0.011905607499999998) (0.011783037999999996) (0.011878932499999995) (0.012205044500000012) (0.011885514) (0.012100477000000012) (0.011954876500000003) (0.012064731500000009) (0.011940772499999988) (0.011916884500000002) (0.012099760999999987) (0.01215484800000001) (0.012189244000000002) (0.012463549000000018) (0.012118619999999997) (0.011954930000000002) (0.012069384500000002) (0.012026250999999988) (0.012112617500000006) (0.012141975499999985) (0.012353760000000005) (0.012150124499999998) (0.013336818000000014) (0.012169729500000004) (0.011887384000000015) (0.012086794499999998) (0.01237094250000001) (0.012157381999999994) (0.012059969000000004) (0.012183161499999998) (0.012088552500000002) (0.011978950500000002) (0.011985731999999999) (0.012439207999999993) (0.012099770999999995) (0.011761565000000002) (0.011607830999999999) (0.011913245500000003) (0.011752428999999995) (0.011878834000000005) (0.011592717000000002) (0.012243251499999996) (0.011770688500000015) (0.011704824500000002) (0.011990304999999993) (0.011943972999999997) (0.011852625000000006) (0.012003332500000005) (0.012094174499999999) (0.01171573649999999) (0.011701429499999999) (0.011894302500000009) (0.011667223000000004) (0.011591209500000005) (0.011729128500000005) (0.011733320000000005) (0.011814731499999995) (0.011685161999999999) (0.012016428499999995) (0.011881109) (0.0118171475) (0.011804930000000005) (0.011931808500000002) (0.011694266000000009) (0.011717291000000005) (0.011690212500000005) (0.012330415999999997) (0.011983599999999997) (0.012070835999999988) (0.012148415999999995) (0.012038520000000011) (0.012586457999999995) (0.012127661499999998) (0.011980229499999995) (0.01203550049999999) (0.012174498499999992) (0.01210198749999998) (0.012140246000000007) (0.012290880500000004) (0.0120750565) (0.012046560000000012) (0.012239140499999995) (0.012025072000000012) (0.011978958500000012) (0.01245939800000001) (0.012003571000000005) (0.012107659500000006) (0.012178090000000003) (0.012042859000000003) (0.011894923500000001) (0.011994660500000004) (0.012117741999999987) (0.012198894000000002) (0.012429582999999994) (0.011911612000000016) (0.011932939000000004) (0.012092524000000007) (0.012043668499999993) (0.0124050245) (0.011597308) (0.011780288) (0.01183877600000001) (0.011934318499999999) (0.011617557) (0.01195163199999999) (0.011696924999999997) (0.012197675000000019) (0.011666971500000012) (0.011716451500000002) (0.011748942499999998) (0.011829260500000008) (0.0117148735) (0.011942652500000012) (0.011929057499999993) (0.011825859500000008) (0.01174243350000001) (0.012150623999999985) (0.011813551000000005) (0.011737673500000018) (0.011804645000000002) (0.011986556499999995) (0.011592164500000002) (0.011633857499999997) (0.011789327500000002) (0.011948628500000003) (0.011841886999999995) (0.011657713) (0.011877672499999992) (0.012009047499999995) (0.011922654000000005) (0.011939505500000003) (0.012138504499999994) (0.012028030999999995) (0.011876452499999995) (0.011873291999999994) (0.01231583700000001) (0.012213130500000002) (0.012076827999999984) (0.012171349999999984) (0.012264913000000002) (0.012136887499999999) (0.011982393999999993) (0.012183575500000002) (0.012209489500000004) (0.012000070000000015) (0.011968407) (0.012637705500000013) (0.011827528500000017) (0.011908315000000017) (0.012726203000000005) (0.011957309999999999) (0.011867654500000005) (0.012198767999999999) (0.01210377700000001) (0.012162054999999991) (0.012374688499999995) (0.012151237500000009) (0.011934928000000011) (0.012143443999999975) (0.012333669500000005) (0.012280380499999993) (0.0120139675) (0.012359000499999995) (0.012033446000000003) (0.011690956500000002) (0.01160063) (0.011908625000000006) (0.011733248500000001) (0.011955757999999997) (0.011902015999999987) (0.011899735499999994) (0.011969224500000014) (0.011730000000000004) (0.011779732000000001) (0.011832448499999995) (0.011849288999999999) (0.012034893000000005) (0.011863772000000009) (0.012128897500000013) (0.011879752000000007) (0.011958275500000004) (0.011872510999999988) (0.011775736999999994) (0.011927081499999992) (0.011588334999999991) (0.011955209000000008) (0.011699650000000006) (0.011763560999999992) (0.011834287499999999) (0.011918353999999992) (0.011615288000000001) (0.01184287399999999) (0.011888871499999995) (0.011840527500000017) (0.011793692999999994) (0.01196423549999999) (0.01220876600000001) (0.0122882505) (0.011919739999999998) (0.012128940500000018) (0.012263770000000007) (0.011916845999999995) (0.01181497849999999) (0.012211844500000013) (0.012117657500000004) (0.012517224500000007) (0.012036003500000003) (0.012161363500000022) (0.012050298000000001) (0.011969460500000001) (0.012268868000000002) (0.012029886000000004) (0.012160666000000014) (0.012304569000000001) (0.011881232500000005) (0.012019111500000013) (0.012284512499999997) (0.012012495499999998) (0.011968482499999988) (0.012172464500000008) (0.012256939499999994) (0.012253381500000007) (0.012143283500000004) (0.0121066695) (0.01213222550000001) (0.012011331) (0.012073529999999999) (0.011954515499999985) (0.011776140500000004) (0.011593409499999999) (0.011707110000000007) (0.011728815000000004) (0.01207715799999999) (0.011726188499999998) (0.011872738000000008) (0.01216059650000001) (0.011670892500000002) (0.011839067499999995) (0.011760946499999994) (0.012058746500000009) (0.011919565000000007) (0.012018343999999986) (0.012102212499999987) (0.011634407500000013) (0.011585054499999997) (0.011696097000000003) (0.0115900325) (0.011601202500000005) (0.011630554499999987) (0.011703971000000007) (0.012428594500000001) (0.011708268499999994) (0.012035570999999995) (0.011802444499999995) (0.011592651999999995) (0.011971910000000016) (0.012003717999999997) (0.011886571499999984) (0.011752117500000006) (0.012072048499999988) (0.011966157499999991) (0.01225370599999999) (0.011896371000000003) (0.01206283250000001) (0.012123664000000006) (0.011830446499999994) (0.011855049000000006) (0.012164833999999985) (0.012026951000000008) (0.012257915500000008) (0.012186059000000013) (0.012267246499999995) (0.011992089499999997) (0.012148647999999984) (0.012054121999999987) (0.012237549) (0.0119246405) (0.012100500000000014) (0.012287925499999991) (0.012048767000000016) (0.011899442499999996) (0.012255378999999997) (0.011977764500000002) (0.012116037499999996) (0.012080196000000015) (0.012418648000000018) (0.012018333000000006) (0.011909423000000002) (0.012273170499999986) (0.011914163000000005) (0.012024850500000003) (0.011623246000000018) (0.011787117999999985) (0.01166928199999999) (0.011593577499999994) (0.011762375000000005) (0.011492650500000007) (0.011638957500000005) (0.0117581395) (0.011877056499999983) (0.01182130399999999) (0.011625232) (0.01182926899999999) (0.011908266) (0.012145733999999991) (0.011973543500000003) (0.011721083999999993) (0.011819515500000002) (0.011779769499999995) (0.011562841500000018) (0.011868441999999993) (0.0118480485) (0.011889090000000005) (0.01157080299999999) (0.011840931999999998) (0.011731736500000006) (0.011785783500000008) (0.011737403500000007) (0.012111025999999997) (0.011798142500000011) (0.011849486499999992) (0.011706174) (0.012071750499999992) (0.011972960000000005) (0.0123227645) (0.012001070499999988) (0.012012028500000008) (0.012236719499999993) (0.01206509) (0.012042136500000009) (0.01227338900000001) (0.01216201900000001) (0.011953804499999998) (0.011908372000000014) (0.012153568500000003) (0.012473019000000002) (0.012215881499999998) (0.012322449000000013) (0.012473725000000005) (0.011905816499999985) (0.012054214999999993) (0.01231648099999999) (0.01221826600000002) (0.01220540149999999) (0.011869259500000007) (0.011876454999999994) (0.01212675249999999) (0.0120051895) (0.01225607649999999) (0.012250755999999988) (0.012125458000000006) (0.012056604499999998) (0.012620568999999998) (0.012211151500000003) (0.012318218000000006) (0.011741343999999987) (0.011897634500000004) (0.011628846499999998) (0.011799391000000006) (0.011792121000000003) (0.011583244500000006) (0.011803307499999985) (0.011673410499999995) (0.011921342500000001) (0.011921797500000011) (0.011674550000000006) (0.011667871999999982) (0.011766259500000001) (0.011893349499999997) (0.012010506500000004) (0.011775528999999993) (0.011909546000000007) (0.01176003099999999) (0.011927893000000009) (0.011858575999999996) (0.011728304999999994) (0.011730832999999996) (0.011733952500000006) (0.011974239500000011) (0.011685140499999996) (0.011657349999999997) (0.01210244349999999) (0.0120975465) (0.011666734999999998) (0.011712972500000002) (0.011774001999999992) (0.011950483499999998) (0.011954199999999998) (0.012156224999999993) (0.012138887500000015) (0.012052014000000014) (0.012084893999999985) (0.012148318000000005) (0.01214793950000001) (0.012284050500000004) (0.012171945000000003) (0.0119641105) (0.012851355500000008) (0.012050537) (0.012271022500000006) (0.011883085500000001) (0.012216020499999994) (0.012134487499999999) (0.012211276499999993) (0.012187239000000002) (0.011830712500000007) (0.012178808) (0.012247561500000004) (0.011957929999999992) (0.012318140000000005) (0.012085748999999993) (0.012344653000000011) (0.01238221099999999) (0.012212158) (0.012615484999999996) (0.012009642500000015) (0.0123279055) (0.012054818500000009) (0.011984600499999998) (0.012159107500000002) (0.011915353500000017) (0.011877407500000006) (0.012116826999999997) (0.011651640500000005) (0.011905319499999997) (0.011688344999999989) (0.011756350999999998) (0.011642998999999987) (0.011954596499999998) (0.012079166500000002) (0.011967299999999986) (0.011658863000000005) (0.011986410500000003) (0.011986973499999998) (0.011918491000000003) (0.011812635500000002) (0.012163477499999992) (0.011720454499999991) (0.013548636500000003) (0.011745918499999994) (0.011919856000000006) (0.011734825500000018) (0.011739317499999999) (0.011977625499999991) (0.01177948550000002) (0.012177366500000009) (0.011702723500000012) (0.011715820499999988) (0.012256585) (0.012087113999999996) (0.011675713000000004) (0.011866915499999992) (0.011934444000000002) (0.012373624) (0.012030257500000016) (0.011971552999999996) (0.012057019500000002) (0.012074165999999997) (0.012002077999999985) (0.012177228499999998) (0.012116895500000016) (0.012077151499999994) (0.012130551000000003) (0.01221304849999999) (0.012338376500000012) (0.012027360999999986) (0.012218800500000002) (0.011965582000000002) (0.012010500000000007) (0.012186138000000013) (0.012095884499999987) (0.012206962000000002) (0.012414593000000002) (0.012122783999999984) (0.012186297999999998) (0.0120810165) (0.012272399000000017) (0.012067210999999994) (0.012169081000000012) (0.012476143500000009) (0.012332983499999992) (0.012166470499999998) (0.0121048775) (0.012009684999999992) (0.011991743000000013) (0.011596684499999996) (0.011763901000000007) (0.011830359499999998) (0.011751391) (0.011761902000000005) (0.011768131000000001) (0.012046647000000008) (0.012103455999999985) (0.011789463) (0.011938007000000014) (0.011800499999999992) (0.012238641000000008) (0.011984117499999988) (0.012139728000000002) (0.011888217500000006) (0.011870326) (0.012050075500000007) (0.011863692000000009) (0.011946250500000005) (0.012051951500000005) (0.011706385999999985) (0.011563816500000004) (0.011877919500000014) (0.011880395499999988) (0.011726312500000002) (0.012499350000000006) (0.012038405500000002) (0.011937253499999995) (0.012037178999999995) (0.011939884999999997) (0.012095221000000003) (0.012278544500000002) (0.011901573000000013) (0.012042832000000003) (0.011904181) (0.01192222350000001) (0.012180872999999995) (0.0120427865) (0.012279036500000007) (0.011928823000000005) (0.012218132000000007) (0.012061574500000005) (0.012171725000000008) (0.012390300000000007) (0.01234399450000001) (0.012266742999999983) (0.012113946) (0.0122492545) (0.012148208000000008) (0.011974847999999996) (0.011914294500000006) (0.012267294999999998) (0.012174851) (0.011894128500000004) (0.012087153500000003) (0.012016575000000015) (0.012263045) (0.012059199499999992) (0.012133971500000007) (0.012355552499999992) (0.012434460000000008) (0.012009031000000003) (0.011807955500000009) (0.011623149) (0.0118601745) (0.011799380499999998) (0.011837684000000001) (0.01179339750000001) (0.011998656999999996) (0.011731770999999988) (0.011860917500000012) (0.011934963500000006) (0.012251685499999998) (0.011979075000000006) (0.011802403000000003) (0.011789346000000006) (0.011703624499999996) (0.012253072500000003) (0.012043363000000001) (0.011708496000000013) (0.011798760500000005) (0.011938206500000006) (0.011730562999999986) (0.011748276500000002) (0.011884587500000002) (0.012040207000000011) (0.011977125500000005) (0.012017735500000015) (0.011795478000000012) (0.011852664499999999) (0.011923262000000004) (0.011871557000000005) (0.011828654000000008) (0.011888262499999996) (0.012016406999999993) (0.0121602445) (0.012051530000000005) (0.01200036900000001) (0.011983807500000013) (0.012413353500000002) (0.012063523499999992) (0.012223441500000001) (0.012020127500000005) (0.012290709999999996) (0.012070420999999998) (0.012447847999999997) (0.012060030999999999) (0.012475905500000009) (0.011985965000000001) (0.012121666500000003) (0.012585513000000007) (0.012286238000000005) (0.012374743500000007) (0.012541822500000008) (0.012142213499999999) (0.011912975500000006) (0.012030840000000001) (0.012222806000000003) (0.012299406499999999) (0.012376984500000007) (0.01208526800000001) (0.012195044000000016) (0.012009899000000004) (0.012344590000000003) (0.012293704000000003) (0.012126660499999997) (0.011605248999999998) (0.011834026499999997) (0.011612858000000004) (0.011819640499999992) (0.011930716499999994) (0.01184519349999999) (0.011610151499999999) (0.011753667999999995) (0.011790410500000001) (0.011735798500000005) (0.011799571999999994) (0.011793045000000002) (0.011930917500000013) (0.011908013000000009) (0.011922515500000008) (0.0119343965) (0.011845884000000015) (0.011772421000000019) (0.011835599000000002) (0.011778992500000002) (0.011868709500000005) (0.011994367000000006) (0.011721267999999993) (0.011804654000000012) (0.012162834499999997) (0.011996212999999992) (0.012028581499999996) (0.011973242000000009) (0.011923181000000019) (0.011847873499999995) (0.0118274815) (0.012127907000000007) (0.012364938499999992) (0.012073168500000009) (0.012017399999999998) (0.011932792499999997) (0.012056030499999995) (0.012123912) (0.012311665999999985) (0.01195570750000001) (0.012201845000000003) (0.012243251499999983) (0.012311561499999985) (0.012183482499999995) (0.012510222000000001) (0.01204530949999999) (0.012142437000000006) (0.01225828050000001) (0.012432223999999978) (0.012238957999999994) (0.012389362000000015) (0.012368530999999988) (0.012108708499999982) (0.012197757500000003) (0.012023366499999993) (0.011907053000000015) (0.012285702499999995) (0.012104391999999992) (0.012245320000000004) (0.012390388499999988) (0.012383752499999998) (0.012229359499999995) (0.012376102) (0.012064231499999994) (0.011697698000000006) (0.01174040350000001) (0.011635237999999992) (0.011654755500000002) (0.01152278700000002) (0.011848776500000005) (0.011633961500000012) (0.011827268500000002) (0.012120113500000002) (0.011743064500000011) (0.011799417000000006) (0.011735964999999987) (0.012082247000000018) (0.011833963500000003) (0.012019623999999993) (0.011993089500000012) (0.011974298000000022) (0.011930603500000012) (0.012072309500000003) (0.011620620999999998) (0.012060574500000004) (0.0116864515) (0.011872768999999991) (0.011843020499999996) (0.011769855999999995) (0.011747455500000004) (0.012128176500000004) (0.012024583500000005) (0.0121508605) (0.011897379) (0.011782832999999993) (0.01214128099999999) (0.012129216499999998) (0.012027858500000016) (0.01226256199999999) (0.012075913999999993) (0.012355533000000002) (0.011976199999999992) (0.012043468000000002) (0.012063935999999997) (0.012121434499999986) (0.012092694500000015) (0.012284182000000005) (0.012348909499999991) (0.012065757499999996) (0.012152439000000001) (0.011999251999999988) (0.012185456499999997) (0.01232448450000001) (0.012337865000000003) (0.012122436500000014) (0.01196596150000001) (0.012243647499999996) (0.012040896999999995) (0.012156094499999992) (0.011947461499999992) (0.012235396499999995) (0.012081081000000007) (0.01224073399999999) (0.012266076) (0.012404912500000004) (0.012109301500000003) (0.012181431000000006) (0.012058466000000004) (0.011657171999999993) (0.01163734050000001) (0.011803677500000012) (0.011755340500000003) (0.012001298000000007) (0.011598085500000008) (0.011816740500000006) (0.011664182499999995) (0.012139907999999991) (0.011911218000000001) (0.012071423500000011) (0.011752750000000006) (0.011805930500000006) (0.011746542499999998) (0.011852361499999992) (0.011917077999999998) (0.011675129000000006) (0.011861198000000003) (0.011833997999999984) (0.011614529999999998) (0.01184826) (0.011772731500000008) (0.011999421999999996) (0.011993666) (0.011708543499999988) (0.012213930999999997) (0.011793554499999997) (0.011885235999999993) (0.011781925500000012) (0.011958038500000004) (0.0116771445) (0.011847398499999995) (0.011905842999999985) (0.011907229999999991) (0.012075079500000002) (0.012019697499999996) (0.01201004550000001) (0.01222057650000001) (0.012217347000000003) (0.0122606725) (0.012037697) (0.012333702500000016) (0.01239593550000001) (0.01202052100000002) (0.012232757499999997) (0.012492469500000006) (0.012187993500000008) (0.01222355) (0.012140881000000006) (0.012114620000000006) (0.012013411500000001) (0.01226656999999999) (0.011986177) (0.0122448785) (0.012536229999999995) (0.011916558999999993) (0.01202851549999999) (0.012088059999999998) (0.012304345499999994) (0.012370675999999997) (0.012204814500000008) (0.012186439499999993) (0.012335846999999997) (0.012056166500000007) (0.011803187499999993) (0.011810490000000007) (0.0117239955) (0.011990079500000014) (0.012404320999999996) (0.011733708499999995) (0.011851913000000006) (0.011835147000000004) (0.0118623905) (0.011894906999999996) (0.011839961999999996) (0.011978003999999987) (0.011740780499999992) (0.011861673000000003) (0.011739090499999993) (0.011892336000000003) (0.012028141999999992) (0.01235958949999999) (0.012207902999999992) (0.011965150499999994) (0.011753751500000006) (0.011982141499999988) (0.01187361499999999) (0.011861946999999998) (0.012170382499999993) (0.011976187999999999) (0.012136857000000001) (0.011880972000000017) (0.011975386500000004) (0.012005188) (0.011922156500000003) (0.012011125499999997) (0.012220692499999991) (0.01196747799999999) (0.011992529999999987) (0.012478726999999995) (0.012106582500000004) (0.01217789950000002) (0.011976251000000007) (0.012050780499999983) (0.012266627000000002) (0.012016938500000005) (0.012504982499999998) (0.0120174745) (0.012231182499999993) (0.012211593499999993) (0.012033675000000008) (0.012080388000000011) (0.01191423200000001) (0.012115181999999988) (0.012173828499999997) (0.012114122500000005) (0.012186091999999996) (0.012163936) (0.012041126) (0.012285296000000015) (0.011981883000000013) (0.012001322999999994) (0.011935342500000001) (0.012399878999999989) (0.012119234499999992) (0.01236298050000001) (0.012165017499999986) (0.012364305000000006) (0.012012289499999995) (0.011713227500000006) (0.011572004999999996) (0.011954885999999998) (0.011803274000000002) (0.011772636500000003) (0.011809577999999987) (0.011655864000000002) (0.012101064499999994) (0.011743531000000001) (0.011871525999999993) (0.012435788500000003) (0.011911916499999994) (0.012032277500000008) (0.0117651805) (0.011829119499999999) (0.011896444500000006) (0.01169155849999999) (0.011797116499999996) (0.011846125499999999) (0.012265505499999996) (0.011828318000000004) (0.011873902499999991) (0.011970067999999986) (0.011897988499999998) (0.011955633999999993) (0.011857494499999996) (0.011722833500000016) (0.011785026500000004) (0.011802017999999997) (0.011864321999999983) (0.011900181999999995) (0.012126410000000004) (0.012007460500000011) (0.012241067499999994) (0.011963531) (0.0121606145) (0.01200757849999999) (0.012099192999999994) (0.012153043000000002) (0.01213363499999999) (0.012106159000000005) (0.0125715515) (0.012144228500000007) (0.01226414399999999) (0.012076338500000006) (0.012538216000000005) (0.01202963500000001) (0.01194266699999999) (0.012201547999999993) (0.01244161299999999) (0.011973949999999997) (0.011992765500000016) (0.012043393) (0.012143131499999987) (0.011995689000000004) (0.01206022000000001) (0.011944180499999998) (0.012309637500000012) (0.012200973500000004) (0.012326315500000018) (0.012191987000000001) (0.012538103999999994) (0.012065699500000013) (0.011725107499999984) (0.011785134500000002) (0.011869340500000006) (0.012081322999999991) (0.012432343499999998) (0.011925952000000004) (0.011859575499999997) (0.01229566) (0.011696329000000005) (0.011816130499999994) (0.011941198) (0.012040896999999995) (0.011843947500000007) (0.011693668500000004) (0.01210886600000001) (0.011882192500000013) (0.011764164999999993) (0.011588608) (0.011633367500000005) (0.011788266500000005) (0.011737610499999995) (0.011866522000000004) (0.011956165000000005) (0.011798560999999985) (0.011882493499999994) (0.011708234500000012) (0.011879309500000004) (0.011732865000000009) (0.011805463000000002) (0.011826514999999996) (0.012063530499999989) (0.011629006000000011) (0.01198436500000001) (0.012141010499999993) (0.012054107499999994) (0.012034377499999999) (0.01213494050000001) (0.01224260399999999) (0.012119610000000003) (0.012412937999999998) (0.0122449335) (0.012176311499999995) (0.012222110000000008) (0.012420262000000001) (0.011913315500000007) (0.012298882999999997) (0.012207685999999995) (0.012163469499999996) (0.012141180999999987) (0.011885251) (0.012566652000000011) (0.012039186499999993) (0.012557101999999987) (0.011944393499999997) (0.011930728500000001) (0.011988102000000014) (0.012062391000000006) (0.012617442500000006) (0.012394843500000016) (0.012133413499999995) (0.012462011000000009) (0.012117882499999996) (0.01247947150000002) (0.012053807500000027) (0.011758709000000006) (0.011582170000000003) (0.011671036999999995) (0.011856504500000004) (0.011623532500000006) (0.011675496999999993) (0.011939345500000004) (0.011812673500000023) (0.011655261) (0.011693879000000004) (0.011825969999999991) (0.011979856499999983) (0.011677308499999983) (0.012122731000000012) (0.011905644500000007) (0.012072847000000012) (0.011776309499999985) (0.012075011999999996) (0.011694574999999999) (0.011859818999999994) (0.011759251499999998) (0.012141681000000001) (0.011873205499999998) (0.011680792500000009) (0.011772951000000004) (0.012145747999999998) (0.011899782499999997) (0.011724330000000019) (0.01179100700000002) (0.012103346000000001) (0.012073825999999996) (0.011901037500000017) (0.011884139000000002) (0.012212830500000008) (0.012146232500000007) (0.011890318999999996) (0.011929698500000002) (0.012155352499999994) (0.011913202499999997) (0.012269532499999986) (0.012071400999999995) (0.012103106499999988) (0.012419696500000008) (0.012058685999999999) (0.012316324500000017) (0.012366792000000001) (0.012470004000000007) (0.012021443500000006) (0.01243891100000001) (0.011872691500000004) (0.01207121500000001) (0.012063575000000007) (0.012128105) (0.012044769499999997) (0.0120448695) (0.012200532499999986) (0.012207408500000003) (0.012631836500000007) (0.012177782999999998) (0.012074111499999998) (0.012196596500000004) (0.012079435999999985) (0.011964422000000002) (0.012393631500000002) (0.011788083500000004) (0.0121273925) (0.0121181915) (0.011764358500000016) (0.011964329499999996) (0.011724772999999994) (0.011702773000000014) (0.011980175999999995) (0.012218772000000017) (0.012352706000000005) (0.011836081999999998) (0.011876026999999997) (0.011863024499999986) (0.011901085500000005) (0.012087739) (0.011842365999999993) (0.011819969999999999) (0.012006213500000001) (0.011836928999999996) (0.011979047000000007) (0.011974008500000008) (0.011842864500000008) (0.011723103500000012) (0.011836139499999995) (0.011679141500000004) (0.011940976000000006) (0.011771869000000004) (0.01177205449999999) (0.011720511500000003) (0.011913858) (0.011950494000000006) (0.011901018999999999) (0.012002275499999993) (0.011996991499999998) (0.012068133499999995) (0.012350206000000002) (0.011956096000000013) (0.012130447500000002) (0.012031657999999987) (0.012151471499999997) (0.012416745500000007) (0.012344078000000008) (0.0121042955) (0.012506350500000013) (0.012079027999999992) (0.011896833499999995) (0.01227313499999999) (0.012390416000000001) (0.012032832499999993) (0.0119302305) (0.011995019999999995) (0.011979922500000004) (0.011920204500000003) (0.01245271299999999) (0.011970253500000014) (0.01189698950000001) (0.012142751500000007) (0.012397679500000008) (0.012699493499999992) (0.012259456500000016) (0.012166284000000013) (0.011930974499999997) (0.012026700999999987) (0.012457320499999994) (0.01196762550000001) (0.011776017499999986) (0.011601575500000003) (0.011911597999999995) (0.0117614885) (0.01183084899999999) (0.01158115500000001) (0.011743380999999983) (0.011613509000000008) (0.011870542499999998) (0.011858273500000002) (0.012056852499999993) (0.011638862) (0.011699522000000004) (0.011664888499999998) (0.011835694000000008) (0.011950321000000014) (0.011884544499999997) (0.011900903000000004) (0.011946167500000007) (0.011563960999999998) (0.011649758999999996) (0.011652847500000008) (0.011904155) (0.011667479000000008) (0.012085659999999998) (0.011847621499999988) (0.012061678499999992) (0.011986743499999994) (0.0120256485) (0.012002275500000006) (0.011726629500000002) (0.01227062999999999) (0.012159681999999991) (0.01228259100000001) (0.01222787950000001) (0.012276599999999999) (0.012036978500000003) (0.012050217499999988) (0.012531282500000004) (0.012035228000000009) (0.012265205999999987) (0.012115541499999993) (0.012273561500000002) (0.012297218499999998) (0.012347699500000003) (0.012284177999999993) (0.012484895499999996) (0.012271796500000001) (0.012159029500000001) (0.011967077500000006) (0.012151153499999998) (0.012289706500000011) (0.012176870499999992) (0.012116932499999997) (0.011987159999999997) (0.012257652500000008) (0.012249734999999998) (0.012193417499999984) (0.011969148499999999) (0.012294944500000002) (0.012266230500000003) (0.0123249515) (0.012252703000000004) (0.011936194000000011) (0.0117945245) (0.011653011500000018) (0.011851632500000014) (0.011825954500000013) (0.011662521500000009) (0.011997740499999993) (0.011790590000000004) (0.012205055999999992) (0.011895956499999999) (0.0117331445) (0.011890923500000011) (0.011649089999999987) (0.011667411500000002) (0.011873066500000001) (0.011688545500000008) (0.011785121499999995) (0.012064585500000002) (0.011639618000000004) (0.011683836500000017) (0.011794370999999998) (0.011861031999999994) (0.011725022500000015) (0.011702665500000015) (0.011883299000000014) (0.01174492549999999) (0.011879580500000014) (0.01195790649999999) (0.011741189000000013) (0.011708435500000017) (0.011769644999999995) (0.011799284500000007) (0.0121620645) (0.012046465500000006) (0.012304941) (0.011996027499999992) (0.01201827300000001) (0.011951826999999998) (0.011961435999999992) (0.0121011065) (0.0120656185) (0.012214493999999992) (0.012269322500000013) (0.01228264350000001) (0.0120497195) (0.012129821000000013) (0.012495027500000006) (0.012279593999999991) (0.01209236150000001) (0.012295003499999999) (0.011994970000000008) (0.012206654999999983) (0.012105544499999996) (0.012102034999999997) (0.0128146185) (0.012137899499999993) (0.012178518499999999) (0.012054523000000011) (0.012405584499999997) (0.012170213) (0.012242013499999996) (0.011890007999999994) (0.012079302) (0.012373454999999992) (0.0116940985) (0.011612621000000004) (0.011624482500000005) (0.011798967999999993) (0.011736205999999999) (0.011738724999999992) (0.01160310249999999) (0.011565521500000009) (0.01164683000000001) (0.011942788499999996) (0.011936648999999994) (0.011866411999999993) (0.011673320000000001) (0.011766105499999999) (0.011996743500000004) (0.011675756999999981) (0.011854401500000014) (0.011754308000000005) (0.011636733999999996) (0.011887623000000014) (0.011744122499999995) (0.011632232000000006) (0.011624621500000001) (0.011913765000000007) (0.011893004499999998) (0.011636264999999993) (0.011851618000000008) (0.011982436999999999) (0.01208503050000001) (0.012147463999999997) (0.011877008499999994) (0.011703513999999984) (0.012154156) (0.012119919999999992) (0.012151137499999992) (0.012288661000000006) (0.011970525499999995) (0.012750709999999998) (0.012002390500000001) (0.012604320000000002) (0.012438822000000002) (0.012326566000000011) (0.01215632550000001) (0.012160820000000003) (0.012103151000000006) (0.011994995000000008) (0.012243908499999984) (0.012442891499999997) (0.011877273000000008) (0.012147935999999998) (0.012064939499999996) (0.012060008999999997) (0.012133079500000005) (0.012006001000000002) (0.011963302499999995) (0.012007259999999992) (0.011973113499999993) (0.012084038500000005) (0.012262594499999988) (0.012104128000000006) (0.012071391) (0.01224139299999999) (0.012215664000000001) (0.012145147499999995) (0.011663598999999997) (0.011634825500000001) (0.011763016000000001) (0.011802322500000004) (0.011967787999999993) (0.011593656499999994) (0.012049671000000012) (0.01198908700000001) (0.011705619499999986) (0.011747468499999997) (0.011802050000000008) (0.012054216999999992) (0.011826012999999996) (0.011622765500000007) (0.011974192999999994) (0.011898839500000022) (0.011674453000000001) (0.011990957999999996) (0.011803215000000006) (0.011812016000000009) (0.011688921500000005) (0.011526356500000001) (0.0118738855) (0.01192897100000001) (0.012028718499999994) (0.011678399500000006) (0.0116306605) (0.011905924499999998) (0.01157512699999999) (0.012000540000000018) (0.011978449000000016) (0.01191233550000001) (0.0121810725) (0.012274299000000002) (0.012094138000000004) (0.012099707499999987) (0.012019963000000009) (0.01215066549999999) (0.011956298500000004) (0.012185972500000017) (0.012127125000000002) (0.012203041499999998) (0.012076826000000013) (0.012301359000000012) (0.0121194845) (0.012029359000000003) (0.012357921999999993) (0.01206675800000001) (0.012340095499999995) (0.011888506000000007) (0.012033639000000013) (0.012392117499999994) (0.011868545999999994) (0.012050779499999997) (0.012182055999999997) (0.011927552500000008) (0.0121824985) (0.011964303999999995) (0.01203151000000001) (0.01203625450000001) (0.012157947000000016) (0.012172500000000003) (0.012225806500000005) (0.012323543000000006) (0.012006398500000001) (0.011941726) (0.011665136999999992) (0.011792937500000003) (0.011876246500000007) (0.01178038150000002) (0.011866883500000008) (0.0119554615) (0.011770778499999995) (0.011620832499999997) (0.011995489999999998) (0.011936894500000003) (0.011676352000000015) (0.011842450500000004) (0.011710949500000026) (0.011891304000000005) (0.012219306999999999) (0.011688000500000004) (0.011754924) (0.012180523499999985) (0.011873132499999994) (0.011818037000000003) (0.012088004) (0.011734838499999997) (0.011975550000000015) (0.011949703500000006) (0.011755888999999992) (0.011613857000000005) (0.012070509999999993) (0.012075244500000012) (0.01173099000000001) (0.011933488999999992) (0.012398180999999994) (0.012101139999999996) (0.012002067499999991) (0.011748397499999993) (0.01203628100000001) (0.011813866499999992) (0.011998338499999997) (0.012043959500000007) (0.012069531500000008) (0.012333456999999992) (0.012124673500000002) (0.01217053799999998) (0.012109968999999998) (0.012446014000000005) (0.012189565) (0.012209305000000004) (0.011923530999999987) (0.012003848999999997) (0.01236298299999998) (0.012547304499999995) (0.012271299) (0.012529915500000002) (0.012151492500000013) (0.011964576000000005) (0.012077271000000014) (0.012293376499999994) (0.012143089999999995) (0.012340102999999991) (0.0122037745) (0.012360839000000012) (0.012264790499999997) (0.012263733499999999) (0.011885661000000006) (0.011941445500000009) (0.011647626500000008) (0.011570936500000004) (0.011667608999999995) (0.011800789999999992) (0.011769878999999997) (0.011976021000000003) (0.011912872500000005) (0.012017596999999991) (0.011840991999999995) (0.011757658000000004) (0.011793029499999996) (0.011774982000000017) (0.012111973500000012) (0.011785733999999992) (0.01181713999999999) (0.012155568000000005) (0.012018960499999995) (0.01176542550000001) (0.011884022000000008) (0.011572453499999996) (0.01164861099999999) (0.011727947000000002) (0.011722267000000008) (0.01188146100000001) (0.012120700499999998) (0.011825810000000006) (0.011845329499999988) (0.011842807999999996) (0.012008778499999997) (0.01199615250000001) (0.012044450499999998) (0.0125180545) (0.012211220499999995) (0.011984264500000008) (0.011974185000000012) (0.0119115625) (0.012411946499999993) (0.012055357000000003) (0.011968352000000002) (0.011893279500000006) (0.012433453999999997) (0.012792246999999993) (0.012403706) (0.012191162500000005) (0.012058589999999994) (0.012390914500000003) (0.012207109500000007) (0.011957717000000007) (0.012042016500000016) (0.012123585000000006) (0.012257511999999998) (0.012088903999999984) (0.012096564000000004) (0.012281612999999997) (0.011984230999999998) (0.01212894049999999) (0.012132344500000003) (0.012047700499999994) (0.011977376000000012) (0.01201658600000001) (0.01209450649999999) (0.012481073499999995) (0.011832907500000003) (0.011644409500000008) (0.011912268500000003) (0.011823780999999992) (0.01187983849999999) (0.011885620500000013) (0.011905976999999998) (0.011835280500000003) (0.011878695999999994) (0.011859084999999991) (0.011954742000000004) (0.011862695000000006) (0.011877308000000017) (0.012022946500000006) (0.0117536835) (0.011715644000000011) (0.011828480000000016) (0.011649455000000017) (0.011512539000000002) (0.011854430999999999) (0.011634504500000004) (0.0118847225) (0.011678142000000002) (0.011716118999999997) (0.011773883999999998) (0.011791480999999993) (0.012477451) (0.011878359500000005) (0.012127543000000018) (0.011809743499999997) (0.011872172000000014) (0.011878645000000021) (0.011970228) (0.01230002849999999) (0.012035486000000012) (0.012097447999999997) (0.012146780499999996) (0.012204213500000005) (0.011936859499999994) (0.012276426999999993) (0.012132688000000003) (0.012443916500000013) (0.011969159000000007) (0.012383711000000006) (0.012260336999999996) (0.01201423850000001) (0.012148658000000007) (0.012145950500000002) (0.01221264200000001) (0.012181130500000012) (0.012928643500000003) (0.011976472500000002) (0.011919087999999994) (0.012178441999999998) (0.012114603000000015) (0.012225345499999998) (0.01210599200000001) (0.012248750000000017) (0.012342434999999999) (0.012127002499999998) (0.012022652500000008) (0.012262945000000011) (0.012322878499999995) (0.012086632) (0.011759885500000011) (0.01197617699999999) (0.011727840500000003) (0.011849991500000004) (0.011579169) (0.011787879000000001) (0.0117803135) (0.011703557000000003) (0.011982542000000013) (0.012119449500000004) (0.011777829000000004) (0.011915722000000004) (0.01195518000000001) (0.012361410500000017) (0.01184028799999999) (0.012261003500000006) (0.011766089500000007) (0.011815218500000002) (0.011561022500000004) (0.011958112499999993) (0.011611894499999997) (0.011864849499999996) (0.011689099000000008) (0.011545382500000007) (0.012086730500000004) (0.011978086999999984) (0.012384417999999994) (0.01194203299999999) (0.012170014499999993) (0.012312278999999995) (0.012510667000000003) (0.011765880999999992) (0.0120404385) (0.0121742995) (0.012197913500000004) (0.012220484000000004) (0.011969595999999999) (0.012340814000000006) (0.011931347500000009) (0.011959992500000002) (0.012181709499999999) (0.012038227499999998) (0.012089540999999995) (0.012001432000000006) (0.012219484500000002) (0.0123026205) (0.012136668500000003) (0.011991777999999995) (0.012014887499999988) (0.01228992750000002) (0.0124582565) (0.012215514999999996) (0.012226927499999984) (0.012184928999999997) (0.012134302) (0.0121462465) (0.012084495) (0.011949386500000006) (0.012185576500000003) (0.012176273999999987) (0.012200863000000006) (0.012050164000000002) (0.012077180999999979) (0.01220561349999999) (0.011729192999999999) (0.011715244500000013) (0.011752940500000003) (0.011962806000000006) (0.011939198499999998) (0.011843729999999997) (0.011842159000000005) (0.011824390500000004) (0.011877422999999998) (0.011728772999999998) (0.011855227999999995) (0.011763626999999999) (0.011717234499999993) (0.011856193499999987) (0.011613044500000003) (0.01196839949999999) (0.011785709499999991) (0.011831285999999996) (0.011602374999999998) (0.011958760999999998) (0.011837714499999999) (0.011706597000000013) (0.011870455000000002) (0.011900699) (0.0117634675) (0.012088113500000011) (0.011885041499999999) (0.011733430500000003) (0.011905372500000011) (0.011801185999999991) (0.011903774499999992) (0.011999829500000003) (0.012297786000000005) (0.012014189000000008) (0.012315816000000007) (0.012164156500000009) (0.012364768999999998) (0.012055257) (0.012163994500000011) (0.011885171500000014) (0.01207461550000001) (0.01223448299999999) (0.012242164999999985) (0.011919339000000015) (0.012037988999999999) (0.012514737999999997) (0.012212636499999999) (0.012678607499999994) (0.01206739350000001) (0.012092935500000013) (0.012185317999999987) (0.012186883499999981) (0.012355276999999998) (0.012044603499999987) (0.01225544449999999) (0.012197331500000005) (0.01196330000000001) (0.01223846549999999) (0.012452712500000004) (0.012268500000000002) (0.012375800499999992) (0.012263479500000007) (0.012177873000000006) (0.012097648500000002) (0.011677814000000009) (0.01171908699999999) (0.011920471000000002) (0.011662258500000008) (0.011838796499999998) (0.011780808500000003) (0.011780866000000001) (0.011728869499999989) (0.011905872499999984) (0.011712304499999993) (0.011738791999999998) (0.012134611500000003) (0.012042334000000002) (0.011932903500000008) (0.011910039499999997) (0.012095019999999998) (0.011926524000000008) (0.011524384000000013) (0.011674580500000004) (0.011798625499999993) (0.0118250565) (0.011823031999999997) (0.011860471499999997) (0.011714125500000006) (0.011834914000000016) (0.012108359500000013) (0.011888547499999999) (0.011866730500000006) (0.012123126000000012) (0.011776876000000006) (0.01194229099999998) (0.011926990499999998) (0.012182905500000007) (0.012040609500000007) (0.012353775999999997) (0.012188310999999993) (0.012576312499999992) (0.012271195500000012) (0.012356577999999993) (0.012129800999999996) (0.012299187000000003) (0.012462566500000008) (0.011981234999999993) (0.012337681000000003) (0.012360803000000017) (0.01244431) (0.012010915499999997) (0.012410727999999996) (0.012413738999999993) (0.01220768300000001) (0.012372394500000009) (0.012228226500000008) (0.012374704) (0.012415019499999999) (0.012134701500000011) (0.012472905499999992) (0.012155325500000008) (0.012049456) (0.012155712999999999) (0.0123910765) (0.012156686) (0.012212533499999997) (0.012118524499999991) (0.01238135) (0.011797949999999988) (0.0122797085) (0.011788174000000012) (0.01160517450000001) (0.012221669000000004) (0.012052455000000004) (0.011479614999999985) (0.011979308000000008) (0.011624060999999991) (0.011783309499999992) (0.012081432999999989) (0.011809999000000015) (0.011816128000000009) (0.011956804000000001) (0.011623603499999996) (0.0118131395) (0.011752582499999997) (0.011666426999999993) (0.011622102499999995) (0.011624652499999999) (0.011833092500000003) (0.011940331999999984) (0.011540730999999999) (0.011832033500000005) (0.011955579000000008) (0.012185227999999992) (0.011776909999999988) (0.011793428000000009) (0.011911317000000005) (0.0116721075) (0.011981117000000013) (0.012064911499999997) (0.012170085999999997) (0.012084274500000006) (0.012007902) (0.012180717000000008) (0.012204495499999996) (0.011802714499999992) (0.011936815500000003) (0.011903586500000021) (0.012165086999999991) (0.011951071000000008) (0.01224001299999998) (0.012052778) (0.012523458999999987) (0.012708193500000006) (0.012286955000000002) (0.012108969499999997) (0.012066338499999982) (0.012140932999999993) (0.012589675499999994) (0.012104306999999995) (0.012046734500000003) (0.012152543000000002) (0.012140272000000008) (0.011961896000000014) (0.012110456500000005) (0.012348872999999982) (0.012302771500000004) (0.012534601999999992) (0.012213753000000008) (0.01208582150000001) (0.012191019499999997) (0.012184753500000006) (0.011705289499999993) (0.011785286500000006) (0.011704749500000014) (0.011756949500000002) (0.012321343499999984) (0.012160638000000001) (0.011914014999999986) (0.011642624500000004) (0.011966444999999992) (0.01183658750000001) (0.0118329925) (0.011987069500000003) (0.0118159335) (0.012139749000000005) (0.011725377000000009) (0.011829418500000008) (0.011745648500000011) (0.011649215000000004) (0.011809054999999999) (0.0117044075) (0.011696544000000003) (0.01165469949999999) (0.011707628999999997) (0.011833702500000001) (0.011951528000000003) (0.011970416999999997) (0.011662801) (0.011699523999999989) (0.012125939000000002) (0.011683665499999996) (0.0120264115) (0.011769103000000003) (0.011948853499999995) (0.012257650499999995) (0.011894124999999992) (0.012061137999999985) (0.012211446000000015) (0.011927173499999999) (0.012047712000000016) (0.01209088350000001) (0.012295392000000002) (0.01218379) (0.012274771000000004) (0.012158203999999992) (0.012205406999999988) (0.0121872715) (0.012305369499999982) (0.012098635999999996) (0.011978508999999998) (0.012053069000000013) (0.012027588500000005) (0.012185181000000003) (0.012062637500000015) (0.012189991999999997) (0.012009187000000004) (0.01225264899999999) (0.012051185000000006) (0.012264036499999992) (0.012229057999999987) (0.012679438000000001) (0.012283622000000008) (0.01218113350000001) (0.012175711000000006) (0.012339791500000016) (0.011802245000000003) (0.011572917000000002) (0.011773014000000012) (0.011913861500000011) (0.011605643999999998) (0.0118271135) (0.011993949500000003) (0.011884074500000008) (0.011950953) (0.011919401499999996) (0.011810989500000008) (0.012061901499999986) (0.011657795000000012) (0.012159856999999996) (0.011992601500000005) (0.012113346999999997) (0.011757713000000003) (0.012090371000000003) (0.011722849999999993) (0.012190106000000006) (0.0120046605) (0.011741572499999992) (0.011601326999999995) (0.01197298300000002) (0.011895818500000002) (0.012085416500000001) (0.012075516999999994) (0.011823411499999992) (0.012058973499999986) (0.012040164000000006) (0.011599353500000006) (0.012028538000000005) (0.012220003000000007) (0.0124446275) (0.012028679) (0.01215329499999998) (0.012280039000000006) (0.012092842500000006) (0.012202583000000003) (0.01217784899999999) (0.012110193500000019) (0.01211097650000001) (0.012242386499999994) (0.012038342500000007) (0.012346382000000003) (0.012609937000000002) (0.011993747999999985) (0.012397296500000002) (0.01228030799999999) (0.011856517499999997) (0.011912356499999999) (0.012076339999999991) (0.01207485949999998) (0.011906998499999988) (0.0120975735) (0.012073939500000005) (0.012110212500000009) (0.01241493049999999) (0.012137187999999993) (0.012454463499999999) (0.012305111500000007) (0.012359753000000001) (0.012382336500000007) (0.012703614500000002) (0.011822226499999991) (0.011543903500000008) (0.011972356500000003) (0.011750394500000011) (0.011894033499999998) (0.011630092500000008) (0.011852407499999995) (0.011972781500000002) (0.011849232000000001) (0.0120987855) (0.012013968499999986) (0.011960070499999989) (0.012306667500000007) (0.011900614000000004) (0.011906611499999997) (0.011876633999999997) (0.011721414) (0.011850442500000002) (0.011888708999999997) (0.011674186000000003) (0.011835664499999995) (0.011868983) (0.011978778999999995) (0.012113187499999997) (0.012072209999999986) (0.011870253499999997) (0.012338063999999996) (0.011718719500000002) (0.0118115585) (0.012141518500000004) (0.011900939999999999) (0.012107962999999985) (0.0120119915) (0.012259967999999996) (0.012130108) (0.012351974500000001) (0.012408378500000011) (0.012069776000000004) (0.012480947499999992) (0.012339364500000005) (0.012108141000000003) (0.012130757000000006) (0.01208024449999999) (0.012214845499999988) (0.012392226499999992) (0.012078282499999995) (0.012314084500000003) (0.012028987500000005) (0.012036977000000018) (0.012194644000000004) (0.012077914499999995) (0.0122236025) (0.012199285500000004) (0.012339401) (0.012055723000000004) (0.012092015499999997) (0.012093628000000009) (0.012002332500000004) (0.0121193265) (0.012358263499999994) (0.012166887500000015) (0.012133025000000006) (0.012346072999999999) (0.012205576999999995) (0.011556021999999999) (0.011748676999999999) (0.011785774999999998) (0.011903005500000008) (0.011986731500000014) (0.012063951500000003) (0.011582917499999998) (0.011620911499999997) (0.011719179999999996) (0.011589401499999999) (0.011829694500000015) (0.011677807999999998) (0.011914185500000007) (0.01177967449999999) (0.011954288499999993) (0.011867959999999997) (0.011906414500000004) (0.011836436500000005) (0.011783455499999984) (0.011740474500000014) (0.011746537000000015) (0.011546273499999996) (0.011915358500000015) (0.011737279000000003) (0.011824766) (0.011666098) (0.011915713000000008) (0.011934417000000003) (0.011739331499999991) (0.011938214500000002) (0.011777349499999992) (0.011789037500000002) (0.012271066000000011) (0.01220213449999999) (0.01202665850000001) (0.01212751699999999) (0.0123234225) (0.012009209499999993) (0.012468851500000003) (0.012513031499999994) (0.012079632999999992) (0.012271490499999996) (0.012211256500000003) (0.012336806000000006) (0.012044738999999999) (0.012123554499999994) (0.0118074435) (0.012123705500000012) (0.012507779499999996) (0.011970363500000011) (0.012175628499999994) (0.012087931499999996) (0.012019173000000008) (0.012039749000000002) (0.012018625500000005) (0.012150753) (0.012430892499999999) (0.012302983500000003) (0.01217087) (0.012085290499999998) (0.012087266999999999) (0.012405304000000006) (0.011963832999999993) (0.012175158500000005) (0.01163877549999999) (0.011557434999999991) (0.011912119000000013) (0.011919399499999983) (0.01170557300000001) (0.01191801499999999) (0.011742915500000006) (0.012338194499999997) (0.012076225999999995) (0.012036484) (0.011716936499999983) (0.011723215499999995) (0.01172098349999999) (0.011827768999999988) (0.011930698000000003) (0.011898488999999984) (0.011872615000000003) (0.01190318650000001) (0.011693844999999994) (0.011906292000000013) (0.011870456500000001) (0.011884423500000005) (0.01174595049999999) (0.011735820999999994) (0.011897026500000005) (0.012112361499999988) (0.011853701999999994) (0.011771892000000006) (0.011709847999999995) (0.01193267499999999) (0.011999207000000012) (0.0119096645) (0.012062065499999997) (0.012257732500000007) (0.012076353500000012) (0.011877572500000003) (0.012049593999999997) (0.012160908499999998) (0.01195613500000002) (0.011920362500000004) (0.012332583000000008) (0.012284180500000005) (0.012102331500000008) (0.012486678999999987) (0.012026223999999988) (0.012172299999999997) (0.012170575500000017) (0.012288699500000014) (0.012047038499999996) (0.011875446999999997) (0.012358116499999988) (0.012183990999999991) (0.012035861499999995) (0.012204478000000005) (0.012141388999999989) (0.01206370150000001) (0.012451195999999998) (0.011923317500000002) (0.012193530000000008) (0.012033167499999997) (0.011946813) (0.012164473499999995) (0.012042761999999999) (0.011993639000000014) (0.011776408499999988) (0.011925751499999984) (0.011619997499999993) (0.011896577000000005) (0.011655384000000005) (0.012021856999999997) (0.011846523999999983) (0.011748945999999996) (0.011666313499999997) (0.012051691000000017) (0.012140382000000005) (0.012075689999999986) (0.01192638800000001) (0.011755068499999993) (0.012150668999999989) (0.011663924000000006) (0.011918684499999999) (0.011645204999999992) (0.012117494499999992) (0.011909862499999993) (0.012011124999999997) (0.011699084499999998) (0.011551542999999997) (0.01189604950000002) (0.011868096000000009) (0.011915648499999987) (0.012114251000000006) (0.01191971700000001) (0.011935885499999993) (0.011865861000000005) (0.011943634499999994) (0.01176806100000001) (0.012027004499999994) (0.01185187900000001) (0.01233152450000001) (0.011891695000000008) (0.012223891) (0.012255783499999992) (0.012038669500000002) (0.011858035999999988) (0.012167333000000002) (0.012257939499999981) (0.012182184499999998) (0.012124269499999993) (0.012034458999999997) (0.012336859000000006) (0.012582392999999997) (0.012286860499999996) (0.011925834499999996) (0.012394486499999996) (0.01193738200000001) (0.012216044999999995) (0.012076826500000012) (0.012118929) (0.011976778499999993) (0.012251201500000003) (0.012285801499999999) (0.012143488999999993) (0.012284491499999994) (0.0120569455) (0.012181954000000009) (0.012108222500000002) (0.012125573) (0.012227846) (0.011635027499999992) (0.011742598500000007) (0.011675576500000007) (0.01158837950000001) (0.011675971500000007) (0.011710452999999996) (0.012286127500000008) (0.011821917500000001) (0.01205223200000001) (0.012005331500000008) (0.011792054999999996) (0.011687552000000004) (0.011860433500000017) (0.012117041999999995) (0.011800320000000003) (0.012056835999999987) (0.011619409999999997) (0.011692772000000004) (0.011774630499999994) (0.011812055000000002) (0.011774330999999999) (0.011760500499999993) (0.011710361500000002) (0.011865895500000015) (0.012155760500000001) (0.011762117999999988) (0.011706456000000004) (0.011992076500000004) (0.011762434499999988) (0.011686499500000003) (0.011822576000000001) (0.011679949499999995) (0.012053496499999997) (0.012040634000000008) (0.012100318499999985) (0.012163095999999984) (0.012215782000000008) (0.012097343999999996) (0.011929166500000005) (0.012112035500000007) (0.012244605000000006) (0.012289574500000011) (0.012193159500000009) (0.012227553500000016) (0.012001905000000007) (0.011941921000000008) (0.012037102500000008) (0.01218451999999999) (0.012203925000000004) (0.011805082499999994) (0.012043301000000006) (0.012156911499999992) (0.012453700500000012) (0.012288921999999994) (0.011831654000000011) (0.011943494999999998) (0.012089019000000006) (0.012403207000000013) (0.012076738000000004) (0.012183260499999987) (0.012356853999999987) (0.0124716765) (0.012003642999999994) (0.012094603499999995) (0.011763258999999998) (0.011821337000000001) (0.01173318050000001) (0.011792723000000005) (0.011748042) (0.011716703499999995) (0.011761794999999992) (0.012022909000000012) (0.0117272675) (0.011733664000000005) (0.01194941799999999) (0.01198521000000001) (0.01164735900000001) (0.0119852295) (0.011903859500000016) (0.011898585000000017) (0.011860155499999997) (0.011698277999999993) (0.011736857000000003) (0.011774158999999992) (0.011819513500000003) (0.011992703499999993) (0.011876493000000002) (0.011875285499999999) (0.01194105949999999) (0.011756345000000001) (0.01182678999999999) (0.011832161500000007) (0.011832309500000013) (0.01172687800000001) (0.011747776000000001) (0.011668696499999992) (0.011928438999999999) (0.01226252550000001) (0.011946283500000016) (0.01209039549999999) (0.012365760999999989) (0.012153446999999984) (0.011848038000000005) (0.012430258) (0.012165803499999989) (0.012144844000000016) (0.012168283500000002) (0.012139940000000002) (0.01201323550000001) (0.012106103999999993) (0.01211039550000001) (0.0120962815) (0.012419784999999989) (0.012465747499999999) (0.011958567000000003) (0.012154650500000003) (0.012317304000000001) (0.012188018499999995) (0.012468323000000003) (0.012178707499999997) (0.012104228500000008) (0.012029801499999992) (0.012495137000000003) (0.012416379000000005) (0.012067206000000011) (0.0121327735) (0.012420038999999994) (0.012358422000000008) (0.011783713500000001) (0.011735417999999997) (0.011807119000000005) (0.011647676999999995) (0.012068560499999992) (0.011933260000000001) (0.011893986999999995) (0.011631245499999998) (0.011864840500000001) (0.011927645000000014) (0.011651334) (0.012003957999999995) (0.0119940095) (0.011895195999999997) (0.011816357999999999) (0.01176161449999999) (0.011909949499999989) (0.011713868999999988) (0.011627168000000007) (0.011803950000000007) (0.011685525499999988) (0.011637132499999994) (0.01205010799999999) (0.012011020999999997) (0.011778632999999997) (0.011843811499999995) (0.011857864999999995) (0.01212553999999999) (0.011701171999999982) (0.011948514999999993) (0.011794471) (0.012044702000000004) (0.011946713499999997) (0.011875137999999993) (0.01226314399999999) (0.0119518775) (0.012275382000000001) (0.01222908049999999) (0.01205527699999999) (0.012178907500000002) (0.01225398400000001) (0.012375906000000006) (0.01243765799999999) (0.012041008500000006) (0.012310912500000007) (0.012101795499999998) (0.012255372500000014) (0.012281269499999997) (0.01189949350000001) (0.012223204499999987) (0.012085291499999998) (0.012145652499999993) (0.01241424449999999) (0.012060558499999985) (0.012102117499999995) (0.011975785000000017) (0.012632122499999995) (0.012128540500000007) (0.01224426399999999) (0.012076827999999998) (0.012291798500000006) (0.012345427999999992) (0.012225636499999998) (0.012098921499999984) (0.011884337500000008) (0.01190735350000001) (0.011817234999999995) (0.011888493499999986) (0.012104463999999995) (0.011817696500000002) (0.011815473500000007) (0.011704289000000007) (0.012080307499999998) (0.011853357500000009) (0.011753388000000003) (0.011931844999999996) (0.011736137500000007) (0.011749560999999992) (0.01198853250000001) (0.012045590000000009) (0.011782885999999992) (0.011798039999999996) (0.011661829999999998) (0.011742852000000012) (0.011920889500000004) (0.011932281000000003) (0.011661267500000003) (0.011714159000000016) (0.011960665499999995) (0.011787434000000013) (0.011779215999999995) (0.011996113500000002) (0.011694806500000002) (0.011726095500000006) (0.011878266000000012) (0.01176319000000002) (0.012158903000000013) (0.012021362999999993) (0.012361543000000003) (0.012595167000000004) (0.012184878499999996) (0.012282574000000004) (0.012043552000000013) (0.012138235999999997) (0.012199463999999993) (0.012061831999999995) (0.012067699500000001) (0.012235261000000011) (0.012075782500000007) (0.012025637499999992) (0.012374848000000008) (0.012219689499999992) (0.012011218000000004) (0.011830588000000003) (0.012317188000000007) (0.012033877499999998) (0.012294740499999998) (0.011937212500000002) (0.011960505499999996) (0.012083096499999987) (0.012427700999999985) (0.012719870999999994) (0.012051235999999993) (0.012396951499999989) (0.012187048500000006) (0.012259541999999984) (0.01211537800000001) (0.012387965999999986) (0.011836143500000007) (0.012110911499999988) (0.011721734999999997) (0.011894884000000008) (0.011620666500000001) (0.012045408500000007) (0.011856509499999987) (0.011757523000000006) (0.011774400500000004) (0.012142194499999995) (0.011755401499999985) (0.011905399999999997) (0.011799733500000006) (0.011723897499999997) (0.012037813499999994) (0.0119346595) (0.011632513499999997) (0.01164675850000002) (0.012021107000000003) (0.011788204999999996) (0.011815903000000016) (0.012009664000000003) (0.01206444299999998) (0.011854115499999998) (0.011956203499999998) (0.01201395000000001) (0.011943476499999994) (0.011954896000000007) (0.011783354499999996) (0.011848063500000006) (0.012025943499999997) (0.011797367000000003) (0.011965919999999991) (0.012000932499999992) (0.012170434500000007) (0.012131745999999999) (0.012289794999999992) (0.012009998499999994) (0.012311405500000011) (0.012003557000000012) (0.012097191999999993) (0.012268308000000006) (0.012234428000000006) (0.012954703499999998) (0.01195910850000001) (0.01230734) (0.012311325999999997) (0.01222786100000002) (0.012113381999999992) (0.012051934) (0.012118537999999984) (0.011925336499999994) (0.011992495999999991) (0.011884813000000008) (0.01195539150000001) (0.012111991000000003) (0.011984460500000002) (0.012193296500000006) (0.012318467000000013) (0.011983945499999996) (0.012157312500000017) (0.012213296999999998) (0.012175479499999989) (0.012308839500000016) (0.011836487500000006) (0.011612174000000003) (0.011785669499999998) (0.011775213500000006) (0.011666187999999994) (0.011707959500000004) (0.011841414500000008) (0.011687896500000003) (0.011649451499999991) (0.011885076000000008) (0.012062492000000008) (0.012046396000000015) (0.011673754500000008) (0.011855330500000011) (0.012237556999999996) (0.011669184999999999) (0.011614344999999998) (0.01147810349999999) (0.011883390000000008) (0.011734557999999978) (0.011853407999999996) (0.011687896000000017) (0.011717137500000002) (0.011747874000000005) (0.012184424500000013) (0.012012838999999997) (0.012040992999999986) (0.011732787500000008) (0.011859124499999998) (0.012373659000000009) (0.012013291000000023) (0.0118230265) (0.012195946) (0.0121034285) (0.012065125499999996) (0.0120337155) (0.012258137000000002) (0.012366636) (0.012237607500000011) (0.012184418000000016) (0.0119879965) (0.012468431000000002) (0.01200456900000002) (0.012192628499999997) (0.012154273000000007) (0.012219578000000009) (0.012431665500000008) (0.012149933500000001) (0.01211348850000002) (0.012202951500000003) (0.012399313499999995) (0.012269658000000003) (0.012305324999999992) (0.012259913499999997) (0.012180595500000002) (0.01206633) (0.012303824000000005) (0.012421028) (0.011986682499999998) (0.012193594500000016) (0.012260900000000005) (0.012169643499999994) (0.012129255500000005) (0.012556853500000006) (0.011879917500000003) (0.012026406500000003) (0.011707216999999992) (0.011878557000000012) (0.011909623999999994) (0.011817924999999993) (0.011766561000000009) (0.012444192000000007) (0.011959464499999989) (0.011964085) (0.012070124500000015) (0.011849384000000004) (0.0122428755) (0.012389108999999995) (0.011891257500000002) (0.011738501999999998) (0.012059985999999995) (0.011647944499999993) (0.011752033999999995) (0.011724401499999995) (0.011787600500000009) (0.011760669000000001) (0.011696267999999996) (0.011636673) (0.011946194500000007) (0.012033908999999995) (0.011697237999999999) (0.012012245500000004) (0.012271863999999993) (0.012051196) (0.0119719665) (0.0117542115) (0.011878002500000012) (0.01195167400000001) (0.012069736500000011) (0.011939059500000002) (0.012379141499999996) (0.011894078000000002) (0.012246789500000008) (0.011851821499999998) (0.012282612999999998) (0.01218581299999999) (0.012357094000000013) (0.012352759500000005) (0.012379438000000006) (0.0123383185) (0.012173391000000006) (0.012138459000000004) (0.011945502999999996) (0.012105749499999999) (0.011820934000000005) (0.01204726199999999) (0.011914311999999982) (0.01214298400000001) (0.011824411000000007) (0.011856979500000003) (0.012076139999999985) (0.01206217250000001) (0.01208603250000001) (0.012200715499999987) (0.012019570999999993) (0.012074007999999997) (0.012034481000000014) (0.01191766250000001) (0.011928214000000006) (0.012014429000000007) (0.0120933285) (0.011684271999999996) (0.011989688500000012) (0.011710489500000004) (0.011868096500000008) (0.011643342000000001) (0.011965289000000004) (0.011918084999999995) (0.012256602000000005) (0.011537715000000004) (0.012046290500000001) (0.011858472500000009) (0.011991570000000007) (0.011829005000000004) (0.011818574499999984) (0.011727203999999991) (0.011708049500000012) (0.011571736000000013) (0.011689919500000007) (0.011761162999999991) (0.011556738999999996) (0.011941690500000005) (0.012129140999999996) (0.011757385999999995) (0.011892861000000005) (0.011846645499999989) (0.011876768499999996) (0.0119003855) (0.011844197) (0.011907796499999998) (0.012059744000000011) (0.012173365999999991) (0.0125130975) (0.012267533999999997) (0.011939373499999989) (0.012397206500000008) (0.0120215335) (0.011997798500000004) (0.012208059500000007) (0.012000238499999996) (0.012156703000000005) (0.012230358499999996) (0.012447219500000009) (0.012516671999999993) (0.01235824349999999) (0.012180566500000004) (0.011966669) (0.012029254000000003) (0.012333116500000019) (0.012174999999999991) (0.012165262999999996) (0.012222383500000003) (0.01216991299999999) (0.012538830000000015) (0.012577267499999989) (0.012215573499999993) (0.011977475500000001) (0.012042202000000002) (0.012424469000000007) (0.012405710999999986) (0.012282691999999998) (0.012057942500000016) (0.011785835999999994) (0.011965515499999996) (0.011912456500000002) (0.01217864049999999) (0.012141780500000018) (0.012097757500000014) (0.011782028999999986) (0.011856040500000012) (0.012140938500000004) (0.011927735000000009) (0.011816353000000002) (0.012127337000000016) (0.011676657499999993) (0.011782248999999995) (0.01200788400000001) (0.012007945000000006) (0.0118989345) (0.011825949999999988) (0.011659993999999993) (0.012270149500000008) (0.011901278500000001) (0.011967948000000006) (0.011783339500000004) (0.01171963749999999) (0.011884344000000005) (0.012080987500000001) (0.011846128999999997) (0.011825881499999996) (0.012197593499999992) (0.012052879000000016) (0.0120555985) (0.012328455999999988) (0.012140711500000012) (0.01219458150000001) (0.01219299950000001) (0.011959217000000008) (0.012303690500000006) (0.012101426999999998) (0.012023406) (0.012143997000000004) (0.012289560500000005) (0.012344753) (0.012162729499999997) (0.011991875000000013) (0.012269580000000002) (0.012252066000000006) (0.012439871000000005) (0.012110148999999987) (0.012036617999999999) (0.01242815400000001) (0.012412880500000001) (0.01220757800000001) (0.011934837500000003) (0.0119868915) (0.012305071500000014) (0.012195553499999998) (0.0122006115) (0.012155115499999994) (0.0123593325) (0.012120890500000009) (0.012383827499999986) (0.012114638000000011) (0.011958004499999994) (0.012234391000000011) (0.011539221999999988) (0.011832601500000012) (0.011866044499999992) (0.011736061499999992) (0.011599660499999997) (0.011819085999999993) (0.012139073999999986) (0.012043532499999982) (0.011899771000000003) (0.012391220000000008) (0.011822772499999995) (0.011626246000000007) (0.011742003500000014) (0.012127316499999985) (0.01179662699999999) (0.011792360000000002) (0.012467654499999994) (0.012185068499999993) (0.011947292499999998) (0.01173825299999999) (0.011800107500000004) (0.011645906999999997) (0.011762171000000002) (0.011808593999999992) (0.011980518999999995) (0.011717096999999982) (0.012224960000000007) (0.011951460999999997) (0.011746658999999993) (0.011697384499999991) (0.011973850999999994) (0.011949001) (0.012089879000000012) (0.012172269999999999) (0.011785254500000009) (0.012153257) (0.012248948999999995) (0.012330837499999997) (0.011968278500000012) (0.011998100499999997) (0.01206312050000001) (0.012147900999999989) (0.012074990500000007) (0.012179465) (0.012222398500000009) (0.012263155500000011) (0.01199217200000001) (0.012125029999999995) (0.012056208000000013) (0.0120746105) (0.012285866999999992) (0.011968328500000014) (0.012320113999999993) (0.012117277499999995) (0.012047560499999999) (0.012180360000000015) (0.012454614000000003) (0.01206379099999999) (0.012057825500000008) (0.012278868999999998) (0.012131158000000003) (0.012283797499999999) (0.012009525499999993) (0.012374040500000016) (0.011703339999999993) (0.011677829) (0.011938725000000011) (0.01193319050000001) (0.011829279999999998) (0.0116437385) (0.012023884999999998) (0.012106229999999996) (0.011913741000000005) (0.011884543500000011) (0.01230982550000001) (0.011930481499999993) (0.011818335499999999) (0.011733658000000008) (0.012017904499999996) (0.011825832000000008) (0.011876267499999996) (0.011945666500000007) (0.011755524500000017) (0.011697202500000003) (0.012084102) (0.01170893349999999) (0.011809306499999991) (0.011675418500000007) (0.012149832) (0.012142188000000012) (0.011768014000000021) (0.011905668500000008) (0.011864390000000002) (0.012195966500000002) (0.011653755500000001) (0.011777511000000004) (0.012365528499999986) (0.01203918750000002) (0.012115074500000003) (0.012008788500000006) (0.012323046500000004) (0.011932204999999987) (0.012290438500000014) (0.0119577305) (0.012347894499999998) (0.0122741725) (0.012354950999999989) (0.012522357000000012) (0.012307026499999998) (0.012113551) (0.012189202999999996) (0.012057185500000012) (0.011987243500000022) (0.012036473000000006) (0.012168065000000006) (0.012002602000000001) (0.012169937500000005) (0.012632976500000004) (0.012220689999999992) (0.012389783500000015) (0.012272130500000006) (0.012249032000000007) (0.012162880500000015) (0.01232234850000001) (0.012374743500000021) (0.012236089500000005) (0.012134119999999998) (0.012015353000000006) (0.012040978999999993) (0.0119760805) (0.01178278449999999) (0.011921431499999996) (0.012245196) (0.01188959149999999) (0.011748668000000004) (0.011657279500000006) (0.012485081999999995) (0.0119639245) (0.0116052985) (0.01179897249999999) (0.012050778999999998) (0.011812730499999993) (0.011641131500000013) (0.012186712500000002) (0.011671047000000004) (0.011736305499999988) (0.0119795605) (0.011925570499999982) (0.012000964000000003) (0.01185559) (0.01189111050000001) (0.011910761000000006) (0.01209648050000002) (0.011790513500000002) (0.011745099999999994) (0.012085087500000008) (0.011684533999999996) (0.011834326000000006) (0.011817458000000017) (0.01183337550000002) (0.011988616999999993) (0.012151365499999997) (0.012170312500000016) (0.012025235000000009) (0.0120863145) (0.012160980000000002) (0.011958500999999996) (0.011907061999999996) (0.011995605999999992) (0.012481464499999997) (0.012285081499999989) (0.012284768000000015) (0.012158685500000002) (0.012569570999999988) (0.012183450000000012) (0.011993585499999987) (0.011947546999999989) (0.012004694999999996) (0.012000700500000003) (0.012124559499999993) (0.012252074000000002) (0.012333790000000011) (0.012177261499999995) (0.012107577000000008) (0.0125267295) (0.012200115499999997) (0.01209935450000002) (0.012132549500000006) (0.012129105499999973) (0.012475696999999994) (0.012116171499999981) (0.012490886500000006) (0.01179970050000001) (0.011746883499999985) (0.01173510500000001) (0.011920546500000018) (0.011986386000000016) (0.011795640499999996) (0.01159002349999999) (0.011808054500000012) (0.011916249500000003) (0.012013696500000018) (0.011982842500000007) (0.011856885499999997) (0.011783985999999996) (0.011911514000000012) (0.011998137500000006) (0.011969295500000005) (0.012097568000000003) (0.012153721499999992) (0.011852090999999995) (0.011832331000000001) (0.011853299999999997) (0.011928001999999993) (0.011630997500000004) (0.011923528500000016) (0.011706079499999994) (0.012343549500000009) (0.01185053749999998) (0.012043427999999995) (0.012155191499999995) (0.011693002000000008) (0.012244201999999982) (0.011822187999999983) (0.012069822499999994) (0.012176617499999987) (0.012289720000000004) (0.011929925500000008) (0.012033648500000022) (0.012140107499999997) (0.012250585500000008) (0.012044974) (0.012114608999999998) (0.012237376999999994) (0.012332623499999987) (0.012048384999999995) (0.011954722500000015) (0.011945618499999991) (0.012224743999999982) (0.012186246499999998) (0.012027588499999992) (0.012022604500000006) (0.012027110000000008) (0.011949260500000003) (0.012034396500000002) (0.011939604500000006) (0.012233309499999984) (0.012186904499999984) (0.012276953500000007) (0.01224364800000001) (0.012056709499999999) (0.012231868500000007) (0.012152496000000013) (0.01225783100000001) (0.012236373499999995) (0.0121217775) (0.010029308999999986) (0.009908161499999998) (0.009885198499999998) (0.009933676999999988) (0.010099316999999997) (0.009795668000000007) (0.009826420999999988) (0.010026808999999998) (0.010162633000000018) (0.010185790999999986) (0.009999429000000004) (0.009978573000000004) (0.010425894000000005) (0.010127471499999999) (0.010139183499999996) (0.01016355549999999) (0.009907170999999992) (0.009929328000000001) (0.010032278999999991) (0.009974470499999985) (0.009951942000000005) (0.010139084500000006) (0.010000319000000008) (0.010179326500000002) (0.010108675000000011) (0.009974919999999998) (0.009902952000000007) (0.009863904999999992) (0.010058324999999993) (0.009988304500000003) (0.010215216500000013) (0.010337843) (0.010241871) (0.010240872999999998) (0.010705288000000007) (0.010223971499999998) (0.010233829499999986) (0.010539665000000004) (0.010286284000000007) (0.010177331499999998) (0.010371906) (0.01044631850000001) (0.010413267000000004) (0.010333501500000009) (0.010430815999999996) (0.01034950250000001) (0.0104280405) (0.010705364000000009) (0.010062829499999995) (0.010287442999999993) (0.01030727250000002) (0.010425452000000002) (0.01032804250000001) (0.01028659500000001) (0.010333783499999999) (0.010282236999999986) (0.01066979300000001) (0.010361944500000012) (0.010328056500000002) (0.01060984000000001) (0.010383294499999987) (0.010732839999999993) (0.010436541499999993) (0.010332847500000006) (0.009969581500000005) (0.009849859999999988) (0.010309454999999995) (0.009978125500000004) (0.010048557) (0.010121225500000011) (0.010043345000000009) (0.010020347500000013) (0.0101737415) (0.010183481499999994) (0.010072222499999992) (0.010187220999999996) (0.009986664500000006) (0.009976943500000016) (0.01021872850000001) (0.010163415500000009) (0.009892188499999996) (0.01003939899999999) (0.010026423499999992) (0.009987780500000001) (0.010000998499999997) (0.010080144999999999) (0.010018709500000014) (0.010147957499999999) (0.009900269000000003) (0.0100574685) (0.00999796650000001) (0.010125803000000003) (0.01006025599999999) (0.0100212955) (0.0102399195) (0.010089588999999996) (0.010425940999999994) (0.01027523000000001) (0.010340595000000008) (0.010590639499999999) (0.010521609000000001) (0.010570213000000009) (0.010400970999999995) (0.010168380500000004) (0.010373331000000013) (0.010365150000000004) (0.01031001849999999) (0.010679211000000008) (0.010374334999999998) (0.010211050499999999) (0.010450851499999997) (0.010544426499999995) (0.010379626500000003) (0.010607788500000007) (0.010391159499999997) (0.010321404500000006) (0.010437497500000004) (0.0105351635) (0.010323692999999981) (0.010729183999999989) (0.010287647499999997) (0.010639838499999985) (0.010288911499999998) (0.010545097000000003) (0.01029073350000001) (0.010305451000000007) (0.010358397500000005) (0.010389112499999992) (0.010181809) (0.009848603499999997) (0.009992527000000001) (0.010136684999999993) (0.010248706999999996) (0.010023108500000003) (0.009860034000000004) (0.010032226000000005) (0.01004999899999999) (0.010022417500000005) (0.010108260000000008) (0.010118720999999997) (0.010174702500000007) (0.010015682499999998) (0.010087829999999992) (0.010153625) (0.010037829000000012) (0.010134767000000017) (0.00977823600000001) (0.009959117500000003) (0.010196726500000003) (0.010018670499999993) (0.010230109000000001) (0.009917601000000012) (0.0100455775) (0.010170886000000004) (0.010162734999999992) (0.010255848499999998) (0.010206954000000004) (0.0102912275) (0.010271169999999996) (0.010326169499999996) (0.010591277999999996) (0.010229997000000005) (0.0101958085) (0.010517890500000002) (0.010388952999999992) (0.010882421500000003) (0.01039000700000002) (0.010603728999999992) (0.010562385000000007) (0.010388789999999995) (0.010418332000000002) (0.010335036500000006) (0.010377351000000007) (0.010433391000000014) (0.010468995499999995) (0.010383039499999996) (0.01029215) (0.010344927500000003) (0.010381601500000004) (0.010260761000000007) (0.010392108000000011) (0.010359721999999988) (0.010519043499999992) (0.010307759) (0.010536616000000013) (0.010511622499999998) (0.010459450500000009) (0.010465374) (0.010542063000000004) (0.010400603500000008) (0.010360851500000004) (0.010240678000000003) (0.009947791999999997) (0.009954638000000002) (0.010157926500000011) (0.010088175000000005) (0.010068932499999989) (0.009882094999999994) (0.010030403000000007) (0.010115858500000005) (0.01028924299999999) (0.010050494499999993) (0.00997311749999999) (0.009963861000000004) (0.009980408999999996) (0.010091711000000003) (0.010392468500000002) (0.010352123500000004) (0.010085530999999995) (0.009885817000000005) (0.01004008549999999) (0.01015476550000001) (0.009983796000000003) (0.010070432000000004) (0.010013619000000015) (0.010072523) (0.010315905500000014) (0.010035173999999994) (0.009954866999999992) (0.0102358585) (0.010357591999999985) (0.010205026000000006) (0.010209231500000013) (0.010176052500000005) (0.010397253499999995) (0.010341774000000012) (0.010321568500000003) (0.010379971999999987) (0.0107015315) (0.010495662500000003) (0.010294397499999997) (0.010787464499999996) (0.010258141499999998) (0.010907375999999996) (0.0104660335) (0.010534473500000002) (0.010405045000000002) (0.01037229299999999) (0.010448797999999995) (0.010507661500000001) (0.010327292000000002) (0.010442056500000005) (0.010398629999999992) (0.010426486999999998) (0.010316092500000013) (0.010286193499999999) (0.010403614000000005) (0.010352671500000007) (0.010769033999999997) (0.01035857100000001) (0.010432740499999996) (0.010612237499999996) (0.010320355500000003) (0.010520686500000001) (0.010409786500000004) (0.010540341000000009) (0.009791445999999995) (0.009949782500000004) (0.009938642500000011) (0.01003683200000001) (0.010067299500000002) (0.009834109500000007) (0.010184726499999991) (0.009908018500000004) (0.010192747999999988) (0.010002314000000012) (0.010066524499999993) (0.01019565850000001) (0.010173865500000004) (0.01006950999999999) (0.010134918999999992) (0.010173533499999998) (0.01003893850000001) (0.009868888999999992) (0.009899637000000003) (0.009983069000000011) (0.0100762925) (0.010174533) (0.010155190499999994) (0.010124961000000002) (0.009952778499999995) (0.010024883000000012) (0.010387305999999999) (0.010122407499999986) (0.010082249500000001) (0.010039578999999993) (0.01006920950000001) (0.009879680500000002) (0.010200665499999997) (0.010323028499999998) (0.010216872499999988) (0.010347666999999991) (0.010544316999999997) (0.01036152600000001) (0.01035924299999999) (0.010244214999999987) (0.01031990499999999) (0.010603893000000017) (0.010300396999999989) (0.010741274499999995) (0.010498504499999992) (0.010373485500000001) (0.010360983000000004) (0.010455295999999989) (0.01055557750000001) (0.01064777) (0.01025770550000002) (0.0106600065) (0.010384331999999996) (0.01046267200000002) (0.01052046999999999) (0.010232903500000001) (0.010347227999999986) (0.010380165499999996) (0.010549112499999999) (0.01050651100000001) (0.010373634500000006) (0.010390261999999997) (0.010433264499999997) (0.010554975000000008) (0.010112173499999988) (0.009889880000000004) (0.010549872000000002) (0.010145774499999996) (0.010041306499999986) (0.009970905000000002) (0.010115836999999989) (0.010308664499999995) (0.010226277500000006) (0.010318661000000007) (0.01021825550000001) (0.01030179299999999) (0.010177038999999999) (0.010032202500000004) (0.009985617000000002) (0.010201116999999996) (0.0100248285) (0.010004548000000002) (0.010077875500000014) (0.009849281000000001) (0.00989222549999999) (0.010124227) (0.010217589999999999) (0.009887209500000008) (0.0101516985) (0.010467218) (0.0100698595) (0.010123552499999994) (0.010123825500000003) (0.010028984000000005) (0.01027322) (0.010123454000000004) (0.010214852999999982) (0.010240876999999995) (0.010357740000000004) (0.010426844500000004) (0.010208165500000005) (0.010654817999999996) (0.010333136000000007) (0.010413894000000007) (0.0103238145) (0.010463832999999992) (0.010324770999999996) (0.010432843499999997) (0.01027827249999999) (0.010562022500000004) (0.010565015000000011) (0.01043935900000001) (0.010496332499999997) (0.010451523000000004) (0.010399744499999988) (0.010376268499999994) (0.01024816299999999) (0.010176557000000003) (0.010384775999999998) (0.0104862825) (0.010539944000000023) (0.010625841999999983) (0.010533926499999985) (0.010484025000000008) (0.010441479500000003) (0.010559378999999994) (0.01035953399999999) (0.011788965999999998) (0.010185601500000002) (0.010126534999999992) (0.010159293) (0.01010045050000001) (0.0100620815) (0.010236414) (0.010348483000000006) (0.010093428000000015) (0.010141850499999994) (0.010197456500000007) (0.010163617499999986) (0.0101793315) (0.010474866999999999) (0.010393384000000006) (0.010204150000000009) (0.01011915649999999) (0.010193240000000006) (0.01002834050000001) (0.009924621999999994) (0.010018909000000006) (0.010168919499999984) (0.009958425999999992) (0.010048843000000002) (0.010131388500000005) (0.010305115500000003) (0.010256749999999995) (0.010325197500000008) (0.010245328500000012) (0.009970670999999987) (0.010127640499999993) (0.010226644500000007) (0.01002041699999999) (0.010488147500000003) (0.010222037000000017) (0.010290486000000001) (0.01026249500000001) (0.010279912000000002) (0.0105314455) (0.01020748199999999) (0.010372322500000003) (0.010535660500000002) (0.010855903) (0.010602245999999996) (0.01059988549999999) (0.0104046015) (0.010550309999999993) (0.010357754999999996) (0.010523304000000011) (0.01040244400000001) (0.01036894449999999) (0.01015141999999998) (0.010253237999999998) (0.010536891499999992) (0.010280619000000005) (0.010281456499999994) (0.010153397000000008) (0.010533605500000015) (0.010336787) (0.010533237) (0.010238367500000012) (0.010394452000000012) (0.010562796) (0.010559822999999996) (0.010566305000000012) (0.009878697999999991) (0.010117463999999993) (0.010010329000000012) (0.009923552000000002) (0.009961129499999999) (0.010153161500000007) (0.010091891500000005) (0.010307571000000001) (0.010193086000000004) (0.010312340000000003) (0.010324257500000003) (0.010097316499999995) (0.010268992500000004) (0.010041659999999994) (0.010117155999999988) (0.010196663000000009) (0.010037235000000005) (0.010099362999999986) (0.009979017999999992) (0.010044677500000002) (0.009976343499999984) (0.010298328499999995) (0.010210544500000002) (0.010044077999999998) (0.010133413000000008) (0.0100204495) (0.010223895999999996) (0.010152679999999997) (0.010188900000000015) (0.010205767000000004) (0.010108435499999999) (0.010194575000000011) (0.010672591999999995) (0.010564680499999993) (0.010340767000000015) (0.010265683999999997) (0.010450593000000008) (0.010317960000000001) (0.01032123900000001) (0.010147643500000011) (0.010556250499999989) (0.010378714000000011) (0.010562737999999988) (0.010328313000000006) (0.010311468000000004) (0.010639832000000002) (0.010604200499999994) (0.010409190000000013) (0.010873321499999991) (0.010349927499999995) (0.010410766499999988) (0.010492059500000012) (0.010388238500000008) (0.010319795500000006) (0.010308903500000008) (0.010274113500000015) (0.010756488999999994) (0.010411474000000004) (0.010713130500000001) (0.010565649999999982) (0.010576843000000002) (0.010397378499999985) (0.010481126500000007) (0.010407702500000005) (0.010064827500000012) (0.009997404500000001) (0.009883498000000004) (0.010059100500000001) (0.009980106000000016) (0.010267008999999994) (0.01004729700000001) (0.009887464499999998) (0.010202569499999994) (0.0103492855) (0.010044380500000005) (0.01021213850000001) (0.010150655999999994) (0.010060596500000005) (0.010091887500000007) (0.009954921999999991) (0.010048005000000013) (0.009831575000000009) (0.009996828499999999) (0.009995716000000002) (0.009895332999999992) (0.009945204499999999) (0.010118730999999992) (0.0098365235) (0.010070908000000003) (0.010101375499999996) (0.01014445500000001) (0.010033031999999997) (0.010079765000000004) (0.010141002999999996) (0.009931889) (0.010153733499999998) (0.010334646500000003) (0.010240242499999996) (0.0103742275) (0.010340284000000005) (0.010557201000000002) (0.010486135999999993) (0.010292206999999998) (0.010159155500000003) (0.010407169500000008) (0.010479043000000021) (0.010228438500000006) (0.010583356000000002) (0.010234843000000007) (0.010589133) (0.01040748000000001) (0.010152852500000004) (0.0103649185) (0.010249469999999997) (0.010310242499999997) (0.010310386000000005) (0.010520691499999998) (0.010348590000000005) (0.010653292000000009) (0.010322178999999987) (0.010504530500000012) (0.01030499750000001) (0.010418617000000005) (0.010524064) (0.010338220499999995) (0.010221565500000002) (0.010518770999999996) (0.010594194000000001) (0.010102919500000002) (0.010121591000000013) (0.009992490499999993) (0.010115872499999984) (0.010000440999999999) (0.010193312999999996) (0.009872620999999998) (0.010205393999999993) (0.010047820499999999) (0.010051888999999994) (0.010001662000000008) (0.010321380000000005) (0.010048632000000002) (0.0101853425) (0.010281016000000018) (0.010111390999999997) (0.009946090000000005) (0.010250033000000006) (0.00994887600000001) (0.010247123499999997) (0.009920278500000004) (0.010086903500000008) (0.01002298850000001) (0.009862649000000001) (0.010063494999999992) (0.01005629000000001) (0.010099109499999995) (0.010386037499999987) (0.010455007500000002) (0.0101828115) (0.010153710999999996) (0.0101213795) (0.010570616500000005) (0.01019091250000001) (0.010369233000000005) (0.010397528999999989) (0.010324611500000011) (0.010512712500000007) (0.010108173500000012) (0.010162284499999993) (0.010531816) (0.010283295999999997) (0.010899690000000004) (0.010653171499999989) (0.01033065100000001) (0.010421801499999994) (0.010496149499999996) (0.010704978000000004) (0.01041098900000001) (0.010556687500000009) (0.010237760500000012) (0.0103847985) (0.01020404300000001) (0.0102132635) (0.010304135499999992) (0.010549113999999998) (0.010393322999999996) (0.010404667999999992) (0.010563255000000007) (0.010398356499999997) (0.01064335999999999) (0.010736377999999991) (0.010443167000000003) (0.010684113999999995) (0.010057305500000002) (0.0102072795) (0.009965473999999988) (0.010000599499999999) (0.010229431000000011) (0.00997083650000001) (0.010022008499999999) (0.010137835999999997) (0.010270125000000005) (0.010102259499999988) (0.010494063500000012) (0.010538493499999996) (0.010193555500000007) (0.010166189999999992) (0.010211030499999996) (0.010063564499999997) (0.009925528500000003) (0.009930615500000003) (0.009923966000000006) (0.009892332500000003) (0.009885480000000002) (0.010150096499999997) (0.010033480999999997) (0.010348244499999992) (0.01035198100000001) (0.010282626000000003) (0.010173121500000007) (0.010109153999999995) (0.010191539999999999) (0.010183327000000006) (0.010279161500000009) (0.010339929499999997) (0.010285409999999995) (0.01033047849999999) (0.010591108500000002) (0.010557955999999993) (0.010761831500000013) (0.010404112000000007) (0.010515842999999997) (0.010441775) (0.01047769200000001) (0.010279010499999991) (0.010449461500000007) (0.010456599999999996) (0.010551338999999993) (0.010480300499999998) (0.010588488000000007) (0.010504915500000003) (0.010628858000000005) (0.010528855000000004) (0.01030289999999999) (0.01052648049999999) (0.010247970000000009) (0.010543421999999983) (0.010310744499999996) (0.010297066000000007) (0.010580464499999997) (0.01048547150000001) (0.010394533499999997) (0.010586758999999987) (0.010343378) (0.010559837000000016) (0.010416380500000003) (0.010555329000000002) (0.010220708499999995) (0.010013443499999997) (0.010098249500000003) (0.009997228499999997) (0.009938785500000005) (0.01006483000000001) (0.010039073999999995) (0.010080598999999996) (0.010171259000000002) (0.010172848499999984) (0.010342373999999988) (0.010327160500000002) (0.010246512) (0.010184134500000011) (0.010118718999999998) (0.013807675499999991) (0.010160958499999997) (0.009907803499999993) (0.010049872000000001) (0.010004093500000005) (0.010388294500000006) (0.010358038500000014) (0.010374301000000002) (0.010104726000000008) (0.010231299) (0.010147895500000004) (0.010433265499999997) (0.01030209) (0.010208646500000002) (0.010439254499999995) (0.010143035499999994) (0.010269515500000007) (0.010160897500000002) (0.010923905000000012) (0.010556248000000004) (0.010503770499999995) (0.010424655500000005) (0.010426925000000004) (0.010321466499999987) (0.010279665999999993) (0.010534918000000004) (0.010441704499999982) (0.0104633425) (0.010693807999999985) (0.010658839000000003) (0.010465229500000006) (0.010367175500000006) (0.010460705999999986) (0.010600562500000008) (0.010200268499999998) (0.01019255799999999) (0.010763212999999994) (0.010263858) (0.010418546) (0.010260216500000002) (0.010465012999999995) (0.010486853500000004) (0.010425467500000007) (0.01078114849999999) (0.010520025500000002) (0.010775442499999996) (0.010679055500000006) (0.010711079999999998) (0.010504950000000013) (0.010176974999999991) (0.010099798000000007) (0.009959228) (0.010209886000000001) (0.010207299500000017) (0.009895950499999986) (0.010065564999999999) (0.009935568000000006) (0.010095791999999992) (0.010069189999999992) (0.010129103) (0.010093110000000002) (0.010402098999999998) (0.010216676999999993) (0.010263552499999995) (0.0101156295) (0.010318545000000012) (0.010326110999999999) (0.010230874500000015) (0.009980460499999996) (0.009894869999999986) (0.01025189) (0.010058643499999992) (0.010366218999999996) (0.010272984999999998) (0.010173365000000018) (0.010123974000000008) (0.010222088000000004) (0.010091802999999996) (0.010149209499999992) (0.009950804000000008) (0.010193464499999999) (0.010212705500000002) (0.010227735999999987) (0.010390112499999993) (0.010744812999999992) (0.010185617999999994) (0.010242228499999992) (0.010272170999999997) (0.010222748000000004) (0.010550161999999988) (0.010504234000000001) (0.010418060500000006) (0.010361507500000006) (0.010444032500000006) (0.010614948499999985) (0.010611335) (0.010336363500000001) (0.010267191500000009) (0.010619732000000007) (0.010516538500000006) (0.01046299349999999) (0.010261210999999992) (0.010505741999999998) (0.010289776) (0.010481223000000012) (0.0104616285) (0.010548611999999999) (0.0102670765) (0.0103502075) (0.010380089000000009) (0.010549647500000009) (0.010279450499999995) (0.010531342499999999) (0.009967057500000001) (0.010025543000000012) (0.01007646949999999) (0.010188760000000005) (0.010211130999999998) (0.010234096999999984) (0.009863356000000018) (0.010080980000000003) (0.00998131649999999) (0.010178516999999998) (0.010105206999999991) (0.010055287499999996) (0.010078459500000012) (0.009990908999999992) (0.010201177499999992) (0.010300314000000005) (0.010024543999999996) (0.010036177499999993) (0.010221328999999987) (0.010436553000000001) (0.010033205500000003) (0.010074610500000011) (0.010219943500000009) (0.009995416000000007) (0.010402240999999993) (0.0100908745) (0.009997741500000004) (0.010185208999999987) (0.010186295999999997) (0.010095274000000001) (0.010164211500000006) (0.009974374499999994) (0.010523298500000014) (0.010914618999999987) (0.010327462999999995) (0.010485051499999995) (0.010271959000000011) (0.010223122500000001) (0.010418416500000013) (0.01017199199999999) (0.010562856500000009) (0.010353812500000004) (0.010342854000000012) (0.010935162999999998) (0.010516184999999997) (0.01025890950000001) (0.010403273500000004) (0.01057747399999999) (0.01063798199999999) (0.010443710500000009) (0.010332232999999996) (0.01064037000000001) (0.010371801) (0.010240450999999998) (0.0104805085) (0.010440751999999984) (0.010578881499999998) (0.010753448500000012) (0.010182689499999995) (0.010642125999999988) (0.010693008000000018) (0.010657895) (0.010558606499999984) (0.010587860500000004) (0.010156543500000004) (0.010023782499999995) (0.010064846499999988) (0.0100807215) (0.010201235000000003) (0.01013296800000002) (0.0100518775) (0.010126340999999997) (0.010361334500000013) (0.010379848000000011) (0.010072769499999995) (0.009955096499999996) (0.010199178000000003) (0.009974875999999994) (0.010293615500000006) (0.010565417499999993) (0.01022205150000001) (0.010025903500000002) (0.00987325800000001) (0.01016838099999999) (0.009894253999999991) (0.010179097499999998) (0.010130841000000002) (0.010161433499999983) (0.010437725000000009) (0.010226131) (0.010202392500000004) (0.010134404) (0.010452217500000013) (0.010275357999999998) (0.010217932999999998) (0.0101920375) (0.010290940499999998) (0.010439664000000001) (0.010394699999999993) (0.010467365999999992) (0.01044660650000001) (0.010537196499999985) (0.010273302999999998) (0.010274140499999987) (0.010467739000000004) (0.010816303999999999) (0.010395077000000016) (0.010417040000000002) (0.010757581000000016) (0.010410108500000001) (0.010507714000000001) (0.010310577000000001) (0.010438810499999993) (0.010494647999999995) (0.010492127000000018) (0.010270910999999994) (0.010486404000000005) (0.01039965000000001) (0.010194535500000004) (0.0103770735) (0.010641797000000022) (0.010458054500000008) (0.010859608500000006) (0.0103288775) (0.010439470000000006) (0.010458340499999996) (0.01048748699999999) (0.010438481) (0.009943801000000016) (0.010079058000000002) (0.009964938000000007) (0.009931041500000001) (0.009815047500000007) (0.010102313500000001) (0.009986403500000005) (0.010342028999999989) (0.010176834999999995) (0.010114170500000005) (0.010139534999999991) (0.010154536000000006) (0.010222470499999997) (0.010222559500000006) (0.010294802499999992) (0.010300472000000005) (0.010175082000000002) (0.010449374500000011) (0.010014123) (0.009962641499999994) (0.010076071500000006) (0.010136860999999997) (0.010296345999999998) (0.010210065000000004) (0.010240812500000002) (0.010271060999999998) (0.010195321500000007) (0.010086804000000005) (0.0103595675) (0.010293333500000001) (0.010075978999999999) (0.010076291000000015) (0.010363400000000023) (0.010457196500000002) (0.010383774000000012) (0.010472260000000011) (0.010300605000000018) (0.010479667499999998) (0.010433450999999996) (0.01034888099999999) (0.010577680499999992) (0.010446743499999994) (0.0105183685) (0.010490808000000004) (0.010321788499999998) (0.010624507000000005) (0.010440157999999991) (0.01083031249999998) (0.010221179499999997) (0.0103518415) (0.010353512999999995) (0.010405334000000016) (0.010494509499999999) (0.01025168450000001) (0.010608632500000006) (0.010642521500000002) (0.010814332999999995) (0.010613551999999998) (0.010433184499999998) (0.010800229000000008) (0.010366647999999992) (0.010427996500000009) (0.010429341999999994) (0.010452193999999998) (0.0101475865) (0.009927947999999992) (0.00988252349999999) (0.009997015999999997) (0.010035676499999993) (0.010122958499999987) (0.009836207) (0.010127190500000008) (0.009963702000000005) (0.010315938999999996) (0.010110630999999995) (0.010283900999999998) (0.010061829999999994) (0.010248411999999998) (0.0101130725) (0.010107519499999995) (0.009966596500000008) (0.009875314999999996) (0.0100809055) (0.010113931500000006) (0.009921382500000006) (0.010126154499999984) (0.010278383000000002) (0.009898879999999999) (0.010045223999999991) (0.009953594999999996) (0.010173131500000002) (0.009969576000000022) (0.010184774000000008) (0.010011807500000011) (0.010095516999999998) (0.010019591000000008) (0.010330588500000001) (0.010455973000000007) (0.010335960000000005) (0.010172925499999999) (0.010303835499999997) (0.010372432499999987) (0.010408584999999998) (0.010281457000000008) (0.010670489499999991) (0.010532577500000015) (0.01059135600000001) (0.010198232000000002) (0.010342704500000008) (0.010302782999999996) (0.010304916499999997) (0.010302766500000005) (0.010191121499999997) (0.010367410500000007) (0.010263070499999999) (0.0101441055) (0.010310533999999996) (0.010651793000000007) (0.010228075999999989) (0.010362193000000006) (0.010349490000000003) (0.010613829000000005) (0.010544558499999995) (0.010487480999999993) (0.010363668999999992) (0.010520038500000009) (0.01047393399999999) (0.010722801500000004) (0.009976091000000006) (0.009946399499999994) (0.010300782499999994) (0.010132258500000005) (0.010061561499999996) (0.010281192999999994) (0.0099206015) (0.010262292999999992) (0.010224294499999995) (0.010223962499999989) (0.010195960500000004) (0.010118837000000006) (0.010186433000000009) (0.010205310999999995) (0.01014865999999999) (0.010090492000000006) (0.010156974500000013) (0.010068187999999992) (0.009924744499999999) (0.0099508715) (0.010255241499999998) (0.010067544500000011) (0.010091308500000007) (0.010019065999999993) (0.010173447999999988) (0.010409974499999988) (0.010175240000000002) (0.010007630500000003) (0.010295713999999984) (0.01011420049999999) (0.010316690500000003) (0.010211777500000005) (0.010285726499999995) (0.010338212) (0.01030767349999999) (0.010278814000000011) (0.01045961749999999) (0.010390145999999989) (0.010327854499999997) (0.010298646000000009) (0.0105973065) (0.010391069499999989) (0.010261599499999996) (0.010510477000000004) (0.010393923) (0.01036105800000002) (0.010426148499999982) (0.01045368499999999) (0.010406010499999993) (0.010362225500000016) (0.010353408500000008) (0.010344247) (0.010178862499999997) (0.010249670000000002) (0.010313766500000002) (0.010408503) (0.010589195499999995) (0.010317542499999999) (0.010292725500000002) (0.01029911900000001) (0.010469121000000012) (0.010487339499999998) (0.010495251499999997) (0.010750147500000015) (0.01022234499999998) (0.010247367999999993) (0.010124142500000002) (0.009928935) (0.010165427000000005) (0.010239765999999997) (0.010308601) (0.01009731799999998) (0.010075759500000003) (0.010245730499999994) (0.0101376455) (0.010343055500000004) (0.010383037499999997) (0.010276015) (0.010058847999999995) (0.010309299999999993) (0.01005598349999999) (0.010471828500000002) (0.010076140499999997) (0.010292620000000002) (0.00995228250000002) (0.009970965499999998) (0.009840382000000009) (0.010342115499999999) (0.010223954000000007) (0.01020608499999999) (0.010088065499999993) (0.01028396749999999) (0.0101263885) (0.010243121500000008) (0.010227752500000006) (0.010263335499999998) (0.010350088499999993) (0.010343414500000009) (0.010297329999999993) (0.010299235500000004) (0.010267434499999992) (0.010180265499999994) (0.010294954999999995) (0.010449497000000002) (0.010378409000000005) (0.010524426999999989) (0.010584829000000004) (0.010591766999999988) (0.010431769000000007) (0.01033936249999999) (0.01024831950000002) (0.010758019999999993) (0.010470288000000008) (0.010282445000000001) (0.010536171499999997) (0.010184274000000007) (0.010390104999999997) (0.01028593550000001) (0.010267901499999996) (0.010399016999999983) (0.010490075500000001) (0.010510064999999999) (0.010658100500000003) (0.010382291500000002) (0.010737034500000006) (0.010498912999999999) (0.01046884749999999) (0.010437981499999999) (0.010483101000000009) (0.010089835999999991) (0.0099257715) (0.010230375) (0.01014057950000001) (0.009935930999999995) (0.010310257000000017) (0.010018595000000005) (0.010293214999999994) (0.010057209499999997) (0.010076673500000008) (0.010165326000000002) (0.010090060499999998) (0.010170686499999998) (0.010072925999999996) (0.010153568000000002) (0.009919237999999997) (0.009928684000000007) (0.010160608000000015) (0.010113474000000011) (0.010028841499999996) (0.00999414550000001) (0.010185638999999996) (0.009953244) (0.010131794999999999) (0.010192906000000002) (0.010106510500000013) (0.010135120499999997) (0.010202424500000001) (0.010324234000000002) (0.010356719000000014) (0.010341101000000005) (0.010323500500000013) (0.010550815000000005) (0.010568598000000012) (0.010455647000000012) (0.010368765000000002) (0.01048173799999999) (0.010538219500000001) (0.01048492799999999) (0.010360945499999996) (0.010805168000000004) (0.010254492500000004) (0.010477403499999996) (0.010387900000000005) (0.010486430500000005) (0.010586546500000002) (0.010504902999999996) (0.010324072000000004) (0.010271725499999995) (0.010545309000000003) (0.01054297600000001) (0.010413974999999992) (0.010306173500000002) (0.010473954999999993) (0.010487243000000007) (0.0106678345) (0.010510500499999992) (0.010392449999999998) (0.010351768999999997) (0.010580506500000003) (0.010698554000000013) (0.010471021999999996) (0.01059755300000001) (0.010261356499999999) (0.01000426900000001) (0.010093240999999989) (0.00995169) (0.009912631499999991) (0.00999414400000001) (0.010031822999999995) (0.0101156315) (0.009933114000000007) (0.01001551349999999) (0.010079180499999993) (0.01015410550000001) (0.01035976750000002) (0.01018508550000001) (0.010440851000000015) (0.010191119499999984) (0.010032806500000005) (0.009918297000000006) (0.010066763500000006) (0.010035249499999996) (0.010095394500000007) (0.009914243000000003) (0.010070462500000002) (0.01011597950000001) (0.010033542000000006) (0.010174215) (0.010102406499999994) (0.010066167) (0.010362000999999996) (0.0103913115) (0.010064298499999999) (0.010173535499999997) (0.010275432000000015) (0.010129308500000003) (0.010343436500000011) (0.010113052499999997) (0.010494989999999996) (0.010517576) (0.010232448000000005) (0.010140355000000004) (0.01054911750000001) (0.010590009499999983) (0.01046655149999999) (0.01042746750000001) (0.010686293499999985) (0.010562761000000004) (0.010460814999999998) (0.010393415000000017) (0.010512164000000004) (0.010602426499999998) (0.010390904000000006) (0.010279652499999986) (0.010063512999999996) (0.010218323500000001) (0.01036867200000001) (0.010277100999999997) (0.01047023150000001) (0.010592048500000006) (0.010540547000000011) (0.010342514999999997) (0.010731085500000001) (0.010420552999999999) (0.010242524500000003) (0.010471005499999991) (0.010003166500000008) (0.010129623500000004) (0.010076533499999998) (0.009961195500000006) (0.01001229449999999) (0.010054851500000003) (0.009983985499999987) (0.009954935500000012) (0.010198823499999995) (0.0102045085) (0.010316183000000007) (0.010104139000000012) (0.010262615500000002) (0.010044321999999994) (0.010155741499999996) (0.010055993000000013) (0.010020637000000013) (0.010123293000000005) (0.010008866499999991) (0.010100380000000006) (0.0099653475) (0.010037492999999995) (0.009988007000000007) (0.010253518000000003) (0.010173136499999999) (0.010146161) (0.01030499600000001) (0.010268053999999999) (0.010340128500000004) (0.010170689499999996) (0.010153582999999994) (0.010097876000000006) (0.010351539000000007) (0.010272278499999996) (0.010234845499999992) (0.010282008499999995) (0.010233649499999997) (0.010740339000000015) (0.010328101500000006) (0.010427526499999992) (0.010358795000000004) (0.010557045000000001) (0.010467494499999994) (0.010560009499999995) (0.010689873500000002) (0.010641831500000018) (0.010293005000000008) (0.01044964900000002) (0.010440490999999996) (0.010295150499999989) (0.010544679000000001) (0.01033459299999999) (0.010388221000000003) (0.010369343000000017) (0.010396908499999996) (0.010455282499999996) (0.010466553000000003) (0.010576236000000003) (0.010440274999999985) (0.010413444000000022) (0.010551610500000017) (0.010444133999999994) (0.0106948355) (0.01037797700000001) (0.009967543500000009) (0.009994114499999998) (0.010050039999999982) (0.010319214999999993) (0.01000149950000001) (0.010275489000000013) (0.010251240999999994) (0.010077956999999998) (0.010074751999999992) (0.01034114600000001) (0.010036678000000007) (0.010062227499999993) (0.010270503) (0.010137996499999996) (0.01012655450000001) (0.010049060999999998) (0.010059216999999995) (0.010391516000000003) (0.010099852500000006) (0.010011452000000004) (0.01018323950000001) (0.009961993499999988) (0.010099321499999994) (0.010139302499999989) (0.010388579999999994) (0.010123636000000005) (0.010046203000000004) (0.010334578000000011) (0.010031316999999998) (0.010290475500000007) (0.010193013999999986) (0.010186201000000006) (0.01028554000000001) (0.010405571000000002) (0.010514830000000017) (0.010446959999999991) (0.010293589499999992) (0.010345972500000009) (0.010174537499999997) (0.010603081500000014) (0.010581956999999989) (0.010554131500000008) (0.010454621500000011) (0.010518149500000004) (0.010608778499999985) (0.010591018999999993) (0.010444823499999992) (0.010561503) (0.010313456999999998) (0.010276026499999993) (0.010182527499999997) (0.010444573000000013) (0.010188598999999993) (0.010412270500000015) (0.010332689500000006) (0.010259991999999996) (0.010442581000000006) (0.010678993500000011) (0.010326747999999997) (0.010586650999999989) (0.010637531000000006) (0.010458713500000008) (0.010364950999999997) (0.010452746999999998) (0.009779516499999988) (0.009909685500000001) (0.00997967600000002) (0.010204732999999994) (0.010197080999999997) (0.010236482500000005) (0.010340114000000011) (0.010141168999999992) (0.01027977649999999) (0.01046549699999999) (0.010195292500000008) (0.010214622000000007) (0.010192192000000003) (0.010212179000000002) (0.010104568499999994) (0.010062467000000005) (0.009968438999999996) (0.010157034499999995) (0.010078561) (0.010111128999999996) (0.010172097500000005) (0.010060556999999998) (0.01009560150000001) (0.010081412999999997) (0.0104047845) (0.010128787) (0.010267271499999994) (0.010277991) (0.010200520000000005) (0.010312850499999998) (0.010411869000000004) (0.01016254450000001) (0.010274725499999998) (0.010374992999999999) (0.010146722499999997) (0.010364598500000016) (0.010292696000000004) (0.010530146500000004) (0.010368029) (0.01051371050000001) (0.010407848999999997) (0.010696136500000009) (0.01059887050000001) (0.010237085500000007) (0.010349083999999995) (0.010331149500000011) (0.0102487515) (0.010365099000000003) (0.010572936500000005) (0.010243926499999986) (0.010298484999999996) (0.010459011500000004) (0.010464047500000004) (0.010741402499999997) (0.010202496500000019) (0.010272877) (0.010535662500000001) (0.010459556499999995) (0.010628620499999991) (0.010347464) (0.010601409500000006) (0.010434662499999983) (0.010748701999999999) (0.010574862000000004) (0.010040534000000018) (0.010046697500000007) (0.01003380399999998) (0.009954888999999995) (0.009961811999999987) (0.010074096500000004) (0.009991538999999994) (0.010192419000000008) (0.010116674500000006) (0.0100299145) (0.010307821000000009) (0.0103409785) (0.009916268000000006) (0.010050891999999992) (0.010336130499999985) (0.01021895199999999) (0.009978090499999995) (0.010010867499999992) (0.010034080999999986) (0.0100058705) (0.010203114999999999) (0.0101627735) (0.01003064649999999) (0.010132929999999998) (0.010228625500000005) (0.010199978999999998) (0.010289077000000008) (0.010223557999999994) (0.010318226) (0.010254374999999996) (0.010307146999999989) (0.010024710000000006) (0.010373541) (0.010238866999999999) (0.010345721500000002) (0.0105155475) (0.010229213500000015) (0.010215883999999995) (0.010272064499999997) (0.010347912500000014) (0.010328193) (0.010519207499999988) (0.010484664500000004) (0.010633037999999984) (0.010821395999999997) (0.010498508000000004) (0.010478530500000013) (0.010339064999999995) (0.010235941500000012) (0.010420387000000003) (0.010241608999999999) (0.0106173185) (0.010408813500000003) (0.0103132965) (0.010487536000000006) (0.010332947999999995) (0.010254707000000002) (0.010497365500000008) (0.010500841999999996) (0.0103725385) (0.010449397999999999) (0.010712952999999997) (0.010910833000000009) (0.010696124500000015) (0.010059468500000002) (0.009938088499999997) (0.010071852000000006) (0.009997899500000004) (0.010441417500000008) (0.0100662725) (0.010096449499999993) (0.009853662) (0.010066119999999998) (0.010235448999999994) (0.010261547999999995) (0.010415351000000003) (0.010019227999999991) (0.010156083999999996) (0.010154081500000009) (0.010293360000000001) (0.010058178000000001) (0.010042639499999992) (0.010304634000000007) (0.010048924000000015) (0.010027934000000016) (0.010233866499999994) (0.009930386500000013) (0.010119971000000005) (0.01019284299999998) (0.010306974999999996) (0.010214384500000007) (0.010276712499999993) (0.010163153999999994) (0.010292054999999994) (0.010117175000000006) (0.0102870605) (0.010495948000000005) (0.01044734650000001) (0.01040936599999999) (0.01035022649999999) (0.010354677499999992) (0.010298456999999997) (0.010493433999999996) (0.010381697500000009) (0.010553255499999983) (0.010602842000000001) (0.010457842999999994) (0.010635138500000002) (0.010426325) (0.010355520000000007) (0.010701555500000015) (0.0104381905) (0.010374406999999988) (0.010396361999999992) (0.010613202000000002) (0.010337333000000018) (0.010523250999999997) (0.010570873499999994) (0.01024820600000001) (0.010349967000000002) (0.010460986000000005) (0.010611151499999985) (0.010472668500000004) (0.010853916500000005) (0.010777425000000007) (0.010614838500000001) (0.010916570500000014) (0.010626176500000015) (0.010160563500000011) (0.00994978299999999) (0.010221106999999993) (0.0101296845) (0.010101026999999999) (0.010073289999999999) (0.01002836750000001) (0.010194894499999996) (0.010271744499999999) (0.010270594500000008) (0.010174642499999997) (0.010176891000000007) (0.010319598999999999) (0.010330795500000003) (0.01019105200000002) (0.010413135000000004) (0.010333668500000004) (0.010136777) (0.010286221499999998) (0.009884311999999992) (0.010100615999999993) (0.01013224) (0.01013720550000001) (0.010218534000000001) (0.010326520999999991) (0.01023863300000001) (0.010222730499999999) (0.010063617999999996) (0.010151449000000007) (0.010394420500000015) (0.010229317000000002) (0.010313984500000012) (0.010324314000000001) (0.010428647000000013) (0.010176585000000002) (0.010413041000000012) (0.01024745099999999) (0.010694268500000007) (0.010408444499999989) (0.010343927500000002) (0.010609753) (0.010669019500000002) (0.010489901499999996) (0.010513027000000008) (0.010622752) (0.010530040000000004) (0.010696311) (0.010495622499999996) (0.010661334999999994) (0.01077411049999999) (0.010408877999999996) (0.010261793000000005) (0.010325243999999997) (0.010387976999999993) (0.010405664499999995) (0.010490466500000004) (0.010467161999999988) (0.010737158499999996) (0.0104404315) (0.010353598000000006) (0.01070417500000001) (0.010520166999999997) (0.010627876499999994) (0.010561093500000007) (0.010257638999999999) (0.009943087499999989) (0.010233162000000004) (0.009912228000000009) (0.010113706) (0.010272892499999992) (0.010112570000000001) (0.0104088725) (0.010223819000000009) (0.01022025900000001) (0.010073295999999995) (0.010126341499999983) (0.010242266) (0.010311303499999994) (0.010299413500000007) (0.010047929999999983) (0.010372768000000004) (0.010102620000000007) (0.009943055000000006) (0.010230101500000005) (0.00994389300000001) (0.010145893499999989) (0.010203970499999993) (0.010176183500000005) (0.010218623999999996) (0.010510381999999985) (0.010249687000000007) (0.010218124500000009) (0.010429279500000013) (0.01053594649999999) (0.010251706999999999) (0.010288961999999985) (0.010341858500000009) (0.010550244) (0.010451892000000018) (0.010350386500000003) (0.010329907999999999) (0.010418035000000006) (0.01037373400000001) (0.010442111000000004) (0.010386393999999993) (0.010363043500000002) (0.010736009000000005) (0.01062341) (0.010668312999999999) (0.010665152999999997) (0.010437362999999991) (0.010363193500000006) (0.010371212000000005) (0.010401442499999997) (0.010331707499999995) (0.010764303499999989) (0.010449002500000013) (0.010632218499999999) (0.010558853499999993) (0.01016244849999999) (0.010641989000000004) (0.01061603450000001) (0.0104040455) (0.010465281500000007) (0.010624334) (0.010672429999999997) (0.010641796000000009) (0.010727002999999985) (0.010075024500000002) (0.009969850500000002) (0.010096682999999995) (0.010010837999999994) (0.010087237499999999) (0.010226060500000009) (0.009883459499999983) (0.0101943575) (0.010030858500000017) (0.010053668500000001) (0.010099676000000002) (0.010086299000000007) (0.010252106999999996) (0.010196597500000001) (0.010226626500000002) (0.009978839000000003) (0.010187926) (0.009976626000000002) (0.010001304500000002) (0.009874277) (0.009914872500000005) (0.010107641) (0.010120027500000003) (0.010044684000000012) (0.010351072499999989) (0.009966385000000008) (0.009992485500000009) (0.010305262499999995) (0.010301387000000009) (0.010123735499999995) (0.010153131999999995) (0.010275503500000005) (0.010481061000000014) (0.010254144500000006) (0.010396125000000006) (0.010267757499999988) (0.010540252499999986) (0.010536024499999977) (0.0104824565) (0.010291797000000005) (0.010517251499999991) (0.010560368) (0.010415407000000002) (0.010315005000000002) (0.010453856000000011) (0.011107203499999996) (0.010639693499999991) (0.010373422999999993) (0.010549607000000003) (0.010551136000000003) (0.010589315500000002) (0.010247774500000001) (0.010359920000000009) (0.011037316500000005) (0.010339519000000005) (0.010207159000000007) (0.010519326499999981) (0.010612276000000004) (0.010414095999999984) (0.010532270499999996) (0.010436250999999994) (0.01079268700000001) (0.010468437999999997) (0.010337827000000008) (0.0099988055) (0.010130277999999993) (0.010019864500000003) (0.010138732499999997) (0.010437299999999997) (0.01044576500000001) (0.009941888499999996) (0.010116754000000006) (0.010655338) (0.010350501499999998) (0.010074648000000005) (0.01015054) (0.010208884499999987) (0.010157362500000017) (0.010133859499999995) (0.01008124299999999) (0.010277185000000008) (0.009892537500000007) (0.010176539499999998) (0.009896137000000013) (0.010110344500000007) (0.010289951000000006) (0.010045931499999994) (0.0100857305) (0.010316726999999998) (0.010242498500000002) (0.010228889000000005) (0.010407608499999998) (0.010206115000000002) (0.01007245100000001) (0.010307759) (0.009996018500000009) (0.010546456999999995) (0.010410773500000012) (0.010472798500000005) (0.010510091499999985) (0.010404668999999991) (0.010537185500000004) (0.010282576500000015) (0.010267323999999994) (0.010464702999999992) (0.01035053150000001) (0.010421827499999994) (0.010826516000000008) (0.010485073499999997) (0.010510089500000014) (0.010482761999999993) (0.010348288000000011) (0.010498887000000012) (0.010345321000000005) (0.010359846000000006) (0.010363306500000002) (0.010390880500000005) (0.010526156999999994) (0.010205411500000011) (0.010446281500000001) (0.010510136500000003) (0.010498039000000015) (0.010432997) (0.010452249499999983) (0.0105684105) (0.010448695000000008) (0.010642518500000003) (0.010485855000000002) (0.009935214499999984) (0.010192603500000008) (0.010006353499999995) (0.010244450500000002) (0.010116756500000018) (0.010012090000000015) (0.009972999999999996) (0.009912550500000006) (0.01028791900000002) (0.010180477999999993) (0.010440458) (0.010109648499999999) (0.010283194499999995) (0.010292335499999986) (0.010037786500000007) (0.010374895499999995) (0.010333422000000009) (0.010241785999999989) (0.010267738999999998) (0.010107156500000006) (0.00997482949999999) (0.010483092999999999) (0.00992179750000001) (0.010282941500000004) (0.010277848500000006) (0.010068145000000014) (0.010331451499999991) (0.010157150500000003) (0.010224997) (0.010455769500000003) (0.010096871000000021) (0.01019344300000001) (0.010134096499999995) (0.010414901500000004) (0.010316885499999998) (0.010396565999999996) (0.010397109499999987) (0.010537119999999997) (0.010297831500000007) (0.015817161000000024) (0.010455469999999994) (0.010591283499999979) (0.010507733500000005) (0.010431610499999994) (0.010532592999999993) (0.010575630000000003) (0.010361938999999987) (0.010540853999999988) (0.01052265849999999) (0.010556287999999997) (0.010319470999999997) (0.010319757500000012) (0.010574838500000003) (0.010257735500000004) (0.010569681999999997) (0.010302233499999994) (0.01050466600000001) (0.010465634500000001) (0.010342312000000006) (0.010331102499999995) (0.010685259000000016) (0.010643148499999991) (0.010615225500000006) (0.010650991499999998) (0.010026063000000002) (0.010158287000000002) (0.010087719499999995) (0.009863643500000005) (0.009979044499999992) (0.010269857500000007) (0.009890978999999994) (0.009900276999999999) (0.010534536499999997) (0.010625727499999987) (0.010230635500000002) (0.010321933999999991) (0.010089667999999996) (0.010084991999999987) (0.010153973999999996) (0.010421790499999986) (0.009984489499999985) (0.010093831499999983) (0.010126251999999988) (0.010599945999999999) (0.010081714499999991) (0.010210859000000003) (0.010253436500000004) (0.010088353000000008) (0.010181477000000008) (0.0104244285) (0.010177085500000002) (0.010359440499999997) (0.010437357000000008) (0.0105249345) (0.010187382499999995) (0.010172238) (0.010287122999999995) (0.010417027500000009) (0.010340226500000008) (0.010446922500000011) (0.010373114500000002) (0.010401173499999986) (0.010601709500000014) (0.010495371500000003) (0.010624435499999987) (0.010547574000000004) (0.010596230999999984) (0.010475502500000011) (0.010476515000000006) (0.010753529499999998) (0.010461941500000016) (0.010412711000000005) (0.010431506999999993) (0.010315602499999993) (0.010297899999999985) (0.010339460500000008) (0.010588794499999998) (0.010460508500000007) (0.0103305655) (0.010330981000000017) (0.010663607500000005) (0.010442094500000013) (0.010402425500000007) (0.010460147500000003) (0.010566134500000005) (0.010580242500000003) (0.010407434500000007) (0.010348719000000006) (0.009886561500000002) (0.009963029000000012) (0.010202501000000003) (0.010161196499999997) (0.009803483500000001) (0.009951242000000013) (0.010049827499999997) (0.010183457500000007) (0.010012067499999985) (0.010003319999999996) (0.010126609499999994) (0.010079071499999995) (0.010090133000000001) (0.010124468999999997) (0.010108957000000016) (0.009986503999999993) (0.01004410850000001) (0.010157551999999986) (0.009942893500000008) (0.009907362499999989) (0.009980402) (0.009883733499999992) (0.010039834999999997) (0.009924819000000001) (0.009962780000000018) (0.010133991500000009) (0.010250951499999994) (0.010261237999999992) (0.010016695999999992) (0.010013343500000008) (0.010084532999999993) (0.009972326000000004) (0.010400893499999994) (0.010145810499999991) (0.010395513499999995) (0.0103587775) (0.010527652000000012) (0.010257753999999994) (0.010400550500000008) (0.0104227395) (0.01032458650000001) (0.010591969000000007) (0.010336956999999994) (0.010405419499999985) (0.010591163999999986) (0.010302760000000008) (0.010326562499999997) (0.010587198000000006) (0.010330770500000003) (0.010581427500000004) (0.010327527500000003) (0.010399276999999985) (0.010086380000000006) (0.01039370299999999) (0.010617719499999997) (0.010122911500000012) (0.010722924499999995) (0.010684761000000001) (0.010694205000000012) (0.010341846000000002) (0.010429592000000001) (0.010515069000000002) (0.010637455500000004) (0.010285634000000002) (0.009982587999999987) (0.009944750000000002) (0.010046986500000007) (0.010117035499999996) (0.009973953500000007) (0.009829019500000008) (0.01003341349999999) (0.010382528500000002) (0.01019095049999999) (0.010099983000000007) (0.010056715999999993) (0.009979111500000012) (0.01012895300000001) (0.01010477700000001) (0.010218311000000022) (0.009935819999999998) (0.010115431499999994) (0.009923912000000007) (0.010221953499999992) (0.009910766499999987) (0.010177599999999981) (0.010018269499999996) (0.010023553500000004) (0.010022555500000016) (0.010353090499999995) (0.010193537000000003) (0.010503667499999994) (0.010340346000000014) (0.010391680999999986) (0.009972153000000011) (0.010147170499999997) (0.010060266500000012) (0.010351695999999994) (0.01040753300000001) (0.010317843000000007) (0.0105668555) (0.010350092000000005) (0.010389477500000008) (0.010250376499999991) (0.010688390500000006) (0.010474677999999987) (0.0106102275) (0.010373866499999981) (0.010411647999999996) (0.010397258000000006) (0.010362951999999995) (0.010463392500000002) (0.010514573499999999) (0.01027639200000001) (0.0102943125) (0.010308097499999988) (0.010323650000000004) (0.01036617899999999) (0.010326838500000005) (0.010494350500000013) (0.010253639499999995) (0.010701735000000004) (0.010274530500000004) (0.010331405500000002) (0.010309824000000009) (0.01024594849999999) (0.010484582499999992) (0.010558824500000008) (0.010337107499999984) (0.010143192499999995) (0.010103653500000004) (0.009984070000000012) (0.010031148000000004) (0.009913062) (0.010072818499999997) (0.009906855999999992) (0.009906953999999996) (0.010186965000000006) (0.010104792500000001) (0.010157232000000002) (0.010030484000000006) (0.010219201000000011) (0.010203069499999995) (0.010201335500000006) (0.010219873500000004) (0.010000961500000002) (0.009940711500000005) (0.00989461250000001) (0.010088694500000009) (0.010067928000000004) (0.010173218000000012) (0.009932129499999998) (0.010004936000000006) (0.010401979000000006) (0.0105738415) (0.010297459499999995) (0.010305863499999998) (0.010370875999999987) (0.010196425999999995) (0.010063472000000004) (0.010218454500000002) (0.010246387999999995) (0.010526371999999992) (0.010718963999999997) (0.010266923999999997) (0.01046930850000001) (0.010170264500000012) (0.010508590999999998) (0.010293115500000005) (0.010395113999999983) (0.010463235500000001) (0.010486211499999995) (0.010304906500000002) (0.010455875999999989) (0.010561244999999997) (0.010523713000000004) (0.01049512000000001) (0.010260732499999994) (0.010337311500000015) (0.010429995999999997) (0.010480992000000008) (0.01014350650000001) (0.01048547000000001) (0.010359150499999997) (0.010384508) (0.010430989000000002) (0.010437958499999997) (0.010468992499999982) (0.010372906999999987) (0.010503311500000015) (0.010250697000000003) (0.010402649) (0.010598681999999998) (0.009993280500000007) (0.010183310500000015) (0.010064013999999996) (0.009898921000000019) (0.00999759950000001) (0.009983544499999997) (0.010190611500000002) (0.00987732899999999) (0.0101114125) (0.0103575385) (0.010018374999999996) (0.009994384499999995) (0.010207076500000009) (0.010115712499999999) (0.010135368500000005) (0.010219189500000003) (0.010014291499999994) (0.009966653499999992) (0.009847723500000002) (0.010045916000000002) (0.009915098999999997) (0.009907110999999996) (0.01017596300000001) (0.010036379499999998) (0.010202806500000008) (0.010042242500000007) (0.010164782499999997) (0.009914996500000009) (0.010188913999999993) (0.010382734500000004) (0.010186433000000009) (0.0103890435) (0.010427578499999993) (0.01031175450000002) (0.010254306500000004) (0.010579995999999994) (0.010562295499999985) (0.010527552999999995) (0.0103742795) (0.010183631500000012) (0.010426167999999986) (0.010405020500000015) (0.010302046499999981) (0.01042169599999998) (0.010499563000000003) (0.010506813000000004) (0.010318515) (0.010427624499999996) (0.010413423000000005) (0.010250216000000006) (0.010448467499999989) (0.010861039000000003) (0.010243149500000007) (0.010591773500000012) (0.010305155499999996) (0.010279404500000006) (0.010446308500000015) (0.010391926499999982) (0.010438938999999994) (0.010379035000000009) (0.0104842515) (0.010599985000000006) (0.010631487999999994) (0.010390533500000007) (0.010070344499999995) (0.010036951000000002) (0.00995887749999999) (0.009848061000000005) (0.010026484999999988) (0.010102450999999998) (0.010099128999999998) (0.010181242499999993) (0.010051919500000006) (0.010063158499999988) (0.009978323000000011) (0.010357184000000005) (0.010230385999999994) (0.009976364499999987) (0.010060343499999999) (0.009927120500000011) (0.0099069985) (0.010106717000000001) (0.009995377) (0.010333834) (0.009883042500000008) (0.010016189500000008) (0.0101342445) (0.010107241000000003) (0.010271562500000012) (0.010182219999999992) (0.010178426000000004) (0.009999591000000002) (0.010567321000000005) (0.010118191499999998) (0.010138514000000001) (0.010000935000000002) (0.010459628999999998) (0.010408451999999999) (0.01036550550000001) (0.010332900000000006) (0.010221936500000015) (0.01028771399999999) (0.010467268000000002) (0.010478187) (0.010958785499999998) (0.010464156999999988) (0.010362907000000005) (0.010411021499999992) (0.010552809999999996) (0.010679617500000016) (0.010408518000000005) (0.010443081500000007) (0.010402926000000007) (0.01041073300000002) (0.010318733999999982) (0.010194105999999994) (0.010442253499999998) (0.010255596000000006) (0.010301906) (0.010421011000000008) (0.010666061500000004) (0.010410479) (0.0104327315) (0.010267976499999998) (0.010449555499999999) (0.010473089000000005) (0.01028547249999999) (0.010327463000000009) (0.010084507500000006) (0.010098086500000006) (0.010293751500000003) (0.010235575999999996) (0.010003830000000005) (0.009984539000000014) (0.010445258999999998) (0.010006763499999988) (0.010044237499999997) (0.009929934500000001) (0.010007557500000014) (0.01006364350000001) (0.010044040500000004) (0.010401975500000007) (0.010081467499999983) (0.01023317750000001) (0.010086015000000004) (0.0098751495) (0.0099920015) (0.010199954999999997) (0.010110144500000015) (0.010218159500000004) (0.010005696000000008) (0.0099820365) (0.010322113999999993) (0.010315091499999998) (0.009992359000000006) (0.0102276575) (0.010143634499999998) (0.009983027499999991) (0.010117141999999996) (0.010131612499999998) (0.010435096000000005) (0.010482212000000005) (0.01066216049999999) (0.010456016499999998) (0.010334106999999995) (0.010198519500000003) (0.010166491000000014) (0.010384361499999994) (0.010407813000000002) (0.01058651799999999) (0.010396235500000003) (0.010501560999999993) (0.010309448000000013) (0.010468728499999996) (0.011063237500000003) (0.010331462) (0.010361437000000001) (0.010589602999999989) (0.010331470500000009) (0.0103314075) (0.010368232000000005) (0.010411106500000003) (0.010295173500000004) (0.010454677999999995) (0.010531506000000024) (0.010442510999999988) (0.010305759499999984) (0.010376717499999993) (0.010317234999999994) (0.010677726000000012) (0.010293859500000002) (0.010436968500000005) (0.010001836500000014) (0.010159187) (0.009932787999999998) (0.009980296999999985) (0.009977048500000002) (0.009937516999999993) (0.010056320499999993) (0.010026148499999998) (0.010296585999999983) (0.010362734999999984) (0.010131081499999986) (0.010309167499999994) (0.010184880999999993) (0.0103102115) (0.010130854999999994) (0.010099813499999999) (0.010077606000000003) (0.010332272500000003) (0.009896954000000013) (0.010039267000000004) (0.010229043500000007) (0.010340785500000005) (0.009920137499999995) (0.01005507) (0.010158549500000003) (0.010268333000000004) (0.010102101499999988) (0.010133403500000013) (0.01025815549999999) (0.01009582349999999) (0.010198462000000005) (0.010146893000000004) (0.010218313500000006) (0.010391843500000011) (0.010352665999999996) (0.010491967500000005) (0.010225476499999983) (0.010515942) (0.010376085999999993) (0.010291993999999999) (0.010507548999999991) (0.0106818615) (0.010474496) (0.010826632500000002) (0.010620697499999998) (0.010498238500000007) (0.01054881299999999) (0.01071350850000001) (0.01046508950000001) (0.010310140499999995) (0.010441882999999999) (0.010308846999999996) (0.010274904000000001) (0.010295877000000009) (0.010310438000000005) (0.010336729500000016) (0.010689396000000004) (0.010478429999999997) (0.010543231499999986) (0.010526808499999998) (0.0103963745) (0.010447534500000008) (0.010429213499999992) (0.010380555500000013) (0.010143717499999996) (0.010084331500000002) (0.010061677000000019) (0.009885439499999996) (0.009914732499999995) (0.010012427000000004) (0.010013144499999987) (0.010192739999999992) (0.010358907) (0.010103734000000003) (0.010258248999999997) (0.010155315999999998) (0.010306192499999992) (0.009977017500000004) (0.010109387000000011) (0.010050889499999993) (0.010132081999999987) (0.010071822499999994) (0.009993151000000006) (0.009961128999999999) (0.009951763499999988) (0.010105594499999995) (0.010134428499999987) (0.01008527549999999) (0.010230393500000018) (0.010289238500000006) (0.0101813085) (0.010101321499999996) (0.010185197500000007) (0.0102299275) (0.010399053500000019) (0.010181013000000003) (0.010314596499999995) (0.010098744500000006) (0.010446546000000001) (0.010270360499999992) (0.010360222500000002) (0.010373554499999993) (0.010356993000000009) (0.010401123500000012) (0.010503129) (0.010653511500000004) (0.010690029500000003) (0.010386660000000006) (0.010530293999999996) (0.010324246999999995) (0.010415720000000003) (0.010617738500000001) (0.010424126499999992) (0.010634470000000007) (0.010151081500000006) (0.010501269999999993) (0.010309861000000003) (0.010293998999999998) (0.01037956100000001) (0.010366540499999993) (0.010595438500000012) (0.010630341999999987) (0.010373524000000009) (0.010519940499999991) (0.010489530999999996) (0.010487582999999995) (0.01063910400000001) (0.010595227499999998) (0.010211573500000015) (0.00987876) (0.009923019000000005) (0.010207880500000002) (0.0101835225) (0.010073702000000004) (0.0098994035) (0.010126830500000003) (0.01013998549999999) (0.010166317499999994) (0.009955796999999988) (0.010029114999999991) (0.010047355000000008) (0.010094603999999993) (0.010002152500000014) (0.010004161499999997) (0.009897112000000013) (0.009990670000000007) (0.009955537000000014) (0.010030329000000018) (0.010056758999999998) (0.010122415999999995) (0.0098942905) (0.010014262499999996) (0.010594546999999996) (0.010112206000000012) (0.010276946000000009) (0.010216704500000007) (0.010263364000000011) (0.01034539999999999) (0.010305631999999995) (0.010046554999999999) (0.01036998) (0.01040506450000002) (0.010377308000000002) (0.010274594499999984) (0.010388741499999993) (0.010480785000000006) (0.010308105999999997) (0.010235628499999996) (0.010251642000000005) (0.010238363) (0.010617721499999996) (0.010395909000000009) (0.010428399000000005) (0.010510474000000006) (0.010417794999999994) (0.010652117500000002) (0.010265843499999983) (0.010313417000000005) (0.010291699500000001) (0.010291468999999998) (0.010512068999999999) (0.010288408999999998) (0.010232205499999994) (0.010467900500000016) (0.010472745000000006) (0.010462510499999994) (0.010595334499999998) (0.010517222999999992) (0.010861785999999998) (0.010795645000000006) (0.010539407) (0.010611831000000002) (0.009882982999999998) (0.010028980999999992) (0.010342148499999995) (0.010094346500000004) (0.009998509500000002) (0.010200314000000002) (0.010045979499999982) (0.010094167999999987) (0.010073425499999997) (0.009977705999999989) (0.010055004499999992) (0.010150777) (0.010441145999999998) (0.0100928245) (0.010086872499999996) (0.010091430999999998) (0.009830670000000014) (0.010048452000000013) (0.009955211999999991) (0.010176112999999987) (0.010124039000000015) (0.009967868000000005) (0.009961221500000006) (0.00986393499999999) (0.01024191549999999) (0.010235555499999993) (0.010298731499999991) (0.010443251) (0.010170271500000008) (0.010239796499999995) (0.0102591135) (0.010261048000000009) (0.010556661000000009) (0.010452900000000001) (0.01027188050000001) (0.010300363500000007) (0.010543094000000003) (0.010533675500000006) (0.010935010500000009) (0.01026817449999999) (0.010800365500000006) (0.010399781499999997) (0.0104743895) (0.010810258499999989) (0.010782415000000004) (0.010527546500000012) (0.010739366) (0.010516554000000011) (0.010423799499999997) (0.010140647000000003) (0.010415633999999993) (0.010139429500000005) (0.010182518000000002) (0.010216264000000003) (0.01035533999999999) (0.010308123500000016) (0.0104853595) (0.010436329499999994) (0.010692907500000001) (0.010494742500000001) (0.010457049999999996) (0.010485758000000026) (0.010558372999999996) (0.010517136999999996) (0.010637973499999995) (0.0098430335) (0.010180974499999995) (0.010106531500000002) (0.010184472) (0.010132916000000006) (0.010113097500000001) (0.010385215000000003) (0.010015931000000006) (0.010056864499999998) (0.010234781499999998) (0.010244668500000012) (0.00989325599999999) (0.010124451499999992) (0.010293525999999997) (0.010396803499999996) (0.009897393000000004) (0.010297109000000013) (0.010371746000000001) (0.009865848999999996) (0.010401004999999991) (0.010016184000000011) (0.00995592449999999) (0.010018822999999982) (0.010157846500000012) (0.01041785549999999) (0.010416986000000003) (0.010235678999999998) (0.010378278500000004) (0.01028785800000001) (0.01005761500000002) (0.010069900000000007) (0.010603225000000022) (0.010320283499999985) (0.010253305000000004) (0.010382977500000015) (0.010340928) (0.010659648499999994) (0.010453591499999998) (0.010181126999999998) (0.010264089000000004) (0.010831377000000003) (0.010447897999999997) (0.010647084000000001) (0.010388264499999994) (0.010529333499999988) (0.01027016700000001) (0.010504062499999994) (0.010482143) (0.010408439500000005) (0.01042507199999998) (0.01033273300000001) (0.0104218955) (0.010455764000000006) (0.010453609000000003) (0.010583668000000004) (0.010634109500000016) (0.011082671500000002) (0.010623297000000004) (0.010544509500000007) (0.010657338000000002) (0.010693518999999985) (0.01078398450000001) (0.010701460499999996) (0.010294148500000003) (0.009904982500000006) (0.010146358499999994) (0.010033177000000004) (0.010097952000000007) (0.010203449000000003) (0.010175627999999992) (0.010052654500000008) (0.010119501000000003) (0.009917978499999994) (0.010562307000000007) (0.010205401500000003) (0.010196167500000006) (0.010216346000000001) (0.0104208675) (0.010301056500000003) (0.009927779000000012) (0.010177120000000012) (0.010176028000000018) (0.010134643499999998) (0.010065522499999993) (0.010146272999999997) (0.010078876) (0.010182691999999993) (0.010312702499999993) (0.010425101499999992) (0.010289945000000009) (0.010150473000000007) (0.010439825000000014) (0.010140323499999992) (0.010141124500000001) (0.010086293499999996) (0.010268300000000008) (0.010370347999999988) (0.010313444500000005) (0.010400119999999999) (0.010578888500000008) (0.010259571500000009) (0.010574568000000006) (0.010450149000000006) (0.010608404000000002) (0.010334054499999995) (0.01047308000000001) (0.010588549000000003) (0.010506730499999992) (0.010517962499999992) (0.010586271999999994) (0.010852051000000001) (0.010403585000000007) (0.010243444000000004) (0.010578447000000005) (0.010534644499999996) (0.010536247499999998) (0.010545245500000008) (0.010525643500000001) (0.010437398) (0.01046145150000001) (0.010508244) (0.010759317000000004) (0.01065224150000002) (0.01055209850000001) (0.010634987500000012) (0.010249455500000004) (0.010160155500000004) (0.009998260000000009) (0.010193898000000007) (0.010524349000000002) (0.010192288000000008) (0.010178188000000005) (0.010076949000000002) (0.010193849000000019) (0.010098107000000009) (0.010212086499999995) (0.010209923999999995) (0.010117070000000006) (0.010025703999999996) (0.0101530455) (0.010448675500000004) (0.010078322) (0.010267897000000012) (0.009896781000000007) (0.010261408999999985) (0.009977539499999993) (0.009915863499999997) (0.00993390999999999) (0.010020947499999988) (0.010054642500000002) (0.0101247545) (0.010066811999999994) (0.009989211499999998) (0.010085044500000015) (0.010151431499999988) (0.010002273000000006) (0.010431300000000004) (0.009988487000000004) (0.010042860000000015) (0.010583756500000013) (0.010311712000000015) (0.010177331499999998) (0.010209585999999993) (0.010327707000000005) (0.0103941605) (0.010371411999999997) (0.01030244150000001) (0.010649494499999995) (0.010377682499999999) (0.010698015500000005) (0.010529431499999992) (0.01045685099999999) (0.010488063500000006) (0.010379072500000017) (0.010370417000000007) (0.010592991499999996) (0.010302455500000002) (0.010217773999999985) (0.0105266205) (0.010447166500000007) (0.01036135249999999) (0.010419838000000015) (0.010429122000000013) (0.010577896500000003) (0.010559792000000012) (0.010568877500000004) (0.01052795649999999) (0.010476643499999994) (0.0103653665) (0.010747482499999989) (0.010526045499999984) (0.009957810999999997) (0.010021799499999998) (0.010059023) (0.010110843500000008) (0.009957882000000001) (0.01006116550000001) (0.009988290999999996) (0.009903582499999994) (0.010038479000000003) (0.010317541999999999) (0.010143963499999992) (0.010185091000000007) (0.010271432999999996) (0.010077331999999994) (0.0100941685) (0.010333094500000015) (0.010276761500000009) (0.009893539000000007) (0.009883997500000005) (0.010131090999999995) (0.010240591500000007) (0.010072474500000012) (0.010065211500000004) (0.010001442499999985) (0.010076827999999996) (0.010223733000000013) (0.010038543499999997) (0.01034898849999999) (0.010162873499999989) (0.010087267499999997) (0.010126013500000003) (0.010382560999999998) (0.010607710000000006) (0.010225719499999994) (0.010307998999999998) (0.010382893000000004) (0.010872898999999991) (0.01073893699999999) (0.010528436500000002) (0.010329659500000005) (0.010415204499999997) (0.010630913000000006) (0.010565964999999997) (0.010317694499999988) (0.0103794985) (0.010363357500000003) (0.010159129500000003) (0.010481662000000017) (0.010297529999999985) (0.010542591000000004) (0.01029540000000001) (0.010259776999999998) (0.010323369999999998) (0.010317288999999993) (0.010253619500000005) (0.010351419) (0.010624896999999994) (0.010672123499999991) (0.01053973649999998) (0.010549977500000002) (0.010589495500000004) (0.010374254000000013) (0.010472889999999999) (0.010410756000000007) (0.010430845999999994) (0.010025145) (0.010076320500000013) (0.009985783500000012) (0.0099277235) (0.010044519000000002) (0.010203814500000019) (0.009946918999999999) (0.0100559375) (0.0100197655) (0.010037339999999978) (0.010157027999999999) (0.010072621500000004) (0.01022627199999998) (0.010192714500000005) (0.010003506999999995) (0.010257755500000007) (0.010163117999999985) (0.009964436999999993) (0.0101671485) (0.010235297500000004) (0.010055638999999991) (0.010042046999999998) (0.010001030999999994) (0.010203231000000007) (0.010318935000000001) (0.010021179500000005) (0.009982384499999997) (0.0102596155) (0.010153874499999993) (0.010094193500000001) (0.010355091499999997) (0.010342391500000006) (0.010302707499999994) (0.010332045499999998) (0.010304455500000004) (0.010328100000000007) (0.010397028000000003) (0.010185457999999994) (0.010283434000000008) (0.010591820499999988) (0.010480214500000015) (0.010779324000000007) (0.010260897000000005) (0.010562080000000015) (0.010734746500000003) (0.010517771500000009) (0.010280405000000006) (0.010290284999999996) (0.01038637249999999) (0.010444429000000005) (0.010333179500000012) (0.010210044000000015) (0.010383813500000005) (0.010534159500000001) (0.010561912000000007) (0.010661216500000001) (0.010539917499999982) (0.010535068499999994) (0.010685037000000008) (0.010457672500000001) (0.010332266500000006) (0.010580979500000004) (0.010589749499999995) (0.01010107049999999) (0.009951764000000002) (0.010214637000000013) (0.010082702999999985) (0.010052385499999997) (0.010118853999999997) (0.010193392999999995) (0.010077797999999999) (0.0103955575) (0.01033465800000001) (0.010057304999999989) (0.010319230999999998) (0.010341239500000002) (0.010206407000000015) (0.010185874500000011) (0.010275957000000002) (0.010065114499999986) (0.010062799000000011) (0.010130249500000008) (0.010090690000000013) (0.010039779500000012) (0.010044385000000003) (0.010142764999999998) (0.010308923999999997) (0.010116171499999993) (0.010316059500000002) (0.010208864000000012) (0.01036182649999999) (0.009988565000000005) (0.009970772499999989) (0.01038891950000001) (0.010093919500000006) (0.010486397499999994) (0.010425169499999998) (0.010157826499999995) (0.010522060999999985) (0.010314625500000008) (0.010425396999999989) (0.010322338499999986) (0.010291492999999999) (0.01075047500000001) (0.010482320500000003) (0.010870783999999994) (0.010368845500000015) (0.010606364000000007) (0.010348371500000009) (0.010695671000000004) (0.01070401750000001) (0.01059582399999999) (0.010252893999999999) (0.010302770499999989) (0.010338782500000004) (0.010443795500000005) (0.010220039) (0.010396408999999995) (0.010369079500000003) (0.010620514000000011) (0.010518708500000001) (0.010459559500000007) (0.01049021550000001) (0.010756124000000006) (0.010266381500000005) (0.010854054500000002) (0.01050271350000001) (0.010554481500000018) (0.009919770999999994) (0.009841845000000016) (0.010012261500000008) (0.010043009500000005) (0.009980006) (0.009967291000000003) (0.010105764499999989) (0.01013058650000001) (0.009938442499999992) (0.010261654500000009) (0.010201409999999994) (0.010140466) (0.010115976499999998) (0.010072823499999994) (0.009979673500000008) (0.010668561999999993) (0.010045547500000002) (0.010066974499999992) (0.010171314499999987) (0.009998445499999994) (0.0100691465) (0.010074403999999995) (0.009938220499999997) (0.010233007500000002) (0.010137078999999993) (0.010309309500000016) (0.010238720999999992) (0.010116303999999993) (0.010150870000000006) (0.010048589499999996) (0.01047636049999999) (0.01035473399999999) (0.010311047000000004) (0.010299192499999998) (0.0102412895) (0.010472020499999998) (0.010236672499999988) (0.0105107765) (0.010227315500000014) (0.010280357000000004) (0.010671169500000008) (0.010428679999999996) (0.010641942000000001) (0.010215157500000016) (0.0103251075) (0.010403941000000014) (0.010440409999999997) (0.01032113250000001) (0.010214508000000011) (0.010266958499999992) (0.010321089500000005) (0.010644596000000006) (0.010321777500000004) (0.010178202500000011) (0.010518235999999986) (0.01059984450000001) (0.0104784785) (0.010522641499999999) (0.010579427500000016) (0.010449296500000024) (0.010533497000000003) (0.010418666000000007) (0.010635377999999987) (0.010141971999999999) (0.009885153499999993) (0.010029485000000005) (0.009861557000000007) (0.010139488000000002) (0.010315976000000004) (0.010498279999999999) (0.009924725500000009) (0.009925016499999995) (0.009935171999999992) (0.010071251000000017) (0.009961264499999997) (0.010045461999999991) (0.010353504999999999) (0.009995947499999991) (0.010018523000000001) (0.009960139500000006) (0.009861658500000009) (0.01025767200000001) (0.009939234500000005) (0.010040888499999998) (0.009936309000000018) (0.009950108999999985) (0.0099261915) (0.00998251) (0.010536244) (0.010069131999999995) (0.010393317999999999) (0.010027294500000006) (0.01029242000000001) (0.010346500499999994) (0.010296518500000004) (0.010475761000000014) (0.010494552000000004) (0.010506984499999997) (0.01041379299999999) (0.010500971999999997) (0.010235763000000009) (0.010412434999999998) (0.010589691999999998) (0.01080194999999999) (0.010506609) (0.010349154999999999) (0.010374183499999995) (0.0103779175) (0.010357734999999993) (0.010721166500000004) (0.010577452000000001) (0.01023734300000001) (0.010338314500000001) (0.010233608000000005) (0.010325223000000008) (0.0104919225) (0.010393279500000005) (0.010241804000000007) (0.010847495499999998) (0.010249458500000003) (0.01034354500000001) (0.010445768999999994) (0.010834348500000007) (0.010462996000000002) (0.010616105500000014) (0.010483259999999994) (0.010721292499999993) (0.010117034499999997) (0.009959048499999998) (0.009964274499999995) (0.010022819500000002) (0.01009741850000001) (0.009996862999999995) (0.009924923500000002) (0.010190597999999995) (0.01020189199999999) (0.01016685149999999) (0.010059228500000003) (0.011035878500000013) (0.010094013499999999) (0.01022029150000002) (0.01029397600000001) (0.009996828499999999) (0.010100443) (0.010071999499999998) (0.010097741999999993) (0.010242001) (0.010124959499999989) (0.010184275499999992) (0.009881307499999992) (0.009872693500000002) (0.010440300999999999) (0.010302236499999992) (0.010530021999999986) (0.010420282500000003) (0.010049228500000007) (0.010326289000000002) (0.01031736450000001) (0.010497656999999994) (0.010462126500000002) (0.010543240500000009) (0.010220983500000003) (0.010551696) (0.010234563000000002) (0.010208603999999996) (0.010169174999999989) (0.010416469999999997) (0.01038354000000001) (0.010389849500000006) (0.010432714499999995) (0.010428634500000006) (0.0103723005) (0.010519424999999985) (0.010379554000000013) (0.010427397000000005) (0.010517131499999999) (0.010525960000000001) (0.010320810500000013) (0.010458668000000004) (0.010405711499999998) (0.010623197000000001) (0.010454735000000007) (0.010598896999999996) (0.010365792000000013) (0.010610920499999996) (0.010406532499999996) (0.010371962499999998) (0.010412803999999998) (0.0106587135) (0.010913103499999993) (0.010665538000000002) (0.010702895500000004) (0.0101705785) (0.009957011500000015) (0.010001032499999993) (0.010066764499999992) (0.010011579499999992) (0.010303254999999997) (0.009941920000000007) (0.010249328500000016) (0.010468948500000005) (0.010230439000000008) (0.010160146500000009) (0.010224554499999997) (0.010242872) (0.0100337395) (0.010131635) (0.010053824500000003) (0.010073657000000014) (0.009964109500000012) (0.010157698499999993) (0.010199160499999999) (0.010221587000000004) (0.010081828999999987) (0.010198759000000016) (0.010265314500000011) (0.010292978000000008) (0.010245045499999994) (0.01018438699999999) (0.010172468000000004) (0.010275193499999988) (0.010202258500000005) (0.010393785000000016) (0.0105064525) (0.010192771000000003) (0.010229087499999998) (0.010484036000000016) (0.010280462000000018) (0.010283056499999985) (0.010333310499999998) (0.010426703500000009) (0.010355740000000002) (0.010351427499999982) (0.010340395500000002) (0.010300220999999998) (0.010503672000000006) (0.010623398000000006) (0.010218126999999994) (0.010399910499999998) (0.010657953499999998) (0.010547524500000002) (0.010295125500000002) (0.010509383999999983) (0.010673829999999995) (0.010526074999999996) (0.010258515999999995) (0.010151921500000008) (0.010436578500000002) (0.010408237499999987) (0.010853702000000007) (0.010573835500000003) (0.010652068) (0.010530002999999996) (0.010389651000000014) (0.010577239000000002) (0.010115054999999998) (0.00986635050000001) (0.009984873500000005) (0.010047318999999999) (0.010108248) (0.009950050500000002) (0.010213792499999999) (0.010018495999999988) (0.010406570000000004) (0.010111673499999987) (0.010309835500000003) (0.010165788500000023) (0.010115838000000002) (0.010092007) (0.010282796999999996) (0.010071427999999993) (0.009928443999999995) (0.010026742000000005) (0.00991993599999999) (0.009975213999999996) (0.009897176000000021) (0.009775504000000004) (0.010213189500000011) (0.009910691499999985) (0.010035946000000004) (0.010088846499999998) (0.010214392000000017) (0.01014230549999999) (0.010018919000000001) (0.010094447500000006) (0.010008401500000014) (0.010313732999999992) (0.010658314000000002) (0.0102644655) (0.010476660499999985) (0.010376489500000002) (0.010319092000000002) (0.010408069000000006) (0.010538616999999986) (0.010531445499999986) (0.010603710500000002) (0.010459209499999997) (0.010464485499999995) (0.010458205499999998) (0.010419520999999987) (0.010453847000000002) (0.010493234000000004) (0.010314932499999999) (0.010442457000000002) (0.010479298499999998) (0.010424141999999997) (0.010400166000000002) (0.01043181550000001) (0.010498922999999993) (0.01020781250000001) (0.010287906000000013) (0.010714358000000007) (0.01048653899999999) (0.010454327999999999) (0.010287518500000009) (0.010626995) (0.010561646999999993) (0.010726466500000004) (0.010413351500000001) (0.009992412000000006) (0.009877985000000006) (0.010067500499999993) (0.010087046499999988) (0.010023836999999994) (0.010086643500000006) (0.010022904999999999) (0.010015623500000001) (0.010326425999999986) (0.010264594999999987) (0.010110465999999999) (0.010061485500000009) (0.0102756715) (0.010164774000000001) (0.009952753999999994) (0.010064989499999996) (0.009950216999999997) (0.009919052000000012) (0.009954599500000008) (0.009969313000000007) (0.00998906649999999) (0.010285045499999992) (0.009964258500000003) (0.010032530499999998) (0.010330023499999993) (0.010029062500000019) (0.010164292499999991) (0.010106897000000004) (0.010129313000000001) (0.010191063) (0.010010468000000008) (0.010247183999999993) (0.010320627499999999) (0.010530781500000003) (0.010376311499999999) (0.010256682500000003) (0.010407891500000002) (0.0104163325) (0.010392635999999997) (0.010349385500000002) (0.010442719999999989) (0.010801726000000011) (0.010323013999999991) (0.01023461149999999) (0.010589587999999997) (0.010778523500000012) (0.010274365500000007) (0.010415595) (0.010406241499999996) (0.010411057000000001) (0.010330386999999996) (0.010493058500000013) (0.01055545899999999) (0.010209109499999994) (0.010334077999999997) (0.010409474000000016) (0.010553556999999991) (0.010457011000000016) (0.010458900000000021) (0.010381118999999994) (0.010227145499999993) (0.010429319499999992) (0.0102530235) (0.010459709499999997) (0.010162397500000003) (0.010013785500000011) (0.010016429500000007) (0.010008387500000007) (0.009931567999999988) (0.009998891999999995) (0.009858093999999998) (0.010026562000000017) (0.010123436999999999) (0.010137638000000004) (0.010130382500000007) (0.010076638499999999) (0.010390813499999998) (0.01039601100000001) (0.010158701000000006) (0.010109466999999997) (0.010235984999999989) (0.010170142500000007) (0.009905065000000005) (0.009841823999999999) (0.009927855) (0.009836309000000001) (0.009998555499999992) (0.009926914500000009) (0.0101172665) (0.010266630999999998) (0.01000106349999999) (0.00996425899999999) (0.010250649500000014) (0.010379891500000002) (0.010151709500000008) (0.010045277500000005) (0.010553485500000001) (0.010247099999999995) (0.01069867649999999) (0.010324492000000005) (0.010406882000000006) (0.01014835900000001) (0.010284066999999994) (0.01040771850000001) (0.010657107499999999) (0.0105606335) (0.010560024000000001) (0.010513950499999994) (0.01045533450000001) (0.010470672) (0.010435511500000008) (0.01061857849999999) (0.010367572999999991) (0.010589367000000002) (0.010340321) (0.010360247500000003) (0.010437065999999995) (0.010362658999999996) (0.010250890499999998) (0.010216602499999991) (0.010538244000000002) (0.010723217499999993) (0.010271630000000004) (0.010451675500000007) (0.010413347000000003) (0.010664691500000004) (0.010411890000000007) (0.010293525499999998) (0.010091850999999985) (0.010054282000000012) (0.009915520999999997) (0.010204123999999995) (0.009962460500000006) (0.009943697500000001) (0.010141986500000005) (0.010215349999999998) (0.010333909500000002) (0.01044688249999999) (0.010209080999999995) (0.01003369300000001) (0.010390973499999998) (0.010184675500000018) (0.010125187499999994) (0.010213711000000014) (0.010181990500000002) (0.010157663499999983) (0.010101288000000014) (0.010105724499999996) (0.010080764000000006) (0.010178095999999998) (0.010082822499999991) (0.010041535000000004) (0.0102561875) (0.01042403750000001) (0.010249929500000005) (0.0099883095) (0.010337940500000004) (0.010154545000000001) (0.0100793765) (0.010139109000000007) (0.010524980000000003) (0.010361317500000009) (0.010191306999999997) (0.010241354499999994) (0.010252781500000002) (0.010449088500000009) (0.01012789800000001) (0.010379200500000019) (0.010481036499999999) (0.010737025499999997) (0.010267341999999985) (0.010521228000000007) (0.010527149000000013) (0.010342782999999994) (0.010432312) (0.010685671500000007) (0.010744861000000008) (0.010461876000000009) (0.010526623999999998) (0.010562383499999994) (0.0104654265) (0.010559456999999994) (0.010511586500000003) (0.01028672700000001) (0.011126611499999994) (0.010562728500000007) (0.010739485999999993) (0.010509825000000014) (0.01050925200000001) (0.010659897500000015) (0.010554284999999997) (0.010459609000000009) (0.010015755000000015) (0.010037189999999988) (0.010129161499999997) (0.00993004900000001) (0.009935679499999989) (0.010068378000000017) (0.01023432149999999) (0.009943898500000006) (0.010211261) (0.010301725500000011) (0.010199747999999995) (0.010323222000000007) (0.010375716000000007) (0.010014875500000006) (0.01024923250000001) (0.010147318000000002) (0.010181204) (0.010061438500000006) (0.009989843499999998) (0.010021225999999994) (0.010323439000000004) (0.009907258500000002) (0.010053239999999991) (0.009992447000000002) (0.010204382999999997) (0.010266639499999994) (0.010126849999999993) (0.010102056499999998) (0.010240758000000016) (0.010195155499999997) (0.01005583900000001) (0.010014745500000005) (0.010520672999999994) (0.010620116999999998) (0.010241702999999991) (0.010285691000000013) (0.010308935499999991) (0.010315402000000015) (0.010276387500000012) (0.010754048500000002) (0.010367136499999999) (0.010463078499999987) (0.010367887000000006) (0.01056612300000001) (0.0106802285) (0.01066038050000001) (0.0103542675) (0.01042983900000001) (0.010343261499999992) (0.010346309999999997) (0.010552555499999991) (0.010362235999999997) (0.01032240550000002) (0.010419353500000006) (0.010515453999999994) (0.010233745500000002) (0.010435860499999991) (0.010489596000000004) (0.010573915000000003) (0.010561515499999993) (0.010975196999999992) (0.010745420500000005) (0.010385416999999994) (0.010510158000000006) (0.010026415999999996) (0.010045539500000006) (0.010213119999999992) (0.01017072899999999) (0.010053611000000004) (0.010294166500000007) (0.010128811999999987) (0.009980191) (0.010149580500000019) (0.01016777599999999) (0.010045328500000006) (0.010017572000000016) (0.01022358999999999) (0.01017482850000001) (0.010264579499999996) (0.010361214999999993) (0.009967988499999997) (0.010238761499999999) (0.009925369000000003) (0.010333182999999996) (0.01026514449999999) (0.010123651499999983) (0.010078728499999995) (0.009989570500000003) (0.0103420325) (0.010141937500000003) (0.010574963000000007) (0.01057345250000001) (0.010252765499999997) (0.010369112500000013) (0.010075937499999993) (0.010029641499999992) (0.01031711199999999) (0.010305653999999997) (0.010267870499999998) (0.010245481) (0.010347479000000007) (0.010323766499999984) (0.010297487999999994) (0.010428446999999993) (0.010465146999999994) (0.010571272000000007) (0.010703950500000003) (0.010371264000000005) (0.010447559499999995) (0.010714805500000008) (0.010264660999999994) (0.010557859499999989) (0.010476514000000006) (0.010465612499999999) (0.01030872699999999) (0.01065123350000001) (0.01048309700000001) (0.010654248500000005) (0.010599534999999993) (0.010320489500000002) (0.010501406999999977) (0.010669467500000002) (0.010409299499999997) (0.010409460499999995) (0.010739885000000018) (0.010494362000000007) (0.010411657000000005) (0.010246781499999996) (0.010205174500000011) (0.010026468999999982) (0.009972033500000005) (0.009982441000000009) (0.010094091) (0.010068807499999999) (0.010069872999999993) (0.010458068500000015) (0.010148660500000004) (0.010284066999999994) (0.010059075500000014) (0.010099113499999993) (0.010189853999999998) (0.010063779999999994) (0.01013565000000001) (0.010260495499999994) (0.009991766999999999) (0.009828998499999991) (0.010046590499999994) (0.010110049499999996) (0.010091220499999998) (0.010074325999999995) (0.009907376499999995) (0.010052078000000006) (0.010109556000000006) (0.010163792000000005) (0.010110642500000003) (0.010302163999999989) (0.010086317499999983) (0.010314841000000005) (0.010033464000000006) (0.010133569500000009) (0.010262456000000003) (0.010314678999999993) (0.010421464499999991) (0.010370074499999993) (0.01019709249999999) (0.010710463000000003) (0.010346870499999994) (0.010443111000000005) (0.01041289749999999) (0.01042886300000001) (0.010599076999999998) (0.010302427500000003) (0.010684701000000005) (0.01059461099999999) (0.010448263499999999) (0.010540181499999995) (0.0104592575) (0.010364016500000003) (0.010483799500000016) (0.010518474500000013) (0.010846492999999999) (0.010389062500000004) (0.010798212000000015) (0.010348542500000002) (0.010449559999999997) (0.010572360500000003) (0.01039726299999999) (0.010357338499999993) (0.010546965500000019) (0.010390201999999987) (0.010455219499999988) (0.010382431499999997) (0.010258173999999995) (0.010028546499999999) (0.010293914500000001) (0.010140993000000015) (0.010170888000000003) (0.009968056500000003) (0.009993470000000004) (0.010073655) (0.010333759499999998) (0.010085177500000014) (0.010215182500000003) (0.01026318250000001) (0.010356262500000005) (0.01023120000000001) (0.010102451499999998) (0.010335972499999999) (0.010000547500000012) (0.010450824999999997) (0.010205740000000005) (0.010137951000000006) (0.010201558999999999) (0.010252028999999996) (0.009929574499999996) (0.010024493999999995) (0.010262319500000006) (0.010307886500000002) (0.010083818500000008) (0.010100893) (0.010443483000000003) (0.010164446999999993) (0.010283808500000005) (0.010244940500000008) (0.010616905499999996) (0.010617418500000003) (0.010407116499999994) (0.010558590000000007) (0.010441519999999996) (0.010403997499999998) (0.010478998500000003) (0.010485316500000008) (0.010530762499999999) (0.010967699499999997) (0.010475235) (0.010806700000000016) (0.010693067999999986) (0.010422780000000006) (0.010568342499999994) (0.010505319000000013) (0.010366666499999996) (0.01067105900000001) (0.010308196499999991) (0.010503653500000001) (0.01040669900000002) (0.010642010000000007) (0.010351237500000013) (0.010361497499999997) (0.010543789499999998) (0.010515811500000014) (0.010450181999999988) (0.010622241500000004) (0.010667638500000007) (0.010663217000000016) (0.010562910999999994) (0.010269770499999997) (0.009986178999999998) (0.009855592499999996) (0.009922899499999985) (0.010111934499999989) (0.009942396999999992) (0.01005571750000002) (0.010084331499999988) (0.009849536500000006) (0.010127102999999998) (0.010259041999999996) (0.010199106999999999) (0.010013724000000002) (0.010146948999999988) (0.010324937999999992) (0.010183933499999992) (0.010084822500000007) (0.009914602999999994) (0.0101743195) (0.010103631999999987) (0.010144028999999999) (0.009982963999999997) (0.010228697999999994) (0.009926817000000004) (0.010109655000000009) (0.010223304000000003) (0.010045683) (0.0101585555) (0.010227907500000008) (0.010372183000000007) (0.010048136999999999) (0.010241736499999987) (0.010065366500000006) (0.010139305500000001) (0.010319586500000005) (0.01051594950000001) (0.010303262499999993) (0.010444717500000006) (0.010544300499999992) (0.010321645000000004) (0.010210241500000009) (0.010578705999999993) (0.010490278999999991) (0.010576021500000005) (0.010243658500000002) (0.010724486499999977) (0.010380829999999994) (0.010434626000000002) (0.010451118999999995) (0.0103482315) (0.010291572999999998) (0.010283622500000006) (0.010471532500000005) (0.010363410500000003) (0.010248008999999988) (0.010518331500000005) (0.010453945000000006) (0.010327435999999995) (0.010504684) (0.010476610500000011) (0.010475847499999996) (0.010500096) (0.010541171500000002) (0.010443865999999996) (0.010560882499999993) (0.01017145600000001) (0.010097245000000005) (0.010015301000000004) (0.010144104500000015) (0.010170779500000005) (0.009939479000000001) (0.010078152000000007) (0.010000115500000004) (0.009998365499999995) (0.010260059000000002) (0.010401887999999998) (0.010321017499999988) (0.010145444000000003) (0.010296517500000005) (0.010053095499999998) (0.010057079499999982) (0.010082743500000005) (0.010036442999999992) (0.009921326999999994) (0.009988504499999995) (0.010408125500000004) (0.010099428999999993) (0.010427371000000005) (0.01000008999999999) (0.010161584000000001) (0.010134366000000006) (0.010193550499999995) (0.010328289500000004) (0.010150541999999985) (0.010328538999999998) (0.010152803500000002) (0.010258534000000014) (0.010390964500000002) (0.010143599500000003) (0.010558144000000005) (0.010500993000000014) (0.010485218500000004) (0.010417354000000004) (0.010543024999999998) (0.010490719999999995) (0.010682774000000006) (0.010422943000000004) (0.010378534499999995) (0.010267583499999997) (0.010575176499999991) (0.010476834500000004) (0.010664616000000002) (0.010617609000000014) (0.010295879999999993) (0.010539542499999999) (0.0102552635) (0.010498038500000015) (0.010586983999999994) (0.010261016500000011) (0.010321642999999991) (0.010243542000000008) (0.010583143000000003) (0.01058471150000001) (0.010506625500000005) (0.010402204499999998) (0.010481877) (0.010480634000000003) (0.010472710499999996) (0.010452178500000006) (0.010189845000000003) (0.010032778500000006) (0.010074075000000002) (0.010259379499999999) (0.009985187999999992) (0.010276168500000002) (0.010084494) (0.009979023999999989) (0.010181945000000012) (0.010231046500000007) (0.009972361000000013) (0.010075024000000002) (0.009975669499999992) (0.009916796999999991) (0.010192761499999994) (0.01017464550000001) (0.010122523000000008) (0.009938723999999996) (0.009928977499999991) (0.010055096499999985) (0.010031932500000007) (0.010252945999999999) (0.00993173) (0.009938202999999993) (0.010326781999999993) (0.010209337999999998) (0.010104962499999995) (0.010030805500000017) (0.01027089049999999) (0.009985714500000006) (0.010322386000000017) (0.010112623500000015) (0.010255455499999996) (0.010218179000000008) (0.010372015000000012) (0.01019666100000001) (0.010336754000000004) (0.010430319000000007) (0.010460469) (0.010631885999999993) (0.010298647499999994) (0.0106784625) (0.010414189000000004) (0.010352738000000014) (0.010459342999999996) (0.010223104999999996) (0.010608794500000004) (0.0105998125) (0.010714580499999987) (0.010426568499999997) (0.010656782500000003) (0.010401707999999996) (0.01040824) (0.0102723755) (0.010379388000000003) (0.010350974000000013) (0.010659258000000005) (0.0105790635) (0.010319339999999996) (0.010216111) (0.010473978999999994) (0.010513240999999993) (0.010454198500000011) (0.010512418499999995) (0.010091220999999997) (0.010202470500000005) (0.009879255500000003) (0.010277636999999992) (0.010326635) (0.010257803500000023) (0.01040240299999999) (0.010140513500000004) (0.0102144775) (0.01011733649999999) (0.010318103999999995) (0.010412205999999993) (0.010117909000000008) (0.010006517499999992) (0.010318357) (0.010088711) (0.010325652000000005) (0.010042469999999998) (0.010023079500000004) (0.010209585999999993) (0.010083481000000005) (0.010172265000000014) (0.010065444499999993) (0.010182271500000006) (0.010233055000000019) (0.010174554500000002) (0.010333585500000006) (0.010211599999999987) (0.010135022999999979) (0.010575314500000002) (0.010216504999999987) (0.010450595000000007) (0.010297654000000003) (0.010518748000000008) (0.010273138000000001) (0.010300593499999997) (0.010436259000000003) (0.010299138499999999) (0.0105649025) (0.010465236000000003) (0.010249863499999998) (0.010414875500000018) (0.010516727999999989) (0.01046713199999999) (0.010459059999999992) (0.010698116999999993) (0.010752742000000023) (0.010468393999999992) (0.010320806000000002) (0.010204579500000005) (0.010485601999999983) (0.0103316465) (0.01058857399999999) (0.010207082500000006) (0.0105396445) (0.010330233499999994) (0.010844124999999996) (0.010491631000000001) (0.010366544000000005) (0.0104099255) (0.010397412999999994) (0.010646719999999998) (0.010390169000000005) (0.010589163999999984) (0.010053435500000013) (0.00998105399999999) (0.010218330500000011) (0.009885345000000018) (0.010174080500000002) (0.009960785999999985) (0.010157399499999997) (0.010062658500000002) (0.010105445000000005) (0.010161837000000007) (0.010142836500000002) (0.010472723000000003) (0.009960295500000008) (0.010202141000000012) (0.01014382400000001) (0.010274767500000018) (0.009883336500000006) (0.009978472999999988) (0.00989640650000001) (0.010115170000000007) (0.009834463999999987) (0.009988841499999998) (0.009947343499999997) (0.010059728000000004) (0.009904612500000007) (0.01011414799999999) (0.010143330999999992) (0.009959285999999998) (0.009994809500000007) (0.010095848500000004) (0.010026459500000015) (0.010265357500000002) (0.010192168499999987) (0.01029401549999999) (0.010355967999999993) (0.010580397000000005) (0.010148339000000006) (0.010201184000000002) (0.010383094999999995) (0.01025511350000001) (0.010430063000000003) (0.0106768525) (0.010588066000000007) (0.01075520449999999) (0.010314369000000004) (0.010360572499999998) (0.010394074499999989) (0.01031869199999999) (0.010247537000000015) (0.010356747) (0.010499422499999994) (0.010264424000000008) (0.010306714000000008) (0.010286530500000002) (0.010238116499999991) (0.010365285499999988) (0.01049998549999999) (0.010380306000000006) (0.010479886999999993) (0.010471122) (0.010540806) (0.010778833500000001) (0.012531362500000004) (0.010547387000000005) (0.01015531750000001) (0.009902755999999999) (0.009945224500000002) (0.010122708000000008) (0.010195166000000006) (0.009941213500000004) (0.009995952500000002) (0.009945713999999994) (0.010205317500000005) (0.010046360000000004) (0.0102061965) (0.010531596000000004) (0.010422084499999998) (0.00997140299999999) (0.010309530499999983) (0.010039381) (0.009992352999999995) (0.010230308999999993) (0.010061247000000023) (0.010312431499999997) (0.010335122500000002) (0.010261037) (0.015019929000000001) (0.010098703500000014) (0.0102950495) (0.009998338500000009) (0.010174782500000007) (0.010371506500000002) (0.010304823000000005) (0.010506192999999997) (0.010164618) (0.010193632499999994) (0.010292703) (0.010486726000000002) (0.010583085500000006) (0.010234591500000015) (0.01022171949999999) (0.010431225500000016) (0.010156016000000004) (0.010286371500000002) (0.010409418500000017) (0.0103719585) (0.010326773000000011) (0.010642783000000003) (0.010667204000000013) (0.010557991500000016) (0.010749304000000001) (0.0105583385) (0.010361017000000014) (0.01021359849999999) (0.010566086500000002) (0.010375187000000008) (0.01013297199999999) (0.010368619499999995) (0.01040071150000002) (0.010335238999999996) (0.010383445500000005) (0.010323865499999987) (0.010572675500000003) (0.010553388999999996) (0.010447563500000007) (0.010518496000000002) (0.010410755500000007) (0.010515603499999998) (0.010011730999999996) (0.010068946500000009) (0.010054825000000003) (0.010267001999999997) (0.010038566000000013) (0.010338341000000001) (0.00994817449999999) (0.009997680499999995) (0.010059072000000002) (0.010294375500000008) (0.010308451999999996) (0.010195555999999995) (0.009986540000000002) (0.010358862499999996) (0.010147678000000007) (0.010106716000000002) (0.009913988499999998) (0.010364298999999993) (0.009970615499999988) (0.010107586000000016) (0.010052052499999992) (0.010194207499999997) (0.010030412000000016) (0.010001743000000007) (0.010160684499999989) (0.010223118000000003) (0.010031789000000013) (0.010178279999999998) (0.010126420999999997) (0.01027082850000001) (0.01016510050000001) (0.010212312500000001) (0.010279831999999989) (0.01030900600000001) (0.010254433000000007) (0.010366223499999994) (0.010281647000000005) (0.010313033999999999) (0.010237270500000006) (0.010461156499999985) (0.010487414000000014) (0.010379918999999987) (0.010289971000000009) (0.010407806500000005) (0.010304050000000009) (0.010412869500000005) (0.010349680500000014) (0.010645438000000007) (0.010276280499999985) (0.010232330000000012) (0.0102106535) (0.010268928499999996) (0.010429199) (0.01025192350000001) (0.010381134) (0.010249326499999989) (0.010440627999999993) (0.0105675935) (0.010410986499999997) (0.010631545500000006) (0.010330373000000004) (0.01041671299999998) (0.010525188000000005) (0.010879196499999993) (0.010214142500000009) (0.010264086999999991) (0.0099789755) (0.010090791500000001) (0.009884193999999999) (0.010038525500000006) (0.009994225999999995) (0.010053235500000007) (0.010192256999999982) (0.010099120000000003) (0.010167762999999996) (0.010104491000000007) (0.010077776999999996) (0.010086141000000007) (0.010133344499999988) (0.010184208999999986) (0.009915757999999983) (0.009968709999999992) (0.010302675000000011) (0.010582470499999996) (0.010010877999999987) (0.010298806500000007) (0.010002615500000006) (0.010105225499999995) (0.010283199499999993) (0.010060624000000018) (0.01013785049999999) (0.010376031500000008) (0.010424846500000001) (0.010504315499999986) (0.010293403999999992) (0.010023668999999999) (0.01035112199999999) (0.01020326449999999) (0.010206850999999989) (0.010389130499999996) (0.010337872999999997) (0.010367846) (0.010404728000000002) (0.010510260500000007) (0.010485837999999997) (0.010463521000000017) (0.010562918000000004) (0.010728022000000004) (0.010439197999999997) (0.01040998) (0.010508240999999988) (0.010587495000000002) (0.010452379999999997) (0.01050748) (0.010170623000000004) (0.0103639695) (0.010354367000000003) (0.01017132350000001) (0.010407078) (0.01023064) (0.010454710999999992) (0.01052581100000001) (0.010327666499999999) (0.010505581) (0.010530632499999998) (0.01038699400000001) (0.010678460499999987) (0.010687218000000012) (0.010227388000000018) (0.009967430999999999) (0.009915113000000017) (0.010168603499999998) (0.009910825999999998) (0.009943985999999988) (0.010002966000000002) (0.009949141000000009) (0.010157919500000001) (0.009998955500000004) (0.00995631050000001) (0.010255864500000003) (0.010008783500000007) (0.010084551999999997) (0.0101241215) (0.010148423000000004) (0.009867358500000006) (0.009921704000000003) (0.009955000500000005) (0.010174428999999999) (0.009967783000000008) (0.0102545775) (0.009967873500000002) (0.010054915499999997) (0.010171892500000002) (0.010204492499999995) (0.010435336000000003) (0.010075447500000001) (0.010036714999999988) (0.010084583499999994) (0.010250242499999992) (0.009996397500000004) (0.010447751499999991) (0.010399696000000014) (0.0102395515) (0.010218164999999987) (0.010459839500000012) (0.010381999500000003) (0.0102631195) (0.01040753350000001) (0.01058228500000001) (0.010502822499999995) (0.010402511499999989) (0.010383140999999985) (0.010463859000000006) (0.010496619000000013) (0.010363358000000003) (0.010394668999999995) (0.010225337000000001) (0.01047569999999999) (0.010328259000000006) (0.010285419000000018) (0.010492753500000007) (0.010317069999999998) (0.010469962) (0.010444045499999985) (0.010495271) (0.01060857400000001) (0.010613563500000006) (0.010440284000000008) (0.010388230499999998) (0.010247682499999994) (0.01041619249999999) (0.010382048500000005) (0.010034370999999986) (0.009956053999999992) (0.010274644999999999) (0.010146375499999999) (0.009877808000000002) (0.010068949999999993) (0.010107752499999997) (0.0102330655) (0.0100878145) (0.01006873450000001) (0.0101826265) (0.010083170000000016) (0.010131608499999986) (0.01028277150000001) (0.010107231999999994) (0.010229758000000005) (0.010186044000000005) (0.010025200000000012) (0.009994714499999988) (0.00997656000000001) (0.010059897499999998) (0.010225194499999993) (0.009866516500000005) (0.010253246499999993) (0.0098926815) (0.01032416600000001) (0.010464518500000006) (0.010109247000000002) (0.010209499499999997) (0.010274020500000008) (0.010304665000000005) (0.010067910999999999) (0.010217600500000007) (0.010458201) (0.010317095499999998) (0.010481197999999997) (0.010275844500000006) (0.010364196499999992) (0.010416506500000006) (0.010495401000000015) (0.010377407500000005) (0.01029371300000001) (0.010616807500000006) (0.0102371785) (0.0104784515) (0.0105518805) (0.010590816999999988) (0.010521573500000006) (0.010256876500000012) (0.010321233999999999) (0.010433551499999999) (0.01190376) (0.010498943499999996) (0.010251470999999984) (0.010334468999999999) (0.01027175050000001) (0.010406221999999993) (0.010507930499999998) (0.0103969025) (0.010388056000000007) (0.010375881000000003) (0.010698584499999997) (0.01040592700000001) (0.010477951500000013) (0.010373308000000012) (0.0098784975) (0.010088564000000008) (0.010306195500000004) (0.009996489499999997) (0.010320911500000002) (0.009934706000000001) (0.01008153149999999) (0.010071716499999994) (0.010316437500000011) (0.009971519499999998) (0.010243786000000005) (0.010242674000000007) (0.010241261500000001) (0.010209496999999984) (0.0101354595) (0.010139912000000001) (0.010318457500000003) (0.009983264500000005) (0.009961995500000015) (0.009896750999999995) (0.01006849500000001) (0.009828383999999996) (0.009859519499999997) (0.010436282500000005) (0.010004270999999995) (0.01031601750000001) (0.010077904500000012) (0.010025883500000013) (0.010234403500000003) (0.010146514999999995) (0.010083505999999992) (0.0104113505) (0.010185520000000017) (0.010340947500000003) (0.010633276499999997) (0.010441632999999992) (0.010486504500000007) (0.010218437499999997) (0.010808780000000018) (0.010544697999999991) (0.010601817000000013) (0.010363133999999996) (0.010361202999999986) (0.010381250499999994) (0.010611462499999988) (0.010330089) (0.010464193999999996) (0.010551496499999993) (0.010486948499999996) (0.010321258499999986) (0.010300020000000007) (0.010527415499999998) (0.010390979499999994) (0.010304203999999997) (0.010277873499999993) (0.010724234) (0.010573091000000007) (0.010331333500000012) (0.01031345950000001) (0.01052376449999999) (0.010312927999999985) (0.010451866000000004) (0.010542066000000003) (0.010130307499999991) (0.010423089999999996) (0.010075321499999998) (0.010090123999999992) (0.009943455000000004) (0.009949379000000008) (0.009973022499999998) (0.0099089505) (0.010344068999999997) (0.010072197000000005) (0.010164451000000005) (0.0101280745) (0.010350888999999988) (0.00999825800000001) (0.009988240999999995) (0.010037374500000015) (0.009920809000000003) (0.009938903999999998) (0.009970018499999983) (0.010377562500000007) (0.00991110299999999) (0.010189756999999994) (0.010121162499999989) (0.014786583999999992) (0.010162741500000003) (0.010514042499999987) (0.010243366500000003) (0.010278833000000015) (0.010106496500000006) (0.010101800500000008) (0.009969655000000008) (0.010609642999999988) (0.010487734999999998) (0.010309834500000004) (0.010451837499999991) (0.010150920000000008) (0.010348276000000003) (0.010447995499999987) (0.010490536500000008) (0.010732900500000003) (0.010350293999999996) (0.010433480999999994) (0.010398425000000017) (0.010387842999999994) (0.010450109999999999) (0.01056223349999999) (0.010534370500000015) (0.010685203500000004) (0.010246390999999994) (0.010186039499999994) (0.010523413500000009) (0.010299996000000006) (0.010721915499999998) (0.010213863500000003) (0.010589124500000005) (0.010352840999999988) (0.010551063500000013) (0.010649337000000009) (0.010409174500000007) (0.010553297500000003) (0.010333012000000003) (0.010434930999999995) (0.010283335500000004) (0.010486322000000006) (0.010078296500000014) (0.010382390500000005) (0.010046854500000008) (0.010070218500000006) (0.010232806999999997) (0.010004670499999993) (0.010129582499999998) (0.009839621999999992) (0.010005291000000013) (0.010241569000000006) (0.009957848000000005) (0.010178738499999992) (0.010200574000000004) (0.010036286000000005) (0.010244353000000012) (0.01018756500000001) (0.010319573499999998) (0.010047980500000012) (0.0100687535) (0.009947741499999996) (0.010040464499999999) (0.01028907350000001) (0.01028640850000001) (0.010136004500000004) (0.010172976) (0.009965895500000002) (0.010541542500000015) (0.010171556499999998) (0.010219700499999998) (0.010421459499999994) (0.010041016999999985) (0.010280887000000002) (0.010281664499999996) (0.010184803499999992) (0.010407385000000005) (0.010374429000000004) (0.010179793499999992) (0.010181246000000005) (0.010733800500000001) (0.010309593500000006) (0.010426558500000002) (0.010358289500000006) (0.010920864500000002) (0.010602001) (0.010257015500000008) (0.010368657000000003) (0.010695048500000012) (0.010644270499999997) (0.01035633250000001) (0.01028159300000002) (0.0103310935) (0.01019186800000002) (0.01063499100000001) (0.01032093549999999) (0.010425974500000018) (0.010561100500000004) (0.010447437000000004) (0.010590421000000003) (0.010500091000000003) (0.010417357500000002) (0.010476070000000004) (0.010546842999999986) (0.010371750499999999) (0.010553633499999993) (0.01045819349999999) (0.010193045999999997) (0.0099671655) (0.009969756999999996) (0.010141403500000007) (0.00990168100000001) (0.009900515499999998) (0.01027183949999999) (0.010203962999999996) (0.009978525999999988) (0.010008535999999998) (0.01012632899999999) (0.01010736999999999) (0.010168334500000015) (0.010178801000000001) (0.010040324000000003) (0.010212363000000002) (0.009986942499999998) (0.010070372500000008) (0.010016281500000002) (0.010281249500000006) (0.00986746799999999) (0.010302501500000005) (0.009998621999999999) (0.010086911000000004) (0.010030491999999988) (0.010205024500000007) (0.010366229000000005) (0.010404907500000005) (0.010300591000000012) (0.01035646350000001) (0.010116639999999996) (0.0103194915) (0.010265379500000005) (0.010346877000000004) (0.010489624000000003) (0.010319835000000013) (0.010505672500000007) (0.010879425499999998) (0.01027582099999999) (0.010317989) (0.010438860000000008) (0.010601199999999991) (0.010490391499999988) (0.010386509000000016) (0.01065541149999999) (0.01029447850000001) (0.010486256999999999) (0.010398671499999998) (0.010322131499999998) (0.010530560999999994) (0.010294818000000011) (0.010496855499999999) (0.010377934999999991) (0.010395984999999996) (0.010583965) (0.010418584500000008) (0.010541235499999996) (0.010499196500000002) (0.01052605849999999) (0.010464828500000009) (0.010521444000000005) (0.010421892500000002) (0.010402895500000009) (0.009946390999999999) (0.010283898) (0.010251550500000012) (0.00999137700000001) (0.010051046499999994) (0.010156567000000005) (0.010070638000000007) (0.009951364500000004) (0.01019046450000001) (0.010037539499999998) (0.01050959750000001) (0.010045212000000012) (0.010237828000000004) (0.010260353499999986) (0.010034277499999994) (0.010293394499999997) (0.010118016000000007) (0.009966744999999999) (0.010257332500000008) (0.009950310500000004) (0.010074547500000003) (0.00995795749999999) (0.0100188425) (0.010049774500000011) (0.010323332500000004) (0.010271626500000006) (0.010135246) (0.010381307999999992) (0.010057716500000008) (0.010377299999999992) (0.01037747) (0.010550165) (0.010376372999999994) (0.01031011300000001) (0.010218746) (0.010239813) (0.010482126500000008) (0.010342017999999994) (0.010453541499999996) (0.010248749000000001) (0.01064457249999999) (0.010572253000000018) (0.01045550449999999) (0.011004486999999993) (0.010514962500000002) (0.010484005000000005) (0.010929843500000008) (0.010491096499999991) (0.010182078499999997) (0.010551165000000001) (0.010394751999999993) (0.010415713500000007) (0.010458587000000005) (0.010662646000000012) (0.010295582499999997) (0.010447450000000011) (0.010555538499999989) (0.010807358500000003) (0.010576950500000001) (0.010483906000000001) (0.010572452499999996) (0.01086610049999999) (0.010448946000000015) (0.010609173000000013) (0.010014838999999998) (0.00990001750000001) (0.01015862449999999) (0.010255058000000011) (0.011014499499999997) (0.010121354499999999) (0.010058357000000004) (0.010190681500000007) (0.010087794499999997) (0.010162944000000007) (0.010242419499999988) (0.01039354599999999) (0.010346310500000011) (0.010174577000000018) (0.010239484499999993) (0.009988772999999992) (0.009940190000000002) (0.010346342500000008) (0.010104884500000008) (0.009971150500000012) (0.010015894500000011) (0.010264172500000002) (0.010035956999999998) (0.010007098000000006) (0.010164023499999994) (0.010120363500000007) (0.01020591600000001) (0.010250249500000017) (0.010318724000000001) (0.010287867499999992) (0.010350695000000007) (0.010266044500000002) (0.010631421999999988) (0.010450021000000004) (0.010323497000000001) (0.010249894999999995) (0.010307068999999988) (0.010616226500000006) (0.010350994000000002) (0.010571603499999999) (0.010398934499999998) (0.010535077500000004) (0.010363897999999996) (0.010471229499999998) (0.010647204499999993) (0.010618063499999997) (0.010678799499999989) (0.010444148) (0.010290725) (0.010209669500000004) (0.010396215499999986) (0.010493747000000012) (0.01056657150000001) (0.010198879499999994) (0.010488473000000012) (0.010389086499999992) (0.010265942000000014) (0.010606324) (0.010492532999999998) (0.011019707000000004) (0.010618055000000015) (0.010543641499999992) (0.010801795499999989) (0.01047009850000001) (0.009959821500000007) (0.010025080000000006) (0.010015912000000002) (0.01011442700000001) (0.009891738000000011) (0.010104164499999999) (0.009934995500000002) (0.009981126500000007) (0.009878625500000002) (0.010297003999999985) (0.01025092050000001) (0.009952618499999996) (0.010230902500000014) (0.010105603000000005) (0.010025295000000004) (0.010386838499999995) (0.010210879500000006) (0.010145918500000004) (0.010040855000000001) (0.010526696500000002) (0.010003012499999991) (0.01015028350000001) (0.00995419900000001) (0.010148625499999994) (0.010053367499999993) (0.01042030499999999) (0.010178364999999995) (0.010125078499999995) (0.010384425499999989) (0.01009549350000001) (0.010031953999999996) (0.010001531499999994) (0.010527705999999998) (0.011508775999999998) (0.010340441499999992) (0.010436412499999992) (0.010223107499999995) (0.010167805500000002) (0.010396458000000011) (0.010444112000000005) (0.01064151499999999) (0.01059374049999999) (0.010380702499999991) (0.010370233499999992) (0.010535568500000009) (0.010386830500000013) (0.010719016000000012) (0.01052677249999999) (0.01036628249999999) (0.010488938000000003) (0.010477952000000013) (0.010273065999999997) (0.010534190500000012) (0.010670597000000004) (0.010291292999999993) (0.010477111999999997) (0.010504927999999997) (0.010813713500000002) (0.010587211000000013) (0.010640238499999996) (0.010572874499999996) (0.010799083999999987) (0.010443836000000012) (0.010623160000000006) (0.010139918999999997) (0.009950296499999997) (0.010229451499999986) (0.01011965649999999) (0.009970237500000007) (0.010050564999999997) (0.009987060499999992) (0.010091262000000004) (0.010039270499999989) (0.010066963499999998) (0.010280659499999997) (0.01023860750000001) (0.010178307499999997) (0.009979230999999991) (0.010066086500000002) (0.0101343255) (0.010135662000000004) (0.010236480499999992) (0.010103409500000007) (0.009897112) (0.010009133500000003) (0.010048859999999993) (0.0099503425) (0.010127985499999992) (0.010045242999999995) (0.010168472999999997) (0.01000788000000001) (0.010361036000000004) (0.010114235499999985) (0.010080548999999994) (0.009987353500000004) (0.010063855499999996) (0.010341678999999993) (0.010408683499999988) (0.010358543499999998) (0.010404416000000014) (0.010543304500000003) (0.010496588500000015) (0.010352196499999994) (0.010440066000000012) (0.010686578000000002) (0.010511277) (0.010344115000000015) (0.010621046999999995) (0.010465518499999993) (0.010475631) (0.010341355499999996) (0.010333336500000012) (0.012380309000000006) (0.010396976999999988) (0.010316368500000006) (0.010450131499999987) (0.010401161000000006) (0.0102976875) (0.010487684499999997) (0.010379081499999998) (0.010266472999999998) (0.0108929475) (0.010707111000000005) (0.01048305649999999) (0.010360890500000011) (0.010376237499999982) (0.010529675500000002) (0.010293081499999995) (0.01001020250000001) (0.010034579500000002) (0.010287807999999996) (0.0101423665) (0.010209582499999995) (0.009995470999999992) (0.010016716999999994) (0.010139968500000013) (0.009982496999999993) (0.010063653999999991) (0.010213800499999995) (0.010170297499999995) (0.010291995999999998) (0.010199374499999997) (0.010261731499999996) (0.010232009) (0.010458733999999997) (0.010170776500000006) (0.010163486499999999) (0.009978872) (0.010109476500000006) (0.009936073000000004) (0.009948251500000019) (0.009977484999999994) (0.010588522500000003) (0.010637935500000015) (0.010415147499999985) (0.010097106500000008) (0.01017809900000001) (0.010456524499999995) (0.010227925499999999) (0.010075872000000013) (0.010357493999999981) (0.01032844799999999) (0.010473837) (0.010365781500000018) (0.010439793000000003) (0.010260794000000004) (0.01028912450000001) (0.0103396335) (0.010694094499999987) (0.010690768000000003) (0.010301518999999995) (0.011067232999999996) (0.010700927499999999) (0.010511653499999996) (0.010663165999999988) (0.010429304499999986) (0.010446552499999984) (0.010676617499999999) (0.010419519999999988) (0.0105096925) (0.010527645500000002) (0.010380264) (0.010506990500000007) (0.01019816300000001) (0.0107931275) (0.01079106199999999) (0.010807953500000009) (0.010617509999999983) (0.010375177) (0.010676446499999978) (0.010454710500000006) (0.010396165499999999) (0.009971818500000007) (0.010261793000000005) (0.00997771750000001) (0.010419113500000007) (0.010256907499999995) (0.010008006) (0.010148554000000004) (0.010044936500000004) (0.010153620000000002) (0.010096857000000015) (0.010028243499999992) (0.010177554500000019) (0.01013733750000001) (0.010322885500000004) (0.010192393999999994) (0.01004374949999999) (0.010000641000000005) (0.009905331000000003) (0.009982475500000004) (0.010389255) (0.009880855999999993) (0.010340881999999996) (0.010185095500000019) (0.010810522000000003) (0.010372744500000003) (0.010126150500000014) (0.010116285000000003) (0.010442297499999989) (0.010287595999999996) (0.010076652499999991) (0.010284235500000002) (0.010134899500000003) (0.010304059000000004) (0.01024032200000001) (0.010356872499999989) (0.010472474500000009) (0.010193676999999998) (0.0103479675) (0.010334056499999994) (0.010366230000000004) (0.010534174500000007) (0.010736592999999989) (0.010514570500000014) (0.010554527000000008) (0.01037945350000001) (0.010658391000000003) (0.01047703400000001) (0.010708565499999989) (0.010362444999999998) (0.010347785499999998) (0.010296166999999995) (0.010229516999999994) (0.010293262499999997) (0.01048682899999999) (0.010267160000000011) (0.010365600000000003) (0.0105897395) (0.010642662499999997) (0.010514633999999995) (0.010558918) (0.010495036500000013) (0.01059154000000001) (0.010588301999999994) (0.010645256500000005) (0.010274324000000001) (0.009961588999999993) (0.00990821950000001) (0.010019704000000004) (0.010455803999999999) (0.010171121500000005) (0.009945206000000012) (0.009997085000000003) (0.009938441999999992) (0.009885945999999993) (0.010080939999999997) (0.010104864500000005) (0.010229562000000011) (0.009949603000000001) (0.010303951000000006) (0.010070461000000003) (0.010140586499999993) (0.010228682000000003) (0.009925051000000004) (0.009992926000000013) (0.009955654499999994) (0.01007675899999999) (0.009986357000000001) (0.010167824000000006) (0.010244189000000015) (0.010185085999999996) (0.010200998500000003) (0.010003964500000004) (0.010541347499999992) (0.010281138500000009) (0.01021522300000001) (0.010081514) (0.01023004050000001) (0.010437132000000002) (0.010201843999999988) (0.010500130499999996) (0.0101860005) (0.010370318999999989) (0.010406028500000011) (0.010394195500000009) (0.010596048499999997) (0.010498694500000003) (0.010320358500000001) (0.0104728885) (0.010405767499999996) (0.010451512499999996) (0.01040886449999999) (0.010377098499999987) (0.010538552500000006) (0.010235708499999996) (0.010212518500000003) (0.010256104000000002) (0.010372415999999995) (0.010483217999999989) (0.010453317000000004) (0.010310187499999984) (0.010438020500000006) (0.010514846499999994) (0.010461566999999991) (0.01053677800000001) (0.010616918000000003) (0.010509804999999997) (0.01055988549999999) (0.010588399999999998) (0.010079702499999982) (0.010106920500000005) (0.010124983000000004) (0.010282413000000004) (0.009830191000000002) (0.010119901) (0.010117422000000001) (0.010013379500000003) (0.010025032500000003) (0.01006547549999999) (0.010088541500000006) (0.010418936500000003) (0.010058204500000001) (0.0099777105) (0.010224426000000009) (0.010002889000000001) (0.009856880000000012) (0.010238904999999993) (0.010265176) (0.010047629499999988) (0.010091644499999997) (0.010260623499999996) (0.009891545500000015) (0.010137016999999998) (0.010204223999999998) (0.010455803999999985) (0.010198651999999989) (0.010443775000000002) (0.010141350999999993) (0.010099278499999989) (0.010269821499999998) (0.010221790999999994) (0.010374861500000013) (0.010316373000000004) (0.01030229449999999) (0.010402685000000009) (0.010328296499999987) (0.010424850499999999) (0.010390846999999995) (0.010185788500000001) (0.010717778499999983) (0.010468981000000016) (0.010576570499999993) (0.010505741500000013) (0.010593670999999985) (0.010538764500000006) (0.010550910499999996) (0.010570804499999989) (0.010420774499999994) (0.010323613999999995) (0.010342029499999988) (0.010199148000000005) (0.010158729499999991) (0.010894092999999994) (0.010128387000000016) (0.01041321399999999) (0.010461184499999998) (0.010748148999999999) (0.010633027000000003) (0.010304966000000013) (0.010802126999999995) (0.010558775999999992) (0.010419969000000001) (0.010344053500000006) (0.009817238500000006) (0.010430977999999994) (0.009931446999999996) (0.010016297999999993) (0.01053490700000001) (0.010065472500000006) (0.010194383000000001) (0.010182272500000006) (0.010035473500000017) (0.010052679000000009) (0.010058246000000007) (0.01019550050000001) (0.010016581499999996) (0.010089702999999992) (0.009883947500000004) (0.009954581500000004) (0.0101448445) (0.010360993499999999) (0.00987363849999999) (0.010013710499999995) (0.010023991499999996) (0.010848943) (0.010187752000000008) (0.009924698999999995) (0.010352333000000005) (0.010356227499999995) (0.01008661050000001) (0.010346749500000016) (0.010377677500000002) (0.010246495999999994) (0.010258844500000003) (0.0102865865) (0.010450888999999991) (0.010284911499999994) (0.010260634500000004) (0.010489811499999988) (0.010332290499999994) (0.010372630499999994) (0.010370804500000011) (0.010338412500000005) (0.010303397999999991) (0.010243443000000005) (0.010450353499999995) (0.010512779999999985) (0.0103819795) (0.01037453250000002) (0.010393825499999995) (0.010590304500000008) (0.010448316499999999) (0.010482507499999988) (0.010155394499999998) (0.010611114500000005) (0.010659623000000007) (0.01049617650000001) (0.010199011500000008) (0.010304227499999999) (0.010484991000000013) (0.010603647499999994) (0.010649562499999987) (0.010731629499999992) (0.010427770999999988) (0.010644532499999998) (0.01067112349999999) (0.01049095550000001) (0.010254724999999992) (0.009934419) (0.01035874249999999) (0.010056914000000014) (0.010073453499999996) (0.01031331349999999) (0.0103232865) (0.009928329999999999) (0.010302535500000001) (0.010052232499999994) (0.01005065899999999) (0.010072930499999994) (0.010345621) (0.010152626999999997) (0.01019929650000001) (0.010456190500000004) (0.010092803999999997) (0.01018123600000001) (0.010095603499999994) (0.010016827999999992) (0.009980881999999996) (0.010002945) (0.010015593000000003) (0.010196281000000001) (0.010282629499999987) (0.010195138000000006) (0.010070224000000003) (0.010180776000000002) (0.010237136999999993) (0.010311682500000016) (0.010275409499999999) (0.010031253500000004) (0.010659141499999997) (0.01034868500000001) (0.01050302950000001) (0.010452991500000008) (0.010515901999999994) (0.010515412499999988) (0.010473943999999999) (0.010526096999999998) (0.010616436999999992) (0.010250442000000012) (0.010807997500000013) (0.010454995000000009) (0.010979446000000004) (0.010959672000000004) (0.010499929500000005) (0.010707474999999994) (0.010282560999999996) (0.010583755) (0.010394739) (0.010386074000000009) (0.010265636999999994) (0.010313248999999997) (0.010457938) (0.01023032950000001) (0.010632056999999986) (0.010502516000000003) (0.010380777500000007) (0.010345011499999987) (0.010575454499999998) (0.010517843499999985) (0.01052729450000002) (0.01041634100000001) (0.009888310500000011) (0.010015006500000007) (0.010337161499999997) (0.010109007500000003) (0.009903240999999993) (0.010116028499999999) (0.010310717999999996) (0.010045499) (0.010092689000000002) (0.010183394999999998) (0.010403597499999986) (0.010119595000000009) (0.0101155245) (0.010100880500000006) (0.010614201000000004) (0.010327584500000014) (0.010232480000000016) (0.010263870500000008) (0.010112259999999998) (0.010141982999999993) (0.009964225000000007) (0.009805785499999997) (0.010165132000000007) (0.014718336500000012) (0.010123737499999994) (0.009996052500000005) (0.01006878) (0.009952465000000008) (0.010203023000000006) (0.010153976000000009) (0.010068080000000007) (0.010085645500000018) (0.010336802499999992) (0.01055222850000001) (0.010477516000000006) (0.010484696000000002) (0.010201810500000005) (0.010357158500000005) (0.010225050000000013) (0.010351216499999996) (0.010413200999999997) (0.010851371499999998) (0.010250508000000005) (0.010526885) (0.010512740500000006) (0.010633908000000011) (0.010512509499999989) (0.010549951000000002) (0.0107529185) (0.010635088000000001) (0.010380975) (0.010544035500000007) (0.010484862999999997) (0.010599837000000015) (0.010416017500000013) (0.010353895000000002) (0.010637048999999996) (0.010476012499999993) (0.011183146500000005) (0.010329102999999992) (0.010531967500000003) (0.010351837499999988) (0.010443520999999997) (0.010433223500000005) (0.010071505499999994) (0.009870172499999996) (0.010189623500000008) (0.010001618000000004) (0.010110619000000001) (0.010136275999999986) (0.009910613500000012) (0.009974318499999996) (0.010169836999999987) (0.01036756500000001) (0.010089421999999987) (0.010326840500000004) (0.010025462999999984) (0.010157565999999993) (0.010055091499999988) (0.010314505000000002) (0.010211856500000005) (0.009935777500000006) (0.010115027499999998) (0.010083613000000005) (0.009999268999999991) (0.009866973000000001) (0.0099583315) (0.00989387600000001) (0.010130575500000016) (0.010327010000000011) (0.01021356050000001) (0.009950154500000002) (0.010074577500000001) (0.010150032500000003) (0.010010973499999992) (0.010079042999999996) (0.010370863500000008) (0.010592933000000013) (0.0103757035) (0.010476224999999992) (0.01015515900000001) (0.010423431999999996) (0.010412655999999992) (0.010400159500000006) (0.01067434099999999) (0.010444018499999999) (0.010515333500000015) (0.010503869499999999) (0.010480112500000013) (0.010696656000000013) (0.010585048) (0.01075859350000001) (0.010791120999999987) (0.010285008500000012) (0.010212464500000004) (0.010235193500000003) (0.010375938500000001) (0.010407462499999992) (0.010536545499999994) (0.010445807500000001) (0.010472135999999993) (0.010778559000000007) (0.010417142500000004) (0.010434801999999993) (0.010409476) (0.010494860499999994) (0.010288370500000005) (0.010342702500000009) (0.0100142555) (0.009942553000000007) (0.010096767999999992) (0.010109950499999992) (0.009972185000000008) (0.010007922500000016) (0.010081274500000001) (0.01002438550000001) (0.010266674000000003) (0.010243492499999993) (0.0100679085) (0.010130053) (0.010228904999999996) (0.01025930500000001) (0.010315760499999993) (0.010123041) (0.010170567500000005) (0.010133904499999999) (0.010039985499999987) (0.009964534999999997) (0.010011093999999998) (0.010109471000000009) (0.010112619500000003) (0.009948070500000003) (0.010121569999999996) (0.010062041000000008) (0.010190947499999992) (0.010019700999999992) (0.010138620499999987) (0.010505729500000005) (0.010289201999999997) (0.010315605500000005) (0.010181674000000016) (0.01028726200000002) (0.010569676) (0.0104776865) (0.010376560500000007) (0.010616675000000006) (0.010493458000000011) (0.010364808500000003) (0.010673132000000002) (0.01074187) (0.010296152500000003) (0.01044239349999998) (0.010438540499999996) (0.010523714500000003) (0.010630721999999981) (0.0102816045) (0.010825662) (0.010502540000000005) (0.010431654500000012) (0.01051639750000001) (0.010501131999999996) (0.010306118000000003) (0.01031017799999999) (0.0103548475) (0.010659053499999988) (0.010634083000000003) (0.010355346500000001) (0.010643230000000004) (0.010559549500000001) (0.010486081500000008) (0.010583890499999998) (0.010481740000000003) (0.010395302000000009) (0.01033957399999999) (0.009977602000000002) (0.010017108999999996) (0.010040559500000004) (0.009997512) (0.0099755765) (0.010389612500000006) (0.010430840499999997) (0.010314052500000004) (0.010335364500000013) (0.010228155999999988) (0.010108707000000008) (0.010294960499999992) (0.010325530000000013) (0.01019067450000001) (0.010128698499999991) (0.010143198500000006) (0.010206948999999993) (0.010479640500000012) (0.010304953000000006) (0.010173443500000004) (0.010353596999999992) (0.009950545500000005) (0.010366638999999997) (0.0105239835) (0.010241637499999998) (0.010057803500000004) (0.010728033499999998) (0.010251392499999998) (0.009954443000000007) (0.01026534200000001) (0.01032060600000001) (0.010231565500000012) (0.010289589000000002) (0.010905115999999992) (0.010352616499999995) (0.01042850250000002) (0.010478449) (0.010318258499999997) (0.010666233999999997) (0.010737383499999989) (0.010382921000000003) (0.0105055295) (0.010616487500000021) (0.010438254000000008) (0.010903257500000013) (0.010515702499999988) (0.010452776999999996) (0.01034001250000001) (0.010341414999999993) (0.010275734999999994) (0.01033282499999999) (0.010207571499999998) (0.010564776999999984) (0.010457248500000002) (0.010467235500000005) (0.0105949885) (0.0106178985) (0.010515309999999986) (0.010683498999999985) (0.0107059085) (0.01051071000000002) (0.010449433500000008) (0.009958412) (0.00985823449999998) (0.010364159999999997) (0.010003283499999988) (0.01006500149999999) (0.010103287000000002) (0.010106293000000002) (0.010209559500000007) (0.010163767000000004) (0.010016757500000001) (0.01005797750000001) (0.010185931500000009) (0.010257179499999991) (0.010087099500000002) (0.009973492499999986) (0.010253117499999992) (0.010147369000000003) (0.010102565999999993) (0.010598998999999998) (0.010059227000000004) (0.010330144000000013) (0.01032670799999999) (0.01009756249999999) (0.010010655999999993) (0.010427597999999996) (0.010220438499999998) (0.010143019000000003) (0.01020112899999999) (0.010227777500000007) (0.010556115000000005) (0.01033191650000001) (0.010311417500000003) (0.010333505000000007) (0.0103053605) (0.010203045999999993) (0.010263925000000007) (0.010388078500000009) (0.010297470499999989) (0.010371427500000016) (0.010284382000000009) (0.010703235999999991) (0.010473536499999991) (0.010992916500000005) (0.010595203999999983) (0.010245043499999995) (0.010429398500000006) (0.010516818999999997) (0.010370110999999987) (0.010318886499999999) (0.01057739249999999) (0.010321775500000005) (0.010274356500000012) (0.010256404999999996) (0.010563466000000007) (0.01040800800000001) (0.010747016999999998) (0.0105834905) (0.010539172999999999) (0.010900013) (0.010663877000000002) (0.010583239499999994) (0.010687558500000013) (0.010538808499999996) (0.010757458000000011) (0.009975676000000003) (0.009914637500000004) (0.010101805000000005) (0.010079572499999995) (0.009851418499999987) (0.010128166500000008) (0.010267354999999992) (0.01001638399999999) (0.010044652000000001) (0.010048379999999996) (0.010070883500000002) (0.010323587499999995) (0.010065175499999995) (0.010179668500000003) (0.010340311000000019) (0.010537530500000003) (0.010082068500000013) (0.009884443000000007) (0.010144099500000003) (0.010016556499999996) (0.009993330500000008) (0.009856842000000005) (0.010094297000000002) (0.009980169000000011) (0.010205772500000015) (0.010077815500000004) (0.010122402000000003) (0.010217801500000012) (0.01033608100000001) (0.0103900725) (0.010139674000000001) (0.010175485499999998) (0.010335869000000011) (0.010243929499999999) (0.010234600999999996) (0.010342852) (0.010299834500000007) (0.010372402000000003) (0.01042330050000001) (0.010314216000000015) (0.010680974999999995) (0.010558869499999998) (0.010453708000000006) (0.01038174850000001) (0.010581933000000016) (0.010580282499999996) (0.010323759000000002) (0.010342609000000003) (0.010337141999999994) (0.010358482000000002) (0.010986581500000009) (0.01031399849999999) (0.010329824000000001) (0.010559218999999995) (0.010340531999999986) (0.010412785000000008) (0.010795290500000013) (0.01074340850000001) (0.010520084999999998) (0.010599294500000009) (0.010596528000000008) (0.010527110000000006) (0.010511003000000005) (0.010740847499999998) (0.010335884999999989) (0.009962592499999992) (0.01011803) (0.009966098500000006) (0.010143679000000003) (0.010312683500000003) (0.010031799500000008) (0.010070700499999988) (0.010004823499999996) (0.010104651000000006) (0.01006682049999999) (0.010441559000000003) (0.010432038000000018) (0.010287776999999998) (0.01008215450000001) (0.010151377499999989) (0.010003032499999995) (0.010065646999999997) (0.009898918999999992) (0.009891051499999998) (0.010084502999999995) (0.010060546000000004) (0.010109562000000002) (0.010053291500000006) (0.010387455000000004) (0.010221185000000008) (0.010172449500000014) (0.010402379500000003) (0.010105278999999995) (0.010091734500000005) (0.010104760000000004) (0.01021180449999999) (0.010293903500000007) (0.010563938499999995) (0.010585807999999988) (0.010570507999999992) (0.010308271000000008) (0.010202991000000008) (0.010644585999999998) (0.010628866) (0.010727411500000006) (0.010642926999999996) (0.0105948545) (0.010871446999999992) (0.010613651000000016) (0.01090641349999999) (0.010611206500000012) (0.010284471999999989) (0.010518054499999999) (0.010524133500000005) (0.01029550700000001) (0.01027684949999999) (0.01027814249999999) (0.0102582175) (0.01037221000000002) (0.010507154000000005) (0.010468715000000003) (0.010631071500000006) (0.010637974000000008) (0.010865868) (0.010471785499999997) (0.010725676000000017) (0.010579079500000005) (0.010832410000000015) (0.010294414500000015) (0.009963091499999993) (0.010163105999999991) (0.010226549500000001) (0.010094577000000021) (0.009986849499999992) (0.010011766999999991) (0.010391906500000006) (0.010082659999999993) (0.01005102450000002) (0.010125391499999997) (0.010348011500000004) (0.010353619499999994) (0.0105663015) (0.01054292200000001) (0.010101344000000012) (0.010071609999999995) (0.00995460849999999) (0.010180255) (0.009921888500000003) (0.010363502499999996) (0.010156578999999999) (0.010324293000000012) (0.010059939500000004) (0.010396492999999993) (0.010199984999999995) (0.010402143000000003) (0.010267540000000006) (0.010186552000000001) (0.010176962500000011) (0.010199716499999997) (0.010020382500000008) (0.010422771999999997) (0.010392342499999999) (0.010415720999999989) (0.010521028499999988) (0.010517132499999998) (0.010355034499999999) (0.010622198499999985) (0.010394322999999997) (0.010442147499999985) (0.010510084499999989) (0.010383554000000003) (0.010443327499999988) (0.010815382000000012) (0.010477965999999991) (0.010336259) (0.010636697) (0.010479813000000004) (0.010347324500000005) (0.010545202000000004) (0.010267719000000008) (0.010436316000000001) (0.010552497000000022) (0.010420115000000008) (0.010788211000000006) (0.01064514350000001) (0.010553884999999999) (0.010521086500000013) (0.010435172500000006) (0.010597701000000015) (0.010608857) (0.010539659499999993) (0.010447647000000004) (0.010001548499999999) (0.009943090000000002) (0.010059237499999998) (0.0100679895) (0.01029165650000001) (0.009981174999999981) (0.00999021550000001) (0.010021686500000002) (0.010183682) (0.010109949499999993) (0.010311556999999999) (0.01015372149999999) (0.010158874999999998) (0.010081517499999998) (0.010205134000000005) (0.010082060000000004) (0.010113539000000005) (0.010083530999999993) (0.01003337800000001) (0.010020454000000012) (0.009833599999999998) (0.0102459585) (0.010236940000000014) (0.010075546500000004) (0.010024412999999996) (0.010103351999999996) (0.010250801000000004) (0.0100542505) (0.010243471500000004) (0.010485729999999999) (0.01022969800000001) (0.010038689999999989) (0.010370167000000013) (0.010229178499999977) (0.010552107000000019) (0.010503609999999997) (0.010640119000000003) (0.010381453500000012) (0.010387938499999999) (0.010359013) (0.010410693000000013) (0.010628683) (0.01047691349999999) (0.010499379500000003) (0.01023528750000001) (0.010399943000000023) (0.010305911000000001) (0.01047258849999999) (0.010199873999999998) (0.010309397999999997) (0.010395590499999996) (0.01043388649999999) (0.010260015999999997) (0.010581253499999999) (0.010254881000000007) (0.010373267500000005) (0.010474081499999996) (0.010564103500000005) (0.01044871750000001) (0.010382456999999998) (0.010568918999999996) (0.010475428499999995) (0.010730081999999988) (0.010486953999999993) (0.010086526999999998) (0.009984238000000006) (0.0099239765) (0.010028799500000005) (0.009896139500000012) (0.010021665999999999) (0.010135714500000004) (0.01026328700000001) (0.010290710499999994) (0.010113614000000007) (0.01007158950000002) (0.01016728) (0.009988517500000002) (0.010195922999999996) (0.010155427499999994) (0.010290786999999996) (0.010263169500000002) (0.010294480500000008) (0.010292430000000005) (0.00997932700000001) (0.010167222000000004) (0.010250918000000012) (0.010016900999999995) (0.010167109499999993) (0.010268383999999992) (0.010135976000000005) (0.010075549499999989) (0.010361252000000015) (0.010355351999999998) (0.010057181999999998) (0.01037149050000001) (0.010065982000000001) (0.010503190499999995) (0.010212713499999984) (0.010184477499999997) (0.010445448999999996) (0.010243816500000016) (0.010194585500000006) (0.010342987999999984) (0.010449074000000003) (0.010415660499999993) (0.010189781500000009) (0.010778487499999989) (0.010477647999999992) (0.0103076795) (0.010532522500000002) (0.010561399500000013) (0.010342128000000006) (0.010435922499999986) (0.0104922385) (0.010340488999999994) (0.010367447500000002) (0.01044363949999999) (0.010575700000000007) (0.010298665999999984) (0.010134013999999997) (0.010647883499999997) (0.010584725000000003) (0.010230120499999995) (0.01026886049999999) (0.010430626499999984) (0.010521907999999996) (0.01046693750000001) (0.010661144499999997) (0.010325255500000005) (0.010049635000000001) (0.009972010500000017) (0.0101532545) (0.01010064699999999) (0.01003859) (0.010029216000000007) (0.010036440499999993) (0.010482537500000014) (0.010216137) (0.01025306949999999) (0.010044015999999989) (0.010324278500000006) (0.01030284649999999) (0.010390181999999998) (0.010066595500000011) (0.010085102999999998) (0.010186166999999996) (0.010040995999999996) (0.010019820499999998) (0.009959816499999996) (0.00996955799999999) (0.010293377000000006) (0.010139805000000002) (0.010166729) (0.010407419500000015) (0.010116485999999994) (0.01010141249999999) (0.010620118000000012) (0.010024177499999995) (0.01020626999999999) (0.010329256999999994) (0.0105332635) (0.010548918500000004) (0.01043825150000001) (0.010375171000000002) (0.010349184500000011) (0.010386050499999994) (0.010978167499999997) (0.010426599000000009) (0.010375323500000005) (0.010379098500000003) (0.010549300999999997) (0.010348137499999993) (0.010539799500000002) (0.01054090050000002) (0.010561578000000002) (0.010341027500000002) (0.010166004500000006) (0.01029562299999999) (0.01024223349999999) (0.010459298499999992) (0.010275965499999998) (0.010126175499999987) (0.010224339499999999) (0.010317731499999983) (0.010462616500000008) (0.010452526000000004) (0.010351308000000004) (0.010563945000000005) (0.010597361999999999) (0.010508592999999997) (0.010483070999999983) (0.010512247999999988) (0.010079327499999999) (0.00989546799999999) (0.009875781) (0.01019582250000002) (0.010016270500000007) (0.0100427555) (0.010331445499999994) (0.009899335999999995) (0.010223846999999994) (0.010003367500000013) (0.010185321999999997) (0.010157761000000015) (0.010412434500000012) (0.009989600000000001) (0.010017560000000009) (0.010176967499999995) (0.010030897999999996) (0.010076568999999994) (0.010236994999999999) (0.009939332500000009) (0.010339915000000005) (0.010188064499999996) (0.010485152000000011) (0.010248976000000007) (0.010059783500000002) (0.010111246000000004) (0.010108365999999994) (0.010417417999999998) (0.010281654500000001) (0.010208087000000005) (0.010111746500000005) (0.010064420000000004) (0.010178092499999986) (0.010381334500000006) (0.010413679499999995) (0.010270200500000007) (0.010154867999999997) (0.010571651000000001) (0.010928842499999994) (0.010355201500000008) (0.010772998499999992) (0.01043596749999999) (0.0105089295) (0.010759679499999994) (0.010671106) (0.010623658000000008) (0.010350081999999997) (0.010630905499999996) (0.0105042105) (0.010490055999999998) (0.010277615000000004) (0.010459692000000007) (0.010255596000000006) (0.01043583449999999) (0.010488526999999997) (0.01032999150000001) (0.010479660000000002) (0.010344875500000003) (0.010507024000000004) (0.01053132150000001) (0.010419558499999995) (0.010333275999999988) (0.010319897500000008) (0.010488634499999996) (0.010102112499999996) (0.009959089000000004) (0.010114496000000014) (0.009972031500000006) (0.009929623999999998) (0.01023593149999999) (0.010020518499999992) (0.009964723999999994) (0.010103928499999998) (0.009912679500000007) (0.010269690999999997) (0.0100367195) (0.009948023) (0.010056208499999983) (0.010187238500000015) (0.010254343999999999) (0.009795470000000014) (0.010106819500000003) (0.009996047500000008) (0.010095333999999997) (0.009987781000000001) (0.010132017500000007) (0.009859737000000007) (0.010442445500000008) (0.010543350500000007) (0.010260126499999994) (0.010166926000000007) (0.010390022999999998) (0.01030705500000001) (0.010357488499999998) (0.010139958000000004) (0.010182226000000003) (0.010275351000000002) (0.010281270499999995) (0.010464176999999991) (0.010261504500000004) (0.010442242500000004) (0.0102778595) (0.010359138500000004) (0.010514804500000002) (0.010309170999999992) (0.010437402999999998) (0.010378968499999988) (0.010497251000000013) (0.010381038000000023) (0.0107027435) (0.010712835000000004) (0.010668874499999995) (0.010698284499999988) (0.010403908500000003) (0.010408767) (0.010329036999999985) (0.010745458999999985) (0.010420148500000004) (0.010515596999999988) (0.010723181499999998) (0.010238034999999993) (0.01082472999999999) (0.010586376499999994) (0.010615637499999983) (0.010606372500000003) (0.010463134499999999) (0.010458054000000008) (0.010987922499999983) (0.010163529000000004) (0.010051147499999982) (0.009967227500000009) (0.009958012500000002) (0.010024376500000001) (0.010270231000000005) (0.010242517500000006) (0.010108923000000006) (0.010157055000000012) (0.010055288999999995) (0.010166196999999988) (0.010300777499999997) (0.010099610499999995) (0.010062013999999994) (0.010158329499999993) (0.01065548899999999) (0.010236372999999993) (0.009951912000000007) (0.010341799499999998) (0.010293733499999999) (0.010155531999999995) (0.010379327000000008) (0.010230183500000004) (0.010174131499999989) (0.010223443499999998) (0.010293199499999989) (0.010229315999999988) (0.01007066849999999) (0.010132197499999995) (0.010182951499999995) (0.010302566000000013) (0.0102006855) (0.01034642849999999) (0.010378679000000002) (0.010515874999999994) (0.01050283299999999) (0.010320005499999993) (0.010606296500000001) (0.01053225449999999) (0.010507676000000007) (0.010496401499999988) (0.010281545000000003) (0.010417632499999996) (0.010893841000000015) (0.010246302999999998) (0.010590756499999993) (0.010550127500000006) (0.010702189499999987) (0.010332639000000005) (0.010335833500000002) (0.010460138499999994) (0.010439698499999997) (0.010671414500000004) (0.01063662550000001) (0.010525921500000007) (0.010331984000000002) (0.010464967000000006) (0.010221776500000015) (0.010528757500000013) (0.010708399499999993) (0.010676522500000007) (0.0104817195) (0.010386207999999994) (0.010571627) (0.010134907500000012) (0.009986522499999997) (0.010119586500000013) (0.010204839500000007) (0.009857087) (0.010166955000000005) (0.010078739000000003) (0.010213022500000002) (0.00992540800000001) (0.009984433500000015) (0.010279286499999998) (0.010183879500000007) (0.010124529500000007) (0.00997809149999998) (0.0103018525) (0.010147083500000001) (0.009871818500000004) (0.009965789999999988) (0.009978132500000014) (0.0101117025) (0.010193157000000008) (0.0101144455) (0.010148942499999994) (0.010165301500000015) (0.010067230999999996) (0.010045103500000013) (0.01059925249999999) (0.010198119000000005) (0.010599852000000007) (0.010258408499999996) (0.010324186999999999) (0.010389334) (0.010521114000000012) (0.010526779499999986) (0.010211042500000003) (0.010375239500000008) (0.010471546999999998) (0.01046022499999999) (0.010451389500000005) (0.010396949500000002) (0.010427779000000012) (0.010806540000000003) (0.010610050999999995) (0.010576871500000001) (0.0103456715) (0.010412675999999996) (0.010609664500000004) (0.010607714000000004) (0.010265277000000003) (0.010335221999999991) (0.010473247500000005) (0.010397530500000002) (0.010581572499999997) (0.010751789000000012) (0.010445953999999993) (0.010580487999999999) (0.010346818499999993) (0.010448985499999994) (0.01046698950000001) (0.010791541499999988) (0.010573510999999994) (0.010590166499999998) (0.010537064500000012) (0.010476265999999984) (0.010174169499999997) (0.010223014499999988) (0.009944695000000003) (0.010063536999999997) (0.010045265499999997) (0.010001518000000001) (0.010110357000000014) (0.010071114500000006) (0.010062064999999995) (0.010149169999999999) (0.010124146) (0.010307623999999987) (0.0101959675) (0.010136673999999998) (0.01017227200000001) (0.010362374500000007) (0.010101938000000005) (0.010213541999999992) (0.01010737199999999) (0.010187588999999997) (0.010039382499999985) (0.01035911299999999) (0.009984342499999993) (0.010765148000000002) (0.010223974499999997) (0.010325053000000015) (0.010201863500000005) (0.010365003999999997) (0.010446820999999995) (0.010216094500000009) (0.010406377500000008) (0.010262954000000005) (0.010392973000000014) (0.010344041499999984) (0.010270069999999992) (0.010219447999999992) (0.010256450500000014) (0.010166595) (0.010326178500000005) (0.010341404999999998) (0.010473449999999981) (0.010382264500000002) (0.010571541500000003) (0.010532906000000009) (0.010334969) (0.010353855499999995) (0.011132439499999994) (0.010562532000000013) (0.010263544) (0.010347846499999994) (0.01050925450000001) (0.010502637999999995) (0.010487944999999999) (0.010465510499999997) (0.010416608000000008) (0.011708341499999997) (0.010785177499999993) (0.01039822550000001) (0.01063298) (0.010410473500000003) (0.010598846999999995) (0.010566136500000003) (0.0108437765) (0.010524606999999991) (0.010503209) (0.010011415999999995) (0.010024004499999989) (0.009959759999999998) (0.009844450000000005) (0.010295334000000003) (0.009868608500000015) (0.009967402500000014) (0.010112655999999998) (0.010177299) (0.010273865999999993) (0.010477093499999993) (0.010180296499999991) (0.010445532000000007) (0.010173317000000001) (0.010122620999999998) (0.01028886050000001) (0.010086942000000002) (0.009966393000000004) (0.009949514000000007) (0.010053611500000004) (0.009904688000000009) (0.010133544000000008) (0.010085897999999996) (0.010296189499999997) (0.010302917499999995) (0.010378745999999994) (0.010335895499999997) (0.010004531999999997) (0.010234557000000005) (0.010298349500000012) (0.010312157000000002) (0.010625804999999988) (0.010106503000000003) (0.01022664999999999) (0.010289123999999997) (0.010483219999999988) (0.010674615499999998) (0.010354050500000003) (0.010514943500000012) (0.010699383500000006) (0.010735185499999994) (0.010693246500000003) (0.010430781) (0.010601215000000011) (0.010538378500000015) (0.010736377500000005) (0.010515961000000004) (0.010367129500000002) (0.010551408499999998) (0.010330228999999996) (0.010436927999999998) (0.010564227999999995) (0.010218507000000002) (0.010418097500000015) (0.010398338499999979) (0.01087951299999998) (0.010405253999999989) (0.01055029099999999) (0.010408076000000002) (0.010751879000000006) (0.010377316499999997) (0.010720360499999998) (0.010505284000000004) (0.009991691999999996) (0.010012195000000002) (0.010025438999999997) (0.010061445999999988) (0.010101462999999991) (0.010143428999999995) (0.010213694500000009) (0.010148653499999993) (0.010286755000000009) (0.010358705999999995) (0.010011136500000004) (0.010102209000000001) (0.010268081999999998) (0.010130274500000008) (0.009973472999999997) (0.010296802500000007) (0.010193955000000005) (0.010134758500000007) (0.010041136500000006) (0.010016731000000001) (0.010026446000000008) (0.010065438499999996) (0.01008759799999999) (0.010240705500000002) (0.010364593499999991) (0.010090017999999992) (0.010307242000000008) (0.010086650500000002) (0.010134750499999998) (0.010440541999999997) (0.010145894000000003) (0.01014866099999999) (0.01036459699999999) (0.010551225999999997) (0.010333966500000014) (0.010752507499999994) (0.010458394999999995) (0.010707070499999999) (0.010217136000000002) (0.010401209499999994) (0.010508180499999992) (0.010626693499999992) (0.010390039000000004) (0.01045595449999999) (0.010603888000000006) (0.010311679000000018) (0.010451128000000004) (0.010523064000000013) (0.010391848500000009) (0.010320178) (0.010351583999999997) (0.010200612499999984) (0.010313785000000006) (0.010659752500000008) (0.0103647885) (0.010354375999999998) (0.010632624500000007) (0.010322096500000003) (0.010432645000000004) (0.010393665499999996) (0.010597713499999994) (0.010510022000000008) (0.0105517205) (0.010434096500000004) (0.010078136500000001) (0.0099512675) (0.010211827999999992) (0.010100017500000003) (0.010040221500000002) (0.009966265000000002) (0.010231722500000012) (0.009951095499999993) (0.010111711500000009) (0.010219577000000007) (0.010143294499999997) (0.010244047500000006) (0.0102918345) (0.01012851350000002) (0.010178369999999992) (0.010189618000000011) (0.010120537499999999) (0.010120089999999998) (0.010127972999999998) (0.00986550750000001) (0.010319400000000006) (0.010258181000000005) (0.010051608500000003) (0.009930674500000014) (0.010267635999999983) (0.010346345999999992) (0.01023282049999999) (0.010297681500000003) (0.010359756000000012) (0.010705138499999989) (0.010194250999999988) (0.0100573625) (0.0103718005) (0.010338742500000012) (0.010226465000000004) (0.010540937500000014) (0.010382866500000004) (0.010342686000000004) (0.010631429999999983) (0.010305274000000003) (0.010529993000000001) (0.010545056999999997) (0.011130702000000006) (0.0106611645) (0.010620256500000008) (0.010443477000000007) (0.010326850000000012) (0.010399215500000017) (0.01045270949999999) (0.010507206499999991) (0.010359484999999988) (0.010193846500000006) (0.0102624875) (0.010294539499999991) (0.010302611999999989) (0.01043601050000001) (0.010521296) (0.010608068499999998) (0.01041700550000002) (0.010622807499999998) (0.010611608999999994) (0.010614096500000017) (0.010737207999999998) (0.010547429000000011) (0.01008080900000001) (0.010023167999999985) (0.010471212999999993) (0.010289287499999994) (0.010313374500000014) (0.010093558500000002) (0.010019666499999996) (0.010040865999999996) (0.010305148) (0.01014246249999999) (0.010439563499999985) (0.010163395500000005) (0.010606866000000006) (0.0102058005) (0.010119964000000009) (0.010261563500000015) (0.010154281000000001) (0.010311090500000009) (0.010137339499999995) (0.01025524550000001) (0.010247072999999995) (0.010199833499999991) (0.010206007999999989) (0.010171860000000005) (0.01038286749999999) (0.010323649500000004) (0.010224248500000005) (0.010367961500000009) (0.010195577500000011) (0.010095025000000007) (0.010006491499999992) (0.010249498999999995) (0.010383173499999995) (0.010398893500000006) (0.010334719500000006) (0.01043845950000001) (0.01031979999999999) (0.010580077999999979) (0.010493345500000001) (0.010208626000000012) (0.010687621500000008) (0.01068664100000001) (0.010598026499999996) (0.010984097999999998) (0.010478482500000011) (0.010363761999999999) (0.010602397) (0.010443613500000004) (0.010397382999999996) (0.010475016500000003) (0.0103488355) (0.010509601499999993) (0.010521342500000003) (0.010373711500000007) (0.010318991) (0.010530155999999999) (0.010398040500000011) (0.01030018299999999) (0.010402437) (0.010673782500000006) (0.010671698999999993) (0.010646451500000015) (0.010712316999999999) (0.010595659000000007) (0.010288218000000016) (0.010131320499999999) (0.010140944499999999) (0.010141585499999994) (0.009921846999999998) (0.010112938000000002) (0.010055544999999999) (0.009909125000000005) (0.01043711) (0.010092028000000003) (0.010489428499999995) (0.01028576099999999) (0.0099920535) (0.0102742475) (0.010203943999999993) (0.010325939500000006) (0.010149936999999998) (0.010315809499999995) (0.010014982000000006) (0.0101142085) (0.010062988999999994) (0.010365445499999987) (0.00998955650000001) (0.010310537499999994) (0.0100578385) (0.010097374000000006) (0.010271721000000011) (0.010212679499999988) (0.010114553499999998) (0.010128822999999995) (0.010276444499999995) (0.010339688499999986) (0.010382793000000001) (0.010444669000000004) (0.010408881000000009) (0.010345816999999993) (0.010339237999999987) (0.010309205499999988) (0.010384363999999993) (0.010881946500000003) (0.010400272500000002) (0.01055555200000001) (0.010603831999999994) (0.010465225499999994) (0.010274102000000007) (0.010564950000000004) (0.010434881500000007) (0.010449541500000006) (0.010374584499999992) (0.010459492) (0.010308104499999984) (0.010548824499999998) (0.010612107999999995) (0.010752512499999992) (0.010764978000000008) (0.010422030999999998) (0.010768221500000008) (0.01056812750000001) (0.010637725) (0.010608183999999993) (0.010451441500000005) (0.010491752499999993) (0.010425432499999998) (0.010468820500000017) (0.009890021500000012) (0.009885485) (0.009861591000000003) (0.009989984000000007) (0.010289948500000007) (0.010098567500000002) (0.010019802499999994) (0.010324097000000004) (0.010442494499999996) (0.010240856999999992) (0.010271577500000004) (0.010626906499999991) (0.010538809499999982) (0.010921022999999988) (0.010122217500000003) (0.010220177999999996) (0.010052685500000005) (0.009964019500000004) (0.010203217) (0.010039159500000006) (0.010232428999999987) (0.010041819500000007) (0.010603875499999998) (0.010190716000000002) (0.010305731499999998) (0.01011345000000001) (0.010345380000000001) (0.010251496499999999) (0.010298762000000003) (0.010007084999999999) (0.010338080999999999) (0.010227954499999997) (0.010436314999999988) (0.010472431500000004) (0.010280356000000004) (0.010568154999999996) (0.010472479000000007) (0.010359398000000006) (0.010195298499999991) (0.010412598000000009) (0.010672531000000013) (0.010679762499999995) (0.0107528385) (0.010515598999999987) (0.010615253000000005) (0.010387994499999997) (0.010575755499999992) (0.010437269000000013) (0.010342419499999991) (0.010607624499999996) (0.010501138500000007) (0.010294861000000016) (0.01043965899999999) (0.010390539500000004) (0.0105282025) (0.010660095999999994) (0.0107902535) (0.010655464500000003) (0.010598132999999996) (0.010414727500000012) (0.010387864499999996) (0.010555975000000009) (0.010563918500000005) (0.010695469499999999) (0.009927218000000002) (0.009917832000000015) (0.0100210825) (0.010250840499999997) (0.010015087500000006) (0.010268686500000013) (0.010152515499999987) (0.009997907499999986) (0.010262864999999996) (0.010401476499999993) (0.010437806499999994) (0.010319900999999992) (0.010149338499999994) (0.010574279999999991) (0.01012790899999999) (0.010297035999999996) (0.010225265499999997) (0.010016690499999995) (0.010396031) (0.010434169999999993) (0.010193380000000016) (0.01023761699999999) (0.010061868999999987) (0.010303160500000005) (0.01050831499999999) (0.010315815999999992) (0.010257638) (0.010230592499999996) (0.01013869299999999) (0.010261248) (0.010378493500000002) (0.010233686999999991) (0.010465868499999989) (0.010377321499999995) (0.010330171499999999) (0.010275949499999992) (0.0104241115) (0.010301136500000002) (0.010414393500000008) (0.010374361999999998) (0.010538034500000001) (0.010407274500000022) (0.010652010500000017) (0.010718632999999991) (0.010420416500000002) (0.0106217765) (0.010542304500000002) (0.010374398999999992) (0.010454241500000017) (0.010398592999999998) (0.010683634499999997) (0.010466001999999988) (0.0103949765) (0.010496132499999991) (0.010428740500000006) (0.010745361000000009) (0.010528583499999994) (0.010458707499999997) (0.010888908499999989) (0.010556892499999998) (0.010471909000000001) (0.010472878000000019) (0.01044623750000001) (0.010454779499999997) (0.010138217000000005) (0.009920497) (0.010196775499999991) (0.010369435999999996) (0.010335561999999993) (0.009894829999999993) (0.010505340499999988) (0.010463727999999992) (0.010157415000000003) (0.010193033000000004) (0.01012287499999999) (0.010239465500000003) (0.010387845999999992) (0.010144885500000006) (0.010178303999999999) (0.010222456500000004) (0.010155057999999995) (0.010494970499999992) (0.010191086999999988) (0.0101575515) (0.010311367499999988) (0.010239645499999991) (0.010240453499999996) (0.010406222499999992) (0.01006963100000001) (0.010136702999999997) (0.01027538900000001) (0.010209958499999991) (0.010601813500000001) (0.01031394699999999) (0.010261151999999996) (0.010368665999999999) (0.0104318365) (0.010260497999999993) (0.010381331999999993) (0.010611328500000003) (0.010309158000000013) (0.010379332999999977) (0.01033452550000001) (0.010408436500000007) (0.010501452000000008) (0.010455250000000013) (0.010816177999999996) (0.010952971499999992) (0.010620048999999993) (0.010737985500000005) (0.010701158500000016) (0.010527330500000001) (0.010266848499999995) (0.010347309500000013) (0.010310196000000008) (0.010343499499999992) (0.010489523000000014) (0.010478691999999998) (0.010424459499999997) (0.010492423000000028) (0.010668067000000003) (0.010446627) (0.010498174999999998) (0.010571239499999982) (0.01059233150000001) (0.010570078999999996) (0.010437050000000003) (0.010674798) (0.010274677499999982) (0.010105091999999996) (0.009952043499999993) (0.00994969150000001) (0.009915193500000002) (0.00990682150000001) (0.01008042499999999) (0.009932629999999998) (0.010167033499999992) (0.01022842950000001) (0.010187785000000005) (0.010116760000000002) (0.0102416855) (0.010100713999999997) (0.010218111500000002) (0.010223460000000004) (0.0102213325) (0.009976345999999997) (0.010345999499999994) (0.010143324999999995) (0.009914648499999998) (0.010230547999999992) (0.010031944499999987) (0.010304275000000002) (0.010296730000000004) (0.01000620399999999) (0.010070552999999996) (0.010086129000000013) (0.010106823500000015) (0.010190197999999998) (0.010262479500000005) (0.01032841900000002) (0.010371363000000008) (0.010409214) (0.010333979999999993) (0.010167784999999999) (0.010309500499999985) (0.010382136499999986) (0.010348011000000004) (0.010492131000000002) (0.010382995500000006) (0.010434960999999993) (0.010478772500000011) (0.0104311225) (0.010438554500000002) (0.010367869000000002) (0.0105228765) (0.01058349900000001) (0.010378351499999994) (0.010458388000000013) (0.010262665500000004) (0.01041056500000001) (0.010340490000000008) (0.0103600955) (0.010278448499999995) (0.010370290000000004) (0.010575356000000008) (0.010749974500000009) (0.010404698000000004) (0.010355226499999995) (0.010484728000000013) (0.010411555000000003) (0.010416878500000004) (0.010660489999999995) (0.010111854999999989) (0.010437238000000001) (0.009953799000000013) (0.010117806999999993) (0.010012568999999999) (0.010000344500000008) (0.009870743000000015) (0.010111898499999994) (0.010512899500000006) (0.010124764500000008) (0.010093457500000014) (0.0102261315) (0.010451408999999995) (0.010129492500000004) (0.009934512500000006) (0.01003506300000001) (0.010030591500000005) (0.010162317500000004) (0.009984058500000004) (0.010040239000000006) (0.010206556500000005) (0.010409606500000002) (0.010205407) (0.010114802000000006) (0.010279172000000003) (0.010325709500000002) (0.01022722949999999) (0.010205731499999995) (0.010258681499999991) (0.01019924400000001) (0.010208925999999993) (0.010328721499999999) (0.010417179500000012) (0.010323249000000007) (0.01032060650000001) (0.010394987500000008) (0.010499327500000002) (0.011061005499999998) (0.010279830500000003) (0.010394980000000012) (0.010854850000000013) (0.010343724499999984) (0.01045625950000001) (0.010376860500000001) (0.010680269499999992) (0.010669809000000002) (0.010357144999999998) (0.010826120500000008) (0.0101579755) (0.010385821500000003) (0.010242925) (0.010324733499999988) (0.010454489499999997) (0.010366686999999986) (0.010486083500000007) (0.010395682999999989) (0.01052952800000001) (0.010633799000000013) (0.010448347999999996) (0.010374450999999993) (0.010463074000000003) (0.010401908500000001) (0.010263249000000002) (0.010612886500000002) (0.010046009000000009) (0.010035768) (0.010191302999999985) (0.010145566499999994) (0.009967026000000004) (0.010125457000000004) (0.010211505499999995) (0.010144095499999992) (0.010367012500000009) (0.010156401499999995) (0.01027597949999999) (0.01006041349999999) (0.010060918500000002) (0.010472004499999993) (0.010035842499999989) (0.010083738000000009) (0.01010911049999999) (0.010046591999999993) (0.010104790500000002) (0.010024297000000001) (0.01013626899999999) (0.010078141500000012) (0.01006991950000001) (0.009971670999999988) (0.010259582499999989) (0.010190789000000006) (0.010369930999999999) (0.010113800499999992) (0.010192092) (0.010095968499999997) (0.010109417999999995) (0.010210368999999997) (0.01044676700000001) (0.010552566999999999) (0.010499326000000003) (0.010618028000000002) (0.010480272500000012) (0.010360506500000005) (0.010503672999999991) (0.010447333499999989) (0.0103271385) (0.010431534999999992) (0.010714197000000009) (0.010398504500000016) (0.010463410000000006) (0.010346883000000001) (0.010528095000000001) (0.010628412000000018) (0.010474587000000007) (0.010350020500000001) (0.010496387999999982) (0.010455927500000003) (0.010347415000000013) (0.010466255999999993) (0.0101950985) (0.010343331999999997) (0.0104409045) (0.010540677999999998) (0.010595896500000007) (0.010278896499999995) (0.010440615499999986) (0.010258716000000001) (0.0107009) (0.010445882500000003) (0.009988957999999992) (0.010012194500000002) (0.009987482999999991) (0.010007794) (0.010044042000000003) (0.010191910500000012) (0.00996617100000001) (0.010032416499999988) (0.010065234499999992) (0.010210635499999995) (0.010265677) (0.010297458500000009) (0.0100911645) (0.010254192999999995) (0.010022013999999996) (0.010169867000000013) (0.009897072500000006) (0.010414314500000008) (0.0101775375) (0.009912626000000008) (0.01019697800000001) (0.0100012565) (0.010129845500000012) (0.010032769999999996) (0.010561824999999997) (0.01030064550000001) (0.010054942499999983) (0.010153565000000003) (0.010058240999999996) (0.010382641499999984) (0.010121140499999987) (0.010250180499999997) (0.010294754499999989) (0.010473077500000011) (0.010419948999999998) (0.010323898999999997) (0.010420683) (0.010550336999999993) (0.010455355500000013) (0.01055626450000001) (0.010535605500000003) (0.010442972500000008) (0.010492158499999987) (0.01041866150000001) (0.010717159500000004) (0.010381658500000002) (0.010637681499999982) (0.010447379000000007) (0.010500819499999994) (0.010629616499999994) (0.010315161500000003) (0.010321762999999998) (0.010319837499999998) (0.010370459999999998) (0.0103823745) (0.010696350000000007) (0.010573812500000002) (0.010536584500000015) (0.010874389500000012) (0.010408172499999993) (0.010498860499999998) (0.010649350000000002) (0.01059942550000001) (0.010642916500000002) (0.010059037999999992) (0.00990057350000001) (0.010061811000000018) (0.009884839500000006) (0.010103924500000014) (0.009927463999999997) (0.010103318) (0.010099566000000004) (0.010167471500000011) (0.010089932999999995) (0.009968814999999992) (0.010091343999999988) (0.010347190499999992) (0.010265673500000017) (0.010127264499999997) (0.00994212600000001) (0.010210814999999984) (0.010080882999999999) (0.009926338000000007) (0.009997432) (0.010181274000000004) (0.010097284499999998) (0.009843353499999999) (0.010057622500000002) (0.010167645499999989) (0.010067370000000006) (0.010154842500000011) (0.010232368500000005) (0.010392177000000002) (0.010358500500000006) (0.010228989999999993) (0.010552515500000012) (0.010437042999999993) (0.010190709500000006) (0.010199159999999999) (0.010421132999999999) (0.01081418499999999) (0.010160748999999997) (0.010581924000000006) (0.010380886000000006) (0.010586276499999991) (0.010450712000000001) (0.010468896499999991) (0.0102673125) (0.010300437999999995) (0.010455384999999998) (0.010336451999999996) (0.010448105999999999) (0.010388045999999998) (0.010331926000000005) (0.010196260499999998) (0.010423378499999997) (0.010510770500000002) (0.010586246500000007) (0.01021456150000001) (0.010430126500000012) (0.010548437500000007) (0.01054365950000001) (0.010829547500000009) (0.010587176500000003) (0.010853271499999997) (0.010332512500000002) (0.010459488499999989) (0.010480169999999997) (0.010117533999999984) (0.010351838500000002) (0.010545335500000003) (0.010101697000000007) (0.010040765500000007) (0.010149881) (0.009947882000000005) (0.010250872499999994) (0.010308903500000008) (0.010070544) (0.010071918499999985) (0.010301240000000017) (0.010265936500000003) (0.010193766499999993) (0.01007282050000001) (0.010085608999999995) (0.010107049000000007) (0.010065836000000009) (0.0100203185) (0.01005241450000001) (0.010251622000000002) (0.010241813999999988) (0.010074211500000013) (0.009962754500000004) (0.010510428999999988) (0.010232148499999996) (0.010467920500000005) (0.010221327000000002) (0.010178317000000006) (0.010229724499999995) (0.010468736500000006) (0.010387556000000006) (0.010256645500000008) (0.010445930999999992) (0.010442878000000003) (0.010376057000000008) (0.010299777499999996) (0.010645750499999995) (0.010524223) (0.010355127999999991) (0.010318254999999998) (0.010542899500000008) (0.010419298999999993) (0.010545467500000003) (0.010778379000000005) (0.010669131499999998) (0.010543554499999996) (0.010595517000000013) (0.010403900499999993) (0.010325474000000001) (0.010432401500000008) (0.01049342049999999) (0.010346323000000004) (0.010462617499999993) (0.010263194499999989) (0.010315606000000005) (0.010702097499999993) (0.010511576999999994) (0.010462357000000005) (0.010565685500000005) (0.010470899999999991) (0.010610120500000014) (0.0104680895) (0.010405387000000002) (0.009948209999999985) (0.009989011500000006) (0.010307249500000004) (0.010218905) (0.010050728000000009) (0.009967875000000001) (0.009986282000000013) (0.010411992500000009) (0.010056175999999986) (0.010269525500000015) (0.010389160999999994) (0.009972910000000001) (0.01027977699999999) (0.010623697500000001) (0.010169615500000007) (0.010006758500000004) (0.0102047205) (0.010016431000000006) (0.010231730499999994) (0.010154669000000005) (0.010304798500000004) (0.01018446299999999) (0.009839173999999992) (0.010229201000000007) (0.010381112999999997) (0.010365606) (0.010230102000000005) (0.010112396499999995) (0.010082360999999984) (0.01014045949999999) (0.010425710000000005) (0.010130927999999997) (0.010330910999999998) (0.010295754500000004) (0.010240236500000013) (0.010539675499999998) (0.010399791000000005) (0.010348852500000005) (0.010366660500000013) (0.010231566499999997) (0.010641965000000003) (0.010349578500000012) (0.010443317000000008) (0.010326278500000008) (0.01072469949999999) (0.010472013499999988) (0.010713064000000008) (0.010337954999999996) (0.010550584999999987) (0.010526504499999992) (0.010679913000000013) (0.010419201500000003) (0.010643751500000007) (0.010533185000000014) (0.010303227499999998) (0.01026397300000001) (0.01065808750000001) (0.010701691) (0.010646861499999993) (0.010701246999999997) (0.0106584245) (0.010712503499999998) (0.010439952000000016) (0.010727269000000011) (0.01015864050000001) (0.010056303000000003) (0.010060518500000004) (0.009993747999999997) (0.010030571500000002) (0.010282644999999993) (0.009974557000000009) (0.010060827499999994) (0.010074409999999992) (0.01016964549999999) (0.010185515000000006) (0.010413354) (0.010114356000000005) (0.010349654499999986) (0.010406904499999994) (0.010292561500000005) (0.010223743000000007) (0.010238559000000008) (0.009946533500000007) (0.01002093300000001) (0.010253651999999988) (0.010269909000000008) (0.010083884000000001) (0.010095265000000006) (0.010244907999999997) (0.010335683499999998) (0.010127521499999986) (0.010409885500000021) (0.010129633499999999) (0.010167644000000017) (0.010217888500000008) (0.010236920999999996) (0.010293084000000008) (0.015707525500000014) (0.010302130500000006) (0.010369403000000013) (0.010332497999999996) (0.010368729500000007) (0.010269099500000003) (0.010362974999999996) (0.010498048999999995) (0.010346869499999994) (0.010567454500000004) (0.010644169499999995) (0.010502032499999994) (0.010577675000000009) (0.010626594000000003) (0.01057172549999999) (0.010386310499999996) (0.010464932999999996) (0.010470258499999996) (0.010495471500000006) (0.010315666000000001) (0.010605764500000003) (0.010526933000000002) (0.010577618499999997) (0.010650306499999998) (0.010531372000000011) (0.01067270749999999) (0.010650791000000007) (0.0105409115) (0.01056583350000001) (0.0106589515) (0.010423605500000002) (0.0099549325) (0.009986553499999995) (0.010170548500000001) (0.009962203500000003) (0.01010580400000001) (0.009910261500000003) (0.010136627499999995) (0.009819257000000012) (0.010081694000000002) (0.010046258499999988) (0.010173375999999998) (0.010151637500000005) (0.010008984499999998) (0.009987925499999994) (0.010143228000000004) (0.010072273999999992) (0.009886635000000005) (0.009991476) (0.010216331499999981) (0.0100263315) (0.010191756999999996) (0.010083986500000003) (0.009986777000000002) (0.010020201000000006) (0.010152316500000008) (0.0100836745) (0.010036156500000018) (0.010306315999999996) (0.01021335100000001) (0.010125699000000002) (0.010067299500000002) (0.009890473499999997) (0.010307945499999999) (0.010502713499999997) (0.010235051999999994) (0.010199191500000024) (0.010491056999999998) (0.010231924999999989) (0.010153250500000002) (0.010300202000000008) (0.010527192000000005) (0.010652934000000003) (0.010734141500000016) (0.010360629999999996) (0.010611523999999997) (0.010315465999999995) (0.010461703500000002) (0.010486680999999998) (0.010274488999999984) (0.010317731499999996) (0.010471557499999992) (0.010165485000000002) (0.010256532499999998) (0.010408785000000018) (0.010172623000000006) (0.01007718099999999) (0.010634498500000006) (0.010573131) (0.010655206499999986) (0.01062421550000002) (0.010597480999999992) (0.010597992499999986) (0.01059523300000001) (0.010426038999999998) (0.009990740499999998) (0.009936213500000013) (0.010040749500000001) (0.010090145500000008) (0.009933079500000011) (0.009877509000000007) (0.010156319499999983) (0.009865833500000004) (0.010056183499999996) (0.010329671499999984) (0.010164233499999994) (0.009995792500000017) (0.00997202400000001) (0.010287167) (0.010147812500000006) (0.010005512000000008) (0.010154563999999991) (0.010032930499999995) (0.009992611499999998) (0.00999434249999999) (0.010223843999999996) (0.010155247000000006) (0.010047986499999995) (0.010216518500000007) (0.01018669550000001) (0.01037060699999999) (0.010160990000000009) (0.010457656499999995) (0.010182397499999996) (0.010277721500000003) (0.010114849000000009) (0.010070730499999986) (0.010556736999999997) (0.010530322499999994) (0.010254562499999995) (0.01049552799999999) (0.010462848499999997) (0.010471316499999994) (0.010864231500000002) (0.010377059999999994) (0.010370634500000003) (0.010586879999999993) (0.010571910500000004) (0.010365691999999996) (0.01048583900000001) (0.010500286999999997) (0.010588847000000012) (0.010301250999999997) (0.010368803499999996) (0.010289906000000001) (0.010505690999999984) (0.01036616899999998) (0.01046424) (0.010553134000000006) (0.010396023000000004) (0.010303061500000002) (0.010448345999999997) (0.010557212499999996) (0.01062516450000002) (0.01040294600000001) (0.010708470499999997) (0.010595513) (0.010609946499999995) (0.010385333999999996) (0.00995716349999999) (0.009869597500000007) (0.009930253) (0.010103134) (0.010109842499999994) (0.010106135000000016) (0.010143484499999994) (0.01002715600000001) (0.009989825000000008) (0.010059080999999997) (0.010000413) (0.010096835000000012) (0.010070567999999988) (0.0101068255) (0.01000070900000001) (0.01007524) (0.009999178499999997) (0.010036477500000002) (0.0102094405) (0.010012528500000006) (0.010067114500000002) (0.009921519500000003) (0.010468994499999995) (0.010124141500000003) (0.010073992500000004) (0.010357452500000003) (0.010243591499999996) (0.010513748000000003) (0.0100912155) (0.010172259500000003) (0.010397707000000006) (0.010179870499999993) (0.010320608499999995) (0.010352946500000001) (0.010660660000000002) (0.010502183999999998) (0.010385443999999994) (0.010326722999999996) (0.010369598500000007) (0.010574352499999995) (0.010334346499999994) (0.01024282550000001) (0.010492069499999992) (0.010751025499999997) (0.010831395999999993) (0.010537350000000001) (0.010581353999999987) (0.010501875500000007) (0.010460358500000003) (0.010395994000000006) (0.010260689500000017) (0.010366959500000009) (0.010453219500000013) (0.010323698999999992) (0.010394993500000005) (0.010375863499999999) (0.010496014499999998) (0.010404361499999987) (0.010416899999999993) (0.01073890000000001) (0.01029733649999999) (0.010336051499999999) (0.010438832999999995) (0.010545860500000004) (0.010223097) (0.0101310555) (0.010232165500000001) (0.010152939) (0.009935749499999993) (0.010110925500000006) (0.010054768500000005) (0.010063398500000015) (0.010282161499999998) (0.01029735000000001) (0.010001938500000002) (0.010309898499999998) (0.00996408850000001) (0.0103856435) (0.010032377999999995) (0.010122949000000006) (0.010083749500000003) (0.01023938349999999) (0.009988656499999998) (0.010092785000000007) (0.010237657999999997) (0.010091841500000018) (0.010166228000000013) (0.010137186500000006) (0.01072766) (0.010375884500000002) (0.010195357499999988) (0.010251267000000008) (0.010147135499999987) (0.010150946000000008) (0.010091311500000005) (0.009982833499999996) (0.01043231900000001) (0.010531858500000005) (0.01039172649999999) (0.010566488000000013) (0.010556280999999987) (0.01020115549999999) (0.010481575000000007) (0.010343279999999996) (0.010505633) (0.010448111499999982) (0.010330222) (0.010442806999999998) (0.010357675999999996) (0.0103473855) (0.010725165999999994) (0.010491044500000019) (0.010432722500000005) (0.010419812) (0.010281536500000008) (0.010421294499999983) (0.010303123499999983) (0.010351405000000008) (0.010557120500000017) (0.010345193500000002) (0.01068331950000001) (0.010637240999999992) (0.01065113600000002) (0.01044354850000001) (0.010422984999999982) (0.010425141500000026) (0.010452187500000015) (0.010379764499999986) (0.010041617000000003) (0.010008705000000007) (0.010031960499999992) (0.009951607499999987) (0.0099174905) (0.010058386499999988) (0.009986127499999997) (0.01014993950000001) (0.010202631000000018) (0.010507904999999998) (0.010312342499999988) (0.009945111500000006) (0.010087779000000005) (0.010258624000000008) (0.010391300999999992) (0.009980008500000012) (0.009926428000000001) (0.010462992500000004) (0.00996812150000001) (0.0102451675) (0.01019341750000001) (0.010318538000000002) (0.009800087999999998) (0.009982825499999987) (0.010071173000000003) (0.010411259500000006) (0.010035035500000011) (0.010157757000000003) (0.010206127500000009) (0.010151516499999999) (0.010440231499999994) (0.010213932999999994) (0.010580581000000006) (0.010477062499999995) (0.010690978500000003) (0.010254337000000002) (0.010272074999999992) (0.010222996999999998) (0.010235123999999998) (0.010237823000000007) (0.010441326000000015) (0.010719898500000005) (0.010522706500000006) (0.010424924500000002) (0.01062012050000001) (0.010691888499999996) (0.010527321499999992) (0.010391423999999996) (0.0105494525) (0.010165714999999992) (0.010553614000000003) (0.01042688) (0.010189379999999984) (0.010376603499999998) (0.010360719500000004) (0.010303371499999991) (0.010635190000000003) (0.010453407499999998) (0.010590245500000012) (0.01042365599999999) (0.010816716500000004) (0.010613887500000002) (0.010670025999999999) (0.010521949000000003) (0.010135499500000006) (0.010139384999999987) (0.01008632999999999) (0.010115206500000001) (0.010154988500000003) (0.01026577649999999) (0.010046246500000008) (0.009893645999999992) (0.010058027999999997) (0.010135562000000015) (0.010220213999999977) (0.010333145500000002) (0.010310324999999995) (0.010242080499999986) (0.010056739000000009) (0.010113309500000014) (0.010081734500000009) (0.010145661000000014) (0.010274181500000007) (0.009890939000000001) (0.01012089549999999) (0.010009007499999986) (0.010199259999999988) (0.010324866500000002) (0.010223207499999998) (0.010357930000000001) (0.010355314500000004) (0.010244531000000001) (0.010209292500000008) (0.010462203000000003) (0.010291272000000004) (0.010129358000000005) (0.010306856499999989) (0.01023249050000001) (0.010695182499999997) (0.010417754999999987) (0.0103039355) (0.010319576999999996) (0.010549449500000002) (0.010340022000000004) (0.010754818999999999) (0.010518307000000005) (0.01061929049999999) (0.01043652099999999) (0.010571506500000008) (0.010674623500000008) (0.010598913000000001) (0.010456128499999995) (0.01044925549999999) (0.010304651499999998) (0.01041129099999999) (0.010427404000000015) (0.010604915999999992) (0.01030703550000002) (0.010671778499999993) (0.010392498) (0.010529798000000007) (0.010535412499999994) (0.010482758000000009) (0.010707488499999987) (0.010445173000000002) (0.010476737000000014) (0.01041732849999999) (0.010597051999999996) (0.010200153500000003) (0.010225841999999999) (0.010088101500000002) (0.010072219000000007) (0.009973095000000001) (0.010035291000000016) (0.009925952500000002) (0.010099536000000006) (0.010428299500000002) (0.010426412999999995) (0.0102381255) (0.010185738) (0.010450113999999996) (0.0103062825) (0.01024775) (0.010117579999999987) (0.010127846999999995) (0.010430005999999992) (0.009995167999999999) (0.010220826999999988) (0.010181234500000011) (0.010412837999999994) (0.009903072500000012) (0.0099689835) (0.010323961500000006) (0.010210086499999993) (0.010100728500000003) (0.010060213499999998) (0.010165310999999982) (0.010173567500000008) (0.010057157999999997) (0.010065618999999998) (0.010451248999999996) (0.010445251499999988) (0.010425958000000013) (0.01061426) (0.010186661) (0.01028647399999999) (0.010539723499999987) (0.010474572499999987) (0.010609332500000013) (0.010973786999999999) (0.010564589999999999) (0.010580891000000009) (0.010450604000000002) (0.010582840499999996) (0.01047567349999999) (0.010716373000000001) (0.010405281499999988) (0.010573502499999984) (0.010449073000000003) (0.01032914850000001) (0.010679227) (0.0105001245) (0.01040247050000001) (0.010452281999999993) (0.010571969000000014) (0.010435678000000004) (0.010335674000000017) (0.010580152499999995) (0.010589703999999991) (0.010550163999999987) (0.010583043500000014) (0.010380388000000004) (0.010072588000000007) (0.010070109000000008) (0.01007807949999999) (0.010297033999999997) (0.010040693500000003) (0.010027563500000003) (0.010009718) (0.009871871000000004) (0.010447882500000005) (0.010586427999999995) (0.01022481900000001) (0.010323741999999997) (0.010248044999999997) (0.010285884999999995) (0.010381763500000002) (0.010392385000000004) (0.010200995000000004) (0.010290876500000004) (0.010065021500000007) (0.009977792999999985) (0.010371164500000002) (0.010529805000000003) (0.010038234499999993) (0.010113432500000005) (0.010161636500000015) (0.010422669999999995) (0.010239104000000013) (0.010260514500000012) (0.010295451999999997) (0.010170833500000004) (0.010113674500000003) (0.010069726999999987) (0.010318196499999988) (0.010408800999999995) (0.010418400999999994) (0.010675803499999983) (0.010434650500000003) (0.010312679500000005) (0.010575249500000009) (0.010484955500000004) (0.010636953000000005) (0.010671147000000006) (0.0108125035) (0.010417188500000008) (0.010597414999999999) (0.010767811999999988) (0.010563835499999993) (0.010340427499999999) (0.010594250000000013) (0.010510650999999996) (0.010613398999999982) (0.010395119000000008) (0.010495714000000003) (0.010547786500000017) (0.010383556000000002) (0.010384848499999988) (0.010594770500000003) (0.010516947499999998) (0.010702340500000018) (0.010623641500000003) (0.011075283000000005) (0.010587874499999997) (0.010557711999999997) (0.010696152500000014) (0.010026193000000003) (0.0100690945) (0.010196322500000007) (0.010278478500000007) (0.010054816500000008) (0.010180664499999992) (0.010128483500000007) (0.010008904999999998) (0.010190678000000009) (0.0102144235) (0.010131518000000006) (0.0100690145) (0.010012511500000001) (0.010125883999999988) (0.010091790500000003) (0.010285319499999987) (0.010176347999999988) (0.01012305849999999) (0.010053340500000008) (0.009907970500000016) (0.010073873999999997) (0.010075824000000011) (0.010200456499999996) (0.010113014500000003) (0.010295936500000005) (0.010158303499999993) (0.010310041499999992) (0.01007129100000001) (0.010257270999999998) (0.010671091500000007) (0.010345561500000017) (0.010389098499999999) (0.010306206000000012) (0.010199484000000009) (0.010368176000000007) (0.010300264000000003) (0.010344108500000004) (0.010653080999999995) (0.010493185000000002) (0.01034885599999999) (0.010235025500000008) (0.010252704000000001) (0.010425486499999997) (0.010513576499999996) (0.010406221500000007) (0.010480403999999985) (0.010253659000000012) (0.010232890499999994) (0.0103028275) (0.010476983500000009) (0.010474184999999997) (0.010159923499999987) (0.010362386500000001) (0.010356556000000003) (0.010245970000000007) (0.0102906195) (0.010556625) (0.010697749000000006) (0.010688914999999993) (0.01056731150000001) (0.010434206499999987) (0.010630060499999996) (0.010421653499999989) (0.010347535500000005) (0.010262194500000002) (0.009979909500000009) (0.01000931749999999) (0.010271194500000011) (0.010132147000000008) (0.0100142025) (0.010119192999999999) (0.010117367000000002) (0.010442801000000015) (0.010137308999999997) (0.010320489000000002) (0.009990733500000001) (0.010236634999999994) (0.010104119499999994) (0.010182750000000004) (0.010242638999999998) (0.01014915050000001) (0.010107719999999987) (0.010106311500000006) (0.010057658999999997) (0.010193230999999983) (0.010115450999999998) (0.010029219000000006) (0.010327127999999991) (0.010402239500000007) (0.01026635649999999) (0.0101491145) (0.010109518000000012) (0.010084526999999996) (0.010320875499999993) (0.010076215) (0.010355081999999988) (0.0102888015) (0.010278244499999992) (0.010307627500000013) (0.01048971500000001) (0.010200881500000009) (0.010488398999999995) (0.010242357999999993) (0.010398285000000007) (0.010246250499999998) (0.0103509975) (0.010685218999999996) (0.01033429999999999) (0.010545905999999994) (0.010381735499999989) (0.010169871000000011) (0.010560108499999998) (0.010279768499999994) (0.010445550000000012) (0.010429525500000009) (0.010406017500000003) (0.010321379000000006) (0.01040223450000001) (0.010336883500000005) (0.010263213999999993) (0.010535656500000004) (0.01048687500000002) (0.010700986499999995) (0.010294736499999999) (0.010701927500000014) (0.010381493499999991) (0.010505282000000005) (0.010789011000000015) (0.010033845499999985) (0.010058269999999994) (0.010038388499999995) (0.010045035999999993) (0.010160621499999994) (0.010066644) (0.010186843499999987) (0.010175629500000005) (0.010326273499999997) (0.010139483000000005) (0.010492847) (0.010087096000000004) (0.010328401000000001) (0.010030639500000008) (0.01022843250000001) (0.010052639999999988) (0.010217876500000014) (0.01037556299999999) (0.010282824499999996) (0.010129695000000008) (0.010354766500000015) (0.010097859) (0.010101929499999995) (0.010199711) (0.01044547450000001) (0.010220516499999999) (0.010062516500000007) (0.010224701000000003) (0.010384267500000002) (0.010280111500000008) (0.010172021500000003) (0.010169859500000003) (0.010526509999999989) (0.0103923145) (0.010553702000000012) (0.010300080000000003) (0.010509968999999994) (0.010334073) (0.010548312500000004) (0.010430306) (0.010569439999999986) (0.010313510500000012) (0.010375357500000001) (0.010521448999999988) (0.010623759499999996) (0.010428997500000009) (0.0104109805) (0.010494373500000001) (0.010488922999999997) (0.010335648499999989) (0.01035651550000001) (0.010246031499999989) (0.010400518999999997) (0.010348339999999998) (0.010280177500000001) (0.01041395249999999) (0.01041041799999999) (0.01058621450000001) (0.010482490999999997) (0.010472637999999992) (0.010475354500000006) (0.010589243499999998) (0.010334694000000005) (0.010567450500000006) (0.009922501500000014) (0.010182574500000013) (0.010001463500000002) (0.010041659000000008) (0.009972034000000005) (0.010045706500000001) (0.00999433999999999) (0.010194820999999993) (0.010272227499999995) (0.010035942000000006) (0.010031843999999998) (0.010250320499999993) (0.010372036999999987) (0.010032430999999994) (0.010145211500000001) (0.01012730349999999) (0.010069441499999998) (0.0099626815) (0.009930565499999988) (0.010046837000000003) (0.010144956499999996) (0.010197323000000008) (0.009918382000000003) (0.010326555000000001) (0.010200741999999999) (0.010533801999999995) (0.010307985000000006) (0.010242497000000003) (0.01015910049999999) (0.010283996500000003) (0.010139036500000004) (0.010399957000000001) (0.010472816499999996) (0.010496938499999997) (0.010355106500000003) (0.010370233000000006) (0.010533429999999996) (0.010370934000000012) (0.010513580999999994) (0.010196700000000003) (0.010422374499999998) (0.010893093500000006) (0.01045898599999999) (0.0106594525) (0.010335470999999999) (0.0104246105) (0.010355788500000004) (0.010401879000000003) (0.010394709999999988) (0.010365481499999996) (0.01043935800000001) (0.010391691000000008) (0.010502426499999995) (0.010419888000000002) (0.010572329999999977) (0.010424517499999994) (0.010626029999999995) (0.010448825500000009) (0.010587388499999989) (0.010746631499999978) (0.0104227135) (0.010656933499999993) (0.010562714999999986) (0.01032689199999999) (0.012080097499999984) (0.011872096999999998) (0.011921250500000008) (0.01181491450000001) (0.012231535500000001) (0.012205099999999997) (0.011898181000000008) (0.01196376149999999) (0.01227773800000001) (0.011867672999999995) (0.012454770000000004) (0.011939988500000012) (0.01222309299999999) (0.012146652499999994) (0.012530179000000002) (0.011829744000000003) (0.011885470499999995) (0.011929687499999994) (0.012117057) (0.012349431499999994) (0.012100321999999997) (0.012070990000000018) (0.011992773499999998) (0.012068261499999997) (0.01185812600000001) (0.012343043999999984) (0.012037515499999984) (0.012040114500000004) (0.012111774000000006) (0.012078646499999998) (0.012081451000000007) (0.012159411499999995) (0.012172137) (0.012541301000000005) (0.012367512000000011) (0.012248364500000011) (0.012363685) (0.012541130999999997) (0.012512484000000004) (0.012295114499999996) (0.012473084999999995) (0.012491418500000018) (0.012300400500000003) (0.012353160500000002) (0.012601370000000015) (0.01235939200000001) (0.012245866999999994) (0.012323406999999995) (0.0125008125) (0.012488055999999997) (0.012144120499999994) (0.012580174) (0.012213007000000012) (0.012602729500000007) (0.012243729499999995) (0.012630497000000004) (0.012545893499999988) (0.012640460500000006) (0.012467421999999992) (0.012386811999999997) (0.012360278000000002) (0.012252931000000009) (0.012432762) (0.012434898) (0.012347425500000009) (0.011862094500000017) (0.012004074999999989) (0.012127196000000007) (0.012148061000000002) (0.011881498000000004) (0.011868698999999983) (0.011940208000000008) (0.012347929999999993) (0.012152900999999994) (0.011858087000000017) (0.011920346500000012) (0.012041506000000007) (0.012267976499999986) (0.012206804500000001) (0.012378680000000003) (0.011847640000000006) (0.012388246999999991) (0.01221077100000001) (0.012002047500000002) (0.012206626500000012) (0.011831896999999994) (0.011940322000000003) (0.011855904) (0.012305728500000002) (0.012377950999999998) (0.012188152000000008) (0.01236912150000001) (0.01222281) (0.012175579000000006) (0.01214853249999999) (0.012055236499999997) (0.012238811000000002) (0.01238264950000001) (0.012258617499999985) (0.012530717999999996) (0.012251214499999996) (0.012578689000000004) (0.012221206999999998) (0.0125095115) (0.012300000499999991) (0.012704660499999992) (0.012533255000000007) (0.012808414000000004) (0.012415580999999995) (0.012432486999999992) (0.0124101675) (0.012452822500000002) (0.012345952500000007) (0.012345540000000002) (0.0125941735) (0.0122340705) (0.012413580999999993) (0.012126743999999995) (0.012650722000000017) (0.012620470500000008) (0.012428823500000005) (0.0126282915) (0.01256545349999999) (0.0125607955) (0.01230542250000001) (0.012431193500000007) (0.012555526499999983) (0.012537377000000002) (0.011942542) (0.01191822050000002) (0.012044585999999982) (0.012113068500000004) (0.011860109499999993) (0.012002150000000003) (0.0123091335) (0.012080048499999996) (0.011863005499999996) (0.01207399649999999) (0.012305338500000013) (0.012104906999999998) (0.012018190500000012) (0.011779507000000008) (0.012037566999999999) (0.012249667999999991) (0.011946191499999995) (0.012476194499999996) (0.011904241500000023) (0.012475858999999992) (0.012258927500000003) (0.011978417000000005) (0.01219618750000001) (0.012241133499999987) (0.012186141999999997) (0.012030466000000004) (0.011972761999999998) (0.012357396499999992) (0.01202887150000001) (0.012325353999999997) (0.012375248999999991) (0.012493221500000012) (0.012356915999999996) (0.012515846499999997) (0.012401472999999996) (0.01223576400000001) (0.012245153000000009) (0.012129181000000017) (0.012361744499999994) (0.012173959999999998) (0.012356656500000007) (0.012573480499999998) (0.012319068500000016) (0.0125217465) (0.012572444500000002) (0.01251032299999999) (0.01245816050000001) (0.012472421999999997) (0.0126303735) (0.012200666499999999) (0.012234644500000016) (0.012395687500000002) (0.012223798000000008) (0.012295451499999999) (0.012185017000000006) (0.012387831500000016) (0.012616394500000017) (0.012563196500000012) (0.012440924500000006) (0.012604423500000003) (0.012690630499999994) (0.012376318499999997) (0.012392540000000007) (0.012352587499999998) (0.012017016000000005) (0.012022195999999999) (0.012248495999999998) (0.012025785499999997) (0.012083134999999995) (0.01250656800000001) (0.0124907945) (0.012063419500000006) (0.012256857499999996) (0.012113403999999994) (0.012087209000000015) (0.012113052) (0.012338279999999993) (0.012259641500000015) (0.012789786500000011) (0.012201692999999986) (0.012260171500000014) (0.012026104499999996) (0.012398114500000015) (0.012015751000000005) (0.012027316499999996) (0.012054291500000008) (0.01207635750000001) (0.011962447000000015) (0.012089845500000015) (0.012050798500000001) (0.012515989000000005) (0.011943244499999991) (0.012019527500000016) (0.012378700999999992) (0.012131220999999998) (0.01214192950000001) (0.012443920000000011) (0.01271759950000001) (0.012369376000000015) (0.012213511499999996) (0.01246802100000001) (0.012271580500000004) (0.012556139999999993) (0.012373931000000005) (0.012919858500000006) (0.012477844500000002) (0.0127002445) (0.012308362000000003) (0.01239496900000002) (0.012682790999999985) (0.012503163499999997) (0.012265548499999987) (0.012310379499999996) (0.012406734500000002) (0.0121706075) (0.012496552500000008) (0.012657015000000008) (0.012710108499999997) (0.012431062499999992) (0.012501465500000003) (0.012297408499999996) (0.012593822000000005) (0.012716731999999994) (0.012403098000000001) (0.012616764000000003) (0.012413893999999995) (0.012664518999999999) (0.012238023000000015) (0.012136447999999994) (0.012891100999999988) (0.012676362999999996) (0.012529028999999997) (0.01237439500000001) (0.012396819000000003) (0.012601649500000006) (0.012420474) (0.012171309500000005) (0.012670595999999992) (0.012331239999999993) (0.012237892) (0.012441257499999997) (0.012179741999999993) (0.012216470000000007) (0.012594534500000004) (0.012704619) (0.012256959000000012) (0.01230505200000001) (0.012631234500000005) (0.012228378999999998) (0.012557106499999998) (0.01232970450000001) (0.012359496499999997) (0.012512977000000008) (0.012530434500000007) (0.012363891000000002) (0.012239682000000002) (0.01240327599999999) (0.012568997999999998) (0.012277639500000007) (0.012252179500000002) (0.012641923999999999) (0.012577551000000006) (0.012805398499999995) (0.01256797200000001) (0.012647710000000006) (0.012567886500000014) (0.012544883500000006) (0.012601119499999994) (0.012494768000000017) (0.012702056500000017) (0.012847755499999988) (0.012533560000000013) (0.012830649999999999) (0.012806303500000005) (0.01312091650000001) (0.012702048500000007) (0.01293110750000001) (0.012419905500000009) (0.012593006000000004) (0.012609472999999996) (0.012513254000000001) (0.012550172500000012) (0.012637360500000014) (0.012508638500000016) (0.012440947999999993) (0.012581031499999992) (0.012661151999999995) (0.012672976500000002) (0.012632442500000007) (0.012568711499999996) (0.012714847500000001) (0.012675648499999997) (0.012377518500000004) (0.012318483500000005) (0.012138636500000008) (0.012530171499999992) (0.012791597500000015) (0.013105034000000015) (0.012545647500000007) (0.012266903999999995) (0.012420296999999997) (0.012429139499999992) (0.012512615000000005) (0.01230925400000002) (0.012651866999999997) (0.012725014000000007) (0.012475352000000009) (0.012375336500000014) (0.012322262) (0.012319483500000006) (0.012534417999999992) (0.012275686000000008) (0.012602936499999995) (0.012423252499999995) (0.01219622749999999) (0.012718227499999998) (0.012803943499999998) (0.0125540445) (0.0124232445) (0.012494144000000013) (0.012372525499999995) (0.012408988499999996) (0.01248450050000001) (0.012543224500000005) (0.0124561735) (0.012595405500000004) (0.012593211500000007) (0.012925774000000001) (0.01253792799999999) (0.012625776000000005) (0.012487467000000002) (0.012616343500000002) (0.012744620499999998) (0.01259555100000001) (0.012845832000000001) (0.012550275999999999) (0.012536321000000017) (0.01271778300000001) (0.012777944500000013) (0.013040604999999983) (0.01258706150000001) (0.012667442000000001) (0.012550391499999994) (0.012568108499999994) (0.012481344500000005) (0.012911797500000002) (0.01275868699999999) (0.012680784) (0.012732528999999992) (0.012675547999999995) (0.012846488500000003) (0.012823966499999992) (0.012684035499999996) (0.012764544500000002) (0.012892938000000007) (0.013203284499999995) (0.012287617) (0.012469800000000003) (0.012343387000000011) (0.012486597500000002) (0.0125999485) (0.012204064) (0.01229623299999999) (0.012461129000000001) (0.012335508500000009) (0.012291646000000003) (0.012361964000000017) (0.012544010499999994) (0.012499553999999996) (0.012390283000000002) (0.012584863000000002) (0.012309455499999997) (0.012501911500000004) (0.012142254000000005) (0.01223155749999999) (0.012698380999999995) (0.013112986500000007) (0.012519793000000001) (0.012431761499999985) (0.012250932499999992) (0.012764292999999996) (0.012326485499999984) (0.012314576500000007) (0.012767455499999997) (0.012376667500000008) (0.012550532500000003) (0.01252091100000001) (0.012398614999999988) (0.012744206000000008) (0.013043696999999993) (0.012605328999999998) (0.013101603999999989) (0.012589583500000015) (0.012656579500000001) (0.012685261499999989) (0.012611401500000008) (0.012708139499999993) (0.012639945999999985) (0.012868655000000007) (0.012881432499999998) (0.012603600499999992) (0.012955167000000004) (0.01260269700000001) (0.01261465299999999) (0.012855875999999988) (0.012388096500000001) (0.012802884000000014) (0.012604161500000002) (0.012631986000000012) (0.012625980999999994) (0.013172188500000001) (0.012528757500000001) (0.012637638500000006) (0.012736542500000003) (0.013189963499999999) (0.012539807500000014) (0.012643663999999999) (0.012847639999999994) (0.01261495800000001) (0.01286118600000001) (0.012674988000000012) (0.012182145000000005) (0.012296962500000008) (0.012260429500000017) (0.012511942500000012) (0.012362349999999994) (0.012309237999999986) (0.012236562000000006) (0.012248915999999985) (0.012457688000000008) (0.012280225999999991) (0.012776667999999991) (0.012304601499999998) (0.012290396499999995) (0.012461032999999996) (0.012588421500000002) (0.012480854) (0.012444922999999997) (0.012216182000000006) (0.012547247999999997) (0.012423109000000002) (0.01234645849999999) (0.012373476999999994) (0.012379459999999995) (0.012579977000000006) (0.012677984000000003) (0.012357657999999994) (0.012343559000000004) (0.012479841500000005) (0.012575613000000013) (0.012401323500000005) (0.012616160000000001) (0.012608622) (0.01306697200000001) (0.012544207500000001) (0.012472382000000004) (0.012725830999999993) (0.012925180999999994) (0.0128514245) (0.012775269499999992) (0.012747784999999998) (0.012911867500000007) (0.012640605999999999) (0.0126230165) (0.012648442999999995) (0.012752478999999997) (0.013001589499999994) (0.012940294000000005) (0.012592475500000005) (0.0126156335) (0.012725385500000005) (0.012679833500000001) (0.012827165000000001) (0.012838861999999993) (0.012761806) (0.01262207650000001) (0.012440518000000012) (0.012873094500000001) (0.012739560000000011) (0.012819393499999998) (0.012871754) (0.012661923500000005) (0.012860868999999997) (0.013133877500000002) (0.012441993999999998) (0.012505085999999985) (0.012277039000000003) (0.012174680500000007) (0.0125432875) (0.012149022999999995) (0.012458656999999998) (0.012191863000000011) (0.012252803999999992) (0.01275014599999999) (0.012385099999999996) (0.012241283999999991) (0.0126466945) (0.012723502500000011) (0.012527585499999994) (0.012622292499999993) (0.012343547999999996) (0.0126047735) (0.012359641000000005) (0.012811614000000013) (0.012132637500000001) (0.012279104499999999) (0.01255580399999999) (0.012532633500000001) (0.012515456499999994) (0.012629027000000001) (0.012463807500000007) (0.012614800499999995) (0.01235631899999999) (0.012561516499999995) (0.01254759250000001) (0.012277744000000007) (0.012558321000000011) (0.012921065999999995) (0.012937152500000007) (0.012935602000000004) (0.012955057500000006) (0.012600529499999999) (0.012563622499999996) (0.012732310499999996) (0.012915120000000002) (0.012618485499999998) (0.012469174500000013) (0.012821895000000014) (0.012537000000000006) (0.013030186499999999) (0.01308043149999999) (0.012593746499999989) (0.012497544499999999) (0.012818532500000007) (0.012585461999999992) (0.013325055999999988) (0.012612702000000003) (0.012531548999999989) (0.012520284500000006) (0.012892173499999993) (0.012553171000000002) (0.012696428999999995) (0.01285986850000001) (0.012697637999999997) (0.0126223835) (0.012678847999999993) (0.012536227999999996) (0.013102645499999996) (0.0121551295) (0.012339749999999997) (0.012489745999999996) (0.012600919000000016) (0.012462093499999993) (0.012464983499999999) (0.012324141499999997) (0.012392270999999996) (0.012423569999999995) (0.01237170750000001) (0.012328703499999996) (0.012294099000000003) (0.01230336550000001) (0.01235180549999998) (0.012345302000000002) (0.012687650500000008) (0.012237532499999995) (0.012358142000000003) (0.012336423000000013) (0.01258191900000001) (0.012546566999999995) (0.012360597000000015) (0.0125544675) (0.012694278000000003) (0.012715534000000014) (0.012555572000000001) (0.012402813499999998) (0.012596323000000006) (0.012347654500000013) (0.01291510350000001) (0.012752212999999998) (0.012521713500000003) (0.012603167499999998) (0.01249290900000001) (0.012537330999999999) (0.012836262500000015) (0.012725568999999992) (0.01287144300000001) (0.012956452499999993) (0.012485962500000003) (0.012520559) (0.0125317405) (0.012636687999999993) (0.012879642499999996) (0.012742469000000006) (0.012629877999999997) (0.012729969499999993) (0.01260290900000001) (0.012510429999999989) (0.012797425000000001) (0.01273456399999999) (0.012514561499999993) (0.012676421999999993) (0.0126245455) (0.012724037499999993) (0.013290581999999995) (0.012697069499999991) (0.012833595000000003) (0.012537341499999993) (0.012722458499999992) (0.0127068095) (0.012831689999999993) (0.01265115) (0.012898172500000013) (0.012663999499999995) (0.01234887500000001) (0.0125306595) (0.012713301999999996) (0.012492222999999997) (0.012211988500000007) (0.012429898000000009) (0.012139408500000004) (0.012573105500000015) (0.012721260999999998) (0.012472629999999998) (0.012535150000000009) (0.012816855500000002) (0.012652575500000013) (0.012176476499999991) (0.012712006499999998) (0.012297129500000004) (0.012522833000000011) (0.01246907650000001) (0.012548985499999998) (0.012433282500000004) (0.012536144999999999) (0.012195315499999998) (0.012574474000000002) (0.012281849999999997) (0.012512388000000013) (0.012381660500000002) (0.012566931500000003) (0.012595968500000013) (0.012638650500000001) (0.012533440500000007) (0.0125402025) (0.0128898665) (0.012903971500000014) (0.01254297900000001) (0.012699237500000002) (0.012591737999999991) (0.0128352095) (0.012613592000000007) (0.01289883) (0.01279596949999999) (0.012767754000000006) (0.012569750500000018) (0.012897298500000001) (0.012838370500000001) (0.012854831999999997) (0.012794311500000002) (0.012763137499999994) (0.01244758750000001) (0.012937694) (0.012748698500000002) (0.0128124565) (0.012541038000000004) (0.012541984500000006) (0.012610937500000016) (0.012951406499999998) (0.012741341000000003) (0.012762942999999999) (0.012689390499999995) (0.012735412000000002) (0.012916570000000002) (0.012607076500000008) (0.012767997500000017) (0.012612314999999985) (0.01220287099999999) (0.012594862499999998) (0.012446219000000008) (0.012391991500000005) (0.012510035499999989) (0.012137872499999994) (0.012216590999999999) (0.012211885500000005) (0.01225346749999999) (0.01267795350000002) (0.012680072500000014) (0.0127172745) (0.012484862999999999) (0.012398423500000005) (0.012278531499999995) (0.012848917000000001) (0.01253613599999999) (0.012454141499999988) (0.012348803500000005) (0.012719623499999999) (0.012636034000000004) (0.012414947999999995) (0.012460221500000007) (0.012433120000000006) (0.012310609) (0.01248506299999999) (0.012380136) (0.012112256500000015) (0.012516844499999999) (0.012348120000000004) (0.012383199500000011) (0.012210396499999998) (0.012865381499999995) (0.013278395499999998) (0.012329159500000006) (0.012494848000000003) (0.012601484999999996) (0.012491158000000002) (0.013015979499999997) (0.012702427500000002) (0.0128860675) (0.013306911500000004) (0.01262969650000001) (0.01287635999999999) (0.012806383500000004) (0.012714739499999989) (0.012845432000000004) (0.01257849300000001) (0.012512296999999992) (0.012981321500000004) (0.012689316500000006) (0.012766945500000015) (0.012710323999999995) (0.012887233000000012) (0.012727215000000014) (0.012770755500000008) (0.012490545000000006) (0.012797121999999994) (0.012790825999999991) (0.012793057999999996) (0.012866856499999996) (0.012968453000000019) (0.012833809500000001) (0.012859747500000004) (0.012296285000000004) (0.012181546500000001) (0.013363782000000005) (0.012401113500000005) (0.012250610000000009) (0.0122559805) (0.01243532650000001) (0.012567585000000006) (0.012735240000000009) (0.012444998499999999) (0.012750929999999994) (0.012411837000000009) (0.012762927999999993) (0.012572407500000007) (0.012701504999999988) (0.012288136500000005) (0.0123674005) (0.012235667499999991) (0.012275679499999997) (0.012758034500000001) (0.012058690999999996) (0.012274069999999998) (0.012527138999999993) (0.012436201499999994) (0.012471734999999998) (0.012595404500000004) (0.012505094000000008) (0.0125236975) (0.012214562500000012) (0.012445143000000006) (0.012332542000000002) (0.012384617000000014) (0.012779270999999995) (0.012605985500000014) (0.012790349499999992) (0.012543018500000003) (0.012533740500000001) (0.01275517100000001) (0.012480895999999991) (0.012495694000000002) (0.012663537000000002) (0.012642318500000013) (0.012522520500000009) (0.012699293) (0.012896534000000015) (0.012875739999999997) (0.012606976500000006) (0.013017279999999992) (0.01249820850000001) (0.012823400499999998) (0.012675390999999994) (0.012446694500000008) (0.012602248499999996) (0.012665132999999995) (0.012647333999999996) (0.012747789500000009) (0.012703974000000007) (0.012846955500000007) (0.012608270500000004) (0.012598809499999988) (0.012745278999999998) (0.012817785999999998) (0.012783965000000008) (0.012776234499999997) (0.012509759999999995) (0.0123175685) (0.012384113000000002) (0.012368943999999993) (0.012496622999999998) (0.012439099500000009) (0.012197796499999997) (0.012711995000000004) (0.012268847000000013) (0.012503170500000008) (0.012317861) (0.012361021) (0.012464835000000007) (0.012649434500000015) (0.012459251500000018) (0.012604076500000005) (0.012633806499999997) (0.012460069500000004) (0.012234760500000011) (0.012239054500000013) (0.012518793) (0.0122747795) (0.012348605999999998) (0.012358630499999995) (0.012290152999999984) (0.012506063499999998) (0.012553078499999995) (0.012226259000000003) (0.012331820500000007) (0.012249831999999988) (0.01270481000000001) (0.012447987000000008) (0.012792643999999992) (0.012493425999999988) (0.012566725) (0.012608708999999996) (0.012966696500000013) (0.012558695500000008) (0.012713129000000004) (0.012888456999999992) (0.0131601675) (0.012795249500000008) (0.012713862000000006) (0.012889247999999992) (0.013101394500000016) (0.012652056000000009) (0.012562441499999993) (0.01306441300000001) (0.012935467500000006) (0.012712571999999978) (0.012878547000000018) (0.013094592000000002) (0.012572701500000005) (0.012799030000000003) (0.012685048000000004) (0.012895475000000003) (0.012819236500000011) (0.013092682000000008) (0.012742532500000014) (0.012722919) (0.012795418000000017) (0.013136324000000005) (0.012966049000000007) (0.012710224499999992) (0.012485649500000001) (0.012213519000000006) (0.012824645499999995) (0.012276929500000006) (0.012644428999999999) (0.012264944999999985) (0.012810357500000008) (0.012847084500000008) (0.012967166000000002) (0.012317932000000004) (0.012253926499999998) (0.012239135999999984) (0.012867238500000003) (0.012936620999999995) (0.012350996000000003) (0.012259411999999997) (0.012161997500000007) (0.012452755999999995) (0.012128779499999992) (0.012642497000000003) (0.0123161455) (0.012318201) (0.012121532000000004) (0.01222366250000001) (0.0127934455) (0.012443892499999998) (0.012268384500000007) (0.012398464499999998) (0.012511606499999994) (0.012647058000000003) (0.012583428499999993) (0.01243150949999998) (0.01274963400000001) (0.012953814500000008) (0.012553601999999997) (0.012755942000000006) (0.012848882999999992) (0.01303203650000001) (0.013000928999999994) (0.012783714500000001) (0.012620996499999995) (0.012980253000000011) (0.012634874000000004) (0.012799627999999993) (0.012894972000000005) (0.013037286000000009) (0.012784749499999998) (0.01281131349999999) (0.012379888000000006) (0.012896455000000001) (0.012943965500000001) (0.012760249000000001) (0.012580423000000007) (0.012604830499999997) (0.012552461499999987) (0.012642547500000004) (0.013142256500000005) (0.0129659565) (0.012658390499999991) (0.013069835500000002) (0.012634340499999994) (0.012839522499999992) (0.012772189000000003) (0.0130663575) (0.012235529000000009) (0.012270578000000004) (0.012504904000000011) (0.0124450205) (0.012417716999999995) (0.012413465999999998) (0.012356552999999992) (0.012399431000000016) (0.012320061000000007) (0.012284579000000004) (0.012541232) (0.012538503999999992) (0.012336238) (0.012400325500000003) (0.012404348999999981) (0.0125209825) (0.01225954700000001) (0.012188612500000015) (0.012565932500000002) (0.012414777500000015) (0.012614270999999996) (0.012716471999999993) (0.012504304499999994) (0.012568498999999997) (0.012365824999999983) (0.012559118000000008) (0.012532251499999994) (0.012279097999999988) (0.012604709499999991) (0.012400623999999999) (0.012488704999999989) (0.012466267999999989) (0.012685165500000012) (0.012644130500000003) (0.012694975499999983) (0.012575613) (0.01259772499999999) (0.012828840499999994) (0.012691134499999993) (0.012773827000000001) (0.012508778499999998) (0.012884755499999997) (0.012746561500000003) (0.012643175000000006) (0.013147377000000002) (0.013123716999999993) (0.01268746400000001) (0.012882551000000006) (0.012724843999999999) (0.012615745999999997) (0.012709065499999991) (0.012812999999999991) (0.013100791) (0.013251674500000005) (0.012581539499999989) (0.012773215000000004) (0.012889788999999999) (0.012702110499999988) (0.012629758000000005) (0.012747077999999995) (0.012956850500000006) (0.012871243500000004) (0.012951857999999997) (0.012594255499999985) (0.012577820000000003) (0.012122349000000004) (0.012183675000000019) (0.012174457) (0.012124673000000002) (0.012411417999999994) (0.012331968500000012) (0.012240029999999999) (0.012428466999999999) (0.012282566500000008) (0.012438308000000009) (0.012458430499999992) (0.012359994499999999) (0.012370519999999996) (0.01298322049999999) (0.012376791000000012) (0.012499330000000003) (0.012458623500000002) (0.012116178000000005) (0.012124001999999995) (0.012151338999999997) (0.012250563499999992) (0.012554060499999992) (0.012110429999999991) (0.012158968500000006) (0.012215265500000003) (0.012460728000000018) (0.012656388500000004) (0.012347992500000002) (0.012691972999999995) (0.012446644999999992) (0.012199886000000007) (0.012870873000000005) (0.01287717150000002) (0.012594201500000013) (0.012658926000000001) (0.012419704000000004) (0.01256839600000001) (0.012981858000000013) (0.013038242500000005) (0.012585239500000012) (0.012974227500000005) (0.012797843500000003) (0.012852449499999988) (0.012654108000000011) (0.012689692999999988) (0.012732515499999986) (0.012757212500000004) (0.01266237299999999) (0.012627637999999997) (0.012497585999999991) (0.012923066499999997) (0.012482259999999995) (0.01244780849999999) (0.012630956000000013) (0.012461759500000003) (0.012715124000000008) (0.012592986000000014) (0.012662107000000006) (0.012630403500000012) (0.012706514500000002) (0.01296377) (0.012734734999999997) (0.01337743750000002) (0.012242423000000002) (0.012255467999999992) (0.012312851) (0.012361281999999987) (0.012184393499999988) (0.012258057999999988) (0.012518158500000001) (0.012485048500000012) (0.012258496500000007) (0.012259579999999992) (0.012932836000000003) (0.012486690500000008) (0.0123426425) (0.012470633499999995) (0.012255351499999997) (0.012426815500000007) (0.012339929999999999) (0.012627937500000005) (0.012252945500000001) (0.012420182500000002) (0.012315031500000018) (0.0124046575) (0.012479514999999997) (0.012482967999999997) (0.01263773) (0.01269664899999999) (0.012325685000000003) (0.012342736500000007) (0.012780259500000002) (0.012756853499999998) (0.0124734175) (0.012470493499999985) (0.012757865999999993) (0.012397431) (0.012493078000000005) (0.012476386499999992) (0.012785251499999997) (0.012612080999999997) (0.012731192000000002) (0.012473675500000003) (0.012527048499999999) (0.012735932000000005) (0.012837635) (0.013349700000000006) (0.012826449000000004) (0.012797264999999988) (0.012822444000000002) (0.013119237500000006) (0.012457472499999997) (0.012652657499999997) (0.0125813325) (0.012688152500000008) (0.013140878000000009) (0.012542970999999986) (0.012952134000000004) (0.012590528000000017) (0.012796272499999997) (0.013011468500000012) (0.012599531999999997) (0.0127580645) (0.012727293) (0.012713452) (0.012818765499999996) (0.01262569999999999) (0.012235674000000002) (0.012353111) (0.012139358000000017) (0.01229018400000001) (0.012339288000000004) (0.012502763499999986) (0.012578111000000003) (0.012090661500000016) (0.012739173499999992) (0.012484524499999997) (0.012377208) (0.012577317000000018) (0.012429560999999992) (0.012415732999999998) (0.012436176499999993) (0.012603057) (0.012077491499999995) (0.01222602149999999) (0.012164441999999998) (0.012437236500000004) (0.012277777500000003) (0.012659703000000008) (0.012148314500000007) (0.012362598999999988) (0.012471803500000003) (0.012389274000000006) (0.012677188000000006) (0.012485005000000007) (0.012817418000000011) (0.012595980500000006) (0.012426998999999994) (0.012468643000000001) (0.012667126999999986) (0.012422635500000001) (0.012530709000000001) (0.012453106999999991) (0.012617877500000013) (0.012702320999999989) (0.012609240499999994) (0.012557926499999997) (0.01287998550000001) (0.012804343499999996) (0.012749643000000005) (0.01292380500000001) (0.012784059) (0.012611974000000012) (0.012686673499999995) (0.012946045499999989) (0.012937649500000009) (0.012657146499999994) (0.012648175000000011) (0.0128010135) (0.013064640500000002) (0.012538303) (0.012598140500000007) (0.012674696999999999) (0.01272470149999999) (0.012859340499999997) (0.012666205000000014) (0.012941895000000009) (0.012773739000000006) (0.012769759000000006) (0.012722584999999995) (0.0128169895) (0.012612591000000006) (0.012546755500000006) (0.012238632) (0.01234750250000001) (0.012584327500000006) (0.01229825100000001) (0.012408525000000004) (0.012545914499999991) (0.01229189700000001) (0.012576397500000003) (0.012334419499999999) (0.012350560499999996) (0.012550396000000005) (0.012431638499999995) (0.012278913000000002) (0.012680573) (0.012554367499999997) (0.012622188500000006) (0.01232546150000001) (0.01222620449999999) (0.013235643000000005) (0.012177221999999988) (0.012224098000000003) (0.012415500499999996) (0.012600797499999997) (0.012835041999999991) (0.012638736999999997) (0.012379759000000004) (0.01227265000000001) (0.012699578000000003) (0.012443592500000017) (0.012659643499999998) (0.012871250500000014) (0.01261144900000001) (0.01273666150000001) (0.012783037000000011) (0.013088085499999999) (0.012538343000000007) (0.012534603500000005) (0.01239883750000001) (0.012860600499999986) (0.012748431500000004) (0.012680667000000007) (0.012687466500000008) (0.012908956499999999) (0.012784320500000002) (0.0125291275) (0.012756071000000008) (0.012596509500000005) (0.012542846999999996) (0.012991288000000004) (0.012813327999999999) (0.012677945499999996) (0.012604809499999994) (0.012665959000000004) (0.012554841499999997) (0.012706024999999996) (0.012928762499999996) (0.012973688499999997) (0.012582711499999996) (0.012668092500000006) (0.012654488499999977) (0.012854673999999983) (0.012796180000000018) (0.012185779999999993) (0.012323392999999988) (0.014277651499999988) (0.012312210500000004) (0.012423046000000007) (0.01249337049999999) (0.012489346500000012) (0.012618340000000006) (0.012850870499999986) (0.012497287499999996) (0.012562521499999993) (0.012632355499999998) (0.012244331999999997) (0.012728995000000007) (0.012276649) (0.01264029350000001) (0.012268697000000009) (0.01220848749999999) (0.01230334600000002) (0.012741267500000014) (0.0124742075) (0.012177071500000011) (0.012245305499999984) (0.012399575999999995) (0.0124866795) (0.012382201999999995) (0.012443987000000004) (0.012500557999999995) (0.012140227500000003) (0.012510063000000002) (0.01231562700000001) (0.012346029499999994) (0.012541594499999989) (0.012707718000000007) (0.012796372999999986) (0.0125104635) (0.012728403499999985) (0.01274381049999998) (0.012615813500000003) (0.012525924999999993) (0.012480717500000002) (0.012807108999999997) (0.012832161500000008) (0.012637610500000007) (0.012483017499999999) (0.012800684000000007) (0.012671873) (0.012914361500000013) (0.012724491500000004) (0.012495351500000015) (0.012867151999999993) (0.012622466499999999) (0.012605451000000018) (0.012612503499999997) (0.012486142500000005) (0.01254815500000002) (0.012790694499999991) (0.012917716500000023) (0.012665251000000002) (0.012568954000000007) (0.012897133500000019) (0.012824052500000002) (0.012736935500000005) (0.012682945499999987) (0.012375148999999988) (0.012326354999999997) (0.012226415500000004) (0.012318871000000009) (0.012273557500000004) (0.01228552699999999) (0.012557162499999983) (0.012622149499999999) (0.012512966) (0.01236676099999999) (0.012555195500000005) (0.012538358000000013) (0.012643176000000006) (0.01286234) (0.012370654500000008) (0.012414969499999998) (0.012209899999999996) (0.012368962999999997) (0.012027629000000012) (0.012482422999999992) (0.01258641150000002) (0.012304728000000001) (0.012520738500000003) (0.012175673999999997) (0.0123627885) (0.012503278500000006) (0.012625060999999993) (0.01214635900000001) (0.012360879500000005) (0.012532490000000007) (0.012635017999999998) (0.012693992000000015) (0.012600334500000004) (0.013202296000000002) (0.01267599250000001) (0.012739814000000002) (0.012775301000000003) (0.012588399) (0.012593528000000007) (0.012922529000000002) (0.012941182999999995) (0.012667535000000008) (0.012819056500000009) (0.012934224999999994) (0.012692700500000001) (0.0126794405) (0.012721522499999999) (0.012599668000000008) (0.01272773449999999) (0.012672818500000002) (0.012411922000000006) (0.012641397499999998) (0.012969282499999998) (0.01258582300000001) (0.012802043499999999) (0.012609045000000013) (0.012829002000000006) (0.0127464895) (0.012665878500000019) (0.01283599199999999) (0.012827732999999994) (0.012820593000000005) (0.012704219000000003) (0.012707446499999997) (0.012202800999999985) (0.012331089500000003) (0.012335434500000006) (0.012560365000000004) (0.012216397500000004) (0.012437458999999998) (0.012553503499999993) (0.012656955499999997) (0.012494954000000003) (0.012327339500000006) (0.012529365500000014) (0.012258069499999982) (0.012258619500000012) (0.012234053500000008) (0.012476396000000015) (0.01240704899999999) (0.012262694500000004) (0.012359437000000001) (0.012504627000000004) (0.012331282499999999) (0.012239996000000003) (0.012240513499999994) (0.012547540999999995) (0.012605369500000005) (0.012317853000000004) (0.0124291225) (0.012267444500000002) (0.012432376999999994) (0.012261878000000004) (0.01244087050000002) (0.012214771) (0.012586691999999997) (0.013332072999999986) (0.012707430999999991) (0.012633049499999993) (0.012706916499999998) (0.012823281500000006) (0.012791821999999994) (0.012732107499999992) (0.0125525405) (0.012611423999999996) (0.012685565999999981) (0.012903738999999997) (0.012818603499999998) (0.0129367455) (0.01263362250000001) (0.012521287000000006) (0.012651743499999993) (0.012604058999999987) (0.012651332500000001) (0.012522712999999991) (0.012578514000000013) (0.012789475999999994) (0.012835126000000002) (0.012678632500000009) (0.012612158999999998) (0.012484574999999998) (0.01259282099999999) (0.012787113000000017) (0.012624500499999997) (0.012765541000000005) (0.01286546849999999) (0.012727709000000018) (0.012775515000000001) (0.012467192499999988) (0.012217999499999993) (0.012550050500000007) (0.012121025000000007) (0.012737728000000004) (0.012332725000000017) (0.012479318000000003) (0.012423464499999995) (0.012180536000000006) (0.012778387000000002) (0.012558274500000008) (0.012510954000000005) (0.01267384499999999) (0.012595645500000002) (0.012369459500000013) (0.012361704000000015) (0.012510943999999996) (0.0123134555) (0.012229641) (0.01294711250000001) (0.012446877499999995) (0.012272011499999985) (0.012162638000000003) (0.01243821149999999) (0.012488832000000005) (0.012434915500000004) (0.012691999499999995) (0.012742694999999998) (0.012535037000000013) (0.012596651000000014) (0.012507046499999994) (0.012817572000000013) (0.012831835) (0.012508069999999996) (0.01268346649999999) (0.013036535500000002) (0.013256157000000018) (0.012530768999999997) (0.012508048499999994) (0.012685837500000005) (0.012995985500000001) (0.013267796499999998) (0.01271622700000001) (0.012954782500000012) (0.012798049499999992) (0.013012845999999995) (0.012533495500000005) (0.012849226000000005) (0.01256000950000001) (0.012675621000000012) (0.012689351500000001) (0.012915453999999993) (0.0127086785) (0.012772552999999992) (0.012764737000000012) (0.012729593500000011) (0.01294447800000001) (0.012945171000000005) (0.012931541000000005) (0.012600380499999994) (0.012732356499999986) (0.012827716000000003) (0.013004907999999996) (0.012738829000000021) (0.01221730900000001) (0.012531116999999994) (0.012363455999999995) (0.012600953500000012) (0.012512636999999993) (0.01263305699999999) (0.012892513999999994) (0.012327476500000004) (0.012379450500000014) (0.012290225000000002) (0.012438007000000015) (0.012657297499999998) (0.012758030500000003) (0.01225899300000001) (0.012378864000000017) (0.012317133499999994) (0.012198234500000002) (0.012287568999999998) (0.012869148499999997) (0.012565376000000017) (0.01230372099999999) (0.0121650705) (0.012356770999999989) (0.012566834999999998) (0.012458423499999996) (0.012182763500000013) (0.012481176999999996) (0.012515728500000003) (0.012706822999999992) (0.012313108500000003) (0.012391511500000008) (0.012323436500000007) (0.012891898000000013) (0.012636751000000015) (0.012905076000000001) (0.012883194) (0.012811244) (0.012580971999999996) (0.012665127500000012) (0.0129142015) (0.013106130999999993) (0.012514404999999992) (0.013201679000000008) (0.01320228250000001) (0.012804033000000006) (0.012931703500000016) (0.012816635500000007) (0.0126835255) (0.0130527285) (0.01255380099999999) (0.012697220499999995) (0.012486513500000004) (0.012774685500000008) (0.012528283000000001) (0.012540984500000005) (0.012750035500000007) (0.01317491200000001) (0.012814429500000002) (0.012887239500000008) (0.012673902) (0.012842817499999992) (0.012622485000000003) (0.012797297500000013) (0.012737421999999998) (0.012412404500000002) (0.0125431295) (0.012669407500000007) (0.012377409499999992) (0.012278802499999991) (0.0122871425) (0.012321217499999995) (0.012105678999999994) (0.012350394) (0.01258401349999999) (0.012505507499999999) (0.012596451000000009) (0.012271949000000018) (0.012713798500000012) (0.012554773000000005) (0.012329557000000005) (0.012709096000000003) (0.012230533999999987) (0.012434689000000013) (0.012418617500000007) (0.012471128499999984) (0.012383740500000018) (0.012221610500000007) (0.01222165) (0.012426674500000012) (0.0124500045) (0.012280157) (0.012645955) (0.0123192825) (0.012740460499999995) (0.012189435000000012) (0.012301359999999997) (0.012874937500000003) (0.012877849499999997) (0.012632207500000006) (0.012864240499999999) (0.01286192400000001) (0.012838702499999993) (0.012991501500000002) (0.012707095500000001) (0.012751955999999995) (0.0127140065) (0.012627644000000007) (0.01258815299999999) (0.013135962999999987) (0.013015455499999995) (0.012586523000000002) (0.013087754000000007) (0.012828833999999997) (0.012801116500000015) (0.01266995450000001) (0.013074529500000001) (0.012489490000000006) (0.012745235499999993) (0.012816528999999993) (0.012636397000000008) (0.0129881825) (0.013062386500000009) (0.013057846499999998) (0.012521484499999999) (0.012885026499999994) (0.0129124865) (0.012871158499999993) (0.013162100999999995) (0.012678127500000011) (0.012236271500000007) (0.012422903999999999) (0.012459275000000006) (0.012506675499999995) (0.012281516500000006) (0.012959544500000003) (0.012472755999999988) (0.012455935500000001) (0.012679449500000009) (0.012728517499999994) (0.0124186305) (0.012348174500000003) (0.012724927499999997) (0.012450589999999997) (0.012621927000000005) (0.012310841500000017) (0.012393764999999987) (0.01231916249999998) (0.01246511950000001) (0.012371964) (0.012132600500000007) (0.01230674050000001) (0.01236470299999999) (0.01262038800000001) (0.01241993600000002) (0.012793415999999988) (0.01232999400000001) (0.01272210900000001) (0.01242225050000001) (0.012296436499999994) (0.012150396000000008) (0.012637080000000009) (0.012764924999999996) (0.013103371000000003) (0.012664169500000003) (0.012835641000000009) (0.012849304500000006) (0.0125081415) (0.012517921999999987) (0.012729728999999995) (0.012552076500000009) (0.013064658499999993) (0.013181808999999989) (0.012878815499999988) (0.012617350999999999) (0.012795179500000003) (0.012639044999999988) (0.012473934500000006) (0.012833186999999996) (0.012487071499999988) (0.012655110499999997) (0.012704913499999998) (0.012770411499999995) (0.01261448300000001) (0.01265585100000001) (0.012629113999999997) (0.01308292200000001) (0.012782033499999998) (0.012705466499999998) (0.013079588000000003) (0.012608338999999996) (0.013211763000000001) (0.0129069495) (0.012291247500000005) (0.012420089999999995) (0.012258483000000014) (0.012564434999999999) (0.012319017000000002) (0.012300303999999998) (0.012155544500000004) (0.012453909499999999) (0.012806683000000013) (0.012484975500000009) (0.012585757000000003) (0.012650647000000001) (0.012638752499999989) (0.012470576499999997) (0.012399015999999999) (0.012616937999999994) (0.012429497000000012) (0.012535866499999979) (0.01210837699999999) (0.012891035499999995) (0.012267004500000012) (0.012359469999999997) (0.0122712705) (0.012660454000000002) (0.01262591049999999) (0.012771332499999996) (0.012444126500000013) (0.012289598999999998) (0.012492936499999996) (0.01227723650000001) (0.012547684500000003) (0.0125044515) (0.0127241055) (0.012708151499999987) (0.013180915500000001) (0.012546121999999993) (0.012697718999999996) (0.012574919000000004) (0.0127327505) (0.01260035399999998) (0.012628413000000005) (0.012836273999999995) (0.012937840500000006) (0.012965405999999999) (0.012664467500000012) (0.012598151000000002) (0.012784952500000002) (0.013200381999999997) (0.012666892499999999) (0.012571269999999982) (0.012696356499999992) (0.012440873000000019) (0.01255088750000001) (0.012667657999999998) (0.012876472) (0.012941595999999986) (0.012880174499999994) (0.01291653999999999) (0.012647435499999998) (0.012738414500000003) (0.012634600999999995) (0.012689613500000016) (0.012604864999999993) (0.012833649500000002) (0.012709319499999996) (0.012613866500000001) (0.012460492000000004) (0.012529514999999991) (0.012210741499999997) (0.012322995000000003) (0.012346480999999992) (0.012568362000000013) (0.012360029500000008) (0.012499702000000001) (0.012371528499999992) (0.012248232499999998) (0.012305205000000013) (0.012238459999999979) (0.012663309999999997) (0.012324138499999998) (0.012301382999999999) (0.012340521499999993) (0.012596835) (0.012422787000000005) (0.01210428949999999) (0.012692830500000002) (0.012608725999999987) (0.012552462) (0.01225507499999999) (0.012506154000000005) (0.012662817999999992) (0.012297007499999998) (0.012402030000000008) (0.012433138999999996) (0.012620466999999996) (0.012403051500000012) (0.012522006499999988) (0.012665566000000003) (0.012589715500000001) (0.012654605499999999) (0.012498743999999992) (0.012841585500000002) (0.012391844999999999) (0.012675710999999992) (0.01264312649999999) (0.012625303000000018) (0.0125143895) (0.013190477500000006) (0.012773112499999975) (0.012686275499999997) (0.012615659500000001) (0.012690018500000011) (0.012456835999999999) (0.013641065500000008) (0.012550943000000009) (0.0127332795) (0.01264976050000001) (0.012822877499999996) (0.012848510000000007) (0.012583728500000016) (0.012942231999999998) (0.012919195999999994) (0.012746548499999996) (0.01258904000000001) (0.012896104500000005) (0.012771414999999994) (0.0128422475) (0.012693965000000001) (0.012252654500000015) (0.012692402500000005) (0.012287977999999991) (0.012549154999999992) (0.012387099500000012) (0.012689572499999996) (0.012637656999999997) (0.012472147500000003) (0.012403585999999994) (0.012362818000000012) (0.012508310500000008) (0.012595146000000002) (0.012640641000000008) (0.012573276499999994) (0.012390670000000006) (0.012457915500000014) (0.012408546999999978) (0.0124454445) (0.012390835000000003) (0.012788981500000005) (0.012136540500000001) (0.012257900500000016) (0.01249555749999999) (0.012385043999999998) (0.012612225000000005) (0.013070960000000006) (0.012917667999999993) (0.012765718500000009) (0.012483009000000003) (0.012436288000000004) (0.012683001500000013) (0.012351250999999994) (0.012609597500000014) (0.0125923535) (0.012725911500000006) (0.013133653500000009) (0.012727686500000002) (0.012847522) (0.013266272500000023) (0.012500301499999991) (0.012621709499999995) (0.012781091000000008) (0.012915038500000003) (0.013131359000000009) (0.012784644499999998) (0.012912828499999987) (0.012844392000000024) (0.012747797500000005) (0.012895031500000001) (0.012542184499999998) (0.012454127999999995) (0.012958307499999988) (0.012715090000000012) (0.012622534000000005) (0.012633062) (0.012629349999999998) (0.012646678999999994) (0.012913341500000008) (0.012808209499999987) (0.012704439999999984) (0.012902268500000022) (0.012836946000000002) (0.012990548500000004) (0.012584554999999997) (0.012843017999999998) (0.01227044799999999) (0.012188907499999985) (0.012521328500000012) (0.012169606999999985) (0.012385998999999995) (0.012635276) (0.01249008900000001) (0.012330556000000006) (0.012337742499999985) (0.012487743499999995) (0.012638577999999998) (0.012452704499999995) (0.012557661500000011) (0.0125247525) (0.012424013999999997) (0.012196353999999993) (0.01225585350000001) (0.012279701000000004) (0.012364914500000004) (0.0125345085) (0.012218982500000003) (0.012282024000000016) (0.012283171499999995) (0.012481753999999998) (0.01262622649999999) (0.012321205500000001) (0.0120900855) (0.012458699000000004) (0.012399558500000005) (0.012265823000000009) (0.012535684499999991) (0.0128379245) (0.012712430499999997) (0.012586458999999994) (0.012711407000000008) (0.012789288999999995) (0.012693229) (0.012845911500000015) (0.012815713000000006) (0.012687459500000012) (0.013242636000000002) (0.012922713500000016) (0.01258764200000001) (0.012727565499999996) (0.0128414055) (0.012656081) (0.013160552500000006) (0.012580610500000006) (0.012823995000000005) (0.012535230499999994) (0.012790176) (0.013474254000000005) (0.012718566) (0.012448075999999988) (0.012788009999999989) (0.012767179000000003) (0.012595871999999994) (0.012920357999999979) (0.012980459) (0.012616322999999999) (0.013001686999999984) (0.012796120000000008) (0.012638769500000008) (0.012516081499999998) (0.012452056000000003) (0.012396435500000011) (0.012411788499999993) (0.012405704000000004) (0.012296845) (0.012329997999999995) (0.012076578000000004) (0.012596274000000005) (0.012267591499999994) (0.012453657499999993) (0.012550189999999989) (0.01275614500000001) (0.012459332000000017) (0.012422827500000011) (0.012521276500000011) (0.012389048) (0.012335696499999993) (0.012558546500000003) (0.012336912499999991) (0.012411656000000007) (0.012398318000000005) (0.012404233) (0.012417878000000007) (0.012445895499999998) (0.012626080499999998) (0.012599086499999995) (0.01241370550000001) (0.012729668999999999) (0.012612643499999993) (0.012364141500000009) (0.012737978499999997) (0.012962006999999998) (0.013060655000000004) (0.012598702999999989) (0.012652869000000011) (0.012644269999999999) (0.012819445499999998) (0.013035632500000019) (0.012739823499999997) (0.012720702499999986) (0.012893193999999983) (0.012813929499999988) (0.012462077500000016) (0.013260888500000012) (0.012671686500000015) (0.013040795499999994) (0.01287519450000002) (0.012804988500000003) (0.012882986500000013) (0.012639137999999994) (0.012556209499999998) (0.013456118500000003) (0.013072495000000003) (0.012711323499999982) (0.012808463499999992) (0.012781728500000006) (0.012917672000000019) (0.012942202500000013) (0.012831280499999986) (0.012813866000000007) (0.012483592499999974) (0.013051625499999997) (0.012906661500000013) (0.012151685499999995) (0.012480487999999998) (0.012704463499999999) (0.01223676450000001) (0.012601342000000001) (0.012336988500000007) (0.012579569999999998) (0.012189043999999996) (0.012355672500000012) (0.0130966535) (0.0127356775) (0.012287649999999997) (0.012458968000000015) (0.012435466499999992) (0.012714652500000007) (0.012415857000000002) (0.012321368499999999) (0.012678639499999991) (0.012266026999999999) (0.012467282499999996) (0.01227126249999999) (0.012328840499999993) (0.012194215000000008) (0.012696618500000006) (0.012567127499999983) (0.012344572499999998) (0.012505589999999983) (0.0123469145) (0.012311214499999987) (0.0125385135) (0.01237800600000001) (0.012512147500000015) (0.012648815000000008) (0.0126309785) (0.01261461949999998) (0.012905792499999999) (0.012417956999999993) (0.012656378999999995) (0.012615913000000006) (0.012528632499999984) (0.012468854000000001) (0.012554126499999999) (0.012775520499999998) (0.012708392999999998) (0.012699767) (0.012753017499999991) (0.012471934000000004) (0.012747313499999996) (0.012615789999999988) (0.012512906500000004) (0.012549781999999995) (0.012485438500000001) (0.013149481500000004) (0.012587255000000006) (0.013062136499999988) (0.012654496000000001) (0.012868242000000002) (0.012428144500000002) (0.012808748500000008) (0.012839099999999992) (0.012533957500000012) (0.012556042000000003) (0.012620706999999995) (0.012949034999999998) (0.0127833205) (0.012425422999999991) (0.012396484) (0.012189524999999993) (0.0125394635) (0.012350023000000016) (0.012133784999999994) (0.012368301999999998) (0.012422595999999994) (0.012458384000000003) (0.012461629000000016) (0.012377114499999994) (0.012372852000000004) (0.012527731999999986) (0.012225037999999994) (0.012416393999999997) (0.012198894500000002) (0.01203307549999999) (0.012539371499999993) (0.012242180500000005) (0.012461149000000005) (0.012321385500000004) (0.012359379500000003) (0.012606645999999999) (0.012524838999999996) (0.012291381500000004) (0.012998487500000003) (0.012899719000000004) (0.012438048999999993) (0.012253924999999999) (0.012379858000000007) (0.012431493500000015) (0.012647449499999991) (0.012797372500000001) (0.012508864500000008) (0.012794399999999997) (0.012567744999999991) (0.012392803500000008) (0.012279961499999992) (0.012719663999999992) (0.012870773500000002) (0.012736488500000004) (0.012919927499999984) (0.012619218999999987) (0.012928439) (0.012604861000000009) (0.013333334000000002) (0.012575088499999998) (0.012890737499999999) (0.012816807) (0.0125963875) (0.01283351549999999) (0.012579431500000002) (0.012583029499999995) (0.012588715999999986) (0.012649309999999997) (0.012559252000000007) (0.012746587500000003) (0.012888040000000003) (0.012723899999999996) (0.01287736049999999) (0.012633723000000013) (0.012690207499999995) (0.012737022) (0.012131599499999993) (0.012183319499999998) (0.012402208499999998) (0.012183380500000007) (0.012593315500000007) (0.012151736999999996) (0.012307078499999999) (0.012423434499999983) (0.012597705) (0.012450725999999995) (0.012329970999999995) (0.012460336500000016) (0.01240236900000001) (0.012487955499999995) (0.012772512) (0.012380253000000008) (0.01278604450000001) (0.012171020500000004) (0.012103429999999984) (0.012198820499999985) (0.012606123499999997) (0.012299895500000005) (0.01230171499999999) (0.012149787500000009) (0.012377153499999988) (0.012794604000000001) (0.012324915999999991) (0.012794848999999997) (0.012386597) (0.012918155500000014) (0.012659978499999988) (0.012611633999999997) (0.012655482999999995) (0.012346511500000004) (0.012704108499999991) (0.012528095000000003) (0.012542599500000001) (0.012961703500000019) (0.012460825499999995) (0.01270320200000001) (0.01290825150000001) (0.01281589100000001) (0.012580564500000002) (0.012877077) (0.012808111499999997) (0.012705049499999982) (0.012889244999999994) (0.012603791499999989) (0.012665153500000012) (0.012495468999999995) (0.012778868499999999) (0.0125342425) (0.012706428500000005) (0.012769619999999995) (0.01281581250000001) (0.012865506000000013) (0.012637240000000008) (0.0125723675) (0.012647304500000012) (0.01282188699999999) (0.012828263500000006) (0.01305458150000001) (0.013086277000000007) (0.012882083000000003) (0.012304109500000007) (0.012353573000000007) (0.012199504999999985) (0.012307228999999989) (0.012476545500000005) (0.012378845999999999) (0.012231274999999986) (0.012135887499999998) (0.012365980500000012) (0.012659827499999998) (0.012302044499999998) (0.012559985999999995) (0.012519468499999992) (0.012712216000000012) (0.012303107000000008) (0.012780219999999995) (0.012270297999999999) (0.012289950500000008) (0.012358900000000006) (0.012309734000000003) (0.012622719000000004) (0.012331731499999998) (0.012438359999999996) (0.012226572500000005) (0.012379654000000004) (0.012551218000000003) (0.012312195500000012) (0.012370374000000003) (0.012348113499999994) (0.01239886350000001) (0.012430785999999985) (0.012805812) (0.01274116850000001) (0.012773592) (0.013031515500000007) (0.012422337000000006) (0.012830910000000001) (0.012532330499999994) (0.012662883) (0.012817398000000008) (0.012693837999999999) (0.012701222500000012) (0.01277724349999998) (0.012551369500000006) (0.012536175999999996) (0.012767226500000006) (0.0126093595) (0.012831078499999996) (0.012594061000000017) (0.012957813999999998) (0.012611697500000005) (0.012611964500000003) (0.012633197499999999) (0.012787335499999997) (0.012505258500000005) (0.0126399705) (0.012661649000000011) (0.013119677499999982) (0.01289087400000001) (0.012723845499999983) (0.012541213499999995) (0.012820296499999995) (0.012937625000000008) (0.012632410499999996) (0.012560397000000001) (0.012060854499999996) (0.012584062499999993) (0.01250287750000001) (0.012501828499999992) (0.012347281500000001) (0.012486928499999994) (0.012391587499999995) (0.012462076500000002) (0.012241417500000004) (0.012563191500000001) (0.012384148499999983) (0.012260142499999988) (0.012375587000000007) (0.012465072999999993) (0.012414976500000008) (0.012267997500000016) (0.01232133249999999) (0.01265323900000001) (0.012376834500000003) (0.012230513499999998) (0.012575233500000005) (0.012463745000000012) (0.0123699845) (0.012273542999999998) (0.012591041500000011) (0.012423502000000003) (0.012376021000000001) (0.012248983000000005) (0.012586162000000012) (0.012256442999999992) (0.012384106999999991) (0.012432139000000009) (0.012603960499999997) (0.012799890500000008) (0.012564859499999997) (0.012464634000000002) (0.0127742795) (0.012707884000000003) (0.01253116550000001) (0.012598762) (0.013111132999999997) (0.012989091499999994) (0.012690093999999999) (0.012673945500000006) (0.012715575999999992) (0.012733546999999998) (0.013113452499999997) (0.013013305500000003) (0.012562770500000014) (0.012671720000000011) (0.012810947500000003) (0.013004905999999983) (0.012651821999999993) (0.012576459000000012) (0.012653000000000011) (0.013002620999999992) (0.012751146500000005) (0.012687442500000007) (0.013019229000000007) (0.012983598499999999) (0.012840221999999984) (0.01284553799999999) (0.012589033999999999) (0.012313928500000001) (0.012430432000000005) (0.012053491999999999) (0.012345720500000004) (0.012058693999999995) (0.012455206999999996) (0.012208765999999996) (0.012384974500000007) (0.012577547000000008) (0.012837527500000015) (0.012394082) (0.012581741000000007) (0.012356775) (0.012624532000000008) (0.012394651500000006) (0.012370968999999996) (0.012430911500000003) (0.012706760499999997) (0.012215896500000004) (0.012395827999999998) (0.012350692499999996) (0.012422519000000007) (0.012318546499999986) (0.012310429499999984) (0.012692332000000014) (0.012547686500000016) (0.012344157499999994) (0.012319577499999998) (0.012492745999999999) (0.012735672000000003) (0.012558734000000002) (0.012499870999999996) (0.012560939500000007) (0.012542644500000005) (0.012951088500000013) (0.012749085999999993) (0.012451507500000014) (0.012439381999999999) (0.012615759000000004) (0.012796842000000003) (0.012717347000000004) (0.012580289499999994) (0.012814379499999987) (0.012809055) (0.012671344000000001) (0.01246826099999998) (0.012649247500000016) (0.012943340500000011) (0.012457116000000004) (0.012551645) (0.012508111499999988) (0.012563369000000005) (0.012633342000000006) (0.012504651500000005) (0.012505984999999997) (0.012688908500000012) (0.012748901999999993) (0.013119127000000008) (0.012602020000000005) (0.01259073149999998) (0.012878782000000005) (0.012805525999999984) (0.012614530000000013) (0.01281289649999999) (0.012203908999999999) (0.012511940499999999) (0.012349354500000007) (0.012416430500000006) (0.012430083500000008) (0.012464792999999988) (0.012285272499999986) (0.012290691500000006) (0.012178598499999999) (0.01238318300000002) (0.012303962500000001) (0.012495791000000006) (0.012228266500000015) (0.012782768) (0.012860997500000013) (0.012520240000000002) (0.012181789499999998) (0.012072751999999992) (0.012319656999999998) (0.012181042000000003) (0.012142268999999997) (0.012226420500000001) (0.012380678000000006) (0.012525386999999999) (0.012762096500000014) (0.012273939000000011) (0.012298316500000003) (0.012559339500000002) (0.013121307499999998) (0.012501058499999995) (0.012771850000000001) (0.0126765125) (0.012897876000000003) (0.0123277985) (0.012526455999999991) (0.012693108999999994) (0.0128009325) (0.012883950000000005) (0.012515604499999985) (0.012637410500000001) (0.012922757000000007) (0.0129688575) (0.012695456500000007) (0.012562315000000004) (0.012842027499999992) (0.012773559500000004) (0.013723909999999992) (0.012588065999999995) (0.013083765999999997) (0.012603031000000015) (0.012760698000000001) (0.012695977499999997) (0.013164890499999998) (0.012741910000000009) (0.012968171) (0.012827934499999999) (0.0128063655) (0.01291629250000001) (0.012976867500000003) (0.012673950000000003) (0.012610708999999998) (0.012831349500000006) (0.0126482485) (0.012741084) (0.012378982999999996) (0.012230058500000002) (0.012329980500000018) (0.012458848499999994) (0.012625549500000013) (0.0122787075) (0.012408820999999987) (0.012182173000000004) (0.012376901499999995) (0.012485602999999998) (0.012381456499999999) (0.0132372875) (0.012507131500000018) (0.012794247000000009) (0.012212068500000006) (0.012889733499999986) (0.0124806695) (0.012290853000000004) (0.012312005) (0.012315170500000014) (0.012479272999999999) (0.012434729500000019) (0.012487108999999996) (0.012471355000000003) (0.012598395500000012) (0.012799908500000012) (0.01275162099999999) (0.012423655499999992) (0.01269923199999999) (0.012530795999999997) (0.012384661000000005) (0.012577904999999986) (0.0127900965) (0.012544247499999994) (0.01312543599999999) (0.012586759500000003) (0.012612616999999993) (0.01285612450000001) (0.012653419000000013) (0.012867388500000007) (0.0129064225) (0.013102696499999983) (0.013136975500000009) (0.012711630999999987) (0.01247011499999999) (0.012947180500000016) (0.012621353500000002) (0.012767243499999997) (0.012754935999999995) (0.012574279500000007) (0.013025407000000003) (0.012551880999999987) (0.012612234500000014) (0.012624892999999984) (0.012799904499999987) (0.012562098500000007) (0.012692447999999981) (0.0129446805) (0.012714027500000002) (0.012825316500000003) (0.0126463775) (0.012935035500000011) (0.012792320999999995) (0.012704636499999991) (0.01232319150000001) (0.012215986499999998) (0.012122597499999999) (0.01223067650000001) (0.012336714499999998) (0.012299476000000004) (0.012344694000000017) (0.012278673500000004) (0.012306679499999987) (0.012734278000000002) (0.012359013000000002) (0.012274921000000008) (0.012669756500000004) (0.012521222499999998) (0.012532818000000015) (0.012375655) (0.012680668999999992) (0.01247983300000001) (0.012205985500000016) (0.012403553000000012) (0.012250711999999997) (0.012507604000000005) (0.012259607999999991) (0.012207866999999983) (0.01224081149999999) (0.012396218) (0.012700959499999984) (0.012456533499999992) (0.012466604999999992) (0.012480672499999998) (0.012422925500000001) (0.012427920000000009) (0.012788393999999995) (0.012750100999999986) (0.012762127999999998) (0.012564135000000004) (0.012590758500000007) (0.012508100499999994) (0.012762602500000012) (0.012541148999999988) (0.012756589499999998) (0.012937203499999994) (0.012866945500000018) (0.012649778000000014) (0.012592624999999996) (0.01265633749999999) (0.012956976999999995) (0.01269596499999999) (0.012777212499999996) (0.012649966999999998) (0.012692331500000001) (0.012529808500000017) (0.013006456) (0.013053191999999991) (0.012519982999999998) (0.012693028499999995) (0.0127466475) (0.012926350500000003) (0.013016356000000007) (0.012732093000000014) (0.012580576499999996) (0.013027898499999996) (0.012576532500000001) (0.0126461655) (0.012188979000000016) (0.01219236) (0.012418426499999996) (0.012658836500000006) (0.012391277999999992) (0.012588774499999997) (0.012179721000000004) (0.012220531999999992) (0.012861637999999995) (0.012777136499999994) (0.012283611000000014) (0.012444228500000001) (0.012401238500000009) (0.012490029000000014) (0.01287302849999998) (0.012654771499999995) (0.012431298500000007) (0.01234739600000001) (0.012419897) (0.012211293999999998) (0.012628784000000004) (0.012292192999999993) (0.012463657000000003) (0.012187524000000005) (0.012195682499999999) (0.012815920999999994) (0.012656432499999995) (0.012717441499999996) (0.012453949499999992) (0.012367721499999998) (0.012337756500000005) (0.012566486999999987) (0.012890969000000002) (0.012766529999999984) (0.012697139999999982) (0.012509809499999996) (0.0127351785) (0.01282082800000002) (0.012651128999999997) (0.01275088399999999) (0.013243197500000012) (0.013096950999999996) (0.012692469999999997) (0.0126781485) (0.012590315000000005) (0.012564198000000013) (0.012849977500000012) (0.0126024265) (0.012735278499999989) (0.012961623499999991) (0.01290325099999999) (0.012765112999999995) (0.012704422499999993) (0.012618397000000003) (0.012699857500000009) (0.012523075999999994) (0.012972151500000001) (0.012777044000000001) (0.0128825875) (0.013050821000000004) (0.012853853499999998) (0.012687232500000006) (0.012626278500000004) (0.012919928499999997) (0.01242491300000001) (0.012758825500000001) (0.012191635500000006) (0.012531381500000008) (0.012453929000000002) (0.012590557499999988) (0.012723801499999993) (0.012308647000000006) (0.012395002000000002) (0.012324786500000004) (0.01233561150000001) (0.012453144000000013) (0.01232569) (0.012987232000000015) (0.012526395499999995) (0.012570627000000001) (0.012139848500000008) (0.012603907999999997) (0.012197987500000007) (0.012413380499999987) (0.012530660000000013) (0.012425085000000002) (0.01240480849999999) (0.01233263350000001) (0.013320701500000004) (0.012997259999999997) (0.01301637500000001) (0.012443711999999996) (0.012670046500000004) (0.012867926500000015) (0.012965907499999985) (0.012360701499999988) (0.012726308000000006) (0.01264227200000001) (0.013100419000000016) (0.012546098499999991) (0.012907541000000008) (0.012751830500000005) (0.012556450499999997) (0.012852015999999994) (0.01265284450000001) (0.01267103850000001) (0.012517148500000005) (0.012856824499999989) (0.012865396999999987) (0.012558394000000014) (0.012825728500000008) (0.012665978499999994) (0.012604111000000015) (0.012699447000000016) (0.012679049999999997) (0.012578770000000003) (0.012449180500000004) (0.012622457000000017) (0.012677739000000007) (0.01270884400000001) (0.012834303500000005) (0.012969701) (0.012929788499999997) (0.0127130565) (0.012547321) (0.012934862999999991) (0.012626465500000003) (0.0127473045) (0.012057277500000005) (0.012245163500000003) (0.0124963305) (0.013468742499999992) (0.012304825500000005) (0.012308676500000004) (0.012323978499999999) (0.013267716499999999) (0.012501017500000003) (0.0125924865) (0.012422122500000007) (0.012709682499999986) (0.012542594000000004) (0.012238700500000005) (0.012657544500000006) (0.012371247500000002) (0.012444802000000005) (0.012641990000000006) (0.01249360599999999) (0.012615093000000008) (0.012509382000000013) (0.012310981000000012) (0.012304991000000001) (0.012703759500000009) (0.0124673) (0.012419221000000008) (0.012424888999999995) (0.01231265049999998) (0.012819148000000002) (0.0126324825) (0.012576921500000005) (0.012416316499999996) (0.012728453000000015) (0.012682165500000009) (0.012978952000000016) (0.012741442500000005) (0.012760141500000002) (0.012811926000000001) (0.012549709999999992) (0.012533589499999984) (0.013105163999999989) (0.012948075500000003) (0.013013394499999997) (0.013064296000000017) (0.012922772999999999) (0.013014169499999992) (0.012810643499999996) (0.012891706999999988) (0.012702456) (0.012657804000000009) (0.012640097000000003) (0.012673495499999993) (0.01290110600000001) (0.012584131999999998) (0.012813976000000005) (0.012528535499999993) (0.013043327500000007) (0.012882144000000012) (0.012914610000000007) (0.012947890000000004) (0.012669764) (0.012672010000000011) (0.012685525500000003) (0.013341167000000001) (0.012319860000000002) (0.012547276499999996) (0.012575225499999995) (0.012206291500000008) (0.012345890499999998) (0.012447215000000011) (0.012384731999999996) (0.012149412999999998) (0.012273132500000006) (0.012485404999999991) (0.012409719999999985) (0.012683055499999998) (0.012423682500000005) (0.013073139999999997) (0.012336436000000006) (0.01261510099999999) (0.012291603499999998) (0.012457611999999993) (0.012568040500000002) (0.012493162500000002) (0.012629773999999996) (0.0123414565) (0.0124062125) (0.012254174000000007) (0.012317916999999984) (0.012536108000000004) (0.012425099999999994) (0.012406424499999999) (0.012519554000000002) (0.01277188899999998) (0.012289264999999994) (0.012379638000000012) (0.012535283500000008) (0.012589362000000007) (0.012951470500000006) (0.012926168499999988) (0.012619499499999992) (0.012581315999999995) (0.012959158500000012) (0.012948458999999982) (0.0129130665) (0.012976938999999993) (0.012891267999999997) (0.013016267500000012) (0.012891618999999993) (0.012714485499999997) (0.013009024499999994) (0.012707333500000001) (0.012546006999999998) (0.012768570500000007) (0.012890374499999996) (0.012464271000000013) (0.012899636500000006) (0.012559317) (0.012622571999999985) (0.012682258000000002) (0.012755291000000016) (0.012900846500000007) (0.012801198500000013) (0.012781567500000021) (0.012513482999999992) (0.01268139900000001) (0.012719472499999995) (0.012532090499999995) (0.012464227000000008) (0.012448842000000002) (0.012388357999999988) (0.012806508999999994) (0.01233377799999999) (0.012483356000000015) (0.012708801500000005) (0.01296293300000001) (0.012589100499999992) (0.012391499500000014) (0.012753820499999999) (0.012348305000000004) (0.012335388500000002) (0.012551652499999996) (0.01246562050000001) (0.012698036999999995) (0.012365280000000006) (0.012508776500000013) (0.012170628499999989) (0.012370366999999993) (0.012270124500000007) (0.01235690149999999) (0.012335429499999995) (0.012399674000000013) (0.012507332499999996) (0.012806973500000013) (0.012234514000000002) (0.012647561999999987) (0.012247452999999991) (0.012559278499999993) (0.012772413999999996) (0.012582224500000003) (0.01281231749999999) (0.012516939000000005) (0.012636759499999997) (0.012551105499999993) (0.012837018500000005) (0.012745466499999997) (0.012747332000000014) (0.01248539400000001) (0.012689268000000004) (0.013037473000000008) (0.012743208000000006) (0.012771892500000034) (0.012961914500000005) (0.012953380000000014) (0.012779505499999996) (0.012857466499999998) (0.012802262999999994) (0.012908317500000002) (0.012512788999999996) (0.012627764) (0.012664921499999995) (0.012651040000000002) (0.012610136500000008) (0.012795121999999992) (0.0126879025) (0.01283418850000001) (0.013321612499999996) (0.012823380500000023) (0.012733939500000013) (0.01304938700000001) (0.012731204999999995) (0.012956699500000002) (0.012516983500000009) (0.012115306500000006) (0.013307374499999997) (0.012646053500000004) (0.012405321999999996) (0.012622157000000009) (0.012401761500000011) (0.012693045) (0.012498591500000003) (0.012363513499999992) (0.012324457000000011) (0.012621423999999992) (0.012694019499999987) (0.012499350000000006) (0.013023095499999998) (0.012429913499999987) (0.012572492500000004) (0.012506828500000011) (0.01288642050000001) (0.013178139500000005) (0.012543760000000001) (0.012392119999999993) (0.012431289000000012) (0.012639071000000002) (0.012392041000000006) (0.012620096000000011) (0.012457116000000004) (0.012595790999999995) (0.012351003) (0.012571580499999999) (0.012652807000000002) (0.012615916500000005) (0.012498926500000007) (0.012833659500000011) (0.012582784) (0.012748892000000012) (0.012783881999999996) (0.0129788235) (0.012834855499999992) (0.012629568000000008) (0.01281844650000001) (0.0125280225) (0.012654642499999993) (0.012729957) (0.0124645575) (0.012873857500000002) (0.013012257499999999) (0.012634302500000014) (0.012724245000000009) (0.012553373499999992) (0.012772694000000001) (0.013318666500000007) (0.013222094000000004) (0.012729462999999996) (0.012684940500000005) (0.012517128000000002) (0.012886390500000011) (0.012933987000000008) (0.012689231499999995) (0.012683077000000001) (0.012894403499999985) (0.013012299000000005) (0.012901002499999994) (0.012994494999999995) (0.012350739999999999) (0.012473579999999998) (0.012403027499999997) (0.01255146650000001) (0.012536910499999998) (0.012384514999999999) (0.012793931500000008) (0.012596052499999996) (0.012619320000000003) (0.012775010999999989) (0.01248945700000001) (0.012542138000000008) (0.012664996499999998) (0.012742766000000016) (0.012618960499999998) (0.012563468500000022) (0.012421830000000009) (0.012504662) (0.012290708499999997) (0.01241025350000001) (0.01275004199999999) (0.012260310499999996) (0.012597087500000007) (0.012219052499999994) (0.0123975625) (0.012490474500000001) (0.012418961000000006) (0.01273374549999999) (0.012480514499999998) (0.012642819999999985) (0.0122924945) (0.012551294500000004) (0.012703066500000013) (0.012934915000000005) (0.01281635049999999) (0.012602226500000008) (0.012516314) (0.012725755000000005) (0.012590458499999999) (0.012734682000000011) (0.012721654000000013) (0.012631397999999988) (0.01299273799999999) (0.013231501999999992) (0.01314012399999999) (0.012886659500000022) (0.012970770500000006) (0.012789856500000002) (0.01291578900000001) (0.012980806500000011) (0.012601024499999974) (0.012606681999999994) (0.012559974500000001) (0.01290206599999999) (0.012889176500000016) (0.0127554795) (0.012942347499999979) (0.012899826999999989) (0.012970044999999986) (0.012830445499999982) (0.012691154499999996) (0.012580095000000013) (0.012722858000000017) (0.01262816750000001) (0.012623243499999978) (0.012299774999999999) (0.012450402500000013) (0.012237645500000005) (0.012453709000000007) (0.012354931) (0.012323472500000002) (0.012491357999999994) (0.013655735999999988) (0.012728868500000004) (0.01257034500000001) (0.01271890349999999) (0.012542773499999993) (0.012390250999999991) (0.012859816999999996) (0.012267683000000001) (0.012650914999999999) (0.012492211500000003) (0.012229950500000003) (0.012417386000000002) (0.012410242999999987) (0.012474026499999999) (0.012294914500000004) (0.012551904000000003) (0.012380130000000003) (0.012327162000000003) (0.012557425499999997) (0.012365596999999992) (0.012440211999999992) (0.012372555500000007) (0.01234569349999999) (0.012314868500000006) (0.012492475000000003) (0.012504283000000005) (0.012562306499999995) (0.012535560000000001) (0.012541806500000002) (0.0128468625) (0.012631369000000017) (0.012800075499999994) (0.013007955000000002) (0.012936084) (0.012696365000000001) (0.01286388699999999) (0.012737849999999995) (0.012735666999999992) (0.012750116999999991) (0.012887067499999988) (0.012808961000000008) (0.012657787000000004) (0.013166962500000018) (0.012768942500000005) (0.012922101500000005) (0.012661846500000004) (0.012785652500000008) (0.012837888500000005) (0.012851169999999995) (0.012778185499999997) (0.012961841000000002) (0.012750851500000007) (0.012627014499999992) (0.013315780499999999) (0.012746742000000005) (0.012943209499999997) (0.0127479905) (0.012399481500000004) (0.012339887000000008) (0.012328673000000012) (0.012390776000000006) (0.012544937499999992) (0.012527131499999997) (0.012361664500000008) (0.012618316000000004) (0.012292997999999986) (0.012434693999999996) (0.012512889999999999) (0.012676459500000015) (0.012453611500000003) (0.012305699000000017) (0.012616701499999994) (0.012334045500000015) (0.012512101499999984) (0.012275850000000019) (0.012254161) (0.012416395499999996) (0.012732466999999997) (0.012270106000000003) (0.012169189999999996) (0.012352626000000005) (0.012494711500000005) (0.012694294499999995) (0.012304454500000006) (0.012249269499999993) (0.012519882499999982) (0.012236736499999998) (0.012292053000000011) (0.012652126499999986) (0.012621046499999997) (0.012788481500000004) (0.012840222499999998) (0.01331884300000001) (0.012642723500000008) (0.012468623499999998) (0.012744706499999994) (0.012704428000000004) (0.013019206999999991) (0.013012067500000002) (0.01275974399999999) (0.012630111999999999) (0.012779174500000004) (0.012730446000000006) (0.012728049000000005) (0.0134059755) (0.0127564275) (0.012495646999999999) (0.012893125499999991) (0.012693505500000007) (0.013235113000000007) (0.012438990000000011) (0.012891623000000005) (0.013120037000000001) (0.012943234499999998) (0.012799686500000004) (0.01258055600000002) (0.012697694999999981) (0.012965503500000003) (0.012961111499999997) (0.012799259499999993) (0.012590517499999995) (0.01251922250000001) (0.012265679499999987) (0.0128090275) (0.012255686500000001) (0.012504707500000004) (0.012303004500000006) (0.012419832000000006) (0.012771042999999982) (0.012304351500000005) (0.012522177999999995) (0.012393359500000006) (0.012283951500000001) (0.012498919999999997) (0.012600039499999993) (0.012236427999999994) (0.012430798500000007) (0.012283715500000014) (0.012378865000000017) (0.012645298) (0.012356950999999991) (0.012317403000000005) (0.012102973999999989) (0.012211347499999997) (0.012387251500000002) (0.012518024500000002) (0.012639874500000009) (0.012178099500000011) (0.012612758000000016) (0.01246605299999999) (0.012754541500000008) (0.012334070000000016) (0.012609682999999997) (0.012692776499999989) (0.013001952499999997) (0.012757522999999993) (0.012680072000000014) (0.012680332000000002) (0.012554822500000007) (0.012753298999999996) (0.012698367500000002) (0.013014213999999996) (0.012573900999999998) (0.012680861999999987) (0.012886111999999991) (0.012905505499999984) (0.012571542500000019) (0.012737070499999989) (0.012709497000000014) (0.012716699499999984) (0.012445461000000005) (0.012766820499999998) (0.012564431000000001) (0.013014566500000005) (0.012378343) (0.012834412500000003) (0.012960561500000009) (0.013012605499999996) (0.012960493500000017) (0.012924907499999999) (0.012946897999999998) (0.012675482499999988) (0.012808985499999995) (0.01259179299999999) (0.012456812999999997) (0.012220987000000003) (0.012159213000000002) (0.012282924) (0.012262267999999993) (0.012357193500000002) (0.012244992999999996) (0.012349351000000008) (0.012481498499999993) (0.012531226000000006) (0.012326959499999998) (0.012363807500000004) (0.012116512499999996) (0.012575539499999983) (0.012293288999999999) (0.012611573000000001) (0.012629344) (0.012239154000000016) (0.012290908500000017) (0.012729131000000005) (0.01238749900000001) (0.012525139500000018) (0.012518449000000001) (0.012337048000000003) (0.012403361499999987) (0.012303667500000004) (0.012637529499999994) (0.012422153000000005) (0.012404719000000008) (0.012422052500000003) (0.012779443000000001) (0.012469755999999999) (0.012844386999999999) (0.012658160499999987) (0.012756317500000003) (0.013109948999999996) (0.012630242499999986) (0.01305117) (0.01285826200000001) (0.012541898999999995) (0.012784090999999997) (0.012835580999999999) (0.012946011500000007) (0.012715191) (0.012827652499999995) (0.012725105) (0.012691676500000013) (0.012941924499999993) (0.012482270000000018) (0.012655648499999991) (0.012712025999999987) (0.012719243000000005) (0.012672854999999983) (0.012538765499999993) (0.012697884500000006) (0.01285655949999999) (0.012972374000000009) (0.012750848000000009) (0.012627516000000005) (0.012726216999999998) (0.012808022500000016) (0.012661773999999987) (0.01299197449999999) (0.01288300449999999) (0.012239775499999994) (0.012287377999999988) (0.012417176500000002) (0.01269373950000001) (0.01215235299999999) (0.012410328499999998) (0.012475524500000001) (0.012414948500000009) (0.012939668500000001) (0.012320883500000004) (0.012892041000000007) (0.012315555500000006) (0.012408075000000005) (0.012258830000000012) (0.012601538999999995) (0.012308074999999988) (0.012331428500000005) (0.012251077499999999) (0.0124677235) (0.012719969000000012) (0.012547296500000013) (0.012195954999999994) (0.012200994000000007) (0.012194710999999997) (0.012368981000000001) (0.012422703499999993) (0.012572657999999987) (0.012780933999999994) (0.012262560999999991) (0.01249794600000001) (0.012357350499999989) (0.01248753150000001) (0.012886651999999998) (0.0126206195) (0.012723314000000013) (0.012627199000000006) (0.012853366500000005) (0.012829886500000012) (0.012599880499999994) (0.012846190999999993) (0.012687669499999985) (0.012934265) (0.012624086999999992) (0.012902866499999999) (0.013159585500000015) (0.013121555499999993) (0.012755941500000006) (0.012754492500000006) (0.01301671900000001) (0.012376493000000002) (0.012893264999999987) (0.012651501999999995) (0.012685147499999994) (0.012606111000000017) (0.012874027499999996) (0.012533660500000002) (0.012815750500000014) (0.013074788500000004) (0.012586590000000009) (0.012608820499999993) (0.012826943499999993) (0.0130453445) (0.01267694849999998) (0.012662337999999995) (0.0124936935) (0.0122822405) (0.012668213999999997) (0.012526626999999999) (0.01208215700000001) (0.012504248499999995) (0.012329111000000004) (0.012571896500000013) (0.0124076105) (0.012250117500000018) (0.012164271500000004) (0.012326124999999993) (0.012641290500000013) (0.012493598000000009) (0.012528559499999994) (0.012845159999999994) (0.012663210999999994) (0.012407857499999994) (0.012582314000000011) (0.012510647000000014) (0.012509224500000013) (0.012412767000000019) (0.012338070500000006) (0.012407752500000008) (0.012778042500000017) (0.012393667499999997) (0.012362267999999996) (0.012592671999999985) (0.0123959285) (0.012790611000000007) (0.01225393700000002) (0.012989131000000001) (0.01270259700000001) (0.012729531000000002) (0.013149695500000003) (0.012992377999999999) (0.012828089500000014) (0.012969281999999999) (0.012524481000000004) (0.012994231499999995) (0.012695079999999997) (0.012772050500000007) (0.01281486100000001) (0.0128304625) (0.012710716999999996) (0.012700728000000008) (0.012739597500000005) (0.012833323500000021) (0.012780203000000004) (0.012575114000000012) (0.012600966000000005) (0.012613069000000005) (0.013094186999999993) (0.01267950750000002) (0.012548873999999988) (0.012886870999999994) (0.012831842499999996) (0.012674348000000002) (0.013017181999999988) (0.012692801000000017) (0.012810878999999997) (0.012720417499999997) (0.012546660499999973) (0.012994768500000003) (0.012365259000000003) (0.012175270000000002) (0.012421192999999997) (0.012317396999999994) (0.012649649499999999) (0.012613306500000004) (0.012589978500000001) (0.01227293850000001) (0.012506335499999993) (0.01277782999999999) (0.012159749999999997) (0.012228726499999995) (0.012114575499999974) (0.0123679025) (0.012480126500000022) (0.012313767500000003) (0.01218794849999999) (0.012465906999999998) (0.012256097500000007) (0.012252263499999985) (0.012548799499999999) (0.012397734499999993) (0.012553092000000016) (0.01224472950000001) (0.01220850300000001) (0.012488173000000005) (0.01248063499999999) (0.012584779500000004) (0.012103067999999995) (0.012728268000000001) (0.012556650499999988) (0.0130080385) (0.012828105000000006) (0.012535985999999999) (0.012747694000000004) (0.012586803500000007) (0.012890910500000005) (0.012747706499999997) (0.012644029499999987) (0.012938577999999992) (0.012877923) (0.012747478499999992) (0.012792726500000004) (0.012590331999999996) (0.013106310999999995) (0.012659558000000001) (0.012657176500000006) (0.01257430100000001) (0.01253860150000001) (0.01252974350000001) (0.013112566500000006) (0.01248397300000001) (0.013001777000000006) (0.01283301499999999) (0.012623866999999997) (0.013048241000000002) (0.014785616000000001) (0.013364677499999991) (0.012685522500000004) (0.012850480999999997) (0.012783536999999998) (0.01274086499999999) (0.01324082650000001) (0.012628206000000017) (0.012379125500000004) (0.012361176000000001) (0.012498809499999985) (0.0125221415) (0.012701563999999985) (0.012293575000000015) (0.012440813499999995) (0.012261819500000007) (0.012777721000000006) (0.012656017499999991) (0.012584741000000024) (0.012522512999999999) (0.012333509500000006) (0.012325463000000009) (0.012589377499999985) (0.012360660499999995) (0.012176161500000005) (0.012222388499999987) (0.012230825) (0.012549363000000008) (0.01251856450000001) (0.012198447000000001) (0.012291346000000009) (0.012348427000000009) (0.012732053499999993) (0.012469839999999996) (0.012567871999999994) (0.012232883499999986) (0.012393877500000025) (0.012564448499999992) (0.0125886615) (0.012409223499999997) (0.01261516850000001) (0.012538566500000015) (0.012905578000000001) (0.012461136500000011) (0.012578554000000006) (0.0127330685) (0.012608248499999988) (0.012612073000000001) (0.01247529650000001) (0.0128070495) (0.012611445500000013) (0.012740220499999996) (0.0128117705) (0.012901764499999996) (0.012770208999999977) (0.01263926650000001) (0.012730017499999996) (0.012450147499999994) (0.012641426500000025) (0.012806719499999994) (0.012664944999999997) (0.012823960500000009) (0.012623797999999992) (0.01255712199999999) (0.012707007499999992) (0.012703668499999987) (0.012691282000000012) (0.012968285000000024) (0.012873276499999989) (0.012532359000000007) (0.01307241750000003) (0.012760197000000015) (0.012367517500000008) (0.012476289000000002) (0.012439947999999992) (0.012513788999999997) (0.012465330999999996) (0.012594879500000003) (0.012751511999999993) (0.012402383500000003) (0.012341378) (0.01242550249999999) (0.012226540500000008) (0.012379870500000001) (0.012223061999999993) (0.012432393) (0.012404377499999994) (0.01261585500000001) (0.012634481000000017) (0.012305003500000009) (0.012265747500000007) (0.0124145435) (0.012377555999999998) (0.012266857000000006) (0.012496695500000002) (0.012305952000000009) (0.012586953999999997) (0.012312116000000012) (0.012485052999999996) (0.012415982499999992) (0.012377330999999991) (0.012314179500000008) (0.012253540500000007) (0.012414101999999996) (0.012653976500000011) (0.012745733499999995) (0.012740052499999988) (0.012802181999999995) (0.01250669) (0.012955171500000015) (0.012967909999999985) (0.012733649) (0.012876904500000022) (0.012497480499999991) (0.012954075499999995) (0.012567482000000005) (0.012895581500000017) (0.012767171500000007) (0.013104072000000008) (0.012877804500000006) (0.01245499600000001) (0.012896664999999988) (0.01261693500000001) (0.012996062500000002) (0.01259254949999998) (0.012874869499999997) (0.012570637999999995) (0.012914830500000002) (0.012916760000000013) (0.012660098999999994) (0.012584427500000009) (0.012677124000000012) (0.012865628500000018) (0.013078057500000018) (0.013030035499999995) (0.012499147000000002) (0.012505287000000004) (0.012758733999999994) (0.012362700000000004) (0.012244643999999999) (0.012237015500000004) (0.012309972499999988) (0.012367840500000005) (0.012285905) (0.012278038000000005) (0.01269862699999999) (0.012543690999999996) (0.012396997500000007) (0.012408044500000007) (0.012215285000000006) (0.012407489000000008) (0.012376033000000008) (0.012782994500000006) (0.012500713499999996) (0.012387241500000007) (0.0122814215) (0.012468361999999983) (0.012510636499999991) (0.012307296000000023) (0.01271464600000001) (0.012433954499999997) (0.01264841799999998) (0.012466523500000007) (0.012742033000000014) (0.012467091) (0.012573030499999999) (0.012724484999999994) (0.012354408499999997) (0.013041420499999998) (0.012555532999999994) (0.012730533500000002) (0.012757969499999994) (0.0126686835) (0.012689338999999994) (0.012612455999999994) (0.012450278999999995) (0.013004349500000012) (0.012712701499999993) (0.012637428000000006) (0.012915428000000007) (0.012778546000000016) (0.012858975999999994) (0.01251709099999998) (0.012792085500000008) (0.012683702500000005) (0.012464413499999993) (0.012549208000000006) (0.012673453000000001) (0.012948411999999992) (0.012850447500000015) (0.012772354) (0.012628971499999989) (0.012680162000000023) (0.012705609000000007) (0.012609158499999995) (0.013025150499999999) (0.012866529000000002) (0.012869618) (0.012607818999999992) (0.012964262500000004) (0.012285648499999996) (0.012281102000000002) (0.012216039999999997) (0.012393607000000001) (0.01233732500000001) (0.012261909000000001) (0.012567192500000005) (0.012416210499999997) (0.012635585000000005) (0.012492749999999997) (0.012390240499999997) (0.01289257249999999) (0.01281536300000001) (0.012582347499999993) (0.012223453499999995) (0.012399252999999999) (0.01249691) (0.012202410499999997) (0.0123600705) (0.012219906000000003) (0.01269410750000001) (0.012558061500000009) (0.012336431500000009) (0.012434626500000004) (0.012683575000000002) (0.012525293999999992) (0.012248997499999983) (0.012464062000000012) (0.012341951000000004) (0.012645785500000006) (0.012730247000000014) (0.012380468500000005) (0.012540613000000006) (0.012866595500000008) (0.0126851885) (0.012778347500000009) (0.012587527000000015) (0.012679225500000002) (0.012655551499999987) (0.012590706499999993) (0.01254108800000002) (0.012837019000000005) (0.012791208499999984) (0.012886941000000013) (0.012678897499999994) (0.012777350499999993) (0.013004384499999994) (0.012604961999999997) (0.012724457500000008) (0.01256922399999999) (0.012713034499999998) (0.013022383999999984) (0.012644163) (0.012791855500000004) (0.012596918999999984) (0.01280625199999999) (0.012619475000000005) (0.012797889499999993) (0.012615803499999995) (0.01279255850000001) (0.01261822) (0.012886793499999993) (0.012648008999999988) (0.012812421500000004) (0.012542566500000005) (0.01229242550000001) (0.012210587000000009) (0.012500404499999992) (0.012487959499999993) (0.012344810499999997) (0.012570592499999991) (0.012327466499999995) (0.0122811575) (0.012527366499999998) (0.012933590000000009) (0.012471562500000005) (0.012402087000000006) (0.012549952500000003) (0.012495018499999996) (0.012505765000000002) (0.01258665149999999) (0.012518912999999993) (0.012187231999999992) (0.012603911999999995) (0.012433175000000005) (0.012390921000000013) (0.012292283999999987) (0.0126532575) (0.012401501499999995) (0.012705703999999998) (0.012563655500000007) (0.012490419000000003) (0.012282111499999998) (0.012511743000000006) (0.012847169499999991) (0.012476100000000004) (0.013048986500000012) (0.012751658500000013) (0.012562125499999993) (0.01284139849999999) (0.01258169449999999) (0.012712690499999985) (0.012656415000000004) (0.012543481500000009) (0.012791378500000006) (0.013197001) (0.012941465000000013) (0.012672906500000011) (0.013169235500000015) (0.01294648000000001) (0.012690967500000011) (0.012541109999999994) (0.01291644950000001) (0.012647989500000012) (0.012632372500000003) (0.012578387499999996) (0.012625567000000004) (0.012805788500000012) (0.012661070999999996) (0.01266340349999999) (0.012769440999999992) (0.012712643499999995) (0.012855564999999985) (0.01302012100000001) (0.012632548499999993) (0.01283326500000001) (0.013539294999999993) (0.012821258500000016) (0.011857922500000007) (0.011848144500000005) (0.011707904500000005) (0.012043377999999993) (0.012085336000000002) (0.011911764500000005) (0.011948501000000014) (0.011863397499999997) (0.012273233000000008) (0.013230603500000007) (0.012231174499999997) (0.012186044499999993) (0.012334405500000006) (0.012003408499999993) (0.012721578499999997) (0.01244162900000001) (0.012092008500000001) (0.012432958500000021) (0.011853466499999993) (0.01217865600000001) (0.011728246500000011) (0.011948801499999995) (0.011825536999999983) (0.012051455499999988) (0.012674469500000007) (0.011796815500000002) (0.012225555999999999) (0.012163075999999995) (0.01255473800000001) (0.012360408500000003) (0.012414265500000007) (0.012207491500000014) (0.012882719) (0.012621176999999997) (0.012614175500000005) (0.012387627999999998) (0.012441116500000002) (0.01254892249999999) (0.012785744000000002) (0.01262357850000001) (0.013384158500000007) (0.012751447499999999) (0.012706116999999989) (0.012793651999999989) (0.012877179000000002) (0.012604082500000002) (0.01285328899999999) (0.012805706999999986) (0.012560333500000007) (0.012487169999999992) (0.012757857999999997) (0.012762013000000003) (0.012629719000000011) (0.012731768500000004) (0.012845309999999999) (0.012478451000000002) (0.012751239000000011) (0.012811529999999988) (0.01272474550000001) (0.012566309000000025) (0.012560006999999984) (0.012732633999999979) (0.012662519500000025) (0.012860758000000014) (0.01186053799999999) (0.012160162500000016) (0.0121328) (0.01226468) (0.012082288500000024) (0.012343748500000001) (0.011998195000000003) (0.012384159499999992) (0.012074949000000001) (0.012330248000000002) (0.011995260500000007) (0.012321204500000016) (0.012153568000000003) (0.012616520000000006) (0.012343529499999992) (0.012301869000000007) (0.011859117500000002) (0.01208352850000001) (0.012018542499999993) (0.01251419799999999) (0.012308370499999985) (0.012199528500000015) (0.012347747000000006) (0.012024922499999993) (0.012162000000000006) (0.012100712999999985) (0.012615886500000006) (0.012054791999999995) (0.012014716999999994) (0.012048788500000004) (0.012549856999999998) (0.012152662999999994) (0.013345313499999997) (0.013011848999999992) (0.01201556899999999) (0.0130402835) (0.012565496499999995) (0.013119304999999984) (0.012838813500000004) (0.012639412000000017) (0.012723530499999997) (0.012626367000000013) (0.012432498999999986) (0.013031998500000003) (0.012946371000000012) (0.012996508500000004) (0.012710659499999985) (0.012646391999999992) (0.012757225999999969) (0.012112596500000003) (0.012300428000000016) (0.012458043500000002) (0.0121759855) (0.012034387499999993) (0.01221818899999999) (0.012070863500000015) (0.012099192500000008) (0.012941080499999993) (0.012784131500000004) (0.012787831500000013) (0.012710388000000003) (0.012639410000000018) (0.012877075500000001) (0.012805522500000013) (0.012932110500000024) (0.012429620000000002) (0.01232706) (0.012036154000000007) (0.011839488500000009) (0.011897262500000005) (0.01209102899999999) (0.011808510999999994) (0.012190734000000009) (0.012331226) (0.012423928) (0.011928585500000005) (0.012612257500000015) (0.012059736000000001) (0.012623355000000003) (0.012657863499999991) (0.012252788) (0.012018136999999998) (0.012751430999999994) (0.011968842499999993) (0.012212874499999998) (0.012624800500000005) (0.012533491999999993) (0.012450254500000008) (0.011879271999999996) (0.012065339999999994) (0.012155913000000004) (0.011975857500000006) (0.011890814000000013) (0.011833700500000002) (0.012288018000000012) (0.011846939499999987) (0.012234782999999999) (0.012250064000000005) (0.012345436500000015) (0.012502918500000001) (0.012412346500000004) (0.012385000500000007) (0.012596437500000016) (0.01266078050000001) (0.012908088000000012) (0.012581096500000014) (0.012216863999999994) (0.012810653500000005) (0.012288187000000006) (0.012255929999999984) (0.012671861499999992) (0.0121700275) (0.012132388999999993) (0.012436797999999999) (0.012229294500000001) (0.012366644499999996) (0.012643966000000006) (0.012559309500000004) (0.012175267500000003) (0.013134991499999998) (0.012459657500000013) (0.012682289) (0.012452458000000013) (0.012782415999999991) (0.012319867499999998) (0.012485476999999981) (0.012804192000000006) (0.012768174500000007) (0.012616670499999996) (0.012073089499999995) (0.011793955000000009) (0.012596098500000014) (0.01228454150000001) (0.011957423499999995) (0.012141227500000018) (0.012111246500000006) (0.012321268500000024) (0.012261675999999999) (0.011902418999999997) (0.012981918499999995) (0.012300861499999996) (0.012166087999999992) (0.011884619499999999) (0.012144721500000025) (0.012124354500000004) (0.012112126500000014) (0.011843190999999989) (0.012051957000000002) (0.011872979499999992) (0.012166969500000013) (0.011909803999999996) (0.012155449500000012) (0.011932545000000003) (0.011949417000000004) (0.012377359500000004) (0.012279909999999991) (0.0122208335) (0.012557634999999998) (0.01227031499999999) (0.011887277500000001) (0.012116127000000004) (0.012544838500000002) (0.012394203500000006) (0.01257863499999999) (0.012690768000000005) (0.012742983499999999) (0.012583595500000003) (0.012925210000000006) (0.012776146000000002) (0.012876888499999989) (0.013074486499999996) (0.012667563499999993) (0.012769189500000014) (0.012512718999999992) (0.01253712350000001) (0.013167458500000007) (0.01280523950000001) (0.012957524000000012) (0.012570902500000009) (0.012480477500000003) (0.01300438600000002) (0.012613840999999973) (0.01328634699999999) (0.012661499999999978) (0.01292653199999999) (0.012952679500000008) (0.012935025500000016) (0.012812202999999994) (0.01265629800000001) (0.012659978499999988) (0.01290573149999999) (0.012870439999999997) (0.012747182999999981) (0.012192963499999987) (0.012590743500000001) (0.012573417000000003) (0.012342847500000004) (0.012329419999999994) (0.012165883000000002) (0.012323498500000002) (0.012468280999999984) (0.012254397) (0.012380598999999992) (0.012307258000000001) (0.012434243999999997) (0.012348449999999997) (0.012200654000000005) (0.01223228350000001) (0.012314289000000006) (0.012226573000000004) (0.01295267650000001) (0.01256112899999999) (0.012331684499999981) (0.012212690500000012) (0.012432317500000012) (0.0123177265) (0.012503295000000011) (0.012188485999999984) (0.01272132300000002) (0.012462196999999994) (0.012214023000000004) (0.012372774000000003) (0.012287721500000001) (0.0126204865) (0.012312805499999996) (0.012607598000000012) (0.012730090999999999) (0.012708620500000004) (0.012657339000000017) (0.013172772999999999) (0.012602334500000006) (0.013023192500000003) (0.01245608949999999) (0.01312782300000001) (0.013071755000000004) (0.012800905500000015) (0.012891916000000003) (0.012531369500000014) (0.012598408500000005) (0.012669995000000003) (0.012958269500000008) (0.012591164500000002) (0.012527077499999997) (0.012694925999999995) (0.012510588500000003) (0.01270921999999998) (0.012604945500000006) (0.013091056500000003) (0.012478661000000002) (0.012535540499999998) (0.012889985000000007) (0.013053541500000002) (0.012732932500000002) (0.013004399000000014) (0.012811116999999997) (0.013016672500000007) (0.012719743000000006) (0.0122741995) (0.012404434000000006) (0.01236450850000001) (0.012587927999999998) (0.012301188000000005) (0.012166724500000003) (0.01258640400000001) (0.012218342999999993) (0.012427089499999988) (0.012485501499999996) (0.01263267550000001) (0.012464379499999997) (0.012543605499999999) (0.012693385000000001) (0.012432941500000003) (0.012287334999999996) (0.012419146500000006) (0.01223348249999999) (0.012201192) (0.012376745999999994) (0.012718197) (0.012318833500000001) (0.012510461) (0.0125360895) (0.012331263999999995) (0.012958045500000001) (0.012553168999999989) (0.012325264500000002) (0.012712658499999988) (0.012291496499999999) (0.013070469999999987) (0.012487264999999997) (0.012477765000000002) (0.012366648999999993) (0.0125256215) (0.012713163499999985) (0.01251869500000001) (0.012560764500000002) (0.012721288499999997) (0.012631843000000004) (0.012651872500000008) (0.012550620499999998) (0.012594381000000002) (0.01299650699999999) (0.012734160000000008) (0.012482596999999998) (0.012823179000000004) (0.01268234950000001) (0.012629215999999999) (0.012740164999999998) (0.012823095500000006) (0.012770098499999993) (0.012583669000000006) (0.012984586999999992) (0.012577353999999985) (0.012590668500000013) (0.012627885500000005) (0.01281314) (0.012719031499999991) (0.012554754500000001) (0.012536803) (0.013059506499999998) (0.012576478500000002) (0.012682310500000002) (0.012356234999999993) (0.012522052000000006) (0.012228712999999988) (0.012464049500000005) (0.012187863000000007) (0.012281655499999988) (0.012422167499999998) (0.012366337000000005) (0.012233275000000002) (0.012362454000000009) (0.0123382945) (0.01224492399999999) (0.012272066000000012) (0.012205302500000015) (0.012729641500000013) (0.012437123499999994) (0.012059925499999999) (0.012736559499999994) (0.012413298500000003) (0.012324087499999997) (0.012427544499999998) (0.012486621500000003) (0.012465711500000004) (0.012188171999999997) (0.012283034500000012) (0.012382973000000005) (0.012446437500000004) (0.012368856999999997) (0.012460411000000018) (0.012650651000000013) (0.012524068) (0.012601089999999995) (0.01278435600000001) (0.012818718500000006) (0.012690034500000016) (0.012929107999999995) (0.012691280499999999) (0.0127010595) (0.012827302000000013) (0.01249966050000001) (0.012945288) (0.0129492415) (0.012791838) (0.013049431) (0.012983497499999996) (0.013246567) (0.013011618000000003) (0.012816817499999994) (0.0124246925) (0.012824649000000007) (0.012639798000000008) (0.012702577999999992) (0.01258700900000001) (0.012858998499999996) (0.012776646000000003) (0.01262365) (0.01259568400000001) (0.012952908499999985) (0.012748449500000009) (0.01283722000000001) (0.012664159499999994) (0.013002868499999987) (0.012542432999999992) (0.0126168735) (0.012186332000000008) (0.012222779000000003) (0.012356027000000006) (0.012341637000000003) (0.01242725750000001) (0.012494425000000003) (0.01235599150000001) (0.012226279500000006) (0.012555545499999987) (0.012741571500000007) (0.012300125999999995) (0.012589584999999986) (0.012452974500000005) (0.012577973500000006) (0.012370520999999995) (0.012303453500000006) (0.012332356000000017) (0.012198443500000003) (0.012440960000000015) (0.012781853499999996) (0.012411938000000011) (0.012683881500000008) (0.012207123999999986) (0.012486815499999998) (0.012331307000000014) (0.01280402899999998) (0.012470922499999995) (0.012480003500000003) (0.012526428000000006) (0.012361723500000005) (0.012757292500000003) (0.01230234899999999) (0.012621990999999999) (0.012663107000000007) (0.012642381000000008) (0.012644232000000005) (0.01287360650000001) (0.01283562549999999) (0.012901312999999998) (0.012559584500000012) (0.012544517000000005) (0.012647539999999999) (0.01260894500000001) (0.0127816085) (0.012742754500000009) (0.012668017500000003) (0.012850917999999989) (0.012815225) (0.012889091999999991) (0.012598421000000012) (0.012881616999999998) (0.012712962500000008) (0.012921352499999997) (0.012738801499999994) (0.0127720905) (0.01238254300000001) (0.012757268000000002) (0.012950018499999993) (0.01321923550000001) (0.012697258000000003) (0.012779082999999997) (0.012719008500000004) (0.013051291499999992) (0.012697568000000006) (0.012298045000000007) (0.012266116000000007) (0.012553616500000003) (0.012153718000000008) (0.01250615549999999) (0.012357051999999993) (0.012426330499999999) (0.012206180499999997) (0.012698332499999992) (0.01245048600000001) (0.012481946999999993) (0.012540356999999988) (0.01252539250000001) (0.012397811999999994) (0.012599371999999998) (0.012408537999999997) (0.012227395000000002) (0.012065976500000006) (0.012391919500000001) (0.012302754499999999) (0.012167695000000006) (0.012466797500000015) (0.012388310000000013) (0.012541018000000001) (0.01223047649999999) (0.012501959500000007) (0.012756053999999989) (0.0122966075) (0.012481446999999993) (0.012269187) (0.012554591000000004) (0.012520317500000003) (0.013072461499999993) (0.012616079500000002) (0.012759187499999991) (0.012518151000000005) (0.013034321500000001) (0.012764380500000005) (0.012921256500000006) (0.012789050999999996) (0.013009254500000011) (0.012791140500000006) (0.012677449000000007) (0.012524188500000005) (0.012914364000000012) (0.012892255499999991) (0.012971431500000005) (0.012997901499999992) (0.012591666499999987) (0.012545399499999998) (0.01273036050000001) (0.012816716499999992) (0.012618180500000006) (0.013032005999999999) (0.012741730500000006) (0.012809872) (0.012626172000000005) (0.013013190499999994) (0.01254702299999999) (0.012793544500000004) (0.012957086999999992) (0.012841704500000009) (0.012549046499999994) (0.012994641000000001) (0.012464965500000008) (0.012227745999999998) (0.01226741399999999) (0.012416502999999995) (0.012208045) (0.012398928999999989) (0.01241014600000001) (0.012282458499999996) (0.012324395499999988) (0.012413242500000005) (0.012591896499999991) (0.012396137000000002) (0.012242181500000004) (0.012395302999999996) (0.012362833500000003) (0.012502536999999994) (0.012457991000000002) (0.012350582499999999) (0.012364221499999994) (0.01234619499999999) (0.012150982000000018) (0.012403004499999995) (0.0122825035) (0.012405468999999988) (0.012310058499999998) (0.012563658000000005) (0.012418877499999995) (0.012349850999999995) (0.012280858500000005) (0.012582397500000009) (0.012540543500000001) (0.012511689000000006) (0.012915876499999993) (0.01263661499999999) (0.01265960449999999) (0.013409287999999991) (0.012664588000000004) (0.012780867500000001) (0.012570946000000013) (0.012820329000000005) (0.012729301999999998) (0.013004466499999992) (0.012574446000000003) (0.013047733999999991) (0.012477385000000007) (0.012560981999999998) (0.012599925999999997) (0.013050441499999996) (0.012519414000000006) (0.012719418499999996) (0.01256548049999999) (0.0125239885) (0.012627481499999996) (0.012666188499999995) (0.012521582500000017) (0.01278717) (0.012634511000000001) (0.012521524999999992) (0.013119703499999996) (0.012617075500000005) (0.012791541500000003) (0.012466057500000002) (0.012570978499999996) (0.012793326999999993) (0.012507809999999994) (0.012460118499999992) (0.012469292500000007) (0.012171757500000005) (0.012716109000000003) (0.01261309699999999) (0.0123147495) (0.012171302000000009) (0.012340790000000018) (0.012197298499999995) (0.012325692499999999) (0.012371464499999998) (0.012483057999999991) (0.012449391000000004) (0.012338775999999996) (0.012381158499999989) (0.012405929999999996) (0.012347203500000015) (0.012423223999999997) (0.012338672500000009) (0.01226484550000001) (0.012575554500000002) (0.012783203500000007) (0.012211207000000002) (0.012248965000000014) (0.012342899500000004) (0.012583729000000002) (0.012361244499999993) (0.012316558499999991) (0.012410732000000008) (0.012460759000000016) (0.012721325500000005) (0.013058119000000007) (0.012736867500000013) (0.014921578500000018) (0.012862940500000003) (0.0129342145) (0.012679962000000003) (0.012611980499999995) (0.0125916935) (0.012823106499999987) (0.012701394500000004) (0.012683550000000016) (0.01291632949999999) (0.012711010000000009) (0.012648393499999994) (0.012606301) (0.012773142499999987) (0.012854311500000007) (0.01248950750000001) (0.01245706549999999) (0.012500685999999997) (0.012480524500000006) (0.013002353500000008) (0.012827205999999994) (0.012545003499999999) (0.01280685949999999) (0.013228956499999986) (0.012871525500000008) (0.012596639500000006) (0.012614858000000007) (0.012740450999999986) (0.012727544500000007) (0.012623272000000005) (0.012402676500000001) (0.012363481499999995) (0.012725434499999994) (0.012457991500000001) (0.012333878500000006) (0.012462884000000007) (0.012254971000000003) (0.012339641499999998) (0.012827251499999998) (0.012561295) (0.012900897500000008) (0.012620355000000014) (0.012472761499999985) (0.012453847000000004) (0.012629682500000003) (0.012367228999999993) (0.012465583500000002) (0.012325886000000008) (0.012297930499999998) (0.012319375999999993) (0.012355790500000005) (0.012326528000000003) (0.012325727000000009) (0.012245117) (0.012686356999999995) (0.012622458000000003) (0.012697349999999996) (0.012558927499999997) (0.012261355500000001) (0.012605393499999992) (0.012410013499999997) (0.012233514499999987) (0.012726423) (0.012540383000000002) (0.012821651500000003) (0.012709525500000013) (0.012702085500000002) (0.012911406) (0.0124821725) (0.012788183999999994) (0.012904379499999993) (0.01261225449999999) (0.012674089500000013) (0.012637471500000011) (0.012673221500000012) (0.012616872000000001) (0.012899853999999988) (0.012849669000000008) (0.012763002999999995) (0.012980424000000004) (0.012628956999999996) (0.012622218500000004) (0.012662921000000008) (0.012911513500000013) (0.012867819999999988) (0.012593672500000014) (0.012573013499999994) (0.012675992000000011) (0.012579027999999992) (0.012557151000000003) (0.012746464500000013) (0.012764530499999996) (0.012855081500000004) (0.01266137399999999) (0.01233749449999999) (0.012457377500000005) (0.012454340500000008) (0.012194192500000006) (0.012435062999999996) (0.012485640000000006) (0.012512413) (0.01266099599999998) (0.012354382999999997) (0.012649600999999996) (0.012533125499999992) (0.012408577000000018) (0.012342670000000014) (0.012476440500000005) (0.012593222000000001) (0.012569917499999986) (0.012313150000000009) (0.012221045999999985) (0.012200485999999997) (0.012263434500000003) (0.012496010500000002) (0.012571223000000006) (0.012288305499999999) (0.012216030500000002) (0.012432725000000006) (0.012382763000000005) (0.012627367) (0.012446910999999991) (0.012703294500000017) (0.012233935000000001) (0.012454265499999992) (0.012518081) (0.01277353199999999) (0.012551543500000012) (0.012890190999999995) (0.012384812499999995) (0.012849518000000004) (0.012458843499999997) (0.01289929649999999) (0.012792014000000004) (0.012749152) (0.012884270499999989) (0.012752998000000001) (0.012839473500000004) (0.012581005000000006) (0.012581422000000009) (0.012775818500000008) (0.012879729500000006) (0.012764112499999994) (0.012712255500000005) (0.012448264999999986) (0.012709851500000008) (0.012648875500000004) (0.012951237500000004) (0.012816041) (0.012619479499999989) (0.012780125500000003) (0.012499270999999992) (0.012797454499999986) (0.012675901000000017) (0.012978518000000008) (0.012534795500000001) (0.0128586765) (0.01230873049999999) (0.012240796999999998) (0.012681361000000002) (0.012447151500000003) (0.012366007999999998) (0.012425897499999991) (0.012329424500000005) (0.012033323999999998) (0.012238431500000008) (0.0127228125) (0.012453912999999997) (0.012520266000000016) (0.012914147) (0.012545331499999993) (0.01253862900000001) (0.012365137499999998) (0.012353977999999988) (0.012618610000000002) (0.012332455000000006) (0.0121422635) (0.012282034000000011) (0.012276718999999991) (0.012732385999999998) (0.012221567999999988) (0.012547006) (0.012404578499999985) (0.012558926000000012) (0.012316112500000004) (0.012398865999999995) (0.01223870099999999) (0.012677289999999994) (0.012846654500000013) (0.012509344999999991) (0.012633607500000005) (0.012847454999999994) (0.012901613999999992) (0.012595065500000016) (0.012556138000000008) (0.012523392000000008) (0.012905146000000006) (0.012417128000000013) (0.012765872499999997) (0.012723747500000007) (0.01269534750000001) (0.012829512000000001) (0.012566419999999995) (0.012888302500000004) (0.013015158499999999) (0.012684975000000001) (0.012821953999999997) (0.012597383500000003) (0.012591013499999998) (0.012776388500000013) (0.012827438999999996) (0.012997270500000005) (0.012654676000000004) (0.012617478500000001) (0.013088388500000006) (0.01267210299999999) (0.012727219499999998) (0.012715155000000006) (0.01293654150000001) (0.012623908500000003) (0.012828567499999999) (0.012967868499999993) (0.012696189500000024) (0.012551227499999998) (0.01238542899999999) (0.012271877500000014) (0.012306751000000005) (0.012578142) (0.012262589500000004) (0.012290610999999993) (0.012450798999999999) (0.012241265500000001) (0.012354891000000007) (0.012388343499999996) (0.012640568500000005) (0.012112980500000009) (0.012184065999999993) (0.012496865999999995) (0.012432016500000004) (0.0126462445) (0.012210625000000003) (0.012206163999999992) (0.012252475499999999) (0.012394791000000002) (0.012344648499999986) (0.012752800499999994) (0.012304054499999995) (0.012603462499999982) (0.01255046650000001) (0.012397644999999999) (0.012819036999999991) (0.012547560999999999) (0.012706883500000002) (0.012525966499999985) (0.012508810499999995) (0.012605248) (0.012588868000000003) (0.01285399949999999) (0.012548984) (0.01283779900000001) (0.012941714999999993) (0.012642387000000005) (0.013131806999999995) (0.012828965000000012) (0.0126480395) (0.012672165499999999) (0.012589707000000006) (0.012968949000000007) (0.013355073499999995) (0.012487845499999997) (0.012838708500000004) (0.012554965500000015) (0.012806800500000007) (0.01259009500000001) (0.013200813500000005) (0.012838290500000002) (0.012694007499999993) (0.012657585499999999) (0.012584783000000002) (0.012666787499999999) (0.012586260500000016) (0.01270379399999999) (0.013086069499999992) (0.013077196) (0.012677070499999998) (0.012753022999999988) (0.0122007435) (0.012430652999999986) (0.012513625) (0.012578063) (0.012168605999999998) (0.012486260999999998) (0.0125232225) (0.012301028999999991) (0.012698254499999992) (0.012759010500000001) (0.012312731500000007) (0.012443713999999995) (0.01257994450000001) (0.012354539499999984) (0.012502296999999982) (0.012528124000000002) (0.012305933500000005) (0.012328316999999991) (0.012362708) (0.012400567500000015) (0.012302272000000003) (0.012417770499999994) (0.012480408500000012) (0.012777363500000014) (0.012390204000000002) (0.012496889000000011) (0.012629707000000004) (0.012564533999999988) (0.012521142499999999) (0.012483231999999997) (0.012484120500000001) (0.012354776999999997) (0.012159957499999999) (0.012543284500000002) (0.012153790499999997) (0.012486648000000003) (0.012201021500000006) (0.012844590000000017) (0.012479007499999986) (0.012587478000000013) (0.012334043500000003) (0.012435096500000006) (0.012431574) (0.012696931500000008) (0.012297634499999988) (0.012584227999999989) (0.01224870900000001) (0.012360937500000002) (0.012581046999999998) (0.012474223499999992) (0.012514790000000012) (0.012219534500000004) (0.012554644000000004) (0.01253613549999999) (0.012456381999999988) (0.012570099500000001) (0.012568612000000007) (0.012630102500000004) (0.01239000500000001) (0.012516157) (0.012598716999999995) (0.013252068500000005) (0.012391350499999995) (0.012410357999999996) (0.012319620500000003) (0.012426570000000012) (0.012384197500000013) (0.012469475499999993) (0.012551770000000004) (0.012827162500000017) (0.012583505000000009) (0.012392716999999998) (0.01238011) (0.01233521650000001) (0.012510431999999988) (0.012439219000000001) (0.012709810500000016) (0.012692793499999994) (0.012311615000000012) (0.01241996849999999) (0.012124666000000006) (0.012188159500000018) (0.012494829999999998) (0.012206614000000005) (0.012700460499999983) (0.012368405499999999) (0.012304349999999992) (0.012307137999999981) (0.012548931000000013) (0.012617576500000005) (0.01255799199999999) (0.012397200000000011) (0.012448261000000016) (0.012604248499999998) (0.01252025200000001) (0.012288181000000009) (0.01281612750000001) (0.012531555) (0.01254338649999999) (0.012845889999999985) (0.012589691) (0.012583904500000007) (0.012718297500000003) (0.012536603000000007) (0.012770598499999994) (0.013148774499999988) (0.01260512150000001) (0.01262500100000001) (0.012747051500000009) (0.012680252000000003) (0.012685103500000003) (0.012650545499999999) (0.012755559999999999) (0.012602056000000014) (0.012584026000000012) (0.012892665000000011) (0.012758560000000016) (0.012738021500000002) (0.012567962500000002) (0.012728904499999985) (0.012753794999999998) (0.012904050999999986) (0.013179303000000003) (0.012928376500000005) (0.012779909499999992) (0.01268699700000002) (0.012775756999999999) (0.013003540500000008) (0.012238092500000006) (0.012382636000000002) (0.012658289999999989) (0.012486933000000006) (0.012717254999999997) (0.012372031000000006) (0.012240870000000001) (0.012189377500000001) (0.012417414000000002) (0.012660810000000008) (0.012582743000000007) (0.012415721000000005) (0.012351860000000006) (0.012492642999999984) (0.012555934500000004) (0.012443799000000005) (0.012214239000000002) (0.012372123999999998) (0.012432457499999994) (0.012293961999999992) (0.012617293499999988) (0.012067976999999994) (0.012384993999999996) (0.0123115305) (0.012403776000000019) (0.012573781000000006) (0.012378412999999991) (0.012534670999999997) (0.01248713450000001) (0.012424303000000012) (0.012568515999999988) (0.012427039000000015) (0.012613406500000007) (0.012670066000000021) (0.012763181999999998) (0.012572962000000007) (0.012829571999999997) (0.012788748500000002) (0.012886600999999998) (0.0128015145) (0.013170857999999994) (0.012753105) (0.012630419500000004) (0.012569226500000003) (0.012809068999999992) (0.012703290500000006) (0.012578733999999994) (0.012588336500000005) (0.012618499500000005) (0.012706740499999994) (0.012538414500000011) (0.012450098000000007) (0.012567544999999986) (0.01259006650000001) (0.013086204000000004) (0.012814276999999999) (0.0128443575) (0.012863266999999998) (0.012707110999999993) (0.013053508000000005) (0.012992907000000012) (0.012844042999999986) (0.012703620999999998) (0.013004747499999983) (0.012450153000000005) (0.01223399800000001) (0.012758602500000008) (0.012556934499999992) (0.012572564500000008) (0.012549974499999991) (0.012427535500000017) (0.012274439499999998) (0.012412267000000005) (0.012534635000000002) (0.01260675) (0.012296313000000003) (0.012618341500000005) (0.01263399250000001) (0.012329304499999999) (0.012285437499999996) (0.012422246499999984) (0.012744087500000001) (0.0125141545) (0.01267922049999999) (0.01231776150000001) (0.012566933000000002) (0.012179050499999997) (0.012649744500000004) (0.012327851) (0.012436142499999997) (0.0126416575) (0.012553228999999999) (0.012795565000000009) (0.012571665499999995) (0.012453376000000002) (0.012538941000000012) (0.012765544500000003) (0.012418841500000014) (0.012787612000000004) (0.013025672500000002) (0.0127214405) (0.012460565500000007) (0.01285190600000001) (0.012646584500000002) (0.012711379999999994) (0.012648041000000013) (0.012753257500000004) (0.012637803500000003) (0.012789335499999999) (0.01296878550000001) (0.012594026000000008) (0.012704603999999994) (0.012433634999999998) (0.012532851499999997) (0.012771822500000016) (0.012938307499999996) (0.012863723999999993) (0.013107100999999996) (0.012521070999999995) (0.012681227500000003) (0.012655817) (0.012827214000000003) (0.0128735175) (0.013146358499999997) (0.012632531000000016) (0.012667270999999994) (0.012580781) (0.013032384000000008) (0.012425211500000005) (0.012211726500000006) (0.012386738000000008) (0.012177650999999998) (0.012173798) (0.012399175499999998) (0.012408018500000007) (0.012870369000000006) (0.01234420600000001) (0.012544614999999995) (0.012577821000000003) (0.012634136000000018) (0.01286656500000001) (0.012615506000000012) (0.012484749999999989) (0.012255172999999994) (0.012556146000000004) (0.01226252700000001) (0.012593642500000002) (0.012445501499999997) (0.012476319) (0.0126809445) (0.012293079499999984) (0.012701726499999996) (0.01252142349999999) (0.012682798500000009) (0.0129210295) (0.012516587499999995) (0.012460347499999996) (0.012562615499999985) (0.012550683999999993) (0.012308147000000005) (0.012804419000000011) (0.012781735500000002) (0.012889127) (0.012503792) (0.013033226999999994) (0.012599758000000016) (0.0128671105) (0.012846045499999986) (0.013013614000000007) (0.01286340250000001) (0.013140648000000019) (0.012647106000000005) (0.012615463999999993) (0.012811826499999998) (0.012631619499999983) (0.012736238999999996) (0.012683444000000002) (0.01270710550000001) (0.012686694500000012) (0.01306541) (0.01245697350000001) (0.012576718) (0.012712270499999997) (0.013090051500000005) (0.012642181500000002) (0.012736030999999981) (0.012682139500000023) (0.012579268000000018) (0.012649172999999986) (0.01300670449999998) (0.012867242000000001) (0.01261585500000001) (0.012345133499999994) (0.014013740999999996) (0.01220721000000001) (0.012274887499999998) (0.012332944000000012) (0.012573288000000002) (0.012305181999999998) (0.01225058749999998) (0.012400249499999988) (0.012278802999999991) (0.0121855815) (0.012540621500000002) (0.012289907999999988) (0.012444340000000012) (0.012521601500000007) (0.012598958000000007) (0.01235090200000001) (0.012250118500000004) (0.012659934999999997) (0.012175181999999993) (0.0126757225) (0.012237830000000005) (0.012535807499999996) (0.012401127499999998) (0.01219104) (0.012407896500000001) (0.012516084499999997) (0.012380527499999988) (0.012450420500000003) (0.012486002999999996) (0.012495544999999997) (0.012422963499999981) (0.012528077499999998) (0.0127986415) (0.012558186000000013) (0.012645220500000012) (0.01267811399999999) (0.012562563000000013) (0.012718067) (0.012562988499999997) (0.012508339999999993) (0.012643797999999998) (0.012495587000000002) (0.012942423500000008) (0.012425887499999996) (0.013007761500000006) (0.0137285355) (0.012777689499999995) (0.012899141000000003) (0.012847591999999991) (0.012927712499999994) (0.013025237499999995) (0.012628136499999998) (0.012660517499999996) (0.012629678000000005) (0.013501366) (0.012746050000000009) (0.012684764500000001) (0.012582324000000006) (0.01295819849999999) (0.012664386500000013) (0.012805708499999999) (0.01290911850000001) (0.01272785450000001) (0.012430524499999998) (0.012606133000000005) (0.01237298299999999) (0.012360015000000002) (0.012861344999999996) (0.012550038999999999) (0.012276526499999996) (0.012560892000000004) (0.0124855985) (0.012286143999999999) (0.012556947499999999) (0.012383520999999995) (0.013057483499999994) (0.01287782450000001) (0.012410622999999982) (0.012249235999999997) (0.012426372000000005) (0.012225911500000006) (0.012297321000000014) (0.012210048999999987) (0.013001576) (0.012431085000000008) (0.012347154999999999) (0.012412051000000007) (0.012348051499999999) (0.012630204000000006) (0.012371746000000003) (0.012638651) (0.012545576500000002) (0.012445346499999996) (0.012223766999999996) (0.012372968499999998) (0.012755930999999998) (0.012555753000000003) (0.012507987000000012) (0.012526819500000008) (0.012520996999999992) (0.012522164500000002) (0.012688064499999999) (0.012573389500000004) (0.012834175500000003) (0.012549474000000005) (0.012736691000000008) (0.012848142500000007) (0.012740361000000006) (0.012713799999999997) (0.012802804999999987) (0.012774388499999983) (0.0127150325) (0.012696424499999998) (0.012644507999999999) (0.013171499000000003) (0.01273031849999999) (0.012538659999999993) (0.012637527499999995) (0.012739606) (0.012665718999999992) (0.012815207999999995) (0.012721198500000003) (0.012670082999999999) (0.013111086499999994) (0.012733333) (0.012522592999999999) (0.0130623235) (0.012402125) (0.0122851665) (0.012346490500000001) (0.012280706500000002) (0.012467355) (0.012442083000000007) (0.012405254000000004) (0.012159042500000009) (0.012381332000000009) (0.012327197000000012) (0.012454438499999984) (0.012397868500000006) (0.012298490500000009) (0.012468813499999995) (0.012523043000000011) (0.012227928999999998) (0.012576444999999992) (0.012354293499999988) (0.012446556000000011) (0.012448822999999998) (0.012386343999999994) (0.012316223999999987) (0.012304510500000004) (0.012595675) (0.012314624999999996) (0.012356577499999993) (0.012538284499999997) (0.01235758599999999) (0.012533410500000008) (0.012360873499999994) (0.012457160499999995) (0.01253488350000001) (0.012543829500000006) (0.012998675999999987) (0.01291542300000001) (0.012900205499999998) (0.012645909499999997) (0.012715182500000005) (0.012604876999999987) (0.012729657000000005) (0.0126759345) (0.01281383500000001) (0.012739092000000007) (0.012787272000000016) (0.012695261500000013) (0.012739908500000008) (0.012610997499999999) (0.012825465500000008) (0.012602738500000002) (0.012717339499999994) (0.012817249000000017) (0.012545470999999989) (0.0128173595) (0.012661419999999993) (0.012822977999999999) (0.012685054000000001) (0.013032946500000003) (0.013171238000000016) (0.012819622500000002) (0.012882420000000006) (0.012719794000000006) (0.01346140550000001) (0.012670250999999993) (0.012947687499999999) (0.01276120650000001) (0.01242263149999999) (0.012549326999999999) (0.012560464499999993) (0.012608783499999998) (0.012245274) (0.012653925999999996) (0.012524821499999991) (0.012396425000000003) (0.01251823349999999) (0.012413327500000002) (0.012440646999999999) (0.012308290999999999) (0.012394411999999994) (0.012556595000000004) (0.012676649499999998) (0.01227557700000001) (0.012478097499999993) (0.012538391499999996) (0.012578714000000005) (0.012452028000000004) (0.0124429905) (0.012448645499999994) (0.01225808099999999) (0.012237272999999993) (0.012455973999999995) (0.012478395999999989) (0.01244049450000001) (0.012240035499999996) (0.012576705500000007) (0.012462011000000009) (0.012326036999999984) (0.012663965) (0.012629136499999985) (0.012765071999999988) (0.012872456000000004) (0.012780819999999998) (0.012595056000000007) (0.012493576500000006) (0.012531985499999995) (0.012868071999999994) (0.012732129499999995) (0.012866296) (0.013023857) (0.012643216999999998) (0.0127406615) (0.012565462) (0.012685799999999997) (0.012454924000000006) (0.012553450500000021) (0.01259331050000001) (0.012733356000000001) (0.012997337500000011) (0.013027506999999994) (0.012371165999999989) (0.012587386000000006) (0.0128041505) (0.012806396499999997) (0.012807084499999996) (0.012953619999999999) (0.012920763500000002) (0.012897905000000001) (0.012697532499999997) (0.013211721500000023) (0.01238643149999999) (0.012424702499999982) (0.012133781499999996) (0.012214124499999993) (0.012703991499999998) (0.012415394499999996) (0.012334840000000014) (0.012501499999999999) (0.012778670999999991) (0.012368342500000004) (0.012425901000000003) (0.012403768499999995) (0.012358801000000003) (0.012427782999999998) (0.012262744999999992) (0.012683106) (0.012579931500000002) (0.01231454500000001) (0.012884863999999996) (0.012589855999999996) (0.012643138999999998) (0.012595596) (0.012213800999999996) (0.012378456999999995) (0.01253326049999999) (0.012455387499999998) (0.012444777000000004) (0.013209491500000017) (0.012345789499999996) (0.013348324499999994) (0.012863460499999993) (0.012222382000000004) (0.01277628800000001) (0.012729600000000008) (0.012647458) (0.012728440000000008) (0.0126856885) (0.012724349999999995) (0.012435605000000002) (0.012750746500000007) (0.012620102499999994) (0.012992476000000003) (0.012561509000000012) (0.0125568145) (0.012982293000000006) (0.01267487249999999) (0.012807904499999995) (0.013175277000000013) (0.0127148505) (0.0126310595) (0.01256242299999999) (0.012396271499999986) (0.012625378499999992) (0.012888898999999995) (0.012563337499999994) (0.012471013000000003) (0.012956825000000005) (0.013275032500000006) (0.012749877500000006) (0.012605128999999993) (0.012752614999999995) (0.012621327500000001) (0.012856949999999992) (0.012717534499999988) (0.012585412000000004) (0.012264490500000003) (0.012272101000000021) (0.0123833525) (0.012517040500000007) (0.012189817000000006) (0.012847938999999989) (0.012365903999999997) (0.012238134999999983) (0.012321018500000003) (0.01257801700000001) (0.012524143000000001) (0.012561377499999998) (0.012546099500000005) (0.01230489600000001) (0.012350351499999995) (0.012183608000000012) (0.012689582000000005) (0.012810990000000008) (0.012377529999999998) (0.012378558499999998) (0.012562633500000003) (0.01222491199999999) (0.012608188999999992) (0.012576555000000003) (0.0129352425) (0.012446965500000018) (0.012491600999999991) (0.0125702595) (0.012779921) (0.012347303500000004) (0.012477211999999988) (0.012735434000000004) (0.013111975999999997) (0.012588642999999997) (0.012563620999999997) (0.01294563800000001) (0.012728497000000005) (0.012633017999999996) (0.012968139000000004) (0.012933276499999993) (0.0131667335) (0.012865867999999989) (0.013023288000000008) (0.013391865500000003) (0.012769509999999998) (0.01262617299999999) (0.012611903499999993) (0.012840467499999994) (0.01273498499999999) (0.012779879000000008) (0.013204925500000006) (0.012475902999999997) (0.012639331000000004) (0.012810420000000017) (0.012673384999999995) (0.012527443999999985) (0.01263689450000001) (0.012647519499999996) (0.012812522499999993) (0.012933250499999993) (0.012732461499999986) (0.012722320500000009) (0.01284900899999998) (0.012669149500000004) (0.012389881500000005) (0.012199197499999995) (0.012293774500000007) (0.012568489999999988) (0.012439571499999996) (0.012662186499999992) (0.012441002500000006) (0.0127451705) (0.012405599499999989) (0.012513213500000009) (0.012302429000000004) (0.012476332499999992) (0.012473089499999993) (0.012596008000000006) (0.014749404999999993) (0.0124350015) (0.012203690000000003) (0.012593535999999989) (0.012400951000000007) (0.012405917000000002) (0.012771860999999995) (0.01216863949999998) (0.012279822999999995) (0.012273378500000001) (0.012318633999999995) (0.013033653500000006) (0.012475148500000005) (0.012294194499999994) (0.012355237499999991) (0.012475487500000007) (0.012345401000000006) (0.012927906000000017) (0.012610344499999995) (0.012637971999999997) (0.01267634699999999) (0.012780628000000002) (0.012876503500000011) (0.012376238499999997) (0.012645752499999996) (0.012618453500000015) (0.012561647000000009) (0.013007963500000011) (0.0130339825) (0.012583905000000006) (0.012655747999999994) (0.012893504) (0.012865399999999971) (0.013067602000000011) (0.0126490665) (0.01265832950000001) (0.012581182999999996) (0.013055411000000003) (0.012710916000000003) (0.012725273500000009) (0.012722332999999988) (0.012663506000000005) (0.0127514705) (0.012897027500000019) (0.012651020499999999) (0.012898878500000002) (0.01256167050000001) (0.012941418999999996) (0.013117276499999983) (0.012479257000000007) (0.012280112499999996) (0.012543460499999978) (0.012252387000000003) (0.012241578500000003) (0.012392896) (0.012424045999999994) (0.012326407499999997) (0.012741060499999998) (0.012567212500000008) (0.012826974000000005) (0.012549564000000013) (0.012584942500000001) (0.012667991000000003) (0.012502524000000001) (0.012528035000000007) (0.012593331999999999) (0.012480900999999989) (0.01245971999999998) (0.012410592499999984) (0.01254066849999999) (0.012382536999999999) (0.012284279999999995) (0.012281383999999992) (0.012725713) (0.01239525050000001) (0.012551303499999986) (0.01227553449999999) (0.012622931000000004) (0.01238439600000002) (0.012536801999999986) (0.012232168000000002) (0.012369550000000007) (0.012623875499999992) (0.013026337499999999) (0.012729360000000009) (0.012908206500000005) (0.012864604499999988) (0.012764799499999993) (0.012633968500000009) (0.012933257000000004) (0.0129829355) (0.01264501350000001) (0.012737546000000002) (0.012703477500000004) (0.012503254499999977) (0.012958849500000022) (0.012541106499999996) (0.01286262249999999) (0.012531357999999992) (0.012603429999999985) (0.012795066000000008) (0.012617528499999989) (0.012685725999999994) (0.01278811299999999) (0.01281855899999998) (0.01269706800000002) (0.012560974000000003) (0.012724227000000005) (0.012797949500000017) (0.012897010999999986) (0.012818813999999998) (0.01269346099999999) (0.012865818499999987) (0.012229791500000003) (0.012478487499999996) (0.012288680999999996) (0.012307237499999998) (0.012494663500000017) (0.012569273000000006) (0.012667296499999994) (0.012250244000000007) (0.012291516499999988) (0.01268358700000001) (0.012348633499999997) (0.012355550999999992) (0.012440417499999995) (0.012724959499999994) (0.012507434999999997) (0.012552621) (0.013056671999999991) (0.012622616000000003) (0.013126168000000007) (0.012691643499999988) (0.01217206749999998) (0.01255995750000001) (0.012993379999999999) (0.012452969499999994) (0.012479101500000006) (0.0124510855) (0.012798001500000003) (0.012370251499999999) (0.012810254500000007) (0.012351525000000002) (0.01252632649999999) (0.012480157500000005) (0.012413130499999994) (0.012989646000000007) (0.012529185500000012) (0.012622308999999998) (0.012458465500000002) (0.012496635500000006) (0.012565075999999994) (0.012512824500000005) (0.012945819999999997) (0.013121194000000003) (0.012823069500000006) (0.012676620999999985) (0.012948428500000012) (0.013048127500000006) (0.012669330499999992) (0.012469104500000008) (0.012882303000000012) (0.012542819999999996) (0.012600411500000006) (0.012826136500000002) (0.012523193000000002) (0.012411019500000009) (0.012885222000000002) (0.0126590325) (0.012609287999999982) (0.012714758999999992) (0.012541562999999992) (0.012798099499999993) (0.01261601300000001) (0.012843964999999999) (0.012799374000000016) (0.012871657500000022) (0.012560615499999997) (0.012858432499999989) (0.012580827999999988) (0.012394640999999984) (0.012401832000000002) (0.012367518500000008) (0.012356976499999991) (0.012479913499999995) (0.012490274999999995) (0.012332418500000011) (0.012250684999999997) (0.012602809500000006) (0.012419958500000008) (0.012345516000000015) (0.01222325149999999) (0.012548805499999982) (0.012489750000000008) (0.012494041999999997) (0.012269997000000005) (0.012382598500000008) (0.012399824500000003) (0.012408528000000002) (0.01281800050000001) (0.012326405499999998) (0.01256455049999998) (0.012801458000000002) (0.012489599000000004) (0.012658440500000007) (0.01296103350000001) (0.01255374049999998) (0.0124776615) (0.012551105499999993) (0.012808403499999996) (0.01243536549999999) (0.012844115000000003) (0.012664664500000006) (0.012763708499999998) (0.012802680499999997) (0.012837252500000007) (0.012843543999999998) (0.012685403500000011) (0.01296070349999999) (0.012977274499999983) (0.013098716499999982) (0.012753896) (0.012826598500000008) (0.012844525499999995) (0.012430960500000005) (0.012700139) (0.012576391999999992) (0.012981648499999998) (0.012583311500000013) (0.01244182549999999) (0.012937504500000002) (0.012861828000000006) (0.012977905499999998) (0.012803612000000006) (0.012644139999999998) (0.012925397500000005) (0.012901270500000006) (0.012918425000000011) (0.0126399715) (0.013151888500000014) (0.012708491999999988) (0.012680957000000007) (0.012396136500000002) (0.012704815999999994) (0.01254171599999998) (0.012343509500000002) (0.012341192000000015) (0.012419351500000009) (0.012149586500000004) (0.01231304250000001) (0.01239427500000001) (0.012557369499999999) (0.01226655850000001) (0.012867037500000011) (0.012637758999999998) (0.0125897965) (0.012345269999999992) (0.012208329500000017) (0.012478273500000012) (0.012665862499999986) (0.012202779499999997) (0.012594738000000022) (0.01224488) (0.012307184999999998) (0.012372474499999994) (0.012377716499999997) (0.012628281000000005) (0.012344052500000008) (0.012285899000000003) (0.012504113999999983) (0.01271227200000001) (0.012297074000000005) (0.012516792499999999) (0.012594621) (0.01258318700000001) (0.012830818000000008) (0.0125464525) (0.012821960499999993) (0.012766945500000002) (0.013216083000000003) (0.012740845) (0.012735288999999997) (0.012921285000000005) (0.012517623000000005) (0.012801284499999996) (0.01277494500000001) (0.0130222215) (0.012906873) (0.013051908000000001) (0.012913808500000012) (0.012494546499999995) (0.01293725200000001) (0.012772325000000001) (0.012773680999999995) (0.012962502) (0.013042540500000005) (0.012555708499999998) (0.012914337499999998) (0.012938780499999997) (0.012616946000000004) (0.013110480500000007) (0.012869321500000003) (0.012736517000000003) (0.012625441500000001) (0.012737167499999993) (0.012503179499999989) (0.01214801900000001) (0.012493606000000004) (0.012426371500000005) (0.012486754000000003) (0.012347367999999997) (0.012256901000000014) (0.012475828500000008) (0.012364241499999998) (0.012413291999999992) (0.012449421000000002) (0.012517125500000004) (0.012471937000000002) (0.012495551500000007) (0.012555234000000012) (0.012807243499999996) (0.012333077999999997) (0.012653369000000012) (0.012867079500000003) (0.0125167365) (0.012662845000000006) (0.012502107000000012) (0.01264915500000001) (0.012338673000000008) (0.012416978499999995) (0.012448366500000002) (0.013131678000000008) (0.012535749499999999) (0.012893147000000008) (0.012528525499999985) (0.01253436749999999) (0.012824490499999994) (0.012602800999999997) (0.012635661000000006) (0.01269132349999999) (0.012743221999999998) (0.012584166999999993) (0.012724275000000021) (0.012700714000000002) (0.013056823500000009) (0.012985694000000006) (0.012654375999999995) (0.012900062499999976) (0.012682342499999999) (0.013457931999999992) (0.012953098999999996) (0.013067634999999994) (0.0128020685) (0.012962183000000016) (0.012707714999999994) (0.012441925500000006) (0.012722591000000005) (0.012645542999999995) (0.012831780000000001) (0.012876758999999988) (0.012557510000000008) (0.012895109499999988) (0.012781540499999994) (0.012940890000000024) (0.013038381500000001) (0.013445432000000007) (0.013260036500000003) (0.0128250865) (0.012776296499999992) (0.012421657000000003) (0.012264662999999995) (0.01258432150000001) (0.012257517499999995) (0.012770610000000002) (0.012513457999999991) (0.012900619499999988) (0.01236325449999999) (0.012735204500000014) (0.012509085500000003) (0.012353090000000011) (0.012402021) (0.012707698999999989) (0.012568944500000012) (0.012495209000000007) (0.012369589499999986) (0.012254651000000005) (0.0127213615) (0.012905585999999997) (0.012361711999999997) (0.012407411499999993) (0.012280853499999994) (0.01228405099999999) (0.01258941399999998) (0.012495430499999988) (0.012553961000000002) (0.012490684500000002) (0.012197743999999996) (0.012565566000000014) (0.012137686499999994) (0.012476770999999998) (0.012588960000000024) (0.01263129049999999) (0.012525486000000002) (0.01274969300000002) (0.01251315700000001) (0.012463596999999993) (0.0126078845) (0.012826005499999987) (0.01301960299999999) (0.012708965000000003) (0.012628810000000004) (0.012781265999999986) (0.013102801500000011) (0.012741223999999995) (0.012748409000000002) (0.013103175500000008) (0.012905133499999999) (0.012853838000000006) (0.012893808500000006) (0.012883823000000003) (0.012589933499999997) (0.012803458000000004) (0.012662299500000002) (0.01234761899999999) (0.013040940000000015) (0.012732574999999996) (0.012559604000000016) (0.012617235500000018) (0.013050145000000027) (0.012667191000000008) (0.012589862500000007) (0.012876610999999996) (0.012982555500000006) (0.012148620499999999) (0.01227916350000001) (0.012550056500000004) (0.012516211499999999) (0.012689751500000013) (0.012204205999999995) (0.012376882500000005) (0.012357471499999995) (0.012587056) (0.012724443000000002) (0.012367870000000003) (0.012239451499999998) (0.012420279999999992) (0.01235415849999999) (0.012573084500000012) (0.012412291999999991) (0.012449455499999998) (0.012241274499999996) (0.012420564000000009) (0.012279273999999993) (0.012276717999999992) (0.012531599000000004) (0.012520758999999992) (0.013114729999999991) (0.012600320500000012) (0.01256832749999999) (0.012221989000000003) (0.0123402195) (0.012872786000000011) (0.012392888000000005) (0.012352178500000005) (0.012846953000000008) (0.012679429499999992) (0.012837122500000006) (0.012693850499999992) (0.012690896500000007) (0.012638919499999998) (0.012921702499999993) (0.012749785999999999) (0.01297689299999999) (0.012627670000000007) (0.012958606999999997) (0.012781568500000007) (0.012700378500000012) (0.012637798000000006) (0.013303854500000004) (0.012658579999999989) (0.012688662499999975) (0.013288071499999998) (0.013039967999999999) (0.012580208999999995) (0.012670323499999997) (0.012983162500000006) (0.012762729499999986) (0.012782983999999983) (0.012934627500000004) (0.012715528000000004) (0.012830544500000013) (0.012834958000000007) (0.012889033500000008) (0.013175016500000011) (0.013064088000000001) (0.012789167500000018) (0.012648783499999997) (0.012398728500000011) (0.012445303500000005) (0.013118168000000013) (0.012373402000000006) (0.0123602285) (0.012517630000000016) (0.012487156499999999) (0.012627469500000016) (0.012602090499999996) (0.012345924500000008) (0.012335777000000006) (0.012637355500000003) (0.012439489499999998) (0.012823508999999997) (0.012396443499999993) (0.012359297499999977) (0.012450226499999995) (0.012395993499999994) (0.012831557999999993) (0.012480592999999998) (0.01231212999999999) (0.012590864500000007) (0.012615451) (0.01274546750000001) (0.012286841499999993) (0.012387936500000002) (0.01243841000000001) (0.0126969475) (0.012256677000000007) (0.012246823500000004) (0.012495815500000007) (0.012308100500000002) (0.012535816500000005) (0.012720322499999992) (0.012900917499999984) (0.012616711500000002) (0.012603188999999987) (0.012831046499999998) (0.012957612500000007) (0.012600268999999997) (0.012578458) (0.013008603000000007) (0.013089626000000007) (0.013311604500000004) (0.012968629500000009) (0.013027278499999975) (0.012732729499999998) (0.013034746999999985) (0.012722387500000001) (0.012863671500000007) (0.012576769000000002) (0.012854273000000013) (0.012860791499999982) (0.012532134499999986) (0.012777098000000028) (0.012998716500000021) (0.012778158499999984) (0.013056285) (0.012748819500000008) (0.012824203499999992) (0.013235665500000007) (0.012886341000000023) (0.012762714499999994) (0.012898251999999999) (0.012223902500000008) (0.012375030000000009) (0.0124716525) (0.012466769000000003) (0.012529315499999985) (0.012258111000000002) (0.012745398000000005) (0.012551311999999995) (0.012338787000000004) (0.012416011500000004) (0.01244410750000001) (0.012638502999999995) (0.012303052500000008) (0.012541876000000007) (0.01238901349999999) (0.012282798000000011) (0.01221498800000001) (0.012559208000000002) (0.012490819499999986) (0.012580790500000008) (0.012420383999999993) (0.012790597) (0.01244849549999999) (0.012448518000000006) (0.012517308500000018) (0.012638661499999995) (0.01248703650000002) (0.012418417000000001) (0.012546598999999992) (0.012293217000000009) (0.012505913000000007) (0.012496413000000026) (0.012626282500000002) (0.012835118499999992) (0.012589842000000004) (0.012745130499999993) (0.012649105000000008) (0.012791376500000007) (0.012904671499999992) (0.012858114500000004) (0.012752480999999996) (0.012819652500000014) (0.01283537350000001) (0.01267721949999999) (0.012509858499999985) (0.012787025000000007) (0.012861053500000011) (0.012930334499999988) (0.012708717499999994) (0.012664146000000001) (0.01269752099999999) (0.012942565500000017) (0.012597438999999988) (0.013060703500000007) (0.01254353250000001) (0.012544509499999981) (0.01264220349999999) (0.013012408500000017) (0.01264011449999998) (0.012741341000000017) (0.012677703499999998) (0.012830385000000014) (0.012827302999999984) (0.012973491999999975) (0.012101003999999999) (0.012356899500000004) (0.012260526500000007) (0.012356438999999997) (0.01242662600000001) (0.012177890499999997) (0.012189000499999991) (0.012459792999999997) (0.012524763500000008) (0.012338827499999996) (0.012563609999999989) (0.012466193000000014) (0.012323037500000009) (0.012300303999999998) (0.012698188) (0.012340096999999994) (0.012523172499999999) (0.012382680000000007) (0.012383114000000014) (0.012330377000000003) (0.012468045999999997) (0.012395750999999983) (0.012302608000000007) (0.012255929999999998) (0.0128540095) (0.012297437999999994) (0.012500370499999996) (0.012202435999999997) (0.012452933000000013) (0.012428917999999997) (0.012482941000000011) (0.01244032299999999) (0.012715378999999999) (0.01268983650000001) (0.0127085215) (0.012670981499999998) (0.012815992500000012) (0.012692151999999984) (0.01275987599999999) (0.012589484500000012) (0.012999404000000006) (0.012876850499999995) (0.012705908000000002) (0.012644846000000001) (0.012689937499999998) (0.012655804499999992) (0.012900374000000006) (0.012723257999999987) (0.012470264000000009) (0.012721532499999993) (0.012607633999999993) (0.012591792500000004) (0.012660968000000009) (0.012558359500000005) (0.012672590999999997) (0.012648324000000002) (0.012761671500000002) (0.01263562) (0.012849104499999986) (0.012909755000000023) (0.012961437500000006) (0.012994795000000003) (0.012551975500000007) (0.012652334500000001) (0.012176472999999993) (0.012379734000000003) (0.012369654500000007) (0.012130704000000006) (0.012881275499999997) (0.012247367499999995) (0.012186989500000009) (0.012328519999999996) (0.01284188700000001) (0.012304645499999989) (0.012421910999999994) (0.012533655000000005) (0.012468761499999995) (0.012272520500000009) (0.012758723999999985) (0.012395694999999998) (0.012195217000000008) (0.012493915000000008) (0.012327576000000007) (0.012321343999999998) (0.012376097000000003) (0.012435384500000007) (0.012395874000000001) (0.012342638499999989) (0.01264683649999998) (0.01237176999999999) (0.012777788500000012) (0.012508554000000019) (0.012420955500000011) (0.014795695999999997) (0.012768488500000008) (0.012313976000000004) (0.012906357999999993) (0.0133305175) (0.013071699000000006) (0.012764351499999993) (0.012544633) (0.01268055949999998) (0.012763827500000005) (0.012947964999999992) (0.012592569499999998) (0.012801151999999996) (0.0126667065) (0.01279043449999999) (0.012899357500000014) (0.013021065999999998) (0.012632091999999998) (0.012613496000000002) (0.012705255499999998) (0.012528247000000006) (0.012791041500000003) (0.012542195500000006) (0.012774780999999999) (0.012697110999999997) (0.012974213000000012) (0.012691126499999983) (0.01307406500000001) (0.012559515499999993) (0.012566917499999997) (0.012900102999999996) (0.013099283999999989) (0.012534762500000005) (0.01278051849999999) (0.012730138500000016) (0.012540594999999988) (0.012478290000000017) (0.012907013499999995) (0.012226905999999982) (0.012078340499999993) (0.012137731999999998) (0.012171303000000008) (0.01242038999999999) (0.013016116999999994) (0.012467081500000005) (0.012559013500000007) (0.012492397500000016) (0.012396597499999995) (0.012338081000000015) (0.012506826000000013) (0.012512619500000002) (0.012201264000000003) (0.012671399000000014) (0.012403817500000011) (0.0125837855) (0.012162409499999999) (0.012711975) (0.012538748999999988) (0.012480696) (0.012603318000000002) (0.012524589000000003) (0.012371456000000003) (0.012605869500000005) (0.012990400499999999) (0.012454630499999994) (0.012532079500000001) (0.0123247685) (0.012564509000000015) (0.012599998500000001) (0.013221488500000003) (0.012381326499999984) (0.012655600500000003) (0.012713084500000013) (0.013388076999999984) (0.012684474499999987) (0.012944671500000005) (0.0126649925) (0.012808504000000012) (0.012954800500000002) (0.012499246500000005) (0.012723830499999991) (0.012901052999999996) (0.012818843499999996) (0.013208124500000001) (0.012626858500000004) (0.012765360500000003) (0.012699439000000007) (0.012711409999999992) (0.01260522850000001) (0.01301772000000001) (0.012768255999999992) (0.012626123000000003) (0.012607426000000005) (0.01263855400000001) (0.012547738999999988) (0.01250895299999999) (0.013115710500000002) (0.012770028000000017) (0.012754240000000014) (0.012469645499999987) (0.012274520499999997) (0.012444061000000006) (0.012279000500000012) (0.012533405999999997) (0.012344085500000004) (0.012174290500000004) (0.012511201000000013) (0.012634107999999991) (0.012467341000000007) (0.012234591000000003) (0.012644857499999995) (0.01234018549999999) (0.012323024500000015) (0.012248868499999996) (0.012667089500000006) (0.012481690500000003) (0.012411679999999994) (0.012338388500000005) (0.012991497500000004) (0.01229382000000001) (0.01233021899999999) (0.012752029499999998) (0.012475028499999999) (0.012545815499999988) (0.012603473500000004) (0.012313153000000007) (0.012447508999999995) (0.012816530499999992) (0.012554428500000006) (0.012700423500000002) (0.012636864500000011) (0.01298009750000001) (0.012680177999999986) (0.012701092999999983) (0.012496876500000004) (0.01291282149999999) (0.012528023999999999) (0.012753252499999992) (0.012755916499999992) (0.013456583500000008) (0.013288633000000008) (0.013076914999999995) (0.012961362000000004) (0.013339489999999982) (0.01293942549999999) (0.012985592500000018) (0.013134900500000005) (0.012517468500000004) (0.012774720500000003) (0.012672760000000005) (0.012502649000000005) (0.012396419500000005) (0.012394009499999997) (0.012953613500000016) (0.012521689000000003) (0.013139739000000011) (0.012600576000000002) (0.013206732499999999) (0.012697942000000004) (0.012523590000000001) (0.012935081500000015) (0.012666270500000007) (0.012663426999999991) (0.012631152000000007) (0.012297647499999995) (0.01277286250000001) (0.012141582499999984) (0.012499283999999986) (0.012415714000000008) (0.012410751000000012) (0.012499938500000016) (0.012333703500000001) (0.012487373999999996) (0.012638960500000004) (0.012865109) (0.012474398999999997) (0.012464121499999994) (0.012306275500000005) (0.012273151499999996) (0.012387136000000007) (0.012459592000000005) (0.012229291500000017) (0.01245554850000001) (0.012114280000000019) (0.012149368500000007) (0.0124278855) (0.012699519499999992) (0.012595813499999997) (0.012341017499999982) (0.012373634499999994) (0.012389777500000004) (0.012478909499999996) (0.012369534000000001) (0.01222600850000001) (0.012593773500000002) (0.01307857900000002) (0.012643255500000006) (0.013409326500000013) (0.012428966000000014) (0.012576085000000015) (0.012904882000000006) (0.013176371499999992) (0.01248871600000001) (0.012780042500000005) (0.012922361500000007) (0.012515587999999994) (0.012863351999999995) (0.012846416999999999) (0.012620560500000003) (0.012684089999999995) (0.012932851000000009) (0.01265413) (0.012485060500000006) (0.01248824400000001) (0.012438499999999991) (0.01289863749999999) (0.012636380500000002) (0.012567997999999997) (0.012891345000000012) (0.013200051000000004) (0.012773772000000003) (0.012629170999999995) (0.012628659) (0.012801329000000014) (0.013051449999999992) (0.012904707000000001) (0.013096323999999993) (0.012440398000000005) (0.012348487500000005) (0.012471166000000006) (0.012294119000000006) (0.012301829) (0.012347350000000007) (0.012551991000000012) (0.012215670499999998) (0.012658701999999994) (0.012527627999999999) (0.012583068000000003) (0.01247392) (0.012615570999999992) (0.0124626875) (0.012431902499999994) (0.012201254000000009) (0.012287903499999989) (0.012205462) (0.01216349650000001) (0.0123623405) (0.01288060349999999) (0.012447247499999994) (0.012372458000000003) (0.012546946999999989) (0.012376045000000002) (0.012427376500000004) (0.012629585999999984) (0.012393966499999992) (0.012344352999999988) (0.012424719499999987) (0.012614234500000002) (0.01260346200000001) (0.012757903000000001) (0.012511624499999999) (0.012596099499999985) (0.01256250049999999) (0.012989174999999992) (0.012700474499999989) (0.012552282999999984) (0.012757058500000001) (0.012775786499999997) (0.012624271500000006) (0.0126949175) (0.012668785000000002) (0.0126808895) (0.012936090999999997) (0.012998056500000008) (0.012718519999999997) (0.012486711999999997) (0.012481108000000005) (0.012859008500000005) (0.012727550000000018) (0.012882654999999993) (0.012748556999999994) (0.012502963499999992) (0.012843422999999993) (0.012654917499999987) (0.013311147499999995) (0.012664071999999998) (0.012749187499999995) (0.012746433499999987) (0.012960458500000022) (0.012659969499999979) (0.012668816) (0.012491344499999987) (0.012497381499999988) (0.012534997999999992) (0.012318343499999995) (0.012499785999999999) (0.012390072000000002) (0.012308196000000007) (0.012488354000000007) (0.012557476499999998) (0.0122468815) (0.012716051000000006) (0.012259922000000006) (0.012496542499999999) (0.012117043500000022) (0.012585929999999995) (0.01239857200000001) (0.012295276000000008) (0.012353693499999999) (0.012323572500000005) (0.012526865999999998) (0.012575164500000013) (0.012640730500000003) (0.012397857499999998) (0.012192713000000008) (0.0126190625) (0.012358187999999992) (0.012581503499999994) (0.012457052499999996) (0.012366521500000019) (0.012781328499999994) (0.012518120500000007) (0.012642963999999993) (0.012990388500000005) (0.012597903999999993) (0.012646127000000007) (0.012667746499999993) (0.012965180499999993) (0.013105082000000004) (0.012663543) (0.012864732000000004) (0.012814041000000012) (0.012797203499999993) (0.012842457500000001) (0.013194526999999998) (0.012630710000000003) (0.012802122499999999) (0.012538015) (0.012925322499999989) (0.012638646000000003) (0.012584474999999998) (0.01259419249999999) (0.01264178349999999) (0.012816901500000005) (0.012535856999999997) (0.012685015500000008) (0.012875402500000008) (0.012844118500000001) (0.012913403000000004) (0.01281205299999999) (0.012879930999999997) (0.013037603500000008) (0.012514243500000008) (0.012926585500000018) (0.012702895500000005) (0.012614933500000008) (0.012216150000000009) (0.012628382499999993) (0.012640052000000013) (0.012127762) (0.012402570000000002) (0.012586319000000012) (0.012563098500000008) (0.0126198545) (0.012379373999999999) (0.012261279) (0.012375139000000007) (0.012834544000000003) (0.012387798500000005) (0.012488751999999992) (0.012389974999999998) (0.012297164999999999) (0.012304116000000004) (0.012461135000000012) (0.012309770000000012) (0.012205730499999998) (0.012388150499999986) (0.012252837000000003) (0.012328280999999996) (0.012492827999999997) (0.012676576999999994) (0.012280304999999991) (0.012330447999999994) (0.012339431999999997) (0.012332302999999989) (0.012353324999999998) (0.012282478500000013) (0.013024704500000012) (0.012503490999999992) (0.012632290000000018) (0.013181851000000008) (0.0125577875) (0.012478653499999992) (0.0126791225) (0.012935651500000006) (0.012891887500000004) (0.012730490999999997) (0.0126280525) (0.012831350500000005) (0.012829707999999981) (0.0131308225) (0.013044033499999982) (0.012494169) (0.012675687000000005) (0.012614700499999992) (0.012857071499999997) (0.01269232549999999) (0.012843544999999984) (0.013086472000000002) (0.012516882500000007) (0.01272182799999999) (0.012586712499999986) (0.012729190499999987) (0.01277607900000001) (0.012708800999999992) (0.012726664999999998) (0.012890179500000015) (0.01290601949999999) (0.012878987000000008) (0.012424052500000005) (0.012347718000000008) (0.012396099999999993) (0.012549828499999999) (0.012362287) (0.012292652500000001) (0.012691813499999996) (0.012366484000000011) (0.012353031) (0.012735154999999984) (0.012459086500000008) (0.012422584000000014) (0.012338923000000002) (0.012758806000000011) (0.012309143000000008) (0.012535749999999998) (0.012239760000000002) (0.012437200499999995) (0.012224350999999994) (0.012440138000000003) (0.01235459500000001) (0.012386323000000005) (0.01240119399999999) (0.012389050499999985) (0.012295167000000023) (0.012786653500000009) (0.012503623500000005) (0.012621884999999985) (0.0124125115) (0.012327714999999989) (0.012253794499999998) (0.012724060499999995) (0.012638941500000014) (0.012786174499999997) (0.012816229499999998) (0.0126030575) (0.012844093999999986) (0.0126347255) (0.01256330650000001) (0.012735988000000004) (0.012852586500000013) (0.012667375499999994) (0.012805442000000014) (0.012551764499999993) (0.0129396705) (0.01280403849999999) (0.012557777500000006) (0.01271760949999999) (0.012583590000000006) (0.012643004) (0.012715280999999995) (0.01256450349999999) (0.012643794) (0.01293218850000001) (0.012529664499999982) (0.012433642000000009) (0.012974739500000013) (0.01275854550000001) (0.012961011999999994) (0.013007273499999986) (0.012834814000000014) (0.01312223400000001) (0.012790203000000014) (0.012907809499999992) (0.012424336999999994) (0.012346579499999996) (0.018390214500000016) (0.0124327625) (0.01226140299999999) (0.01237332549999999) (0.012393985499999996) (0.012528268999999995) (0.012760296000000004) (0.012292609999999995) (0.012524436500000014) (0.012192406500000003) (0.012736851000000007) (0.012301742500000004) (0.012677684500000008) (0.012370326500000015) (0.012270674499999995) (0.012529888499999989) (0.012153172500000017) (0.012278554499999997) (0.012330049499999995) (0.012510868000000008) (0.012354037999999998) (0.012110547000000013) (0.012364181500000002) (0.012814854499999986) (0.012698743999999998) (0.012285150999999994) (0.012307169500000006) (0.012533799999999998) (0.012240590999999995) (0.012300139000000015) (0.012909061) (0.012621732999999996) (0.012828623000000011) (0.0125015225) (0.012832602499999998) (0.01274691850000001) (0.012726420000000002) (0.012635123500000012) (0.012613093000000006) (0.012794805499999992) (0.012576202500000008) (0.012674856999999998) (0.01300154249999999) (0.012873565500000003) (0.012683999999999987) (0.013073717499999998) (0.012601449) (0.012624282500000014) (0.012735897999999996) (0.012622974999999995) (0.012699977500000001) (0.012744018499999996) (0.012763516500000002) (0.0128426715) (0.012885210999999994) (0.012756085) (0.012741452500000014) (0.01265983250000001) (0.012904601000000016) (0.012944067500000003) (0.012621034000000003) (0.013065001499999992) (0.012330923000000008) (0.0124637675) (0.012579952499999991) (0.012408291500000002) (0.012535193499999986) (0.012388925500000009) (0.012202409000000011) (0.012337330500000007) (0.01272860499999999) (0.012626923999999984) (0.0127018785) (0.01263407300000001) (0.012551151999999996) (0.0124480275) (0.012424407999999998) (0.012381490500000009) (0.012431877000000008) (0.012261080499999993) (0.012421341000000016) (0.012595162499999993) (0.012632482) (0.012523458499999987) (0.012500828000000005) (0.012461046000000003) (0.012677421500000008) (0.012247100499999997) (0.01257126950000001) (0.012560445999999989) (0.012470731999999998) (0.012732023500000009) (0.012540244499999992) (0.012770304499999982) (0.012571632) (0.012533061499999998) (0.012600151000000004) (0.012812513500000011) (0.012498998999999997) (0.012693995499999985) (0.01282088399999999) (0.013042763999999998) (0.012675492499999996) (0.012703059000000003) (0.013299283500000009) (0.01307718799999999) (0.0129784815) (0.012920153500000003) (0.012790635000000009) (0.01311640900000001) (0.012759265000000006) (0.012909311500000006) (0.012637014500000016) (0.012552991000000013) (0.012731105999999992) (0.012457685999999982) (0.012556016499999989) (0.012758816000000006) (0.013152339999999998) (0.013064269999999989) (0.012817151500000012) (0.012664718000000005) (0.012761876500000005) (0.012789829000000016) (0.012771841499999992) (0.012702673999999997) (0.012460601000000016) (0.012297630500000004) (0.012487871499999997) (0.013074402999999998) (0.01237018899999999) (0.012638403500000006) (0.01246579149999999) (0.012433127500000002) (0.01247517749999999) (0.012601516499999993) (0.012353455500000013) (0.012590532000000015) (0.012842415499999996) (0.012753819500000013) (0.01255105649999999) (0.012546516500000007) (0.0125115425) (0.01254385650000002) (0.012591813000000007) (0.012121867499999994) (0.012503233500000002) (0.012427292000000006) (0.012230143999999998) (0.012386126999999997) (0.012560587000000012) (0.012694698000000004) (0.012343869500000007) (0.012663958500000003) (0.012896291000000004) (0.012714877500000013) (0.012619294999999989) (0.012565539) (0.012985197000000004) (0.0127363655) (0.012830018499999998) (0.013029066500000006) (0.012565314500000008) (0.0127507595) (0.013308399499999998) (0.01261528399999999) (0.012777579000000011) (0.01283572299999998) (0.012764562499999993) (0.012533616999999983) (0.012817364499999997) (0.012782840000000004) (0.012838781000000007) (0.012808030999999998) (0.012805014500000017) (0.012797354999999982) (0.012596823000000007) (0.012829213500000006) (0.012754654000000004) (0.012887012500000003) (0.013083681) (0.013040513000000004) (0.012818588000000006) (0.012720427500000006) (0.012679227500000001) (0.012576344000000017) (0.012778886500000003) (0.012596527499999996) (0.012958019499999987) (0.012781097499999991) (0.0126379145) (0.012287050999999993) (0.012152717500000007) (0.012390738499999998) (0.012417544500000002) (0.012287787500000008) (0.012482273000000002) (0.012683890499999989) (0.012337022500000003) (0.012450148499999994) (0.012500576499999985) (0.012355770000000002) (0.012693585499999993) (0.012256285500000005) (0.012610962500000003) (0.0124249045) (0.012049713000000004) (0.012563711000000005) (0.012262022000000011) (0.012344045500000012) (0.012299819500000003) (0.012565255999999997) (0.012344078999999994) (0.012548984) (0.012497861499999999) (0.012406180000000003) (0.012472651500000001) (0.01254496749999999) (0.012458952499999995) (0.012686541999999995) (0.012494604499999992) (0.01266367950000001) (0.012640000999999998) (0.012842930500000002) (0.012522219000000015) (0.012793360500000003) (0.012627146499999992) (0.012863063000000008) (0.012823268999999998) (0.012610841999999997) (0.012947314500000001) (0.012868569999999996) (0.012912072499999996) (0.012834562499999994) (0.012733365499999996) (0.01267732349999999) (0.01259084499999999) (0.012832164999999993) (0.012496189500000005) (0.012716487999999998) (0.013248666499999992) (0.012556860500000003) (0.01291501049999999) (0.012858548499999983) (0.012666963000000003) (0.013102524000000004) (0.01256348899999997) (0.012625636499999995) (0.01281979400000001) (0.012952512499999999) (0.012900543999999986) (0.013000701500000017) (0.012753884000000007) (0.012763995) (0.0122591965) (0.012459010999999992) (0.012389497499999999) (0.012264057000000009) (0.012396652000000008) (0.013094842499999995) (0.012244298) (0.012125418500000013) (0.012366052000000002) (0.012530961500000007) (0.012272121999999996) (0.01240060450000001) (0.012410638000000015) (0.012814397000000019) (0.012548442500000007) (0.0122485705) (0.012430166000000006) (0.012419419000000001) (0.012458363000000014) (0.01231504600000001) (0.012689231499999995) (0.012476948999999987) (0.012398677499999997) (0.012294905999999994) (0.012799083500000003) (0.013016266000000012) (0.012748171000000003) (0.012300310999999994) (0.012220348999999991) (0.012576793000000017) (0.012360700000000002) (0.012336625000000004) (0.012726467500000005) (0.012675044999999996) (0.012548498500000005) (0.012684697500000008) (0.01291785799999999) (0.012755134500000015) (0.012513330000000017) (0.012845065500000002) (0.012695802499999992) (0.012557421999999999) (0.012588427499999985) (0.012677367999999994) (0.012906860500000006) (0.012576661500000016) (0.012789219500000018) (0.012720052000000023) (0.012493941000000008) (0.013084511999999993) (0.012764606999999983) (0.012937661999999989) (0.012665146000000002) (0.012700985499999998) (0.012639973499999999) (0.012756900500000001) (0.01279011800000003) (0.013163326500000017) (0.013002337499999989) (0.012868501500000018) (0.012839104000000004) (0.013207928999999993) (0.013165428000000007) (0.01258632450000001) (0.012514353500000006) (0.012098193499999993) (0.012495875999999989) (0.012188562499999986) (0.012575152500000006) (0.012402739499999982) (0.014522892999999995) (0.012205659000000008) (0.012329953500000004) (0.012782942500000005) (0.0123443845) (0.012598209499999999) (0.012394938000000008) (0.012328048500000008) (0.012248865999999997) (0.012811937999999995) (0.012379143999999995) (0.012507152499999993) (0.01231785299999999) (0.01219239850000002) (0.012264108499999996) (0.012315444000000009) (0.01243638200000001) (0.012556079999999997) (0.012430304500000003) (0.012445068000000004) (0.012295393500000001) (0.012348562500000007) (0.012321370500000012) (0.01247240849999999) (0.012531609499999985) (0.012205028000000007) (0.012683084499999997) (0.012558606) (0.012780916999999989) (0.012627621000000006) (0.012731526999999992) (0.012557433499999993) (0.0127747015) (0.012899498499999995) (0.012611543500000003) (0.012606237499999992) (0.012530799999999995) (0.012686393500000004) (0.012747120000000015) (0.013068519000000015) (0.012540929999999992) (0.0125701555) (0.012772136000000003) (0.012654614999999994) (0.01249487099999999) (0.012515894000000014) (0.012709400999999995) (0.012776787000000012) (0.01268292650000001) (0.012749641500000006) (0.012664525499999996) (0.012612139999999994) (0.012689911500000012) (0.013194725000000004) (0.012661724499999999) (0.012513783000000014) (0.012655067499999992) (0.012800646500000026) (0.01246783) (0.012261010500000002) (0.012272514999999998) (0.012204161500000005) (0.012441502999999993) (0.012216913499999996) (0.012637954500000007) (0.012501432499999993) (0.012577858000000011) (0.012313934499999984) (0.01266938699999999) (0.01319375400000003) (0.012664208999999996) (0.012449871500000001) (0.012917603000000014) (0.012576985499999999) (0.012296455499999998) (0.01263188350000001) (0.01259622399999999) (0.012739482499999996) (0.012367234000000005) (0.012551639500000003) (0.012476746499999983) (0.012280256500000003) (0.0126090185) (0.012669333500000018) (0.012478148500000008) (0.012389042499999989) (0.012699809500000006) (0.012450825499999998) (0.012910162500000016) (0.012581782499999986) (0.012706152499999998) (0.012757234499999992) (0.012654446) (0.013105649499999997) (0.012740541499999994) (0.012528934500000005) (0.013414106500000009) (0.013010995999999997) (0.012973038000000006) (0.013069688999999995) (0.013114048999999989) (0.012594950000000008) (0.012765195500000007) (0.012643047000000018) (0.012606779499999998) (0.012825218999999999) (0.012634754999999998) (0.012474577000000014) (0.012650132999999994) (0.01253476449999999) (0.012929626) (0.012526100499999998) (0.012722760000000014) (0.012626838999999987) (0.012836282500000004) (0.013218423999999993) (0.012854072500000008) (0.01291432499999999) (0.012906423499999986) (0.012823910000000008) (0.013113960999999993) (0.012569585999999994) (0.012421690499999999) (0.012307181) (0.012429520000000013) (0.012244179500000008) (0.012715558500000002) (0.012474346499999997) (0.012271269000000015) (0.012253863000000004) (0.012413255499999998) (0.012501869499999999) (0.012654520999999988) (0.012612642499999993) (0.012493474000000004) (0.012205056500000006) (0.012551489999999998) (0.012499587500000006) (0.012299427499999988) (0.012348121000000004) (0.012518471999999989) (0.012473105499999998) (0.012290814999999997) (0.01230211199999999) (0.012365092500000008) (0.012410844000000004) (0.012257061) (0.012383092999999998) (0.012528705000000015) (0.012264564999999991) (0.012502474499999985) (0.012382340500000005) (0.012392033999999996) (0.012497760999999996) (0.012632090499999998) (0.012652319000000009) (0.012592508500000002) (0.01254559999999999) (0.012872661000000007) (0.012328699499999998) (0.012576293500000002) (0.012548077000000005) (0.012628674999999992) (0.012857608500000006) (0.012791618500000004) (0.012813853) (0.012932489500000005) (0.012644193000000012) (0.012441103000000009) (0.012902472999999998) (0.012856224499999985) (0.01295581500000001) (0.012694171500000004) (0.012982718500000004) (0.013564527000000007) (0.01268850299999999) (0.012664386) (0.012915038500000003) (0.012714977500000002) (0.012865878500000011) (0.012679269500000007) (0.012567208999999996) (0.012689628000000008) (0.013033370000000002) (0.01276989299999999) (0.012773741500000005) (0.012302932499999988) (0.012183562000000009) (0.012399338999999995) (0.012171821499999999) (0.012379216499999998) (0.012217904000000016) (0.012440833500000012) (0.012284532) (0.012330263499999994) (0.012560358999999993) (0.012315511000000001) (0.012610389) (0.012534194000000012) (0.012483228999999998) (0.012321355000000006) (0.012361573999999986) (0.012419031000000011) (0.012287757999999996) (0.012275316999999994) (0.01240230299999999) (0.012691109000000006) (0.012563775999999999) (0.012444574) (0.012325361000000007) (0.012571859000000005) (0.012665500499999996) (0.012222425999999995) (0.012297385500000008) (0.012443460000000003) (0.012501199000000005) (0.012494493500000009) (0.0123309915) (0.01293965200000001) (0.012597901499999994) (0.012631235000000005) (0.012484506500000006) (0.012711195499999994) (0.012564642) (0.012902350500000007) (0.012617790000000004) (0.0126722175) (0.012912483000000002) (0.012929910000000003) (0.012686371000000002) (0.012843417499999996) (0.012676923000000007) (0.012550953500000003) (0.012704293999999991) (0.012578129500000007) (0.012619832000000011) (0.0129127765) (0.012840381999999997) (0.012903531999999995) (0.012598684500000012) (0.012729787999999992) (0.01244583249999999) (0.012556430499999993) (0.012762133999999994) (0.012609212500000008) (0.012725121999999991) (0.012886274500000003) (0.012739064499999994) (0.012704401499999976) (0.012834503499999997) (0.012385332499999999) (0.012320524499999985) (0.012388692999999992) (0.012493792000000004) (0.01251380199999999) (0.012264176000000002) (0.012290475499999995) (0.013155824499999996) (0.012214776500000024) (0.012368726499999996) (0.012697909500000007) (0.012582306500000001) (0.012789338499999997) (0.012465955999999986) (0.012296842500000002) (0.01253796) (0.012375039000000004) (0.012146632500000018) (0.012339413999999993) (0.012456844499999994) (0.012528584999999995) (0.012288842999999994) (0.012380442499999991) (0.012300929499999988) (0.012381926500000001) (0.01238293800000001) (0.01232016200000001) (0.012554247500000004) (0.012606200999999997) (0.012386190000000005) (0.012630761500000004) (0.0124306275) (0.012629771999999997) (0.012450046000000006) (0.012671595500000007) (0.012574981500000013) (0.012603535499999999) (0.012562561) (0.012736656999999998) (0.012681640500000008) (0.012392375000000011) (0.012557176000000003) (0.012773327000000001) (0.012769818500000016) (0.012735057500000022) (0.012773536999999988) (0.012650144000000002) (0.012580591000000002) (0.012579104000000008) (0.012575061499999998) (0.012793183999999985) (0.012580979500000006) (0.012569498999999998) (0.012770344500000003) (0.012703879000000001) (0.012744567499999998) (0.012713129000000004) (0.01263351850000001) (0.012836385000000006) (0.012916444999999999) (0.012830467999999984) (0.01297192300000001) (0.012837626500000004) (0.01285531199999998) (0.012407288000000002) (0.012313919499999992) (0.012463668499999997) (0.012254028500000014) (0.012558905000000009) (0.012300072500000009) (0.01234698749999999) (0.012420481499999997) (0.012499042500000002) (0.012498859000000001) (0.012685884500000008) (0.012462703000000006) (0.012361223000000005) (0.01259038350000001) (0.012624918999999998) (0.012420371) (0.012190118) (0.01267631050000001) (0.012185985999999996) (0.01253331249999999) (0.012317812000000011) (0.012366797499999999) (0.012256441000000007) (0.012487525999999999) (0.012356436499999998) (0.012468430999999988) (0.012728030499999987) (0.012531177500000004) (0.012353012499999996) (0.012639622999999989) (0.012527393499999998) (0.012420264500000014) (0.012568501499999996) (0.012690263500000007) (0.012723423999999983) (0.0126305855) (0.012680246499999992) (0.012985698500000004) (0.012767037999999994) (0.012637768500000007) (0.01258619350000001) (0.012917852499999993) (0.012483416999999997) (0.012811677500000007) (0.012661173499999998) (0.01280539) (0.013072421000000015) (0.012575528000000002) (0.012892308500000005) (0.012626195000000007) (0.012482609500000005) (0.012758759000000008) (0.012813006999999987) (0.01312413400000001) (0.012877189000000011) (0.01271330000000001) (0.012668093000000005) (0.012727068000000008) (0.012692219500000004) (0.012809593000000008) (0.012932108499999997) (0.012708577500000012) (0.012878143000000009) (0.013019158499999989) (0.012185840999999989) (0.012481783999999996) (0.01217865700000001) (0.012148279000000012) (0.012241258000000005) (0.012377005999999996) (0.012420945000000003) (0.012256447500000003) (0.012461563999999994) (0.012293329000000006) (0.01290793300000001) (0.012360998999999998) (0.012660168999999999) (0.012388351999999991) (0.012425556000000004) (0.012350542999999992) (0.012283500500000016) (0.012483652500000011) (0.012132551500000005) (0.012510022499999982) (0.012682047000000002) (0.0123945835) (0.012406014999999992) (0.0120938285) (0.012831884500000001) (0.012413215499999991) (0.012497350000000004) (0.012636829500000002) (0.012522645499999999) (0.012277592000000004) (0.012328177999999995) (0.012246569499999999) (0.0126652015) (0.012761832) (0.012630453000000014) (0.012521930499999986) (0.012872361999999998) (0.014054383000000018) (0.01273640600000002) (0.012934084499999998) (0.012718044499999998) (0.012380703999999992) (0.013547107000000003) (0.01282494200000002) (0.012880478) (0.012642844) (0.01319685050000001) (0.012796614499999998) (0.012604386000000009) (0.012849817) (0.01261504250000002) (0.012956663999999993) (0.012723448499999998) (0.012927795000000006) (0.01289895299999999) (0.012698359000000006) (0.012948194499999982) (0.012787972499999994) (0.012578830000000013) (0.012567303500000002) (0.012684993499999991) (0.012794130000000015) (0.012820111500000009) (0.012701255500000008) (0.01220322900000001) (0.0124004115) (0.012252204999999988) (0.012655554500000013) (0.012227303000000009) (0.01225261200000001) (0.012494143500000013) (0.012569490000000003) (0.01263694450000001) (0.012429628500000012) (0.012818621500000016) (0.012369739000000018) (0.0128376095) (0.012333539500000004) (0.012529996000000002) (0.012642035499999996) (0.012422812500000005) (0.012766646499999992) (0.012893641499999997) (0.012480794000000017) (0.012539230500000012) (0.012492294000000015) (0.01219808650000001) (0.01227941199999999) (0.012436783999999992) (0.012533402999999985) (0.01247503400000001) (0.012500635999999996) (0.012294272999999994) (0.012639718000000022) (0.012684519999999977) (0.012298205000000006) (0.012878299499999996) (0.012620522500000009) (0.012932220499999994) (0.013030449999999985) (0.012924821500000017) (0.012506286499999991) (0.012655317999999999) (0.012619620499999984) (0.012794756500000004) (0.012808769500000011) (0.012706110500000006) (0.01273480099999999) (0.012958879499999992) (0.012565857000000014) (0.012653515500000004) (0.012757383999999983) (0.012570245499999994) (0.012861188499999995) (0.013234633499999995) (0.012489856999999993) (0.0127215215) (0.012476890000000004) (0.01282526299999999) (0.01279419000000001) (0.012647763500000006) (0.012898096999999997) (0.012629598500000006) (0.012575076500000004) (0.01894743800000001) (0.01272246299999999) (0.012610820499999995) (0.012662159999999992) (0.012353044000000007) (0.01233044500000001) (0.012348044500000002) (0.012266124000000003) (0.01240964) (0.012289912) (0.012306251000000018) (0.012327944499999993) (0.012398408999999999) (0.012371434) (0.013039935000000002) (0.012533351999999984) (0.01261419300000001) (0.012410579500000005) (0.012483556499999993) (0.012445552499999998) (0.012287386499999997) (0.012286179499999994) (0.012525584000000006) (0.01226139250000001) (0.012371811499999996) (0.012440949500000006) (0.012312799999999999) (0.012351732500000004) (0.012290506499999992) (0.012404189499999982) (0.012419120999999991) (0.01249119700000001) (0.012649757500000011) (0.012824381999999995) (0.0124781105) (0.012702191000000002) (0.0125234605) (0.013046984000000011) (0.012883174999999997) (0.012656344) (0.012571514999999991) (0.012980642) (0.01254857799999999) (0.012624913000000001) (0.01297421600000001) (0.012817951000000008) (0.012805512000000005) (0.012987769999999996) (0.012866229999999992) (0.012716244000000015) (0.01314277450000001) (0.012885414499999998) (0.012843605499999994) (0.012540706999999998) (0.012687942000000008) (0.012652790000000011) (0.012774119000000014) (0.012588886000000007) (0.012807451999999983) (0.012892828499999995) (0.012889276500000019) (0.013026793999999994) (0.013192739999999994) (0.0127360995) (0.013047766500000002) (0.012777417999999971) (0.01277924499999998) (0.012969731499999984) (0.012378053500000014) (0.012122325500000003) (0.012319052999999983) (0.012344530000000006) (0.012337061999999996) (0.012587560999999997) (0.012587217000000012) (0.01237239300000001) (0.012420153999999989) (0.012487811500000001) (0.012484336999999984) (0.012380246499999983) (0.01270305649999999) (0.01267255249999999) (0.012756734499999992) (0.012297196999999996) (0.012397032000000002) (0.012213700999999993) (0.0122803135) (0.012188397000000004) (0.012845533499999992) (0.012144844499999988) (0.012458882500000018) (0.012182002499999997) (0.012702253999999996) (0.012478333500000008) (0.012307145000000005) (0.01235916250000002) (0.01248081450000002) (0.012537956000000003) (0.012459982999999994) (0.012414935000000016) (0.01251253899999999) (0.012499386500000001) (0.012706922499999995) (0.01272806500000001) (0.012810390500000018) (0.012519443000000005) (0.012676852499999988) (0.012935996499999991) (0.012791430499999978) (0.01270487250000002) (0.012774271000000031) (0.012612391499999986) (0.012850458499999995) (0.012708540500000018) (0.01293659250000001) (0.013047769999999986) (0.012563439999999995) (0.012591778499999998) (0.012791998499999999) (0.012544914000000004) (0.012871447500000022) (0.012590079000000018) (0.012510404500000002) (0.012788702000000013) (0.012853247499999984) (0.012782939500000007) (0.012865846) (0.012678223500000002) (0.012654616000000007) (0.012685735999999989) (0.01254092250000001) (0.012840363000000007) (0.0121483815) (0.012186777999999995) (0.012467889999999995) (0.012214900499999987) (0.012166444499999998) (0.012377841999999986) (0.012383541500000012) (0.012768920499999989) (0.012456643500000003) (0.012608752) (0.012339469500000005) (0.012589327999999997) (0.012297181000000004) (0.01226824750000001) (0.012563657000000006) (0.012642654000000003) (0.012585262000000014) (0.012266960499999993) (0.012685748999999996) (0.012706665500000006) (0.012559019500000004) (0.012443922999999996) (0.012363861500000004) (0.012420072000000004) (0.012696649500000004) (0.012318831500000002) (0.012573836000000005) (0.012329461) (0.012523276499999986) (0.0124187875) (0.0129560715) (0.012695545999999988) (0.012598592000000006) (0.012840215000000002) (0.012662463500000012) (0.012580630499999995) (0.013471164499999994) (0.012343643999999987) (0.012727157000000003) (0.012657905999999997) (0.012820232) (0.012754273999999996) (0.012724871000000026) (0.012703031499999975) (0.012753255000000005) (0.01282881050000001) (0.012641783000000004) (0.01257799050000001) (0.012386582000000007) (0.012871351499999989) (0.012549732500000008) (0.012793669000000008) (0.0126665725) (0.0126316405) (0.012787183999999993) (0.01332235000000001) (0.012864590000000009) (0.012848837000000002) (0.012720779500000015) (0.012909309500000007) (0.01281702600000001) (0.012734171500000002) (0.01278438400000001) (0.012877080499999985) (0.012466298999999986) (0.012598060500000008) (0.01232063650000001) (0.012205113500000003) (0.012169980499999997) (0.012205190500000004) (0.012144012499999995) (0.012204338500000009) (0.012473190500000023) (0.012430016500000002) (0.012295223500000008) (0.01243749999999999) (0.012527138500000007) (0.012460291499999998) (0.012955412499999985) (0.012425128500000007) (0.012380249999999995) (0.012417524) (0.012713751500000009) (0.012187280999999994) (0.012338111499999985) (0.012351645500000008) (0.0124712815) (0.013516311000000003) (0.012606554500000006) (0.012339183000000004) (0.01269705950000001) (0.012625940499999988) (0.012626738499999998) (0.012959198000000005) (0.012359071499999985) (0.012446076499999986) (0.012723469000000001) (0.012792448999999997) (0.012567237499999995) (0.012670742499999998) (0.012827822499999988) (0.012821303000000006) (0.012867503500000016) (0.012526138500000006) (0.012720988999999988) (0.012787943999999996) (0.0129608955) (0.012909771499999986) (0.013058994499999976) (0.01283358100000001) (0.012632629999999992) (0.012746835499999984) (0.012882859999999996) (0.012518890000000005) (0.012714298000000013) (0.012774697499999987) (0.012718902500000004) (0.012781460500000008) (0.012664708499999996) (0.012627362999999989) (0.012662734999999994) (0.012873903500000006) (0.012782033999999984) (0.013027814499999998) (0.012624569999999974) (0.013078273000000001) (0.012908158000000017) (0.012647554999999991) (0.012462477) (0.01234934) (0.012837437999999993) (0.012480039999999998) (0.012485015500000002) (0.012228909999999996) (0.01231807700000001) (0.012550157500000006) (0.012969063000000003) (0.012329104000000007) (0.01233622400000002) (0.012246331999999999) (0.012945776499999992) (0.0132083645) (0.012865967500000006) (0.012684437000000007) (0.012680916) (0.013170336000000005) (0.012201158500000003) (0.01226786349999999) (0.012358751000000001) (0.012741787000000004) (0.012227140999999997) (0.012483574000000011) (0.012892146499999993) (0.012443735999999997) (0.012613408500000006) (0.012383535000000029) (0.012615628000000004) (0.012514883000000004) (0.012364323999999996) (0.01250995399999999) (0.012976837500000005) (0.01248450949999999) (0.012520999000000005) (0.012942438) (0.012645537000000012) (0.012885165500000004) (0.012987327000000007) (0.012564644500000013) (0.012897158999999991) (0.01255568650000001) (0.012761316000000009) (0.012857579000000008) (0.012913643500000002) (0.012895186500000003) (0.012763428999999993) (0.012563978000000003) (0.012768513500000009) (0.012577253499999982) (0.012902070000000002) (0.012534735000000005) (0.012603245499999985) (0.013347950499999983) (0.012594224000000001) (0.012754236999999988) (0.01318528799999999) (0.012809380999999995) (0.012703265500000005) (0.01295524200000002) (0.012936749499999997) (0.012780162500000025) (0.012725901999999997) (0.012872522500000011) (0.012746876000000004) (0.012258458) (0.012382431999999985) (0.012179705999999985) (0.01231581200000001) (0.01241428700000001) (0.012477795) (0.012441146) (0.012624214500000008) (0.012860130499999997) (0.012366048500000004) (0.01253862650000001) (0.012494218000000015) (0.01250589299999999) (0.012351115499999996) (0.012615498000000017) (0.012502126499999988) (0.012466884499999997) (0.012470470999999997) (0.012287474499999992) (0.012541280000000016) (0.012388831999999989) (0.012496894499999994) (0.012533247499999997) (0.012354977000000003) (0.012279820499999997) (0.012354581500000017) (0.012450316500000003) (0.012248217499999992) (0.012419783000000004) (0.01320155050000002) (0.012443248499999976) (0.012770359000000009) (0.012639589500000006) (0.012715758999999993) (0.012701058000000001) (0.013297315000000004) (0.013173527000000004) (0.012679719000000006) (0.012844739500000021) (0.012604044000000009) (0.012662552499999993) (0.012503479000000012) (0.012909159000000003) (0.013057689000000011) (0.012765712499999998) (0.012618564499999985) (0.012776755000000015) (0.01258459549999999) (0.01253591300000001) (0.013093912999999999) (0.012597203000000001) (0.01263972749999999) (0.012713180000000004) (0.01262684750000001) (0.012760939499999999) (0.012871153999999996) (0.013068311499999999) (0.013475492500000005) (0.013023140000000002) (0.012563099000000008) (0.012997707499999997) (0.012581670499999989) (0.012798221999999984) (0.012327795000000003) (0.012277180499999998) (0.012377132999999998) (0.012448042999999992) (0.012365943500000004) (0.013103297) (0.012390614500000008) (0.0122966365) (0.01211657649999999) (0.012385292499999992) (0.012509114500000001) (0.012261434500000001) (0.012409877500000013) (0.012421719499999984) (0.012347933000000005) (0.012862473999999999) (0.012328600500000009) (0.012236222000000019) (0.01222351250000002) (0.012869217500000002) (0.012250009000000006) (0.012497349000000019) (0.012228974500000003) (0.01226545250000001) (0.012504021500000004) (0.012868996500000021) (0.012670870000000015) (0.01244952449999999) (0.012378484000000009) (0.012480106500000004) (0.012385406500000001) (0.012350002000000013) (0.0128048635) (0.012696180999999987) (0.012993560999999987) (0.01260502899999999) (0.012603900500000001) (0.01287266400000002) (0.012807792500000012) (0.012676713000000006) (0.012633219000000001) (0.012540198000000002) (0.012849602500000001) (0.012544347500000011) (0.012895705000000007) (0.012645609000000016) (0.012612269499999995) (0.012547490499999994) (0.012974444499999988) (0.01263130350000001) (0.013255284499999978) (0.01271048399999998) (0.012760261500000009) (0.012600224000000007) (0.01266382499999999) (0.01268917600000001) (0.012664549999999997) (0.012908425999999973) (0.013184351499999983) (0.012935962500000009) (0.012673080999999989) (0.012709880000000007) (0.012817486500000003) (0.01262547850000001) (0.012570820499999996) (0.012399307999999998) (0.012530266000000012) (0.012831386) (0.012569161999999995) (0.012220954499999992) (0.012209688999999996) (0.012527432000000005) (0.012469964499999986) (0.012907991999999993) (0.0124237195) (0.012368035000000013) (0.013787859499999985) (0.012354390000000007) (0.012745228499999997) (0.012583655000000027) (0.012247858) (0.012403146000000004) (0.012413548999999996) (0.012682710500000013) (0.012259648999999984) (0.012206096999999999) (0.012598526999999984) (0.01257057899999997) (0.01220916649999998) (0.012366381499999982) (0.012460070500000017) (0.012940280500000012) (0.012692670000000003) (0.012653024999999998) (0.012455488) (0.012447308500000004) (0.012895466000000008) (0.012649577000000009) (0.012557045999999988) (0.012871085000000018) (0.012460000999999998) (0.013361507499999994) (0.01260605599999999) (0.012441667000000003) (0.012558183000000014) (0.012479578499999991) (0.012884854500000029) (0.012954399000000005) (0.012643415000000005) (0.012590057999999987) (0.012702258500000022) (0.012570885500000017) (0.012536843499999992) (0.012866816500000017) (0.012546446000000017) (0.012706216000000006) (0.012558954999999997) (0.012867566499999983) (0.012817297499999991) (0.012911658000000006) (0.012856203499999996) (0.01317218199999999) (0.01294414699999999) (0.012581547500000026) (0.012685417500000004) (0.013357928500000005) (0.012763352000000006) (0.012618043500000009) (0.012405595500000005) (0.012278695500000006) (0.01262999799999999) (0.01229886849999999) (0.01270362650000001) (0.012469347000000006) (0.012489685500000014) (0.012341046500000008) (0.012977517000000008) (0.012684489000000007) (0.012512282499999985) (0.01261098599999999) (0.01234155549999999) (0.012854689499999988) (0.012390336000000002) (0.012625461999999976) (0.012231411999999983) (0.012120550000000008) (0.012196717499999996) (0.012464173499999995) (0.012377293500000011) (0.012681980499999995) (0.012409424500000002) (0.012397842999999992) (0.012324087999999997) (0.012547696999999997) (0.012354821000000002) (0.012526814499999997) (0.012507374000000002) (0.012307851500000008) (0.012471537500000018) (0.012621169000000002) (0.012486682499999999) (0.013017508999999997) (0.012646773) (0.012836733000000017) (0.0128245825) (0.01270996499999999) (0.012561170499999982) (0.012761793999999993) (0.012790445999999997) (0.012712954500000012) (0.012760414000000012) (0.012869260000000021) (0.012593572500000011) (0.012655367) (0.012670773499999996) (0.012533516500000008) (0.013014615499999993) (0.012456417999999997) (0.01287419849999999) (0.012705922000000008) (0.012429244499999992) (0.012651626499999985) (0.012716892500000007) (0.012683974499999986) (0.012840240500000016) (0.01284128900000002) (0.012814852500000001) (0.012769910500000023) (0.012722464500000003) (0.0126809155) (0.012723481499999995) (0.012952942500000009) (0.012679528999999995) (0.012494929000000002) (0.012616040500000009) (0.01258079799999999) (0.012362330000000005) (0.012366220499999997) (0.012205107999999992) (0.012110064500000003) (0.012347289499999983) (0.01238956649999999) (0.012406534499999983) (0.012760613000000032) (0.012225636999999984) (0.012236681999999999) (0.01271573949999999) (0.01281125349999998) (0.012301899500000005) (0.012491177000000006) (0.012678077499999996) (0.012758575000000008) (0.012354179999999992) (0.01225498600000001) (0.012962219499999983) (0.012364176000000004) (0.012542110500000009) (0.012358379000000003) (0.012321652000000002) (0.012698892500000017) (0.01227843150000002) (0.012392845) (0.012565398499999991) (0.012461479999999997) (0.012713857499999995) (0.012667159499999997) (0.012733957500000004) (0.013068872500000023) (0.012896564499999999) (0.012681826500000007) (0.012964687000000003) (0.01282868500000002) (0.013251547499999988) (0.012775963499999973) (0.012651194000000018) (0.0127707705) (0.012719130000000023) (0.012749742999999994) (0.012580551999999995) (0.012904499000000014) (0.012642579500000015) (0.012766262500000014) (0.012629603499999975) (0.013072484500000009) (0.012531439500000005) (0.012666871500000024) (0.012895967500000008) (0.012665793999999994) (0.013123675000000001) (0.0127539515) (0.012878570999999991) (0.012693304000000002) (0.012903357000000032) (0.012644239500000001) (0.012804068000000016) (0.01267246100000001) (0.009297405500000008) (0.009466851000000012) (0.009426826000000013) (0.009456365499999994) (0.009205355499999998) (0.009680652500000012) (0.009377246999999991) (0.009478540000000008) (0.009343236500000004) (0.009495646999999996) (0.009528273500000004) (0.009552869500000005) (0.009615861000000003) (0.009526647000000013) (0.009480304000000009) (0.009307416499999999) (0.009354225000000008) (0.00938588600000001) (0.009512367000000008) (0.009508685000000003) (0.009564291499999988) (0.009298456499999996) (0.009414106000000005) (0.009400522000000008) (0.009328111000000014) (0.00976892800000001) (0.009561959999999994) (0.009523830499999997) (0.009553405999999987) (0.009494133000000002) (0.009728460499999994) (0.00953957050000001) (0.009689538999999997) (0.009672324499999996) (0.009859243000000018) (0.009680380000000016) (0.009737111499999992) (0.009764605999999995) (0.009766105499999997) (0.009729574000000005) (0.00977749650000001) (0.009886539) (0.009814949999999989) (0.009920227500000003) (0.009940093499999983) (0.009654793499999995) (0.009895908499999995) (0.009894828500000008) (0.010149947500000006) (0.009724339500000012) (0.009768298500000008) (0.009606716000000001) (0.009939648499999981) (0.009816260500000007) (0.009948042500000018) (0.009858692500000002) (0.009875282999999985) (0.009681593000000002) (0.009829644500000012) (0.009877036499999992) (0.0097958125) (0.009719017999999996) (0.009842189000000001) (0.0098781795) (0.009446600000000013) (0.009397191999999985) (0.009898233000000006) (0.0093682395) (0.009431177999999998) (0.009353082499999998) (0.009280436000000003) (0.009534526000000001) (0.00952060149999999) (0.009500158500000008) (0.009460360999999987) (0.009765815999999997) (0.009575269499999997) (0.009525249) (0.00942990349999999) (0.009504711999999998) (0.009331311500000009) (0.009482670499999998) (0.009471549999999981) (0.009624105500000008) (0.009366987999999993) (0.009645857500000007) (0.009417414999999985) (0.009702779500000008) (0.009570220000000004) (0.009729228499999992) (0.009599685999999996) (0.009707858999999985) (0.009388300500000002) (0.009476042000000004) (0.009672529) (0.009636536499999987) (0.009914994500000024) (0.009780789999999998) (0.009827792000000002) (0.009727743000000011) (0.009743414000000006) (0.009827362999999992) (0.009728321499999998) (0.009728088999999995) (0.009733773500000015) (0.009886256999999996) (0.00987426000000001) (0.0098861415) (0.0099564085) (0.009962151000000016) (0.009955950000000019) (0.009783313999999987) (0.009811978999999998) (0.009730730999999992) (0.009663022999999993) (0.00977481899999999) (0.009995079000000004) (0.009653129499999996) (0.009884524999999991) (0.009728401000000012) (0.00992398550000001) (0.010051954000000002) (0.010015793500000009) (0.010100852999999993) (0.009871406999999999) (0.009785056000000014) (0.010356723499999998) (0.009919113999999993) (0.009406946999999999) (0.009570541500000015) (0.009400980000000003) (0.009806647500000001) (0.009581823500000017) (0.009424107000000001) (0.009427998000000007) (0.009548954499999984) (0.0095160725) (0.010048232500000004) (0.009754894999999986) (0.009474822500000007) (0.009490645999999991) (0.00944205649999999) (0.009396242000000013) (0.00937771200000001) (0.009389258999999997) (0.009764549499999997) (0.00944790600000002) (0.009487919999999997) (0.009281183999999998) (0.009477690999999996) (0.009552156000000006) (0.009442918999999994) (0.009477062500000008) (0.00959973900000001) (0.009496934999999998) (0.009397722999999997) (0.009475764499999983) (0.009671423499999998) (0.009594963499999984) (0.009536821000000001) (0.009741278499999992) (0.00979239500000001) (0.009707316500000007) (0.00964733600000002) (0.009698456500000008) (0.009675218499999999) (0.010049476500000001) (0.009678942999999995) (0.0098879345) (0.009900007500000016) (0.010045837499999988) (0.00991446750000001) (0.009773645999999997) (0.009909179000000004) (0.009872529000000005) (0.009674219499999998) (0.009826023500000017) (0.009766141999999992) (0.009729918000000004) (0.009796256500000003) (0.009811331000000006) (0.00967904650000001) (0.009783907999999994) (0.009693297000000003) (0.010153100999999998) (0.0098739365) (0.009846315499999994) (0.009982238500000004) (0.009709653499999998) (0.009838747000000009) (0.010138863000000012) (0.0099937405) (0.00950213300000001) (0.009635221) (0.009566227499999996) (0.00968400500000001) (0.00943870949999999) (0.009482654500000007) (0.009622059499999988) (0.009366799999999995) (0.009597308500000012) (0.009515347500000007) (0.00961164199999999) (0.009620065499999997) (0.009625083499999992) (0.009564316500000003) (0.009524235000000006) (0.009671582999999997) (0.009402381000000001) (0.009390625) (0.009604547000000005) (0.009976662999999983) (0.009492665000000011) (0.009503094500000003) (0.009541394000000009) (0.009601842999999999) (0.009646524000000004) (0.009760721500000014) (0.009580920499999993) (0.009675799499999999) (0.009564757500000007) (0.009583225500000014) (0.009806476000000022) (0.009750185999999994) (0.009808375999999994) (0.009695662499999994) (0.009782916000000003) (0.009698474499999998) (0.009736233999999996) (0.010006939499999992) (0.009883032) (0.009648464500000009) (0.009775765499999992) (0.010050139) (0.010000335499999999) (0.009833637999999992) (0.009905695499999992) (0.009853088999999995) (0.01000798700000001) (0.009817734999999994) (0.009637080000000006) (0.009933699500000004) (0.009874110000000005) (0.009852696000000022) (0.009881602500000003) (0.009790734999999995) (0.00989872650000001) (0.009615303000000006) (0.009823986500000007) (0.010191838499999994) (0.009878617499999992) (0.009948893) (0.00967776699999999) (0.009864403500000007) (0.009934443000000001) (0.010074094499999992) (0.009337842499999999) (0.009430074499999996) (0.009439130000000004) (0.009451570499999992) (0.009641735999999998) (0.009412362000000007) (0.009389478499999993) (0.009518642499999994) (0.009519445000000001) (0.009687101000000004) (0.009695666500000005) (0.009526400000000004) (0.009487334) (0.009407767499999997) (0.009433523999999999) (0.009499354000000002) (0.009603609500000013) (0.009347002499999993) (0.009627479999999994) (0.009528617500000003) (0.009562986999999981) (0.009435654500000015) (0.009493478) (0.009450307000000005) (0.009629501499999985) (0.009718295500000002) (0.009725394500000012) (0.009433537500000005) (0.009467459999999997) (0.009325788999999987) (0.009382878500000025) (0.009451422000000001) (0.009638881499999988) (0.009677655999999993) (0.0096410195) (0.009803798000000002) (0.009615328000000006) (0.00962784450000001) (0.0098430625) (0.009754404999999994) (0.009759999999999991) (0.009957702999999984) (0.009812580500000001) (0.009777089000000017) (0.01003689399999999) (0.009748534000000003) (0.009962027999999998) (0.009794351999999992) (0.009714609500000013) (0.009882971500000018) (0.009979099500000005) (0.009935577000000015) (0.009979178500000005) (0.009566463499999983) (0.009770611999999998) (0.009850617500000006) (0.009980206000000005) (0.00988314550000001) (0.009811532499999998) (0.0097953665) (0.009785605500000003) (0.01000633749999999) (0.009775384499999998) (0.009960727500000002) (0.009709927999999993) (0.009340506999999998) (0.009400250999999998) (0.009501549499999998) (0.009642898499999983) (0.009359032000000003) (0.009478306500000006) (0.009596974499999994) (0.011736626500000014) (0.009588564999999993) (0.009510661500000003) (0.009352326500000008) (0.009606177500000007) (0.009544232999999985) (0.009498400500000004) (0.009863100999999999) (0.009425130500000004) (0.009670329499999991) (0.009477501) (0.009432296499999993) (0.009356839500000005) (0.009511226999999997) (0.009535530499999986) (0.0094441455) (0.009638973499999995) (0.009491257499999989) (0.009915235999999994) (0.0096133905) (0.009679169500000001) (0.00950338299999999) (0.009544752000000004) (0.009448687499999997) (0.009987218500000006) (0.009659270500000011) (0.009851924999999997) (0.009879688000000011) (0.009740217500000009) (0.010066958000000015) (0.009806899500000008) (0.009723757000000013) (0.009829619999999997) (0.009891333999999988) (0.010068140500000003) (0.0098619125) (0.009769267500000012) (0.009686859000000006) (0.009964694999999996) (0.010165300500000002) (0.009917021500000012) (0.009723190499999992) (0.009686755000000005) (0.009856012499999997) (0.009746009) (0.0098007695) (0.009933625000000001) (0.009843563999999985) (0.010209847000000008) (0.009960060500000006) (0.009994271499999999) (0.010024704999999995) (0.009780874499999995) (0.009785906999999996) (0.00981471149999999) (0.00983685799999999) (0.009568327999999987) (0.009437478) (0.009570878000000019) (0.009426157500000004) (0.009473756500000013) (0.009314940000000008) (0.009451756999999991) (0.009611467500000012) (0.009479550500000003) (0.0098712725) (0.009549050999999989) (0.009641237499999997) (0.00961529500000001) (0.00949778150000001) (0.009341931499999998) (0.009610583000000006) (0.009348177000000013) (0.00964498300000001) (0.009505039500000007) (0.009629634999999998) (0.009653309000000013) (0.009444320000000006) (0.00956742449999999) (0.0095253535) (0.009647193999999998) (0.009594848499999989) (0.009646453999999999) (0.009355702999999993) (0.009591640999999998) (0.009502533499999993) (0.009496532500000002) (0.009546423000000012) (0.009746563) (0.009705647999999997) (0.009674676999999993) (0.009945760999999997) (0.010053949500000006) (0.00972233950000001) (0.009757163999999999) (0.00958270650000001) (0.009860231499999997) (0.009972276000000002) (0.009741415499999989) (0.010022942000000007) (0.009894686500000013) (0.009974559500000008) (0.009771130000000003) (0.010146012499999996) (0.010026252) (0.010033699499999993) (0.009808039500000018) (0.009728787500000002) (0.009988534999999993) (0.0097811545) (0.010034351999999996) (0.009776991499999999) (0.009825030499999998) (0.010028610999999993) (0.009915028999999992) (0.009891695500000006) (0.009679578500000008) (0.009852853000000009) (0.009685105) (0.009769231500000003) (0.009662055500000002) (0.009326794500000013) (0.009489904999999993) (0.009333514000000001) (0.00957279200000001) (0.009341385500000007) (0.009398876500000014) (0.009437293499999985) (0.009609747500000002) (0.009506254000000006) (0.009691941499999995) (0.009570953500000007) (0.009531910500000004) (0.009559974500000012) (0.009728824999999997) (0.009782694499999994) (0.00944991399999999) (0.009561532000000011) (0.009591922500000002) (0.009607228999999995) (0.009682326000000005) (0.009377200500000002) (0.009674314000000003) (0.009358213000000004) (0.009501504999999993) (0.009530191500000007) (0.0094830615) (0.009728663999999998) (0.009554823000000004) (0.009637659499999993) (0.009525959500000014) (0.009594437500000011) (0.009691119499999998) (0.009686947000000001) (0.009803095499999984) (0.009747125500000009) (0.009658559499999997) (0.009794115499999992) (0.010066287999999993) (0.009918234499999998) (0.009893647500000005) (0.009784735000000003) (0.009984497500000009) (0.009846242500000005) (0.009907201000000004) (0.009731898500000002) (0.010020521500000004) (0.009942799500000002) (0.009898419999999991) (0.009740556999999997) (0.009908380499999994) (0.00964747399999999) (0.009812734500000003) (0.010262430000000017) (0.009603347499999998) (0.0097679195) (0.009793036000000005) (0.009763321500000005) (0.010170951999999997) (0.01045016800000001) (0.009802238000000019) (0.009765906500000004) (0.009822315000000012) (0.009795254999999989) (0.009317332999999997) (0.009283429499999996) (0.009500003000000007) (0.009311674499999992) (0.009490350000000009) (0.009480114000000012) (0.009246031000000002) (0.00964872800000001) (0.00946428249999999) (0.009748906499999987) (0.009650402499999988) (0.009433549000000013) (0.009389591000000003) (0.0097709775) (0.00959072250000001) (0.009685555499999998) (0.009340990500000007) (0.009466059999999984) (0.009655338) (0.00958998200000001) (0.009504435500000005) (0.009537292000000003) (0.009421749500000007) (0.009596769500000005) (0.009586175000000002) (0.009518166000000008) (0.009519291) (0.009648602500000006) (0.0094017235) (0.009634002500000016) (0.009555457000000003) (0.009467909500000024) (0.009901437499999985) (0.009726619500000006) (0.009710295500000007) (0.009744820000000001) (0.009699046999999988) (0.009643724000000006) (0.009672775000000008) (0.009553982000000003) (0.009880911500000006) (0.009861743499999992) (0.009656670499999992) (0.010147356499999996) (0.009897085) (0.009908590500000009) (0.009869730000000007) (0.010144527999999986) (0.009970472999999994) (0.00983775349999999) (0.009888382000000001) (0.0099086605) (0.009925986499999997) (0.009752454499999993) (0.009890939000000001) (0.00981515749999999) (0.009896894500000003) (0.0099910785) (0.0098583005) (0.009973988499999989) (0.0101778025) (0.010127215000000009) (0.010051759999999993) (0.010056622000000001) (0.009476418999999986) (0.009590698000000009) (0.009349732999999999) (0.009520031499999998) (0.009598117499999989) (0.00940969400000001) (0.009384335999999993) (0.009524318000000004) (0.009515739500000009) (0.009452254000000007) (0.0094642385) (0.00953334950000001) (0.0094148025) (0.009605000500000002) (0.009646600000000005) (0.009551355999999997) (0.013965305500000025) (0.009577792500000001) (0.009362546999999999) (0.0094804005) (0.009385497000000007) (0.009353544000000005) (0.009392204500000001) (0.009504030999999996) (0.009494702000000022) (0.00960332550000001) (0.009587242999999995) (0.009619549499999991) (0.009626154999999983) (0.009458573500000012) (0.009765464000000001) (0.009503897000000011) (0.009843235000000006) (0.010074301999999993) (0.009947766499999997) (0.00971044900000001) (0.009844218500000002) (0.010072745999999994) (0.009771071000000006) (0.01002278550000002) (0.010060496000000002) (0.009890190499999993) (0.009806536500000004) (0.009827705999999992) (0.00993802349999999) (0.009875112500000005) (0.009727627500000002) (0.010133507000000014) (0.009830152500000008) (0.009743021500000004) (0.009683938000000003) (0.009774004999999988) (0.009842966499999994) (0.009757087999999997) (0.009911485000000012) (0.0099496595) (0.009712801000000007) (0.009849550499999998) (0.010008956999999999) (0.009959021999999998) (0.009817998500000008) (0.009857594499999997) (0.00997700600000001) (0.009974480499999994) (0.009368400999999998) (0.009765584999999993) (0.009359689000000004) (0.009423340500000002) (0.009695007000000005) (0.009416449000000007) (0.009410357500000008) (0.009429047499999996) (0.00944247749999999) (0.009678939000000011) (0.009539047999999994) (0.009573106499999998) (0.009465664999999998) (0.009550480500000014) (0.009367965999999991) (0.009552129500000006) (0.009535645999999981) (0.009434163500000009) (0.009377639999999993) (0.009583533499999991) (0.009442258499999981) (0.009430444499999996) (0.009448251000000005) (0.009468922000000018) (0.009894669499999995) (0.009701991000000007) (0.009607878) (0.009487985000000004) (0.009748746000000003) (0.009617038000000008) (0.009403330499999987) (0.009634698999999997) (0.009727812999999988) (0.009670669000000007) (0.009825292999999985) (0.009607760499999993) (0.009898812500000007) (0.009727726500000006) (0.009720984000000002) (0.009764257999999984) (0.009888701) (0.009730629500000004) (0.009680643500000002) (0.009858352999999986) (0.009943988500000014) (0.00986441149999999) (0.009961948999999998) (0.009958209999999981) (0.009664155999999993) (0.009924793499999987) (0.010000336499999984) (0.009753985499999993) (0.009987171000000003) (0.00990152150000001) (0.009705732000000009) (0.009850149500000002) (0.009822102999999999) (0.009982705499999994) (0.010097043499999986) (0.009958644000000016) (0.009954598499999995) (0.010106991499999995) (0.010079085500000001) (0.009944440499999985) (0.009359754500000012) (0.009353816999999987) (0.00937487200000002) (0.009470516999999998) (0.009433845999999996) (0.009599903999999992) (0.009404247000000004) (0.009769137999999997) (0.009506704000000005) (0.009537280000000009) (0.009616636499999998) (0.009815291500000003) (0.009519464499999991) (0.009772186500000002) (0.00956050700000001) (0.009635783000000009) (0.009666816999999994) (0.009415328000000014) (0.009618387000000006) (0.009493539999999995) (0.009587302500000006) (0.0094641335) (0.009475656500000013) (0.009460562999999991) (0.009698594000000005) (0.009484424499999991) (0.009685514500000006) (0.009810028499999998) (0.010014529499999994) (0.009589570000000006) (0.009704563499999999) (0.009662399500000002) (0.009885322499999988) (0.009701136000000013) (0.009717223000000011) (0.009822440500000001) (0.009744659500000002) (0.010008666500000013) (0.009857283500000008) (0.009692191999999988) (0.009872004000000004) (0.009905787) (0.00977650649999999) (0.00969869100000001) (0.009753772000000008) (0.009904299000000005) (0.009919075999999999) (0.009978318) (0.0100694645) (0.009839135000000013) (0.0096782735) (0.009646926) (0.0098216515) (0.009859621499999999) (0.009857767500000003) (0.00993464849999999) (0.009944924499999994) (0.009895484499999996) (0.010005610999999998) (0.010135035999999986) (0.009943376000000004) (0.01027921250000001) (0.009875091000000003) (0.009932831500000017) (0.009498246000000002) (0.009481796) (0.009336012500000004) (0.009667777500000002) (0.009364574000000014) (0.009408230000000004) (0.009244875499999985) (0.009641201499999988) (0.009897151999999992) (0.009554562000000003) (0.009494043000000008) (0.009483454000000002) (0.0094922915) (0.009406147000000004) (0.009604453999999998) (0.009475162999999995) (0.009498811499999996) (0.009613321000000022) (0.009440359999999995) (0.009633440499999993) (0.009646473499999988) (0.009516181499999998) (0.009639057500000006) (0.009515503499999994) (0.009521308500000006) (0.009519812499999988) (0.01007147500000001) (0.009368021500000004) (0.009337622500000003) (0.009328798999999999) (0.009559064000000006) (0.009617896) (0.010039655499999994) (0.009940058499999987) (0.009844114000000001) (0.009785913500000007) (0.009814201499999994) (0.009962893) (0.009808690999999994) (0.009716819000000002) (0.009836291000000011) (0.009946973499999998) (0.010004590499999994) (0.009886408499999999) (0.009787185500000004) (0.009933456500000007) (0.009736490999999986) (0.009928209999999993) (0.009734707499999995) (0.009794918999999985) (0.010031469999999987) (0.009935680000000002) (0.009749114500000003) (0.009880080999999999) (0.009763454000000005) (0.009683228000000002) (0.009866220000000009) (0.010058503999999982) (0.009716136) (0.01034240950000001) (0.009879177000000003) (0.009880951499999999) (0.009784662499999985) (0.009853170000000008) (0.009561334500000004) (0.009465422999999987) (0.010539791499999993) (0.009692624999999996) (0.009464865000000003) (0.00973827749999999) (0.009554457000000016) (0.009419411000000016) (0.009503893500000013) (0.00962816200000001) (0.009575908500000008) (0.009536746500000012) (0.009409300999999995) (0.009546201500000004) (0.0095372695) (0.009529775000000004) (0.009645126000000004) (0.009360553500000007) (0.00937566649999999) (0.009830298000000015) (0.009712379500000007) (0.009615563499999993) (0.009592526000000004) (0.009427570499999996) (0.009455305000000011) (0.0095812215) (0.009502376499999993) (0.0097254185) (0.009476459000000007) (0.009730903999999999) (0.009478600500000003) (0.009519484999999994) (0.010093171999999997) (0.009679580000000007) (0.009858656000000007) (0.009787215499999988) (0.009656735) (0.009740363000000002) (0.009575969500000003) (0.009848967) (0.009754628000000001) (0.010315856500000012) (0.009841988499999996) (0.009904181499999984) (0.010056165999999991) (0.009915892499999995) (0.009963392000000001) (0.009849914000000015) (0.009819756499999999) (0.009917114000000005) (0.009900122999999997) (0.00983476500000001) (0.010039884499999999) (0.009850725500000004) (0.009721347000000005) (0.009616327500000008) (0.010049449000000002) (0.010023129500000005) (0.010435478500000012) (0.009764249999999988) (0.009890924499999995) (0.009742715499999999) (0.009917889999999999) (0.009914502499999991) (0.009620056500000002) (0.009522484000000012) (0.009500141000000004) (0.009535023000000004) (0.009420522) (0.009345575499999995) (0.009369886999999993) (0.0093904935) (0.009533881000000008) (0.009487325500000018) (0.009923254499999992) (0.009383955999999985) (0.009529479500000007) (0.009486255499999999) (0.009518085999999995) (0.009614693999999993) (0.009423033499999997) (0.00934283050000001) (0.009501761000000011) (0.009693139500000003) (0.009416675999999999) (0.009388597499999998) (0.009527798000000004) (0.009649127499999993) (0.009569126499999997) (0.00961859100000001) (0.009659459500000009) (0.009360320000000005) (0.009891687999999996) (0.009635410499999997) (0.009700128500000002) (0.009503177500000015) (0.010095291999999992) (0.009896637000000014) (0.009718174499999996) (0.009585171000000003) (0.009866068499999991) (0.009781782499999989) (0.009892179000000001) (0.009865313) (0.009958478999999992) (0.009684493000000016) (0.009925125000000007) (0.009804313500000009) (0.009922483999999995) (0.009843189500000002) (0.010008760000000005) (0.009782632) (0.009827005499999986) (0.009922938500000006) (0.009679280499999998) (0.0099179915) (0.00992699050000001) (0.009925501499999989) (0.009714058999999997) (0.009773344000000003) (0.009766588500000006) (0.009852260500000001) (0.00989002) (0.009742857499999993) (0.010134981500000001) (0.009983529000000005) (0.009956928000000004) (0.009757475499999987) (0.009518288) (0.00943102500000001) (0.009539902000000003) (0.009522372499999987) (0.00946509000000001) (0.009679708999999995) (0.009691992499999996) (0.009489063999999992) (0.009625331) (0.00943424100000001) (0.009630307500000004) (0.009451682999999989) (0.009780148500000002) (0.009562896000000001) (0.009500378000000004) (0.009755490500000005) (0.009466448000000016) (0.009370089000000012) (0.009470156500000007) (0.009406147000000017) (0.009920796999999995) (0.00953263900000001) (0.009519651000000004) (0.009371495000000007) (0.009911111) (0.009466017000000007) (0.009669481499999993) (0.009399126000000008) (0.009816187000000004) (0.009666346500000006) (0.009444873000000006) (0.009616625000000018) (0.009659268499999998) (0.009942085000000003) (0.009839770999999997) (0.009654879499999991) (0.009872889499999996) (0.009877518500000002) (0.009951278499999994) (0.0098406885) (0.009871532499999988) (0.009839346999999998) (0.009826391000000018) (0.009786307499999994) (0.009976798999999995) (0.009821199000000003) (0.009801742500000002) (0.010129615499999994) (0.009657812500000015) (0.009774384499999997) (0.009780896999999997) (0.0097327475) (0.00979487350000001) (0.009953366000000005) (0.009895395500000001) (0.009869909999999996) (0.009777671500000001) (0.009921359500000004) (0.009901497000000009) (0.009913785500000008) (0.010124229000000012) (0.010054467499999997) (0.009976112999999981) (0.0098954765) (0.009614537999999992) (0.009372537) (0.009317245500000002) (0.009581794000000005) (0.009283371999999998) (0.009370519000000008) (0.00969672349999999) (0.009317778000000013) (0.00935069299999998) (0.009356599999999993) (0.009743005500000013) (0.009776702499999998) (0.00952474049999999) (0.009680411999999985) (0.009330667) (0.009373964999999998) (0.00939472999999999) (0.009275622999999997) (0.0093996425) (0.009518777000000006) (0.009238175500000001) (0.009427446499999992) (0.009477918500000015) (0.009477492000000018) (0.009447043500000002) (0.009438465499999993) (0.009373782000000011) (0.009558184499999997) (0.009578481) (0.009541005500000005) (0.009483022499999993) (0.009401351500000002) (0.009804535500000003) (0.009523256000000008) (0.009842154000000006) (0.009693546499999983) (0.009725490999999989) (0.009920145000000005) (0.009671315) (0.009830724999999998) (0.010043383499999989) (0.010063191499999999) (0.009789306999999997) (0.009869027500000002) (0.009951506999999998) (0.009828610000000002) (0.009761723499999986) (0.00986224799999999) (0.009652146) (0.00995423999999999) (0.009796865500000002) (0.009798682000000003) (0.009623149000000011) (0.009968055000000003) (0.009834185500000009) (0.00957724) (0.010063397500000001) (0.010050404999999998) (0.009926426500000002) (0.00984874899999999) (0.009920275999999992) (0.00978068650000001) (0.009808084999999994) (0.009916170000000002) (0.009461508999999993) (0.009375744000000005) (0.0094848555) (0.00956029550000001) (0.009473146000000002) (0.009612699999999988) (0.009592431499999998) (0.009414225999999998) (0.009662921500000018) (0.009467470499999991) (0.00962913550000001) (0.009475704000000001) (0.00979967850000002) (0.009598589500000004) (0.009424782499999992) (0.009455954000000003) (0.009836853000000007) (0.009589337000000003) (0.009513914999999998) (0.009424854999999996) (0.009630502000000013) (0.009445745000000005) (0.00950975100000001) (0.009367807000000006) (0.009625802500000016) (0.009457007500000003) (0.009681896999999995) (0.009644155000000015) (0.009701721999999996) (0.009392887500000002) (0.00943612299999999) (0.009615660500000012) (0.009829635000000003) (0.009978314500000002) (0.00961297400000001) (0.009695811500000012) (0.009730739499999988) (0.00996490600000001) (0.009865151500000002) (0.009760404) (0.009831073499999995) (0.009834642000000005) (0.009852027999999999) (0.009940874499999988) (0.009737863) (0.010088397500000013) (0.009940190500000001) (0.009954466500000009) (0.009859447000000021) (0.009802368499999992) (0.010061162499999998) (0.009844958000000001) (0.00974368199999999) (0.009791072500000012) (0.009882585499999999) (0.0097956045) (0.009925374) (0.010086296500000008) (0.009972621000000001) (0.010036950999999988) (0.010067604500000008) (0.01013021750000001) (0.010123792500000006) (0.010090631500000002) (0.009568992000000012) (0.009475409000000004) (0.009554149999999997) (0.009406501500000011) (0.009362926000000008) (0.009453880499999998) (0.009848407999999989) (0.00939360950000001) (0.009482684500000005) (0.009565617999999998) (0.009538085000000016) (0.009651895499999993) (0.009454206000000007) (0.009406254499999989) (0.009520425499999999) (0.009378759) (0.00929861500000001) (0.009493542000000008) (0.009419285) (0.009287913000000009) (0.009438503) (0.0095343965) (0.009496409000000011) (0.009334129999999996) (0.009481262500000018) (0.0095049205) (0.009512437500000012) (0.009417707999999997) (0.009565948500000004) (0.009772274500000011) (0.009390459000000004) (0.009623912499999998) (0.009659010999999995) (0.009809140000000008) (0.009794505500000009) (0.009792463000000001) (0.009766942) (0.010048130500000002) (0.009704531500000002) (0.009763497999999995) (0.009887546999999997) (0.00977807750000001) (0.009860939500000013) (0.009731934999999997) (0.009842114000000013) (0.009800808500000008) (0.009779226500000002) (0.00990933599999999) (0.009881204500000004) (0.010104272999999997) (0.009810270499999996) (0.009716547499999992) (0.009741496499999988) (0.0097490935) (0.009692775500000014) (0.009982492499999995) (0.009911643499999997) (0.009986129999999996) (0.009911236000000004) (0.009856181500000005) (0.009915266000000006) (0.010155802000000005) (0.009958567500000001) (0.009836178499999987) (0.00960721249999999) (0.009604845) (0.009569512999999988) (0.00942398400000001) (0.009568754000000013) (0.009519054999999998) (0.009594163999999988) (0.009443715500000005) (0.009781862999999988) (0.00948558699999999) (0.009433543500000002) (0.0094877295) (0.009557639500000006) (0.009499618500000001) (0.009734813000000009) (0.00948412400000001) (0.00947990650000001) (0.009617120499999993) (0.009927373000000003) (0.009476657999999985) (0.009357947499999991) (0.00942701650000001) (0.009514633500000008) (0.009424505) (0.009577839000000019) (0.009692026999999992) (0.009579969999999993) (0.009658635999999998) (0.009693075999999995) (0.009581797000000003) (0.009807717499999993) (0.009590994000000005) (0.009680848499999992) (0.009731451999999988) (0.009781843999999998) (0.009776448500000007) (0.00969441900000001) (0.010007779499999994) (0.009872340500000007) (0.009683972499999999) (0.009786429999999999) (0.010059938000000004) (0.009734657999999993) (0.010045635499999997) (0.009839505499999998) (0.009853064000000009) (0.009699766499999984) (0.009717135999999987) (0.009791590999999988) (0.009716187000000001) (0.009927342500000005) (0.009776713000000006) (0.0099099) (0.009878004999999995) (0.009837717499999996) (0.009743166999999997) (0.010073640000000009) (0.01026461499999999) (0.009980609500000001) (0.009990711999999999) (0.010083535000000005) (0.009962068000000004) (0.009967924500000003) (0.009849233999999998) (0.00977301899999998) (0.009778278500000001) (0.009307211999999995) (0.009562941499999991) (0.009254411500000018) (0.009498530499999991) (0.00938964099999999) (0.009284266) (0.009435151000000017) (0.00948046050000001) (0.009589823499999997) (0.00957769) (0.0098388175) (0.009660215) (0.009404200499999987) (0.009709629999999997) (0.009644894999999987) (0.009430741500000006) (0.009463919999999987) (0.00947419699999999) (0.009378307500000002) (0.00941900050000001) (0.009597232499999997) (0.00957437350000001) (0.009669922000000011) (0.009469322000000002) (0.009447775499999991) (0.009575732500000003) (0.009660621500000008) (0.010072326500000006) (0.009732542999999982) (0.009617514999999993) (0.010050825499999985) (0.009789647999999998) (0.009948983999999994) (0.009910959499999997) (0.009785012499999995) (0.009704424999999989) (0.009665273500000016) (0.009805373999999992) (0.010104047500000005) (0.009897208000000005) (0.009946584999999994) (0.009833111000000005) (0.009942765999999992) (0.009719316499999991) (0.009580357499999997) (0.009910255999999992) (0.009674937499999994) (0.009767781499999989) (0.009767931000000007) (0.009917226000000015) (0.009645978) (0.009773524000000006) (0.009711947500000012) (0.009703105500000003) (0.009843137000000002) (0.010275463999999998) (0.009940156500000005) (0.00987916500000001) (0.009927416499999994) (0.009864619000000005) (0.009874697500000001) (0.009757601500000004) (0.009563297500000012) (0.009441331000000011) (0.009395263000000001) (0.009411363999999992) (0.009361472999999995) (0.009674434499999995) (0.009653632999999995) (0.009588417500000002) (0.009485519000000012) (0.009713700500000005) (0.00968118350000001) (0.0094772105) (0.009615696499999993) (0.009702639499999999) (0.009480270499999999) (0.009493584999999999) (0.009396525500000003) (0.009822491500000002) (0.009543568500000016) (0.009740430999999994) (0.00947289150000001) (0.009359567999999985) (0.009562954999999998) (0.00971095000000001) (0.009512317000000006) (0.009388869499999994) (0.009473391999999997) (0.009677260000000007) (0.009587035500000007) (0.009466209000000003) (0.009629712999999998) (0.009492729999999991) (0.009666931000000004) (0.009714181000000002) (0.009877392499999998) (0.009933814000000013) (0.009522911499999995) (0.00988613200000002) (0.009839870999999986) (0.009620456999999999) (0.009810771499999996) (0.0098613595) (0.010075517000000006) (0.009957509500000003) (0.00970137) (0.009870038999999983) (0.009736364499999997) (0.010053012000000014) (0.00980866150000001) (0.009966001999999988) (0.009880454499999997) (0.009794776000000005) (0.009718789499999991) (0.00987448149999999) (0.00980967549999999) (0.009812807500000006) (0.010040504500000005) (0.010019515000000007) (0.00999788) (0.009870017500000008) (0.009953049499999991) (0.009860818000000007) (0.00981799450000001) (0.009747559499999989) (0.009501338499999998) (0.009300117999999996) (0.009353594000000007) (0.009532672000000006) (0.009564333999999994) (0.009484090500000014) (0.009444733999999996) (0.00977161800000001) (0.009537455499999986) (0.0096268095) (0.009479127500000017) (0.0094637615) (0.009502376499999993) (0.009706114500000002) (0.009611901000000006) (0.009455949499999991) (0.00942651600000001) (0.009398503499999988) (0.009465946499999989) (0.009663542999999997) (0.009390418000000011) (0.009483356500000012) (0.009590505499999999) (0.009682716999999993) (0.009690889499999994) (0.00959185700000001) (0.009609470500000009) (0.009440057000000002) (0.0096422845) (0.009547505500000011) (0.009590935999999994) (0.009483496499999994) (0.00982079050000001) (0.009629381999999992) (0.009848433500000003) (0.009733285000000022) (0.009894913499999991) (0.00983308200000002) (0.010025403999999988) (0.009625219000000004) (0.009975822500000009) (0.010230439499999994) (0.010007907999999982) (0.009663165000000015) (0.009832941999999997) (0.009925705999999992) (0.009862778000000003) (0.009946967000000001) (0.009943795499999991) (0.009865964000000005) (0.009732462999999997) (0.010037378999999985) (0.009621846000000003) (0.009783327499999994) (0.009725006500000008) (0.009747760999999994) (0.009940859499999982) (0.009929439500000012) (0.009817278999999998) (0.009802498000000007) (0.009903944999999997) (0.010049957999999998) (0.009863529499999996) (0.009873904499999989) (0.00950350250000001) (0.009345000499999992) (0.009540801500000001) (0.009560733500000015) (0.009358901000000003) (0.009531983500000007) (0.009616249499999993) (0.009424691499999985) (0.009830208000000007) (0.009672895) (0.01002480950000001) (0.009554366499999994) (0.009739485499999992) (0.009443852500000002) (0.00961965649999999) (0.009604623499999992) (0.009484857500000013) (0.009537637000000002) (0.009707599999999997) (0.009565951000000003) (0.009641490000000016) (0.009520477999999999) (0.009440296499999987) (0.009613362999999986) (0.009551937999999996) (0.009792108500000007) (0.009669397999999996) (0.00949165099999999) (0.00950604699999999) (0.009833465499999985) (0.009607465499999995) (0.009650128000000008) (0.009760788499999992) (0.009747394999999992) (0.009922035499999995) (0.009794734) (0.009702096499999993) (0.009952449500000002) (0.00977708749999999) (0.009691195500000013) (0.010038152999999994) (0.009923476) (0.009858119999999984) (0.009964892000000017) (0.009901383999999985) (0.00969692200000001) (0.009858288000000007) (0.009716786500000005) (0.010013142000000003) (0.009930289999999994) (0.009756739) (0.009778135999999993) (0.009980000500000002) (0.009867513499999994) (0.009703366000000005) (0.009704673499999997) (0.009921667499999995) (0.010061784000000004) (0.009766166000000007) (0.009996198999999997) (0.009836939999999988) (0.010107807499999996) (0.009925338499999992) (0.00994458949999999) (0.009420578000000013) (0.009447750500000004) (0.009441986) (0.009464859499999992) (0.009473581000000009) (0.009386414499999995) (0.009467593499999996) (0.0094092135) (0.009481824) (0.0095168625) (0.00946802549999999) (0.00954934049999999) (0.009553338000000008) (0.009530079499999997) (0.009536346499999987) (0.009670896500000012) (0.009724952999999995) (0.009391413500000001) (0.009350500500000011) (0.009412787000000006) (0.00970865550000001) (0.009571852500000005) (0.009650483500000001) (0.00932960549999999) (0.009684631499999999) (0.009744165999999999) (0.009503492500000002) (0.009457316999999993) (0.00962322950000001) (0.010049953000000014) (0.009621320500000002) (0.009596269500000004) (0.009823475499999998) (0.009749838499999997) (0.009736891499999997) (0.009716200499999994) (0.009634275499999997) (0.009622635500000004) (0.009686166999999996) (0.009775235999999993) (0.0096892965) (0.009852838000000003) (0.009748823500000003) (0.009818103999999994) (0.00988998649999999) (0.010072984499999993) (0.010117470000000003) (0.009806851000000005) (0.009582992999999998) (0.009628799000000007) (0.00991793149999999) (0.009851328500000006) (0.009825305499999992) (0.010043372999999994) (0.009871390000000022) (0.009705096499999996) (0.009913638000000002) (0.009824343999999999) (0.010023709000000006) (0.010121754999999996) (0.010099745000000007) (0.00994371999999999) (0.010164173500000012) (0.010208390000000012) (0.009378958499999993) (0.009419726000000017) (0.009591170999999996) (0.009531681) (0.009496969499999994) (0.009368875999999998) (0.009570177499999985) (0.009537882000000011) (0.009603827999999995) (0.009612238000000009) (0.009530283499999986) (0.00944969250000001) (0.009531462000000004) (0.009500714999999993) (0.00941885599999999) (0.009922148000000006) (0.009617986000000009) (0.009441794999999989) (0.009614685999999997) (0.009509606500000004) (0.0093404505) (0.00950479600000001) (0.009671154500000001) (0.009637280999999998) (0.00961571500000001) (0.009505433000000008) (0.009703015999999995) (0.009631250999999993) (0.009754686499999998) (0.00985019949999999) (0.009701805500000008) (0.00972413200000001) (0.009849712999999996) (0.009864869499999984) (0.009921949500000013) (0.00991863250000001) (0.009708531500000006) (0.009744815000000018) (0.010027283500000012) (0.009802723999999999) (0.009847784000000012) (0.009742012999999994) (0.009751258999999984) (0.010048428999999998) (0.009852817500000013) (0.009715773499999997) (0.0098933935) (0.00983563350000001) (0.009662203000000008) (0.009757269499999999) (0.009743280500000007) (0.009725598500000002) (0.009880986999999994) (0.009766679000000014) (0.009770602500000003) (0.009692273499999987) (0.010094121499999983) (0.009893561999999995) (0.009847644500000002) (0.009926774000000013) (0.010196303500000017) (0.009999688000000007) (0.009970270500000003) (0.010112005500000007) (0.0096622985) (0.009522650500000007) (0.00977334199999999) (0.009663034000000001) (0.009457854000000002) (0.009435079000000013) (0.009417802000000003) (0.009332606500000007) (0.009769449) (0.009434474500000012) (0.009503404499999993) (0.009596594) (0.009595550000000008) (0.009514186500000008) (0.0096492195) (0.009485413999999998) (0.009390958000000019) (0.009714839000000003) (0.009671602500000001) (0.009342881499999983) (0.009668076999999997) (0.009446839500000012) (0.009397303499999995) (0.00933306099999999) (0.0096497205) (0.009705720499999987) (0.009745816000000004) (0.00952517750000001) (0.009788697999999998) (0.009601230000000002) (0.009366671000000007) (0.009628890499999987) (0.009727929499999996) (0.009990624000000004) (0.009642978999999996) (0.009765811000000013) (0.009923924500000014) (0.009771352499999997) (0.009621161499999989) (0.009833362499999998) (0.009726235999999985) (0.009892472) (0.010069514500000015) (0.00977841950000001) (0.009945567500000002) (0.010188118999999995) (0.009928254999999997) (0.009994753499999995) (0.009806952000000008) (0.010008249999999996) (0.009827441499999992) (0.0103285605) (0.009951366500000003) (0.009780391499999999) (0.009778919999999997) (0.009796207499999987) (0.009889395500000009) (0.010061251999999993) (0.009929729000000012) (0.010097835999999999) (0.0099879135) (0.009942756499999997) (0.009939775499999984) (0.00986356799999999) (0.009789287000000008) (0.009456107500000005) (0.009598911499999987) (0.009559068000000004) (0.009376233999999997) (0.009554487) (0.009563663) (0.009645734500000017) (0.009450840000000002) (0.009639864000000012) (0.00958378700000001) (0.009598872000000008) (0.009630367500000014) (0.00985285200000001) (0.009745541499999996) (0.009525799500000001) (0.009673128999999989) (0.0095352925) (0.009460333999999987) (0.009558878499999993) (0.009671609499999997) (0.009485984500000003) (0.009559692000000009) (0.009517808500000002) (0.009696427500000007) (0.009741190999999996) (0.009682773000000006) (0.009834566000000003) (0.009671834500000004) (0.009710039000000004) (0.009482281499999995) (0.00959888149999999) (0.00998202699999999) (0.009687559499999998) (0.00971462499999999) (0.00993018000000001) (0.00980663250000001) (0.009880001500000013) (0.0097698715) (0.009860854500000002) (0.009856673999999996) (0.010266737499999998) (0.009816902000000002) (0.009857288499999992) (0.0100850735) (0.010076836000000006) (0.009863617000000005) (0.009976365000000001) (0.0100691495) (0.009924744000000013) (0.009803736500000007) (0.009823229500000003) (0.009809800499999993) (0.009969247999999986) (0.009703291500000003) (0.009789859999999997) (0.0100704655) (0.00990951050000001) (0.009894312500000002) (0.009930843999999994) (0.009837641000000008) (0.010045739999999997) (0.009931529500000008) (0.009998633999999992) (0.009460187500000009) (0.009783470000000002) (0.009272087999999998) (0.009335496500000012) (0.009493915000000006) (0.009563000000000002) (0.009483634500000004) (0.009370723499999997) (0.009819130999999995) (0.009412224499999983) (0.009367876999999997) (0.009558067000000003) (0.009684298000000008) (0.009661683000000004) (0.009526819500000006) (0.009458758499999997) (0.009299548500000004) (0.009721281000000012) (0.009588141000000008) (0.00943699599999999) (0.009694378500000003) (0.009301433999999997) (0.009662819000000003) (0.009448598000000002) (0.009499173) (0.009436349999999996) (0.009529167499999991) (0.00955752850000001) (0.009569426499999992) (0.00963554350000001) (0.009591749999999996) (0.009688603500000004) (0.009709742499999993) (0.009870683500000005) (0.009764049499999997) (0.009715008999999997) (0.009810279499999991) (0.009720008000000002) (0.009915747000000003) (0.009738267499999995) (0.009907259999999987) (0.009974740499999996) (0.009772225499999995) (0.009903030500000007) (0.00998831900000001) (0.009845978500000005) (0.009846724500000001) (0.009875240499999993) (0.009851429000000009) (0.009655732500000014) (0.009889134500000007) (0.009720945999999994) (0.009679157000000008) (0.009751214000000008) (0.009799833499999994) (0.0096745825) (0.009934398499999997) (0.009733912000000011) (0.010219404999999987) (0.009895534500000011) (0.009886459999999986) (0.00994152000000001) (0.009961315000000012) (0.009972037499999989) (0.009425477499999987) (0.009524631999999991) (0.009410736000000017) (0.009365771999999994) (0.009417943999999998) (0.009383018499999993) (0.009641309500000014) (0.009471038000000001) (0.009706504500000004) (0.009563146500000008) (0.009691341499999992) (0.00969468200000001) (0.009507541999999994) (0.009614342500000012) (0.009760480500000002) (0.009822108499999996) (0.009645179500000017) (0.009517271000000008) (0.009475128000000013) (0.009413427499999988) (0.009541395999999994) (0.009473944999999998) (0.009509668499999985) (0.009510198499999997) (0.0095396445) (0.009513712500000007) (0.009528432000000003) (0.009471518999999998) (0.009450937999999992) (0.009622885999999997) (0.009480463000000008) (0.009574665499999996) (0.00968413550000001) (0.009862883000000003) (0.0096723965) (0.009724472999999997) (0.009862547000000013) (0.009810738999999999) (0.009709780500000001) (0.010024026999999991) (0.009782249499999993) (0.009782725499999992) (0.009744890999999992) (0.009864962000000005) (0.00977459650000001) (0.009697517999999988) (0.009962895999999999) (0.009931777000000003) (0.009871989500000011) (0.009876683499999997) (0.009955477500000004) (0.009809435000000019) (0.009788586000000016) (0.010060512499999993) (0.009701167999999996) (0.00997885400000001) (0.00999079) (0.009827457999999997) (0.009806739500000008) (0.010076673999999994) (0.00979571700000001) (0.00988709800000001) (0.009736431500000003) (0.0099944785) (0.009864115999999992) (0.009457221000000002) (0.009497215000000003) (0.009523719) (0.009710839500000013) (0.00952437049999999) (0.009685978499999998) (0.00952070599999999) (0.009496354999999998) (0.0095758695) (0.00955592299999998) (0.009621333499999996) (0.009597079499999994) (0.00965824500000001) (0.00948202749999999) (0.009565319499999989) (0.009460364499999999) (0.0095898185) (0.009488276000000004) (0.009627406000000005) (0.009516741999999995) (0.009654217999999992) (0.0093526835) (0.009447384500000003) (0.009445534500000005) (0.009658193499999995) (0.009481624000000008) (0.009621816000000005) (0.009588002999999998) (0.009662529500000003) (0.00956034800000001) (0.009830155000000021) (0.009896928499999985) (0.0097909895) (0.009652535500000017) (0.0098413995) (0.009735899500000006) (0.009738736499999984) (0.009844235999999992) (0.00976474350000002) (0.010018434499999992) (0.010028632999999995) (0.01026658400000001) (0.009822251000000004) (0.009771342500000002) (0.009688866500000004) (0.010047477000000013) (0.009820742499999993) (0.010125329499999988) (0.009893683999999986) (0.009831475999999992) (0.009845755999999997) (0.009900773999999987) (0.01000359499999999) (0.009905056499999995) (0.009640595000000002) (0.009897416000000006) (0.009960823999999993) (0.009985737000000008) (0.009896061499999997) (0.00988750400000002) (0.010198072499999988) (0.009824842499999986) (0.009902755499999999) (0.009483814500000007) (0.009597405500000017) (0.009472824000000005) (0.009722360499999999) (0.009399052500000005) (0.009566653499999994) (0.009631063999999995) (0.009545168000000007) (0.009634958500000013) (0.009635052500000005) (0.009790524999999994) (0.009524536) (0.009636359000000011) (0.009538535) (0.009424683999999989) (0.009786724999999996) (0.009463810000000003) (0.009451585999999998) (0.009510573500000022) (0.0094841175) (0.009522438999999994) (0.009566806499999997) (0.009458027499999994) (0.009623964999999998) (0.0095964885) (0.009830526500000006) (0.009516182999999998) (0.009718898000000004) (0.009863431500000006) (0.009744765499999988) (0.0096233805) (0.009700980499999998) (0.009830792500000005) (0.009823118000000006) (0.009744526500000003) (0.010332277500000014) (0.009776661000000006) (0.009808457500000006) (0.009806899999999993) (0.010006053000000015) (0.009854500000000002) (0.009923879499999996) (0.009660639500000012) (0.009896051500000003) (0.009984140500000002) (0.009925683000000005) (0.009963586999999996) (0.009818407500000001) (0.009707242000000019) (0.009836101) (0.009693771000000004) (0.01001318150000001) (0.009952658500000003) (0.009697610499999995) (0.009907019500000003) (0.009626811999999998) (0.010132147499999994) (0.010069161500000007) (0.00982628449999999) (0.009859817999999992) (0.010217865500000006) (0.010028117500000003) (0.010037588) (0.010055041) (0.009537937499999996) (0.009565201500000009) (0.009577092500000009) (0.009496799) (0.009613002500000009) (0.0093571385) (0.009594339999999993) (0.009628553000000012) (0.009365154) (0.009569057500000006) (0.009570299500000004) (0.009444247499999989) (0.009449561999999995) (0.009603569000000006) (0.009521654500000004) (0.009686110500000011) (0.009332096000000012) (0.009623897000000006) (0.00933919200000001) (0.010041596) (0.009382042000000007) (0.009471156499999994) (0.009492162999999998) (0.009307686499999995) (0.009458156499999995) (0.009410664500000013) (0.009616206000000002) (0.009435877499999995) (0.00948769599999999) (0.009388204999999997) (0.009535304000000008) (0.009536939999999994) (0.009831346000000005) (0.009701348499999998) (0.010050894500000004) (0.009814466999999993) (0.009964824999999997) (0.00974935049999999) (0.009939227999999994) (0.009686984499999995) (0.010056110000000007) (0.009697100000000014) (0.009704928500000001) (0.009659636999999985) (0.00995360549999999) (0.009680258999999997) (0.009765186999999995) (0.009867348999999997) (0.0099037035) (0.009599779500000002) (0.009603104499999987) (0.009794176000000002) (0.009701809000000006) (0.009973172500000002) (0.009621278999999996) (0.00989636499999999) (0.0098531055) (0.009810708000000001) (0.009704101499999992) (0.009837997999999987) (0.009914849500000003) (0.009769413500000004) (0.010261715500000004) (0.010001897999999995) (0.009468529500000003) (0.009684131999999998) (0.009482334000000009) (0.009303263500000006) (0.009542495999999998) (0.009428082500000018) (0.009406921999999998) (0.009512961000000014) (0.0094493935) (0.009401645) (0.009477504999999997) (0.00948022699999998) (0.009372765499999991) (0.009837907499999993) (0.009457392499999995) (0.009429418999999994) (0.009589929499999997) (0.009565677000000009) (0.009593566999999997) (0.009476709) (0.009727625000000004) (0.009287229000000008) (0.009495360499999994) (0.009720216000000004) (0.00948170949999999) (0.009694474999999994) (0.009649559000000002) (0.009592392500000005) (0.009472484000000003) (0.009431349500000005) (0.009372863999999995) (0.009747511) (0.010044234999999985) (0.009906869999999998) (0.009840751500000008) (0.009713513500000007) (0.009794374999999994) (0.009679935) (0.009676484499999999) (0.009841203500000006) (0.009859522999999995) (0.009906811000000001) (0.0096400975) (0.009816117999999999) (0.009743157500000002) (0.010098921499999983) (0.009863125499999986) (0.009752015500000003) (0.009619378499999998) (0.009637052500000007) (0.009833452000000006) (0.009729396000000015) (0.009706922499999993) (0.009738081999999995) (0.009834403000000005) (0.009703373499999987) (0.00997738799999999) (0.009982103999999992) (0.0098010605) (0.009879276499999992) (0.009865249000000006) (0.009945516499999987) (0.010075498500000002) (0.00989777900000001) (0.009476688999999996) (0.009430861500000012) (0.009375766500000007) (0.00939036950000001) (0.009659402500000011) (0.009527448999999993) (0.009492431999999995) (0.009525941499999996) (0.009470723) (0.00956915500000001) (0.009678243500000003) (0.009537052500000004) (0.009521250500000009) (0.0093531045) (0.009414816500000006) (0.009447929000000008) (0.009512003000000019) (0.009507387999999992) (0.009464408999999993) (0.009408110499999997) (0.009447566000000004) (0.009665147999999998) (0.009812129000000003) (0.009429069999999998) (0.009740660499999998) (0.009530389) (0.009668583000000008) (0.009800372000000002) (0.00949382850000001) (0.009832919999999995) (0.009670040500000004) (0.009697420000000012) (0.009760241500000003) (0.009915083000000005) (0.009611363500000011) (0.010077402499999999) (0.0095942985) (0.009892286500000014) (0.009701606000000002) (0.009721296500000004) (0.009983752500000012) (0.009792757000000013) (0.009963728500000005) (0.009799094500000008) (0.00999369800000001) (0.009701421000000016) (0.00982830450000001) (0.009860678000000012) (0.009671056499999997) (0.010039047999999995) (0.010103239499999986) (0.009754858499999991) (0.01006992000000001) (0.0099301465) (0.009998013999999986) (0.009610443499999996) (0.009814899999999988) (0.009932711499999997) (0.00998120999999999) (0.010027857000000001) (0.00994521100000001) (0.009950184500000014) (0.009976175000000004) (0.009851381499999992) (0.009402489) (0.009751105499999996) (0.009381282000000005) (0.009408972000000002) (0.009627155999999998) (0.0096293135) (0.009707832500000013) (0.009707953000000005) (0.009778058500000006) (0.009420987000000006) (0.009417676) (0.009620325999999998) (0.009404689000000008) (0.00965392449999998) (0.009442559500000003) (0.00945016500000001) (0.009416015999999985) (0.009445700000000015) (0.009619102500000018) (0.009699794999999997) (0.009377512000000005) (0.009420195500000006) (0.009848516500000001) (0.009828607000000003) (0.0097363575) (0.009725645500000005) (0.009587447500000013) (0.009792112000000006) (0.009662090000000012) (0.009726699000000005) (0.009578147999999995) (0.009600757000000001) (0.0099163585) (0.009893800499999994) (0.010231062499999999) (0.009776486999999986) (0.009725400000000009) (0.009683306500000002) (0.009789791499999992) (0.010259607500000004) (0.009794269500000008) (0.010065629000000006) (0.010007159499999987) (0.009871238000000004) (0.009878599000000016) (0.009974342499999997) (0.009986473499999995) (0.009869458999999997) (0.009761913499999997) (0.009849802500000004) (0.009828112499999986) (0.009644867000000001) (0.009924391000000005) (0.0098760705) (0.009943160500000006) (0.009760021000000008) (0.010058451999999996) (0.010008322) (0.009858661500000004) (0.01007238249999999) (0.00980429749999999) (0.0098128715) (0.010026080000000007) (0.009903256000000013) (0.009557504500000008) (0.009518160499999997) (0.009275153000000008) (0.009497151999999981) (0.009352580999999999) (0.009366311500000002) (0.00954920599999999) (0.009276698) (0.00956264100000001) (0.009552368499999991) (0.009511682000000007) (0.009611942499999998) (0.009650414999999996) (0.009503918999999986) (0.009508706000000006) (0.009628583499999996) (0.009314231000000006) (0.00945981450000001) (0.009548666999999997) (0.009353158) (0.009431330999999987) (0.009391473999999997) (0.009448740499999997) (0.009498430000000002) (0.009601275499999992) (0.009446505500000008) (0.009507940999999992) (0.009505840000000002) (0.009675869000000004) (0.014161845999999978) (0.009640240000000008) (0.009360673500000014) (0.009697010999999991) (0.00978329900000001) (0.009752096000000002) (0.009826266) (0.009596358499999999) (0.009725351499999993) (0.009859520499999996) (0.009742882999999994) (0.009974869499999997) (0.00970235600000001) (0.009942486) (0.009799282499999992) (0.009824152000000003) (0.009824758000000003) (0.009738202500000001) (0.009814596000000009) (0.009876064000000004) (0.009669910500000004) (0.009722050999999995) (0.00970111450000001) (0.010060949999999999) (0.009647179500000005) (0.009651937999999999) (0.009634325) (0.0100032345) (0.009751692000000006) (0.009940425499999989) (0.009714001) (0.009974611000000008) (0.009932204000000014) (0.009735692500000004) (0.009999062000000003) (0.009558330000000004) (0.009383424500000001) (0.009654946499999983) (0.009456629000000008) (0.009293319000000008) (0.009707716000000005) (0.00943785250000001) (0.009509004499999987) (0.00970620550000001) (0.009518889999999988) (0.009608549499999994) (0.009529244000000006) (0.009575532000000012) (0.009505272999999995) (0.009413908000000012) (0.009688875999999985) (0.009537011499999998) (0.009527660999999993) (0.009426455) (0.009363001499999996) (0.009405866999999998) (0.009355615500000011) (0.009772700499999995) (0.009543713499999995) (0.009779778000000003) (0.009440645499999997) (0.009501996499999998) (0.009580413499999996) (0.009473458000000004) (0.009516207000000013) (0.009657371000000012) (0.009347635499999993) (0.009980417000000005) (0.009867226499999979) (0.009931048499999998) (0.009687803499999995) (0.009714497499999988) (0.00969392799999999) (0.009773827999999984) (0.009714273499999995) (0.009803526000000007) (0.010140771499999993) (0.00987933349999999) (0.009944462499999987) (0.009938500000000003) (0.009871354499999999) (0.009873352499999988) (0.00993160500000001) (0.009627525499999998) (0.010105582000000002) (0.009663727499999997) (0.009991170500000007) (0.009928910999999999) (0.009804166500000003) (0.009923912500000007) (0.009810180500000001) (0.009966061999999984) (0.009901873500000005) (0.009753976500000011) (0.009699750499999993) (0.01004027149999999) (0.009940238500000018) (0.009878940500000002) (0.009812454499999998) (0.009405733999999999) (0.00936237999999999) (0.009509159000000003) (0.009308479500000008) (0.009592318000000016) (0.009308531000000009) (0.009303577500000007) (0.009579857000000011) (0.009590692500000012) (0.009669051499999984) (0.009497469999999994) (0.00950885500000001) (0.0095215315) (0.009597204999999998) (0.00941848549999999) (0.009650592999999999) (0.009522771) (0.009398421500000004) (0.009273665) (0.009346178499999983) (0.009425968500000007) (0.009443570499999998) (0.009347888500000012) (0.009464020000000004) (0.009388657999999994) (0.009481626999999992) (0.00961973300000002) (0.0100199755) (0.009310456499999994) (0.00965888899999999) (0.009396629500000003) (0.009622598499999996) (0.009833018999999998) (0.009711056999999995) (0.010024614500000001) (0.009785245999999997) (0.009742816499999987) (0.009677810999999995) (0.009889485500000017) (0.009581551500000007) (0.00973481349999998) (0.009980396000000002) (0.010024090000000013) (0.009818675000000013) (0.009884153500000006) (0.009890263499999982) (0.010002367500000012) (0.009918413999999987) (0.010124034500000004) (0.009745799999999985) (0.009825410000000007) (0.009630443500000002) (0.00972827100000001) (0.00998563650000002) (0.009696752999999989) (0.009719249999999999) (0.009751995000000013) (0.011927483499999988) (0.00985766199999999) (0.010075196499999994) (0.00991163099999999) (0.009817665500000003) (0.009817549000000009) (0.009922973500000001) (0.009886820500000004) (0.009485486999999987) (0.009362135500000007) (0.009674126000000019) (0.009454256499999994) (0.00936937950000001) (0.00933521150000001) (0.009642652499999987) (0.009650786999999994) (0.009528703999999999) (0.00936054) (0.0095336065) (0.009626595500000001) (0.009490938500000004) (0.009664513) (0.009772897000000003) (0.0096658295) (0.009519029499999998) (0.009496642999999999) (0.00968198499999999) (0.009522034500000012) (0.009466147999999994) (0.009516945499999999) (0.009416611499999991) (0.00963504250000001) (0.009958991) (0.009779863) (0.009517394499999998) (0.0095742365) (0.009616662499999998) (0.009482864499999993) (0.0096412855) (0.009723490500000015) (0.009790389999999996) (0.009886647499999998) (0.009662998500000006) (0.009949291999999998) (0.009662093499999996) (0.009903787000000011) (0.00997241900000001) (0.009952707500000005) (0.009715158000000002) (0.009807769499999994) (0.009912890999999993) (0.00974076950000001) (0.009766759000000014) (0.009855712000000003) (0.010049305499999994) (0.01009611399999999) (0.009853953000000013) (0.009885861499999996) (0.009768483499999994) (0.00966858150000001) (0.009779313499999984) (0.009641893499999998) (0.0096834685) (0.010125488000000002) (0.010269215499999998) (0.009756336500000004) (0.009819877500000004) (0.010186199000000007) (0.010061930499999996) (0.009845562000000016) (0.009841889499999992) (0.009558614000000007) (0.009323811500000001) (0.009556560999999991) (0.009588694999999994) (0.009450900999999998) (0.009621599999999994) (0.009365890000000016) (0.009420689999999995) (0.00953335050000001) (0.009669035999999992) (0.009465840500000017) (0.009511072500000009) (0.009509496999999992) (0.009569789499999981) (0.009580474500000019) (0.009727166499999995) (0.00933130900000001) (0.009397041000000009) (0.009353815500000001) (0.009359948499999993) (0.009538358999999996) (0.009529473499999996) (0.009405300499999991) (0.009583968499999998) (0.009561464000000006) (0.009493173000000008) (0.009769686) (0.009409255500000005) (0.009626969499999999) (0.009593793000000003) (0.0096007605) (0.009696224000000003) (0.0096551775) (0.009763560500000004) (0.009583201999999999) (0.009740633499999998) (0.009881387000000005) (0.009680623) (0.009713329000000007) (0.00984877449999999) (0.009862709499999997) (0.00996122499999999) (0.009911002999999988) (0.009856986499999998) (0.010165462) (0.009854173500000007) (0.009708388999999984) (0.009798769999999998) (0.009805233999999996) (0.009828196499999983) (0.009882132999999987) (0.009741319500000012) (0.009948558999999996) (0.010135513999999998) (0.009645914499999991) (0.009958879000000004) (0.009957724500000015) (0.009893498499999986) (0.009969484500000014) (0.009849503999999995) (0.009924082499999987) (0.010039448999999992) (0.009972459500000003) (0.010064511999999998) (0.009569898999999993) (0.009878621000000004) (0.009513423000000007) (0.009607734499999993) (0.009388976000000007) (0.00929489850000001) (0.009501183499999996) (0.0095291515) (0.009575565499999994) (0.009598146000000002) (0.009626986000000004) (0.009662679499999993) (0.009561865999999988) (0.009663968000000009) (0.00953408800000001) (0.009649692000000001) (0.009477559999999996) (0.009757652500000005) (0.00980681600000001) (0.009734727000000012) (0.009607258500000007) (0.009373456500000002) (0.009295965000000003) (0.009520767) (0.009539653499999995) (0.009639899999999993) (0.009844326499999986) (0.009845860500000012) (0.009554065000000014) (0.009750484000000004) (0.010346203499999998) (0.009594371500000018) (0.009676247000000013) (0.009826360999999992) (0.009711931000000007) (0.009926958) (0.010092788499999991) (0.009809056999999996) (0.009787467999999994) (0.009749123000000012) (0.009814846000000016) (0.009743931999999997) (0.009917318999999994) (0.009791194999999989) (0.010083961500000002) (0.009830250499999998) (0.009813422500000016) (0.009765299499999991) (0.009727478499999984) (0.009893423999999998) (0.009782371999999998) (0.009832739500000007) (0.009918820000000009) (0.009820938500000001) (0.009715111999999998) (0.009813002000000001) (0.010087188499999997) (0.01011255250000001) (0.009983536500000001) (0.01008863850000001) (0.009953438499999995) (0.010040150999999997) (0.010106954999999987) (0.009945455000000006) (0.009465070999999992) (0.009542281) (0.009508473500000017) (0.00958775249999999) (0.009528777000000016) (0.009502992500000002) (0.009564851500000013) (0.009392371499999996) (0.009889016999999986) (0.009807555999999995) (0.009432134500000008) (0.009485976000000007) (0.009557452000000008) (0.009620682000000005) (0.009626372499999994) (0.00943882800000001) (0.009434213499999997) (0.009462439000000003) (0.009669509500000006) (0.009362024999999996) (0.009475972) (0.009547749000000008) (0.009448514500000019) (0.009612178999999998) (0.009787947500000005) (0.009732899000000003) (0.009782238499999985) (0.009730400499999986) (0.009645958499999996) (0.009637456000000003) (0.009610096999999998) (0.009545691999999995) (0.009892404500000007) (0.009793860000000001) (0.00983294300000001) (0.009955614000000002) (0.009744100500000005) (0.009769442000000003) (0.009980262000000004) (0.009801125500000007) (0.009758782000000008) (0.009826165499999998) (0.010049936499999981) (0.009959193500000005) (0.009729747499999997) (0.009765290999999995) (0.009936948000000001) (0.009853946000000002) (0.009838239499999998) (0.010049717) (0.009696324000000006) (0.009606167999999998) (0.009881793) (0.009980315500000003) (0.009889748500000003) (0.009730093500000009) (0.010000700000000015) (0.009935905999999994) (0.010012816500000007) (0.009946769499999994) (0.010061792) (0.010124067000000014) (0.009777188500000006) (0.010135403000000001) (0.009612726500000002) (0.009384912999999995) (0.009639816500000009) (0.009406561499999994) (0.009529912000000001) (0.00943551699999999) (0.0096752425) (0.009758260000000005) (0.009495587999999985) (0.009456374500000003) (0.009771371000000001) (0.009645116000000009) (0.009753487000000005) (0.00956989400000001) (0.009761462000000012) (0.009778383000000002) (0.009502780500000002) (0.009486943499999997) (0.0095183925) (0.009484622999999998) (0.009466085500000013) (0.009406656999999999) (0.009474014500000016) (0.009660353999999996) (0.009699082499999997) (0.009613682499999998) (0.009665129499999994) (0.009638612000000019) (0.009825137500000011) (0.009748036000000015) (0.009425868000000004) (0.009443044499999997) (0.009624570000000013) (0.010029629999999998) (0.009659441000000005) (0.009862228) (0.009744185000000002) (0.009710559499999993) (0.009691327500000013) (0.009959990500000002) (0.010279991500000002) (0.009880712) (0.01009791950000001) (0.009748009500000002) (0.009953603999999991) (0.010089341000000016) (0.009950614999999996) (0.009838959500000008) (0.009759079000000004) (0.010047311000000003) (0.009876784999999999) (0.009921462000000006) (0.009894503999999998) (0.01003622600000001) (0.009869749999999997) (0.009842101999999991) (0.010304664499999991) (0.010014963500000001) (0.010154522) (0.009857926000000017) (0.009971802000000002) (0.009855926000000001) (0.009719156500000006) (0.009901807499999998) (0.009662190000000001) (0.009523288000000019) (0.009365553999999998) (0.009399910999999997) (0.009457303000000014) (0.009438174999999993) (0.009342575000000006) (0.0093835065) (0.0097370175) (0.009479414000000005) (0.009489466500000016) (0.009529644000000004) (0.00945935099999999) (0.009569582999999993) (0.0095198695) (0.009665778) (0.009497344500000005) (0.009344723999999999) (0.009469768500000003) (0.009435865000000002) (0.009494570000000008) (0.00937370550000001) (0.00942312699999999) (0.009435377499999995) (0.009465957999999997) (0.009545119000000005) (0.009521962999999994) (0.009570191000000006) (0.009675217999999985) (0.009751601999999998) (0.009384899000000002) (0.009611433500000002) (0.009887606500000007) (0.009898816000000005) (0.009915076499999995) (0.009756133) (0.009796515500000005) (0.009801180000000007) (0.009702319000000015) (0.009936585999999997) (0.009827666999999984) (0.009714986500000009) (0.009869775499999997) (0.009804356999999986) (0.009722336999999998) (0.009981392000000006) (0.009713238999999999) (0.009903509500000005) (0.009802989999999998) (0.009583641000000004) (0.009690462499999997) (0.009622110500000003) (0.009677197499999998) (0.0097802315) (0.009811344500000013) (0.009923789000000016) (0.009883296499999986) (0.00986782700000001) (0.009882218999999998) (0.009901107500000006) (0.009752878000000006) (0.009721036000000002) (0.009876646000000003) (0.009909576000000003) (0.009435380999999993) (0.009355499500000003) (0.009594721500000014) (0.009596797000000018) (0.009820944999999998) (0.009640614500000005) (0.009449068000000005) (0.009415278) (0.009692311499999995) (0.009664302999999999) (0.009614335000000002) (0.009539458500000014) (0.00969234699999999) (0.009592283000000007) (0.009478389000000004) (0.009781481999999994) (0.009486906000000017) (0.009726962500000005) (0.009424526000000003) (0.009548600000000004) (0.00959835249999999) (0.009505946500000015) (0.009471628499999996) (0.009427742000000017) (0.0095765815) (0.009734613499999989) (0.009373445999999994) (0.009640595500000002) (0.0096261755) (0.009584665500000006) (0.009399585000000002) (0.009830852000000001) (0.009729974500000002) (0.009740392500000014) (0.009984646000000014) (0.009685326499999994) (0.010084368499999996) (0.009770724999999994) (0.009841547000000006) (0.009790710499999994) (0.010032052999999999) (0.009723716999999993) (0.010199891000000003) (0.010067341999999993) (0.00975923699999999) (0.010046589500000008) (0.010104068999999993) (0.0098592225) (0.009724567000000003) (0.009896199499999994) (0.009864483499999993) (0.009742391500000003) (0.009870691000000015) (0.009713293499999998) (0.009723421999999995) (0.009949286499999987) (0.009868921500000002) (0.010077392500000004) (0.009855134000000002) (0.009734845499999992) (0.00979065450000001) (0.009786957500000013) (0.009859057500000018) (0.009806111999999992) (0.009479184000000002) (0.009495649500000022) (0.009485606500000007) (0.009488826000000006) (0.009412717000000001) (0.009468178000000008) (0.009582131000000008) (0.009629342499999999) (0.009616002500000012) (0.009422780499999991) (0.009646717999999985) (0.009694075999999996) (0.009573734) (0.009594072999999995) (0.00942950350000002) (0.009465478) (0.009389557000000007) (0.009505320500000011) (0.009449509999999994) (0.009607337999999993) (0.009531259) (0.009409127500000003) (0.009437205500000004) (0.00959408299999999) (0.00946214250000002) (0.009610817999999993) (0.009627532500000008) (0.009468702500000009) (0.009642113500000007) (0.0096043995) (0.009609617500000014) (0.009456732999999995) (0.009908418000000002) (0.00968091900000001) (0.009763069999999985) (0.00973325400000001) (0.009796391000000002) (0.009825356999999993) (0.00960710599999999) (0.009862902999999992) (0.009873455500000017) (0.009995943500000007) (0.009927313999999993) (0.009790185000000007) (0.0099736765) (0.009652539000000002) (0.009747644) (0.00975474200000001) (0.009869377999999998) (0.009989690499999995) (0.009799304999999994) (0.009586802999999977) (0.009742558999999998) (0.010069194000000004) (0.009680203999999998) (0.009659144999999994) (0.009885513499999998) (0.010087472) (0.00993954000000001) (0.01006288050000001) (0.010123853999999988) (0.009948714500000011) (0.009835401499999993) (0.009848129999999997) (0.009538196499999999) (0.009388758000000011) (0.009378742999999995) (0.009443884999999999) (0.00935491899999999) (0.00953897849999999) (0.009723053499999995) (0.009742689499999999) (0.009476859500000004) (0.009574136999999996) (0.00952017799999999) (0.009603978499999999) (0.00947235099999999) (0.009417221999999989) (0.009648160000000003) (0.009616147000000005) (0.009529298000000005) (0.009633484499999997) (0.009782700000000005) (0.009641115000000006) (0.009584932500000004) (0.009460734999999998) (0.009548989000000008) (0.009570348999999992) (0.009704098499999994) (0.009639853500000004) (0.009601396000000012) (0.009517761) (0.009845039) (0.009553873500000004) (0.009622713500000005) (0.00972954849999999) (0.009819744000000005) (0.009738172500000003) (0.009629670500000007) (0.009660603500000003) (0.009768145000000006) (0.009944335499999998) (0.009637923499999992) (0.009757107999999987) (0.009977426499999997) (0.009875110999999992) (0.009733151499999995) (0.0098851685) (0.009842181499999991) (0.009882151000000006) (0.009807212499999982) (0.009822867499999985) (0.009910676499999979) (0.009792018499999985) (0.009832375500000004) (0.009675506999999986) (0.009617143500000008) (0.009710217499999993) (0.010031614500000008) (0.009764689999999993) (0.010045125499999988) (0.009966067499999995) (0.009866860000000019) (0.009773776499999998) (0.009939129000000005) (0.010212266000000012) (0.009919975499999997) (0.009980656500000004) (0.009408932999999994) (0.009486970499999997) (0.009638013) (0.009459490000000001) (0.00935367500000002) (0.009370165000000014) (0.009516207499999998) (0.009334044) (0.009801406499999998) (0.009454399500000002) (0.009420742499999996) (0.009435965000000004) (0.009472407000000002) (0.009502162499999994) (0.009585962500000003) (0.009672638999999997) (0.009385232999999993) (0.0095209765) (0.009621513999999998) (0.009394005499999997) (0.009340154000000003) (0.009455515000000012) (0.009331470000000008) (0.009552549000000007) (0.009503575) (0.009627182499999998) (0.009916193500000003) (0.009494548500000005) (0.009676391499999992) (0.009705801) (0.009572752500000004) (0.009399201499999996) (0.009899465499999996) (0.009599024999999997) (0.009805486499999988) (0.009904281000000001) (0.009674339500000004) (0.010042138999999992) (0.009748649499999998) (0.009821048999999998) (0.009855270000000013) (0.009889629499999997) (0.009841597000000007) (0.009726597500000003) (0.009859055999999991) (0.00965011049999999) (0.009894871999999999) (0.009850279500000003) (0.009788565999999999) (0.00981593800000001) (0.00980993550000002) (0.009982088) (0.009745621499999996) (0.009819526000000009) (0.009812009999999996) (0.009679832499999999) (0.009783976000000014) (0.009799744499999985) (0.009968327499999985) (0.009987815499999997) (0.009822243999999994) (0.009765986500000004) (0.010001850500000006) (0.010118068999999993) (0.009427598499999995) (0.009551461000000011) (0.009507956999999997) (0.009560115999999994) (0.009502292999999995) (0.009337520000000002) (0.009558549500000013) (0.009374516500000013) (0.00944532649999999) (0.0095695705) (0.009420617499999992) (0.009463310000000003) (0.00954568950000001) (0.009582387499999998) (0.009610209000000008) (0.009444051999999994) (0.009288119999999997) (0.009402652000000011) (0.009477080000000013) (0.0094036745) (0.00950999100000001) (0.00973955800000001) (0.009391149000000001) (0.009497542999999997) (0.009493111999999998) (0.009764575499999997) (0.009530014000000003) (0.009738312499999985) (0.009475790000000012) (0.009672504000000012) (0.009715939500000007) (0.009699778500000006) (0.009825876000000011) (0.009812954499999998) (0.009676064499999998) (0.009673392000000003) (0.009685678000000003) (0.009838470000000002) (0.0099895225) (0.009930862499999998) (0.009805368000000009) (0.009802033500000001) (0.009969314000000007) (0.009920016500000003) (0.009872041499999984) (0.010023068499999996) (0.009970352000000002) (0.009717187000000002) (0.009656390500000014) (0.009909332500000007) (0.009756828499999995) (0.009683395500000011) (0.009813774499999997) (0.010016968000000001) (0.009760841000000006) (0.009867368999999987) (0.010098318999999994) (0.010203535999999985) (0.009822066000000004) (0.009950395) (0.010079856499999984) (0.010136202999999996) (0.010116008499999996) (0.010059526) (0.009480786500000005) (0.009434117000000006) (0.009499524500000009) (0.00958022850000001) (0.009578150500000007) (0.009619646999999995) (0.009959192000000006) (0.00971079250000001) (0.009498437000000012) (0.009667883000000002) (0.0095820915) (0.009751965000000001) (0.009506272999999996) (0.009454998500000006) (0.00962334649999999) (0.009529869499999996) (0.009339968000000004) (0.009278554499999994) (0.009645885500000007) (0.009296179000000002) (0.009347665000000005) (0.009359539500000014) (0.009336720999999992) (0.009455040999999997) (0.009632359499999993) (0.0095529325) (0.00960787049999999) (0.009688976000000002) (0.009423745500000011) (0.009523063500000012) (0.009561459500000008) (0.009426026500000004) (0.009837696000000007) (0.009903836000000013) (0.009721543000000013) (0.009654795499999994) (0.010040947999999994) (0.009775439999999982) (0.009740643500000007) (0.0100197395) (0.009887687000000006) (0.00996237250000001) (0.009763557000000006) (0.009848902500000006) (0.010176282999999994) (0.009962256000000003) (0.00973642999999999) (0.010013478000000006) (0.0098843515) (0.009782330000000006) (0.00988732149999999) (0.009849624999999987) (0.009813989500000009) (0.010019110000000012) (0.00976781950000001) (0.009720392499999994) (0.009839142999999995) (0.009996911999999997) (0.010111803499999988) (0.010012532000000005) (0.009897666) (0.010115513499999992) (0.010090777499999995) (0.010108511) (0.009506373999999998) (0.009465730999999991) (0.009605487999999995) (0.009511567500000012) (0.009607735000000006) (0.009296003499999997) (0.009617487500000008) (0.009557973999999997) (0.009594738999999991) (0.009738710499999997) (0.009510836999999994) (0.009501619000000003) (0.009754429499999995) (0.009755897000000013) (0.009680220999999989) (0.009548753500000007) (0.00979431950000001) (0.009872369500000006) (0.009415000000000007) (0.009424276500000009) (0.009386481999999988) (0.009600291999999996) (0.009625756000000013) (0.009630109499999984) (0.009713114000000009) (0.009643719499999995) (0.009872446500000007) (0.00961994599999999) (0.009556453000000006) (0.009708680999999997) (0.009681583499999993) (0.009751642000000005) (0.009733605000000006) (0.009629751500000006) (0.010045550000000014) (0.0097320865) (0.009928612000000003) (0.00977968450000001) (0.00959054550000002) (0.009842380499999998) (0.009898435999999997) (0.009830255499999996) (0.010202148999999994) (0.009969882) (0.01011526800000001) (0.009937463500000007) (0.00977002099999999) (0.009920211500000012) (0.010342101999999992) (0.009932443499999999) (0.009829626999999994) (0.009708379500000003) (0.010106260999999991) (0.0098082595) (0.009681389999999998) (0.009819107000000007) (0.0100239555) (0.009964092500000007) (0.009856565999999997) (0.009864657499999999) (0.009875665500000005) (0.009933683999999998) (0.00989553) (0.009907453499999996) (0.009066206999999993) (0.009079899999999988) (0.009231069499999994) (0.00946425799999999) (0.009433213999999995) (0.009256486500000008) (0.009248522999999995) (0.009212700000000018) (0.009388317500000007) (0.00920887350000002) (0.009265957499999991) (0.009307057000000007) (0.00951907149999999) (0.009195808000000014) (0.0093137155) (0.009491044000000004) (0.009330137500000002) (0.00933769249999998) (0.009327097000000006) (0.00945304700000002) (0.009134089500000012) (0.009115385500000003) (0.009368568499999994) (0.009215473999999987) (0.009423553500000001) (0.009247032999999988) (0.009326727000000007) (0.009217061500000012) (0.009423509499999996) (0.009605458999999997) (0.009305084500000005) (0.009507212000000001) (0.009657683999999986) (0.009753843499999984) (0.009630581999999999) (0.009427691500000002) (0.009520591500000009) (0.009608712499999991) (0.009498552499999993) (0.009605359999999993) (0.009634435499999996) (0.009717749500000011) (0.009661758000000006) (0.009648979499999988) (0.009811463000000006) (0.009821530500000009) (0.009500049999999996) (0.009525824000000002) (0.0096216425) (0.009640241499999994) (0.009640547499999985) (0.009553580999999992) (0.009489019999999987) (0.0098441415) (0.009656747000000007) (0.009792927500000007) (0.009567134000000005) (0.009502613000000007) (0.009855111) (0.009699122000000004) (0.009595803499999986) (0.009627939500000002) (0.009666319999999992) (0.009569703999999998) (0.0092544455) (0.009118284000000004) (0.009257690499999999) (0.009206040499999998) (0.009167274000000003) (0.009390067500000002) (0.009550789000000018) (0.00933609349999999) (0.009252062500000005) (0.00925442700000001) (0.009637873500000005) (0.009367136000000012) (0.009404148500000015) (0.00928076650000001) (0.009409489999999993) (0.009658741500000012) (0.009254329999999991) (0.009154980000000007) (0.009322627000000014) (0.009302237000000005) (0.0091323435) (0.00930997900000001) (0.009328753500000009) (0.009243456999999997) (0.009367857000000007) (0.00924040100000001) (0.009218964499999996) (0.00938962950000001) (0.00930275450000001) (0.009274229500000009) (0.0094453325) (0.00925653450000001) (0.009687692000000012) (0.009648952000000002) (0.009836982500000008) (0.00954284100000001) (0.009567956000000016) (0.009550290000000003) (0.009408908500000021) (0.009794158499999997) (0.011069779500000002) (0.009732243000000002) (0.010022200999999994) (0.010363508500000007) (0.010301847000000003) (0.009817998999999994) (0.01008490849999999) (0.009638480000000005) (0.009785007999999998) (0.009620888999999994) (0.009545906000000007) (0.009751536500000005) (0.00963103450000001) (0.010191254499999997) (0.009432223000000003) (0.009508881999999996) (0.009766966999999988) (0.010126778500000003) (0.009935879500000008) (0.009663521999999994) (0.009596112500000017) (0.009620627500000006) (0.009616817500000013) (0.009583706499999997) (0.009364745500000007) (0.009343312000000006) (0.009210888000000014) (0.009615022500000014) (0.009267095000000003) (0.009210225999999988) (0.009482868500000005) (0.009186962499999993) (0.009403395000000023) (0.009226452999999996) (0.009321908000000004) (0.009297628500000016) (0.009425622499999994) (0.009290236500000007) (0.009257182500000002) (0.009389578999999995) (0.009345400000000018) (0.009228470499999988) (0.009164779999999997) (0.009258401999999999) (0.009222815500000009) (0.009389443499999997) (0.009195194000000004) (0.009077028000000001) (0.009212806500000004) (0.009341529000000015) (0.009328302999999996) (0.00922087299999999) (0.009212363499999987) (0.009423597999999991) (0.009362942499999985) (0.00929698000000001) (0.009496301499999998) (0.009592390499999992) (0.009578460499999997) (0.010016639500000007) (0.009449328500000007) (0.009594265500000018) (0.009554124499999997) (0.009558207999999999) (0.009617114499999996) (0.010025318500000005) (0.009435904499999995) (0.009609642000000015) (0.009538651499999995) (0.009753419499999999) (0.009690835000000009) (0.009674711000000003) (0.009727881499999994) (0.009704544499999995) (0.0095651675) (0.009450647999999992) (0.009519147000000006) (0.009461882500000005) (0.009749453000000005) (0.009559654500000014) (0.009871934500000012) (0.009816802) (0.009669292499999996) (0.009513346500000006) (0.009501550999999997) (0.009774284500000008) (0.009615718999999995) (0.009527315499999994) (0.009201159500000014) (0.009126322000000006) (0.009212344500000011) (0.009212002999999996) (0.009117699000000007) (0.009242522000000003) (0.009165507500000003) (0.009446726000000003) (0.009353534499999983) (0.009328174999999994) (0.0092523635) (0.009293186000000009) (0.009373842500000007) (0.009255964000000005) (0.009218568499999996) (0.0092838685) (0.00936695500000001) (0.009275645999999999) (0.0091963625) (0.009387952500000005) (0.009301864499999993) (0.009260121499999996) (0.009390325500000005) (0.0090805875) (0.009545227500000003) (0.009570176) (0.009306897000000008) (0.009346879000000002) (0.009450935500000007) (0.009505313999999987) (0.009329203499999994) (0.009448251500000004) (0.009491969000000003) (0.009614728999999989) (0.009482208500000006) (0.009662220499999999) (0.009439935999999996) (0.009409902499999984) (0.009690944500000007) (0.009389354500000002) (0.009662821000000002) (0.009823977500000011) (0.009589238) (0.009689127500000005) (0.009555333499999999) (0.0096257025) (0.009540008000000003) (0.009668696500000004) (0.009701963499999994) (0.009697708499999985) (0.009443755499999998) (0.009580594999999997) (0.009725563499999992) (0.0096546) (0.0095803525) (0.009388187000000006) (0.00974373549999999) (0.00961677100000001) (0.009738044500000001) (0.009756741) (0.009672103500000015) (0.009582605499999994) (0.009542437) (0.009520697500000008) (0.009496551000000006) (0.009366093999999991) (0.009276182000000008) (0.009582295500000004) (0.009440948500000004) (0.009418181000000012) (0.009363795499999994) (0.009519622499999991) (0.009664660999999991) (0.009519813499999988) (0.009696588000000006) (0.00947865099999999) (0.009429401500000004) (0.009606765499999989) (0.009445886) (0.009297767999999998) (0.009298964000000007) (0.00934631050000001) (0.009498108499999991) (0.009536914499999993) (0.009500168000000003) (0.009400474500000006) (0.009478158) (0.009464320500000012) (0.009357774000000013) (0.009544375999999993) (0.009537265500000003) (0.009550186999999988) (0.009519669999999994) (0.0094321225) (0.009629732000000002) (0.009647355499999996) (0.009775172499999998) (0.009985654999999996) (0.009788837000000009) (0.0099328895) (0.009663426000000003) (0.009728238) (0.009792975499999995) (0.009801952999999988) (0.009761775500000014) (0.009975435000000005) (0.010004362500000002) (0.00976170400000001) (0.010099128499999999) (0.009818614000000003) (0.009908584499999998) (0.009822764999999997) (0.009613574) (0.009949496500000002) (0.009805082999999992) (0.009673291999999986) (0.009724371999999995) (0.009660807500000007) (0.009805043999999999) (0.010091678499999993) (0.010009251499999997) (0.009870867000000005) (0.009858893999999993) (0.010012222000000001) (0.010085861500000001) (0.009810866000000001) (0.009934714999999997) (0.009728758500000004) (0.009492624000000005) (0.009729771999999998) (0.009358631000000006) (0.00957993950000001) (0.009534206999999989) (0.009389505500000006) (0.009750226500000014) (0.009506575999999989) (0.009565098500000008) (0.009494495499999991) (0.009771071999999978) (0.009471368499999994) (0.009470550500000008) (0.009538912999999996) (0.009627048499999999) (0.009540524000000022) (0.009354285500000004) (0.009488154000000013) (0.009551289500000004) (0.00951006850000001) (0.009436988999999993) (0.009530661499999982) (0.009389146000000001) (0.009454310500000007) (0.00957417599999999) (0.009526262500000007) (0.009631702499999992) (0.009518042000000004) (0.009487371000000008) (0.009675468499999992) (0.009522844500000002) (0.00975922400000001) (0.009771229499999992) (0.009640524500000011) (0.010022317499999989) (0.009690071500000008) (0.01001049300000001) (0.009661595499999995) (0.009809996000000001) (0.009787345000000003) (0.010297663000000012) (0.009878157499999998) (0.009900772499999988) (0.009855732499999992) (0.009866967500000004) (0.009870393500000005) (0.009704698499999997) (0.009988374999999994) (0.00975914700000001) (0.009873729999999997) (0.009770952999999999) (0.009731468000000007) (0.009676193500000013) (0.009758992500000008) (0.009969356000000013) (0.009877077500000012) (0.010025051499999993) (0.0101728175) (0.010201835500000006) (0.009977584999999997) (0.009980634999999988) (0.009793318999999995) (0.010195811500000013) (0.009415683499999994) (0.009889359500000014) (0.009495614999999999) (0.009534028500000014) (0.009685791499999999) (0.00960208450000001) (0.009546932999999994) (0.009365924499999997) (0.00965124299999999) (0.009731572499999994) (0.009619884499999981) (0.009868705000000005) (0.009777608500000007) (0.009786175499999994) (0.009601812500000001) (0.009596249000000001) (0.00953928250000001) (0.009482760500000006) (0.009271854499999996) (0.009421310500000002) (0.009574592000000007) (0.009389530499999993) (0.009335219000000006) (0.009420243999999994) (0.00945109000000001) (0.009602124000000004) (0.009897712000000003) (0.009677755499999996) (0.009517997000000014) (0.009686618499999994) (0.009504519999999989) (0.009552273499999986) (0.009753699000000018) (0.009922698499999993) (0.009753207499999986) (0.009824695000000008) (0.009836765999999997) (0.009847670000000003) (0.009631967500000005) (0.009898986499999998) (0.010066479000000003) (0.010267196499999992) (0.009976338000000001) (0.009812882999999994) (0.009999457000000003) (0.010044525000000012) (0.010022836999999993) (0.009929718500000004) (0.009854997000000004) (0.009704339999999992) (0.009668577499999984) (0.009791327000000002) (0.009760633000000005) (0.009995363000000007) (0.009631333500000006) (0.009832692000000004) (0.010027633499999994) (0.009962201000000004) (0.010002323500000007) (0.00976224149999999) (0.009923531499999999) (0.010010258999999994) (0.00994521000000001) (0.009837183999999999) (0.009485026499999993) (0.009514476500000008) (0.009704518999999995) (0.00951145149999999) (0.009491054500000012) (0.00941510999999999) (0.009412848500000015) (0.009560244999999995) (0.009609324000000002) (0.009828334999999994) (0.009488146500000003) (0.0094918165) (0.009534209499999988) (0.009580482500000015) (0.009728251500000007) (0.009695176999999985) (0.009754317999999998) (0.009760907499999999) (0.009514202500000013) (0.00961537400000001) (0.00971295450000001) (0.009418573) (0.009587868999999999) (0.009391220999999991) (0.009626498499999997) (0.009897775999999997) (0.009743962500000009) (0.009690734000000006) (0.00977255299999999) (0.009665477000000006) (0.009595429000000003) (0.010036769000000001) (0.009904152999999999) (0.009952891500000005) (0.009696653999999985) (0.009755430999999995) (0.010063621500000008) (0.009647785000000006) (0.00971051349999999) (0.009907826500000008) (0.0101059035) (0.009848637500000007) (0.009928753499999998) (0.009763262499999995) (0.010121293500000017) (0.010132977500000001) (0.009966300999999997) (0.009832841499999995) (0.009887874000000005) (0.009892492000000017) (0.010025281499999997) (0.009729648000000007) (0.009885654999999993) (0.009921752000000006) (0.009788462999999997) (0.009668034000000006) (0.010115474499999999) (0.010165030499999991) (0.009976601500000001) (0.009816350499999987) (0.009902046999999997) (0.009886436000000012) (0.009861267500000007) (0.009838148500000005) (0.009486308999999998) (0.009595227499999998) (0.009507140499999997) (0.009537585500000001) (0.00944825249999999) (0.009462303499999991) (0.009494958999999997) (0.0094711715) (0.009423611999999998) (0.009830952500000004) (0.009358574999999994) (0.0094071805) (0.009652782999999984) (0.009687172500000008) (0.00974942799999999) (0.0095766345) (0.009630721500000008) (0.009459105999999995) (0.009411749499999997) (0.009354911999999993) (0.009646236500000002) (0.009420210499999998) (0.009651222000000001) (0.009535704500000006) (0.009608530000000004) (0.00974809900000001) (0.009515798999999991) (0.009560447) (0.009630322999999996) (0.009423584500000012) (0.009521817500000015) (0.00971419250000001) (0.00980719599999999) (0.009793130000000011) (0.009759304499999996) (0.009624646) (0.009928770500000003) (0.010016968499999987) (0.009781815499999999) (0.009827018499999993) (0.009839133) (0.009887320500000005) (0.009871032000000002) (0.010064011500000011) (0.010044580999999997) (0.00971827850000001) (0.009907343499999999) (0.009769187499999998) (0.009625664000000006) (0.0100550175) (0.009871527000000005) (0.009654417999999998) (0.015444642500000008) (0.009685388500000003) (0.009689092499999996) (0.009609502500000006) (0.009836508000000008) (0.009737724000000017) (0.010031955000000009) (0.009959113999999991) (0.009900856999999999) (0.009907617999999993) (0.009915683999999994) (0.009891022499999999) (0.009527676499999985) (0.009584759999999998) (0.009405288999999997) (0.009474470000000013) (0.009570850500000005) (0.009493479999999999) (0.00950601999999999) (0.009344538500000013) (0.009501967) (0.009793166500000006) (0.009521102000000004) (0.0097220435) (0.009564609500000001) (0.009662506500000001) (0.009496208500000006) (0.009592280000000009) (0.009531128) (0.00966256800000001) (0.009490377999999994) (0.009575115000000009) (0.009378008999999993) (0.009484392499999994) (0.009311173999999992) (0.009428114000000001) (0.00962065799999999) (0.009717057500000001) (0.009637947499999994) (0.009521000500000001) (0.009519959000000008) (0.009719113000000001) (0.009627874500000008) (0.009648145999999982) (0.010078667000000013) (0.009657834500000004) (0.00975156349999999) (0.009776526999999993) (0.009821506000000008) (0.00969304) (0.009758443000000006) (0.009965675000000007) (0.010003429500000008) (0.009762141500000016) (0.009824225000000006) (0.00989856750000001) (0.009755850999999996) (0.009921242499999997) (0.009934280000000018) (0.010570067500000002) (0.009986863499999998) (0.009619968500000006) (0.009758601499999991) (0.009641312999999999) (0.009725116499999992) (0.009709476000000009) (0.009756814500000002) (0.009841277499999995) (0.009952943000000006) (0.009837261) (0.009968230000000008) (0.009916179999999997) (0.0101400725) (0.009908724999999993) (0.010151051499999994) (0.010025637000000004) (0.0095066335) (0.00948328050000001) (0.009506113499999996) (0.009516888000000015) (0.009639734000000011) (0.009625597) (0.009690977000000003) (0.009422000999999985) (0.009521706500000005) (0.009666092999999987) (0.009467736500000004) (0.009727125999999989) (0.009814398000000016) (0.0095236145) (0.009684826000000007) (0.009482329500000011) (0.009564049000000005) (0.009684721500000007) (0.009650263000000006) (0.009570309999999985) (0.009450951499999999) (0.009400787499999994) (0.009567008000000002) (0.009620566000000011) (0.009538717999999988) (0.009676292000000003) (0.00962520800000001) (0.009591394999999989) (0.009699125499999989) (0.009500994999999998) (0.0096359565) (0.009512974999999993) (0.009810504999999997) (0.009736922500000009) (0.009713122000000005) (0.009754199000000005) (0.009758351999999998) (0.009909024000000002) (0.009871880999999999) (0.009981504000000002) (0.009895249999999994) (0.010067152999999995) (0.009777468000000011) (0.009816395000000006) (0.00995367250000001) (0.009849780499999988) (0.009710700000000003) (0.009969619999999998) (0.009812679000000005) (0.009619671999999996) (0.009748474500000007) (0.009744824000000013) (0.00975097250000001) (0.009701179000000004) (0.009703308500000007) (0.009854619499999995) (0.01021828000000001) (0.00997373700000001) (0.009997397000000005) (0.010159219999999997) (0.009959601999999984) (0.010029665999999993) (0.009984972500000008) (0.009775575500000008) (0.009631390000000004) (0.009489064500000005) (0.009509135499999988) (0.009556935000000003) (0.009470867500000008) (0.009648648999999995) (0.009624949499999993) (0.009375666500000004) (0.009703415500000007) (0.009487055999999994) (0.009873607499999992) (0.009789480499999989) (0.009550868000000004) (0.009541594) (0.009581303000000013) (0.009603973500000001) (0.009452358499999994) (0.009520724500000008) (0.009667016) (0.00943265) (0.009673160999999986) (0.009630310500000003) (0.009369851999999998) (0.009318195000000015) (0.009560619499999992) (0.009701685000000002) (0.00974419650000001) (0.009543455499999978) (0.009447515500000003) (0.009470131499999992) (0.009565668) (0.009518188499999997) (0.010072388500000001) (0.0098414535) (0.009610873500000006) (0.009724663500000008) (0.009750749000000003) (0.009670753500000018) (0.009766478999999995) (0.009719181999999993) (0.009902997499999996) (0.009796980999999996) (0.009888695000000003) (0.009868962999999994) (0.009917197000000016) (0.009823669499999979) (0.009786641999999998) (0.009763161000000006) (0.009759385999999995) (0.009731898000000017) (0.009753572000000002) (0.009907017000000004) (0.00978976849999999) (0.009919350999999993) (0.009958885) (0.009611311999999997) (0.010086893500000013) (0.010003154) (0.009938095000000008) (0.009759544500000009) (0.009953332500000009) (0.009858979500000004) (0.009892975999999998) (0.010151260500000009) (0.009793559499999993) (0.009283189000000011) (0.009616069500000018) (0.009493069499999993) (0.009363522999999999) (0.009267653) (0.009511532000000017) (0.009570905500000004) (0.009740343499999998) (0.009402482500000003) (0.009602748499999994) (0.009426414500000008) (0.009365281500000003) (0.009632105000000002) (0.009840409000000008) (0.009643125500000002) (0.009260472499999992) (0.009468850999999986) (0.009444746500000004) (0.009345786000000009) (0.009300425500000015) (0.009729546999999991) (0.009423935499999994) (0.009482367500000005) (0.009792419999999996) (0.009414804999999998) (0.009557916500000013) (0.009422548499999989) (0.009468978499999989) (0.009635957) (0.009686239) (0.009817569999999998) (0.009717965499999995) (0.009772999500000018) (0.010105591000000011) (0.009821592500000018) (0.010047175499999991) (0.009644338500000002) (0.009717981) (0.009698888500000002) (0.010104825499999998) (0.009702495999999991) (0.009746102000000006) (0.00996392800000001) (0.009734980500000004) (0.009803283499999996) (0.009886849500000003) (0.0097737185) (0.009836817000000012) (0.009745012499999997) (0.009952634000000016) (0.009727678000000003) (0.009686255000000005) (0.009781240999999996) (0.009627489500000003) (0.009576179000000004) (0.010104078000000002) (0.009812732000000005) (0.009842283499999993) (0.009754892500000015) (0.01031463299999999) (0.009871663499999989) (0.00997065350000001) (0.009858184500000006) (0.00939121499999998) (0.009546071499999989) (0.009463407999999993) (0.0094607055) (0.009405900000000009) (0.009416907500000002) (0.009570386) (0.009359255499999997) (0.009562442500000004) (0.009530307500000001) (0.009500192500000004) (0.009506607) (0.009493573000000005) (0.00949784599999999) (0.009667361499999999) (0.009497763999999992) (0.009586059999999993) (0.009346847500000005) (0.009560610499999997) (0.00940290249999999) (0.009485347500000005) (0.00946266350000001) (0.009499971500000023) (0.009567592500000013) (0.009570117500000003) (0.009436566000000007) (0.009781609999999996) (0.009577071500000006) (0.009526870500000006) (0.009647652999999992) (0.009471469499999996) (0.009481485500000011) (0.009891044500000001) (0.010558097000000002) (0.009660803999999995) (0.009774479499999988) (0.009633840000000005) (0.009651925999999991) (0.010100090500000006) (0.009641625500000015) (0.009900814499999994) (0.009953952500000002) (0.009834387) (0.009927692500000015) (0.009727792499999999) (0.009966089999999997) (0.010092564500000012) (0.009921538000000008) (0.009627278499999989) (0.009896803999999995) (0.009669945999999999) (0.00976561649999999) (0.0096071915) (0.009804878500000003) (0.009672995000000004) (0.009747161500000004) (0.00981847000000001) (0.010136504000000005) (0.009924288000000003) (0.009917733999999997) (0.010124031000000006) (0.009863280500000002) (0.010027282500000012) (0.010173426) (0.009413216999999988) (0.009315275999999983) (0.009464784000000004) (0.009499932999999988) (0.009456174999999997) (0.009481385499999995) (0.009517584499999995) (0.009606086) (0.009686656999999987) (0.00955260999999999) (0.00949971749999999) (0.009806410000000002) (0.009676337000000007) (0.009633870500000016) (0.009600007499999993) (0.00949865250000001) (0.009533892500000002) (0.010113739499999996) (0.009467624000000008) (0.009602443500000002) (0.009537135500000002) (0.009462167499999993) (0.009454433500000012) (0.009317736500000007) (0.009514466999999999) (0.009484769000000004) (0.009699180000000002) (0.010288641000000001) (0.009476890500000015) (0.009537853499999999) (0.009518653000000002) (0.009482683999999991) (0.009790200999999998) (0.009644598000000004) (0.009984582499999992) (0.009799535000000012) (0.009762860499999998) (0.010023739000000018) (0.009898522499999993) (0.009835322000000007) (0.009970545000000011) (0.009955629000000008) (0.009858119500000012) (0.00988881300000001) (0.009850524499999999) (0.009989237999999998) (0.009709078999999995) (0.00973847400000001) (0.009633763500000003) (0.009853026000000015) (0.009996735999999992) (0.009856413499999994) (0.009599664999999993) (0.009808809000000002) (0.009665537500000002) (0.009696958000000006) (0.009874010500000002) (0.010098017) (0.01002442349999999) (0.010150410500000012) (0.01007702249999999) (0.00989860749999999) (0.009991379499999994) (0.009909899500000013) (0.0093550035) (0.009675378500000012) (0.009633137) (0.009379993000000003) (0.0093342) (0.009300210999999989) (0.009603731500000004) (0.009461396499999997) (0.009544479499999994) (0.009500651999999998) (0.009577986499999996) (0.009579049500000006) (0.009620535) (0.009469725499999984) (0.009547999999999987) (0.009472516) (0.009636559000000003) (0.009468302999999997) (0.009529463500000002) (0.00940170650000001) (0.009638603999999995) (0.009615283000000002) (0.009360852000000003) (0.009757331999999994) (0.009702684500000003) (0.009576958999999996) (0.009684955500000009) (0.009653432000000003) (0.009539529500000005) (0.009689176500000007) (0.009674447000000003) (0.009710050999999997) (0.009698928499999995) (0.010020708500000003) (0.0097510695) (0.009884355499999983) (0.009867644500000008) (0.009875557500000007) (0.009877351500000006) (0.009754195500000007) (0.010001642499999991) (0.009835336) (0.010113302500000004) (0.009832168500000002) (0.009835247499999991) (0.009909051999999988) (0.009820897500000009) (0.009926814000000006) (0.00992786050000001) (0.009857852) (0.009987261999999997) (0.009747777499999999) (0.009906255000000003) (0.009772744499999986) (0.0099520565) (0.0098503895) (0.009828111499999986) (0.01007525849999999) (0.010029485000000019) (0.009910389000000006) (0.00985899450000001) (0.010033327999999994) (0.010226790500000013) (0.010117691499999998) (0.009300564000000011) (0.009410691999999998) (0.009998947999999994) (0.009346812999999995) (0.009422102000000002) (0.009319570500000013) (0.009403854500000003) (0.009704748) (0.009448730499999988) (0.009479443000000004) (0.00968414649999999) (0.009564157000000004) (0.009398573999999993) (0.009638511500000002) (0.009459297000000005) (0.009608142) (0.009313153500000004) (0.009609982500000003) (0.009465658499999988) (0.009577529000000001) (0.009381569500000006) (0.009257575000000004) (0.009435198499999992) (0.00948049450000002) (0.009607481000000015) (0.0094903935) (0.009568688500000005) (0.009637836999999996) (0.009516198000000003) (0.009442878000000002) (0.009442771500000016) (0.009536583500000015) (0.009633097999999993) (0.009798552500000002) (0.009718107500000003) (0.009772402999999985) (0.009895599500000005) (0.009810757500000003) (0.009929978499999992) (0.00989757799999999) (0.009916175999999999) (0.009823075) (0.009665609499999991) (0.009804900999999991) (0.009714926000000013) (0.00997693999999999) (0.009800173999999995) (0.009912426500000016) (0.009535448499999988) (0.009859776) (0.009715239) (0.009884730999999994) (0.009603268500000012) (0.00975962150000001) (0.00975343599999999) (0.009727494000000003) (0.009802701499999997) (0.009984883500000014) (0.009916043499999999) (0.009874518499999999) (0.009843938999999996) (0.0101621385) (0.009781529999999997) (0.009913364500000008) (0.009416642499999989) (0.00933342799999999) (0.009620143999999997) (0.009405442) (0.009481740000000002) (0.009391525999999997) (0.009537035499999999) (0.009681952000000008) (0.009729680000000004) (0.009590799999999997) (0.009564260000000005) (0.0095643765) (0.009461877500000007) (0.0094898375) (0.009532366999999986) (0.009767088999999993) (0.0096301575) (0.009462560499999995) (0.009473204000000013) (0.009530674499999989) (0.009379518500000003) (0.00948823700000001) (0.009359517499999997) (0.009645146999999993) (0.009498825000000002) (0.009468815999999991) (0.009713768499999997) (0.009795161499999996) (0.009520123000000005) (0.009408574500000003) (0.00947521300000001) (0.009655293500000009) (0.009775681499999994) (0.009735989) (0.009798404999999996) (0.009884278499999996) (0.010037693) (0.009711440000000002) (0.009898137000000015) (0.009607490499999996) (0.009981168499999998) (0.009963988499999993) (0.009879398000000011) (0.010254173499999991) (0.00979814250000001) (0.009879628000000015) (0.009746229499999995) (0.009797747499999981) (0.009930122500000013) (0.009708620500000001) (0.01000319849999999) (0.009689007999999999) (0.0098845595) (0.009747935499999999) (0.009726649000000004) (0.009615273500000007) (0.009794971) (0.010079088) (0.010117711000000001) (0.0097509125) (0.0099789775) (0.009977548500000002) (0.009831142499999987) (0.00996773799999999) (0.009441363000000008) (0.009534341000000002) (0.009472032499999991) (0.009532572000000003) (0.009359000499999992) (0.009482701999999996) (0.009452545000000007) (0.009464387500000004) (0.009590651000000006) (0.009829555500000003) (0.009538076000000006) (0.00966932849999999) (0.009349751500000003) (0.009679710500000008) (0.009508419500000004) (0.009519512499999994) (0.009483002000000004) (0.009548996500000004) (0.009384123999999994) (0.009750700000000001) (0.009395899) (0.009549744499999999) (0.009423244499999997) (0.009589277000000007) (0.009589214499999985) (0.009557209000000011) (0.009480518499999993) (0.009794328500000005) (0.009598522999999998) (0.009522517500000008) (0.009414202499999996) (0.009484810499999996) (0.009733308999999996) (0.009964030500000012) (0.009866684000000014) (0.009664346000000004) (0.009597995500000012) (0.009812190499999998) (0.00955760550000001) (0.009864189999999981) (0.009857517999999996) (0.00979041) (0.00972524150000001) (0.009794875499999994) (0.009982874500000016) (0.009873930500000003) (0.009947582999999996) (0.009962328500000006) (0.009888399000000006) (0.010226025999999985) (0.009665832999999985) (0.00986488399999999) (0.00969903250000001) (0.009889682999999982) (0.009642364999999986) (0.009882084499999999) (0.009980446000000004) (0.009670963500000004) (0.010027496999999996) (0.009861499499999996) (0.010258744000000014) (0.00971019599999999) (0.009697188499999995) (0.009813313000000004) (0.009996961499999985) (0.009414349000000002) (0.00940518600000001) (0.009659340500000002) (0.009783846999999998) (0.00946721049999999) (0.00942171800000001) (0.009431390999999983) (0.009827502500000015) (0.009823377000000008) (0.009378599000000015) (0.009524146499999997) (0.009569957000000018) (0.009601501000000012) (0.009516909000000004) (0.009482189499999988) (0.009475315000000012) (0.009514001999999994) (0.009621328499999998) (0.009406696999999992) (0.009340251499999994) (0.009507763000000002) (0.009540621999999999) (0.00956805899999999) (0.009667861000000014) (0.010721080500000008) (0.009838446499999987) (0.009569702) (0.009570800500000018) (0.009608129000000007) (0.009576998500000017) (0.009444165500000004) (0.009756220999999982) (0.009773347500000001) (0.009594235000000007) (0.009837316500000012) (0.009948886500000004) (0.009864913000000003) (0.009837444) (0.009836077999999998) (0.009812956500000011) (0.009875799500000004) (0.010160898000000002) (0.010070611500000007) (0.009693905500000002) (0.010127110499999994) (0.010028803999999988) (0.00981323100000002) (0.00987447050000001) (0.009818581000000007) (0.00991284299999999) (0.009941839500000008) (0.009746057500000002) (0.009912617499999984) (0.009827980000000014) (0.009655126) (0.009781818999999997) (0.009782230000000003) (0.009913480000000002) (0.009907575000000002) (0.009887796500000004) (0.009896062499999983) (0.00976557950000001) (0.010300966999999994) (0.009397413000000007) (0.009366811500000002) (0.009522250999999995) (0.009653349000000006) (0.009456891999999995) (0.00973321349999999) (0.009527370499999993) (0.009485217500000004) (0.009324937499999991) (0.009458206999999996) (0.009558095500000002) (0.009671767999999997) (0.009720218000000003) (0.009625018499999985) (0.009549091999999995) (0.009495314500000004) (0.009463888000000004) (0.009486062000000003) (0.009351644499999992) (0.009365904999999994) (0.009910519500000006) (0.009433667999999992) (0.009651625999999996) (0.009308180999999999) (0.009419139499999993) (0.009691645999999984) (0.009546123000000017) (0.009572507499999994) (0.00958134400000002) (0.009794056499999995) (0.009533972500000001) (0.009464512999999994) (0.009879600000000002) (0.009867876499999997) (0.00959552150000001) (0.009701487500000008) (0.009885586500000001) (0.009778001999999994) (0.009787314500000005) (0.009900435999999999) (0.009961925499999996) (0.009792011499999989) (0.009889556000000008) (0.009915809999999983) (0.009907364999999987) (0.010061972500000002) (0.009972626500000012) (0.009888587500000018) (0.009776115000000002) (0.009852203000000004) (0.009658194499999995) (0.009653682499999997) (0.009957018000000012) (0.009598594500000002) (0.009892065000000005) (0.009959745000000006) (0.009732933499999999) (0.00999049099999999) (0.009835404500000006) (0.009882832500000008) (0.010047840000000002) (0.009915574999999996) (0.009788785999999994) (0.009853434500000008) (0.009551988999999997) (0.009533962500000007) (0.009503486999999991) (0.009503918500000014) (0.009478681500000002) (0.009954278999999983) (0.009494455499999999) (0.00948889550000001) (0.009590468000000005) (0.009403775000000003) (0.00953760699999999) (0.009566695000000014) (0.009471004499999991) (0.009618052499999988) (0.009529687999999994) (0.009426608999999989) (0.009324474499999999) (0.009311922500000014) (0.00940178300000001) (0.009400947499999993) (0.009590481999999997) (0.009383704000000007) (0.009451944500000004) (0.009511215500000003) (0.009661096500000008) (0.009683892) (0.009830117500000013) (0.009594306499999997) (0.009682236999999996) (0.009682413) (0.009690283500000008) (0.009679674) (0.00967352149999999) (0.009577461499999995) (0.009841649500000008) (0.009771176000000006) (0.009804313499999995) (0.009932148500000001) (0.009852050000000001) (0.009765030999999993) (0.009935986500000007) (0.009837865499999987) (0.010239566500000005) (0.00992341849999999) (0.00998328350000001) (0.010077299499999998) (0.00986645450000001) (0.009851046500000002) (0.009684170499999992) (0.009806029499999994) (0.009851785000000002) (0.01015452) (0.00972234050000001) (0.009964408000000008) (0.009672242500000011) (0.009639183999999995) (0.009920371499999997) (0.009662232000000007) (0.010142466500000002) (0.01007292500000001) (0.009952132999999988) (0.010072000000000011) (0.010002676499999988) (0.010013230499999998) (0.009397833999999994) (0.009509546500000007) (0.009453783500000007) (0.009598799500000005) (0.00969004200000001) (0.009448897999999997) (0.009478357000000007) (0.009537470999999992) (0.009390218500000005) (0.009460558000000008) (0.009732834999999995) (0.009492005000000012) (0.009526751000000014) (0.009739584999999995) (0.009524794000000003) (0.009576863500000005) (0.009399539499999998) (0.00945612550000001) (0.009642561999999993) (0.009572918500000013) (0.009463295499999996) (0.009580771999999987) (0.009488007000000007) (0.009516477999999995) (0.009729934499999982) (0.009553771000000003) (0.009518932000000008) (0.009525223) (0.009487747500000004) (0.009571212999999995) (0.009515983500000005) (0.009598428000000006) (0.009770597500000006) (0.010081278499999999) (0.009870814500000005) (0.009795663499999996) (0.009851468500000002) (0.009768078) (0.009788709500000006) (0.009890590000000005) (0.009960821499999994) (0.0099566445) (0.009783260500000002) (0.009941463000000011) (0.009913252499999997) (0.009732397500000003) (0.009779059500000006) (0.009813375499999999) (0.009661545999999993) (0.009735419500000009) (0.00971127649999999) (0.009786845499999988) (0.009669106000000025) (0.00971082999999999) (0.010009414500000008) (0.009930867999999995) (0.009865376999999995) (0.00995575) (0.009870292500000002) (0.009818823500000004) (0.00995491900000002) (0.010204986499999999) (0.009925469999999992) (0.009937091500000009) (0.009653744500000006) (0.009650134000000005) (0.009540174499999998) (0.009702292000000001) (0.00958969450000001) (0.009589018500000004) (0.009592268000000001) (0.009369068500000008) (0.0094006185) (0.009536291500000002) (0.009477181000000001) (0.009597823500000005) (0.009556654999999997) (0.009597393499999995) (0.00939079050000001) (0.009524341499999991) (0.009490986500000007) (0.009439307999999993) (0.00977376549999999) (0.009374766499999992) (0.009429861500000011) (0.009380881999999993) (0.009587974499999999) (0.009651329999999986) (0.009567572999999996) (0.009887226500000013) (0.00976056900000001) (0.009748176999999997) (0.009709607500000009) (0.009743347000000013) (0.010091172500000023) (0.009869227500000008) (0.009774595999999997) (0.009968003500000003) (0.009741560499999996) (0.010041008000000004) (0.009874028999999993) (0.009769539000000008) (0.009966058) (0.009660338500000004) (0.010016771999999993) (0.010175330999999996) (0.009829302999999998) (0.009797045500000004) (0.009885934499999999) (0.009911488999999996) (0.009881433500000009) (0.009899562) (0.010048993500000006) (0.009765349499999992) (0.009721378000000003) (0.010096588500000003) (0.010082724000000001) (0.009660642999999997) (0.009832340500000022) (0.009576614499999997) (0.009960921500000011) (0.010070699500000002) (0.010095956500000003) (0.009969598499999982) (0.009857872000000018) (0.010264616500000004) (0.009943512499999987) (0.0101107785) (0.009583132499999994) (0.009391176000000015) (0.009575181500000016) (0.009613644999999976) (0.00928946700000001) (0.009469531000000003) (0.0095052365) (0.009520137499999984) (0.009594346500000003) (0.009355011499999996) (0.009491158) (0.009539949000000006) (0.009704521500000007) (0.00958468500000001) (0.009662431499999999) (0.009398919999999991) (0.009547564999999994) (0.00944476100000001) (0.009463925499999998) (0.009515407999999989) (0.009544234000000013) (0.009363953000000008) (0.009495806499999981) (0.009526068999999998) (0.009585511000000005) (0.009637464499999998) (0.009440912999999995) (0.009495516499999981) (0.009609516499999998) (0.009354084000000012) (0.009743754999999993) (0.00948950350000001) (0.009739828500000006) (0.009692809999999996) (0.009690787500000006) (0.009739686999999997) (0.010012370499999992) (0.009804485000000002) (0.009571411500000002) (0.009659494000000005) (0.00985271850000001) (0.009687876499999998) (0.009825204000000004) (0.009711642499999992) (0.009870222499999998) (0.009882087500000011) (0.009922833499999992) (0.00990675050000002) (0.009734896999999992) (0.009765871500000009) (0.009704458000000013) (0.0098599625) (0.009755251500000006) (0.009965573000000005) (0.00963088799999999) (0.009819393499999995) (0.009907428999999995) (0.01007614100000001) (0.00965257550000001) (0.00977177849999998) (0.009780796500000008) (0.009752839500000013) (0.010132944500000005) (0.009861638999999991) (0.009504569000000004) (0.009437724500000008) (0.009554140500000002) (0.009687819) (0.009751867500000011) (0.009327872499999987) (0.009324325999999994) (0.00947387000000001) (0.009797957499999996) (0.009411685500000017) (0.009434294499999996) (0.009659731500000004) (0.009491705000000003) (0.009519027999999999) (0.0096365915) (0.009464002500000013) (0.009431198000000002) (0.009628130499999998) (0.009507922000000002) (0.009671404499999994) (0.009507582) (0.009403851500000004) (0.009437041000000007) (0.009476176500000016) (0.009404461999999988) (0.009623265499999992) (0.009493728499999993) (0.009766417999999999) (0.009341737500000016) (0.0096839975) (0.0096212735) (0.009704841000000006) (0.009845594) (0.009803055000000005) (0.010070830999999988) (0.009824099000000003) (0.009814694499999999) (0.009852187999999998) (0.009697447499999998) (0.009890694000000005) (0.009850950000000011) (0.009714382500000007) (0.009911205000000006) (0.009746646999999997) (0.009862478499999994) (0.009706985000000015) (0.009898742000000002) (0.009879052999999999) (0.009722715999999992) (0.0098612015) (0.009718009999999985) (0.010260732000000009) (0.009795543500000017) (0.009781657500000013) (0.009730949999999988) (0.009746599499999994) (0.009863505999999994) (0.010277898499999993) (0.009881197000000008) (0.010107195999999999) (0.009720900000000005) (0.009924443499999991) (0.01001924400000001) (0.009866691499999997) (0.009388441500000011) (0.009615933499999993) (0.009532867000000014) (0.009622207999999993) (0.00944734550000001) (0.009418268999999993) (0.009691313500000007) (0.009589620500000007) (0.009577301999999996) (0.009478400500000012) (0.009490675500000004) (0.009501533499999992) (0.009793104499999997) (0.009514591000000003) (0.009684418999999986) (0.009642439500000002) (0.009681341499999996) (0.009427778499999998) (0.00954178750000001) (0.009452845500000001) (0.009357029499999989) (0.009485066) (0.0094871755) (0.009416566500000001) (0.009675447500000017) (0.009827966999999993) (0.009630807000000005) (0.009517863000000001) (0.009671747999999994) (0.009603189499999984) (0.009540614500000003) (0.009617725000000008) (0.009739844499999997) (0.009854558) (0.009671237499999999) (0.009788323500000001) (0.009642818000000011) (0.009930448000000008) (0.009766557499999995) (0.009946920500000012) (0.009920557499999996) (0.009839808999999991) (0.010283081) (0.009852372499999984) (0.009849262000000011) (0.010125710499999996) (0.010488507000000008) (0.009723702) (0.009779781500000001) (0.009912952500000002) (0.009992219999999996) (0.0096751915) (0.009745381499999997) (0.009781588000000008) (0.009710839499999999) (0.009757856500000009) (0.0099334945) (0.010094826500000001) (0.010057047999999999) (0.00992071650000001) (0.00988565100000001) (0.009938455999999998) (0.009776723000000001) (0.009907441000000003) (0.009522160000000002) (0.009809308500000002) (0.009586607000000011) (0.009605362999999992) (0.009444578500000009) (0.009629280000000018) (0.009608320000000004) (0.009402940999999998) (0.009596982000000018) (0.009784081) (0.009533116499999994) (0.009368180000000004) (0.009576001) (0.009610039000000015) (0.009523726499999996) (0.009940588999999986) (0.009322464500000002) (0.009467665) (0.009630403999999995) (0.009388003500000006) (0.009352638999999982) (0.009532757000000017) (0.009579432499999999) (0.009534546500000005) (0.009663368000000006) (0.009728818000000014) (0.00943103699999999) (0.00957656450000001) (0.009669550499999985) (0.009759465500000009) (0.009735481000000004) (0.009659075999999989) (0.00974281049999999) (0.009777828999999988) (0.009760822500000002) (0.009963565000000008) (0.010015325000000005) (0.009730357500000009) (0.009853499000000002) (0.009800761000000005) (0.009866150000000004) (0.009943744000000004) (0.009967590999999998) (0.009990418000000001) (0.009957192500000003) (0.009899654499999994) (0.00999776300000002) (0.009958022499999997) (0.010109454000000004) (0.009881039999999994) (0.010069997000000011) (0.009736252499999987) (0.010142117500000006) (0.009814211000000017) (0.010047617999999994) (0.009768524) (0.010020383499999994) (0.010161495000000006) (0.009930253) (0.009790720499999989) (0.010003690499999995) (0.0099288045) (0.009884968500000008) (0.00985004249999999) (0.009417948999999995) (0.009503557499999996) (0.009378630999999998) (0.009550218499999999) (0.009496452500000002) (0.009373288500000007) (0.009350478500000009) (0.009420091500000005) (0.009598115500000004) (0.009515335000000014) (0.009477012000000007) (0.00954955149999999) (0.009416979999999991) (0.00956896900000001) (0.009690797000000001) (0.009687175000000006) (0.009464778000000007) (0.009401518499999997) (0.009518823499999995) (0.0098303785) (0.009300876499999985) (0.009391025499999997) (0.009578513499999997) (0.009557864) (0.009556515999999987) (0.009534340000000002) (0.009436379499999994) (0.009457641000000017) (0.009807208000000012) (0.009609907) (0.009394165999999995) (0.009685424999999998) (0.009598041500000001) (0.009594731999999995) (0.009594082000000004) (0.009630465500000004) (0.00956000500000001) (0.009412238000000003) (0.00979650700000001) (0.009417776999999988) (0.009442475000000006) (0.009641921000000012) (0.009594297499999987) (0.009613722000000005) (0.009541958000000003) (0.009563636500000014) (0.009688690499999986) (0.009571742000000008) (0.009680816000000009) (0.009685947499999986) (0.009493078999999988) (0.009609101500000009) (0.009426274000000012) (0.009421711999999999) (0.009741065500000007) (0.009454899000000003) (0.009602756500000004) (0.009706613500000003) (0.009649455000000015) (0.009738064000000005) (0.0096469265) (0.009765467999999985) (0.009589324999999996) (0.009724722000000005) (0.0094637095) (0.009516768499999995) (0.009443049499999995) (0.009494772500000012) (0.009574883499999992) (0.009407626000000002) (0.009345691999999989) (0.009299138499999998) (0.009411279999999994) (0.009442363500000009) (0.009493792000000001) (0.009611258500000011) (0.009397271000000013) (0.009669505999999994) (0.009484104499999993) (0.009656090499999992) (0.009538976000000005) (0.009432089000000005) (0.009477681000000016) (0.009630127999999988) (0.009641110999999994) (0.009518648000000005) (0.00947223550000001) (0.009458950500000007) (0.009646809000000006) (0.0095116695) (0.009649952000000003) (0.009412269000000001) (0.009677774500000014) (0.00946830600000001) (0.00946308350000001) (0.009553280499999997) (0.009724564500000005) (0.009606241500000001) (0.010020361500000005) (0.0098140865) (0.009825858499999979) (0.009772255999999993) (0.010100693500000008) (0.009742617999999995) (0.009630621000000006) (0.009736530000000007) (0.009966204000000006) (0.010022677499999993) (0.009942472000000008) (0.009573863500000002) (0.009760294499999989) (0.0098346505) (0.009775520999999995) (0.009789517000000011) (0.009867909500000008) (0.009841889999999992) (0.009619748999999997) (0.009584893499999997) (0.01013942150000001) (0.009715352999999996) (0.00974238249999998) (0.009608307499999996) (0.009598590000000004) (0.009600605499999998) (0.009901049499999995) (0.009887639500000003) (0.009617661) (0.009592918500000006) (0.009412060499999986) (0.009343973999999991) (0.009394011999999993) (0.009392418999999999) (0.00946247700000001) (0.009685942499999989) (0.009693687999999992) (0.009593812000000007) (0.009418978500000008) (0.009442712000000006) (0.009842636499999988) (0.00964109149999999) (0.009570654999999997) (0.009551255000000008) (0.009477827000000008) (0.009528373000000007) (0.009461409500000004) (0.0092909885) (0.009505293999999997) (0.0093220195) (0.009416874999999991) (0.009426085999999986) (0.009388870500000007) (0.009573309000000002) (0.009772879000000012) (0.009551509) (0.009817752499999999) (0.009405284000000014) (0.009789236000000007) (0.0095461815) (0.00969875349999999) (0.00941589050000001) (0.009847444999999996) (0.009902873500000006) (0.009766122000000002) (0.009662861500000008) (0.01007862000000001) (0.00965919350000001) (0.009853207999999988) (0.0096547825) (0.009867136999999984) (0.009772885500000009) (0.009868969000000005) (0.009726799999999994) (0.010194406000000003) (0.009927179999999994) (0.009978632000000001) (0.010183436000000004) (0.009898652499999994) (0.009816298000000001) (0.009801534) (0.009709120999999987) (0.009741290000000014) (0.009871352) (0.00987801399999999) (0.009772828499999997) (0.010209252500000002) (0.010224693499999979) (0.010072188999999995) (0.009969534000000002) (0.009986904500000005) (0.009949642500000008) (0.009994723499999997) (0.009958509000000018) (0.009629345499999997) (0.009618482499999997) (0.009435133999999998) (0.009589768999999998) (0.009616696499999994) (0.009540715499999991) (0.009321156999999997) (0.009668224500000003) (0.009553142000000014) (0.0094709355) (0.009829046999999994) (0.009644902999999996) (0.009437947000000002) (0.009459589000000004) (0.00969043650000001) (0.009465622999999992) (0.009545793499999997) (0.009321054999999995) (0.009327992000000007) (0.009500795499999992) (0.00940961400000001) (0.00946533749999999) (0.00944173600000002) (0.009439202999999993) (0.0097407885) (0.009764545500000013) (0.009400480499999989) (0.009571964500000002) (0.009633497500000004) (0.009621619999999997) (0.009756865500000003) (0.009717104500000004) (0.009475981499999994) (0.009446762499999997) (0.009543477999999994) (0.009515552999999996) (0.009616001999999998) (0.009765772000000006) (0.009593878500000014) (0.009527251) (0.009555071999999998) (0.009555937) (0.009715681000000004) (0.009638721500000003) (0.009560637499999983) (0.009479963499999994) (0.009829762999999991) (0.009496111500000001) (0.009525324500000001) (0.009541190000000019) (0.009636844500000005) (0.009538098999999994) (0.009656692499999994) (0.00947360600000001) (0.009440554500000004) (0.009488339999999998) (0.009818902500000004) (0.009790077499999994) (0.009856610500000001) (0.009619772000000013) (0.009647877499999999) (0.009952350499999998) (0.009660364500000004) (0.009698615000000008) (0.009453334000000008) (0.009530484499999992) (0.00956992050000001) (0.009492250999999993) (0.009342587999999999) (0.009538206000000007) (0.009601202999999989) (0.009448575000000015) (0.009720498499999994) (0.009500906999999989) (0.00940125850000001) (0.009506261000000002) (0.009402748500000016) (0.009595972000000008) (0.009484067999999998) (0.009651948499999993) (0.009387765000000006) (0.009403169999999988) (0.009348061000000005) (0.009425429500000013) (0.009487519999999985) (0.009353209000000001) (0.009438609) (0.0095637435) (0.009639834) (0.009588227000000005) (0.009425039499999996) (0.009499317500000007) (0.009631741999999999) (0.009483889500000009) (0.009546376999999995) (0.009516831500000003) (0.009804870499999993) (0.0097432945) (0.00972374749999999) (0.009666403000000004) (0.00985034550000001) (0.00998515250000001) (0.009687832000000007) (0.009879058499999982) (0.009772841500000018) (0.009876039500000017) (0.009899507999999987) (0.009932627000000013) (0.009850693000000008) (0.010116506999999997) (0.009968061) (0.009985364999999996) (0.009739545000000016) (0.009704560000000015) (0.009689979500000001) (0.00982022149999999) (0.009669922499999997) (0.009755105) (0.0098503635) (0.010016128500000013) (0.010131396) (0.00990281649999998) (0.009645202500000005) (0.0097125755) (0.010029722000000005) (0.009867589499999996) (0.009955340500000007) (0.009837992500000003) (0.009256814000000002) (0.009391171500000003) (0.009514110000000006) (0.00959362100000001) (0.009453222499999997) (0.009365428999999995) (0.009311443500000002) (0.009655200999999988) (0.009864039000000005) (0.009487322500000006) (0.009757326499999996) (0.009891853499999992) (0.009667758999999998) (0.009722741999999993) (0.0096843395) (0.009569916999999997) (0.009847349000000005) (0.009366620499999992) (0.009409805999999993) (0.009622021500000008) (0.009576415500000005) (0.009657445499999986) (0.009357058500000001) (0.009574906000000008) (0.009540347000000005) (0.009606377000000013) (0.009580640000000001) (0.009589638000000011) (0.009669655) (0.009808898499999982) (0.00957637950000001) (0.00962615850000001) (0.009946539000000004) (0.009720320000000005) (0.009781932999999993) (0.010116309500000004) (0.00981069150000001) (0.009705473500000006) (0.009611696999999988) (0.009674389499999991) (0.009885687500000018) (0.009776993999999997) (0.009795910000000019) (0.009970995999999996) (0.010074112999999996) (0.0099211565) (0.009741047000000017) (0.00995742899999999) (0.009865737999999999) (0.009629157500000013) (0.009695259999999997) (0.009632144999999995) (0.009799293000000014) (0.0099549855) (0.009619064999999996) (0.009607206999999993) (0.010315470999999993) (0.009960450499999982) (0.00973982000000001) (0.009804564000000002) (0.010344701500000011) (0.010166319000000007) (0.009897960000000011) (0.009714157000000001) (0.009532350000000009) (0.009584014000000002) (0.009492049499999988) (0.00937990250000001) (0.009615619000000006) (0.009903986500000003) (0.009424679499999991) (0.009564276499999996) (0.009635759999999993) (0.009849958500000006) (0.009598211499999995) (0.009716896000000003) (0.009577504) (0.009841083) (0.009729093999999994) (0.00961890650000001) (0.009439618999999996) (0.009465286500000003) (0.009572380500000005) (0.009590241499999999) (0.009473251500000002) (0.009378619500000018) (0.009361479499999992) (0.0096722115) (0.009693957500000003) (0.009554722999999987) (0.009869925999999987) (0.00956799600000001) (0.0094846965) (0.009757587999999998) (0.009443716000000005) (0.009568751) (0.009868923500000001) (0.00971949250000001) (0.009858961999999999) (0.009850492500000002) (0.009790121500000012) (0.009702237500000002) (0.0097558705) (0.009772315000000004) (0.009955422500000019) (0.0100471865) (0.009838204000000003) (0.009740869) (0.009853985999999995) (0.009792753000000001) (0.009929971499999996) (0.009813350000000012) (0.009699196000000007) (0.009890495999999985) (0.009747254499999997) (0.00982883250000001) (0.00978396550000002) (0.009584080499999995) (0.009929648) (0.009695607499999995) (0.009869229499999979) (0.010154732999999985) (0.010254268499999997) (0.009815074500000007) (0.010115817) (0.010154105499999996) (0.010208475499999994) (0.009883856499999996) (0.009455608500000004) (0.009394364500000002) (0.009427877000000001) (0.009543875499999993) (0.009475002499999996) (0.009581886499999998) (0.009736210499999995) (0.009517213499999996) (0.009832685499999994) (0.009773112499999986) (0.009707293499999992) (0.009598161499999994) (0.009605325000000012) (0.009383898499999987) (0.00963143399999998) (0.009618349499999984) (0.009613049500000012) (0.009700043499999991) (0.009331214500000004) (0.009641373999999994) (0.009417422500000008) (0.009569657499999995) (0.00952072900000002) (0.00968295000000001) (0.009814480500000014) (0.00964991400000001) (0.009505483499999995) (0.009675325500000012) (0.009950675000000006) (0.010167538000000004) (0.009589708499999988) (0.009527008000000003) (0.009809975499999998) (0.009732739500000018) (0.0097560295) (0.009793861000000015) (0.009684337500000001) (0.009843941500000009) (0.009625925000000007) (0.009851267499999997) (0.009960211999999996) (0.009948827500000007) (0.009795593500000005) (0.009969236499999992) (0.009822666499999994) (0.009860266000000006) (0.009827289000000003) (0.009795603) (0.009951331500000007) (0.009908254000000005) (0.009809758500000001) (0.00981937350000002) (0.009933638000000009) (0.009866105) (0.009788539999999998) (0.009604650499999992) (0.009888058000000005) (0.010047087499999996) (0.01002686500000001) (0.010065261000000006) (0.009849462000000003) (0.010084178499999999) (0.00987125950000002) (0.00978886150000001) (0.009552486499999999) (0.009321551499999997) (0.009757412999999993) (0.009374686500000007) (0.009583871500000007) (0.009426351000000013) (0.009315348500000015) (0.009380497999999987) (0.009604473500000002) (0.009443583000000005) (0.009517920499999999) (0.009558682499999999) (0.009595738999999992) (0.009535149499999993) (0.009570419499999996) (0.009735636500000006) (0.00958074049999999) (0.009305967499999998) (0.009587307000000003) (0.009563036499999997) (0.009418166499999991) (0.009451566500000008) (0.009557040500000002) (0.009769204000000004) (0.009665990000000013) (0.009754150500000003) (0.009391251500000003) (0.009655297499999993) (0.009787183500000005) (0.00961928400000002) (0.009461459999999991) (0.009553632000000006) (0.009739136999999995) (0.009594839500000008) (0.010039509000000002) (0.009789022499999994) (0.009943096499999998) (0.009726157499999999) (0.009666626999999997) (0.010060982999999996) (0.009644180500000002) (0.009760691000000016) (0.00992309449999998) (0.010022791999999989) (0.009889118000000002) (0.009931473499999996) (0.010036719999999985) (0.009860413499999984) (0.009687304999999993) (0.0099061025) (0.009783987999999993) (0.009877098) (0.009909540499999994) (0.009655800500000006) (0.009829056000000003) (0.009712508500000008) (0.009823073500000001) (0.009949082000000012) (0.009847152499999998) (0.009946215999999994) (0.010130933499999994) (0.009817724) (0.01003241399999999) (0.009954443500000007) (0.009465968000000019) (0.009509493500000007) (0.009549467000000006) (0.009432802000000004) (0.00934906599999999) (0.009488716499999994) (0.009480453) (0.009539035500000001) (0.009530180999999999) (0.0097275015) (0.009900812499999995) (0.009490771500000009) (0.009604954999999998) (0.009490049999999986) (0.009688225999999994) (0.009638236500000008) (0.009485651000000012) (0.009573022999999986) (0.009423055999999999) (0.009654122000000001) (0.009712276000000006) (0.009490115000000007) (0.009595597000000011) (0.009589241499999984) (0.009903989500000002) (0.00942084700000001) (0.009390936500000002) (0.00967411) (0.009624070999999998) (0.009760414499999995) (0.009579793000000003) (0.009448941000000002) (0.009913309000000009) (0.009971316999999993) (0.009996034) (0.009900996999999995) (0.009859094999999998) (0.009665479000000005) (0.009943381500000001) (0.009633363000000006) (0.010009260999999992) (0.009963021000000002) (0.009719455500000002) (0.009896335999999992) (0.009954682500000006) (0.010022444500000005) (0.009851447999999985) (0.009739646000000005) (0.009703664) (0.009872491499999997) (0.009607616) (0.009875182999999996) (0.009759374000000015) (0.009706077499999993) (0.009793891499999999) (0.00986314399999999) (0.009964976499999986) (0.009978362500000004) (0.009883534499999999) (0.010278797499999992) (0.010036889000000007) (0.010358008499999988) (0.010031351499999994) (0.009924331500000008) (0.0095152805) (0.009422924999999999) (0.009484611500000018) (0.009404102999999997) (0.009461788499999998) (0.009432626) (0.009431051999999981) (0.009538147999999996) (0.009434631999999998) (0.009672272999999995) (0.009629697500000006) (0.009640436499999988) (0.00950569350000001) (0.009572532000000009) (0.009513419499999995) (0.009595767500000005) (0.009585944999999998) (0.009373537500000015) (0.009537890500000007) (0.009393555500000011) (0.009421556499999997) (0.009508098500000006) (0.009403148) (0.009393968000000003) (0.009646844500000001) (0.009708034500000004) (0.009515248000000004) (0.009805633499999994) (0.009561182500000015) (0.009612971000000012) (0.009593232000000007) (0.009639521500000012) (0.009763642000000017) (0.009726215999999996) (0.009882804499999995) (0.009688271499999984) (0.01002604700000001) (0.010056856000000003) (0.009743709500000003) (0.009688651000000006) (0.009858443499999994) (0.009938185000000002) (0.00988869349999999) (0.009986372000000007) (0.009895089999999995) (0.010102770499999997) (0.00971921249999999) (0.009862142000000004) (0.009714550500000002) (0.009859941499999997) (0.009786738500000003) (0.00997274799999999) (0.009821869499999997) (0.00989823849999999) (0.009859160999999991) (0.009829690500000002) (0.009901594) (0.00998119750000001) (0.009775045999999996) (0.009962010500000007) (0.010052528500000005) (0.009949590000000008) (0.009708006499999991) (0.009733574000000009) (0.009484827500000001) (0.009468429) (0.0097109435) (0.0094208915) (0.009456538) (0.009459817999999995) (0.009428582500000005) (0.00953169949999999) (0.009759092499999997) (0.009628471999999999) (0.009470864499999995) (0.009597523499999996) (0.009576833999999992) (0.009604738999999987) (0.009569838999999983) (0.009536065999999996) (0.009430057000000006) (0.009522421500000003) (0.009621744000000002) (0.009435455999999995) (0.0096021845) (0.009586174000000003) (0.009591026000000002) (0.009380475499999999) (0.009701053999999987) (0.009773973499999991) (0.009610567999999986) (0.009552389999999994) (0.009694324000000004) (0.00953067249999999) (0.009520455000000011) (0.009803761999999994) (0.009872320000000004) (0.009670397999999997) (0.009815455) (0.009715797499999998) (0.009650636000000004) (0.00999736200000001) (0.009799003500000014) (0.009945595500000001) (0.009969755999999996) (0.010173995000000005) (0.010044012500000005) (0.010168295000000008) (0.010182258999999985) (0.009892118999999991) (0.010120038000000012) (0.009795178500000015) (0.010071163000000008) (0.009783783500000004) (0.009891704000000001) (0.00990049400000001) (0.010116110500000011) (0.009793568500000002) (0.00984358149999999) (0.0098863005) (0.010063681000000005) (0.009989280499999989) (0.009985438500000013) (0.009727535999999981) (0.010093678999999994) (0.010115773999999994) (0.0098941585) (0.009812926500000013) (0.009471813999999995) (0.009462476999999997) (0.009550570999999994) (0.009364768999999995) (0.009340177500000005) (0.009265907500000004) (0.009376019) (0.009474211499999996) (0.009563668000000011) (0.009459562000000005) (0.009418321000000007) (0.00948341450000001) (0.009441503000000004) (0.009571787500000012) (0.009439330999999995) (0.009606018999999993) (0.009353693499999982) (0.009408191999999996) (0.009554871999999992) (0.009534288000000002) (0.009412369000000004) (0.009451425000000013) (0.009477650000000004) (0.009361220000000003) (0.009780272000000007) (0.0095776105) (0.009461730499999987) (0.00961564999999999) (0.009557544000000001) (0.009562290000000001) (0.0093865365) (0.009378505499999995) (0.009802594499999998) (0.009583367499999995) (0.009953811000000007) (0.009630332499999977) (0.009813761500000004) (0.009781359500000003) (0.009628993000000002) (0.009695437500000001) (0.009871375999999987) (0.010051862499999994) (0.010032061999999994) (0.009862794999999994) (0.009874506500000005) (0.009843686500000004) (0.009979113999999997) (0.009693301500000001) (0.009965131500000002) (0.009660431999999997) (0.009998336999999996) (0.009863389500000014) (0.009993241) (0.009649577000000006) (0.009878288999999998) (0.009670839) (0.009774935499999998) (0.009706436999999984) (0.00987618400000001) (0.00978744799999999) (0.010227127500000002) (0.009808240999999995) (0.0099520575) (0.009847249000000002) (0.0093218345) (0.009830742000000003) (0.009401264999999992) (0.009523411500000023) (0.009360358999999999) (0.00944869000000001) (0.009588958499999994) (0.009323388499999988) (0.009648880999999998) (0.009622547000000009) (0.009670624499999989) (0.009556741999999993) (0.009520780500000006) (0.009461321999999994) (0.009502324999999992) (0.009582049499999995) (0.009530028499999996) (0.009306954499999992) (0.009377696000000005) (0.009802046500000008) (0.009399013499999984) (0.00942191399999999) (0.009650502500000005) (0.00946951700000001) (0.009653464500000014) (0.009560316999999999) (0.009624557499999992) (0.0096300505) (0.009496143499999998) (0.009778396000000009) (0.009373273000000001) (0.009511282999999995) (0.009895953499999999) (0.009878846999999996) (0.009661218) (0.009868174499999993) (0.009674544500000007) (0.009934260499999986) (0.0098668685) (0.009734043499999998) (0.009916576999999996) (0.00981401200000001) (0.009790576500000009) (0.009887916999999996) (0.009680406999999988) (0.009805362499999998) (0.009717313499999991) (0.009767642500000007) (0.009780772999999993) (0.009773531500000016) (0.009803091) (0.00962109500000001) (0.009818347000000005) (0.009635794000000003) (0.009868756500000006) (0.009867737500000001) (0.009785001000000002) (0.009930222499999988) (0.009895987500000009) (0.009825685) (0.00985465449999999) (0.009780503499999996) (0.010004412000000004) (0.009782561500000009) (0.0092561315) (0.009371398999999989) (0.009462205000000001) (0.009414851500000002) (0.009606292499999988) (0.009421070500000003) (0.009547209000000001) (0.009412173499999982) (0.009686212999999999) (0.009691896000000005) (0.009588984999999994) (0.009556361499999999) (0.009378181) (0.009598389999999998) (0.010025447500000007) (0.009664498499999993) (0.00951966700000001) (0.009577710500000003) (0.009519141500000008) (0.009516306999999988) (0.009475298000000007) (0.009302453500000002) (0.009516166999999992) (0.009622611000000003) (0.009751404500000005) (0.009381030999999998) (0.009512977499999992) (0.009548323500000011) (0.009691851000000001) (0.009611725000000002) (0.009686544499999991) (0.009512694999999988) (0.009743031999999999) (0.009735420500000008) (0.009651487) (0.009644153000000003) (0.009701452) (0.009730853499999997) (0.009839110499999984) (0.009912207500000006) (0.010047190999999997) (0.009886833499999997) (0.010164509499999988) (0.009867863000000004) (0.009809380000000006) (0.009699183) (0.010058716500000009) (0.009992448000000001) (0.009853089999999995) (0.009790279999999998) (0.009593090499999998) (0.009956447499999993) (0.009946474499999983) (0.009983197499999999) (0.0100168105) (0.009970425500000005) (0.009982349499999987) (0.010024214500000003) (0.010111839000000011) (0.009800545000000008) (0.009905134499999996) (0.009991294500000011) (0.00989185400000002) (0.009703377000000013) (0.009789198499999999) (0.009539012000000013) (0.009448618999999991) (0.009339276500000007) (0.0095101155) (0.009322806000000003) (0.009491549000000002) (0.009823859500000004) (0.009424197999999995) (0.009553517500000011) (0.009676400500000001) (0.009634989999999996) (0.009414817500000006) (0.009445737999999995) (0.009431530499999993) (0.00955837150000001) (0.009650530000000004) (0.009597611000000006) (0.009557860499999987) (0.009564352000000012) (0.009452884000000009) (0.0095021255) (0.009787448000000004) (0.00956634549999999) (0.009504333500000003) (0.009709676) (0.009522939000000008) (0.009539977000000005) (0.009534760500000003) (0.009479935000000009) (0.009645038999999994) (0.009535137999999985) (0.009782399499999997) (0.0097328005) (0.00966115649999999) (0.00977823849999998) (0.009836400999999995) (0.00979877550000001) (0.009835289499999997) (0.009757272499999997) (0.009984657999999993) (0.0098384205) (0.009943577000000009) (0.010024752499999998) (0.009702950500000002) (0.009846313500000009) (0.009936357500000007) (0.010101755500000018) (0.009857873499999989) (0.009992212) (0.00979187699999999) (0.009836025999999984) (0.009752354500000004) (0.009918645500000003) (0.009815462499999983) (0.009803087000000002) (0.009981939499999995) (0.009795633999999998) (0.010060983499999995) (0.009903549999999997) (0.009798299499999996) (0.009869006500000013) (0.009938361000000007) (0.009863515000000003) (0.009363756499999987) (0.009405010500000005) (0.009443589500000002) (0.009365833500000004) (0.009738318499999996) (0.0094692205) (0.009675301500000011) (0.009421243999999995) (0.009562776499999995) (0.009805824000000005) (0.009425936499999996) (0.009630572500000004) (0.00968478049999999) (0.009642408000000005) (0.009396012999999995) (0.009542039500000016) (0.009567235499999993) (0.009429718000000004) (0.00940671400000001) (0.009540388499999983) (0.009440940499999995) (0.009358598499999995) (0.009384796499999987) (0.009331362999999995) (0.0095072125) (0.009629945) (0.0095613175) (0.009729823499999998) (0.009678355999999985) (0.009768818999999998) (0.009866487499999993) (0.009590263500000001) (0.009705290000000005) (0.009862566499999989) (0.009817984000000002) (0.009845454000000003) (0.009661463500000009) (0.009931087499999991) (0.009778212499999994) (0.009831019499999996) (0.009873176499999997) (0.01013420000000001) (0.009980976500000002) (0.009896175499999993) (0.010030932999999992) (0.009898892500000006) (0.0100044185) (0.010009347000000002) (0.00974033349999999) (0.009704978500000003) (0.009765356500000003) (0.010240597000000018) (0.009764667000000005) (0.009721656500000009) (0.009888827500000003) (0.009698295999999995) (0.010061191999999983) (0.00986736349999999) (0.009989963000000004) (0.010086741499999996) (0.010125560499999992) (0.00981854900000001) (0.009922835500000005) (0.009975313500000013) (0.009377594500000003) (0.009441549499999993) (0.009393822499999996) (0.009692811999999995) (0.009423763499999988) (0.00941408299999999) (0.009300225999999995) (0.009407934999999992) (0.0095592065) (0.009505063500000008) (0.009467245500000013) (0.009689313000000005) (0.009669367499999998) (0.009626989500000002) (0.00962183450000001) (0.009506691500000011) (0.009659728000000006) (0.009643188999999996) (0.009382820000000014) (0.00949344299999999) (0.009430590500000002) (0.009369909999999995) (0.00952549400000001) (0.009417142000000003) (0.00976704299999999) (0.009486513000000016) (0.009531537499999992) (0.0097141855) (0.009603793999999999) (0.009885438999999996) (0.009653755) (0.009498899499999991) (0.009783258500000003) (0.009782169499999993) (0.009775374000000003) (0.010078044500000008) (0.009891580499999997) (0.009861787999999996) (0.009688111999999999) (0.009926783000000008) (0.009953199499999996) (0.009739074) (0.010073249000000006) (0.00993809000000001) (0.009851639999999995) (0.009672049000000016) (0.010055702) (0.010028436500000001) (0.010350267999999996) (0.009900352000000001) (0.009840860000000007) (0.0097668365) (0.009813035999999997) (0.010026784999999996) (0.010235251499999987) (0.009603228500000005) (0.009892849999999995) (0.00982424200000001) (0.009873959000000002) (0.010150964499999998) (0.010058756500000002) (0.010139543499999987) (0.00989034350000001) (0.010116095499999991) (0.009666414000000012) (0.009486995499999984) (0.009401759999999995) (0.009691747) (0.009678482499999988) (0.009573947) (0.009677346500000003) (0.009636314999999993) (0.009692164000000003) (0.009414355500000013) (0.009787201499999995) (0.009451315000000002) (0.009528883500000002) (0.009742565999999994) (0.00962639300000001) (0.009559605499999985) (0.009527753) (0.009533900999999984) (0.009647655500000005) (0.009906781000000003) (0.009443986500000015) (0.009595964000000012) (0.009510525999999991) (0.009579883500000011) (0.009585983500000006) (0.00960818350000002) (0.009639906500000003) (0.009425573500000006) (0.009480588499999984) (0.009415865999999995) (0.009654177000000014) (0.00945204799999999) (0.009993386500000007) (0.009664148999999997) (0.00974581849999999) (0.00994421849999999) (0.0097980545) (0.009632369000000016) (0.009672643000000009) (0.009761909499999999) (0.009690942499999994) (0.009760167) (0.009992406999999995) (0.01000048050000002) (0.009898448500000004) (0.010082677499999998) (0.009897460499999997) (0.010475086000000008) (0.010194309499999998) (0.009763878500000003) (0.009656096500000017) (0.009839884499999993) (0.010056785999999998) (0.009829642000000013) (0.009844996999999994) (0.009766234999999998) (0.009964373499999998) (0.01005906149999998) (0.010049964499999994) (0.010126076999999997) (0.010004562000000009) (0.010063805999999995) (0.010158981000000011) (0.0098431135) (0.009599697000000004) (0.009618306499999993) (0.009468100500000007) (0.00959438) (0.00967781949999999) (0.009553225500000012) (0.009459747000000004) (0.009511041999999997) (0.009439782499999994) (0.009728935500000022) (0.009649910000000012) (0.0095844405) (0.009644894500000015) (0.009621279499999996) (0.009630966500000004) (0.009796431999999994) (0.009654169000000004) (0.009562419500000002) (0.009543320499999994) (0.00985399499999999) (0.009652038500000001) (0.009823235000000013) (0.009582492499999998) (0.00959314800000001) (0.009686550499999988) (0.009725998999999985) (0.009644255000000004) (0.009747261999999993) (0.009647653500000006) (0.009617063500000009) (0.009640222000000004) (0.009581765500000006) (0.009744859999999994) (0.010101999) (0.009663515499999997) (0.009831365999999994) (0.009672397500000013) (0.009679696500000001) (0.009671295999999996) (0.009989907000000006) (0.010660222499999997) (0.0099480505) (0.010150204499999996) (0.009978767499999985) (0.009822172500000004) (0.009982849999999988) (0.010023220999999999) (0.010070873500000008) (0.009893029999999997) (0.009782024) (0.010007276500000009) (0.009747929000000002) (0.010187809499999992) (0.009808522) (0.009899289500000005) (0.009845145000000013) (0.00991744500000001) (0.009842056000000002) (0.009965802999999995) (0.010185291999999999) (0.010082151500000011) (0.009979520999999991) (0.010170323499999995) (0.009867319999999999) (0.009383719999999984) (0.00965283850000001) (0.009508964499999994) (0.009468999499999992) (0.009453272499999998) (0.009470131500000006) (0.009581990500000012) (0.009548713499999986) (0.009395478999999998) (0.009638573999999997) (0.009468735000000006) (0.009631610999999998) (0.009386078500000006) (0.009423932999999995) (0.009589148999999991) (0.009459053500000009) (0.009361557000000006) (0.009576651000000005) (0.009487318999999994) (0.009597209999999995) (0.009532943000000002) (0.009574273499999994) (0.00933225850000001) (0.009333318000000007) (0.009541224000000001) (0.009369868500000003) (0.009432682000000012) (0.009588367) (0.009592925000000016) (0.009676339499999992) (0.009735468499999997) (0.009695546499999999) (0.00994851549999999) (0.010204468999999994) (0.009666016999999999) (0.009809012000000006) (0.009888103999999995) (0.009741059000000024) (0.010036381999999996) (0.009697299999999992) (0.009786801999999997) (0.009660013999999995) (0.009799117499999996) (0.009819281499999985) (0.00984215749999999) (0.009708842999999995) (0.009900115000000001) (0.010043456000000006) (0.009830359499999997) (0.0097728225) (0.010004702000000018) (0.009666875000000005) (0.009871752499999997) (0.009760632500000005) (0.009755654500000002) (0.009680063500000002) (0.009971066) (0.009877426999999994) (0.00990102100000001) (0.01006686150000001) (0.009922110499999998) (0.010054061500000003) (0.009972907499999989) (0.009892870999999998) (0.009473468000000013) (0.00960097800000001) (0.009443226499999999) (0.009370322000000014) (0.009559014500000004) (0.009451465999999992) (0.010201894500000003) (0.009323273499999993) (0.009522040999999995) (0.009396261999999989) (0.009519142499999994) (0.009557918999999998) (0.009683223000000005) (0.009571728000000002) (0.009476064000000006) (0.00953180300000002) (0.009604986999999995) (0.009466858999999994) (0.009685185499999999) (0.009475615500000006) (0.009522306999999994) (0.009315676999999994) (0.009518142999999993) (0.00958498449999999) (0.009560047500000016) (0.009539549000000008) (0.009591896999999988) (0.009400497500000007) (0.009493311000000004) (0.009475043499999988) (0.009546692999999995) (0.009562626500000004) (0.009761389999999995) (0.009671844499999999) (0.010006025000000016) (0.00969970349999999) (0.009914566000000014) (0.0097044045) (0.009690478999999988) (0.009799247499999997) (0.009936874999999998) (0.009895507500000011) (0.00991474199999999) (0.009921108499999998) (0.009961707999999986) (0.009889940500000013) (0.009960803500000004) (0.010015233499999998) (0.009812218000000011) (0.010222819000000008) (0.009626173000000002) (0.009720235500000007) (0.009768803000000006) (0.009793487000000017) (0.009808816999999997) (0.009886240500000004) (0.009947448000000012) (0.010204905499999986) (0.010023153999999979) (0.010080177499999995) (0.009859472999999994) (0.010119324999999998) (0.009783837500000003) (0.01023390099999999) (0.009389143500000002) (0.009462009000000007) (0.009499302000000001) (0.009523668999999998) (0.009471467499999997) (0.00950801150000001) (0.009626931000000019) (0.009440588999999985) (0.009502536499999992) (0.009530864) (0.009452840000000004) (0.009698794499999996) (0.009653306000000014) (0.009641268499999994) (0.009409890500000018) (0.009547191499999996) (0.00953997999999999) (0.009450469000000003) (0.009382276999999994) (0.009573332500000004) (0.009659619500000008) (0.009511936999999998) (0.0095422555) (0.009423459999999995) (0.009493347500000013) (0.009602136999999997) (0.009691651999999995) (0.009507198999999994) (0.009409025500000015) (0.009640799499999991) (0.009524662999999989) (0.009398235000000005) (0.009961989500000018) (0.009723038000000003) (0.009813999500000004) (0.010053887999999997) (0.009620904999999999) (0.009667613000000005) (0.009749079499999994) (0.009884153999999992) (0.009845157999999993) (0.009867930499999997) (0.00984834050000001) (0.009697774000000006) (0.009882473500000002) (0.009963433000000008) (0.010013944999999996) (0.009951567499999994) (0.009968151500000022) (0.009925162499999987) (0.009766132999999996) (0.009685565999999993) (0.00965580549999999) (0.009712947999999999) (0.009796423999999998) (0.009789117) (0.010099405999999991) (0.009879316500000013) (0.009743132500000001) (0.009851052499999999) (0.009829066000000011) (0.009964972000000016) (0.009841277999999995) (0.009889046499999998) (0.009441074499999993) (0.009606693999999999) (0.0094283275) (0.009348002999999994) (0.00961066499999999) (0.009471499500000008) (0.009420320999999982) (0.009559073000000001) (0.009595551500000007) (0.009944729999999999) (0.009411452) (0.009841673999999995) (0.00969399550000001) (0.009590940000000006) (0.009427335500000009) (0.009532359000000004) (0.009680661500000007) (0.009548800999999996) (0.009584373999999993) (0.009536011000000011) (0.009447971000000013) (0.009445339499999997) (0.009565143999999998) (0.009477081499999998) (0.009649096999999995) (0.009636153000000008) (0.009646200500000007) (0.009425745000000013) (0.009788128500000007) (0.01001933000000002) (0.00964184550000001) (0.00964730300000001) (0.009930513500000016) (0.009721629499999995) (0.00975975200000001) (0.00967174300000001) (0.009781015500000004) (0.01004980400000001) (0.009716316500000002) (0.009798562499999983) (0.009996559500000002) (0.010052318500000018) (0.00996080349999999) (0.010046061499999995) (0.00995913150000001) (0.009839655000000003) (0.010016980999999994) (0.009837031499999996) (0.009729606000000002) (0.009817686500000006) (0.009965098000000006) (0.009799612999999999) (0.009971200999999999) (0.009822829000000005) (0.00982840800000001) (0.009639767999999993) (0.010015834500000015) (0.010001469999999998) (0.009902081999999993) (0.009758240000000001) (0.010055136000000006) (0.009991198500000006) (0.009725998500000013) (0.009864026999999997) (0.009346325000000003) (0.009624450500000006) (0.009561782500000018) (0.00947730400000002) (0.009766491999999988) (0.009324223000000006) (0.0094272715) (0.009301495499999993) (0.009513545499999998) (0.00960060750000001) (0.009518926000000011) (0.009513919499999995) (0.009535989499999994) (0.009564240000000002) (0.009473097) (0.009897486999999996) (0.009447452500000009) (0.009496010000000013) (0.00952318299999999) (0.009316638000000002) (0.009525924000000005) (0.009370514499999996) (0.009333328000000016) (0.009682576999999984) (0.009644032499999997) (0.009726680500000001) (0.009548955499999998) (0.009736452000000007) (0.009461944) (0.0096647225) (0.009483790000000006) (0.009492390999999989) (0.009839142999999995) (0.009785993500000006) (0.009923804999999994) (0.009949965500000005) (0.009709126500000012) (0.0097480405) (0.009739870500000011) (0.009777788499999995) (0.009799798499999998) (0.009839566999999994) (0.009926483) (0.009895693499999997) (0.009959049999999997) (0.0100582325) (0.009842210000000004) (0.01000367549999999) (0.00975047050000001) (0.009807966000000001) (0.009863357000000003) (0.009716595500000008) (0.009733119999999998) (0.009668994499999986) (0.009737505000000007) (0.00965049150000001) (0.009941063000000014) (0.009992516999999992) (0.010000997999999997) (0.01007361250000001) (0.010226570000000004) (0.010111063500000003) (0.010038446500000006) (0.009935633999999985) (0.00966641900000001) (0.009550629500000005) (0.009462781500000003) (0.009439933499999997) (0.009602937500000006) (0.009564009999999998) (0.009498496999999995) (0.009452003999999986) (0.009713439000000004) (0.009858494999999995) (0.009578579500000003) (0.009661544500000008) (0.009524085999999987) (0.0095901345) (0.009846253500000013) (0.009739862000000002) (0.009389720000000004) (0.009335030499999994) (0.009609535500000002) (0.0094558015) (0.009385693) (0.00938398850000001) (0.009410571000000006) (0.009517877499999994) (0.009701284500000004) (0.009717661500000002) (0.009603252500000006) (0.009945836999999999) (0.00956713749999999) (0.009640040999999988) (0.009737282) (0.009810513999999992) (0.009711418999999999) (0.009812056) (0.009735087000000003) (0.009623868499999993) (0.010046032499999996) (0.009630374499999997) (0.00985332500000001) (0.009715348999999998) (0.0098434315) (0.009757281999999992) (0.009769144000000007) (0.009965946500000003) (0.010188794500000015) (0.01014074999999999) (0.009839887000000005) (0.010005452999999997) (0.009793334500000014) (0.009694335499999998) (0.009677723500000013) (0.009756548500000004) (0.00981009699999999) (0.00976871600000001) (0.009914363999999995) (0.009761628499999994) (0.010029465000000001) (0.010290004500000005) (0.010037680500000007) (0.010051207000000006) (0.0102293215) (0.009889429000000005) (0.00985514550000001) (0.00998905450000001) (0.009546395000000013) (0.009535427000000013) (0.009510116999999985) (0.009559086999999994) (0.009472576499999996) (0.009525693499999988) (0.009380351000000009) (0.009421971500000001) (0.009562091500000008) (0.009533751999999993) (0.009942390999999995) (0.009940686500000004) (0.009644422500000013) (0.00946636499999999) (0.009518434499999992) (0.009428876000000003) (0.009410238000000001) (0.009352285000000002) (0.009568172999999985) (0.009920779000000018) (0.009518700000000005) (0.009589677000000005) (0.009743911500000008) (0.009667810000000013) (0.009630555999999998) (0.009588651000000004) (0.009697741499999996) (0.00951672399999999) (0.009676267000000002) (0.009691128000000007) (0.009651907500000001) (0.009751819000000009) (0.009642375999999994) (0.009716607500000016) (0.009918055999999995) (0.00981183799999999) (0.009708448500000008) (0.009935399000000011) (0.00976426100000001) (0.009794451499999995) (0.009913606500000005) (0.009900852500000001) (0.010058787999999999) (0.010272320500000001) (0.009847966500000013) (0.010175631000000004) (0.00991542749999999) (0.01010786050000001) (0.0099001175) (0.010059573500000002) (0.009724410500000003) (0.010021325999999997) (0.009949413000000004) (0.009914156499999993) (0.009819126000000011) (0.010040786999999995) (0.00982471750000001) (0.009848167500000005) (0.009984048499999995) (0.009907960499999993) (0.010213809000000004) (0.009877768000000009) (0.009988442000000014) (0.009886978500000004) (0.009429728499999998) (0.009511304499999998) (0.0094726215) (0.010121551000000006) (0.009532405000000008) (0.009531132999999997) (0.009501371499999994) (0.009567001499999991) (0.009587481000000009) (0.009554223) (0.0097433205) (0.009600720999999993) (0.009821249500000004) (0.009664786499999994) (0.00941656099999999) (0.009536587500000013) (0.009630934499999994) (0.009449389499999988) (0.009554407000000001) (0.009493914500000006) (0.009638407999999987) (0.0096696795) (0.00966205149999999) (0.009464324499999996) (0.009645922000000001) (0.0097507275) (0.009778583499999993) (0.009937857500000008) (0.009626163000000007) (0.009822519500000002) (0.009560972000000001) (0.009649868000000006) (0.009842704500000007) (0.009801147499999996) (0.009837313499999986) (0.009848186500000009) (0.009799274499999996) (0.009865684999999985) (0.009731363500000006) (0.009781932000000007) (0.010023448500000004) (0.010078969499999993) (0.010057441500000014) (0.010034841000000003) (0.010117400499999998) (0.009981276500000011) (0.00979601749999999) (0.009789180999999994) (0.01003132449999998) (0.009993001999999987) (0.009814784499999993) (0.010253360000000003) (0.00980278050000001) (0.009876252000000002) (0.0098401875) (0.009992685500000001) (0.010097952000000007) (0.009880024000000001) (0.00992544599999999) (0.01011439850000001) (0.009908802999999994) (0.010155805500000017) (0.009936077500000001) (0.009786643499999984) (0.00949598950000001) (0.009499340500000009) (0.009332730999999997) (0.009363024500000011) (0.009512304499999999) (0.009748767500000005) (0.0092481445) (0.009578850999999985) (0.009691891499999994) (0.009543109000000008) (0.009700407500000008) (0.009677437499999997) (0.009711928000000009) (0.009611054499999994) (0.009605158999999988) (0.009717555500000002) (0.009480855499999996) (0.009658690999999997) (0.009344793500000004) (0.009590982499999998) (0.009432432500000004) (0.009442244000000002) (0.009471424499999992) (0.009451438999999992) (0.0095937985) (0.009462838499999987) (0.009628474499999998) (0.009582069499999998) (0.009535652000000006) (0.009713496500000002) (0.0097245995) (0.009531578000000013) (0.009676655000000006) (0.009836992000000003) (0.009735926499999992) (0.009825066500000007) (0.009859583500000005) (0.00971066449999998) (0.009872605999999992) (0.010040941499999997) (0.009940138000000015) (0.009956545999999997) (0.009956747500000002) (0.009818531500000005) (0.01004770549999999) (0.009962404999999994) (0.00998967249999999) (0.010021290000000016) (0.009816283499999981) (0.009740365499999987) (0.009651230499999996) (0.010038656999999979) (0.009840585999999998) (0.00980388850000001) (0.01002483600000001) (0.009749372499999992) (0.009952819499999987) (0.00990315500000001) (0.00990152100000001) (0.009950527500000014) (0.009836273000000006) (0.010180231999999997) (0.010041999999999995) (0.009999123000000013) (0.009666579000000022) (0.009613487500000004) (0.009373298500000002) (0.009556860499999986) (0.009487469499999998) (0.009565347500000002) (0.009507367000000003) (0.009571682499999998) (0.00955468100000001) (0.009701486500000009) (0.009706948500000007) (0.009421857499999992) (0.009598174500000015) (0.009647533) (0.009486945499999996) (0.009647647999999995) (0.0095602605) (0.00932685150000001) (0.00977882250000002) (0.009412502000000003) (0.009601736) (0.009479261999999988) (0.009463242499999983) (0.009506456999999996) (0.009647627000000006) (0.009882818500000001) (0.009442793000000005) (0.009703454500000014) (0.009446780499999988) (0.00962739) (0.009552950500000004) (0.009529366999999997) (0.010138231500000025) (0.010055843499999995) (0.009945984000000005) (0.009892238499999984) (0.00995642799999999) (0.009814022999999991) (0.009866889000000004) (0.009913701999999996) (0.010041102499999996) (0.009846480500000004) (0.010207392999999995) (0.010035830999999995) (0.009918883000000003) (0.0098666335) (0.009806346000000007) (0.009717953999999987) (0.009769232000000003) (0.00969999299999999) (0.009764174999999986) (0.009708495000000011) (0.009745565499999997) (0.00990071499999999) (0.010248396999999992) (0.009771547500000005) (0.009884426499999988) (0.009853759500000003) (0.009772289000000003) (0.009965294999999999) (0.009907937999999991) (0.009871361499999995) (0.009959873000000008) (0.010006272999999996) (0.00939340150000001) (0.009546526999999999) (0.009459420999999996) (0.009494203000000007) (0.009462628499999987) (0.009665591499999987) (0.009500051500000009) (0.009733838499999994) (0.009645724499999994) (0.009648327500000012) (0.009698035500000007) (0.00950635399999998) (0.009591411500000008) (0.009655736499999998) (0.009639680500000011) (0.009556441999999998) (0.009595826000000002) (0.009399363500000008) (0.009617115499999995) (0.009492172999999993) (0.009443809999999997) (0.009410176500000006) (0.009567261499999993) (0.0093246565) (0.009767966500000017) (0.009679281999999997) (0.00943795) (0.00975724700000001) (0.009591559499999985) (0.009672338500000002) (0.009655150500000001) (0.009869797500000013) (0.009683494) (0.0096632465) (0.009912492999999994) (0.009761124499999996) (0.009804711499999993) (0.009623496999999995) (0.009784293) (0.009737991499999987) (0.009768176000000003) (0.010071779999999989) (0.009946693999999992) (0.00990234050000001) (0.010039094500000012) (0.010001190999999993) (0.010012225000000013) (0.010061797499999997) (0.009934073500000001) (0.009721241999999991) (0.009779447499999996) (0.010087583000000011) (0.009881319500000013) (0.009879538999999993) (0.009822144000000005) (0.009694465999999999) (0.010023798999999986) (0.009761459499999986) (0.009991061999999995) (0.0100175225) (0.009760392000000007) (0.010081420000000008) (0.009825937000000007) (0.009854547000000005) (0.009413004000000003) (0.009579477500000003) (0.00949758249999999) (0.009673674000000007) (0.00947829650000001) (0.009422172999999992) (0.009437301999999995) (0.009564572999999993) (0.009658459500000008) (0.009592423500000002) (0.009890155999999997) (0.009772878500000012) (0.0096988155) (0.009765076499999997) (0.009790513) (0.009690552500000019) (0.009660609) (0.009474697000000004) (0.009569941999999998) (0.009452012499999995) (0.009562656000000003) (0.0098350985) (0.009399796000000002) (0.009522375999999999) (0.009684009500000007) (0.009549107000000015) (0.009761883999999998) (0.00969138600000001) (0.009526441499999996) (0.009635851) (0.009543950499999995) (0.009527079000000008) (0.009682458500000005) (0.009725224500000004) (0.009797337500000017) (0.00983795250000001) (0.009774340999999992) (0.009845102000000008) (0.010032058499999996) (0.009892396499999997) (0.010164945500000008) (0.009834003499999994) (0.009878193999999993) (0.010109060500000017) (0.009946453999999993) (0.009825149499999991) (0.009880640499999996) (0.009795209999999999) (0.009879161999999997) (0.01005330950000001) (0.009927690500000017) (0.009908275499999994) (0.009789329499999999) (0.009720638000000004) (0.009737671500000003) (0.009934754000000004) (0.009912221499999999) (0.009938789000000003) (0.010179463) (0.010027987000000002) (0.009830373500000003) (0.009915438499999998) (0.009884647499999996) (0.009865979499999997) (0.009555855500000002) (0.009313332999999993) (0.009440409499999997) (0.009564465499999994) (0.009592823500000014) (0.009404974499999996) (0.009494850999999999) (0.009469973499999992) (0.009532997500000001) (0.009425750499999996) (0.009569940499999999) (0.009605560500000013) (0.009429597499999998) (0.009539204999999995) (0.009523231500000007) (0.009438252999999994) (0.009336256499999987) (0.00952389499999999) (0.00976774150000001) (0.009339977) (0.009331102000000008) (0.009577253000000008) (0.009615867000000014) (0.009465614000000011) (0.009452232000000019) (0.009687759000000004) (0.009600190499999994) (0.009622661500000004) (0.009614102499999985) (0.009561263000000014) (0.009669426500000008) (0.009534207499999989) (0.009726421999999998) (0.009753828499999992) (0.0099365275) (0.009808450499999996) (0.0100984925) (0.009880382500000007) (0.009824846499999998) (0.009884905500000013) (0.010061525500000001) (0.009793301500000004) (0.009984250999999986) (0.009748010500000001) (0.009826751000000009) (0.009892595000000004) (0.009733296500000002) (0.00968748350000001) (0.009831187000000005) (0.009718191999999987) (0.009886492499999996) (0.009664193500000001) (0.009687226499999993) (0.009766022499999999) (0.009705811499999994) (0.009946742499999994) (0.009985788500000009) (0.009921659500000013) (0.010014880500000004) (0.010695778500000003) (0.00992375999999999) (0.010242596000000007) (0.009816694) (0.009955268999999989) (0.009492117499999994) (0.009410704500000006) (0.009398364500000006) (0.009598487499999989) (0.009567516499999998) (0.00945385850000001) (0.009633626999999992) (0.0094608615) (0.009573106499999998) (0.009728540500000007) (0.009635531000000003) (0.009520936999999993) (0.009523504500000016) (0.009580354999999985) (0.009549685000000002) (0.009566296999999988) (0.0093827685) (0.009701765999999987) (0.009412854499999998) (0.009778184499999995) (0.009920915000000002) (0.009617670000000009) (0.009487052999999995) (0.009349625) (0.009458679499999997) (0.009825194499999995) (0.0095771895) (0.009524651999999995) (0.009686992499999991) (0.00966516249999999) (0.009955751499999999) (0.009732173499999996) (0.009756477999999999) (0.009858156000000007) (0.009701999500000003) (0.009781293999999996) (0.009688755500000007) (0.00976941349999999) (0.009776316500000007) (0.009696074999999998) (0.009937446000000003) (0.009839811500000004) (0.009777068) (0.010069648) (0.010060515499999992) (0.009944610000000007) (0.009951135) (0.009951321499999999) (0.009750120000000001) (0.009885032500000002) (0.009841358000000008) (0.009730473500000003) (0.010102346499999998) (0.009981196999999997) (0.009739986999999992) (0.009664945000000008) (0.009891774499999992) (0.009909763999999988) (0.010008088500000012) (0.010114587499999994) (0.009912800999999999) (0.009926390999999993) (0.009992702999999992) (0.010035930500000012) (0.009707607500000007) (0.009475884000000004) (0.009566161000000004) (0.009579512499999998) (0.009609579500000007) (0.009895175999999992) (0.00945020349999999) (0.009398951500000002) (0.0097207225) (0.009415366000000008) (0.009507672000000009) (0.009495664499999987) (0.009470602500000008) (0.009568378000000002) (0.009474156999999997) (0.009651370500000006) (0.009552726999999997) (0.00931294199999999) (0.009432803000000003) (0.009526511999999987) (0.009620293500000002) (0.009416927500000005) (0.009616652500000003) (0.00945902400000001) (0.009646800499999997) (0.009636046999999995) (0.009668540000000003) (0.009566295499999988) (0.009728368000000001) (0.009779167000000005) (0.009611055999999993) (0.009537716500000001) (0.009934115500000007) (0.009781882000000006) (0.010031654999999987) (0.009683546499999987) (0.009672143499999994) (0.010180401500000005) (0.009932468) (0.009527717000000005) (0.010017779000000004) (0.010023548499999993) (0.009824080999999998) (0.009790820000000006) (0.009915245000000003) (0.010110491500000013) (0.009737164000000006) (0.00992875600000001) (0.009832306000000013) (0.010029770500000007) (0.009939795000000001) (0.009961675499999989) (0.009882281000000007) (0.009860279999999999) (0.009799155000000004) (0.009809995500000002) (0.010018312500000015) (0.01007134500000001) (0.009847039500000015) (0.010260786000000008) (0.010067757999999996) (0.009893449499999998) (0.010185826499999995) (0.009942072499999996) (0.009648852999999999) (0.009550394500000003) (0.009445757499999985) (0.009409320499999999) (0.009562561000000011) (0.009471868499999994) (0.009543073499999999) (0.00963843049999999) (0.00951335099999999) (0.009614723500000005) (0.009754081500000011) (0.00964462349999999) (0.009581609500000005) (0.009775792000000005) (0.009688014000000009) (0.009730281500000007) (0.0098671345) (0.009662852999999999) (0.00946090500000002) (0.00944747) (0.009748921500000007) (0.0095569145) (0.00938258900000001) (0.00970688850000001) (0.009694373000000006) (0.009551524500000005) (0.0097630425) (0.00977856449999999) (0.00989624900000001) (0.009641526500000011) (0.00987758200000001) (0.009789206500000008) (0.009872620500000012) (0.009982323500000001) (0.009717165) (0.009669981000000008) (0.009863650000000002) (0.010061886500000006) (0.009795920999999999) (0.009931172500000002) (0.009938175999999993) (0.009987541500000002) (0.009962293999999997) (0.010038723999999999) (0.009991978999999998) (0.009908416500000003) (0.009917993) (0.01006882349999999) (0.009872614500000002) (0.010172459500000008) (0.009867401999999997) (0.009911617499999997) (0.00992122699999999) (0.009754213499999997) (0.0097311645) (0.009948897499999984) (0.009998321500000004) (0.009792641000000005) (0.0098315135) (0.010225395499999998) (0.009875966) (0.009888888499999998) (0.00997347300000001) (0.009878327000000006) (0.009423987999999994) (0.009439202500000007) (0.009477936499999992) (0.009425479000000014) (0.009270865999999989) (0.009544058999999994) (0.009494149000000007) (0.00950526950000001) (0.009538465999999995) (0.009569409000000001) (0.009623547999999996) (0.009380596000000005) (0.009357055999999989) (0.009690929000000015) (0.009824735499999987) (0.009461460000000005) (0.009611544999999999) (0.009505674500000005) (0.009298344500000014) (0.009754512500000007) (0.009356353499999998) (0.009663651499999995) (0.009386587000000002) (0.009416533000000019) (0.009564378499999998) (0.009402479000000005) (0.00969743150000002) (0.009345201500000011) (0.009505538000000008) (0.009391436000000003) (0.009487986000000004) (0.009714054) (0.009616499500000014) (0.009631321499999984) (0.00968860449999999) (0.009830264000000005) (0.009638709500000009) (0.009835890000000014) (0.009912170000000012) (0.009646877499999998) (0.0096898505) (0.009904029499999994) (0.009842573500000007) (0.009823113499999994) (0.009796255500000003) (0.00979613850000001) (0.010182643500000005) (0.009902984500000003) (0.009864930500000008) (0.009957393500000009) (0.009967771) (0.009970566500000014) (0.00984836) (0.009728644500000008) (0.009997833999999997) (0.009604707000000018) (0.009852512999999993) (0.010102963999999992) (0.0099239) (0.009831498999999994) (0.009834091500000003) (0.009971652500000011) (0.009840616999999996) (0.009923663) (0.009371910499999997) (0.009513198499999986) (0.009474185999999996) (0.0094148795) (0.009453818499999989) (0.009472363500000011) (0.009442192999999988) (0.009358721499999986) (0.009519607499999999) (0.009687861499999992) (0.009456290500000006) (0.009620022500000006) (0.00953625100000001) (0.009732695000000013) (0.009511945000000008) (0.009770455499999997) (0.009595780499999998) (0.009567390499999995) (0.009361522499999983) (0.009489171000000005) (0.009385825) (0.00952009899999999) (0.009309168500000006) (0.009335691499999993) (0.009578450999999988) (0.00968130099999999) (0.00964488749999999) (0.009490550000000014) (0.009611507000000005) (0.009549190999999999) (0.009681461000000002) (0.00943803800000001) (0.009697530499999996) (0.009874501999999993) (0.009803469500000009) (0.009895270500000011) (0.009694820499999993) (0.009811868000000001) (0.009706427000000004) (0.010355914500000007) (0.009729587499999998) (0.009894211500000014) (0.009787087500000013) (0.010007741499999986) (0.010003159999999997) (0.009891699000000004) (0.010081747000000002) (0.009809146000000005) (0.009872146999999998) (0.00977704750000001) (0.00979079699999999) (0.009782978499999997) (0.009696885499999988) (0.00969515600000001) (0.009884571500000008) (0.009761111000000017) (0.010036389999999992) (0.0102239675) (0.009747155000000007) (0.009971961500000001) (0.010019628500000002) (0.010086513500000005) (0.009983033000000002) (0.01006691550000001) (0.009412157500000018) (0.009633876999999999) (0.009613653500000013) (0.009347611000000006) (0.009607691000000002) (0.009454774000000013) (0.009541257500000011) (0.009451172000000008) (0.00958008099999999) (0.009546991000000005) (0.00954245599999999) (0.009493601500000004) (0.009559337000000001) (0.009512085000000003) (0.00984474199999999) (0.009432470999999998) (0.009425855999999996) (0.009641848499999994) (0.009511118999999998) (0.00941143500000001) (0.009506948999999987) (0.009960602499999999) (0.00961466300000001) (0.009650884499999998) (0.009369108000000001) (0.009468718500000015) (0.009573493500000002) (0.009634283499999993) (0.009450404999999995) (0.009569083000000006) (0.009412946500000005) (0.009534391000000003) (0.009888237499999994) (0.009794065500000004) (0.009790036000000002) (0.009661905999999998) (0.010005091000000008) (0.009780393500000012) (0.009843484999999999) (0.009966237499999989) (0.00991309500000001) (0.009829216500000001) (0.009891394500000011) (0.009801611000000016) (0.009825420500000001) (0.009864476999999996) (0.009831349999999989) (0.010081471000000009) (0.009880248000000008) (0.009711523500000013) (0.009605465500000007) (0.009907370499999998) (0.009773462999999996) (0.00996009149999999) (0.009684508000000008) (0.00971387550000001) (0.010119405999999997) (0.009926724499999998) (0.009846619499999987) (0.010095872499999992) (0.009972854499999989) (0.010026189500000018) (0.009674713499999987) (0.009744591499999997) (0.009433244999999993) (0.009514983000000005) (0.009530154499999999) (0.0094304905) (0.009571603999999984) (0.009495344000000003) (0.00946503700000001) (0.009459697499999989) (0.009565104500000005) (0.009504461000000006) (0.009474037000000005) (0.009598570499999987) (0.0095437045) (0.009880759000000003) (0.009503828500000006) (0.009675024000000004) (0.009626033999999992) (0.009466208000000004) (0.009495230499999993) (0.009503969000000001) (0.00964669700000001) (0.009773202500000008) (0.009523086500000014) (0.009440125499999993) (0.0096606095) (0.009608355999999998) (0.009480200999999994) (0.009528758499999998) (0.009914212500000005) (0.009770387500000019) (0.009614943) (0.009617585999999997) (0.00978975800000001) (0.009769101999999988) (0.009668680499999999) (0.009718408999999997) (0.009829848000000002) (0.009716742000000014) (0.009585696000000005) (0.009782681000000001) (0.009883907000000011) (0.009998484499999988) (0.009888260499999996) (0.010667578499999997) (0.009855686499999988) (0.009986936500000002) (0.009974544999999987) (0.009717951000000002) (0.009804871000000007) (0.009753585000000009) (0.00976146750000001) (0.009867319500000013) (0.010385700499999984) (0.009986612500000006) (0.010114483999999993) (0.009980963499999995) (0.009873613500000017) (0.010028491500000014) (0.00997779750000001) (0.009819395500000008) (0.010079700499999997) (0.00995886750000001) (0.009846803000000001) (0.009765114999999991) (0.009415474499999979) (0.009432732000000013) (0.009471487000000015) (0.009518263499999999) (0.009412006500000014) (0.009481350999999999) (0.009522430499999998) (0.009421384500000005) (0.009493571000000006) (0.009413147999999996) (0.009589498500000015) (0.009526174000000012) (0.009495040499999996) (0.009538308500000009) (0.009480897999999988) (0.009453235500000004) (0.00971595800000001) (0.009578008999999985) (0.009542724499999988) (0.00942618349999999) (0.009444879999999989) (0.009615763) (0.009482828999999998) (0.009461287499999999) (0.009827337500000005) (0.00980574499999999) (0.009402337999999996) (0.009516014500000003) (0.00963272200000001) (0.009478570999999991) (0.00966143350000001) (0.009519230000000004) (0.009802868500000006) (0.009777811999999997) (0.009893752500000005) (0.009803075499999994) (0.009659576500000003) (0.009823993000000003) (0.01006840149999999) (0.009880186499999999) (0.010087274500000007) (0.009846249000000001) (0.009977945000000016) (0.009929048999999995) (0.009928922000000007) (0.009795298999999993) (0.009906904500000008) (0.010013678999999998) (0.009733174499999997) (0.0105110925) (0.009777948500000008) (0.009629379999999993) (0.009738140999999992) (0.009744935499999996) (0.009813232500000005) (0.009774292000000004) (0.009887593) (0.009927137000000003) (0.00985116400000001) (0.00985000350000001) (0.009818196500000001) (0.009803831499999999) (0.009760900000000003) (0.009933111500000008) (0.009583416499999997) (0.00958585699999999) (0.009519977500000013) (0.009592179000000006) (0.009542511999999989) (0.009724305499999988) (0.009528969999999998) (0.009538515000000011) (0.00952418699999999) (0.009472215500000006) (0.009497869499999992) (0.009759684000000005) (0.009349763999999997) (0.009668182999999997) (0.009502770999999993) (0.009616282000000004) (0.009825783500000004) (0.009425186000000002) (0.009474255999999986) (0.009424292) (0.009490034000000008) (0.009533785999999989) (0.009592222500000011) (0.009461844000000011) (0.009600849500000008) (0.009581375000000003) (0.009751587499999992) (0.00976906100000001) (0.009480580000000002) (0.009376439) (0.009473383000000002) (0.009599657499999997) (0.009690308500000008) (0.009717126999999992) (0.009681978999999993) (0.010037350500000014) (0.00992259849999999) (0.0097528895) (0.009729905499999997) (0.010109941499999997) (0.009997911999999998) (0.009908759499999989) (0.009960090500000005) (0.009951093999999994) (0.010258900499999987) (0.010083890499999998) (0.010098348000000007) (0.0097441385) (0.009795226000000018) (0.009797477999999998) (0.009625290500000008) (0.009759714499999989) (0.010042204999999998) (0.009718361000000009) (0.009817543999999997) (0.009985078500000008) (0.010129831000000006) (0.010111807) (0.010220950500000006) (0.009917373999999993) (0.010351015500000005) (0.010396598500000007) (0.009918974000000011) (0.009816831500000012) (0.009462402499999994) (0.009252011000000004) (0.009382276499999995) (0.009461577499999999) (0.009426596499999995) (0.00952971200000001) (0.009454851500000014) (0.009457514999999986) (0.009560517500000004) (0.009624270500000004) (0.009541337999999996) (0.00967002900000001) (0.009752831000000003) (0.009611524499999996) (0.009720382999999999) (0.009673091499999995) (0.009397536500000012) (0.009403993) (0.009465174499999993) (0.009514345999999993) (0.009478961000000008) (0.009579916999999993) (0.009613281000000001) (0.009429176000000011) (0.009854033999999998) (0.009849740499999995) (0.009597661499999993) (0.009485388999999997) (0.009733031000000003) (0.009777535000000004) (0.00953878900000002) (0.0094467565) (0.009824304500000006) (0.009759857499999997) (0.00975521800000001) (0.009906298999999993) (0.009829783000000009) (0.009694046499999998) (0.009806264500000009) (0.009794098000000001) (0.01027222600000001) (0.010097934000000003) (0.009819179499999997) (0.009861855000000003) (0.010142169500000006) (0.010192635500000005) (0.010248330000000014) (0.009883318499999988) (0.00994304850000001) (0.010069823000000006) (0.009808526500000012) (0.009737446999999996) (0.009773302500000011) (0.009752628000000013) (0.009963848000000011) (0.010080887499999996) (0.009937366000000003) (0.010064728999999994) (0.009996330999999997) (0.009895988499999994) (0.010351880999999993) (0.009943966499999998) (0.009920083999999996) (0.009921272000000009) (0.009420401499999995) (0.009414680000000009) (0.009388165500000004) (0.0094822725) (0.009702474000000003) (0.009383890500000006) (0.009513136500000019) (0.009391803500000004) (0.009724527499999983) (0.009716914000000007) (0.0096154195) (0.009707485500000002) (0.009815759999999993) (0.009676729999999995) (0.009591985999999997) (0.009464479499999998) (0.009898170500000011) (0.00964552149999999) (0.009597129499999996) (0.009535024500000003) (0.009537754499999995) (0.009632296499999998) (0.009572307999999988) (0.00945766649999999) (0.009729289000000002) (0.009688095499999994) (0.009535444500000004) (0.009882966999999993) (0.009504827000000007) (0.009836721000000007) (0.009548732500000004) (0.009711854000000006) (0.009833799000000004) (0.009704994000000008) (0.010085722499999991) (0.009687466000000006) (0.010062039500000008) (0.009942417500000009) (0.009921320000000011) (0.009830078000000006) (0.009874973999999995) (0.010008866500000005) (0.009871813000000007) (0.009919410500000003) (0.009855861500000007) (0.009932636499999994) (0.009787607000000004) (0.010280062000000006) (0.009805118000000002) (0.009821772000000006) (0.009907367000000014) (0.009903365500000011) (0.009962907999999993) (0.009904649500000001) (0.009812456999999997) (0.00983725399999999) (0.009920534999999994) (0.009981020999999993) (0.01004284250000001) (0.009867676500000006) (0.009896216) (0.010089537499999995) (0.009892890500000001) (0.009936677000000005) (0.009283400000000011) (0.009521767) (0.009490336999999988) (0.009474990500000002) (0.009338828499999993) (0.009421923999999984) (0.00933167900000001) (0.009463590499999994) (0.009425464499999994) (0.009548367500000016) (0.009525793000000005) (0.009625319000000021) (0.009651745500000003) (0.009476618000000006) (0.009657917000000002) (0.009556239499999994) (0.009603400000000012) (0.009453150499999993) (0.009594709999999992) (0.009400007500000002) (0.00942237600000001) (0.009438852499999997) (0.009549714) (0.009716004) (0.009546999) (0.009463862999999989) (0.009367244499999997) (0.009692688500000005) (0.009653535000000005) (0.009750502000000008) (0.009598910499999988) (0.009602285000000002) (0.010175024000000005) (0.00986260700000001) (0.009650780499999997) (0.009816901000000003) (0.009791846000000007) (0.009787214500000002) (0.009832789500000008) (0.009710094000000016) (0.009900976499999992) (0.009777656999999995) (0.010099999999999998) (0.009791359999999985) (0.00991581200000001) (0.009820636500000007) (0.00979888249999998) (0.009861075499999997) (0.009874922500000008) (0.009716444500000004) (0.009989087499999993) (0.009844929500000002) (0.010049800999999997) (0.009920152499999987) (0.00974286349999999) (0.009769954999999997) (0.00990695250000001) (0.01009604850000001) (0.01021881949999999) (0.010144007999999996) (0.009913633000000005) (0.009866245999999995) (0.009996100000000008) (0.009889895499999996) (0.009452543999999993) (0.009463232500000002) (0.009392491499999989) (0.009465047500000004) (0.009333429500000004) (0.009536839500000005) (0.00961563850000001) (0.009473164000000006) (0.009621481999999987) (0.009698695500000007) (0.00950229250000001) (0.009653857500000002) (0.009588544500000004) (0.00954894199999999) (0.009633420500000003) (0.009463544500000004) (0.009600041500000003) (0.009409536499999996) (0.009573759000000001) (0.009497405000000014) (0.009290748000000001) (0.009495089499999984) (0.009508042999999994) (0.00952314700000001) (0.009558755500000002) (0.009632031) (0.009576515000000022) (0.009787636500000002) (0.009598382500000016) (0.009681792999999994) (0.009719392499999993) (0.00977114350000001) (0.009765799500000005) (0.009862373000000008) (0.009846517499999999) (0.009832419999999994) (0.009740591499999993) (0.009849511000000005) (0.009639343999999994) (0.009614991500000003) (0.009888463000000014) (0.0097740625) (0.009970245500000002) (0.010359362499999983) (0.009858544999999996) (0.009726590499999993) (0.010019263500000014) (0.009953528500000003) (0.009842281500000008) (0.010130555500000013) (0.009708986500000003) (0.009656749999999992) (0.009725668499999993) (0.009737130499999996) (0.009675071999999993) (0.009982626500000008) (0.010078697500000011) (0.010014560000000006) (0.009805782500000013) (0.009903941) (0.009806212499999994) (0.009989955499999995) (0.00992565949999999) (0.00993620299999999) (0.009601613999999994) (0.009332577499999994) (0.00968666700000001) (0.009408106999999999) (0.009524525499999992) (0.009377472499999998) (0.009496835000000009) (0.009611449499999994) (0.009714153499999989) (0.009630488499999992) (0.009520679000000004) (0.009583868999999995) (0.009788932500000014) (0.009802747) (0.009454561) (0.009658399999999998) (0.009419826500000006) (0.009500193000000004) (0.009630177500000003) (0.009511563) (0.009501758000000013) (0.009656764999999998) (0.009418255000000014) (0.009442761500000008) (0.009635796000000002) (0.009686449500000013) (0.009452119499999995) (0.009747463499999998) (0.009851642999999993) (0.009597566500000015) (0.009734208499999994) (0.009755118500000007) (0.009640597500000014) (0.009893995500000002) (0.009631488999999993) (0.009807297000000006) (0.009814664) (0.010073146500000019) (0.00971815999999999) (0.009639002500000007) (0.009936687) (0.009951859999999993) (0.009866183999999986) (0.010003309999999987) (0.009866622000000005) (0.010073130999999999) (0.010065954000000016) (0.009661141000000012) (0.009830005499999989) (0.009777943499999997) (0.009940058500000001) (0.009719996999999994) (0.0099476795) (0.009798405499999996) (0.009638981500000005) (0.00972155000000001) (0.010132289999999988) (0.010069686999999994) (0.00998702450000001) (0.009967983500000013) (0.010243363500000005) (0.010131962499999994) (0.009807353000000005) (0.009976457500000008) (0.009510011499999999) (0.009516375000000007) (0.009690527500000004) (0.009614323499999994) (0.009582493500000011) (0.00957976599999999) (0.009569528000000008) (0.009667470000000011) (0.009625728500000014) (0.009500686500000008) (0.009878035000000007) (0.00951002649999999) (0.009437928999999998) (0.009688172000000009) (0.010061926999999984) (0.009707577500000009) (0.009738204999999986) (0.009885023999999978) (0.009655277000000004) (0.009533634499999999) (0.009695785500000012) (0.009847620499999987) (0.009464954499999984) (0.009790495499999996) (0.009851718500000009) (0.009565418000000006) (0.009450059499999997) (0.009664475000000006) (0.009737408000000003) (0.009758055500000001) (0.009702824499999999) (0.009743535000000011) (0.009978900999999998) (0.009625452999999978) (0.009750954999999992) (0.010041627999999983) (0.010011950499999991) (0.009876740999999994) (0.009828050500000005) (0.009859113000000003) (0.010001316499999996) (0.009829836499999994) (0.009783229000000018) (0.009931093000000002) (0.010661232000000007) (0.009951377999999997) (0.009933756999999988) (0.010025423999999991) (0.009955671500000013) (0.009715884999999994) (0.009736855000000003) (0.009937356000000008) (0.009698292499999997) (0.009796535000000009) (0.009886909999999985) (0.009889269500000006) (0.009820797999999992) (0.009977400000000011) (0.01009575800000001) (0.009867490499999992) (0.009966899500000001) (0.01031038099999998) (0.009995205999999993) (0.00974789399999998) (0.011816238999999992) (0.013766589499999995) (0.011668002999999996) (0.012102182000000003) (0.011826167000000012) (0.011768642499999996) (0.011667955000000008) (0.011864085999999996) (0.012083663500000008) (0.01175082949999999) (0.011912671500000013) (0.011588493000000005) (0.011903935500000004) (0.012173295) (0.011743971500000006) (0.011973839) (0.011623153499999997) (0.011701569499999995) (0.011579714000000005) (0.011972205999999985) (0.011842674500000011) (0.01158517199999999) (0.011630473500000002) (0.011882689500000002) (0.012174360499999995) (0.012070508000000008) (0.011658910000000008) (0.011703531499999989) (0.011977153500000004) (0.012034391000000005) (0.011898836999999995) (0.011814129499999992) (0.011929858500000015) (0.011964330499999995) (0.012228157500000003) (0.012102717999999998) (0.012086507499999996) (0.011851464500000006) (0.012107379500000001) (0.012330546499999998) (0.012339412500000008) (0.011917848999999994) (0.01230996849999999) (0.011925630000000007) (0.012320045500000001) (0.012182545000000003) (0.011978283000000006) (0.011951417000000006) (0.011980732500000008) (0.012305373000000008) (0.012818064000000004) (0.012159033) (0.012207215000000007) (0.012091311500000007) (0.012045186499999999) (0.011965705499999993) (0.012130555000000015) (0.011845703999999999) (0.012688267499999989) (0.012123686000000009) (0.012413445999999995) (0.012416936000000003) (0.012344111500000005) (0.0122613315) (0.011631703999999993) (0.0117169315) (0.011638854500000004) (0.01167679599999999) (0.011608126999999996) (0.012008823999999987) (0.011843112500000003) (0.011606128999999993) (0.011898667000000002) (0.011879077499999988) (0.011945042500000003) (0.011687985500000012) (0.012052140000000003) (0.012488793499999998) (0.011869260000000006) (0.012188809000000009) (0.0119298095) (0.011742818000000002) (0.011697157) (0.01166102049999998) (0.011919401499999996) (0.011835987999999992) (0.011801570000000011) (0.011512936500000015) (0.011995154000000008) (0.012260175999999998) (0.011892894000000015) (0.011795791) (0.012082072999999999) (0.01177115350000002) (0.012026590000000004) (0.011774634499999992) (0.012273158000000006) (0.01221842849999999) (0.012363316999999999) (0.012111164500000007) (0.012203447000000006) (0.01191300549999999) (0.012082600499999985) (0.012037185500000006) (0.012395931999999998) (0.012253603000000002) (0.01226079649999999) (0.012228705500000006) (0.012190813500000008) (0.012044955499999996) (0.012166549999999998) (0.011940896500000006) (0.012032548500000004) (0.012418118000000006) (0.012215900500000001) (0.012171382000000008) (0.01235209100000001) (0.012063123000000009) (0.011998336999999998) (0.012325959499999997) (0.012045289) (0.012027288499999997) (0.012031706000000003) (0.012258302000000013) (0.012034269999999986) (0.012099952000000011) (0.012159230499999993) (0.012083939000000002) (0.011991504500000014) (0.011685161999999985) (0.012063942500000022) (0.011567027500000007) (0.011751473499999998) (0.012022018999999995) (0.01187721) (0.011733564999999987) (0.011830214499999991) (0.01162917849999999) (0.011949645499999995) (0.011758627999999993) (0.012079884499999999) (0.011986123500000001) (0.011968448500000006) (0.011990728000000006) (0.011916334) (0.011980253999999996) (0.011776887999999985) (0.011886429000000004) (0.01166744900000001) (0.011974180000000001) (0.011780379500000007) (0.011932613500000008) (0.011989924499999999) (0.011869174499999996) (0.011791470999999998) (0.012036544499999982) (0.012294903999999995) (0.01222712749999999) (0.011709272999999992) (0.011664458500000002) (0.012279250500000005) (0.012217341500000006) (0.012150777500000001) (0.012206995499999998) (0.012205963499999986) (0.011951518000000008) (0.012280382499999992) (0.01198663250000001) (0.012357353500000001) (0.012367124499999993) (0.012246348500000004) (0.012147631500000006) (0.012215370500000003) (0.012032720999999996) (0.012144249999999995) (0.012242057000000015) (0.012355571999999995) (0.012021089000000013) (0.01201002000000001) (0.011876345999999996) (0.0123984585) (0.011918359500000003) (0.012013340499999997) (0.012299557000000017) (0.011982819999999991) (0.012170899499999999) (0.012004617999999995) (0.012393505499999999) (0.012325675499999994) (0.012038815999999994) (0.012044114000000009) (0.012184769999999998) (0.011640271499999993) (0.011686665499999999) (0.011593477000000005) (0.011673829999999996) (0.01176980150000001) (0.011867321500000014) (0.012045893500000002) (0.012110301500000017) (0.011830482500000003) (0.011678455000000004) (0.011872582499999992) (0.011764830000000004) (0.012034239000000002) (0.011842830499999998) (0.011872577499999995) (0.011988868000000014) (0.011593007000000002) (0.012027533000000007) (0.012102089499999996) (0.01192332850000001) (0.011633477999999989) (0.011717958000000014) (0.011802222000000015) (0.011791094500000002) (0.011834875499999994) (0.012370510500000001) (0.012146544999999995) (0.012003982999999996) (0.012009513999999985) (0.01173022500000001) (0.011982218000000017) (0.011846783000000013) (0.011970504999999992) (0.011997552500000008) (0.012113246499999994) (0.012118225999999996) (0.01222616650000001) (0.012710113499999995) (0.01198387599999999) (0.012317230999999998) (0.012024939499999998) (0.012120153499999994) (0.011975060999999995) (0.012488913500000004) (0.012734910000000002) (0.012014980999999994) (0.012025636000000006) (0.01203243000000001) (0.011967613500000002) (0.012402917500000013) (0.011870332999999983) (0.012113204000000002) (0.011783794) (0.011870890999999995) (0.012033751499999995) (0.012250481500000007) (0.012281072000000004) (0.012000754000000002) (0.012039380000000002) (0.012537919000000008) (0.012488503999999997) (0.012553226999999986) (0.012118835499999994) (0.012108329499999987) (0.011726308000000005) (0.012045741499999998) (0.011814813999999993) (0.012408010000000011) (0.011684730500000004) (0.011766997000000001) (0.011801836499999996) (0.011618556500000002) (0.012100220499999995) (0.01185027150000001) (0.012006430999999998) (0.011714236000000003) (0.011845018499999999) (0.012014547) (0.0119719665) (0.011673086499999999) (0.011892373500000011) (0.011967611499999989) (0.011763144999999989) (0.011889486500000004) (0.011877494000000002) (0.011853964500000008) (0.011971234000000011) (0.011851275999999994) (0.012442905500000004) (0.011679368499999995) (0.011891847499999997) (0.01178962950000001) (0.011537912000000011) (0.011830348500000004) (0.011727356499999994) (0.011761782999999998) (0.012082319999999994) (0.012038099999999996) (0.011854714500000002) (0.011903931499999992) (0.011858570499999999) (0.012211465500000004) (0.012240469500000004) (0.01188449200000001) (0.012129790000000001) (0.0124248245) (0.012123645500000002) (0.012031219999999995) (0.012211634000000013) (0.012203280499999997) (0.01240773349999999) (0.012179004500000007) (0.012015501499999998) (0.011959292999999996) (0.011981161000000004) (0.011953312500000021) (0.012237175999999989) (0.011977259500000004) (0.012039811999999983) (0.011875799500000006) (0.012000840499999998) (0.012236636999999995) (0.012447287000000015) (0.011985491999999986) (0.012437101499999992) (0.012222819999999995) (0.012159061999999998) (0.012047143499999996) (0.011700558) (0.011811755499999993) (0.013567972000000011) (0.011981803499999999) (0.011731341000000006) (0.011559384000000006) (0.011692493000000012) (0.011940079999999992) (0.011695010999999991) (0.011748899500000007) (0.011783813500000004) (0.011858033500000004) (0.01173070050000001) (0.011890468000000001) (0.012236129000000026) (0.01163959099999999) (0.011702886499999995) (0.011735126999999998) (0.011765617000000006) (0.0120443665) (0.011591087500000014) (0.0121121815) (0.0116889835) (0.011737933000000006) (0.011694987500000004) (0.012162931500000002) (0.011747082000000006) (0.012344236999999994) (0.011777534999999992) (0.012318111999999992) (0.011739060499999995) (0.011993510499999999) (0.011991799499999997) (0.011944055000000009) (0.012012881499999989) (0.012290342499999996) (0.011967286000000008) (0.01220855500000001) (0.012239479999999997) (0.011911272500000014) (0.012120538) (0.012155015000000005) (0.012212690000000012) (0.012032495500000018) (0.012268351999999996) (0.011900576499999996) (0.012119472999999992) (0.012099695500000007) (0.012027539000000004) (0.012275349000000005) (0.011941548999999996) (0.012004381000000008) (0.01217110199999999) (0.012326987999999997) (0.012297011999999996) (0.011878846999999998) (0.012315149000000011) (0.012188845500000003) (0.012301429500000016) (0.012444664999999994) (0.012046726500000007) (0.011925609000000004) (0.011887000999999994) (0.011956718500000005) (0.01161768349999999) (0.011683304000000005) (0.011876317000000011) (0.011826702000000008) (0.011843024000000008) (0.011823777000000008) (0.011876097500000002) (0.011801266000000005) (0.012060990500000007) (0.012236139500000007) (0.011616634000000015) (0.011706077499999995) (0.011769793500000014) (0.011778457999999992) (0.012288589999999988) (0.011878029500000012) (0.011956271500000004) (0.0117483575) (0.0119973585) (0.011652496499999998) (0.011621490499999998) (0.011835998500000014) (0.011778482499999993) (0.011670898500000013) (0.012190628999999994) (0.011856567999999998) (0.012354914999999994) (0.011752030999999996) (0.012025768500000006) (0.011854939499999995) (0.012021432499999998) (0.011870341999999992) (0.012067239000000007) (0.012672698499999996) (0.012037901500000003) (0.012116551499999989) (0.012161971000000008) (0.012193716500000007) (0.012256124500000007) (0.011931926499999995) (0.014105937999999998) (0.012128893500000015) (0.011960333500000003) (0.0120429715) (0.012185621999999993) (0.012332211499999995) (0.012126561000000008) (0.012130234000000004) (0.012276829000000003) (0.012054592499999989) (0.012326501500000003) (0.012169865000000002) (0.01246051899999999) (0.012054702) (0.011978540999999995) (0.012019915500000006) (0.012186687500000015) (0.012144950000000002) (0.012218910500000013) (0.012157542000000007) (0.012031482499999996) (0.012342702000000011) (0.012024518499999998) (0.012313944499999993) (0.011797789000000003) (0.011716918000000007) (0.011617149499999993) (0.011706026000000008) (0.011586003999999997) (0.012171723499999995) (0.01193669800000001) (0.012016678500000003) (0.011706914999999998) (0.011903989000000004) (0.012014528499999996) (0.011724035500000007) (0.011767021000000003) (0.012002276000000006) (0.011813514499999997) (0.012637873500000008) (0.01172311849999999) (0.011609204999999997) (0.01180640749999999) (0.011755568499999994) (0.012000137000000008) (0.011651583000000007) (0.011822067500000005) (0.0120209545) (0.012134850499999988) (0.011875497999999998) (0.011998117000000003) (0.011999486500000003) (0.012009591500000014) (0.011786924500000004) (0.012121367500000021) (0.011873894999999995) (0.012460697499999979) (0.0119212655) (0.012427203499999998) (0.0120036855) (0.011986334999999987) (0.012009057500000003) (0.012061458000000011) (0.012173354499999983) (0.012178281999999999) (0.012163426000000005) (0.01201767699999999) (0.011958222500000004) (0.012938652999999994) (0.012490042500000006) (0.012183134999999998) (0.012157497500000003) (0.012589720999999984) (0.012185937500000008) (0.011997529500000007) (0.012085794499999997) (0.012129129000000002) (0.012453550499999994) (0.012189086000000002) (0.012241042000000008) (0.014069732000000001) (0.012115253500000006) (0.012302703999999998) (0.012222385999999988) (0.011998670999999989) (0.012150227499999985) (0.012089639999999999) (0.012120249999999999) (0.011525792499999993) (0.011716323000000015) (0.011963772999999997) (0.011917415) (0.011963518000000006) (0.011862983999999993) (0.011953158500000005) (0.011858498499999995) (0.011816218000000017) (0.011934464500000005) (0.012037073999999995) (0.01187640899999999) (0.011880281000000006) (0.011975839000000002) (0.011868133000000003) (0.01195748449999999) (0.011704971499999994) (0.011919263) (0.011897202999999995) (0.011810116499999995) (0.011921383999999993) (0.011978592999999996) (0.011668179499999987) (0.011776427999999992) (0.011721836499999999) (0.012174914000000009) (0.0118073905) (0.011906302999999993) (0.011684352499999995) (0.011935572500000005) (0.012008285500000007) (0.011757491499999995) (0.012204971500000009) (0.012148089499999987) (0.012138909500000003) (0.0121545765) (0.011916758) (0.012185718500000012) (0.012242964999999995) (0.012113575500000001) (0.012170610500000012) (0.01199977250000002) (0.012053072499999998) (0.012325626500000006) (0.012213878500000011) (0.012206029999999979) (0.012273457000000002) (0.012755074000000005) (0.012318674500000001) (0.012227733500000004) (0.01183060200000001) (0.012294350499999995) (0.012242045500000007) (0.012228738000000003) (0.012009051999999992) (0.012223733499999986) (0.012373452000000007) (0.012856438500000011) (0.0121843175) (0.012081444499999983) (0.012026679999999998) (0.012287719500000002) (0.012053010000000003) (0.012324857000000022) (0.01166368999999999) (0.011892411500000005) (0.011678521999999997) (0.011642779000000006) (0.011892104) (0.011950657000000003) (0.012093489000000013) (0.0117714025) (0.011736549499999985) (0.012052461) (0.012003307500000004) (0.012102127000000004) (0.011955574499999996) (0.011824340000000003) (0.011726698000000021) (0.011710194500000007) (0.011722082999999994) (0.012048426000000001) (0.01179884149999999) (0.011712436999999992) (0.011604237000000003) (0.011626287499999985) (0.011847417000000013) (0.012150803000000002) (0.011943526499999996) (0.011958921499999997) (0.011758994499999995) (0.012049243000000001) (0.01213138300000001) (0.011879040000000007) (0.011846520999999999) (0.012064621999999997) (0.011969767500000006) (0.01210485700000001) (0.012259066000000013) (0.012095567000000002) (0.01202114550000001) (0.011873170000000002) (0.012400995499999998) (0.012256817000000017) (0.012288714999999992) (0.012158180000000005) (0.012276285000000012) (0.012397606000000005) (0.01215909350000001) (0.012592585000000003) (0.011969716000000005) (0.01236436099999999) (0.012522235000000007) (0.0125387775) (0.012259782999999996) (0.012381890500000006) (0.011933933500000007) (0.011965338500000006) (0.012192121000000014) (0.01233820699999999) (0.012236123000000015) (0.012069618500000004) (0.012107015499999998) (0.012291617000000005) (0.01195531000000001) (0.012180481499999993) (0.012102194999999996) (0.012389978499999996) (0.011754680000000003) (0.011822518500000004) (0.012033709500000003) (0.011739822999999996) (0.011799743000000001) (0.011607154000000008) (0.01181903649999999) (0.011895531999999986) (0.011646030999999987) (0.01190933050000001) (0.011691735500000022) (0.012021877) (0.01188141949999999) (0.011762286499999983) (0.011840991000000009) (0.01180277099999999) (0.011933439500000018) (0.011996819500000006) (0.011855533000000001) (0.01183579400000001) (0.011740830000000008) (0.01174729749999999) (0.012152160999999995) (0.011805397499999995) (0.011926026499999992) (0.012373967000000013) (0.01177317600000001) (0.011811729500000007) (0.0120011815) (0.011958736499999997) (0.011693951999999994) (0.01175725250000001) (0.012258644499999999) (0.011949808000000006) (0.012343747499999988) (0.012050431499999986) (0.012248558999999992) (0.012242347) (0.012133766000000004) (0.012201894000000005) (0.012062522500000006) (0.012084427000000009) (0.012105933999999999) (0.012107419000000008) (0.0120477145) (0.012001507999999994) (0.012262272500000004) (0.012133132000000005) (0.012382114999999999) (0.012144765000000002) (0.012096189500000007) (0.012192846000000007) (0.011992402499999999) (0.011828253499999997) (0.011982720000000002) (0.012013593500000003) (0.012234823499999992) (0.012155295499999996) (0.012325621999999994) (0.012100249000000007) (0.012022878) (0.011984382000000002) (0.01208999249999998) (0.011980104500000019) (0.0115613975) (0.011569771500000006) (0.011729631000000004) (0.011811880499999997) (0.011900999999999995) (0.011776363999999998) (0.012151930000000005) (0.011907873) (0.011937925499999988) (0.012141069500000018) (0.011830471999999995) (0.011988599499999988) (0.01167528100000001) (0.012065944000000009) (0.011981927000000003) (0.01187716300000001) (0.011861433000000005) (0.011883079000000005) (0.012144456500000012) (0.011753369999999985) (0.01173697500000001) (0.011868386500000008) (0.011828981500000002) (0.0124795355) (0.012089907499999997) (0.011864047999999988) (0.011944937499999989) (0.011733350000000017) (0.012180546) (0.011832385000000015) (0.01178550149999999) (0.011738148500000004) (0.012283127000000005) (0.011878185) (0.012085477499999997) (0.012098367499999998) (0.012000134499999995) (0.012172775999999996) (0.011901035000000018) (0.012012604499999996) (0.012136756499999998) (0.012327785500000008) (0.012045488499999993) (0.012314862999999995) (0.012063188499999988) (0.012339738500000003) (0.01210142900000001) (0.012135370999999992) (0.012114867500000015) (0.012077743000000002) (0.012201385499999995) (0.012165154500000011) (0.012229060499999986) (0.012018691999999997) (0.012853486499999997) (0.012144332499999994) (0.0122206745) (0.012148947500000007) (0.012079125499999996) (0.011902131499999996) (0.012198143500000008) (0.012415884500000002) (0.012513659999999996) (0.012140179000000001) (0.011755693499999997) (0.011755540000000009) (0.01174538550000001) (0.01211598300000001) (0.011959664500000008) (0.01173755949999998) (0.011705410999999999) (0.011728269) (0.01216953200000001) (0.011906331999999992) (0.012136751500000001) (0.011802649999999998) (0.011654708) (0.011754817000000015) (0.012042986500000005) (0.011783772000000012) (0.011670564500000008) (0.011596032000000006) (0.011672095499999993) (0.011674922000000004) (0.01202180700000001) (0.011802478000000005) (0.01167241400000002) (0.01191052749999999) (0.011953190499999988) (0.011766638999999982) (0.01188502700000002) (0.012325687500000015) (0.011971777500000017) (0.0118733315) (0.011935979) (0.011911783000000009) (0.012076230499999993) (0.012046127000000004) (0.012282669999999982) (0.01198158249999999) (0.012088230000000005) (0.011925087000000001) (0.01200066100000001) (0.0121127855) (0.012189975000000006) (0.012162552000000007) (0.011904649000000003) (0.012397176999999995) (0.012070368499999998) (0.012395773499999999) (0.012795896499999987) (0.0126671805) (0.011987037500000006) (0.011901926500000007) (0.0119241395) (0.012225006499999996) (0.012170969000000004) (0.012212998000000017) (0.012291000999999996) (0.012051104000000007) (0.012357512999999987) (0.011939159500000004) (0.012046942000000019) (0.012144867000000004) (0.012380901500000013) (0.012306598999999988) (0.01200573499999999) (0.012374114000000005) (0.011900969500000011) (0.012035371500000003) (0.011924631000000005) (0.011998017) (0.012085876999999995) (0.011579106999999991) (0.011729548999999992) (0.011624749500000003) (0.011982873000000005) (0.012194258) (0.011999040500000002) (0.011910089000000013) (0.011857682000000008) (0.011710315499999999) (0.012419939500000005) (0.011821747499999993) (0.011690315000000007) (0.011848454999999994) (0.011898288999999992) (0.01165178950000001) (0.011842374500000002) (0.012058047500000002) (0.011706204499999998) (0.01165023200000001) (0.012249006500000006) (0.0118849335) (0.011673620999999981) (0.011842587000000002) (0.012077160999999989) (0.011741993999999992) (0.011856554999999977) (0.011834883000000004) (0.011988855500000006) (0.012178647) (0.01194326350000001) (0.012366675000000008) (0.012001856499999991) (0.012012962000000002) (0.012202706500000007) (0.011838824499999998) (0.012300776) (0.012305256) (0.012232160999999991) (0.012318892999999997) (0.012293040499999991) (0.011988106499999998) (0.012035276499999997) (0.012142329000000007) (0.012136163500000005) (0.012067415499999998) (0.012151751500000016) (0.012344541) (0.011942310999999997) (0.011989668999999994) (0.012213943500000005) (0.012336515499999992) (0.012183038000000007) (0.012131875) (0.012162094499999998) (0.012172146500000008) (0.012399965499999999) (0.012168890999999987) (0.012297994999999992) (0.012295378999999995) (0.011649515999999999) (0.011738532999999995) (0.011964283500000006) (0.012228593499999996) (0.011684795500000011) (0.011816846499999978) (0.011618145999999996) (0.01175248050000001) (0.012088288500000002) (0.011786366500000006) (0.011968902500000003) (0.011808146499999991) (0.011861579999999997) (0.011995066499999998) (0.011819071000000014) (0.01231911749999999) (0.011767491500000019) (0.012026377500000004) (0.01175868649999999) (0.011729247499999998) (0.011811640000000012) (0.011903837) (0.011686929000000013) (0.012292020499999987) (0.011679554499999995) (0.011727100000000004) (0.01213779999999999) (0.011752089500000007) (0.01199172200000001) (0.011837436000000007) (0.012006219000000012) (0.011817511000000017) (0.011910914500000008) (0.011957401500000006) (0.012199166500000011) (0.01192912850000001) (0.01244561000000001) (0.012425746000000001) (0.012253476) (0.012642134999999999) (0.011952732499999993) (0.012299933500000013) (0.012336764500000014) (0.012178720000000004) (0.01220863250000001) (0.012292722000000006) (0.012369852) (0.012247835499999998) (0.012211257499999989) (0.011988982499999995) (0.012229217999999986) (0.012173022000000006) (0.012588548000000005) (0.011938283500000008) (0.012213377999999997) (0.01224006100000001) (0.012073306499999992) (0.01206309350000001) (0.012235231999999999) (0.012178802500000002) (0.012182178000000002) (0.012178757999999998) (0.01225111000000001) (0.011960076) (0.011742714999999987) (0.011793252000000004) (0.0118490225) (0.011848836000000015) (0.011748331999999986) (0.011736489999999988) (0.011632637999999987) (0.012016453499999996) (0.012033896500000002) (0.012101145499999993) (0.012175848499999989) (0.0117950005) (0.0118244225) (0.01179695900000001) (0.012057158499999998) (0.011905020500000002) (0.01200176) (0.011795918500000016) (0.011626953999999995) (0.011808228500000004) (0.011852995000000005) (0.011854474500000003) (0.011951690500000015) (0.011761409500000014) (0.011798599500000007) (0.01204340949999999) (0.012040371500000008) (0.011834631500000012) (0.012019165500000012) (0.011841198999999983) (0.012069077500000011) (0.011720684499999995) (0.012387164500000006) (0.012066458500000002) (0.011989633999999999) (0.012004459500000009) (0.011938513999999997) (0.012201303499999996) (0.012373682999999996) (0.012043280000000003) (0.01249470350000001) (0.012142292499999999) (0.012034926000000001) (0.012438480000000016) (0.01211109049999999) (0.012586700000000006) (0.012255880999999996) (0.012344500000000008) (0.012053066500000001) (0.011934746999999996) (0.012115153500000003) (0.012201384999999995) (0.011935932999999996) (0.012208145500000003) (0.012067031000000006) (0.01211045949999999) (0.012439615000000001) (0.011958167499999992) (0.012471599000000014) (0.012398108500000005) (0.012372697000000002) (0.012313597999999995) (0.012291448999999982) (0.01207303300000001) (0.011826403499999999) (0.011894397000000001) (0.011610842499999996) (0.012038663999999977) (0.011918626500000001) (0.012047275499999996) (0.011614007999999981) (0.012006624500000007) (0.011758212000000018) (0.01181457050000001) (0.011903157000000011) (0.011908455999999998) (0.011718790499999993) (0.011830424000000006) (0.012051976999999992) (0.011834253500000003) (0.011840308999999993) (0.011868082999999988) (0.011516907000000007) (0.011695287999999998) (0.011749485000000018) (0.011726695999999995) (0.011665231500000012) (0.011833864) (0.01175139950000001) (0.011601761500000002) (0.011860765499999995) (0.011979762000000019) (0.011925806499999997) (0.011750667999999992) (0.01187363150000001) (0.01189256950000002) (0.012113728500000004) (0.01221866599999999) (0.012205016999999999) (0.011937011999999997) (0.012101014000000007) (0.011853422000000002) (0.012117086499999999) (0.012209842499999998) (0.012265566999999991) (0.012225579) (0.011963531) (0.012389436000000004) (0.012194114499999992) (0.01205622549999999) (0.012180658999999996) (0.012150598999999998) (0.012227223999999995) (0.011835985500000007) (0.011796523000000003) (0.0122858) (0.01206871000000001) (0.012050290000000005) (0.012090241500000001) (0.011896974000000005) (0.012112263499999998) (0.012101514000000008) (0.012191995499999997) (0.012294105999999999) (0.012225738) (0.012205635500000006) (0.012356418499999994) (0.012228184000000003) (0.0117208585) (0.011857596499999998) (0.011842296000000002) (0.0117097845) (0.011678635500000006) (0.011761019999999997) (0.011767291499999999) (0.011629592000000008) (0.012262797499999992) (0.011784581000000002) (0.012074280999999992) (0.011937728500000008) (0.011742117999999996) (0.011827551500000005) (0.01169252400000001) (0.011815847500000004) (0.011714322500000013) (0.011747954000000005) (0.011809172500000006) (0.01168248450000002) (0.011680226000000002) (0.011559116999999994) (0.011778828000000005) (0.011778897999999996) (0.011782775499999995) (0.011758801) (0.012052933500000002) (0.011759714500000004) (0.011725343999999999) (0.011949152000000005) (0.011954550499999994) (0.011726984499999996) (0.0120651435) (0.011915392999999996) (0.012121052499999993) (0.012105711000000005) (0.012008674999999996) (0.011882010999999998) (0.012094432500000002) (0.012230275000000013) (0.0118799235) (0.012173468500000006) (0.012079204999999996) (0.012228936999999995) (0.012139085500000008) (0.012205920000000009) (0.01207959900000001) (0.012152215000000008) (0.012209802999999991) (0.011854082000000002) (0.012130468500000005) (0.012477017000000007) (0.012397991000000011) (0.01207502249999999) (0.012080381000000001) (0.012023548999999994) (0.012219003500000006) (0.012080641000000003) (0.012397018999999995) (0.012233233999999996) (0.012176324000000002) (0.012279499499999985) (0.012331498499999996) (0.012311508999999998) (0.012038982999999975) (0.011557737999999998) (0.011674085999999986) (0.011781428999999996) (0.011811404499999997) (0.01198110899999999) (0.011933587499999995) (0.011784210000000003) (0.012024743000000004) (0.011735465000000014) (0.011773945500000008) (0.012153746999999993) (0.011888805500000002) (0.012191675999999999) (0.012166333000000001) (0.011822918999999987) (0.011820231500000014) (0.011879317500000014) (0.011657022500000003) (0.011768764000000015) (0.011854015999999995) (0.011797875500000013) (0.011537528000000005) (0.011638882500000003) (0.011927736000000008) (0.011767226500000005) (0.011696590500000006) (0.011884112500000002) (0.011826033500000013) (0.011778326000000006) (0.011697455499999995) (0.01245591700000001) (0.012008146999999997) (0.012097760499999999) (0.012035239500000003) (0.012202472999999991) (0.012089207000000005) (0.012022707500000007) (0.011866764499999988) (0.012260378500000002) (0.012334095499999989) (0.012004665499999997) (0.012681407000000006) (0.011937046999999992) (0.012173966999999994) (0.01259028899999999) (0.012078573499999995) (0.011931859500000003) (0.01253439549999999) (0.012066798500000017) (0.0119471295) (0.011796471000000003) (0.01207161100000001) (0.012053748500000003) (0.012223004999999995) (0.011913615000000002) (0.012882249499999998) (0.012118786999999992) (0.012246575499999995) (0.011860298499999991) (0.012093304500000013) (0.012312558500000001) (0.012494937499999997) (0.012039107000000007) (0.012217672500000012) (0.011833896999999996) (0.011784205999999992) (0.01158421300000001) (0.011869891500000021) (0.011895918000000005) (0.01164418049999999) (0.012166960500000004) (0.012057665999999995) (0.011798160999999988) (0.0119718625) (0.01178518449999999) (0.011656423500000013) (0.011962067999999992) (0.011694946999999997) (0.012054202) (0.011840450500000002) (0.011995421500000006) (0.011919961500000006) (0.011655080499999998) (0.01171012049999999) (0.011816450000000006) (0.011778875999999994) (0.011654209500000012) (0.011883242000000002) (0.011717923500000019) (0.012017944499999988) (0.01183245799999999) (0.011698768499999998) (0.011960299000000008) (0.012375233999999985) (0.011715896000000003) (0.012216117000000012) (0.012260716500000005) (0.011922686500000002) (0.012009837499999981) (0.012470604499999996) (0.012364161999999998) (0.012060047000000004) (0.011832037000000004) (0.012034043000000008) (0.012530114499999995) (0.012164754) (0.012206960500000016) (0.01194821) (0.01233099850000001) (0.011990875999999998) (0.012367703499999994) (0.011959400999999995) (0.011914636499999992) (0.012110411500000001) (0.012048135500000001) (0.012625113999999993) (0.012234474999999995) (0.01220561249999999) (0.012003430999999981) (0.012417191500000008) (0.012073508999999996) (0.0122178015) (0.012256239999999988) (0.012539351500000004) (0.012247318000000007) (0.012372341499999995) (0.012103680500000005) (0.01198929750000001) (0.011867203500000006) (0.011755256500000005) (0.011999923999999995) (0.011790468500000012) (0.011685172999999993) (0.011736119500000003) (0.011820896500000011) (0.011600516000000005) (0.012027385000000002) (0.0121175575) (0.011710272999999993) (0.012159667500000013) (0.011923121000000009) (0.012239667999999981) (0.011863371499999997) (0.011602787000000003) (0.011814165500000001) (0.012029170499999992) (0.011778114499999992) (0.011976264) (0.011568471999999996) (0.01161376850000001) (0.011770600499999992) (0.011669574500000002) (0.012095232999999997) (0.011593378000000001) (0.01198805750000001) (0.011868958999999998) (0.011845911999999986) (0.011718557000000018) (0.011708254500000001) (0.011887557499999993) (0.012651176499999986) (0.012175516500000011) (0.01216971) (0.012077564499999999) (0.012172482499999984) (0.012114906499999994) (0.012496617000000015) (0.012025264999999993) (0.012067787999999996) (0.012134893999999993) (0.012098422499999997) (0.012259951500000005) (0.012396731499999994) (0.012292145000000004) (0.012120704999999996) (0.012126143000000006) (0.011849482500000008) (0.011982372500000005) (0.011994820500000003) (0.012144345999999986) (0.012233155999999995) (0.011969976500000007) (0.011839269) (0.012239054499999999) (0.012528738999999997) (0.012044085499999996) (0.012012371500000008) (0.012299947499999991) (0.012288724499999987) (0.012496555999999992) (0.012238131499999999) (0.012233755000000013) (0.011677329500000014) (0.011698432499999994) (0.011751501999999997) (0.011680596000000015) (0.011516699499999991) (0.012312446500000018) (0.01173555350000001) (0.011967415999999995) (0.012166786999999998) (0.011797114999999997) (0.011651244000000005) (0.011937613000000014) (0.01158750850000001) (0.012093904500000002) (0.012019857499999995) (0.011985742000000008) (0.011741927499999985) (0.011950823499999999) (0.011644254999999992) (0.011675089999999999) (0.011681678000000015) (0.01171693) (0.011750284000000014) (0.011645339500000004) (0.011945228999999988) (0.011835796499999995) (0.012032877999999997) (0.011782002500000013) (0.012138979500000008) (0.01164986350000001) (0.011784430499999998) (0.012005852499999997) (0.011835449500000012) (0.011926864999999995) (0.0119304415) (0.011818453499999992) (0.012002292999999997) (0.011932442499999987) (0.012178781) (0.012343763000000008) (0.0124119605) (0.012124057500000007) (0.012156603000000002) (0.012148217000000003) (0.012572487500000007) (0.012461242500000011) (0.01205700350000001) (0.01180596099999999) (0.012076998500000005) (0.01218017099999999) (0.012078249499999985) (0.011937022999999991) (0.012111692499999993) (0.012130665999999998) (0.012305270999999993) (0.012514030999999995) (0.012440851000000003) (0.012392123500000005) (0.012173642499999998) (0.012277887000000001) (0.012307693499999994) (0.012173407999999997) (0.01204913149999999) (0.011527746499999991) (0.012001242999999995) (0.011653550999999984) (0.011994296500000001) (0.011579600500000009) (0.011699548500000004) (0.011798581500000002) (0.011869855999999998) (0.012074788999999989) (0.011951511000000012) (0.011966688500000003) (0.011886160000000007) (0.01187174199999999) (0.011753003499999998) (0.012330258499999996) (0.011915769999999992) (0.011736163999999993) (0.011745723999999999) (0.011981886999999997) (0.011789243000000005) (0.012162609500000005) (0.0117990615) (0.01200486299999999) (0.011830013500000014) (0.011898534999999988) (0.011893878499999996) (0.011882103000000005) (0.011878284500000003) (0.012215280000000009) (0.011883893999999992) (0.011881762000000004) (0.011837443500000003) (0.011880308999999992) (0.0121408395) (0.012094892499999996) (0.011954779500000012) (0.012228703000000007) (0.012118425500000002) (0.012495697500000014) (0.011978918000000005) (0.012306324000000007) (0.011973268999999995) (0.012413287500000009) (0.012142691999999997) (0.01215186900000001) (0.012024816500000007) (0.012422949000000003) (0.012200430500000012) (0.011866336499999991) (0.011955239000000006) (0.012258445500000006) (0.01196707200000001) (0.01208766750000001) (0.012222867499999998) (0.012129754000000006) (0.012189156500000006) (0.012106534500000016) (0.012040502000000008) (0.012625058999999994) (0.012189250999999998) (0.012082676500000014) (0.012024302) (0.012212338000000017) (0.0120147065) (0.011904433500000006) (0.01193523299999999) (0.011788959000000002) (0.011721955500000006) (0.011754635499999999) (0.011620916999999995) (0.011687202499999993) (0.011720915499999998) (0.011790477000000008) (0.011813428) (0.011768638999999997) (0.011698111999999997) (0.011766192999999994) (0.011934371500000013) (0.011750272999999992) (0.0125998155) (0.011793024499999999) (0.011974244500000009) (0.011715468500000006) (0.011939952000000004) (0.011895321000000014) (0.011746093500000013) (0.011762915999999998) (0.012063729500000009) (0.011847446500000011) (0.012064798500000015) (0.0116919085) (0.011942256000000012) (0.011927063000000002) (0.011882103500000005) (0.011910807499999995) (0.011642284000000003) (0.012503618499999994) (0.012481593999999999) (0.011942465) (0.012080569499999999) (0.012147462499999997) (0.012048004000000001) (0.012105305499999996) (0.012020375000000014) (0.012340865000000006) (0.012140648000000004) (0.011965539500000011) (0.012333826500000006) (0.011939301499999999) (0.012137608999999994) (0.0120381185) (0.012150977499999993) (0.0120401225) (0.012083264999999982) (0.012303107499999993) (0.011939738999999991) (0.012324375999999998) (0.012293201000000004) (0.011935260000000017) (0.012133294500000003) (0.011971495499999998) (0.012180838499999999) (0.012149008000000003) (0.012335357000000005) (0.012330503499999979) (0.012182403999999994) (0.01279775200000001) (0.012225956499999996) (0.011925330999999997) (0.011728587999999998) (0.011778059500000007) (0.011871042500000012) (0.011687674499999995) (0.011686596500000007) (0.01215514999999999) (0.011941151000000011) (0.011826375500000014) (0.011985579499999996) (0.011781754999999991) (0.011767479999999997) (0.011776942500000012) (0.011686967499999992) (0.011886859) (0.011892398999999998) (0.011639560500000007) (0.011959712500000011) (0.011845905500000004) (0.011849810000000002) (0.011844603500000009) (0.011832238499999995) (0.01189378599999999) (0.012267676000000005) (0.011788812999999995) (0.011911213500000004) (0.011819041000000002) (0.011814450000000018) (0.012008700999999997) (0.011877890500000016) (0.011881759500000005) (0.011906567999999992) (0.012224707000000001) (0.012214990499999995) (0.012625215499999995) (0.012228333499999994) (0.012624675000000002) (0.012151847999999993) (0.012294640499999995) (0.012055588000000006) (0.012419506499999997) (0.01211032599999999) (0.012100567999999992) (0.012149772000000003) (0.012285571499999995) (0.012056075) (0.012244102499999993) (0.012369236999999991) (0.012170013999999993) (0.012067659499999994) (0.012070147000000003) (0.012055151499999986) (0.012218940000000011) (0.012112099499999987) (0.012501769499999982) (0.012249882000000004) (0.012166365999999998) (0.012058414500000017) (0.012097533500000007) (0.01227938599999999) (0.012265188499999996) (0.011993034500000013) (0.012209292499999996) (0.012045622999999991) (0.011785280000000009) (0.011711562500000008) (0.011723790999999997) (0.011961573500000003) (0.011936694499999984) (0.011876371999999996) (0.0119877065) (0.011595133000000007) (0.0121321405) (0.012027294000000008) (0.011791849999999993) (0.011871839500000009) (0.011885701499999998) (0.012170779500000006) (0.011745499500000006) (0.011932674500000004) (0.011834968500000001) (0.011701661500000002) (0.011814275499999999) (0.0120793545) (0.011697140999999994) (0.011907884000000007) (0.011786604000000006) (0.011812184000000003) (0.011712226000000006) (0.011741844000000001) (0.011848613999999993) (0.011975699999999992) (0.011872800000000003) (0.012484132500000009) (0.011697436000000005) (0.01173710700000001) (0.012357803) (0.01200921349999999) (0.01227724500000002) (0.012250124999999987) (0.012297264999999988) (0.012038329999999986) (0.012164553999999994) (0.012340494999999993) (0.011970769500000006) (0.012280884999999991) (0.012171948000000002) (0.012411394500000006) (0.012114435499999993) (0.012320583499999996) (0.012081608500000007) (0.012041336000000014) (0.012041072499999986) (0.012106440499999996) (0.012053372999999992) (0.012223922999999998) (0.011899497499999995) (0.012593512499999987) (0.012152542500000002) (0.012323197499999994) (0.012450915500000007) (0.012453775) (0.012422671499999996) (0.012284169499999983) (0.012503778499999993) (0.012246963999999999) (0.012344236499999994) (0.012091171499999998) (0.012037304999999998) (0.011879749000000009) (0.011949660500000014) (0.011597116000000005) (0.01153933750000001) (0.011941867499999995) (0.011661304499999997) (0.012034687500000016) (0.011922255000000007) (0.011958060999999992) (0.011911367499999992) (0.011927888499999983) (0.012047914000000007) (0.011785603500000005) (0.01197889499999999) (0.011748328000000002) (0.011899009000000002) (0.011722218000000006) (0.011764727500000002) (0.011724053000000012) (0.011614336500000003) (0.011862522) (0.011729296999999986) (0.01200082949999999) (0.012088020000000019) (0.011988462000000005) (0.012036698499999998) (0.011692926999999992) (0.011987488500000004) (0.011800210500000005) (0.011833612500000007) (0.011775165500000018) (0.01217517700000001) (0.011886158000000008) (0.0122048035) (0.011858652499999997) (0.012101065499999994) (0.011970586500000005) (0.012396958999999999) (0.012016933999999993) (0.012082693000000005) (0.012312953000000001) (0.012195064999999991) (0.012351591499999995) (0.012215221000000012) (0.012389331500000003) (0.012224773499999994) (0.01227547100000001) (0.012108840499999995) (0.012147023499999993) (0.012152295999999979) (0.012156016999999991) (0.012036622999999996) (0.012018025000000002) (0.01200490600000001) (0.01235282) (0.012083388) (0.01202992650000001) (0.012081463) (0.01209709249999999) (0.012451634000000017) (0.012466792000000004) (0.01226495100000001) (0.01236426950000001) (0.01162089999999999) (0.011997265500000007) (0.012055002499999995) (0.011943796500000006) (0.011849575999999987) (0.012047817000000002) (0.01189255950000001) (0.011678172500000014) (0.01193084250000001) (0.011977033499999998) (0.0119513485) (0.01220744) (0.01184186949999999) (0.011822253500000005) (0.011916638499999993) (0.011832184999999995) (0.012060479500000013) (0.011874997500000012) (0.011980100500000007) (0.011838923000000001) (0.011779536000000007) (0.012123871500000008) (0.011785084500000001) (0.011661116499999999) (0.01214364100000001) (0.011785067499999996) (0.012015774999999992) (0.012073845999999985) (0.012238486499999993) (0.011736703000000001) (0.012074990000000008) (0.012087049500000002) (0.012102456999999997) (0.011901987500000002) (0.01219758750000001) (0.012276677000000014) (0.012194958500000005) (0.012116975000000002) (0.012031069000000005) (0.012251609999999996) (0.012194725000000003) (0.012297056499999987) (0.012134956500000002) (0.012436587999999985) (0.012360403500000006) (0.012167716499999995) (0.012052753999999985) (0.012272161500000017) (0.012255949000000002) (0.012342317000000005) (0.012106651499999996) (0.012221651500000014) (0.011982179999999995) (0.012739511000000009) (0.012147966499999996) (0.012557266000000011) (0.012240214999999999) (0.012124179999999998) (0.012025667000000004) (0.012110862500000014) (0.012122404500000017) (0.012450612) (0.012419063000000008) (0.012369186500000018) (0.011710956000000008) (0.0116603485) (0.011719770500000018) (0.011784534999999999) (0.011704406000000014) (0.011693078999999995) (0.012045599500000004) (0.0117818705) (0.011754035999999995) (0.012131326500000011) (0.011710592499999992) (0.011842279499999997) (0.0120080355) (0.011783434499999995) (0.0119627925) (0.011841448500000004) (0.011552887000000012) (0.011892432000000008) (0.011914758500000011) (0.011808639499999996) (0.0117515485) (0.011817066000000001) (0.011665076499999996) (0.011556477999999995) (0.01190694099999999) (0.012088299499999997) (0.011826158999999989) (0.011786473500000005) (0.01207358750000001) (0.011869451000000003) (0.011670939499999991) (0.011811743000000013) (0.012203419999999993) (0.0120940145) (0.011921568999999993) (0.012094224) (0.012131111) (0.011964471500000004) (0.012237525999999999) (0.011977487500000009) (0.0123435135) (0.012424700499999997) (0.012138411500000001) (0.012349588499999994) (0.012106720999999987) (0.011968575500000009) (0.012663662500000006) (0.012248770499999992) (0.012279309000000002) (0.012013390500000012) (0.011883163000000002) (0.012189568499999998) (0.012234908000000003) (0.012426024500000007) (0.012107292000000006) (0.012167135999999995) (0.012269484999999997) (0.012222940499999987) (0.012183146500000006) (0.01228557399999998) (0.012341415000000008) (0.011983476999999992) (0.012348832000000004) (0.012261600999999997) (0.011855680500000021) (0.011790753000000015) (0.011993930000000014) (0.011665531500000006) (0.011692196500000016) (0.011683995500000016) (0.011784468999999992) (0.012158718999999998) (0.012038601999999995) (0.012071457000000008) (0.011973104999999998) (0.011811208000000004) (0.012432722499999993) (0.012108164000000005) (0.012057078499999999) (0.011812308000000007) (0.011626183500000012) (0.011853779499999995) (0.011928076999999995) (0.011614675500000005) (0.011915087500000004) (0.011768448) (0.0120629815) (0.011693073500000012) (0.012346178500000013) (0.011772152000000008) (0.011829768000000004) (0.011919941000000003) (0.011959917499999986) (0.011756552000000003) (0.011910744999999986) (0.011847417500000013) (0.011961383500000006) (0.011998742000000007) (0.012069904000000006) (0.01189169000000001) (0.012113396999999998) (0.012000677000000001) (0.012020540499999996) (0.012126186999999997) (0.012567085999999991) (0.012054989000000016) (0.012255973500000003) (0.012492213500000002) (0.012388061500000005) (0.012118387499999994) (0.012188057000000002) (0.012277525000000011) (0.012041888) (0.011996133999999992) (0.012050019500000009) (0.012326651999999994) (0.012121916499999982) (0.012106854500000014) (0.011946899499999997) (0.012286776000000013) (0.012301763499999993) (0.012230033500000015) (0.012172001000000002) (0.012148194000000001) (0.012333644500000004) (0.012300656999999993) (0.012010239500000006) (0.012313877) (0.011677761000000009) (0.011840947000000004) (0.011893580999999986) (0.011639244000000007) (0.011868218) (0.011702951000000003) (0.011810341500000002) (0.011919994000000003) (0.012035320500000002) (0.011869485500000013) (0.0118881495) (0.01215645550000001) (0.011939592499999999) (0.011859617500000003) (0.011985367999999996) (0.011896833499999995) (0.012056639000000008) (0.011788867999999994) (0.011872106999999979) (0.012015816500000012) (0.011905142500000007) (0.011645352499999997) (0.01159613100000001) (0.011975916499999989) (0.011910212500000003) (0.011828218000000001) (0.011802964499999999) (0.011775854000000002) (0.011749882500000003) (0.011861725000000004) (0.011769347999999999) (0.011943753999999987) (0.011892392500000001) (0.012052201499999998) (0.012047125000000006) (0.012071544500000003) (0.0123967995) (0.012041139999999992) (0.012272433) (0.012094326500000016) (0.012155803000000007) (0.012010674000000013) (0.0120603185) (0.012077095499999996) (0.0121661505) (0.01220209350000001) (0.01210383999999999) (0.012343507000000004) (0.011934116500000008) (0.012226365000000003) (0.012464437000000009) (0.012288688000000006) (0.012171606500000001) (0.012435741999999986) (0.012119701999999996) (0.012119217499999987) (0.012379572500000019) (0.012086108999999998) (0.012052934500000001) (0.012481304499999984) (0.01234358649999999) (0.012172291500000015) (0.011957678) (0.012193148000000001) (0.011751287999999999) (0.011919759500000002) (0.0118678755) (0.011831623000000013) (0.011772753999999996) (0.012055689499999994) (0.011868052000000018) (0.01153367550000002) (0.011821915500000002) (0.011797206000000005) (0.012157580500000015) (0.011728955) (0.01199961799999999) (0.011813177500000008) (0.01184147699999999) (0.011815903999999974) (0.011732659499999992) (0.012057280500000003) (0.011834099) (0.011886453000000005) (0.011665791999999994) (0.012138131499999996) (0.011885495499999996) (0.011877502999999998) (0.0118841675) (0.0117065675) (0.011894382499999995) (0.012018163000000012) (0.011783368499999988) (0.0120629275) (0.011694100499999999) (0.011797966499999993) (0.012009496499999994) (0.01236963100000002) (0.012538702999999998) (0.01206575700000001) (0.012056542000000003) (0.012116108499999986) (0.012168134999999997) (0.012426475500000006) (0.012341070499999995) (0.012306212499999997) (0.011974729999999989) (0.012105601499999993) (0.011987215999999995) (0.012089211000000002) (0.012081883999999987) (0.012174527500000004) (0.011953566999999998) (0.0119261955) (0.011970777999999987) (0.01192740199999999) (0.012165152999999998) (0.01195540049999999) (0.012281071000000005) (0.012301941499999997) (0.012148113000000002) (0.012247576999999996) (0.01228826999999999) (0.011943197499999988) (0.012501271999999994) (0.012165980500000007) (0.012221725500000002) (0.012403955500000008) (0.011816488499999986) (0.011634379500000014) (0.011653222500000004) (0.011539301999999987) (0.012033845000000001) (0.011856418999999993) (0.012357353000000001) (0.011625511500000005) (0.011872354499999987) (0.012339496499999991) (0.01174438350000001) (0.011782152000000004) (0.012082656000000011) (0.012027091500000003) (0.011735671500000017) (0.01193842149999999) (0.012067087000000004) (0.011852073500000004) (0.011535810000000007) (0.011792901499999994) (0.011887167000000004) (0.011587171500000007) (0.0117502575) (0.011737148000000003) (0.01195649) (0.011686033999999998) (0.011716133000000004) (0.011762388999999998) (0.011767566000000007) (0.011666625999999986) (0.011958969) (0.012231285000000008) (0.012101391000000003) (0.011877948) (0.01189124799999998) (0.012004014999999993) (0.011952544499999995) (0.012167428999999993) (0.012014570500000002) (0.012052213500000006) (0.012022045500000009) (0.012641985999999994) (0.012256651500000007) (0.012061965999999993) (0.012056277500000018) (0.012125371499999996) (0.012460121000000005) (0.012188697000000012) (0.012026572499999999) (0.012220612999999991) (0.011922136999999985) (0.012055826999999991) (0.011954959000000001) (0.012061835999999992) (0.012093232499999995) (0.011954790999999992) (0.011992387499999993) (0.012308521999999988) (0.01238257500000002) (0.0120908225) (0.012524287000000009) (0.011998031999999992) (0.012333813499999985) (0.011932896999999998) (0.01167739949999999) (0.011850909999999992) (0.01193349049999999) (0.011810631500000002) (0.011463777499999994) (0.012217102999999993) (0.011675434499999998) (0.011722456500000006) (0.011815282499999996) (0.01166787100000001) (0.011808753499999991) (0.011951582499999988) (0.012026326500000004) (0.011820918000000014) (0.011947955499999996) (0.011695256000000001) (0.01161720849999999) (0.011885137500000004) (0.011724572499999988) (0.011865171499999994) (0.01149798349999999) (0.011841426999999988) (0.011905183) (0.012008130499999992) (0.012003257000000017) (0.011921824999999997) (0.012026983500000005) (0.011881081500000001) (0.011696202499999989) (0.011710085999999995) (0.012251124000000002) (0.012027751000000003) (0.012092485) (0.012263286500000012) (0.0121386515) (0.012197459000000008) (0.012132966000000009) (0.012275842499999995) (0.011819163499999993) (0.012067435000000001) (0.012131326999999997) (0.0121366735) (0.012275758500000011) (0.012422944500000005) (0.012160809500000008) (0.012048235500000004) (0.011916603500000011) (0.011933141500000008) (0.012178728000000014) (0.012182650999999989) (0.012087505499999998) (0.012158913999999993) (0.012027401000000007) (0.011996882) (0.012011359499999999) (0.012066415499999997) (0.012357132000000007) (0.012213718499999998) (0.01208880000000001) (0.012525164500000005) (0.012689250999999999) (0.012043660499999997) (0.0124412255) (0.012263538500000004) (0.011821830000000005) (0.0115922195) (0.011840676500000008) (0.011959960999999991) (0.011721767500000008) (0.011775333000000013) (0.011700219500000011) (0.011507857499999996) (0.011908393000000003) (0.011934756500000004) (0.011714507000000013) (0.011905279500000004) (0.012083599) (0.01176770449999999) (0.012157539500000009) (0.011907006000000012) (0.011636178999999996) (0.011868890000000007) (0.012009261499999993) (0.011751110000000009) (0.011911989499999998) (0.011761466499999984) (0.012276254) (0.011836973500000014) (0.01170373000000001) (0.011796219499999996) (0.0117623055) (0.01168047450000001) (0.012083481999999993) (0.011937589000000012) (0.011867168999999997) (0.011947536000000009) (0.012102250500000009) (0.012128691499999983) (0.012134855000000014) (0.012212183000000015) (0.012157932499999996) (0.012281171499999993) (0.012034988999999996) (0.012174122499999995) (0.0120216935) (0.01221623749999999) (0.012269614500000012) (0.012172082500000014) (0.01227645849999999) (0.012295384500000006) (0.012167283000000001) (0.012244182000000006) (0.012100972000000002) (0.012603720999999984) (0.012287989) (0.012072938999999991) (0.012239564999999994) (0.01207946) (0.012056336) (0.012211235) (0.012118504000000002) (0.012360007000000006) (0.012201535999999985) (0.012009520999999995) (0.012153690500000008) (0.01232892599999999) (0.012018463999999993) (0.012388453499999993) (0.011644317500000001) (0.011681603999999998) (0.012010852500000016) (0.011699266000000014) (0.011705650999999997) (0.011835469500000001) (0.011902610999999994) (0.011601774499999995) (0.011921136999999998) (0.011778927000000008) (0.012163688500000006) (0.01188488950000001) (0.011871245500000002) (0.011820481499999994) (0.012047409499999995) (0.011844358499999999) (0.011780797499999995) (0.011837048500000003) (0.011945060999999993) (0.011728406999999982) (0.011776979500000007) (0.011820365499999999) (0.011496287500000008) (0.012126844500000011) (0.011969413500000012) (0.012195911500000003) (0.011826678499999993) (0.011849033499999995) (0.01170779000000001) (0.012026427500000006) (0.011971211999999995) (0.011817197000000002) (0.012148539) (0.011942195000000003) (0.012223591500000006) (0.011982448499999993) (0.011975118499999993) (0.012176603999999994) (0.012118170000000011) (0.012023371500000019) (0.012037489999999998) (0.012045409500000007) (0.011873843000000009) (0.012536428000000002) (0.012040300500000004) (0.012707859000000002) (0.012086286000000002) (0.01223880849999999) (0.012155264999999998) (0.012135107000000006) (0.012110092500000003) (0.011972253499999988) (0.011853090499999996) (0.0123798455) (0.012337248499999995) (0.012462323499999997) (0.012137275000000003) (0.0123237655) (0.012310815000000003) (0.012123914) (0.012346140500000005) (0.012086261000000001) (0.012101244999999997) (0.012037260999999994) (0.011803672000000001) (0.011792577499999998) (0.012015557499999996) (0.011892769500000011) (0.011940806999999998) (0.01178552749999999) (0.011747646) (0.011624997999999997) (0.01172884099999999) (0.011920625000000004) (0.011751075499999986) (0.011793743999999995) (0.012114238500000013) (0.011770727999999994) (0.01190519050000001) (0.011799588) (0.011554572499999999) (0.011717783499999995) (0.011733433500000015) (0.011734533000000005) (0.011641232000000001) (0.012023089) (0.011752160500000011) (0.011818062500000004) (0.011597864999999999) (0.011794804000000006) (0.011932401999999995) (0.011906012999999993) (0.011646730999999994) (0.011972808000000001) (0.01201145699999999) (0.012129601500000003) (0.012228360999999993) (0.012003414500000004) (0.011864860500000005) (0.012197997500000002) (0.012191555999999992) (0.012293700500000004) (0.011837664499999997) (0.012488880499999994) (0.01216655550000001) (0.01214710899999999) (0.011882752999999996) (0.012155201000000004) (0.01199037650000001) (0.012269354999999996) (0.012398262000000007) (0.012188688500000003) (0.01219519799999999) (0.011939017499999982) (0.011910358999999995) (0.012188977500000003) (0.0120355615) (0.012093184999999992) (0.012094306499999985) (0.012250494000000015) (0.014155720999999996) (0.011866560999999998) (0.012082378000000005) (0.011931590000000006) (0.012609955499999992) (0.012056378499999992) (0.012174873000000003) (0.012092815999999992) (0.012124918500000012) (0.011705156999999994) (0.012032976) (0.011936572000000006) (0.011712892000000003) (0.012182039000000006) (0.01205155799999999) (0.011777454499999992) (0.011722838) (0.01209751349999999) (0.011584969) (0.011741736499999988) (0.011791617500000018) (0.011780368) (0.012179520000000013) (0.011910551499999991) (0.011737928999999994) (0.012022227499999982) (0.0117335955) (0.011999709499999997) (0.011817927000000006) (0.012028177000000001) (0.011816621499999999) (0.011894195499999996) (0.011915445499999996) (0.011965884499999996) (0.01179348949999999) (0.011892697500000021) (0.011743983) (0.012156946000000002) (0.011874690999999993) (0.011798390000000006) (0.012122060000000004) (0.012194086499999993) (0.012088108) (0.012244394500000005) (0.012142490499999992) (0.012070368999999997) (0.01205324549999999) (0.011950264000000016) (0.01197433199999999) (0.011921955999999997) (0.011901809999999999) (0.012496037000000002) (0.01235235250000001) (0.012053955499999991) (0.01198817499999999) (0.012100473) (0.012152196500000004) (0.012161577499999993) (0.012311624000000007) (0.012061224500000009) (0.01241933000000002) (0.012183001000000013) (0.011994178999999994) (0.012022079500000005) (0.012149478000000005) (0.012033734000000004) (0.012375874500000009) (0.012241550000000004) (0.012238433000000007) (0.011921188500000013) (0.012258149499999996) (0.011989865000000002) (0.011631395500000016) (0.011776527999999994) (0.011622302999999987) (0.011801921499999993) (0.011683770499999996) (0.011764644500000004) (0.011804914999999985) (0.011753608999999998) (0.011822607999999998) (0.012065699) (0.01198580149999999) (0.011559738) (0.011732247000000015) (0.011675682500000006) (0.011725487999999992) (0.011863096500000003) (0.01190333099999999) (0.011792978999999995) (0.011648264500000005) (0.011758433000000013) (0.011610167500000004) (0.011941159500000006) (0.011801053000000006) (0.011705530500000005) (0.011809301999999994) (0.0118367885) (0.011750289999999997) (0.011692150000000012) (0.011742449000000002) (0.011908128500000004) (0.011724847499999996) (0.011897503500000003) (0.012058307000000004) (0.012018452499999999) (0.012137650500000013) (0.012259462499999998) (0.012098496500000014) (0.011901975500000009) (0.012083871999999996) (0.01200504899999999) (0.012140229500000002) (0.012274482000000017) (0.012242186500000016) (0.011972234000000012) (0.012561429999999998) (0.012258436999999997) (0.012220857999999987) (0.012523164000000003) (0.012103872000000002) (0.01200081850000001) (0.01179318750000001) (0.012225061500000009) (0.012268771499999997) (0.012000553000000011) (0.012025986000000016) (0.012057953499999996) (0.012061375499999999) (0.012243895000000005) (0.012114556999999998) (0.012458433000000005) (0.012111801000000005) (0.012037750999999985) (0.012284759000000006) (0.012160980500000002) (0.011833153499999985) (0.011770840000000005) (0.011665914) (0.01185581949999999) (0.011843054000000006) (0.011560765500000014) (0.011895857499999996) (0.011779772500000008) (0.011749082500000008) (0.011800291500000004) (0.011653234499999998) (0.011826210500000003) (0.011995432999999986) (0.012061970500000019) (0.012129623499999992) (0.011775422500000007) (0.011772958999999986) (0.011751553499999998) (0.011736488999999989) (0.011748214000000007) (0.012075221999999997) (0.011815655500000008) (0.012029698500000019) (0.011763110000000007) (0.011766773499999994) (0.011776206499999983) (0.01184739650000001) (0.01166392300000002) (0.0116426045) (0.011679997499999997) (0.01178460299999999) (0.011851996500000003) (0.012104323) (0.012224428999999995) (0.011957367999999996) (0.012093234499999994) (0.012078102499999993) (0.012002021000000002) (0.012069957500000006) (0.012259267000000004) (0.012029302000000006) (0.012028271499999993) (0.011961099000000003) (0.012302429000000004) (0.01220294000000001) (0.012162495499999995) (0.012353892500000005) (0.012106569999999997) (0.012110084500000007) (0.012020361500000007) (0.011975338500000002) (0.01195840049999998) (0.012031798499999996) (0.012036425000000003) (0.011990878499999996) (0.012444822999999994) (0.012358302500000001) (0.012334500000000012) (0.012068619000000003) (0.012607623999999998) (0.012379738000000001) (0.012276735999999983) (0.012199392500000003) (0.012223633500000011) (0.011703268500000003) (0.011756341500000003) (0.011966830499999997) (0.012146635499999989) (0.011812406999999997) (0.012091090500000012) (0.012326386499999994) (0.013024190000000005) (0.012246605000000008) (0.0118991985) (0.011594896499999993) (0.011747311499999996) (0.0120102495) (0.011694614000000006) (0.012084268500000009) (0.01187540899999999) (0.011641581499999998) (0.011605357999999996) (0.012077725999999997) (0.012037241000000004) (0.011651205000000012) (0.011826938999999995) (0.011704706499999995) (0.011609715999999992) (0.012131335000000007) (0.011694516499999988) (0.011587964999999992) (0.012131702499999994) (0.01161511450000001) (0.011975945000000002) (0.01206845149999998) (0.012123520000000013) (0.0121710825) (0.012283324999999998) (0.012378364999999988) (0.012059795999999998) (0.012013509000000006) (0.011871331499999999) (0.012093340000000008) (0.012041023500000012) (0.012166491500000001) (0.012034282499999993) (0.012473551500000013) (0.012133048999999993) (0.012392776000000008) (0.012339978000000001) (0.012019532500000013) (0.012210550499999986) (0.012239666999999996) (0.0123009065) (0.012078626999999995) (0.01244396099999999) (0.012127951999999997) (0.011976547000000004) (0.011890266499999996) (0.012531683500000002) (0.012479008) (0.012070206999999986) (0.012398947999999993) (0.012328629500000007) (0.012203784999999995) (0.011994990499999997) (0.012302716499999977) (0.012019005) (0.011840539499999997) (0.011878700499999992) (0.011978790000000003) (0.011806736999999998) (0.01157162299999999) (0.011951267000000002) (0.012046787000000003) (0.011588040000000008) (0.011924689999999988) (0.011661939999999996) (0.011913558500000004) (0.01177494200000001) (0.011940661500000005) (0.011838280499999992) (0.011774279999999998) (0.011792538500000005) (0.013348624999999989) (0.011742694999999997) (0.011872174) (0.011817898499999993) (0.012005402500000012) (0.01230610650000001) (0.01170096150000001) (0.011959116000000006) (0.011979223499999997) (0.012013899000000008) (0.01209584050000001) (0.011939677499999996) (0.012034706000000006) (0.011647243000000002) (0.011948635999999999) (0.011802694500000002) (0.012196822499999982) (0.0124294675) (0.0120175265) (0.012117617499999997) (0.01213403099999999) (0.012136521499999997) (0.012305385999999988) (0.012129794499999999) (0.012206297500000005) (0.012202244000000001) (0.012314882499999999) (0.012239891500000002) (0.012347604499999998) (0.012179020999999998) (0.012459061500000007) (0.012407367500000002) (0.012489899499999998) (0.01223398149999999) (0.012198906999999995) (0.012418396499999998) (0.012145846000000002) (0.012233103500000009) (0.011852666999999983) (0.012242719499999999) (0.012256615000000012) (0.011959194499999992) (0.012561730000000007) (0.012089076500000004) (0.012117617499999997) (0.012224539999999992) (0.012217962999999984) (0.012281662499999985) (0.011925485500000013) (0.012402903000000007) (0.01163074700000001) (0.011696398499999996) (0.01171085899999999) (0.011950132000000002) (0.011762258499999997) (0.012011528500000007) (0.011880366000000003) (0.011913209999999994) (0.012031875999999983) (0.012006966499999994) (0.011886465499999999) (0.011822366) (0.011826051500000004) (0.011975518500000004) (0.011981673999999998) (0.011656547499999989) (0.011961971000000002) (0.011650177499999997) (0.011870883499999998) (0.012020495000000006) (0.011677846499999991) (0.011572579999999999) (0.011906445499999987) (0.011989596500000019) (0.011959468000000001) (0.01175048749999999) (0.0121400215) (0.012036164500000002) (0.011976995000000004) (0.011816674999999999) (0.012001862500000002) (0.0122370495) (0.012177161999999991) (0.012141375499999996) (0.012634203999999996) (0.012025201999999999) (0.012149225500000013) (0.011902462999999988) (0.012243214000000002) (0.01216452649999998) (0.0123762345) (0.012166787500000012) (0.012051668000000001) (0.012195656) (0.012012809999999999) (0.012196795999999996) (0.012140467000000002) (0.012447893000000002) (0.012049589) (0.012005224999999994) (0.011979049999999991) (0.012085882499999992) (0.012077829999999998) (0.012011739999999993) (0.012211226499999991) (0.012168255500000003) (0.012269023500000004) (0.012109376000000005) (0.012108459499999988) (0.012410129500000006) (0.012106710500000006) (0.012215983500000013) (0.011684532999999997) (0.011768376999999997) (0.011782700500000007) (0.011784855499999997) (0.011676397499999991) (0.011778072) (0.012014710999999983) (0.011597186499999995) (0.011764030500000008) (0.011926829) (0.011874611499999979) (0.011880124500000006) (0.011919478499999997) (0.012063605000000005) (0.012000991000000003) (0.011723638500000022) (0.011602430999999996) (0.011769982000000012) (0.012001485499999992) (0.011797927999999985) (0.011667994000000001) (0.011748081500000007) (0.01177215899999999) (0.011839665) (0.011848765499999997) (0.011976451999999985) (0.011834893499999985) (0.011728727999999994) (0.012241554000000016) (0.011858985500000002) (0.011828379499999986) (0.01197200150000001) (0.012158964999999994) (0.012047510999999997) (0.012130829999999995) (0.011988090499999993) (0.012222614999999992) (0.012235996499999999) (0.011855598000000009) (0.0123609675) (0.012065447999999993) (0.012447364500000002) (0.012571823499999996) (0.012273188500000004) (0.012280990000000006) (0.012361143000000005) (0.012054908500000003) (0.011946552) (0.012532082) (0.012056272999999992) (0.012263871999999995) (0.012709270500000008) (0.012198026000000015) (0.012219725000000015) (0.012162365000000008) (0.012237279000000004) (0.012173420000000004) (0.012097191499999993) (0.012368239500000003) (0.012335176499999989) (0.012221298500000019) (0.01245553349999999) (0.01229846300000001) (0.01235472700000001) (0.011667504000000009) (0.011735318999999994) (0.011771143499999998) (0.012457367999999996) (0.011792743499999994) (0.011916112999999992) (0.012011564000000002) (0.011781218499999996) (0.011986039500000004) (0.012113852999999994) (0.012001774999999992) (0.011891517000000004) (0.011769049500000003) (0.011658654000000004) (0.011658358000000008) (0.011817689000000006) (0.012002046000000016) (0.011745211000000005) (0.012128687499999999) (0.011522981500000001) (0.011778957000000007) (0.011829787000000008) (0.011731102500000007) (0.011741107) (0.011754010999999995) (0.011819414) (0.011782410999999993) (0.01179475649999999) (0.011720709999999995) (0.011845179000000011) (0.011816508000000003) (0.011732406) (0.012001448499999998) (0.011980857499999997) (0.012183304999999992) (0.011882551500000005) (0.01207907300000001) (0.012218692500000017) (0.012133530500000003) (0.011871097999999997) (0.012000432000000005) (0.0121954975) (0.012349125499999988) (0.012151853000000004) (0.012184952999999998) (0.012313270000000001) (0.012161271999999987) (0.011912594999999998) (0.012284186500000002) (0.01191035850000001) (0.012321322499999995) (0.012121760999999995) (0.012123445499999996) (0.012095661000000008) (0.012201027500000017) (0.012047610499999986) (0.012215112499999986) (0.012516035499999995) (0.012166949999999996) (0.012294994999999989) (0.011973791500000011) (0.01224876850000002) (0.012214502500000002) (0.012264317499999997) (0.01204090699999999) (0.011787348500000003) (0.012074091499999995) (0.011849563500000007) (0.011942178999999997) (0.011910959499999985) (0.011777081000000009) (0.011841906499999999) (0.01198994149999999) (0.012197199500000006) (0.011872422500000007) (0.011958101000000013) (0.0123398745) (0.011752547500000002) (0.011961416000000002) (0.012045299499999995) (0.011707875000000006) (0.011642774000000009) (0.011932407499999992) (0.011569718000000007) (0.011816123999999997) (0.011888938500000015) (0.011806808500000016) (0.011725105500000013) (0.011985478499999994) (0.011759615999999987) (0.011751160499999996) (0.011936891000000005) (0.0120910345) (0.011727319) (0.012130682000000004) (0.0117226775) (0.011948491500000005) (0.011943949499999995) (0.012134541999999998) (0.0121149765) (0.012060874) (0.012363026999999999) (0.012010480000000004) (0.012004552000000002) (0.012480660500000004) (0.011974024499999986) (0.011908891500000005) (0.012379926) (0.012426946499999994) (0.012020253500000008) (0.012304304500000002) (0.01224492449999999) (0.011973622000000003) (0.012108062500000003) (0.012030120500000019) (0.01191544550000001) (0.012053557500000006) (0.01213334499999999) (0.01216249350000001) (0.012160910499999997) (0.012184924) (0.012449095999999993) (0.012150065500000001) (0.012109214499999993) (0.012253197500000007) (0.012126276000000005) (0.0119103505) (0.012159591500000011) (0.011748888499999999) (0.012014761000000013) (0.011661746499999986) (0.012127344499999984) (0.011820034000000007) (0.011780675000000004) (0.011832083999999993) (0.011959114000000007) (0.011783105000000002) (0.012320486499999991) (0.012007312500000006) (0.011888357500000002) (0.01196034850000001) (0.012182265999999997) (0.012027085499999993) (0.01192576649999999) (0.011835881999999992) (0.011868922500000004) (0.011828190000000002) (0.011819152999999999) (0.011704937999999998) (0.0120592635) (0.011774290500000006) (0.011945251000000004) (0.012206301499999989) (0.012367264500000003) (0.011817397000000007) (0.01223967799999999) (0.012528473499999998) (0.011932445) (0.012237753000000018) (0.011875004500000008) (0.012183158999999999) (0.012352469500000005) (0.012111086499999993) (0.011976541000000021) (0.01213123399999999) (0.012174770000000001) (0.011928411) (0.012128387000000004) (0.012257863999999993) (0.0121370955) (0.011977849499999998) (0.012503426499999998) (0.012101375999999997) (0.012078011) (0.012196657999999999) (0.012156733000000003) (0.012346835) (0.01226555) (0.0121780675) (0.012224387999999989) (0.0119638465) (0.012087670500000008) (0.011930031999999993) (0.01206633) (0.012032980999999998) (0.012123988000000016) (0.012101330500000007) (0.012035663999999988) (0.011974045500000002) (0.012020544999999994) (0.012249595499999988) (0.0123725415) (0.011691982500000003) (0.011788213500000005) (0.011717422499999977) (0.011897777499999998) (0.011593807500000011) (0.01189659300000001) (0.011768761000000016) (0.012363915499999989) (0.012192297500000004) (0.011837839500000016) (0.011796636499999999) (0.013979538) (0.011995738000000006) (0.012087266000000013) (0.01213882550000002) (0.011765014000000004) (0.012148259500000008) (0.011894125999999991) (0.012092383000000012) (0.01197904000000001) (0.011643912999999992) (0.011656786500000002) (0.01186034050000001) (0.01185724249999999) (0.012163519999999997) (0.012028708499999999) (0.011827284000000007) (0.011945478500000009) (0.011790113500000005) (0.01181230699999998) (0.011939543999999996) (0.011984046499999998) (0.012100163000000011) (0.0125693365) (0.012061792499999988) (0.011931407000000005) (0.011950834500000007) (0.01200325499999999) (0.01202776300000001) (0.011988659999999998) (0.012412259500000009) (0.012333280000000002) (0.012214665) (0.011948957499999996) (0.011952158000000004) (0.012188615) (0.012018945000000003) (0.012164954500000005) (0.012543846499999997) (0.011958324500000006) (0.012174414999999994) (0.011971403999999991) (0.012136343999999993) (0.012006814000000005) (0.011925669) (0.012366480499999999) (0.01226920899999999) (0.012061968500000006) (0.012321913500000004) (0.012086736999999986) (0.012391949999999985) (0.012089045000000007) (0.011984068500000014) (0.012534809999999993) (0.011803666000000004) (0.011707944499999998) (0.011759516999999997) (0.011804913500000014) (0.011961174500000005) (0.012147972500000007) (0.0120011805) (0.011811435999999995) (0.012075719999999998) (0.011877111499999995) (0.012062827499999998) (0.011819733499999999) (0.011789375000000005) (0.011731939999999996) (0.012025005500000005) (0.011764812) (0.011875889999999986) (0.011947341500000014) (0.011666203) (0.011619137000000002) (0.011900722999999988) (0.011806209000000012) (0.011787495999999995) (0.011597590000000005) (0.012096758999999999) (0.011746280999999997) (0.01175603900000001) (0.011887353500000003) (0.01195375550000001) (0.012072869) (0.012039350500000004) (0.012154107499999997) (0.012158300499999997) (0.01213508449999999) (0.012446369999999998) (0.012026943999999998) (0.012385041999999985) (0.012570041500000004) (0.012036384499999997) (0.01203018850000001) (0.01198833199999999) (0.01250881849999999) (0.012409334500000008) (0.012073520000000004) (0.01251501499999999) (0.011962862000000005) (0.012140196000000006) (0.01246678150000001) (0.012095539500000002) (0.011991554000000001) (0.012285732000000008) (0.01185514600000001) (0.011923266000000002) (0.011974660499999998) (0.011994401000000016) (0.012054498499999997) (0.012147049500000007) (0.012514778000000004) (0.012179696000000004) (0.012104071000000008) (0.012242012499999996) (0.012157316500000001) (0.012188761499999992) (0.012320169999999991) (0.0116906715) (0.011595234499999996) (0.012055306500000001) (0.011555336499999999) (0.011769946999999989) (0.011964314500000003) (0.011692728999999999) (0.011994256000000009) (0.012112917500000014) (0.011803701000000014) (0.01206434549999999) (0.012141766999999998) (0.011784858500000023) (0.011971863499999985) (0.0120063755) (0.011690962000000013) (0.011811559500000013) (0.01166610450000001) (0.012155246500000008) (0.011771528000000003) (0.012097041000000003) (0.012062600500000006) (0.011777401999999992) (0.011620525999999992) (0.011850135500000011) (0.011877656500000014) (0.011652452999999993) (0.012363195999999993) (0.011847466000000001) (0.012032387500000005) (0.0119569125) (0.011980069999999995) (0.012450917000000006) (0.012135137000000004) (0.012359854500000003) (0.011971350000000006) (0.012115024500000002) (0.012033756000000007) (0.01221462899999999) (0.012365708500000017) (0.011953692500000002) (0.012006406499999983) (0.012075765999999988) (0.012064113499999987) (0.012669833000000005) (0.012006968000000007) (0.012216531500000002) (0.012153003499999981) (0.011953727499999997) (0.01204819950000001) (0.01203504100000001) (0.011956386999999999) (0.012397985500000014) (0.012232376000000003) (0.01201279949999999) (0.011807294499999996) (0.012425714500000004) (0.012256073499999992) (0.012074465000000006) (0.01241937600000001) (0.012028986000000005) (0.012946143999999993) (0.012673128999999991) (0.01240751100000001) (0.011834153500000014) (0.011848886500000003) (0.011728907999999996) (0.011866419500000003) (0.011963230500000005) (0.011830317000000007) (0.01162173000000001) (0.011806492999999987) (0.011912152999999995) (0.012004280999999992) (0.011884844500000005) (0.011887570500000014) (0.011785719) (0.011905359500000004) (0.012197657) (0.011923223499999996) (0.011628767000000012) (0.011853581500000002) (0.011717133500000004) (0.011798120999999995) (0.0117649945) (0.011809697500000008) (0.01166412900000001) (0.011735888000000014) (0.011967684500000006) (0.0118152495) (0.012161392500000007) (0.011841758999999993) (0.011766658999999999) (0.012184395) (0.011908787500000004) (0.011802202000000012) (0.012099451499999997) (0.011858456500000003) (0.012407980499999999) (0.012610761499999984) (0.012002819000000012) (0.012666330000000003) (0.011896276999999997) (0.012246120499999999) (0.012368638000000001) (0.012151135000000007) (0.012027522499999999) (0.012087951499999985) (0.012076776499999997) (0.012371716000000005) (0.012123961500000016) (0.012274021499999996) (0.012049149000000009) (0.012009433) (0.012059985999999995) (0.012165657999999996) (0.012055014999999988) (0.012281689500000012) (0.011935628500000003) (0.0121009765) (0.012425472499999993) (0.012011331) (0.012228291500000002) (0.011974660999999998) (0.012221596999999987) (0.012381099500000006) (0.012037595499999984) (0.01229242300000001) (0.011748153499999997) (0.011724228500000003) (0.011937759000000006) (0.012168784000000002) (0.011773492999999996) (0.011947808000000004) (0.01172635200000001) (0.011630479000000013) (0.012111254500000002) (0.012186904499999998) (0.011709603500000013) (0.011828539999999985) (0.011939470999999993) (0.011927444500000023) (0.01194310400000001) (0.011714457499999997) (0.012041794499999994) (0.011591399000000002) (0.01190586049999999) (0.011704242500000003) (0.011660889000000008) (0.011852488500000008) (0.0118753095) (0.011653440500000015) (0.012174156500000005) (0.012152302500000003) (0.011746964000000013) (0.012057018499999989) (0.011865387000000005) (0.012185950499999987) (0.011955279500000013) (0.011678641500000003) (0.011949456999999997) (0.0121331935) (0.011818795499999993) (0.012306324999999993) (0.012445147500000017) (0.012393216500000012) (0.011972315000000011) (0.011944892999999998) (0.012143579500000015) (0.012168990500000004) (0.01219174349999999) (0.012077536000000014) (0.012309293500000013) (0.011962381000000008) (0.012266483499999994) (0.012301163000000004) (0.018081673499999992) (0.012042060500000007) (0.012027680999999998) (0.012033387500000006) (0.012449351000000011) (0.011840467000000007) (0.012107316999999992) (0.012212503) (0.012249152999999999) (0.012138753500000002) (0.012290205499999998) (0.011950241500000014) (0.011972547000000014) (0.012188820000000003) (0.012247588000000004) (0.012043861000000003) (0.011608558500000005) (0.01188342349999999) (0.011784877499999999) (0.011970240500000007) (0.011965377000000013) (0.011802169000000001) (0.011689226499999997) (0.011787677499999996) (0.011946986500000006) (0.011930113000000006) (0.011792353500000005) (0.011906925500000012) (0.011727017500000006) (0.011896984499999999) (0.011853446500000017) (0.012299817000000005) (0.011506603000000004) (0.011809565000000008) (0.011631977500000001) (0.011582755000000014) (0.011869290500000004) (0.011801842999999992) (0.011755505999999999) (0.01205890599999998) (0.012132552000000005) (0.012294905000000009) (0.012008186500000004) (0.011803845499999993) (0.011912213500000005) (0.011836616000000008) (0.011757184500000004) (0.011752449500000012) (0.011841219000000014) (0.012064185000000005) (0.012144441000000006) (0.012281557999999998) (0.012034622999999994) (0.011903417999999999) (0.012051680000000009) (0.011995241000000004) (0.012075809500000007) (0.012064581000000005) (0.012080447499999994) (0.01208981499999999) (0.012211333500000005) (0.0120846015) (0.012054429000000005) (0.012184733000000003) (0.011880532) (0.012126532499999995) (0.012295323499999997) (0.012321721499999994) (0.012190098999999996) (0.012149053999999992) (0.012074189000000013) (0.012030346999999997) (0.012322724000000007) (0.012172663999999986) (0.012028497999999999) (0.012170156000000015) (0.012158232500000005) (0.012000061999999992) (0.01211346499999999) (0.012183763) (0.011578822500000002) (0.011617950500000002) (0.011615036999999995) (0.011730063000000013) (0.011837995500000004) (0.011934705500000004) (0.011646693) (0.0117843225) (0.011900329000000001) (0.011752826999999993) (0.011933118000000006) (0.011948027500000014) (0.011941988) (0.012023218000000016) (0.012017770499999997) (0.011886767500000006) (0.011990504999999999) (0.011875872499999995) (0.011820193999999992) (0.011770654500000005) (0.011858755999999998) (0.01164709500000001) (0.0117680815) (0.011866934999999995) (0.011803467999999998) (0.012059607) (0.012007213000000003) (0.012011702499999999) (0.011685060499999997) (0.0118356045) (0.012038318499999992) (0.011910929) (0.011774206499999995) (0.012334822499999995) (0.012034731000000007) (0.012033291999999987) (0.011885479000000018) (0.012375437000000003) (0.012259932000000001) (0.012211407999999993) (0.012079159499999992) (0.012518200000000007) (0.012548660000000003) (0.01212448549999999) (0.012236301500000005) (0.012276343000000009) (0.012194956499999993) (0.012186867500000004) (0.012185052000000002) (0.012063306999999995) (0.01183721) (0.011933974) (0.011907187999999999) (0.012101919500000002) (0.012172922000000003) (0.01221631799999999) (0.011952556500000003) (0.012149235500000008) (0.012255498000000017) (0.0119851775) (0.012321010000000007) (0.012364425999999998) (0.012175174999999996) (0.012109014500000001) (0.011595941499999998) (0.011828223499999999) (0.011783408500000009) (0.012075407999999996) (0.011527871500000009) (0.011708246500000005) (0.011606236000000006) (0.012219724499999987) (0.011770766999999988) (0.011948705500000004) (0.011778517499999988) (0.011919726500000005) (0.011865211) (0.011916413000000015) (0.011961448) (0.012077634500000017) (0.011898218000000002) (0.011755783000000006) (0.01151165250000001) (0.0117272655) (0.01174953799999999) (0.011941841500000008) (0.011961094999999991) (0.011750793500000009) (0.011897024499999992) (0.011754583000000013) (0.011805977500000009) (0.011719826500000002) (0.012180701999999988) (0.01196096649999999) (0.011781080499999999) (0.011789411) (0.01216064900000001) (0.011958601999999999) (0.012026945999999997) (0.012077137000000002) (0.011923921000000004) (0.012001226000000004) (0.012130987499999996) (0.01193859450000001) (0.012139316499999997) (0.012077301999999984) (0.012328606000000006) (0.012315617000000001) (0.012329370000000006) (0.012220196500000002) (0.012439334499999996) (0.012209781999999988) (0.0120386445) (0.012236011000000005) (0.011881849500000013) (0.012272064499999999) (0.012024860499999998) (0.012281471000000016) (0.012414090500000002) (0.0126385485) (0.01208392450000001) (0.012425836999999995) (0.012217967999999996) (0.012090292000000002) (0.01187146) (0.012320818499999997) (0.012164615000000017) (0.0120782745) (0.011805834500000001) (0.011684333000000005) (0.01189668050000002) (0.012049995500000008) (0.011551172000000012) (0.011822916000000003) (0.011713974500000016) (0.011686369500000002) (0.011827572499999994) (0.011533601500000004) (0.011931361000000001) (0.011774390499999995) (0.011931445999999998) (0.011772356999999997) (0.012212643499999995) (0.01228394599999999) (0.011981961499999985) (0.012010010999999987) (0.011884160500000018) (0.011935578500000002) (0.011669991000000005) (0.011926049499999994) (0.011707967) (0.011550164500000001) (0.012066561999999989) (0.012050285499999994) (0.011834810500000001) (0.012021449500000003) (0.011862351000000007) (0.011921214999999999) (0.011938695499999999) (0.011749083000000021) (0.012188164500000001) (0.012342581000000005) (0.012133676999999995) (0.011976410999999992) (0.012416555999999981) (0.012285627499999993) (0.012097902000000008) (0.012559628000000003) (0.011959721000000006) (0.012044020499999988) (0.012094874500000005) (0.012113625999999988) (0.012000442) (0.01213234349999999) (0.012311754500000008) (0.0123593595) (0.012420356000000021) (0.012357872499999992) (0.012081779) (0.01203746850000001) (0.012106365000000008) (0.01231267300000001) (0.012039532499999991) (0.012188183499999991) (0.012392754499999992) (0.012004966499999992) (0.012118139499999986) (0.012278218999999993) (0.012218163000000004) (0.012067945999999996) (0.012152732) (0.012215747000000013) (0.011976874999999998) (0.011669698499999992) (0.011704907) (0.012116886500000021) (0.011709988500000004) (0.012164211499999994) (0.011811555000000001) (0.011713716499999999) (0.011941510000000002) (0.011724145500000005) (0.011720588500000004) (0.01217207599999999) (0.011981454500000002) (0.012022788000000006) (0.011860456999999991) (0.012221124999999985) (0.011835604) (0.011904713500000011) (0.012206396999999994) (0.011867823999999999) (0.011852612500000012) (0.011773366999999993) (0.0117286885) (0.011611831500000003) (0.011779677500000002) (0.012083137999999993) (0.011837814500000002) (0.011713096999999992) (0.012043369999999998) (0.012093863499999996) (0.011823675999999991) (0.011789676499999999) (0.012022826999999986) (0.011849756000000003) (0.012043627000000015) (0.012046192000000011) (0.012218764500000007) (0.012098965500000003) (0.011947690499999983) (0.012299607500000004) (0.012203011) (0.012296624000000006) (0.012276952500000007) (0.012222772000000007) (0.012225893000000002) (0.012193784) (0.012041566000000004) (0.012000197500000004) (0.012219118499999987) (0.012138469499999999) (0.011824685500000015) (0.011910307000000009) (0.012034438000000008) (0.012090850500000014) (0.012157016500000006) (0.012454267000000005) (0.012403376999999993) (0.012199755500000006) (0.012313505000000016) (0.012535714999999989) (0.012307700000000005) (0.01233353949999999) (0.012001923000000025) (0.012365234500000002) (0.01158009950000001) (0.011816121499999999) (0.011785483) (0.012012841499999996) (0.011722299500000005) (0.012073032499999997) (0.011919939500000018) (0.011819905499999991) (0.011855584000000002) (0.011934725500000007) (0.011794654000000016) (0.011916773499999991) (0.012062843500000017) (0.011806113000000007) (0.012278333500000002) (0.01182756750000001) (0.011840465000000008) (0.011671008499999996) (0.011809160499999999) (0.011864380499999994) (0.011981681499999994) (0.011943568499999987) (0.011981753000000012) (0.0117215715) (0.012155687000000012) (0.011657292000000014) (0.012110559000000007) (0.011800345500000003) (0.011893856499999994) (0.011966855500000012) (0.012017536999999995) (0.011848515000000004) (0.011938784499999994) (0.012126814) (0.011986653500000014) (0.012219107499999993) (0.012102131000000002) (0.012048544499999994) (0.011858333499999998) (0.012146133000000003) (0.012069369999999982) (0.012087899499999999) (0.012041715499999994) (0.012273027000000006) (0.012258726999999997) (0.012418169500000006) (0.01206852550000001) (0.012285981999999987) (0.012028391499999985) (0.011928112500000018) (0.012111939000000002) (0.011836554499999999) (0.012734544499999986) (0.012002816) (0.012613102999999987) (0.012119128000000007) (0.012008090000000013) (0.012310985999999996) (0.011963571500000006) (0.012428732499999998) (0.01222535000000001) (0.012390940000000003) (0.012131638) (0.012157961999999994) (0.01232498) (0.011848321000000009) (0.011783458999999996) (0.012069457500000005) (0.01187405200000001) (0.011780221999999993) (0.011863815) (0.01191494500000001) (0.012281372000000013) (0.011851473000000001) (0.01221509400000001) (0.0118682955) (0.011739196499999993) (0.011937721999999984) (0.011951467999999993) (0.011749746500000005) (0.011991885000000008) (0.011752933500000007) (0.011993613) (0.011861248000000005) (0.01167620400000001) (0.011790450500000008) (0.011832885000000015) (0.011573951499999985) (0.011890808000000003) (0.012051611000000018) (0.011862262000000012) (0.011877320499999997) (0.011780915000000003) (0.012119528500000004) (0.011938167999999999) (0.011703808499999996) (0.012261494999999997) (0.012166192000000006) (0.011889957500000006) (0.011953362499999995) (0.012102272000000011) (0.011969160499999992) (0.012038635499999992) (0.012273333999999997) (0.01237680699999999) (0.012130695999999996) (0.012256043500000008) (0.01201886050000002) (0.012019842499999989) (0.012071063999999992) (0.012220141500000004) (0.012383116999999985) (0.011888923999999995) (0.011932731499999988) (0.012304566000000003) (0.012070047) (0.012064945999999993) (0.012178297000000005) (0.012183510999999994) (0.012284874500000001) (0.012117616500000011) (0.012078183999999992) (0.012542820499999996) (0.012358874500000006) (0.01225306549999998) (0.012214689500000014) (0.012327677999999995) (0.012137534000000005) (0.011992456500000012) (0.011841294499999988) (0.011670575000000002) (0.011901285499999997) (0.011904621000000004) (0.01175158350000001) (0.011722299499999991) (0.011800597499999982) (0.011895369500000003) (0.011910364500000006) (0.011873569) (0.011942643500000003) (0.011856119999999998) (0.0118038055) (0.012146966999999995) (0.011923212500000002) (0.011834099) (0.011874987999999989) (0.012790366499999997) (0.011987234) (0.011601584999999984) (0.011788272500000002) (0.011860772999999991) (0.011686025500000002) (0.012130220000000011) (0.011814740000000004) (0.011885629999999994) (0.011965815000000005) (0.011825983999999998) (0.011934100500000003) (0.0117307985) (0.012028272000000007) (0.012198734000000003) (0.011960222000000006) (0.012557760000000001) (0.012144174500000007) (0.012090821500000001) (0.012225188499999998) (0.012178059000000005) (0.012070059999999994) (0.012140160999999997) (0.012103970500000005) (0.012084545000000002) (0.012407256499999991) (0.01237381650000001) (0.01225615499999999) (0.012263779500000002) (0.012178248999999988) (0.012152000999999982) (0.012152094500000016) (0.0141022715) (0.012346996500000013) (0.012276602499999997) (0.01225619700000001) (0.012167202999999988) (0.012266165499999995) (0.012237324000000008) (0.0122081255) (0.0121235425) (0.012258317000000005) (0.011928742499999992) (0.012527092000000017) (0.012212179000000004) (0.012017267000000012) (0.011702446499999991) (0.011819804000000003) (0.011818786999999997) (0.011559262) (0.011756428) (0.011737807500000003) (0.011870738999999991) (0.012042203999999987) (0.011968912499999998) (0.011694996999999999) (0.011870411499999997) (0.011767518000000018) (0.011991595000000008) (0.012380778500000009) (0.011893626000000004) (0.011993972000000006) (0.011697724500000006) (0.011971459500000017) (0.011766697000000007) (0.011812471500000005) (0.011685560499999997) (0.011626640000000021) (0.011914396499999994) (0.011744917500000007) (0.011736156499999997) (0.011731123999999996) (0.011930638999999993) (0.011810393500000002) (0.011947399000000011) (0.01184293950000001) (0.011915227) (0.011866166999999983) (0.012130796499999999) (0.012122283000000011) (0.012218221000000001) (0.012338473500000002) (0.012247638000000019) (0.011940496499999995) (0.012130646499999995) (0.01195886950000001) (0.012144772499999998) (0.012253848000000012) (0.012073177000000004) (0.012502680000000002) (0.01201044100000001) (0.012129216499999998) (0.01234879400000001) (0.012439828999999986) (0.01190049550000001) (0.012144252999999994) (0.012045517999999991) (0.011962431499999995) (0.012056716499999995) (0.012082355999999989) (0.012212307500000005) (0.012165159000000009) (0.012285614) (0.01232522350000001) (0.012077014999999997) (0.012365516499999993) (0.012170286000000002) (0.012578247) (0.012123399499999993) (0.012235225499999988) (0.011695625500000001) (0.011991070000000006) (0.011624997499999998) (0.011720079499999994) (0.01176481) (0.01179355600000001) (0.011644730500000006) (0.012034524000000005) (0.011784238999999988) (0.012173297499999985) (0.012422382499999995) (0.012140725000000005) (0.012274826500000002) (0.012044575500000002) (0.012456352000000004) (0.011803882499999988) (0.01185920700000001) (0.011891805500000005) (0.01169878349999999) (0.011924030500000002) (0.011853150000000007) (0.011804988500000002) (0.011695581499999996) (0.011683312500000001) (0.012153612500000008) (0.011775551500000009) (0.012153865) (0.011776415499999998) (0.011747675999999999) (0.011699908000000009) (0.011779210000000012) (0.011818346999999993) (0.012075352999999997) (0.012142051000000001) (0.012140188999999996) (0.011929690500000006) (0.011741335999999991) (0.012199437000000007) (0.011932089500000007) (0.012238009999999994) (0.013618482499999987) (0.011987301500000005) (0.012385169499999987) (0.011924552500000005) (0.012549722500000013) (0.012120015999999997) (0.012377501000000027) (0.011994438999999996) (0.0124942485) (0.012172897500000002) (0.012260578500000008) (0.012101586499999997) (0.012416930499999992) (0.012290224500000002) (0.012162734999999994) (0.011947139499999995) (0.0122234695) (0.01219086799999998) (0.012132301499999998) (0.012067463000000014) (0.012248774000000004) (0.012146356999999997) (0.011894437500000007) (0.012083780999999988) (0.011603917000000005) (0.01200533749999999) (0.011800280999999996) (0.011617669499999997) (0.01193132899999999) (0.011978321500000014) (0.01231051100000001) (0.011905561499999995) (0.011848986000000006) (0.012133726499999997) (0.011772936999999997) (0.012204418999999994) (0.012139980499999994) (0.012079217499999989) (0.011847663999999994) (0.01180917799999999) (0.011926067999999998) (0.011920578000000001) (0.011669645499999992) (0.011784535999999998) (0.011691319000000006) (0.012040212499999994) (0.011625705500000014) (0.011835594500000005) (0.011664082499999992) (0.012075534499999999) (0.011864216499999983) (0.011747918999999982) (0.011931392999999998) (0.011943758499999999) (0.011804128999999997) (0.011934303500000007) (0.012155466000000004) (0.012339858499999995) (0.011781963000000006) (0.012174655000000006) (0.011993164) (0.01200791250000001) (0.012038290500000007) (0.012223612499999995) (0.012093893500000008) (0.012202048000000007) (0.012204935) (0.012678106500000008) (0.012249728000000001) (0.012293298999999994) (0.012126121500000003) (0.014084504500000025) (0.012313770500000001) (0.012099170500000006) (0.012216981000000002) (0.012047948000000003) (0.012119140499999986) (0.012036252000000011) (0.011966814000000006) (0.012125012500000004) (0.012170497500000002) (0.012267960999999994) (0.012180067500000002) (0.012325972500000004) (0.012046163999999998) (0.012117725499999996) (0.011990327500000009) (0.012470392499999997) (0.011623923500000008) (0.012116851999999997) (0.0117467755) (0.011710712499999984) (0.01163930399999999) (0.011726385999999991) (0.011936675000000008) (0.011880766000000001) (0.012099839000000001) (0.011628921999999986) (0.01201327649999999) (0.011981162499999976) (0.011761495999999996) (0.011766520500000002) (0.011857972500000008) (0.012042184499999997) (0.0119020175) (0.012083130000000011) (0.011763438000000001) (0.011873415499999998) (0.012087225500000007) (0.011989437499999991) (0.011798247499999998) (0.011934013999999993) (0.01208028450000001) (0.011969415999999997) (0.012000229500000015) (0.012044212000000012) (0.011957696000000032) (0.011921269499999998) (0.011803223500000015) (0.01218105550000001) (0.012341687500000004) (0.011923226999999995) (0.011992553000000003) (0.012134724) (0.012143471500000003) (0.012432720499999994) (0.012213566499999995) (0.011968648999999998) (0.012107722500000001) (0.01220544450000001) (0.012417835500000002) (0.012216066499999997) (0.012128653500000017) (0.012208192500000006) (0.012430584999999994) (0.012379545500000005) (0.012148403000000002) (0.012329004500000018) (0.012535269999999987) (0.0121232805) (0.01231491699999998) (0.01223038450000001) (0.012198785000000004) (0.01199473899999999) (0.01215007450000001) (0.01209196350000001) (0.012064316999999991) (0.012206093000000001) (0.012527458000000005) (0.012203405499999986) (0.012220447499999995) (0.0121419485) (0.011703630500000006) (0.01175064449999999) (0.011719114500000016) (0.011776290999999994) (0.011925744000000002) (0.012013043000000001) (0.011924483999999999) (0.011943928500000006) (0.011765695000000007) (0.012004603500000002) (0.011744930000000015) (0.0120320035) (0.011830198) (0.012047226500000008) (0.01211392850000001) (0.011855592499999998) (0.011833656000000012) (0.011682113499999994) (0.01170805150000001) (0.011656198500000006) (0.011854446500000018) (0.011765485500000006) (0.011896011499999998) (0.011882802000000012) (0.011948470999999988) (0.011667455000000007) (0.011698182500000015) (0.011574448999999987) (0.011741336000000005) (0.012125345499999995) (0.011817441499999998) (0.011769308000000006) (0.01200984699999999) (0.011936073000000005) (0.012015386000000003) (0.011941123500000012) (0.011918198000000005) (0.012125665500000007) (0.012012968999999984) (0.012213528000000015) (0.012014373999999994) (0.012208330000000017) (0.012371073999999996) (0.012103704000000007) (0.012050303500000012) (0.012214101500000019) (0.012086426999999997) (0.012175297000000002) (0.012220629999999996) (0.011844918999999995) (0.012244004000000003) (0.0123506585) (0.012085378500000007) (0.012087232500000017) (0.011971791999999995) (0.011877237499999999) (0.012197211999999999) (0.012176857999999999) (0.01214486499999999) (0.012161646499999984) (0.012171694499999997) (0.011995632500000006) (0.012100231000000003) (0.01222546699999999) (0.0117912575) (0.011710086499999994) (0.01174153850000001) (0.011910744500000015) (0.011712517500000005) (0.011887276500000002) (0.011569836499999986) (0.011506703499999993) (0.012001072000000002) (0.011774300499999987) (0.011834869499999998) (0.011948996000000003) (0.012112233000000014) (0.012194880000000005) (0.012168414499999988) (0.01177636700000001) (0.011783345500000014) (0.011838230500000005) (0.011802200999999998) (0.011605219) (0.011894707500000004) (0.011710094500000004) (0.011717522000000008) (0.012086604) (0.012066311999999996) (0.01193030249999999) (0.011758861999999995) (0.011850952499999984) (0.011874469000000012) (0.012032214000000013) (0.011893884499999993) (0.011865217499999983) (0.012338440500000006) (0.012036666500000001) (0.012159804499999996) (0.012149404500000002) (0.012013550999999997) (0.012349319999999983) (0.012020502000000002) (0.012278167499999992) (0.012317533499999991) (0.012591655500000007) (0.012164349500000005) (0.012039143000000002) (0.012243318499999989) (0.0122614885) (0.012121997999999995) (0.012028887000000002) (0.012095758499999998) (0.012440314000000008) (0.012061018500000006) (0.012070306000000003) (0.012246203999999997) (0.012326016500000009) (0.012307765500000012) (0.012066087499999989) (0.012226849500000012) (0.012649307999999998) (0.012144838000000005) (0.012044496999999987) (0.012379180999999989) (0.012122000000000008) (0.012055531500000008) (0.012013429000000006) (0.011629029000000013) (0.011871740499999991) (0.012015137499999995) (0.012007839500000006) (0.012090920500000005) (0.0117637035) (0.011752878999999994) (0.011596763499999996) (0.011986273499999991) (0.011843567499999999) (0.011776030000000007) (0.011659230500000006) (0.011905836500000003) (0.011922100500000005) (0.01200954849999998) (0.01186010600000001) (0.011678286499999996) (0.012008042499999996) (0.0118200475) (0.01176344) (0.012021583500000002) (0.011657640499999997) (0.011653084000000008) (0.011755020000000005) (0.012165973999999996) (0.01182514300000001) (0.012198900499999998) (0.01207380000000001) (0.0116775935) (0.011918061499999993) (0.012012336999999998) (0.011922775499999996) (0.012004155500000002) (0.0119491085) (0.011977218500000011) (0.012044677500000017) (0.012099041500000005) (0.01200261250000001) (0.012141380500000007) (0.012089307999999993) (0.012173987999999997) (0.012240135499999999) (0.012037360499999997) (0.012085902999999995) (0.012367675500000008) (0.012147095499999996) (0.012004763000000016) (0.011972228500000001) (0.012087740999999999) (0.0122328565) (0.01196112349999999) (0.011989615499999995) (0.012022824000000001) (0.012118337999999992) (0.011975349499999996) (0.012018065499999994) (0.011977889499999991) (0.012150008500000004) (0.011984520499999998) (0.012267204500000004) (0.012068959000000004) (0.012188999499999992) (0.012225680000000003) (0.012266908000000007) (0.0121139735) (0.011703575499999994) (0.011574669499999996) (0.011671252999999993) (0.011799019000000008) (0.0118284055) (0.011822428999999995) (0.011908849000000013) (0.011782927999999984) (0.011965394500000004) (0.011653243999999993) (0.012160733000000007) (0.01170114500000001) (0.011707094500000001) (0.011710268500000023) (0.011821520000000002) (0.011842884999999997) (0.012112319999999996) (0.011647994499999995) (0.012339783500000007) (0.011886958500000003) (0.011792234499999998) (0.011992572499999993) (0.011830744500000004) (0.011745435499999998) (0.01232155900000001) (0.01174220300000002) (0.012194104000000011) (0.011937247499999998) (0.011917867500000012) (0.01190651999999999) (0.011955234499999995) (0.012287498500000008) (0.0122109455) (0.012092315000000006) (0.011913646) (0.012032902500000012) (0.012076062500000012) (0.01206016900000001) (0.012060567499999994) (0.012019730499999992) (0.012212610499999998) (0.012111413000000001) (0.012410036) (0.012073013499999993) (0.012153537499999992) (0.012287147999999998) (0.01218503500000001) (0.012116332499999993) (0.011998610500000007) (0.01212544900000001) (0.012290870499999995) (0.012128980999999997) (0.012205263500000008) (0.012013779000000002) (0.012361203000000001) (0.012526460500000003) (0.012321157499999999) (0.0123481535) (0.012025502499999993) (0.01287845) (0.012099291999999998) (0.012299882499999998) (0.01241299450000001) (0.011844157999999994) (0.011595300000000003) (0.011865901499999998) (0.011750632499999997) (0.011708546500000014) (0.011858207999999995) (0.011926714500000005) (0.012075887500000007) (0.011787875499999989) (0.011869627500000007) (0.011920406999999994) (0.01190118150000001) (0.012054293500000007) (0.011957813000000012) (0.011863895500000013) (0.011851560000000011) (0.011779410500000004) (0.011951999000000005) (0.01227516749999999) (0.011798340000000004) (0.012331053000000008) (0.011510729000000011) (0.011725235) (0.011783521499999991) (0.011903757000000001) (0.011728136) (0.011625930499999992) (0.011789046499999983) (0.011976743499999998) (0.011882901500000001) (0.011791482000000006) (0.012061113499999998) (0.01248666100000001) (0.012072324500000009) (0.012056307000000016) (0.011994306499999996) (0.012325322) (0.012197177500000003) (0.012106751999999985) (0.012130523000000004) (0.012032101000000003) (0.012149592500000014) (0.012055648500000002) (0.012467574500000009) (0.012056071000000002) (0.012108364499999996) (0.012171103000000003) (0.012189995500000009) (0.011947159999999998) (0.012131323999999999) (0.01199177500000001) (0.012250677500000001) (0.012074629500000003) (0.012167677500000001) (0.012199790500000002) (0.011855723499999984) (0.012295783000000005) (0.012221662500000008) (0.012362626000000002) (0.012227142999999996) (0.0122452205) (0.012389534500000007) (0.012174127499999993) (0.012115152500000004) (0.011820176500000001) (0.011970467499999998) (0.011787385499999997) (0.011751398999999996) (0.012033046999999991) (0.011834314999999984) (0.011954042499999998) (0.011702146499999996) (0.012087526499999987) (0.011859015999999986) (0.011780762499999986) (0.0117876695) (0.011822256499999989) (0.012034721999999998) (0.011746885999999998) (0.0117172745) (0.011593103500000007) (0.011574530999999999) (0.011626896499999997) (0.011562556000000002) (0.011643876000000011) (0.011616761499999989) (0.012145948500000017) (0.012191874500000005) (0.011725257000000003) (0.012076917500000006) (0.011870303999999998) (0.011948335000000004) (0.011814471500000007) (0.011761948499999994) (0.011653999999999984) (0.011797115499999983) (0.01202732799999999) (0.012038350500000003) (0.012071632999999998) (0.012244176500000009) (0.012327171999999997) (0.012057953999999996) (0.01240297500000001) (0.011990177500000004) (0.012115800499999996) (0.012324554000000001) (0.012052760999999995) (0.01204601100000001) (0.012376633499999998) (0.012281336000000004) (0.012604389999999993) (0.012457973999999997) (0.012035847499999988) (0.01208940600000001) (0.012151020499999984) (0.012248251499999988) (0.012084733) (0.012070993500000002) (0.0119940625) (0.011945752500000004) (0.012167996) (0.012034627499999992) (0.01199808099999998) (0.012171045500000005) (0.0123946105) (0.012125751000000004) (0.012535142499999999) (0.012178607499999994) (0.011984016) (0.011825836000000006) (0.011721519) (0.011826927000000015) (0.012050882500000012) (0.011855430499999986) (0.011668227000000003) (0.011764412000000016) (0.011757227999999995) (0.011913621499999999) (0.012145305500000009) (0.012152587499999992) (0.011751209000000012) (0.01182342850000001) (0.011939563000000014) (0.011886255999999998) (0.011713570500000006) (0.011652809) (0.011614893500000001) (0.011670237) (0.01179078) (0.012180862999999986) (0.011857576499999994) (0.011706354000000016) (0.011742438000000008) (0.011948082999999998) (0.012144271499999998) (0.011962504499999999) (0.011782780500000006) (0.011753354499999993) (0.011995089500000014) (0.011693660999999994) (0.012144208500000003) (0.012317713999999994) (0.012463528500000001) (0.012399835500000012) (0.011905157999999999) (0.012123749500000003) (0.012176331499999984) (0.012102709499999989) (0.012222061500000006) (0.012247143000000002) (0.01213496) (0.014103182500000006) (0.012429457500000005) (0.012202145500000011) (0.012417639999999994) (0.012117324499999998) (0.012202416499999993) (0.012239041500000006) (0.0119970675) (0.012019045500000006) (0.012042245999999993) (0.012003167500000009) (0.012248170000000003) (0.012027749000000004) (0.012395918500000006) (0.012167747500000006) (0.012188295000000002) (0.012178477999999993) (0.012127225000000005) (0.012301510499999987) (0.012148489999999998) (0.01200398250000001) (0.011695755499999988) (0.0117809995) (0.01176909800000002) (0.011891764500000013) (0.011820417500000013) (0.011695436500000017) (0.011659556000000001) (0.011830414500000011) (0.011605932000000013) (0.011714256000000006) (0.0117519185) (0.011867035999999997) (0.011898219500000001) (0.011786856499999998) (0.01186731499999999) (0.011953251499999998) (0.011786712500000004) (0.011953711999999991) (0.011978478500000014) (0.011772189500000002) (0.011509755999999996) (0.011844688999999992) (0.011831633999999994) (0.011613468500000002) (0.011835194000000007) (0.012079233999999994) (0.011739917000000002) (0.012043319499999997) (0.011796517499999992) (0.011950372000000015) (0.012027334000000015) (0.011668405500000006) (0.011868871500000003) (0.012355209999999991) (0.011870671499999985) (0.0122890935) (0.011958729500000001) (0.012089415000000006) (0.012529007000000009) (0.01210418549999999) (0.012210416000000002) (0.012699365000000004) (0.0122437715) (0.012825510499999998) (0.01243211150000001) (0.012387377500000019) (0.012393907499999995) (0.012550171000000013) (0.012187806500000009) (0.012126802500000006) (0.012325058) (0.012308096500000004) (0.012027481500000006) (0.012051876000000003) (0.012219233999999995) (0.012267602500000002) (0.01226274949999999) (0.012262215999999992) (0.012493370000000004) (0.012168728000000004) (0.012257063999999998) (0.012438622499999996) (0.01209766000000001) (0.012538410499999986) (0.011959176000000002) (0.012077124999999994) (0.011686007500000012) (0.011701757499999993) (0.0118360525) (0.012015474499999998) (0.011815490499999998) (0.011830065) (0.011844117500000001) (0.011884946000000007) (0.011745998000000007) (0.012229179500000006) (0.012099282999999988) (0.011828096999999996) (0.011941788499999995) (0.011810156500000002) (0.011733822500000005) (0.01161020900000001) (0.011798295) (0.011714929000000013) (0.0118492345) (0.011670564000000008) (0.011782819499999986) (0.011768381000000008) (0.01200291349999999) (0.011847352000000005) (0.0118525035) (0.011983462) (0.012153377000000007) (0.011931092500000004) (0.011807306500000003) (0.012119984) (0.012179019) (0.012235434999999989) (0.012054471999999997) (0.011887697000000003) (0.012356351999999987) (0.011876986999999992) (0.012029613000000008) (0.011945510000000006) (0.012203353000000014) (0.011930624999999986) (0.012249267499999994) (0.01218376950000001) (0.012394651000000007) (0.012147986000000013) (0.012231199499999998) (0.012120242000000017) (0.01211738150000001) (0.01231830049999999) (0.012161063500000013) (0.012176385499999998) (0.012366871000000002) (0.012253814999999987) (0.012249804000000003) (0.012136883499999987) (0.012195810000000015) (0.011863903999999995) (0.012085875999999982) (0.012035329999999997) (0.012372114000000003) (0.01245614149999999) (0.012254627000000004) (0.012011748500000002) (0.011847767499999995) (0.01175452099999999) (0.01184518050000001) (0.01183890550000001) (0.01187073999999999) (0.011855342000000005) (0.011663964500000013) (0.011793482000000008) (0.012223706999999986) (0.01246063650000001) (0.011792888000000001) (0.011945780499999989) (0.011962708500000002) (0.011910727999999995) (0.01207722700000001) (0.011647305499999996) (0.012072628500000002) (0.011763036500000004) (0.011652452999999993) (0.011874616000000005) (0.011612462500000004) (0.011691635000000006) (0.01170658300000002) (0.012056833000000003) (0.011871826000000002) (0.011837585999999997) (0.012050155000000007) (0.012084995999999987) (0.012077144499999998) (0.011905794999999997) (0.012174669499999985) (0.01173655550000001) (0.012107293499999991) (0.012176661000000005) (0.012226681499999989) (0.012163105500000007) (0.012138549999999984) (0.012176914000000011) (0.011944249500000018) (0.012231189500000017) (0.012126667000000008) (0.0120343235) (0.012082165499999992) (0.011911784000000009) (0.01222941100000001) (0.012128791) (0.012224413500000003) (0.012262188499999993) (0.012342698999999999) (0.012327386499999995) (0.011980410999999996) (0.012259034500000002) (0.012091530500000003) (0.012177859499999985) (0.012123004999999992) (0.012172813000000005) (0.012293441500000016) (0.012083419499999998) (0.012041976999999995) (0.011989989500000006) (0.012109717000000006) (0.012281530499999985) (0.012194071499999987) (0.012419400499999997) (0.012001477499999996) (0.0121105715) (0.011762941500000013) (0.011824197999999994) (0.011798968499999993) (0.012054063500000017) (0.0116529405) (0.011758366999999992) (0.011880760000000004) (0.011868196999999983) (0.01181836700000001) (0.011862975999999997) (0.012120884499999998) (0.011766856500000006) (0.012056505000000009) (0.011714450500000001) (0.011888573999999985) (0.012024448500000007) (0.011963297000000012) (0.011706792499999993) (0.011956163000000006) (0.011711848499999997) (0.011810400499999998) (0.012036654499999994) (0.012262501500000009) (0.012282793499999986) (0.011955848000000005) (0.011944532999999993) (0.011769790499999988) (0.011823798499999996) (0.011915038499999989) (0.011579425500000018) (0.012581098500000013) (0.01201756200000001) (0.012123573999999998) (0.012120930000000002) (0.01244026749999999) (0.012060653000000005) (0.012015386500000003) (0.011912049500000008) (0.012306503999999996) (0.012121312500000009) (0.012347608499999996) (0.012121836499999997) (0.012089157500000003) (0.012224116999999993) (0.012275882000000002) (0.012289212999999993) (0.012282373999999999) (0.012077343000000004) (0.012204866500000008) (0.01202797650000001) (0.011917537500000006) (0.012078064999999999) (0.011889894500000012) (0.011864315000000014) (0.012544565500000007) (0.012202464999999996) (0.012269791000000002) (0.01203256450000001) (0.012482010499999988) (0.012273580999999992) (0.01205608150000001) (0.0122348605) (0.011721955999999992) (0.01179084200000001) (0.011704831999999998) (0.011662681000000008) (0.0116347745) (0.011721527500000009) (0.011833577499999984) (0.011787297500000002) (0.012020779499999995) (0.011930579999999982) (0.012235393499999997) (0.011798458500000011) (0.011918782499999989) (0.012047037999999996) (0.011895731999999992) (0.0118804765) (0.011966715500000003) (0.012023448500000006) (0.011676002500000005) (0.011746011499999987) (0.012061027000000002) (0.011982887999999997) (0.011947255000000004) (0.011782672499999994) (0.01203138899999999) (0.011966551500000006) (0.011921206500000003) (0.012022536) (0.01228336549999999) (0.011954706999999995) (0.011966719) (0.012226470500000003) (0.012094420500000008) (0.011888800000000005) (0.012298610500000001) (0.012270273500000012) (0.012167022000000013) (0.012095537500000017) (0.011940295000000017) (0.01207564600000001) (0.01222318) (0.01235575650000001) (0.01222557299999999) (0.012264699500000004) (0.01223724100000001) (0.01228183749999999) (0.012118134500000002) (0.012288619500000014) (0.012211891499999988) (0.012213507999999984) (0.011968565) (0.012061210499999989) (0.012153246999999992) (0.012071460999999992) (0.012016271999999995) (0.012640072499999988) (0.012106678499999995) (0.01207497149999999) (0.012055088499999991) (0.01258327849999999) (0.012342657500000007) (0.012157465499999992) (0.012187163) (0.012302048999999995) (0.011782986999999995) (0.012098595000000004) (0.011916280000000001) (0.012136472499999995) (0.0119678815) (0.011841496499999993) (0.011836061499999995) (0.012022627999999994) (0.011818407000000003) (0.011749098500000013) (0.01187639) (0.011941252) (0.011971275500000003) (0.011923462499999996) (0.011683313) (0.011946914500000003) (0.011926538999999986) (0.011731177999999995) (0.011935865500000004) (0.011873925000000007) (0.011963639500000012) (0.011861156999999997) (0.011859363500000011) (0.0122324865) (0.011909491999999994) (0.011903138499999993) (0.011849834999999989) (0.011890779500000004) (0.011806568000000003) (0.011858239500000006) (0.011764014999999989) (0.012101914500000005) (0.011982432000000001) (0.012118154000000006) (0.012400204499999998) (0.01213103850000001) (0.012009710499999993) (0.012439083500000003) (0.012391193499999995) (0.012407172499999994) (0.012065609500000005) (0.012353097999999993) (0.012398124499999982) (0.012078037) (0.012826526500000004) (0.012153535000000007) (0.012140778500000005) (0.012119065499999998) (0.012078219000000001) (0.012111390999999999) (0.012680657499999998) (0.0120752405) (0.011985773000000005) (0.011840668499999998) (0.012261234499999996) (0.012004938000000007) (0.011982426500000004) (0.012102026999999987) (0.012002687999999997) (0.012112434000000005) (0.012054448499999995) (0.011997201000000013) (0.012315379000000001) (0.012531658000000001) (0.011566562000000002) (0.011983450499999979) (0.011617861500000007) (0.011825464000000008) (0.0116689435) (0.011714483000000012) (0.012149354499999987) (0.011751543000000003) (0.01178622850000001) (0.011879167499999996) (0.011767041499999992) (0.011792947999999998) (0.011906864500000003) (0.011672259500000004) (0.01172951500000001) (0.011930681999999984) (0.011712998000000002) (0.01186126350000001) (0.011567186000000007) (0.011670861000000005) (0.011961924999999998) (0.012053712500000008) (0.011701526000000004) (0.011802152499999996) (0.012129358999999978) (0.011773499500000006) (0.011906252000000006) (0.0118543505) (0.011740433500000008) (0.012043952499999996) (0.011874042999999987) (0.011921231500000004) (0.012074628500000004) (0.011938553500000004) (0.012240466500000019) (0.012194495999999999) (0.012547241) (0.012249023500000011) (0.011967952000000004) (0.011995877000000016) (0.012649983000000004) (0.01216205799999999) (0.011942751000000001) (0.01206760200000001) (0.012026005999999992) (0.012073622499999978) (0.012194427999999993) (0.012258006000000002) (0.01232478799999999) (0.012218050499999994) (0.012378091000000008) (0.012300540999999998) (0.012068766500000008) (0.0122162465) (0.011989896) (0.01223107250000001) (0.012173808499999994) (0.012285684000000005) (0.012512523499999983) (0.012035888999999994) (0.012352945000000004) (0.012153085000000008) (0.012329314000000008) (0.012581843500000009) (0.011694096499999987) (0.011783886999999993) (0.011870091999999999) (0.011676811499999995) (0.011643364500000017) (0.011671911500000007) (0.011912744000000003) (0.011742869500000003) (0.011742396500000002) (0.011999472499999997) (0.011699048500000003) (0.01250248000000001) (0.01172295000000001) (0.012110284499999999) (0.011755262000000002) (0.011865515499999993) (0.011761653999999996) (0.011759859000000011) (0.011775543999999985) (0.012316131499999994) (0.011718635499999991) (0.011860643000000004) (0.011728691) (0.011795242500000011) (0.012645754500000009) (0.01209502350000001) (0.011708208500000011) (0.011827558000000016) (0.011991115499999996) (0.012133931499999986) (0.012023058000000003) (0.01225014649999999) (0.012067196500000002) (0.012193531000000007) (0.012185070000000006) (0.012066854000000002) (0.01215411050000001) (0.012278766999999996) (0.0122236815) (0.012032371) (0.012363913500000004) (0.012261272000000004) (0.012141622500000004) (0.012427515999999986) (0.012216873500000003) (0.01240849799999999) (0.011971213500000008) (0.012051299999999987) (0.01208867000000001) (0.012335801500000007) (0.012192307999999999) (0.012162270500000003) (0.012185516499999993) (0.012301016499999998) (0.011969113500000003) (0.011941128999999995) (0.012174321000000002) (0.012218559000000004) (0.012038088000000016) (0.012282294) (0.012080383500000014) (0.012277516499999988) (0.011989992500000018) (0.012026334500000013) (0.011780749500000007) (0.011917242500000008) (0.011852715) (0.011865472000000002) (0.012041824500000006) (0.011852321499999999) (0.012102916000000005) (0.011830236999999993) (0.012021861000000009) (0.012030685) (0.011979878) (0.011922060000000012) (0.012084676500000016) (0.012284202500000008) (0.011827367499999991) (0.012492444500000005) (0.011612675500000003) (0.011659810999999992) (0.01200710499999999) (0.011762495499999998) (0.011917975999999983) (0.011665113000000005) (0.011832316499999995) (0.011680011500000004) (0.011926861999999996) (0.0117211225) (0.012068750000000003) (0.0122799725) (0.012144270499999985) (0.011960902999999995) (0.012106705999999995) (0.011713888999999991) (0.012073195999999994) (0.012043054999999997) (0.011907340500000002) (0.012104070000000008) (0.012487706499999987) (0.012100809500000004) (0.01238519099999999) (0.012221661499999995) (0.012353254999999994) (0.012144273000000011) (0.012358679500000011) (0.012091883499999997) (0.012017769499999997) (0.012211556999999998) (0.01206600649999999) (0.012182134999999997) (0.011976769999999998) (0.012153166499999993) (0.012040924999999994) (0.012081135500000006) (0.011936970000000005) (0.012260774500000002) (0.01209917150000002) (0.012188804500000011) (0.012299239000000003) (0.012278659499999997) (0.012132731999999993) (0.012273308999999996) (0.012273367000000007) (0.012316938500000013) (0.01234428550000001) (0.01199935399999999) (0.011555111000000007) (0.011849636499999983) (0.011608229999999997) (0.011758247) (0.011788912499999998) (0.011895572999999993) (0.011567908000000002) (0.011828484500000014) (0.011637295499999992) (0.011726865500000003) (0.011700234000000004) (0.011820773000000007) (0.011992202500000007) (0.011749219500000005) (0.01179839499999999) (0.011763429499999992) (0.011765565499999991) (0.011639771999999993) (0.012105925999999989) (0.011641339) (0.011719358000000013) (0.011648718000000002) (0.01193364899999999) (0.011759567499999998) (0.011980154000000007) (0.011912328) (0.011713063999999995) (0.011665944499999997) (0.011980326499999985) (0.011738027499999998) (0.011975727999999991) (0.011994074499999993) (0.0123974065) (0.011901712499999995) (0.012507202499999995) (0.011999648000000002) (0.012517642499999995) (0.012092163499999989) (0.011995256499999996) (0.011999727999999987) (0.012380798999999984) (0.011994028500000017) (0.012065576500000008) (0.011955752) (0.01234447150000001) (0.012037146499999998) (0.012159080000000003) (0.012150783000000012) (0.01202892550000001) (0.012056367499999998) (0.0121838435) (0.0118694315) (0.011863141499999993) (0.011933448) (0.012054244499999991) (0.012324666999999997) (0.012067895500000009) (0.012273601500000009) (0.01233579700000001) (0.012395600500000006) (0.01212170500000001) (0.012279456500000008) (0.012021894500000005) (0.01194545200000001) (0.0118031995) (0.011684384000000006) (0.011877416999999987) (0.011616340000000017) (0.011689265500000004) (0.011767353000000008) (0.011855665500000001) (0.011835272499999994) (0.011863328000000006) (0.011958931000000006) (0.012326883499999997) (0.01201678199999999) (0.011626237499999997) (0.01184992850000001) (0.012005980999999999) (0.011939772000000001) (0.01165214249999999) (0.0116467445) (0.011879981999999997) (0.011846922999999995) (0.011793378000000007) (0.011752776499999992) (0.011685653000000004) (0.01187832350000001) (0.012162512) (0.012075351000000012) (0.011768455999999997) (0.011973255500000002) (0.012078831499999998) (0.011805022499999998) (0.011878372000000012) (0.011889866499999999) (0.012099382000000006) (0.012086608999999998) (0.012161239500000004) (0.011830868000000008) (0.011901177999999998) (0.012030725500000006) (0.01180044199999998) (0.012006279000000022) (0.012037816499999993) (0.012322808500000004) (0.012357804) (0.012156015500000006) (0.012399003000000006) (0.012332386) (0.012068798000000006) (0.01208066549999999) (0.012028723000000005) (0.011865458999999995) (0.01191055249999999) (0.011925223499999985) (0.012334334499999988) (0.012728785500000006) (0.012094059000000018) (0.011941816000000008) (0.012057706500000001) (0.012138398500000008) (0.012140985999999993) (0.012434813000000003) (0.01240932950000001) (0.01213252849999999) (0.012231108500000018) (0.012110410500000002) (0.011697521500000002) (0.011731533500000002) (0.011752207999999986) (0.011944755000000001) (0.011924704000000008) (0.0120116485) (0.012050485499999986) (0.011864146500000006) (0.0117737485) (0.011646419500000005) (0.011754564500000009) (0.011957468499999999) (0.011663858000000013) (0.011908244000000012) (0.011977095000000007) (0.011901645000000002) (0.012022009500000014) (0.011831106000000008) (0.011962638500000011) (0.011570945) (0.011649363500000023) (0.0117283455) (0.012346747000000005) (0.011875441500000014) (0.012203110000000003) (0.01189431199999999) (0.012141884999999991) (0.012031208000000002) (0.011996857) (0.012020056000000001) (0.011941048499999982) (0.0119197115) (0.012019931999999997) (0.012153396499999997) (0.012291279500000002) (0.012215818999999989) (0.011931735499999999) (0.01192467799999998) (0.012119638000000016) (0.011896311500000006) (0.011924259500000006) (0.012137533500000006) (0.012117561499999999) (0.012155028999999984) (0.011960769999999996) (0.012157974000000016) (0.012296436500000008) (0.012322310000000003) (0.012235364499999998) (0.012067434000000002) (0.012098091500000005) (0.011939576499999993) (0.012140538000000006) (0.011907677000000005) (0.011995266000000004) (0.011989471000000002) (0.012187828499999998) (0.012412939000000012) (0.012162377500000002) (0.011948688499999999) (0.012628097000000005) (0.012330551499999995) (0.012170198499999993) (0.012255532999999999) (0.011894868500000003) (0.011692949999999994) (0.01175202950000001) (0.012000240499999995) (0.011735365499999997) (0.011787685999999992) (0.01172362149999999) (0.011764845499999996) (0.012147088) (0.012004823999999997) (0.011931859500000003) (0.011822979500000011) (0.012259429500000002) (0.011663742000000005) (0.011784916499999992) (0.011759460500000013) (0.01183084849999999) (0.011898579999999992) (0.012012198999999987) (0.011660476500000003) (0.011757882999999997) (0.011953071999999995) (0.011743543499999995) (0.011747913500000012) (0.012049225999999982) (0.0118475215) (0.0118986185) (0.011976254500000005) (0.011835176500000003) (0.011839397500000001) (0.01195001300000001) (0.011902697500000003) (0.012198302499999994) (0.012288959000000002) (0.012219757499999997) (0.011992391500000019) (0.012148542499999998) (0.011994760499999993) (0.012376800000000007) (0.012164702) (0.0123159885) (0.012471346499999994) (0.012351949000000015) (0.012549928499999988) (0.012240399499999999) (0.0123679815) (0.012126735999999999) (0.012125974000000012) (0.012324519499999992) (0.012272894499999992) (0.012276098499999999) (0.012505190499999999) (0.012068401499999992) (0.012117433999999996) (0.011972174000000002) (0.0123284315) (0.012077280999999995) (0.01214478899999999) (0.012203730499999996) (0.012501947499999999) (0.012163226499999999) (0.012259428000000003) (0.012432787) (0.012062620999999996) (0.011749555500000008) (0.011748861) (0.011756653500000006) (0.011822712999999999) (0.011702892499999992) (0.011897077000000006) (0.011661156499999992) (0.011915640500000005) (0.01203820999999998) (0.011966983000000014) (0.011761884000000014) (0.012208834500000001) (0.011983773500000003) (0.011964210000000017) (0.012184678000000004) (0.012292207999999985) (0.011882094499999996) (0.011714945500000004) (0.011663076500000008) (0.011653370999999996) (0.011827631499999991) (0.011796399000000013) (0.01202359850000001) (0.01167362999999999) (0.011834343999999997) (0.012034065999999996) (0.011773047499999995) (0.011942448000000008) (0.011898439499999997) (0.011903331500000003) (0.012195017500000002) (0.011755812500000018) (0.011881586) (0.011936811500000005) (0.011998605499999995) (0.011892288500000014) (0.012372149500000013) (0.012552191000000004) (0.012328080000000005) (0.01224209599999998) (0.012069899999999995) (0.012257759999999993) (0.012098764499999998) (0.01222113499999998) (0.012200579499999989) (0.012501247999999993) (0.012227349499999998) (0.012169908000000007) (0.012200022500000005) (0.012461728000000005) (0.012333175500000002) (0.012125333499999988) (0.012132842000000005) (0.01230337649999999) (0.012092156999999978) (0.012209921999999998) (0.012109114500000004) (0.012175822000000003) (0.012426664000000004) (0.011912171499999999) (0.012189791000000005) (0.012467911500000012) (0.012310980999999999) (0.01238800000000001) (0.01178203450000001) (0.011653951499999995) (0.011804038500000003) (0.011885958000000002) (0.011831317499999994) (0.011853995999999992) (0.011593265000000005) (0.011589429000000012) (0.012108671000000015) (0.011882548500000006) (0.011800347500000002) (0.011795834500000005) (0.011921700999999993) (0.012355599999999994) (0.011733390499999982) (0.012046818) (0.011813589499999999) (0.01183062800000001) (0.011857443499999995) (0.011909521499999992) (0.011720298000000004) (0.011556920999999984) (0.012403220999999992) (0.011708991000000002) (0.011731074999999994) (0.01180457) (0.012001505499999995) (0.011868438999999995) (0.01173167700000001) (0.012123832000000015) (0.011915932000000004) (0.011769362500000019) (0.012180482499999992) (0.012118444000000006) (0.0121619055) (0.011939558500000003) (0.012307935500000006) (0.011958251000000003) (0.01223820049999999) (0.012099857999999991) (0.012064657500000006) (0.012074951) (0.012293821999999996) (0.0120811215) (0.011968676500000011) (0.011999094500000015) (0.01212806000000001) (0.012098646000000005) (0.012268133500000014) (0.011878148000000005) (0.012230029000000003) (0.011910477499999989) (0.012205928000000005) (0.012107660000000006) (0.012112385500000003) (0.012367732499999992) (0.012021062999999998) (0.012525401000000005) (0.012058736000000014) (0.012204987999999986) (0.01213429249999999) (0.012214094999999994) (0.012062575500000006) (0.012295680499999989) (0.011752871999999998) (0.011940833999999997) (0.012129855999999994) (0.01212638050000002) (0.011646821000000016) (0.011617226500000008) (0.011819957499999992) (0.011514860000000002) (0.011886334500000012) (0.012085475500000012) (0.011749523499999998) (0.011839615499999998) (0.012006837500000006) (0.011745376500000002) (0.011972086000000007) (0.011830290999999993) (0.011941635000000006) (0.012110967) (0.011801781999999997) (0.0117446425) (0.011677264500000006) (0.012116607499999987) (0.011577627499999993) (0.01162951050000001) (0.011928314500000009) (0.011647308500000009) (0.011931406999999991) (0.011959844000000011) (0.011696879999999993) (0.01183518900000001) (0.011817749000000002) (0.0119270135) (0.012095328500000016) (0.0120597915) (0.012488041999999977) (0.012155831000000006) (0.011994713500000004) (0.012146641) (0.012062755499999994) (0.012006609499999987) (0.012377415500000002) (0.012315595999999998) (0.012186281500000007) (0.012452130999999991) (0.012214108500000015) (0.012586615999999995) (0.012226278000000007) (0.01227645849999999) (0.012224430499999994) (0.012346970500000012) (0.012234060000000005) (0.012095713499999994) (0.012149653499999996) (0.012066597499999998) (0.011904225500000004) (0.012011748000000003) (0.012171269499999998) (0.012123418999999996) (0.01260313049999999) (0.012374368999999996) (0.012333259000000013) (0.012074593500000022) (0.012437257500000007) (0.012020769) (0.011867115000000011) (0.011929735999999996) (0.012413156499999994) (0.011879417500000003) (0.011882146999999996) (0.012007299999999999) (0.011981975500000006) (0.012030474999999985) (0.011761192500000003) (0.011870598499999996) (0.012811915499999979) (0.012005513500000009) (0.011822712000000013) (0.011870998999999993) (0.012152198500000003) (0.011904854499999992) (0.011886578500000008) (0.011816184500000007) (0.011740284500000003) (0.011650464999999999) (0.011689794500000003) (0.011780018500000017) (0.011702972500000006) (0.011894217000000012) (0.012093177499999996) (0.011769263000000002) (0.012045232500000003) (0.011873301500000003) (0.012111506500000008) (0.011812945499999991) (0.011770881499999997) (0.011864265499999999) (0.012201269) (0.012291028499999995) (0.012193576999999997) (0.012431802000000006) (0.011987388000000015) (0.012132602000000006) (0.0119908715) (0.012120599499999996) (0.012450622999999994) (0.012126993500000002) (0.012063347500000002) (0.012042188500000009) (0.012744955999999988) (0.012484287499999996) (0.012195723500000005) (0.012477878500000011) (0.01231138449999998) (0.012248382000000002) (0.012281199499999992) (0.012006040999999995) (0.012088856500000009) (0.012160426000000016) (0.012060727000000007) (0.011835400499999996) (0.012070837000000001) (0.011986207999999998) (0.012372601499999997) (0.012156588500000023) (0.012295451499999999) (0.012173976500000003) (0.012496839499999995) (0.01201418500000001) (0.012333022999999999) (0.012071695999999993) (0.012089637000000014) (0.011898287499999993) (0.011906552000000015) (0.011664435) (0.011947076000000001) (0.011696764500000012) (0.011800657500000006) (0.011751046000000001) (0.011743937999999995) (0.011954771500000003) (0.012099182000000014) (0.011926147499999998) (0.011736616500000005) (0.0118190715) (0.012086997499999988) (0.011958637500000008) (0.011639736000000012) (0.011817744499999991) (0.011630123999999978) (0.011940080500000005) (0.011815917000000009) (0.011955265999999992) (0.011812347) (0.01180581750000001) (0.01190804999999999) (0.011959241499999995) (0.012035199499999996) (0.011781925999999998) (0.011856121499999997) (0.011771770999999986) (0.012126684999999998) (0.011890414000000002) (0.01197047050000001) (0.011945480500000008) (0.012078614499999987) (0.012050469500000008) (0.012051041499999998) (0.012033185500000002) (0.012209117499999991) (0.012254645499999994) (0.012203674000000012) (0.012208544500000001) (0.012045778999999993) (0.012020910999999995) (0.012563877000000001) (0.012077377) (0.011893056499999985) (0.01234299500000001) (0.012329111500000003) (0.011805465000000001) (0.012212641499999996) (0.012128350499999996) (0.011994662000000003) (0.012177280000000013) (0.01221346949999999) (0.012027752500000002) (0.012325360000000007) (0.012049829999999997) (0.011920542499999992) (0.012102185500000001) (0.012261525499999995) (0.012227908499999995) (0.01189241249999999) (0.011721505000000007) (0.011560692999999997) (0.011831471499999996) (0.011916727999999988) (0.011608945499999981) (0.011894403000000012) (0.012152307000000001) (0.011983564500000002) (0.011922203500000006) (0.012115629500000002) (0.011828200999999997) (0.011778300500000005) (0.012074386499999992) (0.011806800500000006) (0.011748733500000011) (0.011982104000000021) (0.012063942999999994) (0.011945849500000008) (0.011708615000000006) (0.011726437499999992) (0.011654366500000013) (0.011858447499999994) (0.011786169500000013) (0.011728458999999997) (0.012041152999999985) (0.011801536000000001) (0.011896644999999997) (0.011938040999999996) (0.011815729499999997) (0.01213316149999999) (0.013425112000000003) (0.012166267499999994) (0.012116194999999996) (0.011911176499999995) (0.012068572) (0.012248588500000004) (0.011968212499999992) (0.011922765500000002) (0.012023096499999997) (0.012068884500000016) (0.012144090499999996) (0.012035080500000003) (0.012283164499999999) (0.012255295499999999) (0.012376218000000008) (0.012342955000000003) (0.012593079499999993) (0.012092087500000001) (0.01222530999999999) (0.012294567999999992) (0.012017153000000003) (0.012098895999999998) (0.01230779550000001) (0.012482335499999997) (0.012015753500000004) (0.012212709000000002) (0.012265908999999992) (0.011990628000000003) (0.012150281499999999) (0.012040292000000008) (0.012616016499999994) (0.012167503499999996) (0.012216595999999996) (0.011720869999999994) (0.011767906499999994) (0.011694959500000005) (0.0119595735) (0.011784757500000007) (0.01221072799999999) (0.011810042999999992) (0.0119810375) (0.012145535499999999) (0.012504297999999983) (0.011817046499999997) (0.012006043000000008) (0.011892713000000013) (0.01181902) (0.012154275000000006) (0.011833272500000006) (0.011896875500000015) (0.011868034000000013) (0.011817743499999991) (0.011875495000000014) (0.011849561499999994) (0.012061801000000011) (0.011957959500000004) (0.011672769) (0.011851189000000012) (0.01199522900000001) (0.011969451500000006) (0.011854987499999997) (0.011911977000000004) (0.012473061999999993) (0.012398049500000008) (0.011927051000000008) (0.012021944999999992) (0.011887611499999992) (0.012163696500000015) (0.011995776500000013) (0.012020316500000003) (0.012158324999999998) (0.012279030999999996) (0.011914857000000001) (0.012090158000000018) (0.012269545500000006) (0.012505199499999994) (0.011937235000000004) (0.012265531999999996) (0.012013670000000004) (0.012124988500000003) (0.0119881035) (0.011964049500000004) (0.011959247999999992) (0.012254188) (0.012075936499999995) (0.012151446999999996) (0.012280622500000019) (0.012161923000000005) (0.012090481000000014) (0.012281022499999988) (0.012082088000000019) (0.012398857999999999) (0.012165441499999985) (0.012353016999999994) (0.012007467499999994) (0.012361391) (0.01209073749999999) (0.012090281999999994) (0.011655355500000006) (0.011909880500000011) (0.012053681999999996) (0.011933575500000002) (0.011657874000000013) (0.011650964) (0.011783005999999999) (0.012221836) (0.011831169000000002) (0.012260185499999993) (0.012128353000000008) (0.011851451500000013) (0.012280869) (0.011868117999999997) (0.011897631999999991) (0.011722147500000002) (0.011727337500000004) (0.012078799000000001) (0.011808520000000003) (0.011789548999999996) (0.011674346500000016) (0.01192673100000001) (0.012068184499999995) (0.011954865500000009) (0.011756476000000002) (0.012257005999999987) (0.011992146000000009) (0.012123177999999998) (0.0119341325) (0.012049700499999982) (0.01185645149999999) (0.012203736999999992) (0.012046606500000001) (0.011892241000000012) (0.011897198500000011) (0.011918146500000004) (0.012070888000000002) (0.012356532500000003) (0.012167201000000002) (0.012384212500000005) (0.012439341999999992) (0.01190893350000001) (0.012631991999999995) (0.012263714000000009) (0.012254448499999987) (0.012375495) (0.012412587000000003) (0.012517544999999991) (0.012144236499999989) (0.011900795500000005) (0.012184012999999994) (0.012013060000000006) (0.012100250500000007) (0.012207648000000001) (0.012086257999999989) (0.01223331350000001) (0.012241235499999989) (0.012139743499999994) (0.012311952000000001) (0.01225290250000001) (0.0124012545) (0.012188329499999997) (0.012686794500000001) (0.011963365500000003) (0.011642265499999999) (0.011752232000000001) (0.011999672000000003) (0.011777676) (0.01185435550000001) (0.01152974000000001) (0.011906717499999997) (0.011968569499999998) (0.0123621795) (0.011992160000000002) (0.011982362499999996) (0.012116427999999999) (0.011872326999999988) (0.01207762050000001) (0.01195131499999999) (0.011911106500000004) (0.011607651499999996) (0.011765181999999999) (0.011702135499999988) (0.011822940500000004) (0.01175437850000001) (0.011743226999999995) (0.011900009999999989) (0.012211838500000002) (0.011838231000000005) (0.011785927500000001) (0.01185982649999999) (0.011854464499999995) (0.011739214500000011) (0.011923076000000005) (0.011895156000000004) (0.012010741999999991) (0.012096285000000012) (0.012081642500000003) (0.011950844500000002) (0.012070111500000008) (0.011957983000000005) (0.012144802499999996) (0.012102429499999998) (0.011945547) (0.012100227000000005) (0.012656728500000006) (0.012156545000000005) (0.012175849500000002) (0.012488245500000009) (0.012350512999999994) (0.012052820500000005) (0.012023133500000005) (0.012272222499999999) (0.011987695500000006) (0.012292221500000006) (0.012029270000000009) (0.012166920500000011) (0.011973803499999991) (0.012208282000000015) (0.012085256500000002) (0.012127694999999994) (0.012164447500000009) (0.012156935999999993) (0.012095172500000001) (0.012383877999999987) (0.012295830000000021) (0.012182661499999997) (0.011885756999999997) (0.011653007499999993) (0.011800392499999993) (0.011936674000000008) (0.012018640499999997) (0.011568543999999986) (0.011723179) (0.011652910500000002) (0.011943389499999985) (0.01243741999999999) (0.011783001000000001) (0.01232155700000001) (0.011805637999999993) (0.011973412000000003) (0.01165694199999999) (0.01191584200000001) (0.012084245999999993) (0.011859845000000008) (0.011756580500000002) (0.011950416000000005) (0.011897775999999999) (0.011977702000000007) (0.011805932500000005) (0.011851054500000013) (0.0119514545) (0.011975368) (0.011831306500000013) (0.011799875000000001) (0.011892986999999994) (0.011703732999999994) (0.011965959999999984) (0.011687857499999996) (0.012337592999999994) (0.012142892499999988) (0.012049031500000015) (0.012139354500000005) (0.01203148150000001) (0.011966959999999999) (0.01217197199999999) (0.012325984500000012) (0.012239050999999987) (0.012411316500000005) (0.012084910000000004) (0.012025939) (0.011987844499999997) (0.012532712000000001) (0.012284586000000014) (0.012183990500000005) (0.01199315649999999) (0.012073277999999993) (0.012075780499999994) (0.012117643999999997) (0.012516469500000002) (0.012345680499999998) (0.012277764999999996) (0.012153236999999997) (0.0122476745) (0.012228733500000005) (0.012319292500000023) (0.0122089685) (0.012561349999999985) (0.012185426499999985) (0.012238400999999996) (0.012209111499999994) (0.0117968465) (0.011900173) (0.011630060000000011) (0.011975066999999992) (0.011747318000000007) (0.012024657499999994) (0.011810893500000003) (0.011967984000000001) (0.011855730499999995) (0.012138972499999998) (0.012042878999999992) (0.011685438500000006) (0.011753695999999994) (0.012071107000000011) (0.012014818999999996) (0.011839921999999989) (0.011941756499999998) (0.011852122499999992) (0.011968470499999995) (0.011760417500000009) (0.011814944499999994) (0.011769498500000003) (0.011969747000000003) (0.011678821000000006) (0.011903158000000011) (0.011725787000000001) (0.011847510500000005) (0.01199133799999999) (0.01179582600000001) (0.012168771500000009) (0.011864735500000015) (0.011750175500000015) (0.011987939499999989) (0.012268842500000016) (0.012228182500000004) (0.012027560999999992) (0.0120706815) (0.01186158000000001) (0.012252491500000004) (0.011907849000000012) (0.012122534500000004) (0.012028471999999998) (0.012342182499999993) (0.012103509500000012) (0.012560077000000003) (0.012400254500000013) (0.012033548000000005) (0.012672674500000009) (0.012174272500000013) (0.012198418000000003) (0.012089312500000005) (0.012019061499999997) (0.012274963000000014) (0.012244326) (0.012310546499999991) (0.012070009000000007) (0.011930315999999996) (0.012106094500000011) (0.012405147499999991) (0.012100611499999983) (0.012071210999999984) (0.012062401999999986) (0.01206016950000001) (0.012154054499999997) (0.011621800500000001) (0.01186450600000001) (0.012170992000000005) (0.011965912499999995) (0.011678043000000013) (0.011862464999999989) (0.011901706999999997) (0.011848697000000019) (0.0117723775) (0.011810833000000007) (0.011794094000000005) (0.01189101799999999) (0.011845831500000015) (0.011868692) (0.011877549000000001) (0.012051588500000002) (0.011847363) (0.012034132500000003) (0.0121963125) (0.011837195999999994) (0.012114727500000005) (0.011841157500000005) (0.011925070999999982) (0.012023209000000007) (0.011694382500000003) (0.011920945000000002) (0.011917808000000002) (0.011838259999999975) (0.011850142999999994) (0.01206025600000002) (0.012004082) (0.012080379000000016) (0.012292484000000006) (0.012122274499999988) (0.011947198499999992) (0.01218287550000001) (0.012149442499999996) (0.011974650000000003) (0.0123926585) (0.012371163500000004) (0.012098043000000003) (0.012373391999999983) (0.012441718000000004) (0.012096265499999995) (0.012256245499999985) (0.012183104000000014) (0.012503760000000003) (0.012402356500000003) (0.0121197745) (0.012226989499999993) (0.012559282000000005) (0.012186501499999988) (0.012174692) (0.012063474500000004) (0.012137100499999984) (0.012060609500000014) (0.01202518150000001) (0.01201154800000001) (0.012052406499999987) (0.01237210599999998) (0.012677858500000014) (0.012152007999999992) (0.012540928999999992) (0.012162173999999984) (0.011679287499999996) (0.011539302000000001) (0.011767245499999995) (0.011569787999999998) (0.011802552000000008) (0.01174320849999999) (0.011839449499999988) (0.011575398500000014) (0.012151318999999994) (0.011957853500000004) (0.011706889999999998) (0.012061799999999998) (0.012685085499999998) (0.012133554500000004) (0.011615766) (0.011763790499999996) (0.011762273500000003) (0.011629642999999995) (0.01172521800000001) (0.011743290500000003) (0.01163161700000001) (0.011934695500000009) (0.011798817000000003) (0.01164796550000001) (0.011755813500000004) (0.011663768000000005) (0.011745619000000013) (0.011722970999999985) (0.011955744000000018) (0.011931560999999993) (0.011842508000000015) (0.011955763000000008) (0.012231906) (0.012439868999999992) (0.01229007850000001) (0.012112321500000009) (0.011800233500000007) (0.012068495999999998) (0.012339897500000002) (0.011935991499999993) (0.012227221499999996) (0.012328708499999994) (0.01258107750000001) (0.012121122499999998) (0.0120683605) (0.012225192499999996) (0.01207351349999998) (0.012082694500000005) (0.0120485585) (0.011922441999999991) (0.01197343499999999) (0.012034202500000007) (0.011932448000000012) (0.012589332500000008) (0.012771494499999994) (0.0120611635) (0.011920018000000004) (0.012098459500000006) (0.012319334000000001) (0.012024290999999993) (0.012132827500000012) (0.012110198500000002) (0.01218235450000002) (0.012054548999999998) (0.011870071499999996) (0.01173365550000001) (0.011976701000000006) (0.011671201000000006) (0.011804757500000013) (0.011886045499999998) (0.01200509100000001) (0.011803220000000003) (0.012177224) (0.011741550500000003) (0.012096516500000001) (0.011786534500000001) (0.011894479999999999) (0.01167430300000001) (0.011637387499999999) (0.012152979499999994) (0.0117339095) (0.011830711000000008) (0.011990381999999994) (0.0116218545) (0.012170241500000012) (0.011932523500000014) (0.011738625000000003) (0.011702532000000002) (0.012179138999999992) (0.011700580000000002) (0.012288194500000016) (0.012245544999999983) (0.012067361500000012) (0.012494027500000005) (0.012168493000000002) (0.012042043000000002) (0.012349465500000004) (0.012337367999999987) (0.012563771499999987) (0.012519868000000003) (0.011971350499999991) (0.012124969999999999) (0.012445984999999993) (0.012198926999999998) (0.012301291500000006) (0.011965844000000003) (0.012195077000000012) (0.012156494500000004) (0.012108820999999992) (0.012239537499999995) (0.011997178000000011) (0.012363210999999999) (0.012186758500000006) (0.012384865499999995) (0.012150835500000012) (0.012032532499999998) (0.012316589000000017) (0.012203038000000013) (0.012212732500000004) (0.012258411999999996) (0.012371949999999993) (0.012004691499999998) (0.012191779999999985) (0.012098341999999998) (0.012062203000000007) (0.012309082499999999) (0.012113254500000004) (0.012069194499999991) (0.01161706600000001) (0.011794002499999984) (0.011665421499999995) (0.011924261500000005) (0.011923921500000004) (0.011751679499999987) (0.011571077000000013) (0.012098712499999997) (0.011748153499999997) (0.011961007999999995) (0.011924293000000002) (0.011888399999999993) (0.012277594499999989) (0.011964369500000016) (0.011705603500000009) (0.011898098999999995) (0.011588599500000005) (0.012168046999999987) (0.011824563999999996) (0.011554638499999992) (0.01180071399999999) (0.011678952500000006) (0.011888969499999985) (0.012202708499999992) (0.012168231500000015) (0.011957064500000003) (0.011646291499999989) (0.011766524000000014) (0.012110818500000009) (0.011948539000000008) (0.012025294499999992) (0.011969280999999998) (0.012170639999999996) (0.011973104000000012) (0.011950713999999987) (0.012077897000000018) (0.011994775499999999) (0.012395458999999998) (0.012031228000000005) (0.012099660500000012) (0.012391465500000018) (0.012320338) (0.012384835499999997) (0.01212914200000001) (0.011875821000000009) (0.01228280000000001) (0.01214606750000001) (0.012121072999999982) (0.012118808499999995) (0.012232304) (0.0122468565) (0.012220233999999996) (0.0120374865) (0.012026586499999992) (0.01243134500000001) (0.01185863849999999) (0.012172126499999991) (0.012239865499999988) (0.012279170999999992) (0.012187047000000006) (0.012105960999999998) (0.01217077100000001) (0.012134936000000013) (0.012298997500000006) (0.011958887500000001) (0.011672158999999988) (0.011821555999999997) (0.011658754999999993) (0.011921673499999993) (0.011619270000000015) (0.011854231999999992) (0.012098967000000002) (0.011888400500000007) (0.012194268999999994) (0.011845895000000009) (0.011972321000000008) (0.011975318999999998) (0.0117295345) (0.011828585999999988) (0.012095865000000011) (0.011760191500000003) (0.012073845) (0.0119085035) (0.011756615999999998) (0.011523804499999998) (0.012102394500000002) (0.011580653499999982) (0.0117414525) (0.011790466999999999) (0.012028171000000004) (0.011691975499999993) (0.011970919999999996) (0.011894506999999999) (0.01192448800000001) (0.01203883700000001) (0.011994517499999996) (0.012100978500000012) (0.012067209499999995) (0.012109196000000017) (0.012195730500000002) (0.011974731500000002) (0.012091497999999992) (0.012465451999999988) (0.01220765) (0.012438603500000006) (0.012143709000000016) (0.012253110499999997) (0.012180182999999997) (0.012171120999999993) (0.012197714000000012) (0.012577946500000006) (0.012124306999999987) (0.012001959499999992) (0.012248644000000003) (0.012100065999999993) (0.012217791499999991) (0.012093192999999988) (0.012118791500000003) (0.012027068500000002) (0.012267679500000003) (0.012363113500000009) (0.01227093700000001) (0.012144046499999991) (0.012240823999999983) (0.011952683499999991) (0.012092191499999988) (0.012172269999999999) (0.012044697499999993) (0.011730528000000004) (0.01170951549999999) (0.011974315) (0.012232022500000009) (0.011682643000000006) (0.011798214000000015) (0.01202344100000001) (0.011662934) (0.013961466000000006) (0.011828209500000006) (0.011849834500000003) (0.011659825000000013) (0.012071842499999999) (0.011854635000000002) (0.011747261499999995) (0.011728714000000015) (0.011948558500000012) (0.011613973) (0.012159006000000014) (0.011598387499999988) (0.011668365) (0.012124523999999998) (0.011610228500000014) (0.012035758499999993) (0.01257635) (0.011814697499999999) (0.011718730499999996) (0.012069849000000007) (0.01186643100000001) (0.011809985000000009) (0.012147024000000006) (0.011747892999999995) (0.012531368000000015) (0.012038859499999999) (0.011988565999999992) (0.012055365499999998) (0.01202307549999998) (0.012073149499999991) (0.012078410999999997) (0.012126906500000006) (0.012202757499999994) (0.012216289500000005) (0.011915195500000003) (0.011969719000000004) (0.012610753500000002) (0.012180197500000003) (0.011959439000000002) (0.012104933499999998) (0.011962986499999995) (0.0121319275) (0.01209971) (0.012317669000000003) (0.012283420500000003) (0.012207559999999992) (0.011907736000000002) (0.012133691000000002) (0.012134886499999997) (0.012493187499999989) (0.012299764000000005) (0.01220882899999999) (0.012342738000000006) (0.012019238500000001) (0.012472200000000003) (0.012623443499999998) (0.011619546000000008) (0.011599218000000022) (0.011946668500000007) (0.012387519999999985) (0.011744209500000005) (0.011678565000000002) (0.011749890999999998) (0.011836691999999996) (0.01215063000000001) (0.011894111999999998) (0.011893172500000007) (0.011711279500000019) (0.011895290500000016) (0.011761984500000003) (0.011810882000000009) (0.012001430500000007) (0.011604915999999993) (0.012124868499999997) (0.011813385499999995) (0.011645510000000012) (0.012028985000000006) (0.0119332635) (0.012131882999999996) (0.011674234500000005) (0.011873927500000006) (0.011935584499999999) (0.011768699500000007) (0.011835824500000008) (0.011754951) (0.012420086499999997) (0.01238196350000001) (0.01211500950000001) (0.011963135499999986) (0.012066865499999996) (0.012179626499999985) (0.012322273000000009) (0.011888566500000017) (0.012086356499999992) (0.012111307500000001) (0.012242309999999992) (0.012371257499999996) (0.012216500500000005) (0.012445444499999986) (0.012243281499999994) (0.012168652999999988) (0.012005565499999996) (0.012153575) (0.012027633999999995) (0.012245324000000002) (0.012201629500000005) (0.012360741499999994) (0.012010197500000014) (0.011981514000000013) (0.012171786500000004) (0.012107256999999996) (0.011947256000000003) (0.012096701500000001) (0.012106003000000004) (0.011966025000000005) (0.012164347000000006) (0.012195247499999992) (0.012239832499999992) (0.012153399999999995) (0.012035493000000008) (0.012192233999999996) (0.011569436500000016) (0.011675022999999993) (0.011658215999999999) (0.011587747500000009) (0.011814433499999999) (0.012041977499999995) (0.01177052599999999) (0.011902733999999998) (0.01170133349999998) (0.011889334000000001) (0.011821757000000002) (0.012214236500000003) (0.011627838500000001) (0.012356619) (0.012016972) (0.011662271500000002) (0.011838265499999986) (0.011708480000000007) (0.011854078000000004) (0.01199419950000001) (0.011830172999999986) (0.011693855000000003) (0.011897045499999995) (0.011857552000000007) (0.012208727000000003) (0.01193696050000001) (0.011640692000000008) (0.01172314599999999) (0.011630803500000009) (0.01205732150000001) (0.01194074399999999) (0.012060473500000002) (0.012374996999999999) (0.011957153999999998) (0.012270279500000009) (0.011958248000000005) (0.011869409999999997) (0.01209017250000001) (0.012248437000000001) (0.012019402999999998) (0.012138310999999999) (0.012261220999999989) (0.012276633000000009) (0.012037066500000013) (0.012492329499999996) (0.012109510500000004) (0.012139376499999993) (0.012138252999999988) (0.012227272999999997) (0.011960184499999998) (0.012167157999999997) (0.011959972999999999) (0.012143043499999992) (0.011927054499999992) (0.012099475499999998) (0.012136434000000001) (0.01219993300000001) (0.012195629999999985) (0.012172278000000009) (0.01206219750000001) (0.012110875000000007) (0.012015549) (0.0121689735) (0.01178281199999999) (0.011856872500000004) (0.011793581000000011) (0.011621573999999996) (0.011860248500000004) (0.01194360550000001) (0.011642927999999997) (0.012081759999999983) (0.012163587500000003) (0.01213511049999999) (0.012053514999999987) (0.012085646500000005) (0.012152968499999986) (0.011842895500000006) (0.012019568500000008) (0.012006090499999997) (0.011935412500000006) (0.011982938999999998) (0.011867847) (0.011673704499999993) (0.011635018999999996) (0.011848277000000018) (0.012046178000000005) (0.011849392999999986) (0.011829509000000002) (0.012151808500000014) (0.011955245999999989) (0.01182154249999999) (0.012155626500000002) (0.011914868999999995) (0.012012450499999994) (0.01192945849999999) (0.011952441999999994) (0.012258480500000002) (0.012165109000000007) (0.011923444499999991) (0.012266182) (0.012141632) (0.012057607999999997) (0.01223445799999999) (0.012089251499999995) (0.01216412750000001) (0.01239043899999999) (0.012126804000000005) (0.012040968000000013) (0.01206931) (0.012450603000000018) (0.012555207000000013) (0.012475824999999996) (0.012381436999999995) (0.012012651000000013) (0.012206659999999994) (0.012244130500000006) (0.01221293649999998) (0.012138342499999996) (0.012170399499999998) (0.012063469500000007) (0.012298378999999998) (0.012100539500000007) (0.0122737245) (0.012314322500000016) (0.012203658500000006) (0.012374927999999993) (0.012043683) (0.011614528499999999) (0.011685318500000014) (0.011894384499999994) (0.012023712000000006) (0.011662410499999998) (0.011694480000000007) (0.011819460000000018) (0.011636258999999996) (0.011856798000000002) (0.011925627500000008) (0.012016517500000004) (0.011826770499999986) (0.011857510000000002) (0.011962002) (0.011783703499999992) (0.01172197550000001) (0.012170801000000009) (0.011688482) (0.012137785999999984) (0.011978050000000004) (0.011831676) (0.012285351500000014) (0.011716910000000011) (0.011787664000000003) (0.011872920000000009) (0.011977120500000007) (0.011855374000000002) (0.011783195499999996) (0.011941360999999998) (0.011785049999999991) (0.012032142500000023) (0.0119293335) (0.012361245000000007) (0.011986848999999994) (0.012266814000000015) (0.011994456499999986) (0.0119631875) (0.012231112500000002) (0.011981539999999999) (0.01209062150000001) (0.012335553000000013) (0.011975625000000004) (0.012064954000000003) (0.012164634499999993) (0.012230873500000003) (0.012141211499999999) (0.012316450999999992) (0.011903966500000016) (0.012338960999999996) (0.011957815499999996) (0.012025746000000004) (0.012210218999999994) (0.012458278500000003) (0.012346208499999997) (0.012329516500000012) (0.012231079499999992) (0.012347299500000006) (0.012245695500000014) (0.012087727000000006) (0.012103131000000003) (0.012261333000000013) (0.012400506000000006) (0.012472981000000008) (0.012167531999999995) (0.011993957999999999) (0.011883249499999998) (0.011629412000000006) (0.011691116000000001) (0.011659168999999997) (0.011970893999999996) (0.011928596000000014) (0.011881423499999988) (0.01194770249999999) (0.01170376649999999) (0.011730468500000008) (0.011756023000000004) (0.012152346000000008) (0.011780883000000006) (0.011688566000000011) (0.012107798500000003) (0.011743459000000012) (0.012130691999999998) (0.011981384999999997) (0.012126009999999979) (0.011959216999999994) (0.011864479000000011) (0.011848024499999998) (0.012060476) (0.01205625149999999) (0.012547516499999994) (0.012055755500000001) (0.012068481999999991) (0.011813397500000003) (0.012096108000000008) (0.011707704499999985) (0.011909061499999998) (0.012381254499999994) (0.011863750000000006) (0.012035122999999995) (0.011880909999999995) (0.012047407999999996) (0.012146386500000009) (0.012287099499999996) (0.01213324049999999) (0.012324551499999989) (0.012354309999999993) (0.012169754500000005) (0.0120887955) (0.012365626500000004) (0.012388787500000012) (0.01214746350000001) (0.0122594065) (0.012048386499999994) (0.011986577999999998) (0.012151668500000004) (0.012187042499999995) (0.012449757499999992) (0.01213829100000001) (0.011964973500000003) (0.012144410999999994) (0.012068366000000011) (0.012067529999999993) (0.0122181195) (0.012341436999999997) (0.012099432499999993) (0.012379032500000012) (0.0123077365) (0.012314641000000015) (0.012117475000000003) (0.011861858500000003) (0.011759342500000006) (0.012063108000000003) (0.011712344) (0.011613789999999999) (0.011933714499999998) (0.01165122049999999) (0.011665620500000001) (0.011981905000000001) (0.011822946000000015) (0.011783724999999995) (0.012011017500000012) (0.011882457499999985) (0.011853879500000011) (0.011859277500000015) (0.011776828999999989) (0.011738580000000012) (0.011827500000000005) (0.011786699499999997) (0.011644830499999995) (0.011536929000000015) (0.012025074499999996) (0.011753336000000003) (0.011925171999999998) (0.011840383499999996) (0.011992929) (0.012058924500000012) (0.01180951650000002) (0.012209463000000004) (0.011918344000000011) (0.0121734275) (0.012011842000000009) (0.012250794000000023) (0.0121961555) (0.012221272500000005) (0.012138617000000004) (0.012079858499999999) (0.012400117000000016) (0.012210906500000007) (0.012269063999999996) (0.012045276500000021) (0.01240425349999999) (0.012447179999999988) (0.012353366500000004) (0.012210010499999993) (0.012011804000000015) (0.012553353000000003) (0.012554270499999992) (0.011963400999999999) (0.011882686500000003) (0.011950529000000001) (0.012510801500000002) (0.011907823999999997) (0.012023552000000007) (0.011963645000000009) (0.012251999999999999) (0.01215969850000001) (0.012080254499999998) (0.012240488000000008) (0.012196227500000004) (0.012305307499999987) (0.011973045499999987) (0.012017939500000005) (0.011735378000000005) (0.012236026500000025) (0.012108228499999998) (0.011701360499999994) (0.011683423000000012) (0.011943966) (0.011724291499999998) (0.012304796499999993) (0.012037387999999996) (0.012074197000000009) (0.012138854500000004) (0.012253919500000002) (0.011762006000000005) (0.011963945000000004) (0.011805958000000005) (0.012036817499999991) (0.011898926000000004) (0.01189287650000001) (0.011730567500000011) (0.012062209000000004) (0.011839340500000003) (0.011892513499999993) (0.011848832500000017) (0.011875445000000012) (0.011961516500000005) (0.011918101000000014) (0.011776504000000007) (0.012066581999999992) (0.011740279500000006) (0.012021580500000004) (0.012080884) (0.012048177500000007) (0.012041434500000003) (0.012061970500000005) (0.012188467999999994) (0.012610091500000004) (0.012210777999999992) (0.012288022499999995) (0.012012940999999985) (0.012082801500000004) (0.012243799) (0.012056649000000003) (0.012140987499999992) (0.012105104499999991) (0.012188513999999998) (0.012352068000000008) (0.012153005000000008) (0.012140895999999998) (0.01817603049999998) (0.012379056999999999) (0.012061959000000011) (0.012168125000000002) (0.012197459000000008) (0.012270956999999999) (0.012106283999999995) (0.012192005000000006) (0.012376330500000005) (0.012248191000000005) (0.012509591) (0.012446500000000013) (0.01210355149999999) (0.012064593000000012) (0.012037884499999998) (0.012202591499999985) (0.0119063685) (0.011792673500000017) (0.011880368000000016) (0.011739141000000008) (0.011821954499999995) (0.011985632999999996) (0.011658877499999998) (0.011756350000000013) (0.011998545) (0.012034799000000013) (0.012046806499999993) (0.011861954999999993) (0.011789104000000009) (0.011913510000000016) (0.011982663500000004) (0.011929160500000008) (0.011645567999999995) (0.011889533999999993) (0.012171889000000005) (0.011828625499999995) (0.011863852499999994) (0.011947621499999991) (0.011948226000000006) (0.011780490000000018) (0.011865837500000004) (0.011869250999999997) (0.012193951499999994) (0.011733656999999995) (0.011774104999999993) (0.011787006500000002) (0.011935509999999996) (0.01189175000000002) (0.012272192500000001) (0.012071560499999995) (0.012269983499999998) (0.012127861500000017) (0.011938389500000007) (0.012019676000000007) (0.012299471000000006) (0.012192984500000004) (0.012311525500000003) (0.012089356999999995) (0.012193395499999996) (0.012206058500000005) (0.01215748350000001) (0.01221071) (0.012176884500000013) (0.012350640499999996) (0.012007266500000002) (0.012582601499999999) (0.012033650000000007) (0.012319458000000005) (0.012332189500000007) (0.012254327500000009) (0.012025364999999996) (0.011998716000000006) (0.012343292499999992) (0.012178811000000012) (0.012349791000000013) (0.012183634000000013) (0.012468338499999981) (0.012150795000000006) (0.012229537999999998) (0.012188901500000016) (0.01220151600000001) (0.011893844000000015) (0.01169532899999999) (0.012181485500000006) (0.012002722499999993) (0.011893722499999995) (0.011817045499999998) (0.011932729999999989) (0.011843664000000004) (0.011891478499999997) (0.011812663000000001) (0.012193497999999997) (0.011784468500000006) (0.011848295500000008) (0.011725343999999999) (0.011894833499999993) (0.011891204999999988) (0.011688287500000005) (0.011706618499999988) (0.011837479999999997) (0.011724723000000006) (0.01169237150000002) (0.011758994499999995) (0.011690867499999993) (0.011711223500000006) (0.01201418650000001) (0.012006559) (0.011940249999999986) (0.011928799000000004) (0.011838268000000013) (0.011977567000000008) (0.011852640999999997) (0.012120980000000003) (0.01248089799999999) (0.011908273499999997) (0.012046128000000003) (0.012085429999999994) (0.012065858499999998) (0.0119978315) (0.01201600450000001) (0.0120144955) (0.011978684500000003) (0.011971012000000003) (0.012391380000000007) (0.012143590999999995) (0.01216481250000001) (0.012136246999999989) (0.012120203999999996) (0.0120205315) (0.012232248000000001) (0.011899702500000012) (0.012037634500000019) (0.012012018) (0.012241752499999994) (0.01216539350000001) (0.012309620999999993) (0.0123122705) (0.012146710500000005) (0.012191085000000004) (0.012160747999999999) (0.012032914499999992) (0.012161780000000011) (0.012205314500000009) (0.012489595999999992) (0.011574593999999994) (0.011949361500000005) (0.011991734000000004) (0.011831291500000007) (0.011613275499999992) (0.011652293500000008) (0.011892088000000009) (0.011892096500000005) (0.011629198000000007) (0.01202734850000002) (0.011753251499999992) (0.012267018000000005) (0.012104318500000003) (0.011931189500000008) (0.0117378395) (0.011853240000000001) (0.011989121500000005) (0.011764648500000016) (0.011805311499999999) (0.011696180500000014) (0.011711844499999999) (0.01190263100000001) (0.011722984999999991) (0.012105687000000004) (0.011868964999999995) (0.012064811500000008) (0.011961499500000014) (0.011663261499999994) (0.0121414985) (0.01219858900000001) (0.0120335325) (0.01202308199999999) (0.012131295) (0.012283891000000005) (0.012082532999999993) (0.012190546999999996) (0.0119968025) (0.012194277000000003) (0.01220879499999998) (0.011996448500000007) (0.012337412500000006) (0.012295296999999997) (0.012354530500000002) (0.012034672499999996) (0.012412788499999994) (0.012637330000000016) (0.012097980999999994) (0.012110880500000004) (0.012040361) (0.012047016999999993) (0.012324650500000006) (0.012057038000000006) (0.012036864500000008) (0.012189895000000006) (0.01199612500000001) (0.012136136499999992) (0.012147174499999996) (0.01228000700000001) (0.01216212450000001) (0.012431805000000018) (0.012259707000000009) (0.012112937000000004) (0.012488362999999988) (0.012222120500000003) (0.011674947500000005) (0.012251168500000006) (0.01204801400000001) (0.011769582999999986) (0.011808870999999999) (0.01174816849999999) (0.011603404000000012) (0.011908606999999988) (0.012064361499999995) (0.011813101999999992) (0.012037595499999984) (0.011748597999999985) (0.011693478999999993) (0.011773527500000006) (0.012000211999999996) (0.011949927000000013) (0.011771449999999989) (0.012049279999999996) (0.011909080000000002) (0.012206419499999982) (0.011916358000000002) (0.011896412000000009) (0.011832936000000002) (0.011773685500000006) (0.0118664505) (0.011829249) (0.01202583850000001) (0.011881718) (0.011806939000000002) (0.011792154999999999) (0.012019334500000006) (0.01195873850000001) (0.012112343499999997) (0.012357573499999996) (0.011890214499999996) (0.01219915499999999) (0.012433697000000021) (0.012281871) (0.01229612599999999) (0.012195797999999994) (0.012279502499999997) (0.012270878499999999) (0.012262091999999988) (0.012108784999999983) (0.012203190500000002) (0.012199918500000004) (0.012190791999999992) (0.012176552500000007) (0.012054296000000006) (0.012069106999999996) (0.012052315500000008) (0.012040773000000005) (0.012039689999999992) (0.012033771499999998) (0.012505990999999994) (0.01246079600000001) (0.01267624299999999) (0.012419287499999987) (0.012058716499999997) (0.012037412500000025) (0.012268187499999986) (0.012302353500000002) (0.012044594499999992) (0.012226758500000004) (0.011753648000000005) (0.0119149375) (0.011914797500000004) (0.011637029499999993) (0.011817253500000013) (0.011537382500000012) (0.011730788499999992) (0.011742350499999998) (0.012034080500000016) (0.011612839) (0.01188268549999999) (0.011892683499999987) (0.012104187500000002) (0.012178502499999994) (0.011983322000000005) (0.012285682500000006) (0.011716233000000006) (0.01192499700000002) (0.011645931000000012) (0.01199889550000001) (0.011841196499999998) (0.011565211499999992) (0.011743370999999989) (0.011517154500000001) (0.012146900000000002) (0.012102180500000004) (0.011767353499999994) (0.011771593999999996) (0.011852946500000003) (0.011807984500000007) (0.011806733500000013) (0.012152124) (0.012056861500000016) (0.011920292499999999) (0.012291605499999997) (0.012213758499999991) (0.011950732000000006) (0.01210472550000001) (0.011960079000000012) (0.01196571249999999) (0.011979030000000002) (0.012318784499999999) (0.012030818500000012) (0.012188464499999996) (0.012306973499999999) (0.01205038) (0.012181996) (0.012094495499999997) (0.011921266999999985) (0.012170541999999993) (0.011847131499999997) (0.012378234500000002) (0.011917616000000006) (0.012411592999999999) (0.012103998000000005) (0.012306114999999992) (0.012353638500000014) (0.012388209999999997) (0.012266858999999991) (0.01210087650000001) (0.012068931500000005) (0.011953979000000003) (0.012425152999999994) (0.012316206499999996) (0.011952301500000012) (0.011668518500000002) (0.011878738) (0.011788588500000016) (0.011985190499999993) (0.012422326499999997) (0.011759342499999992) (0.011687500500000017) (0.01177003850000001) (0.01191283750000001) (0.012058149000000004) (0.012271650500000009) (0.011886267500000006) (0.011950367000000003) (0.012003943500000017) (0.011870486999999985) (0.011952070999999995) (0.011700448000000002) (0.011460532999999995) (0.011971798499999992) (0.011651672000000016) (0.011921006000000012) (0.011952428000000001) (0.011656183) (0.012088892000000004) (0.012155098499999989) (0.011817733499999997) (0.012435889999999991) (0.011717968999999995) (0.012039982500000018) (0.011972330999999989) (0.011789711999999994) (0.012645536999999998) (0.012096144000000003) (0.0122538705) (0.012038518499999998) (0.01226853) (0.011950853999999997) (0.011988692500000009) (0.011963466500000006) (0.011992047500000005) (0.012193371999999994) (0.0124815125) (0.012278684000000012) (0.012104161499999988) (0.012295999500000002) (0.012272578999999992) (0.012179483500000005) (0.012141416500000016) (0.012406288000000001) (0.012184555) (0.012227714499999986) (0.0122658405) (0.012111174499999988) (0.012086901499999997) (0.012290094500000001) (0.01244160050000001) (0.012133182499999992) (0.012245742000000004) (0.012145617499999997) (0.012365903499999997) (0.012538696000000002) (0.011915144499999988) (0.012418154000000015) (0.011861269500000007) (0.011992268) (0.011954729499999997) (0.011781172000000006) (0.011874066000000003) (0.012057261) (0.01195453249999999) (0.01163302699999999) (0.011794804500000006) (0.011957290500000009) (0.0119246925) (0.012073083999999998) (0.011881671499999996) (0.012580841499999995) (0.011730967000000009) (0.011649813999999994) (0.011955747500000016) (0.011640914999999988) (0.011926853500000001) (0.011696186499999983) (0.011851236999999987) (0.011766797999999995) (0.01191110599999999) (0.011738089500000007) (0.011975727000000005) (0.011837147500000006) (0.011687488499999996) (0.011755510999999996) (0.012277823000000007) (0.011860978500000008) (0.011825954999999999) (0.011835060999999994) (0.012380756499999993) (0.012253135000000012) (0.012065857) (0.012561824500000013) (0.012211419000000001) (0.012038682000000009) (0.012283831500000009) (0.0120677525) (0.012083918499999999) (0.012451947500000005) (0.012079414999999996) (0.012433868) (0.011989373999999997) (0.012269858000000008) (0.012138429000000006) (0.011990035499999996) (0.012155027499999999) (0.012056727500000003) (0.012209367500000012) (0.012221339999999997) (0.01195250099999999) (0.01205807099999999) (0.012141216499999996) (0.01208909200000001) (0.011896325999999999) (0.012170582999999999) (0.012007612) (0.012119229499999995) (0.012275898999999993) (0.012180832500000002) (0.012049619499999997) (0.012290102499999997) (0.011608365499999981) (0.01181911649999999) (0.011726530000000013) (0.012003030499999998) (0.011762960500000016) (0.011684036500000008) (0.011755658499999988) (0.011902091500000003) (0.012199790000000002) (0.011858566499999987) (0.011782623000000006) (0.011863362500000002) (0.011762870999999994) (0.011903969499999986) (0.011715206499999992) (0.011950227999999993) (0.011770360500000007) (0.011875606499999983) (0.011749746499999991) (0.011997344000000007) (0.011632887500000008) (0.011848901999999994) (0.011810965499999992) (0.012093832499999999) (0.011784601500000005) (0.012200487499999996) (0.011805595000000002) (0.011792290999999996) (0.011953920999999992) (0.012285310000000008) (0.012112860499999989) (0.011755241999999999) (0.012155040499999992) (0.01205497350000001) (0.012326692999999986) (0.012190580999999992) (0.012206123500000013) (0.012185637) (0.012156663999999998) (0.011979767999999988) (0.01212806000000001) (0.011927470999999995) (0.012298180500000006) (0.012171427500000012) (0.012184757000000004) (0.012051706499999995) (0.012457136500000007) (0.012093437999999998) (0.012055838499999999) (0.012309106000000014) (0.012160686000000004) (0.012118645499999997) (0.01238218549999999) (0.012030060999999995) (0.0118947945) (0.012011439500000012) (0.012221381500000003) (0.012318855500000003) (0.01227293950000001) (0.01206081299999999) (0.012163188500000019) (0.012048235500000004) (0.012120334999999982) (0.012159944999999991) (0.011816409) (0.011873745000000019) (0.011931694000000007) (0.011646584000000001) (0.011617747499999997) (0.01154936149999998) (0.01175274200000001) (0.011865186500000013) (0.013869469999999995) (0.011845247000000003) (0.011719928000000004) (0.012392216000000011) (0.011729253000000009) (0.012293357000000005) (0.011963687499999986) (0.012004024500000002) (0.011671409500000007) (0.012120262500000006) (0.011688514499999997) (0.011874208499999997) (0.011887821499999993) (0.011713436999999993) (0.011835113999999994) (0.011626505999999995) (0.011807394999999998) (0.012239514500000007) (0.011826459999999997) (0.011793692499999994) (0.0120218765) (0.012245771000000003) (0.012105850000000001) (0.012062531500000001) (0.01194240499999999) (0.012050343499999991) (0.012086922500000014) (0.0117869575) (0.011860748500000004) (0.012034286499999991) (0.012207381500000003) (0.012069982500000007) (0.012090154500000005) (0.01196895299999999) (0.011922401500000013) (0.012038892500000009) (0.012228937999999995) (0.012202166499999986) (0.012034950500000002) (0.012366829499999996) (0.012116522500000004) (0.0120817555) (0.011829964500000012) (0.011898406999999986) (0.012125482999999992) (0.01207785900000001) (0.011937382999999996) (0.012047919500000018) (0.012169672999999992) (0.012230805999999997) (0.011963494000000005) (0.012534323999999986) (0.011996840500000008) (0.0122369435) (0.012562690499999987) (0.012365279500000007) (0.011714568500000008) (0.011924441499999994) (0.011649026500000007) (0.011925778499999998) (0.011878419000000001) (0.011811976000000002) (0.011689119999999997) (0.011860118500000003) (0.012042407500000005) (0.011887591500000003) (0.012008550500000006) (0.011836493000000003) (0.011823194499999995) (0.012021547500000007) (0.011951003000000002) (0.012068188000000007) (0.011739979999999983) (0.012051508500000002) (0.011900380500000016) (0.011733330000000014) (0.011707979000000007) (0.012056070000000002) (0.01179165850000001) (0.011870251999999998) (0.012245251999999998) (0.011762170500000002) (0.011915590000000004) (0.011934411999999991) (0.011823741500000012) (0.011917793500000023) (0.0117097055) (0.011963258500000004) (0.011923410499999995) (0.012197149500000018) (0.011905709000000014) (0.012092102999999993) (0.01205705) (0.012034818499999989) (0.012204639000000003) (0.012152222500000004) (0.012427068999999985) (0.012406750999999994) (0.012210346499999997) (0.012121801999999987) (0.012205504999999992) (0.012225716499999997) (0.012515726999999977) (0.012364401999999983) (0.012475411999999991) (0.012010395499999993) (0.011977112499999998) (0.012231139500000002) (0.012065697) (0.012159430500000012) (0.012087588499999996) (0.012242120999999995) (0.01204274150000001) (0.012059962000000007) (0.012292172500000018) (0.012273483999999987) (0.012058725500000006) (0.012227013000000009) (0.012085446000000014) (0.012233418999999982) (0.01191129099999999) (0.012048379999999997) (0.0117338565) (0.011587505499999998) (0.012082417499999998) (0.011923155500000004) (0.011758165999999987) (0.011725802499999993) (0.011765678499999987) (0.011707263499999995) (0.011863274500000007) (0.011778668000000006) (0.011983704000000012) (0.01188819050000002) (0.012128670000000008) (0.011957914499999986) (0.012079328500000014) (0.011802345500000005) (0.011855753499999996) (0.011588465499999992) (0.0119878395) (0.012187394000000004) (0.01168251449999999) (0.011820066500000004) (0.011824387000000006) (0.01193361599999998) (0.011778717499999994) (0.011703524499999993) (0.011724057999999996) (0.011933564499999993) (0.0123412715) (0.01205561799999999) (0.012126561999999994) (0.0122418195) (0.012696659000000013) (0.0127192005) (0.01250765999999999) (0.012546001500000015) (0.011978917000000006) (0.012387947999999982) (0.012024350500000017) (0.0124488445) (0.012181829500000019) (0.012224899499999997) (0.012238566499999992) (0.01252222750000001) (0.012229035499999999) (0.012367840500000005) (0.0123020935) (0.012021566500000011) (0.012383477500000004) (0.012303862999999998) (0.012173133000000003) (0.012146707500000006) (0.01238065499999999) (0.012016775499999993) (0.012319397499999996) (0.012360550499999998) (0.012300125000000009) (0.012391258000000002) (0.012290471500000025) (0.012196592500000006) (0.011916174000000002) (0.012282593000000022) (0.011637909499999988) (0.011678425500000006) (0.011678125500000011) (0.011865873499999999) (0.01179387250000001) (0.012147097499999995) (0.0117771765) (0.011609030500000006) (0.01196418249999999) (0.012100717999999996) (0.011814610500000017) (0.01209442999999999) (0.011754828500000009) (0.011768920500000002) (0.011753449999999999) (0.012092357000000012) (0.011707493499999999) (0.011987458500000006) (0.011774957500000002) (0.011808925999999997) (0.011600599000000003) (0.011617235000000004) (0.011601453500000011) (0.012199953999999999) (0.01218171450000001) (0.011735422999999995) (0.011779335500000002) (0.0120054265) (0.011903516000000003) (0.011739926999999997) (0.012292849000000008) (0.011636867000000009) (0.012143721499999996) (0.011931339999999999) (0.011874357000000002) (0.012085373499999996) (0.012030184) (0.012079810499999996) (0.012112238999999997) (0.012080746500000003) (0.012185528000000001) (0.012598915000000002) (0.012193173500000015) (0.012108142999999988) (0.012259606000000006) (0.01229972) (0.011962572500000004) (0.012232473500000007) (0.012180684000000011) (0.012087611499999998) (0.011976827999999995) (0.012146583000000002) (0.012082859500000001) (0.012038636000000005) (0.012132882000000011) (0.01244774350000001) (0.012085778499999991) (0.012436479) (0.012126748000000007) (0.012050675499999983) (0.01226115500000001) (0.01218886000000001) (0.012002953499999983) (0.01220020500000002) (0.011799167) (0.01184126299999999) (0.012053932000000003) (0.012037716000000004) (0.01176983849999999) (0.01159251750000001) (0.011915263500000009) (0.011795848000000012) (0.01204773100000002) (0.011765816000000012) (0.012116977000000001) (0.012008088) (0.011794161500000011) (0.012077974499999991) (0.012097295000000008) (0.011862106000000011) (0.01209283650000001) (0.01226000300000002) (0.011917617500000005) (0.012456127499999997) (0.011940515000000013) (0.01192630800000001) (0.012026873000000007) (0.011825676000000007) (0.01208758800000001) (0.012021588) (0.011953156499999992) (0.012053596) (0.012036296000000002) (0.012237643999999992) (0.012390259) (0.012077717500000001) (0.011823687999999999) (0.011960511000000007) (0.012145081500000002) (0.012156711499999986) (0.012168948500000012) (0.0121189815) (0.012043889000000002) (0.012406671999999994) (0.012231772000000002) (0.012171216499999998) (0.012153031499999994) (0.012239829000000008) (0.011945193499999993) (0.012134091000000014) (0.012067335999999998) (0.012264270000000008) (0.012183007999999995) (0.011935630499999988) (0.012388086500000006) (0.012221220500000005) (0.01422631399999999) (0.011878887500000004) (0.012143452499999999) (0.012311823999999985) (0.012104595999999995) (0.012028545000000015) (0.0125946735) (0.011992696999999997) (0.012177202500000012) (0.012216995999999994) (0.012279405999999993) (0.012340800499999999) (0.011945828500000005) (0.011711715000000011) (0.011906978999999998) (0.012139888000000001) (0.011881230499999992) (0.011739112499999996) (0.011745293500000004) (0.0119934825) (0.012086525000000015) (0.01167281349999999) (0.0118931085) (0.012293643500000007) (0.011830289000000008) (0.011861664000000008) (0.011910409499999997) (0.011699976) (0.011500000499999996) (0.011736906999999991) (0.011780767499999997) (0.011803651499999998) (0.011864240500000012) (0.01200536449999999) (0.01190746949999999) (0.011719197000000015) (0.011962373999999998) (0.01225436449999999) (0.011837826499999995) (0.011729239500000002) (0.012291222000000004) (0.011997300999999988) (0.012214441000000006) (0.01232055700000001) (0.011911297000000015) (0.012016200500000004) (0.011945907499999991) (0.01220333400000001) (0.012360235999999997) (0.012084949500000011) (0.012264203000000001) (0.012361559999999994) (0.012359265500000008) (0.01210333000000001) (0.012233194000000003) (0.012043762) (0.0124594985) (0.012352805500000008) (0.012538605000000008) (0.012255096499999993) (0.012083110999999994) (0.012062298500000013) (0.011908853999999983) (0.012196911000000005) (0.011903550499999999) (0.012101409999999993) (0.0123668205) (0.011896338499999992) (0.012245234999999993) (0.012307526499999999) (0.012236964500000003) (0.012126104499999998) (0.011988503499999997) (0.012164925000000007) (0.012209929000000008) (0.012393359999999992) (0.01189465649999999) (0.011718064500000014) (0.011900773000000017) (0.011616828999999995) (0.011710060499999994) (0.011999660999999995) (0.012140651000000016) (0.011593961) (0.011717150499999995) (0.011860772499999991) (0.01204977900000001) (0.011939699499999998) (0.012114232499999988) (0.011830971999999995) (0.012406003499999999) (0.01200130349999999) (0.011950105999999988) (0.011767252500000006) (0.011815614000000002) (0.011929182499999996) (0.011902339999999997) (0.011980569499999996) (0.011746229999999996) (0.011967333499999996) (0.01183615049999999) (0.012062889999999993) (0.011909790000000017) (0.012095820999999993) (0.0118372365) (0.01189013600000001) (0.011737887000000002) (0.01232482) (0.012206440999999998) (0.012328629000000008) (0.012076537000000012) (0.011904737999999998) (0.012383834999999982) (0.01232009299999999) (0.01210496250000001) (0.01222698350000001) (0.012150890999999997) (0.012187152499999993) (0.012561976000000002) (0.011882436999999996) (0.011994325999999986) (0.012089376500000013) (0.012156898499999999) (0.01186582450000001) (0.012178510999999989) (0.012250731) (0.012310453499999999) (0.012217505000000004) (0.014254695499999984) (0.012147222) (0.0120841785) (0.011956941499999998) (0.012254681000000003) (0.012235431500000005) (0.012164159499999994) (0.012268812500000004) (0.012212626500000004) (0.012006343000000003) (0.012048326500000012) (0.011933873499999983) (0.012073442500000003) (0.011861364499999985) (0.011947275500000007) (0.011829710000000007) (0.011726205500000003) (0.011888252000000002) (0.011769770499999985) (0.011724779500000004) (0.011933091999999992) (0.01183345949999999) (0.011922142499999996) (0.011958787999999998) (0.012291561000000006) (0.011843551499999994) (0.012016435999999991) (0.011871215000000004) (0.011735005499999993) (0.011700854499999996) (0.011982125999999996) (0.011739381500000007) (0.011943629999999997) (0.011754309000000018) (0.0117623315) (0.01193363) (0.011729842000000004) (0.011963946500000003) (0.011810670500000009) (0.011744296500000001) (0.012380488500000009) (0.011846841499999997) (0.012132133999999989) (0.01177415250000001) (0.012075813500000004) (0.012274008000000003) (0.012054371499999994) (0.012290512000000003) (0.011988007999999994) (0.011944934500000004) (0.012096690000000007) (0.012253463500000006) (0.012331967499999985) (0.012046504) (0.0119767925) (0.011981755499999983) (0.0119769775) (0.012019803499999995) (0.012694630999999998) (0.012295180000000003) (0.012151223000000003) (0.012435678999999991) (0.012170656500000016) (0.012571252500000005) (0.012178564500000003) (0.01234067350000001) (0.012248378000000004) (0.01218053650000002) (0.012151089500000004) (0.012017234999999987) (0.012366529000000001) (0.012066354000000001) (0.012010408500000014) (0.012241700500000008) (0.012219551000000009) (0.012399067000000014) (0.011948332499999992) (0.012003519000000018) (0.011908735000000004) (0.011695426999999994) (0.011807610499999996) (0.011663598999999997) (0.011556178) (0.011857008500000002) (0.012162713499999991) (0.01180154500000001) (0.011855525000000006) (0.012119802499999999) (0.011937916499999993) (0.011911055500000003) (0.011795542499999992) (0.011790293000000007) (0.011736551499999998) (0.011799651999999994) (0.011948959499999995) (0.011848279000000003) (0.011862114499999993) (0.011925144500000012) (0.01178478949999999) (0.011685445000000003) (0.01183661300000001) (0.011952828499999998) (0.012249255499999986) (0.011653768999999994) (0.012115639499999997) (0.01220212150000001) (0.011873668500000004) (0.011800608000000004) (0.01204776199999999) (0.012183908000000007) (0.0118520275) (0.012086546000000004) (0.012284790500000003) (0.01217860200000001) (0.012383890499999994) (0.012395921000000018) (0.012379595999999993) (0.0120072445) (0.012199539999999995) (0.012074163999999998) (0.012192756499999985) (0.012494012499999999) (0.012248645000000002) (0.012190286000000009) (0.011969399000000006) (0.012026564999999989) (0.012161759000000008) (0.012033794) (0.012046017499999992) (0.012063879500000013) (0.011971618000000003) (0.012023005500000003) (0.012211528499999985) (0.012351318000000014) (0.012348694999999979) (0.012207538499999976) (0.012153303500000018) (0.012424312000000007) (0.012129207000000003) (0.012517838500000017) (0.012093450499999991) (0.011734977999999993) (0.011749058000000007) (0.011863902499999995) (0.011796312000000003) (0.011771984) (0.011860756000000014) (0.011802076500000008) (0.01198125600000001) (0.011859626500000012) (0.011828391500000007) (0.011743105500000003) (0.012102436000000008) (0.011961135499999984) (0.012432143500000006) (0.011882941499999994) (0.01182340950000002) (0.011938770500000001) (0.012015944) (0.011679295999999992) (0.011831771500000005) (0.011758697499999998) (0.011952471499999978) (0.011872940999999984) (0.012042793499999996) (0.012410621499999996) (0.011821714499999997) (0.011955985000000002) (0.01173825399999999) (0.011908843000000002) (0.011605835000000009) (0.012284677000000008) (0.012161017999999996) (0.012104050500000005) (0.012440684499999993) (0.012038138500000004) (0.012147648499999997) (0.0120419955) (0.012040621000000001) (0.012604981500000015) (0.012441339999999995) (0.012652859500000002) (0.012360544499999987) (0.012354098000000008) (0.012372225000000014) (0.012224107499999998) (0.012185994499999978) (0.012335994999999975) (0.012422017999999993) (0.012184778999999993) (0.012109509500000018) (0.012304139500000005) (0.012175200999999997) (0.012323171000000008) (0.01205913749999997) (0.011927260999999995) (0.01237884899999997) (0.012049763500000005) (0.012335560499999995) (0.012130666000000012) (0.01207619950000001) (0.012056907499999978) (0.01230436650000001) (0.012230174499999996) (0.011697827499999994) (0.01170554950000001) (0.011783408499999995) (0.011884062999999986) (0.011675445499999992) (0.011867267500000014) (0.011881280500000008) (0.011637010500000003) (0.011802000500000007) (0.0119860725) (0.0119361625) (0.01232439099999999) (0.0121063275) (0.01194447550000001) (0.011997983500000003) (0.012041664500000007) (0.011870028000000005) (0.011790311000000012) (0.011837779999999978) (0.012220675000000014) (0.011933247999999994) (0.011614510000000008) (0.011742613000000013) (0.011817673999999986) (0.011863948) (0.011806128000000013) (0.011820191000000008) (0.01191272900000001) (0.011726941000000005) (0.011897007999999987) (0.01165042799999999) (0.011771972000000006) (0.012047603000000004) (0.011975890000000003) (0.012494087499999987) (0.011952523999999992) (0.011999625000000014) (0.012293864999999987) (0.011933177499999989) (0.011927007000000003) (0.012275998999999996) (0.012018681500000003) (0.012474265999999998) (0.01213686600000001) (0.012291102500000012) (0.012081599999999984) (0.012128333999999977) (0.012211698999999979) (0.011908253500000007) (0.01209583950000001) (0.011932725499999991) (0.012241808999999992) (0.012479332999999995) (0.01207264700000002) (0.012331796499999992) (0.012295127999999989) (0.012124854500000004) (0.012395729999999994) (0.012102481000000012) (0.01216548599999999) (0.012169274999999993) (0.012372386999999999) (0.012138259000000026) (0.012114304500000006) (0.0118011175) (0.011953987) (0.0120343475) (0.011997885499999986) (0.012327188000000003) (0.011777099999999999) (0.011834836500000015) (0.011905327000000021) (0.01175529950000001) (0.01176945) (0.01228646600000001) (0.012000228500000001) (0.011738538000000007) (0.012064321999999988) (0.01191558799999999) (0.011814592500000012) (0.011753681999999988) (0.0118820585) (0.011763916999999999) (0.01162619749999999) (0.011776695500000003) (0.011742234000000018) (0.012081040000000015) (0.011868897000000003) (0.011799984500000027) (0.01188414900000001) (0.011900567) (0.011892814500000001) (0.011905467500000017) (0.01202510000000001) (0.012177484500000016) (0.012051712499999992) (0.0122042505) (0.011963323999999997) (0.011963058000000013) (0.012201991500000009) (0.012194417999999985) (0.011997725) (0.011992179500000005) (0.012145544000000022) (0.012043392499999972) (0.012212327999999995) (0.012081848500000006) (0.012303632999999994) (0.012452353499999985) (0.012658449500000002) (0.012210322499999982) (0.012235493999999986) (0.012014126000000014) (0.012175940499999996) (0.011930870500000024) (0.0121298205) (0.012198388000000004) (0.012058847999999997) (0.01192422600000001) (0.011862267999999995) (0.012204752) (0.012348827500000006) (0.01238781399999997) (0.012224495500000016) (0.012066619) (0.012336396499999985) (0.012158404999999997) (0.012486252000000003) (0.01005367750000001) (0.010109210500000007) (0.010380935000000008) (0.009955585500000003) (0.010114530499999996) (0.010217138499999986) (0.00995945899999999) (0.010036298499999999) (0.010135416499999994) (0.010113150500000001) (0.010209497999999984) (0.010119477000000016) (0.010134575499999993) (0.010028848000000007) (0.010144882499999994) (0.010146747499999997) (0.010124589000000003) (0.009989070500000002) (0.009832278499999986) (0.010104083) (0.00990058249999999) (0.009957140000000003) (0.009946762999999997) (0.010027912) (0.01013732249999999) (0.010232903500000001) (0.009908977499999985) (0.010150112000000003) (0.0099878625) (0.010365117500000007) (0.009919769999999994) (0.010053872000000005) (0.010374678999999998) (0.010496992999999996) (0.010319212999999994) (0.010285784500000006) (0.0104364485) (0.010395645499999995) (0.01033004600000001) (0.010285362500000006) (0.010399320000000004) (0.010539549999999995) (0.010527242999999992) (0.010980769500000001) (0.010316908499999985) (0.010401801999999988) (0.010312303499999995) (0.010234457000000002) (0.010649982999999988) (0.010287233499999993) (0.01016764349999999) (0.010185968500000017) (0.010349087999999992) (0.010173109999999999) (0.01035701750000001) (0.010249793500000007) (0.01040708600000001) (0.010301558499999988) (0.010495363499999993) (0.01046417600000002) (0.010443359499999999) (0.010473289499999996) (0.010707401499999991) (0.010470882) (0.010058308000000002) (0.009946086999999992) (0.010102866500000016) (0.010281930999999994) (0.010369362500000007) (0.009961479499999995) (0.009978036999999995) (0.010134502500000003) (0.010190652000000008) (0.010137647) (0.010106826) (0.01032258300000001) (0.010251357500000016) (0.01027591550000001) (0.010031668500000007) (0.010048522000000004) (0.009928009000000002) (0.010010121499999983) (0.010016217499999994) (0.010045642500000021) (0.00987104350000001) (0.010200136499999998) (0.010124685500000008) (0.009841785999999991) (0.010188261500000004) (0.010265635999999995) (0.010108391999999994) (0.010268771499999996) (0.010341783499999993) (0.010292684499999982) (0.010112231) (0.010110684499999995) (0.010439448000000004) (0.01017896) (0.010416550499999996) (0.010172820999999999) (0.010321900999999994) (0.010346369499999994) (0.010267500999999998) (0.010446219999999992) (0.010533451) (0.010431389499999999) (0.010408642999999995) (0.010427276000000013) (0.010461812999999986) (0.010313127499999991) (0.010463130500000015) (0.010553182999999994) (0.010179930500000003) (0.010582029999999992) (0.010323963000000005) (0.010301813999999992) (0.010500466) (0.010371716500000003) (0.01027961999999999) (0.010543525499999998) (0.010556930499999992) (0.010294361000000002) (0.010409665999999998) (0.010333530999999993) (0.01046920400000001) (0.010454299) (0.010564472500000005) (0.010321026999999997) (0.010271621500000008) (0.01003379750000001) (0.010149525500000006) (0.010151191500000004) (0.010690894499999992) (0.010170052999999998) (0.009963563499999994) (0.010236913) (0.010161949000000003) (0.010144629499999988) (0.010121319500000003) (0.010278785000000012) (0.010182532000000008) (0.010210835500000001) (0.010034672000000022) (0.010472829500000003) (0.009951664499999999) (0.010087883499999992) (0.009914555000000005) (0.009942768000000005) (0.009902672500000015) (0.010058854499999992) (0.010191255499999996) (0.010033688500000013) (0.00999629099999999) (0.01001668650000001) (0.010035582000000001) (0.010022375000000014) (0.0102784675) (0.010170153500000001) (0.010164198500000013) (0.010160438999999993) (0.010394778499999993) (0.010243389000000006) (0.010268354500000007) (0.010612022999999998) (0.010228743999999998) (0.010599846499999996) (0.010377233) (0.010339636999999985) (0.010842335500000008) (0.010297016000000006) (0.010452641499999998) (0.010374576999999996) (0.010412793000000004) (0.010257284000000005) (0.010436771499999997) (0.0104297015) (0.010213505999999997) (0.010248425499999991) (0.010356166) (0.01029952349999999) (0.010387280999999998) (0.010326904999999997) (0.010569840999999996) (0.010350623999999989) (0.010438094500000009) (0.010364325500000007) (0.010549756499999993) (0.010528900499999994) (0.010479819500000001) (0.010356249499999998) (0.010272260999999991) (0.010336640500000008) (0.009953638000000015) (0.010160622999999994) (0.010330769500000003) (0.010066838500000008) (0.010341546999999993) (0.010132073499999991) (0.010192654500000009) (0.010066121999999983) (0.010176387499999995) (0.010395274999999995) (0.010050953000000015) (0.010051995999999994) (0.010076127500000004) (0.010200084499999998) (0.0103228935) (0.009998948499999993) (0.010147692) (0.010131301999999995) (0.010206642000000002) (0.010226352499999994) (0.010532430999999995) (0.009996050500000006) (0.010281621000000005) (0.010028745500000005) (0.010230952500000001) (0.010092847000000002) (0.010401060000000004) (0.0101448695) (0.010118174999999993) (0.010082315499999994) (0.010195318999999994) (0.010197548999999986) (0.010388009000000004) (0.010505856499999994) (0.010521484499999983) (0.010431025499999996) (0.010316843000000006) (0.010338450499999999) (0.010221827000000003) (0.01042159899999999) (0.010571137999999994) (0.010514034999999991) (0.010342492000000009) (0.01031404000000001) (0.010611397999999994) (0.010523880999999999) (0.010441575999999994) (0.010782260000000002) (0.010594352000000001) (0.010405227500000003) (0.010428591499999987) (0.0103990905) (0.010212214000000011) (0.010352700499999992) (0.01058538299999999) (0.01030972699999999) (0.010386179499999995) (0.010507192999999998) (0.010755049000000003) (0.010314196000000012) (0.010633456999999999) (0.010497848000000004) (0.010354841000000004) (0.010748083999999991) (0.009833361499999999) (0.01015552900000001) (0.010250783999999985) (0.010284918500000004) (0.010051693000000014) (0.009956053999999992) (0.010149151500000009) (0.010180355499999988) (0.01004520049999999) (0.01012296850000001) (0.010017270499999995) (0.009981739500000003) (0.010199104) (0.01039698650000001) (0.010236654500000011) (0.010094739500000005) (0.009994099499999992) (0.010083687999999993) (0.010058286999999985) (0.009995345999999988) (0.010021435499999995) (0.009902202499999999) (0.010025577999999993) (0.009956620499999999) (0.01019037149999999) (0.010127724000000005) (0.0105395925) (0.010400636500000005) (0.010155299500000006) (0.010123827000000016) (0.010242198999999994) (0.010181219500000005) (0.010166216000000006) (0.010260719000000001) (0.010392579999999998) (0.010199883499999993) (0.010433387500000002) (0.010232162500000003) (0.010333250500000016) (0.010297677500000005) (0.010296868499999987) (0.01064016949999999) (0.010277955999999991) (0.01048445000000002) (0.010523189000000016) (0.010498617500000001) (0.010701954500000013) (0.010574410500000006) (0.010384098500000008) (0.010267115000000007) (0.01038070549999999) (0.010269001) (0.010330057500000003) (0.010419119500000004) (0.010316197499999999) (0.010375185999999995) (0.010650585500000004) (0.010660766500000002) (0.010516842999999984) (0.010539329) (0.010509008) (0.010565657000000006) (0.010787530000000004) (0.010525385000000012) (0.009945526999999996) (0.009985328500000001) (0.009948127499999987) (0.010258409999999996) (0.01007240899999999) (0.009957020999999996) (0.010036365999999991) (0.01023984) (0.01006367200000001) (0.010562818499999987) (0.010135180500000007) (0.01028578849999999) (0.010009662500000002) (0.010107921000000006) (0.010238904000000007) (0.010220108499999991) (0.0098989575) (0.009875075999999997) (0.010227625500000018) (0.010305164499999991) (0.009904218500000006) (0.010104299000000011) (0.010127377500000007) (0.010032589499999994) (0.010246390999999994) (0.009971446499999995) (0.01010712200000001) (0.010102270499999996) (0.010209224499999989) (0.0100984925) (0.00998665800000001) (0.010059699500000005) (0.010212618000000007) (0.010721122) (0.01045989750000001) (0.010318481000000004) (0.010229190500000013) (0.010428553000000007) (0.010398660500000004) (0.010236246500000004) (0.010430320999999992) (0.010654895000000011) (0.010432873999999995) (0.010435012500000007) (0.010572875999999995) (0.010305705999999998) (0.010820323500000006) (0.010366280000000005) (0.01052835199999999) (0.010255926499999998) (0.010414314500000008) (0.010520560499999998) (0.010273240500000003) (0.010272868500000004) (0.01027098700000001) (0.010461605500000012) (0.010407038499999993) (0.01053406599999998) (0.010854580000000016) (0.010461651000000002) (0.010294324500000007) (0.010260005499999988) (0.010537651499999995) (0.010309959999999993) (0.01012995550000001) (0.009894144500000007) (0.010263605500000009) (0.010212542500000005) (0.009959300500000018) (0.010190448000000005) (0.010057487500000004) (0.009938742000000014) (0.009975487500000005) (0.010136305499999998) (0.010118416000000019) (0.009940089) (0.010093362999999994) (0.010252100000000014) (0.010252889500000001) (0.01026246800000001) (0.009995515999999996) (0.010155481000000008) (0.010032906499999994) (0.01048980749999999) (0.01010100650000001) (0.010188681500000005) (0.010078309500000007) (0.010343171999999998) (0.010293581500000024) (0.009975227500000003) (0.010280365000000014) (0.010464028) (0.01007107950000001) (0.010210389000000014) (0.010415520000000011) (0.010326611999999999) (0.01025947599999999) (0.010315202499999995) (0.010414679999999996) (0.010622094999999998) (0.010423089499999996) (0.010454523499999993) (0.010455954000000003) (0.010376390499999999) (0.010542962500000003) (0.010761411999999998) (0.010447165500000008) (0.010533631000000016) (0.010420561000000009) (0.010397220999999984) (0.010407336500000017) (0.010506149000000006) (0.010466398500000001) (0.01042245600000001) (0.010386034500000002) (0.010443729499999999) (0.010397652000000007) (0.010630426999999998) (0.010296671499999993) (0.010417038000000003) (0.010576568000000008) (0.010551582500000017) (0.0103358365) (0.010559707500000001) (0.010373858) (0.010567438999999998) (0.010399323500000016) (0.010355772999999999) (0.010055192500000004) (0.009999661000000007) (0.010130675999999991) (0.010025477500000005) (0.010197919) (0.0101028705) (0.0105008335) (0.009947211499999983) (0.0100602375) (0.010477913000000005) (0.010048907999999995) (0.010172215500000012) (0.010166230500000012) (0.010268700500000005) (0.010221269000000005) (0.010252084499999994) (0.010132239499999987) (0.010070645000000003) (0.010098888999999986) (0.01007391249999999) (0.009911649999999994) (0.010235943500000011) (0.010018934999999993) (0.01032085399999999) (0.010213157000000014) (0.010451349999999998) (0.01017493600000001) (0.010073729999999989) (0.010150937000000013) (0.010443985500000003) (0.010093435499999998) (0.010205043999999996) (0.010613161999999995) (0.010465343500000002) (0.010360655499999996) (0.010523010500000013) (0.010212125000000002) (0.010536566999999997) (0.010295934500000006) (0.010561343000000015) (0.011269966499999992) (0.010568499000000009) (0.010301195499999999) (0.010278914500000014) (0.01048579949999999) (0.010486568000000002) (0.010278460500000003) (0.010472749000000003) (0.010650200999999998) (0.01041363449999999) (0.010505942500000004) (0.010455244500000002) (0.010413801) (0.010371999000000007) (0.010379803999999992) (0.010363758000000015) (0.010573824499999995) (0.010713452499999998) (0.010667424000000009) (0.010423341500000016) (0.01041293) (0.010368269999999999) (0.010351072000000003) (0.010610124499999998) (0.009964612999999997) (0.010020711000000015) (0.01012470900000001) (0.01021706) (0.009934008999999994) (0.010183439999999988) (0.010018366999999986) (0.010026984500000002) (0.0101772215) (0.010106273500000013) (0.010266761000000013) (0.01030895200000001) (0.00996354499999999) (0.009996983000000001) (0.009884475500000003) (0.010031031499999996) (0.010160369000000002) (0.010230292000000002) (0.009839328000000008) (0.010194216500000006) (0.010159356500000008) (0.00993761550000001) (0.009911530000000002) (0.009989947999999998) (0.010296199999999991) (0.0103488885) (0.010192889999999996) (0.010356945499999992) (0.010174065999999996) (0.010021448000000002) (0.010134065499999997) (0.01009735149999999) (0.010268120500000005) (0.010346834999999999) (0.010232192500000015) (0.010302963499999998) (0.010326994499999992) (0.010424914000000007) (0.010321306499999988) (0.010284598500000006) (0.010584240000000009) (0.010424291499999988) (0.010424815000000004) (0.010509658000000019) (0.010523474500000005) (0.0105880515) (0.010516801499999992) (0.010437865500000004) (0.010472244500000005) (0.010479932499999997) (0.010505367000000015) (0.010320717500000007) (0.010440379) (0.010175995500000007) (0.010294438500000003) (0.010330595000000012) (0.010585541500000004) (0.010453617499999984) (0.010435111999999996) (0.010398640000000015) (0.010451082000000014) (0.010635781499999997) (0.010497225499999999) (0.010486876999999992) (0.010260891500000008) (0.010114648000000018) (0.010153425000000008) (0.0101832055) (0.010033610500000012) (0.01016785549999999) (0.010082352500000002) (0.010317339499999995) (0.010245539999999997) (0.010037194500000013) (0.010262200999999999) (0.010500712499999995) (0.010390382000000004) (0.010174073500000005) (0.009984101499999995) (0.01003846450000001) (0.0100362185) (0.010234235500000008) (0.01003412599999999) (0.010067846000000005) (0.010170185499999998) (0.010053069000000012) (0.010181851000000006) (0.00997468700000001) (0.010055148999999985) (0.009976434000000006) (0.010097859000000015) (0.010158611999999997) (0.010039564) (0.010183805000000004) (0.010167814999999997) (0.010173038999999995) (0.010218540499999998) (0.010402314499999996) (0.010508761500000005) (0.010416951000000008) (0.010666700000000001) (0.010325127500000017) (0.010536083499999988) (0.010316527000000006) (0.0104093445) (0.010401142500000002) (0.010561406999999995) (0.010602494500000004) (0.010477795499999998) (0.010334146999999988) (0.010866364000000003) (0.010715269) (0.010555205500000012) (0.010712233000000002) (0.010350045500000002) (0.010387266000000006) (0.010492732500000004) (0.010309572000000003) (0.010362050500000011) (0.010549988499999996) (0.010643649500000005) (0.010393438500000005) (0.010615910999999992) (0.010644586499999997) (0.010519070500000005) (0.01065052100000001) (0.01069606599999999) (0.010556615499999991) (0.010170207500000014) (0.010334024000000011) (0.009864841499999999) (0.00995111450000001) (0.010111853500000004) (0.009928829) (0.010141691499999994) (0.010047140499999996) (0.010178286999999994) (0.010002993000000002) (0.010125395499999995) (0.010293223500000004) (0.010247141500000001) (0.010181477000000008) (0.010069955000000005) (0.01012175450000001) (0.010149293000000004) (0.010028204999999998) (0.009964600500000004) (0.009975758000000001) (0.009853638999999997) (0.009923079500000015) (0.010166251000000001) (0.01005744) (0.010139991999999987) (0.010075757000000005) (0.010335877499999993) (0.010269014000000007) (0.010402013500000015) (0.010408319499999999) (0.010227471500000002) (0.010181048999999998) (0.010357616000000014) (0.0104898685) (0.010333230499999999) (0.010229889499999992) (0.010586018000000003) (0.010416118500000002) (0.010359959000000002) (0.010532838500000016) (0.010268561999999995) (0.010491955500000011) (0.010357924000000004) (0.010465887999999993) (0.010672611000000012) (0.01041699900000001) (0.010381135) (0.010315893000000007) (0.010398256000000008) (0.010232570499999996) (0.010596021999999997) (0.010515012000000004) (0.010262134500000006) (0.010603109) (0.010276125999999997) (0.01048533850000001) (0.0110834935) (0.010413454500000002) (0.010480806999999995) (0.010398636999999988) (0.010373171) (0.010560680000000003) (0.010597317000000009) (0.010537799500000014) (0.010066394999999992) (0.009891668000000006) (0.010154051500000011) (0.009950021500000003) (0.010032587999999995) (0.009904868999999997) (0.010201783000000006) (0.010205376000000002) (0.010175766500000002) (0.010194049999999996) (0.01017425949999999) (0.010184651500000003) (0.010333811000000012) (0.010458282999999999) (0.010549583500000001) (0.010300400000000015) (0.009967124000000008) (0.010189247499999984) (0.010078276499999997) (0.010122102500000008) (0.009994489499999981) (0.009987806499999988) (0.010161268000000001) (0.010136323999999988) (0.010276033000000004) (0.01016171149999999) (0.010287353999999999) (0.010333263500000009) (0.010528659999999995) (0.010215155500000003) (0.010288713000000005) (0.01025272449999999) (0.010400842500000007) (0.010433500999999998) (0.010382014999999994) (0.010549613999999999) (0.010223787000000012) (0.010442047999999995) (0.010392527499999998) (0.010417203) (0.010300084000000001) (0.010649040000000012) (0.010601760500000001) (0.010798449500000001) (0.010468724500000012) (0.010630609500000013) (0.01061646799999999) (0.010473503499999995) (0.010509142500000013) (0.010432602499999999) (0.0103328845) (0.010328881000000012) (0.010248983499999989) (0.010371846000000004) (0.010578750000000012) (0.010330543499999997) (0.01052446700000001) (0.010515547499999986) (0.010642019999999988) (0.010453014999999996) (0.010607087500000001) (0.010534640499999998) (0.010540082000000006) (0.010551428500000001) (0.010131307999999992) (0.009880241999999997) (0.010227334000000005) (0.00999451350000001) (0.010213967500000018) (0.010014792499999994) (0.010068839499999996) (0.010108383999999998) (0.010322064500000006) (0.010263523999999982) (0.010043926499999994) (0.010264857500000016) (0.010053095999999997) (0.010047686500000014) (0.010190709000000006) (0.010251178500000013) (0.010068906000000002) (0.010124628499999996) (0.009889574499999998) (0.010062458999999996) (0.010329032500000002) (0.01015394700000001) (0.01014594299999999) (0.010008967499999993) (0.010197194499999993) (0.010007791999999988) (0.010471554500000008) (0.010171697500000007) (0.010094705500000009) (0.010050106500000003) (0.010094454000000003) (0.010273315499999991) (0.010402870000000008) (0.010303399000000019) (0.010455497499999994) (0.0106147615) (0.010440356499999998) (0.010568328000000016) (0.010210244500000007) (0.010257262999999989) (0.010277526499999981) (0.01031104549999999) (0.010695345000000009) (0.010600885000000004) (0.010426753999999996) (0.010339500500000015) (0.010394979500000012) (0.010446496999999999) (0.010494014499999996) (0.010525127499999995) (0.010421373499999997) (0.010540698000000015) (0.010354506) (0.010662436499999997) (0.010217072000000008) (0.0104271155) (0.010367193999999996) (0.010755183500000001) (0.0103068605) (0.010459961500000003) (0.010447902000000009) (0.010433181) (0.010510230499999995) (0.010383278499999996) (0.01008477699999999) (0.010194201) (0.01009314900000001) (0.010042997500000012) (0.010332716999999991) (0.010342561000000014) (0.010115036999999993) (0.010052837000000009) (0.010310001999999999) (0.010306161000000008) (0.010072072000000015) (0.010175361000000008) (0.010198775000000007) (0.010210414499999987) (0.010178981000000004) (0.009992601000000004) (0.010257714000000001) (0.009937716999999999) (0.009977146000000006) (0.009895801999999995) (0.01005939900000001) (0.010066928000000003) (0.010058704500000001) (0.009990617000000007) (0.010167619500000002) (0.010070633999999995) (0.010203030000000016) (0.010198876499999995) (0.010392438000000004) (0.00998673849999998) (0.010183976499999997) (0.010179784499999997) (0.010223586000000007) (0.010586732500000001) (0.010416316999999994) (0.010330949000000006) (0.010441460999999999) (0.010359034500000003) (0.010513749500000003) (0.010330008999999987) (0.010557431999999992) (0.010302144) (0.01047102350000001) (0.010256993500000006) (0.010453376) (0.010289588999999988) (0.010317085000000004) (0.010575455999999997) (0.010432114499999992) (0.010374185999999994) (0.010584445000000012) (0.010405776500000005) (0.010434856000000006) (0.010331670000000001) (0.0103807655) (0.0106060335) (0.010457873499999992) (0.010434086999999995) (0.010423738500000002) (0.010671088500000009) (0.010368602500000018) (0.010536319500000002) (0.010329495999999994) (0.010423370000000001) (0.010020862500000005) (0.010108943500000009) (0.010184959499999993) (0.010167183999999982) (0.010011099499999995) (0.01026285049999999) (0.009986006000000006) (0.010054634000000007) (0.010073327000000007) (0.010002945000000013) (0.010024408499999998) (0.0102657305) (0.009945993) (0.010277178999999997) (0.0104770545) (0.010583680500000012) (0.00998963500000001) (0.010176374000000002) (0.010020244999999997) (0.009981593999999996) (0.009988922000000011) (0.010145211000000015) (0.010080983000000002) (0.010240009500000008) (0.010385927499999989) (0.010650269000000004) (0.010024312999999993) (0.01029845900000001) (0.010071473499999997) (0.01010809) (0.009980406999999997) (0.010088192999999995) (0.010465309499999992) (0.010280613499999994) (0.010405914500000002) (0.010470843500000007) (0.010535009999999997) (0.010483550000000008) (0.010225954999999995) (0.010341063000000011) (0.010707969499999997) (0.010602486500000008) (0.010449802500000008) (0.010437785000000005) (0.010383996000000006) (0.010481150500000008) (0.010395699500000008) (0.010672412000000006) (0.010422096500000005) (0.010412802499999999) (0.010317359499999998) (0.010457805499999986) (0.010215664499999999) (0.010668323999999993) (0.010571362) (0.01035124200000001) (0.010506821500000013) (0.010513190999999991) (0.010560241999999984) (0.010810781500000005) (0.010314616499999985) (0.010415605499999994) (0.010539106000000006) (0.010271387499999993) (0.009915551499999994) (0.010131140499999997) (0.0101167925) (0.010128245499999994) (0.010115150999999989) (0.010110944499999996) (0.01028517050000001) (0.010002304000000017) (0.010218960499999999) (0.010332329000000001) (0.010428263500000007) (0.010338558999999983) (0.010415809999999998) (0.010154173000000002) (0.010092979000000002) (0.010282780500000005) (0.010298128000000004) (0.010102750499999993) (0.010040015) (0.010078519999999994) (0.010157771499999996) (0.010124292999999993) (0.010272581500000003) (0.01001828249999999) (0.0103887015) (0.01017646250000001) (0.010263746000000004) (0.010313547500000006) (0.01026051900000001) (0.01006335350000001) (0.0102561615) (0.010260033999999987) (0.010267987999999992) (0.010422124500000018) (0.010377931999999992) (0.010607564) (0.010280970499999986) (0.010269616499999995) (0.010311948500000001) (0.010460480999999994) (0.010374398499999993) (0.010548237000000002) (0.010388062000000003) (0.010601135999999997) (0.010399338499999994) (0.010355158500000003) (0.010485989999999987) (0.010365980499999997) (0.010732128000000007) (0.01065523900000001) (0.01037192649999999) (0.010233178999999995) (0.010276331) (0.010368185000000002) (0.01041982100000001) (0.010457729999999998) (0.010499868499999981) (0.01059317999999998) (0.010576198499999995) (0.010316187500000018) (0.010669966500000003) (0.010804995499999998) (0.010352481999999996) (0.010432551500000012) (0.009802392000000007) (0.010179037500000002) (0.0102164785) (0.00990452700000001) (0.01017171950000001) (0.009907715999999997) (0.009850648000000004) (0.010001370499999995) (0.010273174999999996) (0.010081016999999998) (0.009885837499999994) (0.010190099999999994) (0.010161244500000013) (0.010059820499999997) (0.010092814500000019) (0.0102444285) (0.00992767750000001) (0.010067301) (0.010230904499999999) (0.010328197499999997) (0.009968828999999998) (0.009982280999999996) (0.0102353845) (0.00995028000000002) (0.010053690500000004) (0.010205801) (0.01002536250000001) (0.010153685499999995) (0.009970903999999989) (0.009963477500000012) (0.010042978500000008) (0.01010845099999999) (0.010228364000000018) (0.010375772999999991) (0.010278249500000003) (0.010230241000000001) (0.010409789999999988) (0.010243950499999988) (0.010344486000000014) (0.010600446999999999) (0.01049319650000001) (0.010879536999999995) (0.010287085500000001) (0.010410049500000004) (0.010675340500000005) (0.010460304500000003) (0.010487620999999989) (0.010373125499999997) (0.010328155500000005) (0.010503710999999999) (0.010208553999999995) (0.0105467385) (0.010218584999999988) (0.010312440499999992) (0.010301866999999992) (0.010301563499999986) (0.010368050000000004) (0.010357240500000017) (0.010619968500000021) (0.010495409499999983) (0.010658193499999996) (0.010517189499999996) (0.010803536000000002) (0.010526509000000003) (0.010078063999999998) (0.00996428349999999) (0.010162228499999995) (0.010000783500000013) (0.010162026500000004) (0.0102183005) (0.010030174500000003) (0.009918481499999993) (0.010176387999999995) (0.009999380000000002) (0.010261138500000003) (0.010146061999999997) (0.010027437500000014) (0.010004469500000002) (0.010133220999999998) (0.010242490000000007) (0.010018943500000002) (0.009839503) (0.009910685000000002) (0.010037221499999999) (0.010005983499999996) (0.009894281500000005) (0.009996980500000002) (0.0107094685) (0.010085620000000003) (0.01003512350000002) (0.010187219499999997) (0.010297368500000001) (0.010371115500000014) (0.0099702765) (0.010023139) (0.01044621400000001) (0.010324917500000003) (0.010806474999999996) (0.010148372500000016) (0.010382929999999999) (0.0103253955) (0.010329407999999998) (0.010317250500000014) (0.010311300500000009) (0.010593884499999998) (0.010399532000000003) (0.010367997500000004) (0.01040510850000001) (0.0104341835) (0.010351388000000003) (0.010436874499999999) (0.010864351500000008) (0.010416767499999993) (0.010182806000000003) (0.010352880999999994) (0.010339001499999986) (0.010402234999999996) (0.01020386999999999) (0.010155830000000005) (0.010352144500000007) (0.010469506500000003) (0.010359278500000013) (0.01040613600000001) (0.010640885000000003) (0.010568308999999998) (0.010396236500000017) (0.010518785500000002) (0.010698721500000008) (0.010186003999999999) (0.010084970999999998) (0.010115776999999992) (0.009896491999999993) (0.010036361500000007) (0.010215685999999988) (0.009918780000000002) (0.010305818000000008) (0.010100109999999995) (0.010142633499999998) (0.010107134000000004) (0.01010236199999999) (0.010361015000000001) (0.010245175999999995) (0.010346465) (0.010204488499999997) (0.01009922449999999) (0.010013960000000002) (0.010055167000000004) (0.009922748999999995) (0.009980200000000009) (0.010136148999999997) (0.010233762999999993) (0.01007305) (0.010279485000000005) (0.010125434500000002) (0.009894143000000008) (0.010095977000000006) (0.010030640999999993) (0.010053514999999999) (0.010078500500000004) (0.010357437499999997) (0.010342636500000002) (0.01056926300000001) (0.010560702499999991) (0.010197616000000007) (0.010261269000000003) (0.010421875999999997) (0.010653289499999996) (0.010536909499999997) (0.010266870500000011) (0.010374398500000007) (0.010348813999999998) (0.010513989000000001) (0.010496264500000005) (0.010556628499999998) (0.010372437000000012) (0.010300974000000018) (0.010347388499999999) (0.010419372999999996) (0.010420560499999995) (0.010315342000000005) (0.010203882999999997) (0.010592527500000004) (0.010638928000000006) (0.010314276499999997) (0.010374559499999991) (0.010562704499999992) (0.010427794000000004) (0.01033373500000001) (0.010462555999999998) (0.01058023800000002) (0.010295806000000005) (0.010467640999999986) (0.010098338499999998) (0.01006932549999999) (0.009942755999999997) (0.010052531000000003) (0.010318322000000005) (0.010021492499999993) (0.010095035000000002) (0.01010377450000001) (0.010188812500000019) (0.010363453499999994) (0.010142074500000015) (0.0101249115) (0.010359531499999991) (0.01012236750000002) (0.010318049499999996) (0.010221235500000009) (0.010009348500000001) (0.009870336999999993) (0.010298848) (0.009869686500000002) (0.010555375499999992) (0.010000149) (0.010094188000000004) (0.010057807000000002) (0.01013850149999998) (0.010247475000000006) (0.010210294500000008) (0.010400394499999993) (0.010142835500000003) (0.010127454999999994) (0.010295639999999995) (0.01025063050000001) (0.010514853000000005) (0.010281148500000004) (0.010302373500000003) (0.0103999325) (0.010764438500000015) (0.010312672500000009) (0.010212228500000003) (0.010452500000000003) (0.010387473999999994) (0.0105765835) (0.010497950999999991) (0.010547668999999996) (0.010589263000000015) (0.01069602950000001) (0.010660874500000014) (0.010413303000000013) (0.010414060000000003) (0.010467030500000002) (0.010329788999999992) (0.010184008999999994) (0.010407523500000002) (0.010336346999999996) (0.010265743499999994) (0.010299657000000004) (0.010529548000000014) (0.010498420499999994) (0.010472402500000005) (0.010408756000000005) (0.010384667000000014) (0.01040893599999998) (0.010604730000000007) (0.010469490999999997) (0.010370441999999994) (0.009905723500000005) (0.010212642999999993) (0.010105070500000007) (0.010256239500000014) (0.010029501999999996) (0.009984378000000002) (0.010008811999999992) (0.010208133499999994) (0.0102939705) (0.010033684499999987) (0.0100645875) (0.010052998500000007) (0.009922938499999992) (0.009915933499999988) (0.010151328999999987) (0.00981180899999999) (0.010017502499999997) (0.009883281000000008) (0.010221374500000005) (0.010051837500000008) (0.00991932949999999) (0.010043613000000007) (0.009975343999999997) (0.010162513999999997) (0.01001544750000001) (0.009963081999999998) (0.010084258999999998) (0.010219040500000012) (0.010179581000000007) (0.010137535000000003) (0.010018454999999996) (0.010349816999999997) (0.010620666) (0.010365844999999999) (0.010368221499999997) (0.010394101000000003) (0.010180271000000005) (0.01024304550000002) (0.010412441999999994) (0.010532954999999997) (0.011067271500000003) (0.010368527500000002) (0.01041525850000001) (0.010337952999999997) (0.010434194500000007) (0.010475284000000001) (0.010481072500000008) (0.010339536499999996) (0.01059740699999999) (0.010105423499999988) (0.0103064405) (0.010305676) (0.010558684500000012) (0.010370767000000017) (0.010210023500000012) (0.01053329850000001) (0.010567280999999998) (0.010491671999999994) (0.010459658999999996) (0.010525874500000018) (0.01063189199999999) (0.01064256299999998) (0.010437782000000007) (0.009880954999999997) (0.009918085499999993) (0.00986182549999999) (0.0099901285) (0.0099311495) (0.010331526499999993) (0.010125756500000013) (0.010041986999999988) (0.010270830500000008) (0.010194197500000002) (0.0104115355) (0.009919985999999992) (0.010116650000000005) (0.010101500500000013) (0.010260134000000004) (0.010141725000000004) (0.010089196999999994) (0.009936575000000003) (0.00987108149999999) (0.010117553000000001) (0.010418004000000008) (0.010082652500000011) (0.010229840500000004) (0.009891853000000006) (0.01006895599999999) (0.010026170000000001) (0.010158723500000008) (0.010508384499999995) (0.01009299150000001) (0.010375308) (0.01032593200000001) (0.01006704750000001) (0.010460888000000002) (0.010412161499999989) (0.010333649) (0.010473928000000007) (0.010559604999999986) (0.010489495500000001) (0.0103731995) (0.010374606000000008) (0.010587257500000002) (0.010472972000000011) (0.010419591000000006) (0.010451071499999992) (0.0105993905) (0.010741339000000003) (0.010453076499999991) (0.010541957000000005) (0.010291851500000004) (0.010462270499999995) (0.010484541499999986) (0.01026572449999999) (0.010216753999999995) (0.010177938499999997) (0.010233737000000007) (0.010304569999999985) (0.0104290135) (0.010421565000000008) (0.010554302000000002) (0.0105880515) (0.01070956699999999) (0.010905693499999994) (0.010668475499999996) (0.010329961999999984) (0.01013658399999999) (0.009999229999999998) (0.010137970499999996) (0.010010727999999983) (0.010020486999999995) (0.01000181750000001) (0.010006976) (0.010322278500000004) (0.010037991499999996) (0.010366694999999995) (0.01008104700000001) (0.010262035000000003) (0.010054030000000005) (0.010266228500000002) (0.010104121500000007) (0.010108996499999995) (0.009992911500000007) (0.0100215045) (0.009944006499999977) (0.010071465000000002) (0.010014057499999993) (0.009982399999999989) (0.010020238500000014) (0.010076503) (0.010558064499999992) (0.010457740499999993) (0.0101347185) (0.010093639000000001) (0.010033746999999996) (0.010229476999999987) (0.010315644999999998) (0.010097428499999991) (0.010389491499999987) (0.010245463499999996) (0.010544869499999984) (0.010454718000000002) (0.010529489500000003) (0.010511899500000005) (0.010165800000000016) (0.010459472999999983) (0.010541483500000004) (0.010502229000000002) (0.010568703000000013) (0.010375758999999998) (0.010665166500000003) (0.0107818155) (0.010356455999999986) (0.010433516000000004) (0.010418332000000002) (0.010630525000000002) (0.01029392500000001) (0.010303993500000011) (0.01024718849999999) (0.010279288499999997) (0.010469446000000021) (0.010523255000000009) (0.010457819000000007) (0.010425145999999996) (0.010309014500000005) (0.010513502500000008) (0.0104570135) (0.010649397000000005) (0.010384715000000003) (0.010570574) (0.010387865999999996) (0.010182197000000004) (0.010091962999999995) (0.010141358500000003) (0.010165706499999996) (0.010141497999999999) (0.010108021999999994) (0.01002489500000002) (0.010160361500000006) (0.010454806999999997) (0.010147037499999997) (0.010123788500000008) (0.010150727500000012) (0.010447272500000007) (0.010096829500000001) (0.010158901500000012) (0.010004450499999998) (0.010356269500000015) (0.010140637000000008) (0.010094366999999993) (0.010113114000000006) (0.010183955000000008) (0.010098980000000007) (0.010141505499999995) (0.0101702075) (0.010332703499999998) (0.010213762500000001) (0.010159095499999993) (0.010066891500000008) (0.010373841000000009) (0.010352523999999988) (0.01029113949999999) (0.0103881215) (0.010326623500000007) (0.01060723899999999) (0.010219371000000005) (0.010401896499999994) (0.010229499500000003) (0.010597147000000001) (0.010449591500000008) (0.01036584850000001) (0.010474260500000013) (0.010677132499999992) (0.010473337499999985) (0.010590752000000009) (0.010301988999999998) (0.010608852499999988) (0.010463827499999995) (0.010615471000000001) (0.010345960000000001) (0.010271352000000011) (0.010400624999999997) (0.010277174) (0.0105584695) (0.010393066500000006) (0.010513106500000008) (0.010625011500000003) (0.010540465499999999) (0.01050524550000001) (0.010697382000000005) (0.010649515499999998) (0.010537600999999994) (0.010346134500000007) (0.010543045000000015) (0.009983543999999997) (0.010073127000000001) (0.010195877000000006) (0.010264558499999993) (0.010138001500000007) (0.009977358999999991) (0.0100128575) (0.010231132500000018) (0.010035714500000001) (0.010442433000000015) (0.010282525500000014) (0.010443072999999997) (0.0101370665) (0.010212363000000002) (0.010203111) (0.010191275999999985) (0.01004055899999999) (0.01006610699999999) (0.0100721535) (0.009984883) (0.010171252500000005) (0.010133326499999998) (0.009991743499999997) (0.010292629500000011) (0.01022765049999999) (0.009972614000000005) (0.010120057500000001) (0.01024599150000001) (0.0103150605) (0.010074108499999998) (0.010078616999999998) (0.010072103999999998) (0.010279577499999998) (0.010440479500000002) (0.010186446500000002) (0.0105628465) (0.010428816499999993) (0.010186502000000014) (0.010534125499999991) (0.010839734500000003) (0.010449518000000005) (0.010396785500000005) (0.010509790000000005) (0.010321205) (0.01045679599999999) (0.010562361499999992) (0.010318770500000005) (0.010290413999999998) (0.010359128000000009) (0.010352207500000002) (0.010480398499999988) (0.010238517499999988) (0.010464720999999982) (0.010316587500000002) (0.010343295000000002) (0.010209595500000002) (0.010536488999999996) (0.010481322500000001) (0.010418811) (0.010741895500000015) (0.01052525550000001) (0.0107407115) (0.010495419500000006) (0.010865020500000017) (0.010227038999999993) (0.010030462500000004) (0.010285493999999992) (0.01015807199999999) (0.010290977999999992) (0.010206925500000005) (0.010132841000000004) (0.010132241499999986) (0.0102025065) (0.010270748499999996) (0.010326241) (0.010232768999999989) (0.01039978100000001) (0.010567483500000002) (0.009971433500000002) (0.01026598649999999) (0.010367847000000013) (0.010040435) (0.009964022500000003) (0.010016869499999997) (0.009958507500000019) (0.009915121499999999) (0.010243770499999999) (0.009997940999999982) (0.0101597665) (0.010136846500000005) (0.010066105500000005) (0.010144096500000005) (0.01039863349999999) (0.010194783999999998) (0.010214882000000008) (0.010143794499999997) (0.01045956599999999) (0.01041992500000001) (0.010417484500000004) (0.010475021999999987) (0.010275860000000012) (0.010466738500000003) (0.011040288500000009) (0.01051458050000001) (0.01053717300000001) (0.010555881500000003) (0.010583237999999995) (0.010520374499999999) (0.010338441000000004) (0.010227091000000008) (0.010317796500000004) (0.010294287) (0.010398083000000002) (0.010168584999999994) (0.01026988999999999) (0.01048333500000001) (0.010416582999999993) (0.010440795500000002) (0.010261983000000002) (0.010345694500000002) (0.010332862500000012) (0.0105618715) (0.010303499999999993) (0.010427701500000011) (0.010497009500000001) (0.010398418000000006) (0.010518352999999994) (0.010795539000000007) (0.010132461500000009) (0.010130304500000006) (0.010009544500000009) (0.0101138105) (0.010091267999999987) (0.010010004000000017) (0.010237523999999998) (0.01023017250000001) (0.010226237) (0.010097875499999992) (0.010379415500000003) (0.0101918795) (0.010208265999999994) (0.010284529500000014) (0.009948640500000008) (0.010048278000000008) (0.010037460000000012) (0.009960336000000014) (0.010176940500000009) (0.010238305499999989) (0.010133232499999992) (0.010529842999999997) (0.00992403) (0.00985680650000001) (0.010510419000000007) (0.010186167999999995) (0.010282484999999994) (0.010183650500000002) (0.010321472499999998) (0.010167901000000007) (0.010086035000000007) (0.010069771000000005) (0.0103139015) (0.010354598000000007) (0.010493755499999993) (0.010418003999999995) (0.010233429000000002) (0.010693652500000012) (0.0102881945) (0.010549099499999992) (0.010502658999999998) (0.010375185499999995) (0.010489805000000005) (0.010657324999999995) (0.010398003000000003) (0.010635308500000024) (0.010560475) (0.010384779999999996) (0.010449886500000005) (0.010706004499999991) (0.010521343000000016) (0.010349960499999991) (0.010382296500000013) (0.010225919) (0.01034193450000001) (0.010298106000000015) (0.010529984499999992) (0.010654268500000008) (0.010474689999999995) (0.010859872999999992) (0.010786761999999991) (0.010736820000000008) (0.010519992999999991) (0.010649331000000012) (0.010061532000000012) (0.010207800000000003) (0.01007391349999999) (0.010102962499999993) (0.010163740000000004) (0.010003434500000005) (0.010231519999999994) (0.010234622999999998) (0.010188773499999998) (0.010127752500000003) (0.010226667000000009) (0.010207835499999998) (0.010234397000000006) (0.010238452499999995) (0.010353302999999994) (0.010059133999999997) (0.010489624000000003) (0.010515414) (0.009981149999999994) (0.0100763465) (0.010054217000000004) (0.010126344499999995) (0.010088985499999994) (0.01015862549999999) (0.010203891000000007) (0.010240791499999999) (0.010329751999999998) (0.010464710000000002) (0.010242740500000014) (0.010312986999999996) (0.010326285500000004) (0.01014704000000001) (0.010506196499999995) (0.010207305) (0.010321173499999989) (0.011020949999999988) (0.010320961999999989) (0.010422871) (0.010437078999999988) (0.010272652499999993) (0.010430125999999998) (0.010616047999999989) (0.010479203999999992) (0.010288059500000002) (0.010652517499999986) (0.010633726999999996) (0.010595248000000015) (0.010556769000000008) (0.010408780500000006) (0.010465126000000005) (0.010574799499999996) (0.010433131500000012) (0.01049264350000001) (0.010711666500000008) (0.01036902499999999) (0.01025724850000001) (0.010916468499999998) (0.01082994100000001) (0.010679701500000013) (0.011041438) (0.010595928000000018) (0.010589176999999991) (0.010660014499999995) (0.010670556000000012) (0.010256490000000007) (0.009983873000000004) (0.009981794000000002) (0.0099499485) (0.010092784500000007) (0.009950944500000003) (0.010101867) (0.009999415499999997) (0.009991753000000006) (0.010026548499999996) (0.010241204500000003) (0.010099610499999995) (0.01001494700000001) (0.010268801500000008) (0.010408816000000001) (0.010236777499999988) (0.01018042999999999) (0.009991157) (0.010042304500000002) (0.0100716525) (0.010035966999999993) (0.0100295715) (0.009958747500000004) (0.009957476500000007) (0.010180638499999992) (0.010171727999999991) (0.010207637000000006) (0.010096430500000003) (0.010117460500000008) (0.010226880000000008) (0.010204459499999999) (0.010225076999999999) (0.010405127499999986) (0.010259706000000007) (0.010194094) (0.010381540999999994) (0.010399045499999995) (0.010250629000000011) (0.010165246500000003) (0.010380450999999999) (0.010615015999999991) (0.010605118499999996) (0.010562799499999997) (0.010271108000000001) (0.010301454000000002) (0.010727152000000018) (0.01060998349999999) (0.010434537000000008) (0.010352326999999995) (0.010506144999999995) (0.010431882500000003) (0.010470282000000011) (0.010622777) (0.010210537499999991) (0.010246313999999992) (0.010397089500000012) (0.010282003499999998) (0.010435641499999995) (0.010554017999999998) (0.010350643500000006) (0.010504741999999997) (0.010535363000000006) (0.010800549499999992) (0.010385874000000017) (0.009886782999999996) (0.010012045000000011) (0.010492693499999997) (0.009862683999999997) (0.010136067499999984) (0.010057049999999998) (0.00996933600000001) (0.010071177999999986) (0.010229247999999996) (0.010051427000000016) (0.009973957999999991) (0.010101891500000015) (0.010152538000000003) (0.01028507150000002) (0.009964848499999998) (0.010261545999999996) (0.010271921000000017) (0.010070632999999996) (0.010143435499999992) (0.010033672000000007) (0.01016338) (0.009994655500000005) (0.010002614999999992) (0.009942796500000003) (0.010165783000000012) (0.010240860500000004) (0.010297182500000016) (0.010374367499999995) (0.010124558500000005) (0.010026908500000015) (0.010071697500000004) (0.0101446865) (0.010324596499999991) (0.010252267500000009) (0.010397973500000005) (0.010453799) (0.01032379500000001) (0.010492658000000016) (0.010380557999999998) (0.01015460800000001) (0.0104540345) (0.010286412999999994) (0.010492443500000004) (0.010378544000000017) (0.01044994099999999) (0.010303311499999995) (0.010671975500000014) (0.010395649000000007) (0.010322104000000012) (0.010281210000000013) (0.010285563999999997) (0.010429767500000006) (0.010136999500000007) (0.010273287000000006) (0.010494012999999996) (0.010418256) (0.010657743499999997) (0.010775164000000004) (0.010518901000000025) (0.010417380000000004) (0.010528956999999992) (0.010477096000000005) (0.01035673999999999) (0.010644801499999995) (0.009994811999999992) (0.010243424000000001) (0.010031222000000006) (0.010263458500000003) (0.010013516999999986) (0.0099328375) (0.010027519499999998) (0.010046631000000014) (0.009943900999999991) (0.010566210999999992) (0.01005265150000001) (0.010110432000000003) (0.010298441500000005) (0.010114330500000004) (0.010291891499999997) (0.010432331500000003) (0.010147059999999986) (0.009858640000000016) (0.010044403499999993) (0.009979072000000005) (0.010024050999999992) (0.009999943499999997) (0.010005957499999996) (0.010200235000000002) (0.010306983499999992) (0.010054063500000002) (0.010002440000000015) (0.009992952499999999) (0.01024299400000002) (0.010374661500000007) (0.010075611999999998) (0.01017881150000001) (0.01055912349999999) (0.010291992500000013) (0.010292840499999997) (0.010555756999999999) (0.010306058999999992) (0.010312633500000001) (0.01037701549999999) (0.01031970800000001) (0.010430553499999995) (0.010463918500000002) (0.010446120500000017) (0.010391887500000002) (0.0104478935) (0.01042813599999999) (0.010668721500000006) (0.010405166500000007) (0.010684070500000004) (0.010784341000000003) (0.01032825950000002) (0.010496304500000012) (0.010521441000000006) (0.010321068000000003) (0.010198094000000005) (0.010367815500000002) (0.01061840650000001) (0.010514532500000007) (0.010255328500000008) (0.01050893600000001) (0.01069369349999999) (0.010557985500000006) (0.01053040999999999) (0.010323390500000001) (0.010118879500000011) (0.010048080000000001) (0.0101567335) (0.010297150000000005) (0.010026788500000008) (0.010043369999999982) (0.010173335000000006) (0.010163584000000003) (0.010166223500000016) (0.010107771999999987) (0.010364922000000013) (0.010012486000000015) (0.010153194500000004) (0.010193295000000005) (0.010132181000000004) (0.010122088500000015) (0.010251128999999998) (0.010001839499999998) (0.009952419000000018) (0.010149537) (0.009958107000000008) (0.009979269499999999) (0.01007011649999999) (0.010028222000000003) (0.010335879999999992) (0.01024235300000001) (0.010319340999999996) (0.010352949999999986) (0.0103377615) (0.010270805499999994) (0.010298345) (0.010237161000000009) (0.0103778395) (0.010342966499999995) (0.010433137500000023) (0.010198756000000003) (0.010317571500000011) (0.010402902000000006) (0.010253524) (0.010358272000000002) (0.010348796499999993) (0.010347691999999992) (0.010550581999999989) (0.010399603000000007) (0.010412574499999994) (0.010548145499999995) (0.010623703000000012) (0.010431744500000006) (0.010392231000000002) (0.010350311000000001) (0.01039018500000001) (0.010404988000000004) (0.010312907999999996) (0.010304357000000014) (0.01033379000000001) (0.010402270500000005) (0.010743155500000004) (0.010448194999999993) (0.010688955500000014) (0.010617578500000016) (0.010632764000000003) (0.01059025750000002) (0.010724660999999996) (0.010457937499999986) (0.010035505) (0.009998556500000005) (0.010209865500000012) (0.009908441500000004) (0.009941949000000005) (0.009909308000000006) (0.010087904499999995) (0.010256088999999996) (0.0102086485) (0.009952687000000002) (0.010048826499999997) (0.010035144999999995) (0.010064543000000009) (0.010051107000000004) (0.010181207000000012) (0.00992111850000002) (0.010037840999999992) (0.009866253999999977) (0.0101189545) (0.009846495499999997) (0.010363492499999988) (0.010256269499999998) (0.010050568999999995) (0.009972921999999995) (0.010035618999999996) (0.010050354499999997) (0.010056501499999995) (0.009925530000000002) (0.010178297499999989) (0.010116346999999998) (0.010339111499999998) (0.010398366999999992) (0.010553089499999987) (0.010438805500000009) (0.01022815249999999) (0.010268337499999988) (0.010513498499999996) (0.01036728599999999) (0.010261198999999985) (0.010436569500000006) (0.010578012999999997) (0.010722829500000003) (0.010513555500000007) (0.010475205500000001) (0.010514607999999995) (0.010322891500000014) (0.01046676449999999) (0.010407943999999988) (0.010281323999999994) (0.010236757000000013) (0.010397376) (0.010332484000000003) (0.010252511499999992) (0.010481881499999998) (0.010509880000000013) (0.0102930735) (0.010322724499999991) (0.010562207000000004) (0.010352991500000006) (0.010308544500000003) (0.010523291500000004) (0.01033871950000001) (0.010596994499999984) (0.010391857000000004) (0.010033885500000006) (0.009918423999999995) (0.010003402000000008) (0.010231483) (0.009908939499999991) (0.010015630999999997) (0.009956521999999995) (0.009959714500000008) (0.010084626499999999) (0.010230015999999995) (0.010110528999999993) (0.0101826265) (0.01031261850000001) (0.010283503) (0.010219569499999998) (0.010149753000000011) (0.009875247500000003) (0.010182113499999992) (0.010398733500000007) (0.00992246500000002) (0.009839935000000008) (0.009957693000000004) (0.010092529500000003) (0.009980349500000013) (0.01156681150000001) (0.010244335999999993) (0.010078163499999987) (0.010190737000000005) (0.010203616499999985) (0.010212528000000012) (0.010349548999999986) (0.010033266999999998) (0.010231244500000014) (0.010174845500000002) (0.010295971000000015) (0.010361917999999998) (0.010214699500000007) (0.01031343350000001) (0.010553903500000017) (0.010239298999999993) (0.010545612499999996) (0.010425684500000004) (0.010251138000000007) (0.010362123) (0.010432851499999993) (0.010702075500000005) (0.010423057) (0.010371868500000006) (0.010267326999999993) (0.010265851499999992) (0.010229695499999997) (0.010432854500000005) (0.0104447035) (0.010579999000000007) (0.010293021500000013) (0.01023242349999999) (0.010397325500000013) (0.010633256500000007) (0.010553576999999995) (0.010322946) (0.010447170000000006) (0.010350942500000002) (0.010285803499999996) (0.010305738000000009) (0.009984431999999988) (0.010090076500000003) (0.010036367500000004) (0.010038500999999991) (0.010058022500000013) (0.009943515) (0.009911627500000006) (0.010027260499999996) (0.010271393500000003) (0.010164237999999992) (0.010254838499999988) (0.010062563999999996) (0.0100082425) (0.009974401499999994) (0.010015387999999986) (0.010114665499999995) (0.009819593500000001) (0.010082950000000007) (0.010040872000000006) (0.010037328499999998) (0.009843883500000011) (0.010141542999999989) (0.009958427000000006) (0.010182855000000005) (0.010169089500000006) (0.010320771999999992) (0.00999672) (0.010166929500000005) (0.009966097000000007) (0.010129362500000003) (0.010160186500000001) (0.010304186500000007) (0.010648663000000003) (0.010629110499999997) (0.010392033499999995) (0.010324966000000005) (0.010485210500000022) (0.010324048500000002) (0.010308641999999993) (0.010403655000000012) (0.010575590999999995) (0.010320770000000007) (0.010266128) (0.0103771805) (0.010550390000000007) (0.010598127999999998) (0.010370826) (0.010670310999999988) (0.0103001925) (0.010293123499999987) (0.010306758) (0.010273924500000003) (0.010248993500000012) (0.010448354500000007) (0.010258801999999997) (0.010423075000000004) (0.010420528999999998) (0.010346849499999991) (0.010741930499999996) (0.010342947500000005) (0.010234501999999993) (0.010389968000000013) (0.010382995000000006) (0.010314741500000002) (0.009973621000000002) (0.010037281500000009) (0.010158969000000004) (0.010038249499999999) (0.010056875499999993) (0.0100568615) (0.010012675999999984) (0.009966718999999999) (0.010445645000000003) (0.010039807999999983) (0.010095580500000007) (0.0102080415) (0.010218778999999997) (0.010022467500000007) (0.010158275999999994) (0.010232275000000013) (0.010115557999999997) (0.010156950499999998) (0.01020120549999999) (0.010259574999999993) (0.009952005999999985) (0.010087708999999986) (0.010338610999999998) (0.009972161999999993) (0.010214869000000001) (0.01011876099999999) (0.010335335500000015) (0.0101421025) (0.010346263499999994) (0.010027797500000005) (0.009993117999999995) (0.010010236999999991) (0.010460417999999999) (0.010307180500000013) (0.010336810000000002) (0.010245420000000005) (0.01030565) (0.010345119) (0.010318027000000007) (0.01045633550000001) (0.010442604500000008) (0.01030671200000001) (0.010356673999999996) (0.010773708500000007) (0.01051637350000001) (0.010797626000000005) (0.01027558549999999) (0.010641739500000011) (0.010366726999999992) (0.010342037499999998) (0.01028955799999999) (0.010387826000000017) (0.010452655499999991) (0.01025620549999999) (0.0105528015) (0.010328671500000011) (0.010469083000000004) (0.010527526499999995) (0.010499765000000008) (0.010500990500000015) (0.010733277499999985) (0.010413457500000015) (0.010618169499999983) (0.010361452999999979) (0.010096982000000004) (0.010023388499999994) (0.010069533000000006) (0.009916679999999997) (0.010076796499999999) (0.009993517499999993) (0.010045817999999998) (0.010139433500000003) (0.010012475500000007) (0.010102458500000008) (0.0099588585) (0.010302768000000004) (0.010109641500000002) (0.010265200500000016) (0.009983854000000014) (0.010059737999999999) (0.010273027500000004) (0.009948960999999992) (0.01015290399999999) (0.010081295500000004) (0.010186408000000008) (0.009911142499999998) (0.01000055000000001) (0.010164243500000003) (0.010207849000000005) (0.009937455499999998) (0.009976217999999995) (0.010405703500000016) (0.009939337499999992) (0.009976013000000006) (0.010254670500000007) (0.010104928499999999) (0.010164219500000016) (0.010346656999999995) (0.010386708500000008) (0.0102647805) (0.010372826500000015) (0.01014841150000001) (0.010322830000000005) (0.01045842100000001) (0.010327554000000003) (0.010381100000000004) (0.010457072000000012) (0.01028599650000002) (0.010342096500000009) (0.010575737000000016) (0.010455520499999996) (0.010537259499999993) (0.01030428400000001) (0.010512206499999996) (0.010240889500000003) (0.010252488000000004) (0.0103797355) (0.010486507000000006) (0.010357823000000002) (0.010380525000000002) (0.01044368000000001) (0.010637558499999991) (0.010417192500000005) (0.010397455) (0.010688336999999992) (0.010329715000000003) (0.010219076500000007) (0.011055776500000003) (0.010110834499999999) (0.010138424000000007) (0.010173239000000014) (0.010047914000000005) (0.01015886199999999) (0.01005626300000001) (0.010141047500000014) (0.01006529049999999) (0.010029390499999999) (0.010266455999999993) (0.010080746000000002) (0.010300745000000014) (0.009989908500000005) (0.010022739499999989) (0.010114334500000002) (0.010160697499999996) (0.010047681499999989) (0.010130364000000003) (0.010020763500000002) (0.010327543999999994) (0.010244597499999994) (0.0100282535) (0.009912337499999993) (0.010302122499999997) (0.010375593000000002) (0.01007332200000001) (0.0101804125) (0.010098838000000013) (0.010160046500000006) (0.0103748855) (0.010332022999999996) (0.0102304275) (0.010213111500000024) (0.010223262999999996) (0.010366454499999997) (0.010185118000000007) (0.010455408500000013) (0.010282893500000001) (0.010357485) (0.01052762900000001) (0.010364659499999998) (0.010322216999999995) (0.010533875999999998) (0.010374396999999994) (0.010258125000000007) (0.010660437999999994) (0.010450128500000017) (0.010355854500000011) (0.010427162000000004) (0.010394310500000004) (0.01030238800000001) (0.010234147999999998) (0.0103425335) (0.010309528500000012) (0.01038206600000001) (0.010587771999999995) (0.01048139449999999) (0.010562582000000001) (0.010852426999999998) (0.01052240900000001) (0.010632726499999995) (0.010474726500000003) (0.010410552500000017) (0.010258845500000002) (0.010119683500000018) (0.0099497105) (0.009877989500000017) (0.009942940499999997) (0.010164221000000001) (0.009932715000000009) (0.010185896) (0.010012087499999989) (0.0100945125) (0.010157192500000009) (0.010020814000000003) (0.010198215999999996) (0.010098839499999998) (0.009994655500000005) (0.009960824999999993) (0.009896077000000003) (0.009899022000000007) (0.010111438500000014) (0.009891070499999988) (0.010006338500000003) (0.010019828499999994) (0.009918278000000003) (0.009984176499999997) (0.010120695499999999) (0.010304739499999993) (0.009952586999999999) (0.010094982000000002) (0.01006153600000001) (0.010064257000000007) (0.010129568500000005) (0.010353550999999989) (0.010161224499999996) (0.010471856500000001) (0.010425611000000015) (0.010378246500000007) (0.01045326499999999) (0.010452791499999989) (0.010368025000000003) (0.010687198999999994) (0.010284233500000003) (0.010558448999999998) (0.010580734499999994) (0.010486593500000002) (0.010694904500000005) (0.010974076999999999) (0.010361710000000024) (0.010492972500000003) (0.010544427000000009) (0.010368792500000001) (0.010684354000000007) (0.010411746000000013) (0.0104165695) (0.01030026349999999) (0.010280609499999996) (0.010522035999999985) (0.010209097500000014) (0.0106746635) (0.010678360500000011) (0.010954828) (0.010405926499999996) (0.010705479500000004) (0.0104072085) (0.010568754500000013) (0.010435927999999997) (0.010061220499999995) (0.009998138500000003) (0.010184397999999997) (0.010007561499999998) (0.010156617499999993) (0.01031636200000001) (0.010004006499999996) (0.01009153900000001) (0.010233347000000004) (0.0105998905) (0.010566488499999999) (0.010221627999999996) (0.010344207000000008) (0.009954027500000018) (0.01031783750000001) (0.010134873000000003) (0.010013861999999998) (0.010181162499999993) (0.009875851000000005) (0.010043130999999997) (0.010134861499999995) (0.010352833999999991) (0.010199172999999992) (0.010025111500000003) (0.01031319650000001) (0.0103966095) (0.010183210499999998) (0.010125704500000013) (0.010276841000000009) (0.010272346000000002) (0.01010746899999998) (0.010063776999999996) (0.010424685000000017) (0.010417796000000007) (0.010496866500000007) (0.010339595000000007) (0.010229178999999991) (0.010273666999999986) (0.010344334999999996) (0.010419173500000004) (0.010471667000000004) (0.010779667000000007) (0.010354553000000016) (0.010387764000000008) (0.010956701499999999) (0.010520878499999997) (0.010576614999999998) (0.010343723499999999) (0.010495475000000004) (0.010666372000000007) (0.010509021500000007) (0.010391928499999994) (0.010587897499999999) (0.010414317999999992) (0.010341520500000007) (0.010743771) (0.010538736999999992) (0.010587730500000003) (0.01045460749999999) (0.010411712500000003) (0.010461642500000007) (0.010749711499999995) (0.010701008999999997) (0.010599764000000012) (0.01024071800000001) (0.009863188500000009) (0.010049091999999996) (0.010340481999999998) (0.010304859999999999) (0.00989377000000001) (0.010410362500000006) (0.009907986499999993) (0.010226866000000015) (0.010280116499999992) (0.010063846500000001) (0.010358267000000004) (0.010124084999999991) (0.010005569999999991) (0.01006557700000002) (0.010177410499999998) (0.010534448500000015) (0.009991999500000015) (0.009913188000000003) (0.0099502395) (0.010339072500000004) (0.01004896000000001) (0.01024243100000001) (0.009981112000000014) (0.010097021000000012) (0.010334479499999993) (0.01018978949999999) (0.010320248000000004) (0.010312904500000011) (0.010302545499999996) (0.0105264895) (0.009961411000000003) (0.010296116000000008) (0.01056272250000001) (0.010324183) (0.010699421) (0.010379915500000003) (0.010300693999999985) (0.010388203499999984) (0.010422955500000011) (0.010255036499999995) (0.010421547000000003) (0.010424367500000017) (0.010335632499999997) (0.010367973499999988) (0.010459246999999991) (0.01059678850000001) (0.010438337499999992) (0.01029968199999999) (0.010407449500000013) (0.010213974) (0.010336528999999997) (0.010227425499999998) (0.010459254500000001) (0.010409620999999994) (0.010430796000000006) (0.010248502499999992) (0.010591645499999996) (0.010636791000000007) (0.010364575000000015) (0.010656616999999993) (0.010606906499999999) (0.010392712499999998) (0.010729592499999996) (0.009960247500000005) (0.009911701500000009) (0.010206267000000005) (0.0102790465) (0.009964465999999991) (0.010041728499999986) (0.009946506499999994) (0.010201287999999989) (0.010409492999999992) (0.010065711500000005) (0.010047463000000006) (0.010174867000000004) (0.010252697499999991) (0.010176179500000007) (0.010127614000000007) (0.010081586000000003) (0.010437001000000001) (0.010153661999999994) (0.009971981000000005) (0.01015094300000001) (0.010075876499999983) (0.00996067049999999) (0.010018272999999994) (0.009945946999999997) (0.010064088499999999) (0.0104292255) (0.01040688049999998) (0.010318080499999993) (0.010329049500000007) (0.010214495000000004) (0.010330259499999994) (0.010173387500000006) (0.010433125500000001) (0.010469664500000003) (0.010345938999999985) (0.010286064999999997) (0.010416784499999998) (0.010316579000000006) (0.010285614999999998) (0.010576540999999995) (0.01041781650000001) (0.010411256999999993) (0.01072052100000001) (0.010606195500000012) (0.010405461500000004) (0.010511591999999986) (0.010925050000000006) (0.010509314000000006) (0.010325938999999992) (0.010301881999999998) (0.010264949499999995) (0.0102834225) (0.010212720500000008) (0.01034788049999999) (0.010412069499999996) (0.010214230500000004) (0.010287493500000008) (0.010659255499999992) (0.010661935999999997) (0.010652311000000012) (0.010869497000000006) (0.010395252999999993) (0.010418498499999998) (0.01040941849999999) (0.009939510499999998) (0.010105361999999993) (0.010077185500000016) (0.01045278799999999) (0.0100888445) (0.01023109250000001) (0.010156972) (0.010209250500000003) (0.010070795500000007) (0.010166428500000005) (0.010189333499999995) (0.010312146499999994) (0.010054042999999999) (0.010238727500000003) (0.010176756999999995) (0.01007685300000001) (0.010202937499999995) (0.010104138999999998) (0.009969383999999998) (0.010025891999999995) (0.010039777) (0.010029448999999996) (0.010027345500000007) (0.009959113000000006) (0.010420869) (0.010281428000000009) (0.010184693500000008) (0.010277876500000005) (0.010188143499999983) (0.010186528999999986) (0.01005473400000001) (0.01023056650000001) (0.010490013500000006) (0.010446458000000006) (0.010467826000000013) (0.010333765499999994) (0.010411205500000006) (0.010345806999999999) (0.010251231999999999) (0.010336979499999996) (0.010461613500000008) (0.010287335999999994) (0.010322360500000002) (0.010537071999999995) (0.010652644500000003) (0.010646530000000001) (0.01044212700000001) (0.010662346499999989) (0.010244665500000014) (0.010200243499999997) (0.010424016999999994) (0.010396045999999992) (0.0102250215) (0.010365104) (0.010290688000000006) (0.010742550500000003) (0.010750679499999999) (0.010445566999999989) (0.010619849499999987) (0.010735565499999988) (0.010509123499999995) (0.010850526500000013) (0.010651044500000012) (0.010483007499999988) (0.010187856000000009) (0.009939263500000003) (0.010082103499999995) (0.010053867999999994) (0.01026982650000001) (0.010004228000000004) (0.009969041499999998) (0.010004268499999996) (0.010085300500000005) (0.010450409499999994) (0.009931989000000002) (0.010255295499999997) (0.010240501500000013) (0.010215269000000013) (0.010243172999999994) (0.010134726499999996) (0.010251242500000007) (0.010331975500000007) (0.010160460499999996) (0.010078550000000006) (0.009924852999999997) (0.010344154999999994) (0.010368747499999997) (0.009950108500000013) (0.010375848500000007) (0.010073177000000003) (0.010366756500000004) (0.010330216500000003) (0.010355186500000002) (0.010170511999999993) (0.010353662999999999) (0.010266100500000014) (0.010446370999999996) (0.01023495449999999) (0.010377307500000002) (0.010209013000000003) (0.010447986000000006) (0.010314329499999997) (0.010221199) (0.010154735999999984) (0.010574047499999989) (0.010576290000000002) (0.010452915499999993) (0.010516832500000003) (0.010405306000000003) (0.010510899500000004) (0.0107541585) (0.010522188500000001) (0.010278652500000013) (0.010339691499999998) (0.010320348499999993) (0.010418640500000007) (0.010258828000000011) (0.010442955000000004) (0.010558313) (0.010604389000000006) (0.010832783000000012) (0.010755728000000006) (0.010397788500000005) (0.01081355299999999) (0.010535739500000002) (0.010578320500000002) (0.010423416500000018) (0.010373119000000014) (0.010093554500000004) (0.009984627499999996) (0.010004896999999985) (0.010133899999999987) (0.009867675500000006) (0.010165068) (0.0099229495) (0.010041899999999992) (0.010112291500000009) (0.009980309999999992) (0.010042227999999986) (0.010440331499999997) (0.010008789500000004) (0.010262138000000004) (0.010113984499999992) (0.010067421500000007) (0.010077712999999988) (0.01015387600000002) (0.009883257499999992) (0.00996661950000001) (0.010003390500000015) (0.009978479999999998) (0.010125190499999992) (0.010147328499999997) (0.01005252949999999) (0.009995443999999992) (0.010086453000000009) (0.010214949000000001) (0.010181806000000002) (0.010291983000000005) (0.0101217225) (0.010239835999999988) (0.010333286999999983) (0.010449459499999994) (0.010326910500000008) (0.010374058999999991) (0.01028077949999999) (0.010244374499999986) (0.010295356499999991) (0.0102825525) (0.010411595499999995) (0.010357152500000008) (0.010478799999999996) (0.010444987999999988) (0.010386068500000012) (0.010384479500000002) (0.010836835000000003) (0.010327293000000001) (0.010252584500000009) (0.0103047805) (0.010500728499999987) (0.010314204999999993) (0.010285531499999986) (0.010443874500000006) (0.010355499500000004) (0.010521956500000013) (0.01052768350000001) (0.010700888999999991) (0.010529363500000014) (0.010464463999999993) (0.01066853999999999) (0.01035702949999999) (0.010531773000000008) (0.010665866499999982) (0.009958322500000005) (0.010091020500000006) (0.009865635500000011) (0.010074940500000018) (0.010066761000000007) (0.010259818000000004) (0.010127631999999998) (0.010004130999999986) (0.010237692000000007) (0.010175536500000013) (0.010122054000000005) (0.010236045999999999) (0.010125449499999994) (0.010230009499999998) (0.010300389499999993) (0.010280601000000014) (0.010052400000000003) (0.009886612000000003) (0.01036957749999999) (0.010207135499999992) (0.010103023000000003) (0.0101568675) (0.010202008500000012) (0.009995944499999992) (0.010066413499999996) (0.010428199000000013) (0.010441948000000006) (0.010000850999999991) (0.010457585500000005) (0.010087537500000007) (0.009995111000000001) (0.010290073999999982) (0.010236002500000008) (0.010244097999999993) (0.010313188499999987) (0.010234027500000006) (0.010224907499999991) (0.01040158649999999) (0.010522296) (0.010312768000000014) (0.010411716000000001) (0.010485237500000008) (0.010423860500000007) (0.01025412249999999) (0.010519921500000001) (0.010333876999999991) (0.010304970499999996) (0.010409956999999984) (0.01048776350000001) (0.010449536999999981) (0.010075911500000007) (0.010360598999999998) (0.010348134999999994) (0.010553604000000008) (0.0103578265) (0.010347716499999993) (0.010848018000000015) (0.01053153300000001) (0.010496902000000002) (0.010607237500000005) (0.010789876500000004) (0.010557502999999982) (0.010395551000000003) (0.010414879000000002) (0.01028121500000001) (0.010040986000000002) (0.010123190500000018) (0.010060813000000016) (0.009871483499999986) (0.010122227499999983) (0.010373069499999998) (0.010031256000000002) (0.010604517000000008) (0.010256688000000014) (0.010229207500000004) (0.010231797) (0.010193678999999997) (0.010291344000000008) (0.010151663500000019) (0.010104248999999996) (0.010117646999999994) (0.010051439999999995) (0.009966475000000002) (0.010079145000000012) (0.009995498500000005) (0.010121678499999995) (0.010023495000000007) (0.010057564500000005) (0.010183725500000004) (0.010668209000000012) (0.010254876499999996) (0.0104652405) (0.010209788499999997) (0.010313168999999997) (0.0100990205) (0.010264593000000002) (0.010315274) (0.010223982000000006) (0.010316764999999992) (0.010583636500000007) (0.01027649750000001) (0.010320745499999992) (0.010289338499999995) (0.010425281000000008) (0.010741910500000007) (0.010664481500000003) (0.010350783000000002) (0.010425934499999984) (0.010450981000000012) (0.010487980500000008) (0.010543984000000006) (0.010577177000000007) (0.010451898500000001) (0.010295342999999998) (0.010318365499999996) (0.010425309499999993) (0.010311227000000006) (0.010781616000000008) (0.010547730500000005) (0.010259154999999992) (0.0107540525) (0.010540723999999987) (0.0103596985) (0.010667881500000004) (0.010476463499999991) (0.010674782500000007) (0.010476153000000002) (0.01045460749999999) (0.010167638000000007) (0.010102245999999995) (0.0099875185) (0.00997465950000001) (0.010015217999999992) (0.009982458) (0.010040249000000001) (0.009988025499999983) (0.010218035) (0.010172661) (0.010159421000000002) (0.010060162499999997) (0.010075586000000011) (0.01016893349999999) (0.010337967500000003) (0.010241011500000008) (0.010277676500000013) (0.010311559999999997) (0.010018545000000004) (0.009950483499999996) (0.010023921499999991) (0.009980437500000008) (0.01009734499999998) (0.009929596000000013) (0.010230202499999994) (0.010175365500000005) (0.010206602499999995) (0.0101812015) (0.01016371399999999) (0.01015176949999999) (0.010353235999999988) (0.010234031000000005) (0.010366062499999995) (0.010342408999999997) (0.010533049000000003) (0.010511586500000003) (0.010270206500000004) (0.010407281500000004) (0.010224261000000012) (0.010273300999999999) (0.010543624000000001) (0.010549797999999985) (0.010466054000000002) (0.010631817000000002) (0.010509242000000016) (0.010473645000000004) (0.010669147000000004) (0.010519513999999994) (0.010481069999999995) (0.010231539499999998) (0.010313095999999994) (0.010561282499999991) (0.010359386999999998) (0.0103595945) (0.01047034949999999) (0.010149143999999999) (0.010774383999999998) (0.010447070500000002) (0.010812375999999999) (0.010628868000000014) (0.010744478500000001) (0.01061886450000002) (0.010559146499999991) (0.01041893050000002) (0.010069085000000005) (0.010168293500000009) (0.009977144999999993) (0.010113235499999998) (0.009925193999999998) (0.010163298999999987) (0.00992938900000001) (0.010189198499999996) (0.010143439000000004) (0.01030427049999999) (0.00992198250000001) (0.010518313000000001) (0.010024338500000007) (0.010216011999999997) (0.009979231499999991) (0.010010208999999992) (0.010042323999999991) (0.010007096500000007) (0.009846337999999996) (0.009799124000000006) (0.009961652500000001) (0.010124293500000006) (0.009881295999999998) (0.009875592500000002) (0.010227268499999997) (0.010151187500000006) (0.010331983000000003) (0.010303029000000019) (0.010142250500000005) (0.010020455999999983) (0.010358042000000012) (0.009995414500000008) (0.0104559345) (0.010145259000000004) (0.010288985) (0.010294800500000006) (0.010360059500000005) (0.010094567499999998) (0.010597554000000009) (0.010476341000000014) (0.010540396500000021) (0.01060308) (0.01040150799999999) (0.010519074999999989) (0.0104366855) (0.010498545000000012) (0.010490763) (0.010504592499999993) (0.010189255000000008) (0.010506700500000007) (0.010523269500000001) (0.010194670499999989) (0.010418458999999991) (0.010241244999999996) (0.010272827999999998) (0.010336809999999988) (0.010328815500000005) (0.010306427000000007) (0.010399759499999994) (0.010546779500000006) (0.010774156499999993) (0.010504009500000008) (0.010745651999999994) (0.010387169500000001) (0.010025458999999987) (0.009860209499999995) (0.010035239499999987) (0.010067849000000018) (0.010057963500000017) (0.010183998) (0.010240297499999995) (0.010009117499999998) (0.010031988499999991) (0.01023088200000001) (0.009998491999999998) (0.010659822) (0.009962304499999991) (0.010105673999999995) (0.010524278499999984) (0.010117675000000007) (0.00996242700000001) (0.010158506000000012) (0.010007634000000001) (0.00988209100000001) (0.009869265000000002) (0.010175683000000005) (0.010179411999999999) (0.010017139000000008) (0.009953465999999994) (0.010469193000000002) (0.010192824000000003) (0.010155759999999986) (0.010227090499999994) (0.010165633500000007) (0.010413352) (0.010388663000000006) (0.010177339000000007) (0.010267854499999993) (0.01025827750000001) (0.010413226999999997) (0.01032833100000001) (0.010194620500000001) (0.010327042000000008) (0.0102965265) (0.01051743849999999) (0.010485648) (0.010444684999999995) (0.010535277499999995) (0.010333054499999994) (0.010273709000000006) (0.010472923500000009) (0.010675908999999997) (0.010193200999999999) (0.010448546000000003) (0.010371558000000017) (0.010347580500000009) (0.010595039499999986) (0.010344039000000013) (0.010387468499999997) (0.010308679000000015) (0.010540336999999997) (0.010463446500000001) (0.010450672999999994) (0.010671745499999996) (0.010962872999999998) (0.010499941000000013) (0.010714021000000004) (0.01057140299999998) (0.009954017499999995) (0.0099383485) (0.009886248499999986) (0.01003779299999999) (0.010052574000000009) (0.010094349000000002) (0.0101788025) (0.010012677999999997) (0.0101443445) (0.0100920855) (0.010077575000000005) (0.010294533000000008) (0.010194339499999996) (0.010264978000000008) (0.010141436000000004) (0.01000703600000001) (0.010193340499999995) (0.009894387500000004) (0.0099708295) (0.010145944000000004) (0.01013325750000002) (0.010197930499999994) (0.010005435499999993) (0.010120261499999977) (0.01013216850000001) (0.010077634000000002) (0.01007872650000001) (0.010053852500000002) (0.010326276999999995) (0.010176109000000003) (0.010093793500000003) (0.010152890500000011) (0.010196703000000001) (0.010399953500000017) (0.010395296500000012) (0.010357417499999994) (0.010431257999999999) (0.010465547499999991) (0.010472276500000002) (0.010310454999999996) (0.010352936000000007) (0.01056231249999999) (0.010372491499999983) (0.010468089) (0.010523391999999993) (0.0104668755) (0.010368161) (0.0105010735) (0.010249898500000007) (0.010456617500000001) (0.010455182500000007) (0.010457724000000002) (0.010632886000000008) (0.01036140100000002) (0.0104240315) (0.010220467499999997) (0.0107445325) (0.010522083500000015) (0.010519728500000006) (0.010579758499999994) (0.010549900000000001) (0.010492437999999993) (0.01057855249999999) (0.010677677999999996) (0.009968160000000004) (0.010082559000000005) (0.009945690500000007) (0.0101146565) (0.010164491999999997) (0.010090238500000001) (0.010044188499999995) (0.010279050500000012) (0.010102213499999999) (0.010008470999999991) (0.010180467500000012) (0.010165207999999995) (0.010161174999999995) (0.010394003499999999) (0.010153786500000012) (0.010149679999999994) (0.009988557499999981) (0.010029192500000006) (0.009984158999999992) (0.0100082445) (0.010207853000000003) (0.010185936000000007) (0.010132232000000005) (0.010209657499999997) (0.010239161499999996) (0.010417434000000017) (0.010482749999999999) (0.010298440000000006) (0.010128201999999989) (0.010403157499999996) (0.010292529999999994) (0.010349598000000002) (0.01049277400000001) (0.010369199499999995) (0.010501495) (0.010360661000000007) (0.010502061499999993) (0.010483841500000007) (0.010440534500000001) (0.010465740999999987) (0.010664873500000005) (0.010557652999999986) (0.010432465499999988) (0.010332028999999993) (0.010584284999999985) (0.01081247199999999) (0.01040938349999998) (0.010657858500000006) (0.010326796000000013) (0.010398381499999998) (0.010606347500000002) (0.010187227499999993) (0.010605105000000004) (0.010358760499999994) (0.01016325450000001) (0.010316812999999994) (0.010593674499999997) (0.010667795999999993) (0.011373492999999998) (0.010413649999999997) (0.010395815499999989) (0.010485641000000004) (0.010626982999999993) (0.010493194499999997) (0.010193460000000001) (0.010038340499999993) (0.009898658500000004) (0.010111166000000005) (0.010036218) (0.009960835500000001) (0.009919014500000004) (0.010086117000000006) (0.010228918500000003) (0.010229624500000006) (0.010011039999999999) (0.010133428500000013) (0.010037092999999997) (0.010366453499999997) (0.010141927500000009) (0.010325761999999988) (0.009865594000000005) (0.010129432499999994) (0.010041732999999997) (0.010043694499999992) (0.009915294000000005) (0.010133041500000009) (0.010106371500000003) (0.01043856550000001) (0.010021508499999998) (0.010051153000000007) (0.010184150000000017) (0.01015220600000001) (0.010267270499999995) (0.010350518500000017) (0.010065526500000005) (0.010145261500000002) (0.010307036999999991) (0.010314694) (0.010310812500000002) (0.010190375000000002) (0.010207706499999997) (0.010408920500000002) (0.010425333499999995) (0.010280667999999993) (0.010618451999999987) (0.010733899500000005) (0.010391994500000001) (0.010395317500000001) (0.01069594900000001) (0.010733842499999993) (0.010579735000000007) (0.010428349500000003) (0.0104416185) (0.010377334500000002) (0.010309386500000003) (0.010289038499999986) (0.010396823999999999) (0.010514414) (0.0105491885) (0.010235270000000005) (0.010467887500000009) (0.01055352100000001) (0.0103378665) (0.010634850500000001) (0.010532136000000011) (0.010688105500000003) (0.010449253499999991) (0.0103996975) (0.010143831000000006) (0.009966704500000007) (0.010183001499999997) (0.010092426000000015) (0.010295709000000014) (0.010029692499999993) (0.010012216000000004) (0.010132621000000008) (0.010030695500000006) (0.009937326499999996) (0.010148820000000003) (0.010149830999999998) (0.010177059000000016) (0.010232551499999992) (0.010177822000000017) (0.010492645500000009) (0.010029342499999996) (0.009915516499999999) (0.010053939499999998) (0.010013921999999995) (0.010043096499999987) (0.010026755000000012) (0.010063838500000005) (0.010160588999999998) (0.009935068500000005) (0.009976625999999988) (0.01005977550000002) (0.010328274499999984) (0.010011659000000006) (0.010326629000000004) (0.0103408735) (0.010064615999999998) (0.010461404499999993) (0.010289397500000005) (0.010448366) (0.010244346000000001) (0.010344446499999993) (0.010398512999999998) (0.010505451499999985) (0.010343271000000001) (0.010635412999999982) (0.010483671000000014) (0.010740779499999992) (0.010295120500000005) (0.010475651500000002) (0.01034393800000001) (0.010571274499999991) (0.010447229500000016) (0.010356905) (0.010246170000000013) (0.010391561000000021) (0.010551410499999997) (0.010443010500000002) (0.010361708999999997) (0.01040194500000001) (0.010237509000000006) (0.010825584) (0.011190389999999995) (0.0106823375) (0.010694901000000007) (0.010701953499999986) (0.010674443500000005) (0.010418055500000009) (0.010530022) (0.009888868500000009) (0.009975173500000004) (0.009986184500000009) (0.010142798499999994) (0.01007205600000001) (0.009953697499999983) (0.010177540999999984) (0.0100448635) (0.010657213499999998) (0.010296425999999997) (0.010123305500000013) (0.01010974499999999) (0.010347313999999982) (0.009995704500000008) (0.010281272499999994) (0.0100959365) (0.010006499000000002) (0.010124121000000014) (0.010411523500000006) (0.01010351100000001) (0.010112384500000002) (0.010100674000000004) (0.010041421999999994) (0.009913646999999998) (0.010368252000000008) (0.010147801499999998) (0.010076753499999994) (0.010280031499999981) (0.010273357499999997) (0.010077173000000009) (0.010179012500000001) (0.010191520499999995) (0.010338717999999997) (0.010568087000000004) (0.010202107500000016) (0.010428487) (0.01062068749999999) (0.010370743500000001) (0.010510018999999995) (0.010193730999999984) (0.010519523500000003) (0.010865962000000007) (0.010757011499999997) (0.010878370000000012) (0.010581639500000004) (0.010468820500000003) (0.010782337999999989) (0.010328250999999997) (0.010360722500000002) (0.010578544999999995) (0.010569215499999993) (0.01040045449999999) (0.010432597999999987) (0.010923300999999996) (0.010570497499999998) (0.0105235635) (0.010674405999999997) (0.010292041000000002) (0.01057841850000002) (0.010584423499999981) (0.010508802999999997) (0.010638511500000003) (0.010677492999999996) (0.01043272399999999) (0.009952828999999996) (0.010037459499999998) (0.010157723999999993) (0.010110993499999985) (0.009894167999999995) (0.010154771499999993) (0.010102613999999996) (0.010077650500000007) (0.01028134700000001) (0.010305202) (0.010347162499999993) (0.010106807499999995) (0.010329514999999997) (0.010194051999999995) (0.0100647185) (0.010348626) (0.010227804999999979) (0.010213193999999995) (0.010200389000000004) (0.009982379) (0.010053055499999991) (0.010043876500000007) (0.009983745500000002) (0.009975709999999985) (0.010455912000000012) (0.010327797500000013) (0.010425691) (0.01033291900000001) (0.010385778499999998) (0.010575708499999989) (0.01014249099999999) (0.010253999) (0.010654349499999993) (0.010320033499999992) (0.010260082000000004) (0.010453069499999995) (0.010434793999999983) (0.010374809499999998) (0.010537039499999998) (0.010204435499999998) (0.010703242000000002) (0.010733326000000001) (0.010564389500000007) (0.01041963550000001) (0.010528390499999998) (0.010653497999999997) (0.010560421) (0.010349684499999998) (0.010526042499999999) (0.010347866499999983) (0.010415746500000003) (0.0102485675) (0.010491214999999998) (0.010526427000000005) (0.010386633500000006) (0.010298772499999984) (0.010939150000000009) (0.010470392999999995) (0.01066702550000001) (0.010614869999999998) (0.010336355500000005) (0.010727118000000008) (0.010637416999999996) (0.010433601000000015) (0.009991652000000004) (0.010074298499999995) (0.009949647499999992) (0.009951034999999997) (0.010102519500000004) (0.010028186999999994) (0.010217854000000012) (0.010225370000000011) (0.010038205500000008) (0.010138967999999998) (0.01015932650000001) (0.010308902000000009) (0.010122299500000015) (0.010114181) (0.010117335500000005) (0.01020944850000001) (0.010176518999999995) (0.010322321999999995) (0.009942393499999994) (0.010251172500000003) (0.010054822000000005) (0.010150207999999994) (0.009952128000000005) (0.009999447999999994) (0.010211243499999995) (0.010216469500000006) (0.010158379000000009) (0.010249204499999998) (0.010392998499999986) (0.009907155499999987) (0.010534562999999997) (0.010099921500000011) (0.01038595299999999) (0.010286286500000005) (0.010458275000000017) (0.01037130750000001) (0.010263752999999987) (0.010391022499999986) (0.010426419499999992) (0.010310697500000007) (0.010329588999999986) (0.010460638499999994) (0.010505582999999999) (0.010684962500000006) (0.010725251000000005) (0.010733484000000001) (0.01032152) (0.010429752) (0.010308317499999997) (0.010338707000000003) (0.010357303499999998) (0.010273202499999995) (0.010422904499999996) (0.010209602499999998) (0.010315559000000016) (0.010523757999999994) (0.010511241500000004) (0.010991279000000007) (0.010523362000000008) (0.01065447450000001) (0.010676436499999997) (0.010493863499999992) (0.010412546000000023) (0.010623577499999995) (0.010055345999999993) (0.010152460500000002) (0.010167530000000008) (0.010069574999999997) (0.010002625000000001) (0.010066091000000013) (0.010202820000000001) (0.010075705000000004) (0.010240750000000007) (0.01013824499999999) (0.010199297999999996) (0.010196756000000001) (0.010237749500000004) (0.010405947499999998) (0.010188559) (0.010246295500000002) (0.009924413000000007) (0.01029729) (0.010158399499999998) (0.009982988499999998) (0.00989206400000002) (0.009899241000000003) (0.01024135100000001) (0.010109236999999993) (0.010192687500000006) (0.010241262000000001) (0.010150140500000002) (0.010416856000000002) (0.010116927499999998) (0.010195812999999998) (0.010145402499999998) (0.010086173000000004) (0.010585123500000002) (0.010452860499999994) (0.010337684) (0.010377341999999998) (0.0105094825) (0.010465098500000006) (0.010521712499999988) (0.010345992000000012) (0.01023682749999999) (0.0104578845) (0.010402435499999987) (0.010352965500000005) (0.010422543999999992) (0.010375186500000008) (0.01051551449999999) (0.010346796000000005) (0.01027790399999999) (0.010388607499999994) (0.010242397500000014) (0.010436595500000007) (0.010379961999999993) (0.010382931500000026) (0.010356974000000005) (0.010374016) (0.010518458500000008) (0.010870778999999997) (0.010635389499999995) (0.010615997500000002) (0.010655895999999998) (0.010661671999999997) (0.010530672500000005) (0.01029601149999998) (0.010231232000000007) (0.009959329000000003) (0.010014996000000012) (0.010126607499999982) (0.010273908500000012) (0.010062201000000007) (0.010172515500000007) (0.010000041000000001) (0.010217255499999994) (0.010196505499999994) (0.01017565699999999) (0.01033029000000002) (0.010074496500000002) (0.010194201500000014) (0.010250299500000004) (0.010136731499999996) (0.009976222500000007) (0.010428455000000003) (0.010004040500000005) (0.010018419) (0.010124301500000002) (0.010382304999999994) (0.010022216500000014) (0.010310847999999997) (0.010401995000000011) (0.015256913499999983) (0.010435073500000003) (0.0100839645) (0.010390132999999996) (0.010271482499999998) (0.010137381499999987) (0.0101514355) (0.010455755499999997) (0.010306471499999997) (0.01047199850000001) (0.010408184000000015) (0.010357406999999999) (0.010452976999999988) (0.01072026000000001) (0.010358377499999988) (0.010363362000000001) (0.010517194499999993) (0.010325086499999997) (0.010478424) (0.010699612999999997) (0.010597161999999993) (0.010396051000000003) (0.010549845999999988) (0.010475776999999992) (0.010233964999999984) (0.010591217) (0.0104354475) (0.011421700500000007) (0.010364235500000013) (0.01023334250000002) (0.010321096500000002) (0.010464528500000014) (0.010640047499999986) (0.010323827999999993) (0.010420474999999998) (0.010582384999999986) (0.010640910500000003) (0.010419959000000006) (0.01029142050000001) (0.010136314499999993) (0.010521970000000005) (0.009958217500000005) (0.009979462000000008) (0.010137047999999996) (0.009964462500000007) (0.010145376999999997) (0.010326251999999994) (0.010086275000000006) (0.010215056) (0.010321335000000015) (0.010229290500000002) (0.01023398099999999) (0.010393969500000017) (0.010256937000000008) (0.010325011499999995) (0.010162150000000009) (0.010116404999999995) (0.010074336499999989) (0.009955125500000009) (0.010273742500000002) (0.0100668005) (0.0100181025) (0.010235072499999984) (0.010376717499999993) (0.01020948499999999) (0.010617023000000003) (0.010499582500000007) (0.010226111499999982) (0.010350474999999984) (0.010138447999999994) (0.010388818499999994) (0.010541097999999999) (0.010391334000000002) (0.010293545000000001) (0.010476073000000002) (0.01051057100000001) (0.010339692500000011) (0.010255487499999993) (0.010923477000000001) (0.010779905000000006) (0.010511541999999985) (0.010398837500000008) (0.010551818000000004) (0.010554686500000007) (0.010465228000000007) (0.010593105999999991) (0.010673003999999986) (0.010557210499999997) (0.010324063999999994) (0.010281881999999992) (0.010314762000000005) (0.010490500499999986) (0.010501148500000002) (0.010427711500000006) (0.010301129500000006) (0.010710938999999989) (0.010662678500000008) (0.011100678000000003) (0.010505213499999999) (0.010610336499999998) (0.010670689000000011) (0.010609307500000012) (0.01044680499999999) (0.010072799000000007) (0.010358080500000005) (0.010157829000000007) (0.009937780500000007) (0.010122036000000001) (0.010041362999999984) (0.009989133999999983) (0.010303148000000012) (0.010104301999999996) (0.010296297499999996) (0.010257152500000005) (0.009979648499999993) (0.010166427000000006) (0.010089291) (0.010259872000000017) (0.010102203500000004) (0.010184380500000006) (0.010042812499999984) (0.010022241500000001) (0.01026258549999999) (0.010094149999999996) (0.009869413000000007) (0.009931445000000011) (0.010168247499999991) (0.010102893500000001) (0.010393405500000008) (0.010066358499999997) (0.010237825999999992) (0.010200602000000003) (0.01040687550000001) (0.010198388000000003) (0.010056812500000012) (0.0105080065) (0.010380463000000006) (0.0103516565) (0.010448922499999999) (0.010370625500000008) (0.01046931000000001) (0.010171153500000002) (0.010513925000000007) (0.010387899500000006) (0.010702195000000012) (0.010302140500000001) (0.010214375499999997) (0.010370247999999999) (0.010287716499999988) (0.010307736500000012) (0.010669461000000019) (0.010416078999999995) (0.010544951999999996) (0.010638531999999992) (0.010324361500000004) (0.010382396500000002) (0.010427848000000003) (0.010299342000000003) (0.010231444999999992) (0.010556002999999994) (0.010775024499999994) (0.0105412795) (0.010440022499999993) (0.0102397885) (0.010381322499999998) (0.010365020500000016) (0.010538363999999995) (0.010213007499999982) (0.010258000000000003) (0.0100338695) (0.010152974500000009) (0.010180963000000015) (0.010200444499999989) (0.009970015999999998) (0.009997430499999987) (0.010213032999999996) (0.010359182499999994) (0.0101582395) (0.010112687500000009) (0.010265126500000013) (0.010079480000000002) (0.010238466000000002) (0.010237302500000003) (0.010297629500000002) (0.010243743500000013) (0.009967460499999997) (0.010027359999999999) (0.010128052999999998) (0.009933350500000007) (0.010076738999999987) (0.010228425) (0.0100239035) (0.0102279235) (0.01002443950000001) (0.010078683500000005) (0.010379680500000002) (0.010043438499999988) (0.010174423000000002) (0.010263733000000025) (0.010259915000000008) (0.010389666000000006) (0.010288303499999998) (0.010410458499999997) (0.010268752499999992) (0.01036851400000001) (0.010549107499999988) (0.010343361499999995) (0.01048706599999999) (0.0102719025) (0.01027057649999999) (0.010428397000000006) (0.010459712499999996) (0.010688475499999989) (0.010389991500000015) (0.010506450500000014) (0.010623147999999999) (0.010270098000000005) (0.0102816025) (0.010330992999999997) (0.010469444500000008) (0.01052414850000001) (0.010702509999999998) (0.010453822000000002) (0.010452350000000013) (0.010380872) (0.01034969899999999) (0.010412379999999999) (0.010300353499999998) (0.010323681000000015) (0.010409933500000024) (0.010431410500000016) (0.010285125999999992) (0.010081192499999989) (0.010109212500000006) (0.009995614) (0.0100516415) (0.010080658500000006) (0.010659546500000006) (0.010191238499999991) (0.010031503499999997) (0.010118511999999996) (0.010175542000000024) (0.010217521500000007) (0.010237259999999998) (0.010182591500000004) (0.010132611000000014) (0.010146631500000017) (0.009972506000000006) (0.010086416000000015) (0.01014053799999999) (0.010016505999999994) (0.0102736665) (0.010033789000000015) (0.010054932500000002) (0.010074558499999997) (0.010333627500000012) (0.010368482500000012) (0.010251838499999999) (0.010194855500000016) (0.010169101999999985) (0.010282700999999991) (0.01021265049999999) (0.01025820949999999) (0.010273466500000009) (0.010439875500000001) (0.0104144335) (0.010411419500000005) (0.010447627000000001) (0.010326918500000004) (0.010504672500000006) (0.010320752499999988) (0.010315994500000009) (0.011202433000000012) (0.0104743905) (0.010423784000000005) (0.010245037999999998) (0.010368981) (0.010389137500000006) (0.01061176899999998) (0.010492131500000001) (0.010645058500000013) (0.010261372000000005) (0.010508275499999997) (0.010366902000000011) (0.010547562499999996) (0.010364780500000004) (0.01058872600000002) (0.010749874000000006) (0.010366757500000004) (0.01054881050000002) (0.01039992649999999) (0.010433625999999988) (0.0104168595) (0.010477618500000008) (0.010515729000000001) (0.010249038500000016) (0.010151078499999994) (0.010065155999999992) (0.010007205000000005) (0.0099931355) (0.010339878999999996) (0.010178712000000006) (0.010142006499999995) (0.010054759999999996) (0.010085727500000002) (0.010256173500000021) (0.010116042000000006) (0.010384989499999997) (0.010187953) (0.01020629449999999) (0.01019207250000001) (0.010173593500000008) (0.010107123999999995) (0.009996205999999994) (0.010096673500000014) (0.010060712) (0.010214306000000006) (0.010500807500000015) (0.009990486000000007) (0.010143281500000004) (0.010139072999999998) (0.010504781000000005) (0.0101354055) (0.010321133999999982) (0.010075858999999993) (0.010320756499999972) (0.010170460000000006) (0.01035665949999999) (0.010317319500000005) (0.0103499175) (0.010485769999999991) (0.010323570500000004) (0.010527339999999996) (0.010363109500000023) (0.010393070500000004) (0.010563074000000006) (0.010549342999999989) (0.010297130500000001) (0.010424715500000015) (0.010310220500000009) (0.01056009749999999) (0.010400642500000001) (0.010467090499999998) (0.010369365499999991) (0.010228045500000005) (0.0102830535) (0.010342300999999998) (0.010411421500000004) (0.010657611499999997) (0.010385258499999994) (0.010285335999999992) (0.010524614000000002) (0.010546934500000021) (0.010345590000000002) (0.010540635999999992) (0.010596646000000001) (0.010503472500000027) (0.010463607499999986) (0.010363551499999984) (0.010186207499999989) (0.010089084000000012) (0.009929051000000008) (0.010125214999999993) (0.009955719000000002) (0.010089984999999996) (0.01002516149999999) (0.0100805105) (0.010066526499999992) (0.010105889500000007) (0.010002221499999991) (0.010136482500000002) (0.010178033999999989) (0.010109339499999995) (0.010178103499999994) (0.010236981499999992) (0.010092803999999997) (0.009951778499999994) (0.010018700500000005) (0.009979202000000006) (0.009996447999999991) (0.010034705000000005) (0.009941561500000001) (0.010111727000000001) (0.010015858499999988) (0.010243410000000008) (0.010349851000000007) (0.009998985000000002) (0.010193445999999995) (0.010268678999999989) (0.010171339000000001) (0.009991475500000013) (0.0104023855) (0.010114459500000006) (0.010152298500000004) (0.01034244949999999) (0.01050627949999998) (0.0105122505) (0.010357073500000008) (0.010378591500000006) (0.010384054000000004) (0.010721705499999998) (0.010403107499999995) (0.010497084000000004) (0.010664839999999995) (0.010567446000000008) (0.010421477999999998) (0.01027204050000001) (0.01023627199999999) (0.010541362499999998) (0.010603358999999993) (0.010476864999999988) (0.010419522999999986) (0.010304066) (0.010499444499999996) (0.01027322) (0.010365644999999993) (0.010472352000000004) (0.010260297000000002) (0.010277559999999991) (0.010456422500000007) (0.010447310000000001) (0.0104809565) (0.010421282000000004) (0.009873581500000006) (0.01026277149999999) (0.010193079499999994) (0.009928493499999996) (0.010211995000000015) (0.009968793000000004) (0.010100137999999995) (0.010272633499999989) (0.010063306000000008) (0.010203502500000003) (0.010008413499999994) (0.010345874000000005) (0.010003772499999994) (0.01002868350000001) (0.010154139499999992) (0.010007449500000001) (0.01009842100000001) (0.009989221499999992) (0.010002862000000001) (0.010151942999999997) (0.009908595499999992) (0.010034576500000003) (0.010229784999999991) (0.009942546999999982) (0.009996460999999984) (0.010302620000000012) (0.010261888499999997) (0.010504144999999993) (0.010270639499999998) (0.010378622000000004) (0.0103060975) (0.010118190499999999) (0.010225916500000001) (0.010460712999999996) (0.010498201499999985) (0.010619202499999994) (0.01044310100000001) (0.010418216999999994) (0.0105132805) (0.01034347749999999) (0.010748898000000007) (0.010486503000000008) (0.010384845000000004) (0.010300259500000006) (0.010413069499999997) (0.010347151500000012) (0.010417019999999999) (0.010383778999999996) (0.010249462499999987) (0.010434773999999994) (0.010448720500000008) (0.010408760500000003) (0.010326018500000006) (0.010364243000000009) (0.010510391499999994) (0.010507459499999997) (0.0106254655) (0.010359079999999993) (0.01045676650000002) (0.010695101500000012) (0.01060005600000001) (0.010443926000000006) (0.01052749) (0.01056788950000001) (0.009968850500000001) (0.009847042) (0.01016608649999999) (0.010307390999999999) (0.010043801000000005) (0.010199689999999997) (0.010188661500000001) (0.010094910499999998) (0.010221139500000004) (0.010169025500000012) (0.010029677499999987) (0.010584744000000007) (0.010303820500000019) (0.009943688000000006) (0.010203495000000007) (0.010060170500000007) (0.009928441999999982) (0.010076490500000007) (0.009937146999999993) (0.009967801500000012) (0.009982481500000015) (0.009969600499999995) (0.010121343500000018) (0.010029424000000009) (0.010212961499999992) (0.010105615500000012) (0.010254496500000002) (0.01012361099999999) (0.010252476999999996) (0.010137576999999995) (0.0100624525) (0.010262001999999992) (0.010480109500000001) (0.010412643000000013) (0.010281820499999997) (0.010298478000000014) (0.010377285000000014) (0.01019423550000001) (0.010211623000000003) (0.010519052500000015) (0.0102381805) (0.012228866000000005) (0.010901530499999992) (0.010775868500000008) (0.010533953500000012) (0.010337425499999997) (0.010618626999999992) (0.010492896499999987) (0.010573872999999998) (0.010339243499999998) (0.010521613499999999) (0.010243470000000005) (0.010468009000000014) (0.010494835999999994) (0.010247506999999989) (0.010284396500000001) (0.010403380500000003) (0.010402517000000014) (0.01040418450000001) (0.010517669499999993) (0.010420643499999993) (0.010478169499999995) (0.010545987499999993) (0.010420366999999986) (0.009987120000000002) (0.01015315700000001) (0.009931490000000015) (0.010076342499999988) (0.009989809500000016) (0.010210787999999998) (0.010113941000000001) (0.010055095) (0.01033158449999999) (0.010167000999999995) (0.010405882500000005) (0.010362777500000003) (0.010027787499999996) (0.009958258499999997) (0.010237801500000004) (0.010172537999999995) (0.010248456500000003) (0.010011429000000002) (0.010033260500000002) (0.010053285499999995) (0.010003749499999992) (0.010296820499999984) (0.010290253999999999) (0.009952478500000014) (0.010146186500000001) (0.010339194500000023) (0.010221871499999993) (0.010217452000000002) (0.010314021000000007) (0.010381579000000016) (0.010329693000000015) (0.010103883000000008) (0.010292011000000004) (0.010516738500000011) (0.010319346500000007) (0.011533187) (0.010387433999999987) (0.010248314499999994) (0.010285625500000006) (0.010822040500000005) (0.010671058000000011) (0.01097803) (0.010481783499999994) (0.010702194499999998) (0.010521891000000005) (0.010462874499999997) (0.010529213499999995) (0.010600732500000001) (0.010323466999999989) (0.010356440499999994) (0.0103792615) (0.010237116000000004) (0.010810834500000005) (0.010498001000000007) (0.010489419) (0.010452622500000008) (0.010460915500000001) (0.010425536) (0.01058387849999999) (0.010460289500000011) (0.010677719500000002) (0.010777474000000009) (0.010844054500000005) (0.01057401949999999) (0.009923544999999992) (0.009971381000000001) (0.009956383) (0.010119772999999999) (0.010012222500000001) (0.0099872015) (0.01001601050000002) (0.010033157000000015) (0.010130417500000002) (0.010003810999999987) (0.009965147999999993) (0.010142429000000008) (0.010195592000000003) (0.010087193500000008) (0.010274516999999997) (0.010121159000000005) (0.010073630499999986) (0.009872394000000007) (0.009953523500000006) (0.009890382000000003) (0.010055553500000008) (0.01011410750000001) (0.010030888000000002) (0.010041258999999997) (0.010079171000000012) (0.010157201000000005) (0.010200953999999984) (0.010035787000000004) (0.0103140055) (0.0101683625) (0.010195197000000003) (0.010089398) (0.010202129000000004) (0.010317589000000002) (0.010304509500000003) (0.01047433099999999) (0.010146837000000006) (0.010256714999999986) (0.010443944499999996) (0.0103093155) (0.010342935999999997) (0.010580106999999991) (0.01034238450000001) (0.01054348599999999) (0.010461565500000006) (0.010623023999999995) (0.010346552499999995) (0.01047396249999999) (0.0103573265) (0.010264346000000008) (0.010351872500000012) (0.010463197499999993) (0.010290818500000007) (0.010244708499999991) (0.010244158500000017) (0.010368376500000012) (0.010587522500000002) (0.010548320500000014) (0.010428455000000003) (0.0106555755) (0.010265109499999994) (0.010366628999999988) (0.010525160499999991) (0.010610670000000003) (0.009878835000000002) (0.010001835) (0.010141665999999994) (0.009994077000000004) (0.010229080000000002) (0.009939986999999983) (0.010159267000000013) (0.010095712500000006) (0.010171740999999998) (0.010220410999999999) (0.01011330249999999) (0.010215780499999993) (0.010116173500000006) (0.010058445999999999) (0.010141918000000014) (0.00997986250000002) (0.010069501499999994) (0.009927313000000007) (0.010003738999999998) (0.010331888499999997) (0.010126879999999991) (0.009909018000000006) (0.009950791499999986) (0.009925677000000008) (0.010249264499999994) (0.010035961999999995) (0.010239275999999992) (0.01002314850000001) (0.010183592499999991) (0.010142194000000007) (0.010118626500000005) (0.010019909499999993) (0.010188394500000003) (0.010445058000000007) (0.010334672500000003) (0.010497617999999986) (0.010264009500000004) (0.010291782499999999) (0.010428764000000007) (0.0102573735) (0.010377764000000012) (0.010522812500000006) (0.010462362000000003) (0.01041010449999999) (0.010295943500000015) (0.010389684499999996) (0.010508744) (0.010769816000000001) (0.010351299999999994) (0.010390181000000012) (0.010351712000000013) (0.010272680500000006) (0.01049733550000001) (0.010380306000000006) (0.01023454) (0.010438571499999993) (0.010612979000000008) (0.010530332500000017) (0.010383350500000013) (0.010417651) (0.010410044000000007) (0.010400078999999993) (0.010427965499999997) (0.010494418500000005) (0.010063611499999986) (0.010102095000000005) (0.010115550999999987) (0.010025518000000011) (0.010369207999999991) (0.009850971999999986) (0.010052965000000011) (0.010003511500000006) (0.010143930500000009) (0.010091762000000004) (0.01014546949999999) (0.010371647500000011) (0.010083175) (0.010369925500000002) (0.010130286000000002) (0.010063780999999994) (0.010422579500000001) (0.009973812499999998) (0.010921974000000001) (0.010228866499999989) (0.009959753500000001) (0.010065237000000005) (0.009946491000000002) (0.010126044) (0.010279945000000013) (0.010329182500000006) (0.010274140500000015) (0.010146005999999999) (0.010143945500000001) (0.010264699000000002) (0.010204794999999989) (0.010133438500000008) (0.010413375500000002) (0.010239521500000001) (0.0102905935) (0.010355042500000008) (0.010790069) (0.010213677000000004) (0.010745738000000005) (0.01029998900000001) (0.010527600499999984) (0.01053683300000001) (0.010548489999999994) (0.010449649500000005) (0.011045469500000002) (0.010487187000000009) (0.010689242500000001) (0.010451068500000008) (0.010368609000000015) (0.010390409000000003) (0.010367264999999987) (0.010426647000000011) (0.010311840500000002) (0.010394609000000013) (0.010402303000000002) (0.010234365499999995) (0.010633097000000008) (0.01058539850000001) (0.010487699000000003) (0.010549809999999993) (0.010347811999999998) (0.0103642345) (0.010432939500000002) (0.01074396300000001) (0.010070669500000004) (0.010346018999999998) (0.010011043499999997) (0.01011411999999999) (0.010021232000000005) (0.009991636499999998) (0.009992837500000004) (0.010221379999999988) (0.010202496500000005) (0.010170297500000008) (0.0100767675) (0.010252854000000006) (0.010200411499999992) (0.010086060000000008) (0.010321703000000002) (0.010372999499999994) (0.010019504500000012) (0.010089629000000003) (0.009935850999999996) (0.009952706500000005) (0.010083396999999994) (0.009925254999999994) (0.009973652) (0.010148922000000005) (0.010337706000000002) (0.010278351000000005) (0.010096904500000004) (0.010144841500000001) (0.010214961000000009) (0.010313058500000014) (0.010202513499999996) (0.010276697000000001) (0.010317440499999997) (0.010423892500000004) (0.010611550500000011) (0.01037655350000001) (0.010353788500000002) (0.010387469999999996) (0.010572749000000006) (0.010524006500000002) (0.010491851499999996) (0.010662446499999992) (0.010533118500000008) (0.010417542000000016) (0.010447449999999997) (0.010556443999999998) (0.010399645999999999) (0.010413104499999992) (0.010389815499999996) (0.010587745999999995) (0.010363922999999997) (0.0103279535) (0.010174361500000006) (0.010377870999999997) (0.010333894999999996) (0.0103975595) (0.010543936500000003) (0.010648672500000012) (0.010540318499999993) (0.010496575500000008) (0.010392051999999999) (0.010631698000000009) (0.010637987000000002) (0.01056346000000001) (0.009889627999999998) (0.010151595499999999) (0.01015088800000001) (0.010037082000000003) (0.009962009500000008) (0.010101193999999994) (0.009928720999999988) (0.010017745000000008) (0.010173724999999995) (0.01007583799999999) (0.010036729500000008) (0.010398911999999996) (0.010458896499999995) (0.010340541499999995) (0.010154492000000015) (0.010119123500000007) (0.010149939499999996) (0.010271668499999997) (0.00999991900000001) (0.00993619350000001) (0.009889614500000005) (0.010080999499999979) (0.010232901500000002) (0.010313719999999998) (0.010254286999999987) (0.010186504999999998) (0.010283656000000016) (0.010144280000000006) (0.010222556499999993) (0.01018764250000001) (0.010108727499999998) (0.010369065499999996) (0.010274379000000014) (0.010359805) (0.010489114500000007) (0.010332430000000004) (0.010448973999999986) (0.010164066) (0.010238238499999996) (0.010415393999999994) (0.010454115) (0.010491944500000003) (0.010606402000000001) (0.01073611300000002) (0.010690011500000013) (0.010372201999999983) (0.010503151000000002) (0.010555199000000001) (0.010396510000000012) (0.010550693) (0.0103773655) (0.010423124499999992) (0.010494936499999996) (0.010577510999999998) (0.010317805999999999) (0.010576134000000001) (0.010417645999999989) (0.010562894500000003) (0.010739431499999993) (0.010459135999999994) (0.01048229199999999) (0.010664741499999991) (0.01079643299999998) (0.010900255999999997) (0.01001316649999999) (0.01032218) (0.010028296500000006) (0.010090894999999989) (0.010118556) (0.010193501499999993) (0.010126796000000007) (0.010075266499999999) (0.009977700000000006) (0.010292788499999997) (0.010078293500000002) (0.01008716300000001) (0.010163120999999997) (0.010148061) (0.010280457999999992) (0.010067179499999995) (0.009916201999999985) (0.010010504500000017) (0.009913976500000005) (0.010029689000000008) (0.010145627500000004) (0.010154548499999999) (0.009921572000000003) (0.010151541000000014) (0.010223652) (0.010032842499999986) (0.01026566100000001) (0.010041517500000013) (0.010410824999999999) (0.010034302500000009) (0.010129807500000018) (0.010173522500000004) (0.010418119500000003) (0.010237433500000004) (0.010249738500000008) (0.010308956500000008) (0.010468567999999984) (0.010266336000000001) (0.01041721150000001) (0.010585643499999992) (0.010571196000000005) (0.010518398499999984) (0.010561421500000001) (0.010456762999999994) (0.010496173499999997) (0.010304504000000006) (0.010369193499999999) (0.010540539500000001) (0.010709541500000003) (0.010519656000000002) (0.010645342000000002) (0.0104876775) (0.010276148500000012) (0.010274379) (0.010328240000000002) (0.010523942499999994) (0.010287443999999993) (0.010584213000000009) (0.010614266499999997) (0.010496406499999986) (0.010604956500000012) (0.010608222999999986) (0.010504447999999986) (0.010492669499999996) (0.010045087000000008) (0.00999070399999999) (0.010193529500000006) (0.010195113000000006) (0.010080914499999996) (0.010152249999999988) (0.009901667499999989) (0.010330902000000003) (0.010162677500000009) (0.010164575499999995) (0.010145648499999993) (0.010256481499999998) (0.010136565500000014) (0.010207397999999993) (0.01013054350000002) (0.01016631300000001) (0.010268914500000018) (0.010020907999999995) (0.010430021499999997) (0.010203990499999996) (0.010121882499999998) (0.01012645899999999) (0.010035772000000012) (0.010093867000000006) (0.010258510499999998) (0.01019866550000001) (0.010125983000000005) (0.010199020000000003) (0.010265810499999986) (0.010167033499999992) (0.01040439550000001) (0.010225177500000016) (0.010285802999999996) (0.010214715499999985) (0.010579187000000018) (0.010400155499999994) (0.010275334999999997) (0.010382889500000006) (0.010484469999999996) (0.010722173999999987) (0.010451613000000012) (0.01038839100000001) (0.010825689) (0.010590759000000005) (0.010495846499999989) (0.01070257949999999) (0.010594693999999988) (0.010583562000000005) (0.010391678000000001) (0.010217458500000012) (0.01020995650000002) (0.010328925500000002) (0.010291908000000016) (0.010310824499999996) (0.010327587999999999) (0.010337138499999995) (0.010518088000000009) (0.010833369500000009) (0.010714799499999997) (0.010847260000000011) (0.010574128500000002) (0.010496839500000008) (0.010494230999999993) (0.010429554000000008) (0.010018185999999984) (0.010333853000000004) (0.010077183000000003) (0.010250929999999991) (0.010113202500000001) (0.009907618000000007) (0.010180767500000007) (0.009925064999999997) (0.010492415500000005) (0.010299833499999994) (0.010210707999999985) (0.010576015499999994) (0.0102514935) (0.010066836499999995) (0.0101459775) (0.010291902000000006) (0.010449686499999986) (0.010055799500000004) (0.010062218999999997) (0.009950036499999995) (0.010022964499999995) (0.010170348499999995) (0.0101976025) (0.010132446000000003) (0.01018316200000001) (0.010161851999999999) (0.010293274000000005) (0.010372466999999996) (0.010522931) (0.010433426499999995) (0.010353555000000014) (0.010509445000000006) (0.010265705999999986) (0.0103011925) (0.010286353500000012) (0.010615236500000014) (0.010381879999999996) (0.010562419500000003) (0.010571525999999984) (0.010832372499999993) (0.010429148499999985) (0.010779668500000006) (0.010469782999999996) (0.010492112999999997) (0.010318710999999994) (0.010309878999999994) (0.010556193000000005) (0.010484281999999998) (0.010565732499999994) (0.010419527999999997) (0.010366077500000001) (0.010326123499999992) (0.0103150095) (0.010503497) (0.010627266999999996) (0.010602162500000012) (0.0104952735) (0.010640036499999991) (0.010911062) (0.010612284999999999) (0.010590150000000007) (0.010578063499999998) (0.01057986549999998) (0.010690589999999986) (0.009948330499999991) (0.010135203499999995) (0.010247744500000003) (0.010285948500000003) (0.009922144500000007) (0.009910322499999999) (0.0100685425) (0.010093486499999985) (0.010171315) (0.010165008500000003) (0.010294888999999988) (0.010079937499999997) (0.010026526500000008) (0.010058833500000003) (0.010076296499999998) (0.010154962500000003) (0.009968681500000007) (0.010127213999999995) (0.009920567500000005) (0.009889935499999974) (0.010343233999999993) (0.010035289500000003) (0.009878660000000011) (0.010120483500000013) (0.010232325) (0.010228682500000003) (0.010134985000000013) (0.010137740499999992) (0.010029845999999995) (0.010167356999999988) (0.010076692000000012) (0.010015014500000002) (0.010424175499999994) (0.010366959500000009) (0.010375819999999994) (0.0103804225) (0.010601452499999997) (0.010320740499999995) (0.01038956299999999) (0.010336763499999985) (0.010358918000000009) (0.010500512000000004) (0.010360287499999996) (0.010419064999999991) (0.010258322500000014) (0.01036166999999999) (0.010486146500000001) (0.010650629500000008) (0.010295846499999997) (0.010383984499999985) (0.010254615000000009) (0.010476148000000005) (0.0104439385) (0.0106068525) (0.010402567500000001) (0.010517134000000011) (0.010498171500000014) (0.010515767500000009) (0.010684881000000007) (0.010883257499999993) (0.010604177500000006) (0.011071868500000012) (0.010522867000000005) (0.010439127500000006) (0.009936847500000012) (0.010332569000000014) (0.009951316500000001) (0.009912616999999999) (0.009970466500000011) (0.010060014000000006) (0.01024815950000002) (0.009994622499999994) (0.010338392000000002) (0.0101607155) (0.010277687000000008) (0.009980713000000002) (0.010150914999999996) (0.010051401000000015) (0.010214987999999994) (0.010215017999999992) (0.010165215000000005) (0.009972477000000007) (0.009939150500000007) (0.010300934500000011) (0.00999945649999999) (0.01002610000000001) (0.010322964500000004) (0.010078573000000007) (0.010091266000000002) (0.010296405999999994) (0.010099464500000002) (0.01029214249999999) (0.010064580000000004) (0.010407429999999981) (0.010202632000000003) (0.010235825000000004) (0.010272719999999999) (0.010181174500000001) (0.01040630599999999) (0.010376513500000004) (0.010466572999999979) (0.010405148000000003) (0.010269264) (0.010443827000000003) (0.010258789500000004) (0.0107122635) (0.010309835000000003) (0.01027017099999998) (0.010619878) (0.010431156999999996) (0.010505523000000003) (0.010711215499999996) (0.010539808499999997) (0.010602516499999992) (0.010412618999999998) (0.010316952500000004) (0.010361862) (0.010395886999999993) (0.010393051) (0.01042235300000001) (0.010352556499999999) (0.010528856500000003) (0.010691276) (0.010426677500000009) (0.010415841500000009) (0.010483246000000002) (0.010393345999999998) (0.01047954949999999) (0.010059164499999995) (0.009995211000000004) (0.010944550499999997) (0.010231269000000001) (0.010214519500000005) (0.010330647999999998) (0.010298676500000006) (0.010336887000000003) (0.010025909) (0.010240249500000007) (0.010065861999999995) (0.010189703999999994) (0.010243205499999991) (0.010249593500000001) (0.010248138500000004) (0.010335508999999993) (0.0100048695) (0.009891378000000006) (0.010314956000000014) (0.010078155500000005) (0.01007514150000001) (0.010144991500000006) (0.010308336500000001) (0.010042472499999996) (0.01016988549999999) (0.010354219499999998) (0.010297949000000015) (0.01011549249999999) (0.010299779499999995) (0.010146826499999997) (0.010300157500000004) (0.010228231000000004) (0.010398489499999997) (0.010301596999999996) (0.010395769000000013) (0.010757652000000006) (0.01029827550000001) (0.010700742500000013) (0.010235923999999993) (0.010309227000000004) (0.01067477750000001) (0.010717507000000001) (0.01066713100000001) (0.010474814500000013) (0.010779072499999987) (0.010899602000000008) (0.010478601500000004) (0.01042067699999999) (0.010449458999999994) (0.010476071000000017) (0.010250854500000003) (0.010385792000000005) (0.010465296999999998) (0.010456823500000004) (0.010282563999999994) (0.010358460000000014) (0.010436350499999997) (0.010898611500000002) (0.010432417499999999) (0.010609955000000004) (0.010437730500000006) (0.010834342999999982) (0.010370111499999987) (0.0103712485) (0.010109448000000007) (0.009951337500000004) (0.009949208000000001) (0.010025132499999992) (0.010199541999999992) (0.010111131500000009) (0.010066833499999997) (0.010148861499999995) (0.010077800000000012) (0.010065153499999993) (0.010162576000000006) (0.010241462499999993) (0.010163706000000008) (0.010153514000000002) (0.010295176000000003) (0.010450316499999987) (0.010065627000000008) (0.010090868000000003) (0.010221580499999994) (0.010144229000000005) (0.009896451500000014) (0.010075118500000008) (0.010158575500000017) (0.01021097850000001) (0.010323908999999992) (0.01022885200000001) (0.010200956499999997) (0.010293506500000008) (0.010214422999999986) (0.010305364499999997) (0.010272516499999995) (0.010246943999999994) (0.010549255500000007) (0.010234512499999987) (0.010742355499999995) (0.01026505400000001) (0.010351091499999993) (0.010445140499999991) (0.010388634500000007) (0.010208195000000017) (0.01038541450000001) (0.010463094000000006) (0.010519906499999995) (0.010578616500000013) (0.010287099999999993) (0.01035024000000001) (0.010377173000000003) (0.010381401999999998) (0.0103247125) (0.01048866050000001) (0.010342004499999988) (0.010513498499999996) (0.010313326999999997) (0.01043224999999999) (0.010615238000000013) (0.010390308499999987) (0.01069917649999999) (0.010420585499999996) (0.010558423500000011) (0.010437138499999998) (0.010797714500000014) (0.010448853999999994) (0.010508060500000013) (0.010878931000000008) (0.009966483999999998) (0.010359197) (0.010006670499999995) (0.009937149500000006) (0.010142245999999994) (0.009905395499999997) (0.010047907000000009) (0.010261610500000004) (0.009927701499999997) (0.010028103499999996) (0.010040732999999996) (0.010010917999999994) (0.010073531999999996) (0.010161401) (0.009964625500000004) (0.009988671500000004) (0.010075584500000012) (0.009878853500000007) (0.010017301999999992) (0.009937239) (0.010054912) (0.009869923999999988) (0.010080757499999982) (0.009992301499999995) (0.010130004999999997) (0.010395504499999986) (0.009980516999999994) (0.01004460750000001) (0.010452079499999989) (0.010214872) (0.010282362500000003) (0.009952413000000007) (0.010369669500000012) (0.01028507749999999) (0.010341569999999994) (0.010530207) (0.010494054500000002) (0.010441337999999994) (0.010269625000000004) (0.0105497165) (0.01032469400000001) (0.010429759999999996) (0.010505344) (0.010368826999999997) (0.01040867899999999) (0.0102428465) (0.01059343900000001) (0.010481243000000015) (0.010329738000000019) (0.010359020999999996) (0.010416222500000002) (0.010422190499999998) (0.010290917499999996) (0.010361971499999983) (0.010448021500000002) (0.010369693499999999) (0.010721043999999999) (0.010779243499999994) (0.0104841735) (0.01041882899999999) (0.010545008000000008) (0.010521718499999985) (0.010569975500000009) (0.010698297499999995) (0.009989253500000017) (0.010197502999999997) (0.009849522499999985) (0.010147824999999985) (0.009977039999999993) (0.010221725500000015) (0.009928760000000009) (0.009996483499999986) (0.010088896000000014) (0.010086665500000008) (0.010279169500000004) (0.010145210000000002) (0.010044629499999999) (0.010046896999999999) (0.010067008000000002) (0.009974896999999996) (0.009983790999999992) (0.010245239499999989) (0.009970783999999996) (0.010195635000000008) (0.009984542500000013) (0.010158051500000001) (0.010210574500000014) (0.010005135500000012) (0.010164881499999986) (0.010139871000000009) (0.010361147000000001) (0.010175576499999991) (0.010021669499999997) (0.01012990250000001) (0.010169119500000004) (0.0101889005) (0.0106111775) (0.010462985000000008) (0.010305817000000009) (0.010525118999999986) (0.010422459999999995) (0.010296448000000014) (0.010325600500000004) (0.01059582349999999) (0.010663103000000021) (0.010517511500000007) (0.010525720500000002) (0.010822708) (0.010476259000000002) (0.010640516500000016) (0.010558157999999998) (0.010494949500000017) (0.010304595000000014) (0.0105409115) (0.01027958200000001) (0.010562678500000006) (0.010500504999999993) (0.010332254499999999) (0.010346713499999993) (0.010375378000000005) (0.010523424000000003) (0.010569475999999994) (0.010503566000000006) (0.010533653000000004) (0.010634362000000008) (0.010654428500000021) (0.010295301999999992) (0.010519525000000002) (0.010035422500000002) (0.009901775000000002) (0.010221107000000007) (0.01008938450000002) (0.01005769749999999) (0.01001192799999999) (0.00997624300000001) (0.010062425499999986) (0.0100305755) (0.010110554500000007) (0.010182640000000007) (0.010161418999999991) (0.010346612499999991) (0.010049546000000006) (0.010052991999999997) (0.01032263600000001) (0.009946856500000004) (0.010007408999999995) (0.010031724000000006) (0.010332710499999995) (0.010288908) (0.010293562499999992) (0.010090572000000006) (0.010041316500000008) (0.010285615500000012) (0.010334095000000001) (0.010377420999999998) (0.010055184000000009) (0.010297694999999996) (0.010327946000000005) (0.010047499999999987) (0.010147707499999992) (0.010457803500000001) (0.010190917500000007) (0.010469182499999993) (0.010286972999999991) (0.010233473000000007) (0.010583005500000006) (0.010643106000000013) (0.010265659999999996) (0.010762655999999995) (0.010492217999999998) (0.0104481035) (0.0104551165) (0.010510011999999985) (0.01054786299999999) (0.010498814499999995) (0.010574243000000011) (0.010389207999999997) (0.010325048000000003) (0.010245118499999997) (0.01036600900000001) (0.0104236375) (0.010433707) (0.010429828500000016) (0.010444594500000001) (0.010550230500000007) (0.010444593999999988) (0.010864831000000005) (0.010825258000000004) (0.0106250705) (0.010494137) (0.010364927499999996) (0.010532748000000008) (0.010440715000000003) (0.010188835999999993) (0.009914111000000003) (0.010201026499999988) (0.010491977000000013) (0.0100995475) (0.010090952999999986) (0.0101430775) (0.010065865500000007) (0.010044811500000014) (0.010332988000000001) (0.01003034550000001) (0.010204520000000009) (0.010363481499999994) (0.010187784999999991) (0.010061548000000003) (0.0101978115) (0.010035692999999984) (0.009980055500000001) (0.009992308999999991) (0.010149518499999996) (0.009994593999999996) (0.010054508500000003) (0.010072429499999994) (0.010254826499999994) (0.010045459999999992) (0.010125352000000004) (0.010360315999999994) (0.010246210999999991) (0.0102605895) (0.010309430499999994) (0.010047050999999987) (0.010343274999999999) (0.010351839000000002) (0.010523699999999997) (0.0103086285) (0.010377672500000004) (0.010441237000000006) (0.010502155999999999) (0.010242649500000006) (0.010344767500000004) (0.010624071000000013) (0.010507088000000012) (0.010936683500000002) (0.010467633500000004) (0.010606946000000006) (0.010497355) (0.010334745500000006) (0.010347820999999993) (0.010392513000000006) (0.010731488999999997) (0.010314187500000002) (0.0103275595) (0.010247799999999987) (0.010588166499999996) (0.010189083000000002) (0.010570493499999986) (0.010482125499999995) (0.01050888350000001) (0.010432372499999995) (0.010389007999999991) (0.010513104500000009) (0.010548605500000002) (0.010628368) (0.010084979500000021) (0.0103250275) (0.009855123000000007) (0.010023759999999993) (0.009922176000000005) (0.0099161995) (0.010057608999999995) (0.010734018999999997) (0.010042590000000004) (0.010121855499999999) (0.010154473999999997) (0.0103146925) (0.010320609000000008) (0.010031320999999996) (0.01032929199999999) (0.010076994000000006) (0.009918240500000008) (0.009898767000000003) (0.009922948000000001) (0.010142187499999997) (0.010232856000000012) (0.009969903500000016) (0.010066952000000004) (0.009923457499999996) (0.010126662500000008) (0.009935760500000002) (0.010145763500000002) (0.009964556) (0.010080618) (0.010302606999999991) (0.010186261500000002) (0.010174362999999992) (0.010381475000000001) (0.010246040999999997) (0.010758872999999988) (0.010199256500000004) (0.01020153750000001) (0.010625578999999996) (0.010317622499999998) (0.010332224499999987) (0.010824734500000002) (0.0108577225) (0.010327449000000016) (0.01076561899999999) (0.010514349000000006) (0.010934934999999979) (0.010341645499999996) (0.010637295000000005) (0.01058389500000001) (0.010498054000000007) (0.010183541000000004) (0.010324405499999995) (0.010377635999999996) (0.010412310000000022) (0.010186095000000006) (0.010249382500000001) (0.010543735999999998) (0.010581162499999991) (0.010702202999999993) (0.010400200000000012) (0.010415412499999999) (0.010542950499999995) (0.010516061000000007) (0.010401868499999994) (0.009928618) (0.00990722749999999) (0.009903225500000001) (0.010125559500000006) (0.010136135000000004) (0.009947263499999998) (0.010318292000000007) (0.01010717600000001) (0.010103135) (0.010084711499999996) (0.0100442075) (0.010231918000000007) (0.010228873499999985) (0.010013700499999986) (0.010134336999999993) (0.009956327999999987) (0.009890755000000001) (0.010046466000000004) (0.009889086000000005) (0.010043458499999991) (0.0100252495) (0.010050125499999993) (0.009977989000000007) (0.010190564) (0.010582914999999998) (0.010045390500000015) (0.0102918335) (0.00996694649999999) (0.010057195500000005) (0.009995160500000017) (0.01039064499999999) (0.010035050500000003) (0.010655315999999998) (0.010214402499999997) (0.010419194499999992) (0.010429668500000003) (0.01047643350000002) (0.010266816500000012) (0.010321210999999997) (0.010351032499999996) (0.01047244) (0.010464501499999987) (0.010500028500000008) (0.0103836375) (0.01035230849999999) (0.010524386999999996) (0.010436226999999992) (0.010347119499999988) (0.010461229000000016) (0.010258324500000013) (0.010608446000000007) (0.010543844499999996) (0.010338205000000003) (0.010333322999999991) (0.010266284) (0.010335453500000008) (0.010609603500000009) (0.010529091000000004) (0.010366471000000002) (0.010496069999999996) (0.010750481000000006) (0.010551814999999992) (0.010676153999999993) (0.010433890000000001) (0.010279075499999998) (0.010084636500000008) (0.01009689100000001) (0.00991492599999999) (0.010072828999999991) (0.010084727500000001) (0.009996807499999996) (0.010005211500000014) (0.010058437500000017) (0.010158167999999995) (0.010075737000000015) (0.010150018499999997) (0.010581122500000012) (0.010275503000000005) (0.010208953499999993) (0.010053857500000013) (0.010066453000000003) (0.009958273500000003) (0.010146390500000005) (0.010143499500000014) (0.009889098499999999) (0.010017315999999998) (0.010179731999999983) (0.010202008999999998) (0.01036143099999999) (0.010255378499999995) (0.010297729999999991) (0.010243839500000004) (0.010049485499999997) (0.0102222005) (0.01019490399999999) (0.010098372999999994) (0.010213150500000004) (0.010332545999999998) (0.010176900500000002) (0.01060648850000001) (0.010335298000000007) (0.010303941999999996) (0.010504524500000015) (0.010461171499999991) (0.010625752999999988) (0.010622241000000004) (0.0104645815) (0.010247284999999995) (0.010478400499999985) (0.010571066000000018) (0.010487948499999997) (0.010522469000000007) (0.010360401499999991) (0.010580594499999998) (0.010600677000000003) (0.010357796000000002) (0.010523925500000003) (0.01083705800000001) (0.010442120500000013) (0.010285672499999995) (0.010478482000000011) (0.010589260999999989) (0.010409349999999998) (0.01065502850000001) (0.010620980500000002) (0.010650307499999997) (0.010238065000000005) (0.01063839900000002) (0.010146758999999991) (0.010042072999999999) (0.010059581999999997) (0.01036244) (0.009916292500000007) (0.010030464500000016) (0.010134892499999992) (0.010245606000000004) (0.010160346499999987) (0.010245629999999992) (0.010093560000000015) (0.010143377499999995) (0.010137979499999991) (0.010579912999999996) (0.01040206049999999) (0.0102071715) (0.010027569) (0.0104252165) (0.010136214000000004) (0.010130970500000003) (0.01012291400000001) (0.010238382000000004) (0.009970957000000003) (0.009954778999999997) (0.010299232999999991) (0.0103610425) (0.010287421500000005) (0.010133188499999987) (0.010262683500000008) (0.010157791999999999) (0.010094709000000007) (0.010181833499999987) (0.010456198) (0.010265155999999998) (0.010249759999999997) (0.010211387000000002) (0.010711718999999995) (0.0103305105) (0.010621592) (0.01041229049999999) (0.010639860000000001) (0.010662503500000003) (0.010339387000000005) (0.010581557500000005) (0.010516600000000001) (0.010535456999999998) (0.010388626499999998) (0.010325807500000006) (0.010433008500000007) (0.010358318499999991) (0.010362096500000015) (0.010571884500000003) (0.01037014650000001) (0.010328590499999998) (0.010299832499999995) (0.0103487035) (0.010421835500000004) (0.010599451999999981) (0.010744760499999992) (0.010469187500000005) (0.010604245499999984) (0.010521321500000014) (0.010422453499999998) (0.010375355499999989) (0.009904477500000008) (0.010050249499999997) (0.01014053799999999) (0.0099385045) (0.00995797100000001) (0.010014442499999998) (0.010143613499999996) (0.010088720499999995) (0.010111101999999997) (0.010857606000000006) (0.009953241000000002) (0.010233085999999988) (0.010178601500000009) (0.010147470500000005) (0.010254883499999992) (0.010029166000000006) (0.010139977499999994) (0.010174879499999998) (0.010062801999999996) (0.009978636999999999) (0.010078578500000004) (0.009927587500000001) (0.010043475499999982) (0.010100110499999995) (0.010007300499999996) (0.010108473499999993) (0.01042505249999999) (0.010297393000000002) (0.010139766499999994) (0.010073133999999997) (0.010277797499999991) (0.010031218000000008) (0.010340060999999984) (0.010238201000000002) (0.010714999000000003) (0.010504341) (0.0104223955) (0.010233080499999991) (0.010332157500000008) (0.010420337000000002) (0.010574718499999997) (0.010569776500000003) (0.01061115800000001) (0.010438482499999999) (0.010405749500000006) (0.010527982499999991) (0.01044706699999999) (0.010672015999999993) (0.010356940499999995) (0.010373252000000013) (0.010244705000000007) (0.010774936499999999) (0.010380617500000008) (0.010468609000000004) (0.010361936500000002) (0.010722519) (0.010425028000000003) (0.010690293500000017) (0.010557983999999992) (0.01062268899999999) (0.010606578000000005) (0.010528324499999991) (0.01068094600000001) (0.010702082500000001) (0.00989496849999999) (0.010098476000000009) (0.009910198499999995) (0.010126218499999992) (0.010198086999999995) (0.010005310000000003) (0.010264363500000012) (0.010293163000000008) (0.010143025500000014) (0.010052831499999998) (0.010278716500000007) (0.010426243000000002) (0.010192884499999999) (0.010104797000000013) (0.010153365999999997) (0.010232680500000008) (0.010217959500000012) (0.010192364999999995) (0.010013189499999992) (0.010019338499999988) (0.010000100999999997) (0.010079579500000019) (0.009917164499999992) (0.010039673999999998) (0.0100220835) (0.010253281500000017) (0.01014755399999999) (0.010025048500000022) (0.010217525500000005) (0.010132466000000007) (0.010146070000000007) (0.010113387000000001) (0.010491495000000003) (0.010487321499999994) (0.010327112000000013) (0.01022049650000001) (0.010443338499999996) (0.010296307000000005) (0.010490883999999992) (0.010423494500000005) (0.010496395000000006) (0.010533893999999988) (0.01043098399999999) (0.010414041499999999) (0.010391129999999998) (0.010406132499999998) (0.010414377499999988) (0.010309768499999997) (0.010533795000000012) (0.010409034499999997) (0.010245319500000002) (0.01053037300000001) (0.010357157999999991) (0.010552770999999989) (0.010266116000000006) (0.0106018945) (0.010431218500000006) (0.010552971000000008) (0.010515486500000004) (0.0104973295) (0.010598014000000003) (0.010578980000000002) (0.010531123000000003) (0.010943666000000019) (0.010013212999999993) (0.00996495650000001) (0.010487979000000008) (0.010294869999999998) (0.009951106999999987) (0.010001239499999995) (0.009987471999999997) (0.010107499000000006) (0.01008613600000001) (0.010237903000000007) (0.010178463499999998) (0.009993818500000001) (0.010238561499999993) (0.010002414000000001) (0.010211369500000012) (0.010061707000000003) (0.010175452499999987) (0.010017064499999992) (0.010041394000000009) (0.010060676500000018) (0.009972239000000008) (0.010179056000000006) (0.010090548000000005) (0.009976709999999986) (0.010357333999999996) (0.010140417499999999) (0.010013210000000008) (0.009935968500000003) (0.010295221999999993) (0.010476998000000001) (0.01014862100000001) (0.0100602905) (0.010446229000000001) (0.010426730000000009) (0.010485976500000022) (0.010337863499999989) (0.010273118999999997) (0.010531987499999992) (0.010413919500000007) (0.010432579999999997) (0.010471775000000003) (0.010430662499999993) (0.01031973600000001) (0.010480983) (0.010587862000000003) (0.01063471199999999) (0.010573311000000002) (0.010623510500000002) (0.010412005999999988) (0.010507862000000007) (0.010253643000000007) (0.010269266499999999) (0.0104608655) (0.010426335000000009) (0.010411279999999995) (0.010506323499999998) (0.010535681000000005) (0.010896548500000006) (0.010503360999999989) (0.010536761999999991) (0.010479456500000012) (0.010597073999999998) (0.010258364000000006) (0.0105615285) (0.01011106349999999) (0.010055815999999995) (0.009902820500000006) (0.010109614999999988) (0.010046529499999998) (0.010110022499999996) (0.010082105499999994) (0.010075421500000015) (0.009987459000000004) (0.010340211500000002) (0.010257501999999988) (0.010173423499999987) (0.010211863499999987) (0.01007748) (0.01039991550000001) (0.010330349500000002) (0.012415520999999985) (0.010175535000000013) (0.0102435315) (0.010067009500000015) (0.01036004750000001) (0.01028923000000001) (0.010264673500000002) (0.010061132500000014) (0.010193097999999998) (0.010252584499999995) (0.0103198605) (0.010355677500000007) (0.010192491499999998) (0.010261408) (0.010180566000000002) (0.01011443849999999) (0.010359493999999997) (0.010551726500000011) (0.01065860049999999) (0.010260646999999998) (0.010437779500000008) (0.010347666999999991) (0.010230536500000012) (0.010336574999999987) (0.0105327115) (0.010600959500000007) (0.010457604499999995) (0.010301530499999989) (0.01071586549999999) (0.010519427999999997) (0.010447043500000003) (0.010624548000000011) (0.01042091349999999) (0.010444043) (0.010550325499999999) (0.01034874399999998) (0.010381946000000003) (0.010518622000000005) (0.010320697500000003) (0.010371728499999996) (0.01054454349999999) (0.010488690999999994) (0.010617509499999997) (0.010537071499999995) (0.010713806999999992) (0.010707139500000004) (0.010473919000000012) (0.010551459499999999) (0.0103144805) (0.010056817999999995) (0.010113243500000008) (0.009983857999999998) (0.01005354600000001) (0.010171325000000009) (0.010168243000000007) (0.010306251999999988) (0.01019708300000001) (0.010273783000000009) (0.010063361499999993) (0.010108100500000008) (0.010022398999999987) (0.010071154499999999) (0.01012383700000001) (0.010013511000000003) (0.009897433999999997) (0.009933533499999994) (0.009868923000000016) (0.010093549000000007) (0.009884269000000001) (0.010200954999999998) (0.01014518099999999) (0.010286034999999999) (0.010511719000000017) (0.00992555149999999) (0.00997032099999999) (0.010297051500000001) (0.010246341499999992) (0.01022339500000001) (0.010148045999999994) (0.010199943000000003) (0.010395764000000002) (0.010398635999999989) (0.01056079850000001) (0.010513687499999994) (0.010306805999999988) (0.010517636999999982) (0.010336114000000007) (0.010466369500000017) (0.010672595500000007) (0.010476499000000014) (0.010324884999999992) (0.010446824000000007) (0.010326299499999997) (0.0106797545) (0.010391810499999987) (0.01053722800000001) (0.010313524500000004) (0.010646059999999999) (0.010244458999999997) (0.01037726450000001) (0.010358995999999995) (0.010697315499999999) (0.010361213000000008) (0.010361740500000008) (0.010574395999999986) (0.010695645500000003) (0.01070399000000001) (0.010256498000000003) (0.010531236500000013) (0.010331475000000007) (0.0104817195) (0.010392002999999997) (0.010130386000000005) (0.010240971499999987) (0.010125189500000006) (0.010113203000000001) (0.010240622000000005) (0.010086852000000007) (0.010080905999999987) (0.010077781999999993) (0.0102479345) (0.010271664000000014) (0.010241196999999994) (0.010107610999999989) (0.010174369500000002) (0.010069665000000005) (0.0101962315) (0.010159618999999995) (0.010291214000000007) (0.010336692999999994) (0.010018118499999992) (0.010016206499999986) (0.010612563500000005) (0.010288009999999986) (0.010301158500000004) (0.0101248595) (0.010162846500000003) (0.010315479500000016) (0.010080606500000006) (0.0101878475) (0.010016948999999997) (0.010142316499999998) (0.010262041499999985) (0.010325900499999999) (0.01046547049999999) (0.010508701499999995) (0.010284999500000003) (0.010283473999999987) (0.01058286750000001) (0.010307045499999987) (0.01030640749999999) (0.010336527499999998) (0.010440597999999995) (0.010408471000000002) (0.01040382749999999) (0.01047640000000001) (0.010381756500000006) (0.0105870255) (0.010476843000000013) (0.010408663500000012) (0.010521725499999995) (0.01026849349999999) (0.010405674500000017) (0.010375450000000008) (0.010361720500000005) (0.0103166175) (0.01033641199999999) (0.010237338999999998) (0.01055230850000001) (0.010760290500000005) (0.010540406500000002) (0.010462673500000005) (0.010589900999999999) (0.010316548499999995) (0.010538097999999982) (0.010634880000000013) (0.010193208999999995) (0.010217204499999993) (0.010063457999999997) (0.01035815150000001) (0.010051898000000004) (0.010257931499999998) (0.010126367499999997) (0.010190004999999988) (0.010066201499999997) (0.010170775499999993) (0.00997314249999999) (0.01012875499999999) (0.010277982500000005) (0.010062151000000005) (0.0102456935) (0.0100898465) (0.010128106999999997) (0.010278351500000005) (0.010155151500000001) (0.009922893000000002) (0.010018190999999996) (0.01027625700000001) (0.0101591095) (0.009988477999999995) (0.0101320815) (0.0103610975) (0.009939551500000005) (0.010132948500000002) (0.010198851499999995) (0.010058590500000006) (0.010053096999999997) (0.010296462999999992) (0.010328211000000018) (0.0103069925) (0.010306230500000013) (0.010384762999999991) (0.010265367999999997) (0.010360787499999996) (0.01048521749999999) (0.010581728999999998) (0.010579315000000006) (0.01050065750000001) (0.010391621000000004) (0.010294472999999998) (0.010310241499999998) (0.010414314500000008) (0.010488107999999982) (0.010345126499999996) (0.010372133999999991) (0.010157445499999987) (0.010531202000000003) (0.010290215000000005) (0.010414900500000004) (0.010666899999999993) (0.010604056499999986) (0.010170090000000007) (0.010431453000000007) (0.010654113500000006) (0.010297339000000016) (0.010485443999999983) (0.010401049499999995) (0.010376355500000004) (0.010518254500000004) (0.010557939000000002) (0.01008590999999999) (0.0101379095) (0.010103984999999996) (0.010257745999999998) (0.01028207149999999) (0.010102307000000019) (0.009972477999999993) (0.01020220949999999) (0.01017662749999998) (0.010094699499999998) (0.010205779999999998) (0.010233522000000009) (0.010238267500000009) (0.0105069005) (0.01019731900000001) (0.010209275500000004) (0.009928197) (0.010190046500000008) (0.009860232999999996) (0.010121414499999995) (0.01006854800000001) (0.010176919999999992) (0.010133120999999995) (0.010099288999999997) (0.010402934500000016) (0.010389713000000009) (0.010086177500000015) (0.010197719499999994) (0.010103068000000007) (0.010381767) (0.010136172499999999) (0.010345409999999985) (0.01034831750000001) (0.010258494999999992) (0.010512967499999998) (0.010276673000000014) (0.01021040400000002) (0.010410523500000005) (0.010614445) (0.010388741500000007) (0.010618099999999991) (0.010828303999999997) (0.010560814000000002) (0.010534850999999998) (0.010478375500000012) (0.010504892500000002) (0.010688138) (0.010619141499999984) (0.010489429000000008) (0.010311770999999997) (0.010238655499999999) (0.010429132500000007) (0.010597154999999997) (0.010293824499999993) (0.010353633000000015) (0.010465496000000005) (0.010842647999999996) (0.010613979499999981) (0.010578526499999977) (0.010533863499999976) (0.010392714500000011) (0.010759985999999985) (0.010476054499999984) (0.010384458499999999) (0.010113884500000003) (0.009898978500000002) (0.010094040499999998) (0.010040457500000002) (0.010057746500000006) (0.010025719500000002) (0.010138731999999998) (0.009830978000000004) (0.010227769499999997) (0.009943735999999995) (0.010077756500000007) (0.010113817499999997) (0.010102142500000008) (0.010391218499999993) (0.009976647000000005) (0.010008394500000004) (0.009956435) (0.009966812499999991) (0.009983616999999986) (0.00986832700000001) (0.010235186499999993) (0.009923120999999993) (0.010159197499999995) (0.01021689549999999) (0.010339487999999994) (0.010195423000000009) (0.010231737500000004) (0.010025807500000011) (0.010091985499999984) (0.009919984499999993) (0.010035462000000009) (0.009998741000000005) (0.010401491999999998) (0.010557569500000002) (0.0108487565) (0.010250260499999997) (0.01046114649999999) (0.010194918999999997) (0.010581597499999998) (0.01040875699999999) (0.0105457375) (0.010557383500000003) (0.010502339499999985) (0.010697382000000005) (0.01027160399999999) (0.0104209465) (0.01032515149999999) (0.010555055499999993) (0.010129742999999997) (0.010272918000000006) (0.010451187000000015) (0.010348514999999989) (0.010366231999999989) (0.010198337500000001) (0.010356242500000001) (0.010243908999999995) (0.010594818000000006) (0.010302895500000006) (0.01060200700000001) (0.010771801499999997) (0.010569672999999988) (0.010811276500000008) (0.01057821149999999) (0.010405520500000001) (0.009994641000000012) (0.0101908525) (0.010032130999999986) (0.010142857000000005) (0.010118153500000004) (0.01038644100000001) (0.010152110499999992) (0.010148039499999997) (0.0100143335) (0.010279423499999996) (0.010282427499999997) (0.010244886000000009) (0.009949085499999996) (0.0101388325) (0.010077229000000007) (0.010095646000000014) (0.009965038500000009) (0.010020928499999998) (0.010060602499999988) (0.010118100000000005) (0.0102901465) (0.010181577999999997) (0.010116241999999984) (0.010201837000000005) (0.009967205999999992) (0.010214990500000007) (0.010304097500000012) (0.010063139999999998) (0.010367809499999991) (0.010300882000000011) (0.010043521) (0.010128009999999993) (0.0104325465) (0.010450741500000013) (0.010428867000000008) (0.010269806999999992) (0.01044961500000001) (0.010589469500000004) (0.010457101999999996) (0.010379025999999986) (0.010305734499999997) (0.010447867999999985) (0.010598074999999998) (0.010497142999999987) (0.010655237499999998) (0.010508422000000017) (0.010720345000000006) (0.010513671499999988) (0.010684839000000002) (0.010602759500000003) (0.010215127000000004) (0.010175180000000006) (0.010436561499999983) (0.010439691500000015) (0.010412233999999992) (0.010559029499999997) (0.010281493000000003) (0.01045765949999998) (0.010489520500000016) (0.010528864000000013) (0.010522586) (0.010513441500000012) (0.010485554500000008) (0.010422143000000009) (0.010059333000000004) (0.010079679000000008) (0.01003946800000001) (0.010020907499999995) (0.009971645500000001) (0.009935409500000006) (0.010064313999999991) (0.0101263095) (0.010341273499999998) (0.010018565500000007) (0.010203949500000004) (0.010260636500000003) (0.01032559000000001) (0.01000180149999999) (0.010193797500000004) (0.010129116500000007) (0.010021001000000002) (0.010060563000000008) (0.009979507999999998) (0.0099936905) (0.00991821000000001) (0.010181899999999994) (0.010220166500000002) (0.01021970450000001) (0.009977255500000004) (0.010027232999999997) (0.010112921499999997) (0.010008701500000008) (0.010276047999999996) (0.010325664499999998) (0.010084135999999994) (0.010120197499999997) (0.010375154499999997) (0.01029020650000001) (0.010219663500000004) (0.010393568500000006) (0.01024398700000001) (0.010145316500000001) (0.010285752000000009) (0.010319130499999982) (0.010264675000000001) (0.01043533549999999) (0.010420691499999996) (0.01053971749999999) (0.010456163000000004) (0.010413665000000016) (0.01054174749999999) (0.010805236499999996) (0.010464494500000004) (0.010532523000000002) (0.010358300000000015) (0.010409487500000009) (0.01057618149999999) (0.01032944899999999) (0.010700708500000003) (0.010308630999999999) (0.0104955365) (0.010637785999999996) (0.010781563999999993) (0.01038012449999999) (0.010796629499999988) (0.010539821000000005) (0.0104822485) (0.010566418500000008) (0.010274459000000014) (0.010026561500000003) (0.009910963500000008) (0.009902637000000006) (0.010034543000000007) (0.010196118000000004) (0.01021789799999999) (0.010304986000000002) (0.010089054000000014) (0.010376016500000002) (0.010359190500000018) (0.010257500000000003) (0.010181100499999998) (0.010103560999999997) (0.010368077500000003) (0.0100714685) (0.010133642499999998) (0.009888577499999995) (0.010117306999999992) (0.010611529999999994) (0.0101150515) (0.010121415999999994) (0.010139969999999998) (0.010191281499999996) (0.010192613999999989) (0.010308630000000013) (0.01008480099999999) (0.010346652000000012) (0.010236952999999993) (0.010158336000000004) (0.010306174000000015) (0.010196374000000008) (0.010310970000000017) (0.010674474000000003) (0.010426865000000007) (0.010446012000000005) (0.010503008500000008) (0.010232449000000005) (0.010445802000000004) (0.010487146500000016) (0.010413214000000004) (0.010621865500000008) (0.010695262000000011) (0.010413545499999996) (0.010426211500000004) (0.010416641499999976) (0.01048685449999999) (0.010578503500000003) (0.010606448000000004) (0.010161025000000004) (0.0105123845) (0.010306789499999996) (0.01072744149999999) (0.010599461500000004) (0.010640821999999994) (0.010376343999999996) (0.010567788999999994) (0.010598854500000005) (0.010902148999999986) (0.010377464000000003) (0.010579677499999995) (0.0104866255) (0.010492280500000006) (0.010580001000000006) (0.010183420500000012) (0.01011124599999999) (0.0098707995) (0.010183338500000014) (0.009988939500000002) (0.010377987500000005) (0.010054083999999991) (0.009957033000000004) (0.010155215500000009) (0.01024254949999999) (0.01028764850000001) (0.010072670000000006) (0.010054025499999994) (0.010138017000000013) (0.010145679000000005) (0.010100167499999993) (0.010131055) (0.010061410000000007) (0.00998077850000001) (0.01036033850000001) (0.010034207999999989) (0.010035457499999983) (0.00994162550000001) (0.00999161500000001) (0.010046749500000007) (0.010108640000000002) (0.010283222000000009) (0.010045773000000008) (0.009992117499999995) (0.010006936999999994) (0.010207386500000012) (0.0101853425) (0.010399841999999992) (0.010162921500000005) (0.010476485499999993) (0.010398299500000013) (0.010309331000000005) (0.010725846499999997) (0.010460565500000005) (0.010379853500000008) (0.0105192125) (0.010496931999999987) (0.010355856999999996) (0.010405808000000003) (0.010792779000000002) (0.01050718299999999) (0.01046979449999999) (0.010397358999999995) (0.010366541000000007) (0.010269883499999993) (0.010344430999999987) (0.010342287500000005) (0.010579973499999992) (0.010210065000000004) (0.010398912999999996) (0.010295247999999993) (0.010545810499999989) (0.01080239349999998) (0.010474456500000007) (0.01051117750000001) (0.010550071499999994) (0.010829135499999976) (0.010647146499999996) (0.010550814499999991) (0.010088838000000003) (0.010172579499999987) (0.010126823499999993) (0.00999481549999999) (0.010058818499999997) (0.010059185499999998) (0.010036026000000003) (0.009948946000000014) (0.010085757000000015) (0.010198596000000018) (0.010137049500000009) (0.010400524000000008) (0.010126587500000006) (0.010158011499999994) (0.010221587500000004) (0.010076700999999993) (0.010067673499999999) (0.010018618500000007) (0.010021612000000013) (0.009913626500000008) (0.00993516550000001) (0.01031048100000001) (0.010074771999999996) (0.010011941499999996) (0.01008969450000001) (0.009967236500000004) (0.010209269000000007) (0.01035303899999998) (0.010317480000000018) (0.010215543000000007) (0.010300587) (0.010215750499999995) (0.010275099499999996) (0.010202450000000002) (0.010477737) (0.010342778999999996) (0.010188634500000016) (0.010331482499999989) (0.01054627200000001) (0.010348431000000005) (0.010590225500000008) (0.010423830999999995) (0.01068690550000001) (0.010570661999999995) (0.010487973999999997) (0.010591530500000002) (0.01059668100000001) (0.010571305499999989) (0.010697885000000018) (0.010214415500000004) (0.010708458500000018) (0.010311576000000003) (0.010363243500000008) (0.010717645499999998) (0.01026414349999999) (0.010465527500000002) (0.01057527350000001) (0.010288153499999994) (0.010446070500000015) (0.010660867000000004) (0.010381995000000005) (0.010447340999999999) (0.010525527000000007) (0.010449472000000001) (0.009901503999999992) (0.010173776999999995) (0.009956822500000004) (0.009867113499999997) (0.010256287500000003) (0.010083313499999996) (0.010160868000000003) (0.010260040999999984) (0.010039168000000015) (0.010107382499999998) (0.010179301500000015) (0.0101101745) (0.010072780500000003) (0.010183191499999994) (0.010081623999999997) (0.010102080999999999) (0.010069262499999995) (0.010004401499999996) (0.01019759349999999) (0.009960446999999997) (0.009910293) (0.009901451000000006) (0.010286437999999995) (0.010129714499999998) (0.010223945499999998) (0.010331089500000001) (0.009942797999999989) (0.010213627000000003) (0.010246105500000005) (0.010174896500000002) (0.010142554499999998) (0.010242794999999999) (0.010400578999999993) (0.0104543005) (0.010489069500000003) (0.01032807749999999) (0.010429294999999991) (0.010322336500000001) (0.010252511999999978) (0.010684205500000002) (0.010459459500000018) (0.010814934999999998) (0.010505123500000005) (0.01046925500000001) (0.010556343499999996) (0.010605340000000005) (0.010751702500000002) (0.0107114975) (0.010544416000000001) (0.0105662495) (0.010343086499999987) (0.010598102499999998) (0.010157122000000005) (0.010299816000000003) (0.010377788500000013) (0.010578023000000006) (0.010417320000000008) (0.010705742500000004) (0.010791616500000004) (0.010567933500000001) (0.010610164000000005) (0.010588747499999995) (0.010541641000000004) (0.010422774999999995) (0.009915168500000002) (0.010071857999999975) (0.009923246999999996) (0.010090508499999998) (0.009972232499999997) (0.010116032499999997) (0.009974484999999991) (0.01022596050000002) (0.010213594499999992) (0.010182258) (0.010404837) (0.010305441499999998) (0.010503024999999985) (0.010466686499999989) (0.010534388499999991) (0.010164366500000008) (0.010188747499999984) (0.01020227) (0.010136762500000007) (0.010232606500000005) (0.010740886500000005) (0.010324363500000003) (0.010139562000000005) (0.01012249400000001) (0.010212106500000012) (0.010132351499999998) (0.010364393999999999) (0.01046292950000001) (0.010210243000000008) (0.010225412500000003) (0.010239251500000005) (0.010215809000000006) (0.010249072499999998) (0.010679261499999995) (0.0103092605) (0.010436301499999995) (0.010437877499999998) (0.010292641000000005) (0.010544288000000013) (0.010380623500000005) (0.010461340999999999) (0.0107550525) (0.01055404950000001) (0.010765585000000008) (0.010520921000000016) (0.010412576499999993) (0.010387144000000001) (0.01066112150000001) (0.010413616999999986) (0.010508720499999999) (0.01032181) (0.010363509500000007) (0.010406299000000008) (0.010807331000000003) (0.010463038499999994) (0.010402773500000004) (0.010598069000000002) (0.010563946000000018) (0.010551799499999986) (0.01060984299999998) (0.010702139000000013) (0.010382208500000004) (0.010373300000000016) (0.01058170750000001) (0.010015582999999995) (0.010138846499999993) (0.010117761999999988) (0.010252452500000009) (0.0099102155) (0.010072268999999995) (0.0098250255) (0.010016673000000004) (0.010366805500000006) (0.01018981599999999) (0.010203594499999996) (0.010371416499999994) (0.0102646765) (0.010243605000000003) (0.010233277499999999) (0.010396071000000007) (0.01010768749999999) (0.010056918500000012) (0.009825586499999997) (0.0101073265) (0.010030638000000008) (0.010138655999999996) (0.010077535500000012) (0.010221191000000004) (0.010315259000000007) (0.010050162500000001) (0.010216095999999994) (0.010267069000000004) (0.010467998500000006) (0.010189229499999994) (0.010362264999999996) (0.010024270000000002) (0.01053280899999999) (0.010431394499999996) (0.01033218900000002) (0.010533838500000003) (0.010441641500000001) (0.010337136999999982) (0.010269212500000013) (0.010366155999999987) (0.010499325000000004) (0.010530599500000001) (0.010613000999999997) (0.010547249500000008) (0.010308277000000005) (0.01060356300000001) (0.010396303499999995) (0.011053442999999996) (0.010539937999999999) (0.010222881999999989) (0.010363449999999996) (0.010532922500000014) (0.010525360499999997) (0.010490169499999993) (0.010429335999999997) (0.010449592999999993) (0.010291847999999992) (0.01050769) (0.010667455499999992) (0.010799622999999994) (0.010678834499999998) (0.010443974999999994) (0.01061741699999999) (0.0106162915) (0.00991834300000001) (0.01002146000000001) (0.010070338499999998) (0.010117873500000013) (0.010090394499999988) (0.010239955999999995) (0.010086955499999994) (0.010065905) (0.010128402000000009) (0.010170613500000009) (0.010122244999999988) (0.010109885500000013) (0.010294914500000016) (0.010144898999999999) (0.010167268500000007) (0.010101607499999998) (0.010083247500000003) (0.010063425500000014) (0.00992962700000001) (0.010280509500000007) (0.010166729499999999) (0.009950530499999999) (0.00994300150000002) (0.010085872999999995) (0.010292917499999998) (0.010049593499999995) (0.010208876000000006) (0.010174699999999981) (0.01043412199999999) (0.010287907000000013) (0.010133515499999995) (0.010104527500000002) (0.010211030499999996) (0.010446741500000009) (0.010368778499999995) (0.010394346999999998) (0.010316316500000006) (0.010279036499999991) (0.010341880499999997) (0.010518011500000007) (0.010342007000000014) (0.01034265999999999) (0.010605717999999986) (0.010677313500000007) (0.010422385000000006) (0.010508518500000008) (0.010712620999999992) (0.010457229999999998) (0.010610300500000003) (0.010575946500000002) (0.010483519999999996) (0.010545146000000005) (0.011179878500000004) (0.010812095000000008) (0.010524560999999988) (0.010296555999999998) (0.010451153000000019) (0.010572704500000002) (0.010403228) (0.0105145175) (0.0105961215) (0.010731441500000008) (0.010678016499999998) (0.010629290999999999) (0.010102905999999995) (0.010081074999999995) (0.010539028499999992) (0.010029352500000005) (0.009972485500000003) (0.01012906999999999) (0.010093768000000003) (0.010027157000000009) (0.010298645000000009) (0.010130211) (0.010074996000000003) (0.010092774000000013) (0.010161843500000003) (0.010099057999999994) (0.010362380500000004) (0.010420073500000016) (0.010065850000000001) (0.009968866999999992) (0.010005452499999998) (0.010252487000000005) (0.010047581) (0.010086726500000018) (0.010110293999999992) (0.010460523) (0.0103256605) (0.010126375500000007) (0.010212390500000001) (0.010343967999999995) (0.0101031065) (0.010258286499999991) (0.010156802499999992) (0.010084008999999991) (0.0104070525) (0.0106072475) (0.010320365499999998) (0.010382991999999994) (0.010402161999999993) (0.010445572) (0.01073688199999999) (0.010276678499999997) (0.010596732500000011) (0.010672540000000008) (0.010515601000000013) (0.010533324999999996) (0.010689612000000015) (0.010478769000000013) (0.010539874500000004) (0.010659006499999985) (0.010494995500000007) (0.010449226999999991) (0.010423967000000006) (0.010767539000000007) (0.010417735999999983) (0.010440520000000009) (0.010911804000000011) (0.010430995999999998) (0.010620772500000014) (0.011161659000000004) (0.010562062499999997) (0.010705224999999999) (0.010489775500000006) (0.010565639000000002) (0.010704613000000002) (0.010632851500000012) (0.009923790500000015) (0.010149004000000003) (0.010113050499999998) (0.010045925000000011) (0.010103553000000001) (0.010097763999999995) (0.009929947500000008) (0.010196291999999996) (0.010117117500000009) (0.010462182000000014) (0.010179636000000006) (0.010244522999999991) (0.010292868499999996) (0.01020594150000001) (0.010290012500000001) (0.010680705499999998) (0.010167521999999998) (0.010128451499999996) (0.010054335499999997) (0.010039206999999994) (0.010091794500000015) (0.010461289499999998) (0.010176602500000007) (0.0102195115) (0.010232221) (0.010221434999999987) (0.010365034999999995) (0.010285603000000004) (0.010259010999999985) (0.010109453000000004) (0.010338522000000003) (0.010322551999999999) (0.010306422499999995) (0.010505129999999988) (0.010624016) (0.010410432999999997) (0.010494339500000005) (0.010373253999999998) (0.010432955999999993) (0.010361198999999988) (0.010524869999999992) (0.010509253499999996) (0.010727681999999988) (0.010706164000000004) (0.010737233999999998) (0.010645391500000018) (0.010456584500000005) (0.010529836) (0.010448074000000016) (0.010632988999999995) (0.010497894999999993) (0.010682694999999992) (0.010866642499999996) (0.01053564450000001) (0.010654608499999996) (0.010658865000000003) (0.010676598499999995) (0.01055959849999999) (0.010450434499999994) (0.01051820399999999) (0.010716616999999998) (0.010721752999999987) (0.010680373999999992) (0.010585030500000009) (0.010075052500000015) (0.010014417999999997) (0.010175408999999996) (0.009907591500000007) (0.010284978500000014) (0.01000311050000001) (0.010402763500000009) (0.010160723999999996) (0.01017124899999998) (0.010206295000000004) (0.010089621499999993) (0.010041625499999998) (0.010466647499999995) (0.010244958499999998) (0.010160838500000005) (0.0099569355) (0.010114850500000008) (0.009931910499999974) (0.009898668500000013) (0.010136904000000016) (0.009946797999999993) (0.009993283500000005) (0.010384896000000005) (0.010309206500000001) (0.010316724500000013) (0.010212972) (0.01020872149999999) (0.010143779999999991) (0.01000326600000001) (0.010106239000000003) (0.009979970500000018) (0.010151895500000008) (0.010424167999999998) (0.010414356) (0.010355922000000004) (0.010598709500000011) (0.010481343000000004) (0.010255932499999995) (0.010344401999999989) (0.010258460999999996) (0.010489830500000005) (0.010353844500000015) (0.010433688999999996) (0.010572126000000001) (0.010376963000000003) (0.010509045000000009) (0.010575289000000015) (0.010676462000000012) (0.010172129500000002) (0.010302835999999996) (0.010490943000000003) (0.010539001999999992) (0.010247167500000001) (0.010208117500000002) (0.010229294500000014) (0.010927742000000004) (0.010543879000000006) (0.010547576000000003) (0.010334838000000013) (0.010401430499999989) (0.01045492399999999) (0.010501124) (0.010416795999999992) (0.010503567500000005) (0.010061834999999991) (0.010032268499999997) (0.01000864450000001) (0.010038069499999996) (0.010088564499999994) (0.010375102000000011) (0.009959257000000013) (0.009956437000000012) (0.010271475500000002) (0.010088278499999992) (0.010356798) (0.010286760000000006) (0.010150672500000013) (0.010258783000000007) (0.010434509499999994) (0.010046646000000006) (0.010111470499999997) (0.010209355000000003) (0.010106766500000003) (0.010116441500000004) (0.009967334999999994) (0.010118776499999996) (0.010228293) (0.010000469500000012) (0.01024095450000001) (0.010170064000000006) (0.010192797000000003) (0.01006092800000001) (0.010512506000000005) (0.010019784500000004) (0.010466498000000019) (0.010323982500000009) (0.010443342000000008) (0.010253685999999998) (0.01058724200000001) (0.010472522999999997) (0.010313121999999994) (0.010314532500000001) (0.01040614949999999) (0.0105884235) (0.010488236499999984) (0.010437128000000004) (0.010387266000000006) (0.010581722499999988) (0.010478737500000002) (0.010445874000000008) (0.010711422499999984) (0.010493790000000003) (0.010576674500000008) (0.010611675000000001) (0.010576772999999998) (0.010404048500000013) (0.010855565000000011) (0.010383311000000006) (0.010337001999999998) (0.0105018365) (0.010687036999999996) (0.010754735500000001) (0.010550511500000012) (0.010347402000000006) (0.010428880000000001) (0.010481361499999994) (0.010268364000000002) (0.010392852999999994) (0.01006654400000001) (0.010703615) (0.010010050500000006) (0.010182926999999994) (0.010134192) (0.01006825950000001) (0.010115417500000015) (0.010028772000000005) (0.010160274499999997) (0.010157896999999999) (0.010011940499999997) (0.010164273000000015) (0.01013813650000002) (0.010361516000000001) (0.0100533535) (0.010434845999999998) (0.010185972500000001) (0.010000553500000009) (0.010711598000000003) (0.010059903499999995) (0.010134061499999986) (0.010163155500000007) (0.01020513599999999) (0.010270492500000006) (0.010291056500000006) (0.010352388500000004) (0.010348523499999998) (0.010045545000000017) (0.010314862499999994) (0.010069641500000018) (0.010248142000000002) (0.010112715000000008) (0.010358775) (0.010668225500000003) (0.0103685305) (0.010416372999999993) (0.010316158500000006) (0.010306297499999992) (0.010406451999999997) (0.010494237500000003) (0.010407995000000003) (0.010326474500000002) (0.010457793000000007) (0.010417633999999981) (0.01058919550000001) (0.010519040999999993) (0.01044196900000001) (0.010702556999999988) (0.010477146000000007) (0.01068208150000001) (0.010337820499999997) (0.0104115855) (0.010513353500000017) (0.01039822) (0.010496063500000014) (0.010367982499999998) (0.010730780500000009) (0.010692072499999997) (0.010489947) (0.010505588499999996) (0.010512073499999997) (0.010581246499999988) (0.010586718500000009) (0.010315831499999997) (0.010362976999999995) (0.01007887049999999) (0.009985766499999993) (0.010067097000000011) (0.010330435999999998) (0.010548358499999994) (0.010263238500000008) (0.010047601000000003) (0.010712998000000001) (0.01033597850000001) (0.01003392900000001) (0.010464182499999988) (0.010373703499999998) (0.01062283700000001) (0.010182631499999997) (0.010260910499999998) (0.01021242700000001) (0.010077684500000003) (0.010336849999999995) (0.009944705999999998) (0.010209932500000005) (0.01000533499999999) (0.010145248499999995) (0.010089303499999994) (0.0103984575) (0.010401741500000006) (0.01028138449999999) (0.010959789999999997) (0.010510327499999986) (0.010163242000000017) (0.01065679750000001) (0.010456279500000012) (0.010301413999999995) (0.010628011000000007) (0.010603498000000003) (0.010559516500000005) (0.010203333499999995) (0.010395723499999995) (0.010507867500000004) (0.010517372000000011) (0.010271253500000008) (0.010723972499999984) (0.010383796) (0.010454611499999988) (0.010451720999999997) (0.010424985999999997) (0.010388391999999996) (0.010303976500000006) (0.010469110000000004) (0.010542396999999995) (0.010516035000000007) (0.010351071999999989) (0.010505448) (0.010406943999999987) (0.010279750000000004) (0.01034442499999999) (0.010654893999999998) (0.010697475499999998) (0.0105701755) (0.010482193499999987) (0.0103620995) (0.010582526499999995) (0.01064167249999999) (0.010609557000000006) (0.010159129000000003) (0.010250934500000003) (0.009933504999999981) (0.009978278000000007) (0.009995956) (0.010105959500000011) (0.010278015000000001) (0.010009721000000013) (0.010156008000000008) (0.0100275165) (0.010070041000000002) (0.010165992499999998) (0.010057983999999992) (0.010165890499999997) (0.010177662000000004) (0.010169930500000007) (0.010114255500000002) (0.010064845500000016) (0.009912965999999981) (0.010036429999999999) (0.009926515499999983) (0.010255418500000002) (0.010059652500000002) (0.010040307499999998) (0.010230238500000002) (0.010295434000000006) (0.010270733500000004) (0.010088033999999996) (0.01003486399999999) (0.010269696999999994) (0.010275359999999997) (0.010097822000000006) (0.010275792999999991) (0.010347092499999988) (0.010394166499999996) (0.010341290999999989) (0.010184206000000001) (0.010340109) (0.010443491499999999) (0.010790967499999998) (0.010423955499999998) (0.0104269045) (0.010433848999999995) (0.010343411499999997) (0.0102659945) (0.010393071500000003) (0.010440292500000004) (0.010347052999999995) (0.0104382435) (0.010623001500000007) (0.010329355999999998) (0.010261324500000016) (0.010461209499999999) (0.010425926500000002) (0.0104103725) (0.010422986500000009) (0.01066404999999998) (0.010534031000000013) (0.010403389499999999) (0.010473393999999997) (0.010738282500000002) (0.010447830500000005) (0.010852710500000001) (0.010602601000000003) (0.010219928500000003) (0.01010708249999999) (0.010105388999999992) (0.009908408500000007) (0.009926391500000006) (0.01014788200000001) (0.010046511500000008) (0.010119645499999996) (0.010025951499999991) (0.00991605000000001) (0.009984730499999983) (0.010010887499999996) (0.010333600999999998) (0.010283381499999994) (0.010204008) (0.010193354000000002) (0.01018617799999999) (0.009926687500000017) (0.010043450500000009) (0.009952100000000005) (0.010550551500000005) (0.010255405500000009) (0.010193357000000014) (0.01007488849999999) (0.010282553499999986) (0.010185721999999994) (0.010653945499999984) (0.010301265500000004) (0.010494694499999999) (0.010375279500000001) (0.010331043999999998) (0.010382659000000002) (0.010220937999999999) (0.010215659000000016) (0.010155782000000002) (0.010354270999999998) (0.010483267000000004) (0.010376277500000017) (0.010458873500000007) (0.010534796000000013) (0.010426179500000007) (0.010297934999999994) (0.010407063000000008) (0.010734908000000001) (0.010376910500000003) (0.010292424000000008) (0.010515703500000001) (0.010725855499999978) (0.010238646000000004) (0.010538105000000006) (0.010338292499999999) (0.010359957999999989) (0.010368809000000007) (0.010405569500000003) (0.010663674999999997) (0.010289191000000017) (0.010606270500000015) (0.010623094999999999) (0.010707338499999997) (0.010506870999999987) (0.010604922500000002) (0.010464603000000017) (0.010695629999999998) (0.010649690500000003) (0.010084129499999997) (0.010256896500000001) (0.010105938999999994) (0.009975988000000005) (0.009981825500000013) (0.010083727) (0.010125404500000004) (0.010069027999999994) (0.00994560650000001) (0.010036259500000005) (0.010063368000000003) (0.010087785500000002) (0.010132073500000005) (0.010081542000000013) (0.010117129000000016) (0.010130715499999998) (0.010100837999999987) (0.010192187500000005) (0.010078893499999991) (0.01020344699999999) (0.010226459499999993) (0.01020791750000001) (0.009978653000000004) (0.010108336499999995) (0.009968154000000007) (0.010045758500000002) (0.0103773105) (0.0099782375) (0.015070405500000009) (0.010062633499999987) (0.010046449500000013) (0.010054992499999998) (0.010522393000000005) (0.010302356499999984) (0.010296202000000004) (0.010387463000000013) (0.010446044000000015) (0.010314199499999996) (0.010442297500000003) (0.01034881850000001) (0.010487688499999995) (0.010578246499999985) (0.010451146499999994) (0.010345637500000004) (0.010456670500000001) (0.01045164250000001) (0.010654642000000006) (0.010649492499999996) (0.010386995499999996) (0.010664331999999985) (0.010378935499999992) (0.01035364250000001) (0.010535080000000002) (0.01044341) (0.010820144500000017) (0.010406310000000002) (0.010427170999999999) (0.010590203000000006) (0.010483862999999996) (0.010859938) (0.010540364999999996) (0.010476286500000001) (0.010690305999999997) (0.010819620000000002) (0.010276973499999995) (0.010001095500000001) (0.010038900500000003) (0.010173727500000007) (0.010197869999999998) (0.009905227000000003) (0.010253826500000021) (0.0099143025) (0.010505367500000001) (0.010217616000000013) (0.010211261) (0.0103907045) (0.010803820499999992) (0.010240916000000003) (0.010250363499999998) (0.01019666299999998) (0.010083126999999997) (0.010038611000000003) (0.0099243475) (0.010134184000000004) (0.010311292) (0.010223345000000009) (0.009885172500000011) (0.009973946000000011) (0.010771684500000003) (0.010307022999999998) (0.010265322500000021) (0.010219174499999997) (0.010075401999999997) (0.010099644500000005) (0.010194245000000005) (0.010627875499999995) (0.01058096900000001) (0.010613547999999987) (0.010274496500000008) (0.010188555000000002) (0.010453789000000005) (0.010348519) (0.010172829999999994) (0.01041210799999999) (0.010538323500000002) (0.010887659499999994) (0.01087491950000001) (0.01051244250000001) (0.010867383000000008) (0.0106409425) (0.010455359999999983) (0.010410397499999988) (0.010466218) (0.010408459500000009) (0.010431356000000003) (0.010478315499999988) (0.010436181999999988) (0.010438229000000007) (0.010270689500000013) (0.010224376999999993) (0.010589150499999991) (0.010661116999999984) (0.010489522000000001) (0.010666712000000023) (0.010714750499999995) (0.010435831500000006) (0.010743764500000003) (0.010424147500000008) (0.010170030499999996) (0.010075309000000005) (0.010140747000000006) (0.010108294500000004) (0.00996330899999999) (0.010185760999999988) (0.010047448) (0.01015737600000001) (0.0100251955) (0.010207369999999993) (0.010273357999999996) (0.010050131000000004) (0.010227980499999997) (0.0100994165) (0.010267159999999997) (0.010070713999999995) (0.010241183000000001) (0.010018229000000003) (0.010010025000000006) (0.009983176499999996) (0.009926865999999993) (0.009948989999999991) (0.010135011499999999) (0.009958286999999996) (0.01012302150000001) (0.009919007000000007) (0.010225971) (0.010002852000000007) (0.010180847499999993) (0.010168624999999987) (0.010260986) (0.010029062500000005) (0.010179851000000004) (0.010440935999999998) (0.010449218999999996) (0.010334524999999997) (0.010283098000000004) (0.01035451350000001) (0.010320197500000003) (0.010282743999999996) (0.010321787999999998) (0.010478421000000002) (0.011100853499999994) (0.010718269000000016) (0.010300780500000009) (0.010409246499999997) (0.010327089999999997) (0.010263375000000005) (0.010299070500000007) (0.010309707000000015) (0.010422753499999993) (0.010277415999999998) (0.010347812999999997) (0.010214609000000013) (0.010365436500000005) (0.010556524999999997) (0.010510799500000015) (0.010735254999999999) (0.010326914499999992) (0.010371049000000007) (0.010334944499999998) (0.010618472500000004) (0.010711978999999996) (0.0104178095) (0.010157072500000003) (0.010081408) (0.010013853499999989) (0.010076609) (0.010466139999999999) (0.0100499525) (0.01019172850000001) (0.01039137200000001) (0.010115827000000008) (0.009973462999999988) (0.010314815000000005) (0.01025401799999999) (0.010070609999999994) (0.010423772499999998) (0.010451119499999995) (0.010092875500000001) (0.010073734) (0.009943561500000003) (0.010345931499999989) (0.010037465499999995) (0.009987591500000004) (0.010499069) (0.009978936000000008) (0.010201513999999995) (0.010102912500000005) (0.010136449000000006) (0.0101889545) (0.010087404500000008) (0.009982826500000014) (0.01008328750000001) (0.010108484499999987) (0.010061088999999995) (0.010171082999999997) (0.010310774999999994) (0.01029609799999999) (0.010525633999999992) (0.010335361499999987) (0.010371538999999999) (0.010446890500000014) (0.010388802500000016) (0.01071675250000001) (0.01044120250000001) (0.010617329000000009) (0.010430997500000011) (0.010627065500000005) (0.010474516499999989) (0.010379813499999987) (0.01059568100000001) (0.0103637865) (0.010440861999999995) (0.010345188000000005) (0.010283757000000004) (0.010383273999999984) (0.01025327249999998) (0.010489764500000012) (0.010339789999999988) (0.010597989500000002) (0.010420859000000005) (0.010613759000000014) (0.010363384499999989) (0.01052109399999998) (0.010399083500000003) (0.010353610499999999) (0.010391841499999999) (0.009911905500000012) (0.009821525499999997) (0.010112992500000001) (0.010031766000000011) (0.010038488500000012) (0.010068701499999999) (0.010242063499999995) (0.010031592500000006) (0.010161846000000002) (0.01007355850000001) (0.010235030499999992) (0.010183284) (0.010024015000000011) (0.010110136499999992) (0.010122083000000004) (0.010274429500000015) (0.009934184500000012) (0.010227721000000009) (0.010149666500000001) (0.010072301500000005) (0.010142671500000006) (0.009882765000000016) (0.010162210500000005) (0.010117059999999997) (0.010288550499999993) (0.010513850000000005) (0.010057375000000007) (0.010199614499999995) (0.010063049000000004) (0.010569605499999996) (0.010129783000000003) (0.0101442625) (0.010261314500000007) (0.010438273499999998) (0.01030136949999999) (0.010330905999999987) (0.011065501000000005) (0.010516202999999988) (0.010444815499999996) (0.0104691945) (0.010434394) (0.010142838000000001) (0.010738838) (0.0107573745) (0.010398792000000004) (0.010439248499999984) (0.010850570500000004) (0.010373893000000009) (0.010326244999999998) (0.010479787000000004) (0.010490609499999998) (0.010195109499999994) (0.010403655999999997) (0.010275577500000008) (0.010380830999999993) (0.010447236999999998) (0.010445727000000002) (0.010707356500000001) (0.010474165999999993) (0.010342434999999983) (0.010269892999999988) (0.010693897500000007) (0.010450645499999994) (0.0105649315) (0.010058915000000002) (0.010115047500000016) (0.010179859) (0.010144942500000004) (0.009933372499999996) (0.009928074000000009) (0.0100370355) (0.010035411499999994) (0.010074809500000004) (0.0102777275) (0.010001545) (0.010118394500000016) (0.009977435000000007) (0.010418710000000012) (0.010017227000000004) (0.010067016499999998) (0.010136832999999998) (0.010172955000000011) (0.010066001000000019) (0.010265161999999994) (0.010109596499999998) (0.010027983500000004) (0.010133117499999997) (0.010226365500000001) (0.010288757499999995) (0.010469483000000016) (0.010050299499999998) (0.010280313999999999) (0.010191648999999997) (0.010167414) (0.010201142999999996) (0.010474167999999992) (0.010420716499999996) (0.01056046649999999) (0.0103763365) (0.010365801999999993) (0.01041205549999999) (0.010318885) (0.010382750999999996) (0.010804521499999983) (0.010471668000000017) (0.010702642999999998) (0.010388417999999996) (0.010508643500000012) (0.010505951999999999) (0.010797878999999996) (0.010491270499999983) (0.01039308949999998) (0.01040828449999999) (0.0102586135) (0.010307381500000004) (0.010708164499999992) (0.010551343000000005) (0.010217404499999999) (0.01043275199999999) (0.010239765499999998) (0.010531573500000002) (0.010497579999999992) (0.01051886299999999) (0.010540857999999986) (0.010625399500000021) (0.010632006) (0.010670351000000022) (0.01042631799999999) (0.010132759000000005) (0.00997763850000001) (0.009899327000000013) (0.010065539499999998) (0.0101164475) (0.009893381499999993) (0.009991874499999998) (0.010084411000000001) (0.010123530000000006) (0.010231710500000005) (0.010127176499999987) (0.010264251000000002) (0.010229766999999987) (0.010181602000000012) (0.010319647500000001) (0.010044700500000017) (0.010403225000000002) (0.01002096949999999) (0.010132530499999987) (0.010211100500000014) (0.009977441000000017) (0.010251682999999998) (0.010322657499999999) (0.010114904999999993) (0.01026973049999999) (0.010213426499999984) (0.010021006999999985) (0.010271675500000008) (0.010239756000000003) (0.010220947499999994) (0.010093001000000004) (0.010192169000000001) (0.010438165000000013) (0.010292218000000006) (0.010212783500000003) (0.010513415499999998) (0.010413327000000014) (0.010436991999999992) (0.010255820500000012) (0.010674379999999997) (0.01055415350000001) (0.01063710100000001) (0.010514586999999992) (0.010711970499999987) (0.010497715500000004) (0.010594727499999998) (0.010640995499999986) (0.010656445500000014) (0.010619320499999987) (0.010458738500000009) (0.010268333500000004) (0.010314732500000007) (0.010391232) (0.0108735425) (0.010462017500000018) (0.010565231500000008) (0.010534173000000008) (0.01066858200000001) (0.010538357999999998) (0.010494031000000001) (0.010879029499999998) (0.0105620285) (0.010564430999999999) (0.010645510999999996) (0.01033000449999999) (0.010310958499999995) (0.010276340499999995) (0.010157613499999996) (0.009987205499999985) (0.010202866500000005) (0.01006057049999999) (0.010218758000000008) (0.010045576) (0.01014303549999998) (0.010119185000000003) (0.010398519499999995) (0.010247945000000008) (0.010189722499999984) (0.010313064999999996) (0.01005927899999999) (0.010218840999999992) (0.010071965999999988) (0.010019859500000006) (0.010061320000000012) (0.010053555999999991) (0.0100812245) (0.010057905499999992) (0.010073523000000015) (0.0107092815) (0.010386487000000014) (0.010194165499999991) (0.010048506499999998) (0.010412704000000009) (0.010260902999999988) (0.010037852000000014) (0.010079586000000015) (0.010175088499999999) (0.010667902500000007) (0.010375329999999988) (0.01023254350000001) (0.010509014499999983) (0.010510872000000004) (0.010573423500000012) (0.010237564000000005) (0.010656225000000005) (0.01039486449999999) (0.010436664000000012) (0.010469490000000012) (0.010743415499999992) (0.0106476395) (0.010476691499999996) (0.010595689500000005) (0.01054875999999999) (0.01047445150000001) (0.010185822000000011) (0.010311277999999993) (0.010521318000000002) (0.010291318000000008) (0.010184574000000002) (0.010649338500000008) (0.010429566500000001) (0.010701149999999993) (0.010476548000000002) (0.010516165500000008) (0.010835985000000006) (0.01050114499999999) (0.010496627999999994) (0.010722321499999993) (0.0100553065) (0.010031508999999994) (0.010142387000000003) (0.010287181000000006) (0.009949997499999988) (0.010093032500000002) (0.010146230500000006) (0.010286885499999995) (0.010899488499999999) (0.010333802499999989) (0.010087012999999992) (0.010476336500000002) (0.0106800695) (0.010174428999999999) (0.01039901700000001) (0.010105300999999997) (0.010127910000000004) (0.010152188500000006) (0.009944471999999996) (0.010364341999999999) (0.010149724499999999) (0.010084908000000004) (0.010042999499999997) (0.010126224500000003) (0.0103034595) (0.010429275500000001) (0.01031411950000001) (0.01019791099999999) (0.010509198499999997) (0.010233220000000001) (0.01016685349999999) (0.010299982499999999) (0.010301723499999998) (0.010312733000000004) (0.010558989000000005) (0.010331222000000001) (0.010522248499999998) (0.010421175500000018) (0.010469235999999993) (0.0104116655) (0.01037962399999999) (0.0106754835) (0.010724370499999997) (0.01061322000000002) (0.010518641500000009) (0.010532001) (0.010419978999999996) (0.010846518000000013) (0.010283222500000008) (0.010622814500000008) (0.01054496399999999) (0.010241890500000003) (0.01040846949999999) (0.010662120999999997) (0.010703504999999988) (0.010770223999999995) (0.010573127500000001) (0.010598101500000012) (0.010601212499999985) (0.010527230000000012) (0.010607866000000007) (0.010652726000000001) (0.010414268500000004) (0.010722654499999998) (0.009896976999999987) (0.009929589000000003) (0.010073133000000012) (0.010227431999999995) (0.010007473999999988) (0.0102021105) (0.01003106699999999) (0.010154641499999992) (0.010452353999999997) (0.010258419000000019) (0.010400186999999991) (0.012496036999999988) (0.010567805999999999) (0.0102564255) (0.010174649500000008) (0.010184203000000017) (0.010121365499999993) (0.010086311499999986) (0.01000201199999999) (0.010248606999999993) (0.010009503999999989) (0.010139804499999988) (0.010331360000000012) (0.010123938999999985) (0.0105587065) (0.010489591499999992) (0.010545818999999998) (0.010263660000000008) (0.010391086500000007) (0.010259405) (0.010027492499999999) (0.010111916499999998) (0.010586227000000004) (0.010581998000000009) (0.01045325200000001) (0.010375041500000015) (0.010656297999999995) (0.010453559500000015) (0.010609082000000006) (0.010523121999999996) (0.010554744000000005) (0.010690435000000012) (0.01060704250000001) (0.01078618349999999) (0.010428503000000006) (0.010621327000000014) (0.010445386000000001) (0.010462655000000001) (0.01029922300000001) (0.010665509500000003) (0.010397511999999998) (0.010433580499999998) (0.010369109500000001) (0.010682231000000014) (0.010277712999999994) (0.010433389500000001) (0.010743149000000007) (0.010639189999999993) (0.010403871499999995) (0.010404038500000004) (0.01070509750000001) (0.010576405999999997) (0.01073768) (0.010543139499999993) (0.010033862500000018) (0.009951048500000004) (0.010067339999999994) (0.010178001500000006) (0.010041594000000015) (0.010099700499999989) (0.010171033499999996) (0.009943292500000006) (0.010118264500000002) (0.0103939745) (0.0102692115) (0.010113314499999998) (0.010081746999999988) (0.010348118500000017) (0.010299276999999996) (0.010282369) (0.01008750600000001) (0.00999860000000001) (0.01004016449999999) (0.010122937999999998) (0.010213733500000016) (0.009970206499999995) (0.010208222500000003) (0.009955559500000002) (0.009986629499999997) (0.0101799365) (0.010318125499999997) (0.010085948999999983) (0.010578674499999996) (0.010203461499999997) (0.010214776499999995) (0.010260463499999997) (0.0103288235) (0.01040804499999999) (0.010611697500000003) (0.010332022499999996) (0.010306561000000006) (0.010375958500000004) (0.010384401500000001) (0.010680008500000004) (0.010500361999999985) (0.010585302000000005) (0.010586805000000005) (0.010471858) (0.01049003250000001) (0.010652378500000004) (0.010461379500000006) (0.010428022500000009) (0.010498852999999989) (0.010227633500000013) (0.010265232999999999) (0.010442544999999998) (0.010796741000000012) (0.010448731000000003) (0.010551280499999996) (0.010456184499999993) (0.010671515000000006) (0.010510486) (0.010571383000000018) (0.010511024500000007) (0.010611154999999997) (0.01045653449999999) (0.010550097500000008) (0.0103986925) (0.010092457499999985) (0.010386280500000011) (0.009980872500000001) (0.010217169999999998) (0.010410790000000003) (0.010279503499999995) (0.010028111500000006) (0.010295838499999987) (0.010431211999999995) (0.0101311355) (0.010292170999999989) (0.010026395499999993) (0.010215192500000012) (0.01045331549999999) (0.010236134500000008) (0.010213317999999999) (0.01030432499999999) (0.010046959500000008) (0.010143345499999998) (0.009991574000000003) (0.009905365499999999) (0.010244042000000009) (0.009983807500000011) (0.009978533999999997) (0.010015604500000011) (0.010096728999999999) (0.010101864499999988) (0.010183996) (0.010115619500000006) (0.010305666500000005) (0.01015840400000001) (0.01034497049999998) (0.010430553500000009) (0.010464891500000004) (0.010340874) (0.010228124500000005) (0.010750371500000008) (0.010236941999999999) (0.010474621500000003) (0.010373859999999999) (0.010468787999999993) (0.010472529499999994) (0.01070263049999999) (0.010597830499999988) (0.010393837499999989) (0.01029833749999999) (0.010389144999999989) (0.010442540999999986) (0.010531231999999988) (0.010380358499999992) (0.010572782500000003) (0.01038799700000001) (0.010537155500000006) (0.010636090000000015) (0.010530946499999999) (0.010351217999999995) (0.010379248999999993) (0.010695847500000022) (0.010642388000000017) (0.010488895499999984) (0.01051369549999999) (0.010767813500000015) (0.010367452999999985) (0.010537045000000009) (0.010252323000000008) (0.01014052) (0.010118473999999988) (0.010056000500000009) (0.009900738000000006) (0.00998972649999999) (0.010002432499999991) (0.009902308499999998) (0.010236056500000007) (0.010139699000000016) (0.010124442999999997) (0.010076586999999998) (0.010315739000000004) (0.010269146500000007) (0.010240731499999989) (0.010094500499999992) (0.010071329500000017) (0.010318008000000004) (0.01006616049999999) (0.009946263499999997) (0.010155983499999993) (0.010183667000000007) (0.009961759999999986) (0.009989876000000009) (0.0102479075) (0.009994361500000007) (0.010197721500000007) (0.010358194000000015) (0.010332741000000006) (0.010143037000000008) (0.01043607449999999) (0.010317555000000006) (0.01043036) (0.010525552500000007) (0.010446028999999996) (0.010493153000000005) (0.010281871999999997) (0.010513230000000012) (0.010498322500000004) (0.010492440500000005) (0.010291168000000003) (0.010417067999999988) (0.010661266500000002) (0.010619415999999993) (0.01039896400000001) (0.010519982499999997) (0.010679963499999987) (0.010590053000000002) (0.010608171999999999) (0.010399526500000006) (0.010233732999999981) (0.010352310999999989) (0.01039017049999999) (0.01044945650000001) (0.01051274549999999) (0.010294948499999998) (0.010626189000000022) (0.010686428999999997) (0.01044015999999999) (0.010491115999999995) (0.010596774500000017) (0.010631005500000013) (0.010326849500000013) (0.010512694000000003) (0.010300028499999989) (0.014839863499999995) (0.010342651000000008) (0.010160836500000006) (0.010019397) (0.010110859000000014) (0.009905764500000011) (0.009996714000000004) (0.01009845299999998) (0.009991350499999996) (0.010179740500000006) (0.010140701000000002) (0.010333294000000007) (0.010466862999999993) (0.010147758500000006) (0.010082413999999984) (0.010101335000000003) (0.010154226000000002) (0.01009631100000001) (0.010009842500000005) (0.009911056499999987) (0.010204138500000001) (0.010298528500000015) (0.010045342999999998) (0.010372121999999998) (0.010220313999999994) (0.01002437199999999) (0.010123794500000005) (0.010149884999999997) (0.0102990575) (0.010018369) (0.010112789999999997) (0.010542681999999998) (0.01046601200000001) (0.010350264000000012) (0.010395408999999994) (0.010497013) (0.01054413500000001) (0.010565423500000004) (0.010271069000000008) (0.010369121500000009) (0.010660237500000003) (0.010571643499999991) (0.010447739000000011) (0.01056723900000002) (0.010477244499999996) (0.010361547500000012) (0.010654518999999987) (0.010485645000000002) (0.010370474500000004) (0.010365716999999983) (0.010345028500000006) (0.010474535999999979) (0.010435975500000014) (0.010419402000000008) (0.010335109500000009) (0.010583117000000003) (0.010467974000000019) (0.010660853500000012) (0.010387443499999996) (0.010597898999999994) (0.010644252499999993) (0.010489052500000012) (0.010395335499999991) (0.012360492) (0.012383602000000007) (0.012421724500000009) (0.012428082999999979) (0.012331102499999996) (0.012455540000000001) (0.012427407500000001) (0.012385399500000019) (0.012598592500000005) (0.012579763500000007) (0.012346252500000002) (0.012350530999999998) (0.012234610500000007) (0.012287992500000011) (0.012201096500000008) (0.012578290500000006) (0.012494587000000001) (0.012516406999999993) (0.012124827500000004) (0.012556471999999999) (0.012235327500000004) (0.012364063999999994) (0.012153967999999987) (0.012647730499999996) (0.012499013500000003) (0.012403572500000015) (0.012309814500000016) (0.012462615499999996) (0.012369375500000002) (0.012647610000000004) (0.012590712500000004) (0.012777618500000004) (0.01244348699999999) (0.0126186665) (0.012809752999999993) (0.012507326499999999) (0.012583665000000008) (0.012567414999999998) (0.012857073999999996) (0.01265946100000001) (0.013069136000000009) (0.012760577500000009) (0.013098364000000001) (0.012653479999999995) (0.013132335499999995) (0.013159259999999992) (0.012832228999999987) (0.01292799800000001) (0.012907688) (0.012529248499999993) (0.012929824000000006) (0.012712267499999999) (0.012693891000000013) (0.012694627) (0.012508987500000013) (0.012988990000000006) (0.012774801500000002) (0.0126033475) (0.012949652500000006) (0.012610016500000015) (0.012870096499999983) (0.01266304800000001) (0.012903767499999996) (0.012769608499999988) (0.012139309000000001) (0.01246877049999999) (0.01245523450000001) (0.012227216999999999) (0.012575465500000008) (0.012595361999999999) (0.012422412499999994) (0.012777330000000003) (0.012301265000000006) (0.012497228499999999) (0.012301767500000005) (0.012376232000000001) (0.012548945500000006) (0.012772197000000013) (0.012283879999999997) (0.012439654499999994) (0.012463734500000004) (0.012302545499999998) (0.012301972000000008) (0.012235029000000022) (0.012232156999999994) (0.012145139999999999) (0.012230710500000005) (0.012376294499999996) (0.012415383000000002) (0.012514451499999996) (0.012443153999999998) (0.012572532499999997) (0.012279961500000006) (0.012469713999999993) (0.012321176000000017) (0.012226799999999982) (0.012679374000000007) (0.012558735000000001) (0.012739457499999995) (0.012924850500000001) (0.012570196000000006) (0.012480364000000008) (0.012741200999999994) (0.012626126999999987) (0.012822029499999998) (0.012757600499999994) (0.013097625000000002) (0.012602420000000003) (0.012845111999999992) (0.012599998500000001) (0.012679540500000003) (0.012813389500000008) (0.012526564500000004) (0.012660903000000015) (0.012555636500000009) (0.013291235499999998) (0.012606772500000002) (0.012927509000000004) (0.012532394500000016) (0.012666657000000012) (0.012620373000000004) (0.012833341000000012) (0.012629413000000006) (0.012924242500000002) (0.0126644395) (0.012736894500000012) (0.012937898000000003) (0.012593248500000001) (0.012320431999999992) (0.012240550500000003) (0.012151075999999997) (0.012231845499999991) (0.01221407549999999) (0.012196590000000007) (0.012355516999999996) (0.012486371499999996) (0.012587582) (0.012427403500000003) (0.012514000499999997) (0.013121855500000001) (0.012412299000000002) (0.012570382000000005) (0.012416603499999998) (0.013127856000000007) (0.012635404000000003) (0.01268992749999999) (0.012337741000000013) (0.012344011000000002) (0.012272295500000016) (0.01237941599999999) (0.012688627499999994) (0.012281290500000014) (0.01250250800000001) (0.012281024000000001) (0.012371948500000007) (0.012443875000000007) (0.012512801500000018) (0.01241332249999999) (0.012575830499999996) (0.012413201000000013) (0.01290814500000001) (0.012841985999999986) (0.01266015949999999) (0.013010014) (0.012850582500000013) (0.012816108000000007) (0.012659459500000012) (0.012501144000000006) (0.012687917500000007) (0.012869523499999994) (0.013056449500000011) (0.012692643000000003) (0.012922197999999996) (0.012912826000000002) (0.012987845999999997) (0.012742997499999992) (0.012873386) (0.012538281499999998) (0.012689672999999985) (0.012735746000000006) (0.012438101000000007) (0.0126771215) (0.012645911499999996) (0.012696878999999994) (0.013060150999999992) (0.012754300499999996) (0.012748181000000011) (0.012598059999999994) (0.013029324500000009) (0.012643963000000008) (0.012895954000000001) (0.012939576500000008) (0.012376259000000014) (0.01220125000000001) (0.0123099775) (0.012356724000000013) (0.012189633500000005) (0.012413093) (0.012408013999999995) (0.012554102499999997) (0.012270515999999995) (0.012604677499999994) (0.012394324499999998) (0.012384907500000014) (0.01266390499999999) (0.012549128999999992) (0.01264928400000001) (0.012755438000000008) (0.012544578500000014) (0.012253329499999993) (0.012498462499999988) (0.012375130499999998) (0.012493392500000006) (0.012450686000000002) (0.012419565500000007) (0.012124690000000007) (0.012872276000000002) (0.012498317499999995) (0.012562943499999993) (0.012190871000000006) (0.012406533500000011) (0.012498854000000004) (0.012432369999999998) (0.012737538499999992) (0.012506585999999986) (0.012671284500000005) (0.01258319350000002) (0.012519229999999992) (0.012605188500000017) (0.012639115999999992) (0.012633007500000001) (0.012531908000000008) (0.012864859000000006) (0.012899068) (0.012976710000000002) (0.012841687500000018) (0.012786524499999993) (0.012770623999999994) (0.012539598500000013) (0.012650390999999997) (0.0126495945) (0.013044536499999995) (0.012704413999999997) (0.012466889999999994) (0.01254806550000001) (0.012617068000000023) (0.013140951999999997) (0.01310873550000001) (0.012664882500000002) (0.012645060999999999) (0.01276222299999999) (0.012790244000000006) (0.012770577500000005) (0.012832618000000004) (0.012913218500000004) (0.01288521799999999) (0.012441154499999996) (0.016775057000000024) (0.012219926499999992) (0.012321448999999998) (0.012383712000000005) (0.01217359350000001) (0.01272767000000001) (0.012450015999999994) (0.012922224499999996) (0.012470399000000007) (0.01246497249999999) (0.012383864000000008) (0.013046290000000002) (0.012338994000000006) (0.012529325000000008) (0.012617384499999995) (0.01244550300000001) (0.012289475499999994) (0.012405978999999998) (0.012397388500000009) (0.012480492499999996) (0.012174090500000012) (0.012555978500000009) (0.0122233125) (0.012407004499999999) (0.012633602999999993) (0.012389765000000011) (0.012339848) (0.01258801100000001) (0.012396380999999998) (0.012168713499999997) (0.012404201500000003) (0.0127092605) (0.012504230499999991) (0.012644704499999992) (0.012841515999999997) (0.012460421) (0.0128190985) (0.012945066000000005) (0.012463011999999996) (0.012740438499999993) (0.012700837500000006) (0.012727465500000007) (0.012812540499999997) (0.01276758800000001) (0.012637055999999994) (0.01265359299999999) (0.012770332499999995) (0.012616838499999991) (0.012666837) (0.012796715500000014) (0.012720045999999999) (0.012614831999999992) (0.012498304500000015) (0.012761728000000014) (0.012533060499999998) (0.012919773499999995) (0.012806219000000008) (0.012695902999999994) (0.012600099500000003) (0.013095784499999999) (0.012707491500000001) (0.012660752499999997) (0.012583281500000001) (0.012324438000000007) (0.0125904025) (0.012474978499999997) (0.01265935800000001) (0.012732644499999987) (0.012420063499999995) (0.012298973500000004) (0.012267043000000019) (0.012721384000000002) (0.012375710000000012) (0.012340217) (0.012574555500000001) (0.012316993499999998) (0.012558820999999998) (0.01233806400000001) (0.012341688000000017) (0.012230723000000013) (0.01237227299999999) (0.012425790500000006) (0.0123393495) (0.012773328) (0.012244765000000005) (0.012170777999999993) (0.012575230999999992) (0.012315994499999997) (0.012847756000000002) (0.012517022000000003) (0.012322153999999988) (0.012612596000000004) (0.012955200999999986) (0.0122514445) (0.012736674000000003) (0.012846005999999993) (0.012718298500000003) (0.012626824000000009) (0.012794317999999999) (0.012572842) (0.012709491500000003) (0.012716046000000009) (0.012851220499999996) (0.01250598) (0.01279901550000001) (0.012945717499999995) (0.012637674000000002) (0.012787908) (0.013089379999999998) (0.012877589499999995) (0.012789505499999992) (0.012374521999999999) (0.012722501999999997) (0.012830797000000005) (0.012514423499999996) (0.012759394500000007) (0.0128184925) (0.012713383999999994) (0.012840688000000003) (0.012498808) (0.012629457499999983) (0.012956794499999993) (0.012726909000000008) (0.012808463000000006) (0.012941626000000012) (0.012673353500000026) (0.012893136000000013) (0.012241645500000009) (0.01210293250000001) (0.012411080500000005) (0.0121580575) (0.012149296500000004) (0.012430152999999985) (0.012306109999999995) (0.01222160600000001) (0.012558470000000002) (0.012547145999999995) (0.012559133) (0.01281445049999999) (0.012382313999999991) (0.012361496) (0.012623442499999998) (0.012544179500000002) (0.012623939999999986) (0.012226697500000008) (0.012190260999999994) (0.012490358000000007) (0.012234867999999996) (0.012403759500000014) (0.0124488195) (0.012404234) (0.012263148000000001) (0.012328193000000001) (0.01235488550000001) (0.0125633795) (0.012650102499999996) (0.012375683999999998) (0.012614448) (0.012478925000000002) (0.012743501500000018) (0.0129350295) (0.012448743499999998) (0.012568177) (0.012541162999999994) (0.012615796999999998) (0.012851348999999998) (0.012476624000000006) (0.012492184999999989) (0.012841713000000005) (0.013241968500000006) (0.012684402999999997) (0.012799401499999988) (0.012769177499999992) (0.012691519500000012) (0.012637207500000011) (0.012383628000000008) (0.012749493500000014) (0.01288889) (0.012867957) (0.012604307500000009) (0.012856824000000017) (0.012717199500000012) (0.01241971) (0.012774441000000011) (0.012582819000000009) (0.012902323500000007) (0.012607675999999998) (0.012830305) (0.013238386500000018) (0.013006409999999996) (0.012756758000000007) (0.012346626999999999) (0.012264775500000005) (0.012455749000000002) (0.012294663999999997) (0.012139507500000007) (0.012419911000000006) (0.012231773500000015) (0.012210128) (0.0124885265) (0.012588980999999985) (0.012499311999999999) (0.012743403999999986) (0.012311905499999984) (0.012555114999999992) (0.012476407999999994) (0.012582830000000003) (0.012592628999999994) (0.012452562500000014) (0.012389293499999995) (0.012400185999999994) (0.01236256949999999) (0.012457999000000011) (0.012392031000000012) (0.012186105500000002) (0.012475401999999997) (0.012402192499999992) (0.0122670275) (0.012514746500000007) (0.012599519999999989) (0.012606858499999998) (0.012377605999999985) (0.012427854000000016) (0.012919874500000011) (0.012883780999999997) (0.012594420999999995) (0.012598775500000006) (0.012594637500000005) (0.01286884599999999) (0.012777670000000005) (0.012607050499999994) (0.01268321850000001) (0.012827358499999997) (0.012983947499999995) (0.013389818499999998) (0.013055031000000009) (0.012672059499999985) (0.012778679000000001) (0.012723810500000002) (0.01261804300000001) (0.012540907000000004) (0.012877293499999998) (0.0128283545) (0.012952632999999991) (0.012554224500000002) (0.012851426000000013) (0.012982612500000004) (0.012835450499999998) (0.012845815999999996) (0.012863728000000005) (0.012824545499999992) (0.012636966) (0.01281360199999998) (0.012692397499999994) (0.013108106499999994) (0.012795571499999991) (0.012427984500000003) (0.012450153499999991) (0.012500642499999992) (0.012839913999999994) (0.012516234000000015) (0.012250141500000006) (0.012275468999999997) (0.012365974999999987) (0.01217866849999999) (0.012783817500000003) (0.012309531499999998) (0.012457033500000006) (0.012635157500000008) (0.012434093500000007) (0.012390774000000007) (0.012684840500000003) (0.012355307999999995) (0.012240602500000017) (0.012249075999999998) (0.012291229499999987) (0.012326715499999988) (0.012534925500000002) (0.0123913415) (0.012529495000000002) (0.012204787000000022) (0.01255216649999999) (0.012538510500000002) (0.012435819) (0.012572163000000011) (0.012549765000000004) (0.012423786499999992) (0.012524059500000004) (0.012953792000000006) (0.012575841000000004) (0.012852877499999998) (0.012788683000000009) (0.012725907000000009) (0.012678211999999994) (0.01312192949999999) (0.012927782999999998) (0.013095029000000008) (0.013031942000000005) (0.012969375000000005) (0.012724792999999998) (0.012929873499999994) (0.01286547149999999) (0.012911159500000005) (0.012444707499999999) (0.012777580499999996) (0.012902841999999998) (0.012610293000000009) (0.012584704000000002) (0.013000543000000003) (0.012701272999999999) (0.012550795500000003) (0.012721572) (0.01297855199999999) (0.012781356500000007) (0.013430159499999997) (0.013683764499999987) (0.012771110500000002) (0.012678620500000001) (0.012567103499999996) (0.012600912999999991) (0.012481862499999996) (0.012559597000000006) (0.012326702999999994) (0.012508697999999999) (0.012959929999999995) (0.012505311000000005) (0.012836857499999993) (0.012736726500000004) (0.012585633499999999) (0.012302657500000008) (0.013205064500000002) (0.012696033499999995) (0.012591724999999984) (0.012733141500000017) (0.012509225499999999) (0.012447735000000015) (0.012502480499999996) (0.012312382499999996) (0.012379936500000008) (0.0121985795) (0.012278953499999995) (0.012293556999999997) (0.012424634500000004) (0.012351648999999992) (0.01239679299999999) (0.01238289549999999) (0.012714826499999984) (0.012246385499999998) (0.012830741000000007) (0.012422581999999988) (0.012510547499999997) (0.012602808999999993) (0.012656452999999984) (0.01256852750000001) (0.012772306000000011) (0.012820677499999988) (0.012701089999999984) (0.012577193) (0.012468421000000007) (0.012865731500000005) (0.012759468999999996) (0.012592418500000008) (0.012886339499999996) (0.012917589999999993) (0.012754875999999998) (0.012571784499999988) (0.0129748965) (0.012617964499999995) (0.012574667000000012) (0.012605112000000002) (0.01303021) (0.012990896500000002) (0.012841186500000004) (0.012865719999999997) (0.012516637499999997) (0.012752818999999999) (0.012767445999999988) (0.01286458750000001) (0.012631794000000016) (0.012756118499999997) (0.012795837500000018) (0.012883448500000005) (0.01261040200000002) (0.012506701000000009) (0.012239997500000002) (0.0126184565) (0.012168535499999994) (0.012694167499999992) (0.012238236) (0.012296323500000012) (0.012262591500000017) (0.012340838000000007) (0.012519165999999998) (0.012506615000000013) (0.012450207000000005) (0.012447852999999981) (0.012409834999999994) (0.012480726999999997) (0.012476671500000008) (0.012779333500000004) (0.012466767500000003) (0.012197178500000003) (0.012268010999999995) (0.012262857499999988) (0.012667362999999987) (0.012428224999999987) (0.012278010499999992) (0.012709156) (0.012577086000000001) (0.012435768000000014) (0.012384721000000001) (0.012373169500000003) (0.0124492925) (0.01234921500000001) (0.01246678250000001) (0.012750125499999987) (0.012570314999999999) (0.012506180500000005) (0.012562579500000004) (0.012458718000000008) (0.012600675000000006) (0.012966488500000012) (0.012934059500000011) (0.013014539000000006) (0.012756229499999994) (0.01316725349999999) (0.012735138500000007) (0.013452922999999992) (0.012722421999999997) (0.0127956595) (0.012984183499999996) (0.012501685000000012) (0.013157314000000003) (0.013174673000000012) (0.012632767500000003) (0.012489622000000006) (0.012925867499999993) (0.012950083000000001) (0.012724303499999992) (0.0125615335) (0.012657106000000001) (0.012771646999999997) (0.012690472000000008) (0.012864523500000002) (0.012890350000000009) (0.012659878999999999) (0.012669856499999993) (0.012296061999999996) (0.012288921999999994) (0.012525118000000002) (0.01246679349999999) (0.012534426000000001) (0.012269269999999999) (0.012347827500000005) (0.01262247000000001) (0.012361336) (0.012624978500000009) (0.012717766499999991) (0.01240915849999999) (0.012354794500000002) (0.012566899000000006) (0.012396507000000001) (0.012370634500000005) (0.0125971275) (0.012714688000000002) (0.012484585499999992) (0.0124619495) (0.012960560999999995) (0.01238343950000001) (0.012108549499999996) (0.012585470500000001) (0.01248051850000001) (0.012430965500000002) (0.012568812499999998) (0.012664835) (0.01247643200000001) (0.012663502499999979) (0.012313558500000002) (0.012590994500000008) (0.012864988500000007) (0.012755607000000002) (0.012875336000000001) (0.012490297999999997) (0.012861587500000007) (0.01259464049999999) (0.012688442000000008) (0.012800883499999999) (0.012719123999999998) (0.012666880499999991) (0.012653089999999992) (0.012544077) (0.012778486500000005) (0.01280927350000001) (0.013023278999999999) (0.012744697999999999) (0.012676483000000002) (0.012645565999999997) (0.012499660499999996) (0.012600883999999993) (0.012516872499999998) (0.012470397500000022) (0.012578747000000001) (0.013102895000000003) (0.012980964499999997) (0.012869237999999991) (0.012997526500000009) (0.01288830249999999) (0.012983723500000016) (0.012781962500000008) (0.012986328999999991) (0.012906588999999996) (0.012105564499999985) (0.012482989000000014) (0.012284527999999989) (0.012338580500000002) (0.012636264499999994) (0.012506539499999997) (0.012386849499999991) (0.012381763000000004) (0.012710881000000007) (0.01228728450000001) (0.012429223500000003) (0.012484592000000003) (0.012224142999999993) (0.012540371999999994) (0.012566380499999988) (0.012351085499999997) (0.01246399849999999) (0.012264313499999999) (0.012325503000000015) (0.012305692500000007) (0.012480458) (0.012201873000000002) (0.012190733499999995) (0.012659283499999993) (0.012787849500000004) (0.012333651000000001) (0.012290427500000006) (0.01260289249999999) (0.01273872949999999) (0.01252722299999999) (0.01238354400000001) (0.012566848500000005) (0.012743461499999983) (0.012898672500000014) (0.013177302000000002) (0.012815072999999996) (0.012641068000000005) (0.012695805500000004) (0.012568672500000017) (0.012632490999999996) (0.012791634999999996) (0.012680780000000003) (0.013190616499999988) (0.013008283499999995) (0.012828693499999988) (0.012792563999999992) (0.013447692999999997) (0.0127685305) (0.012448055500000013) (0.013249338499999985) (0.012623615000000005) (0.012830907000000003) (0.012804629499999984) (0.01291767349999999) (0.012740016000000007) (0.012688243500000002) (0.012898679499999996) (0.012645907999999997) (0.013131345500000002) (0.01303442349999999) (0.012625444499999985) (0.012688249499999998) (0.012857789000000008) (0.01301803700000001) (0.012452546499999995) (0.012354496999999992) (0.012496158999999993) (0.012356039499999999) (0.012441960999999988) (0.012165057499999993) (0.012195612999999994) (0.012375387500000001) (0.012576742500000002) (0.012731141500000001) (0.012518901499999999) (0.012493490999999995) (0.012345504499999993) (0.012369698999999998) (0.012454434) (0.012491005000000013) (0.012653316499999998) (0.012203989999999998) (0.012492226000000009) (0.012419683500000014) (0.012553726000000001) (0.012424618500000012) (0.012390011000000006) (0.012525185500000008) (0.012457793000000009) (0.01235417450000001) (0.012620810499999996) (0.01226477749999999) (0.012549144999999998) (0.012541053500000024) (0.012385953499999991) (0.01228675650000001) (0.012864454499999997) (0.012556437000000004) (0.012589144999999982) (0.01267412150000001) (0.012625321500000009) (0.013189857) (0.013184506499999984) (0.012553815499999996) (0.012845394499999996) (0.012688320500000017) (0.013017132500000014) (0.012739901499999998) (0.012869400999999989) (0.012618968499999994) (0.012616245500000012) (0.012916684000000012) (0.012974251000000006) (0.0126437395) (0.013042157999999998) (0.012815667499999989) (0.012702272499999986) (0.012754747499999983) (0.012594987000000002) (0.01250445800000001) (0.012637322499999992) (0.012503316) (0.012766496500000002) (0.012898164500000017) (0.012790205500000013) (0.01275902600000002) (0.012702335000000023) (0.012986940499999988) (0.012712872500000014) (0.012492994500000007) (0.012431390000000014) (0.012389148500000002) (0.012703106000000006) (0.012580837999999997) (0.012470482500000005) (0.012445119000000004) (0.012348617000000006) (0.012508505500000003) (0.012475037500000008) (0.012588778500000009) (0.012602917000000005) (0.012420859000000006) (0.01243400700000001) (0.01263044399999999) (0.012412728999999997) (0.012462045500000005) (0.012529106500000012) (0.012259483000000002) (0.012360596000000001) (0.012448848499999998) (0.012297337500000005) (0.012303188000000007) (0.012813470999999993) (0.01229901550000001) (0.012816686999999993) (0.012385247000000002) (0.012343097500000011) (0.012407200500000007) (0.0123804255) (0.012565422000000007) (0.012481143) (0.012847632999999997) (0.012965646500000011) (0.012625456999999993) (0.012739249500000008) (0.012616482999999998) (0.012857722500000002) (0.012612288999999999) (0.012852008500000012) (0.012960162499999997) (0.012821284999999988) (0.012787216500000004) (0.01264689599999999) (0.012848372999999982) (0.012901511500000004) (0.012693681499999998) (0.012583668499999992) (0.012573017000000006) (0.0132523425) (0.012509850499999989) (0.013005861000000007) (0.012684159499999986) (0.012838422500000002) (0.01268657949999999) (0.012872686000000008) (0.012797703000000007) (0.012881815500000005) (0.012743525999999991) (0.012815158000000007) (0.012809356000000008) (0.013022602999999994) (0.012549948000000005) (0.012693816499999996) (0.012698828999999981) (0.012532381000000009) (0.01235045600000001) (0.012323077500000015) (0.012287942499999996) (0.012447220999999994) (0.01246386649999999) (0.012454422500000006) (0.0124513245) (0.01237373750000001) (0.012523656999999994) (0.012413423499999993) (0.012757426500000002) (0.012538967000000012) (0.012296912999999993) (0.01235865450000001) (0.012331117000000016) (0.012657961999999995) (0.012442460000000002) (0.012315830000000014) (0.012161695) (0.012478094999999995) (0.012811501500000003) (0.012319142500000005) (0.012374694999999991) (0.012351541000000008) (0.012307527999999998) (0.012825026500000017) (0.012252472999999986) (0.012452382499999998) (0.012528698500000005) (0.012621832999999999) (0.012826822999999987) (0.013005343000000003) (0.012782075500000004) (0.012620700999999984) (0.01295363699999999) (0.012822287500000015) (0.012717353999999986) (0.012506168499999998) (0.012774406999999988) (0.013066360499999999) (0.012737681) (0.013010849500000005) (0.0128740195) (0.012875921499999984) (0.012820897499999998) (0.01273204600000001) (0.01247700950000001) (0.012715602000000006) (0.012752403499999995) (0.01260116900000001) (0.012977627000000005) (0.012453931500000001) (0.012896696999999985) (0.0127285085) (0.012741391500000004) (0.012900111500000006) (0.012780146999999992) (0.012867806999999995) (0.0130900335) (0.012811936999999995) (0.012783131000000003) (0.012612394499999999) (0.012130463499999994) (0.012200208500000004) (0.012174934000000012) (0.012768987499999995) (0.012470714500000007) (0.012382639500000014) (0.012647845000000005) (0.012569912500000002) (0.012291573) (0.012292887000000002) (0.01235786450000001) (0.012491636) (0.012488619500000006) (0.014581823499999993) (0.012338912499999993) (0.012479968499999994) (0.012349776500000006) (0.012179091000000017) (0.012297907499999983) (0.012531331000000007) (0.012172410500000008) (0.012524377000000003) (0.012656728000000006) (0.012826793499999989) (0.012914947499999996) (0.012283702500000007) (0.012516360000000004) (0.012850411999999992) (0.0123761295) (0.012439801000000014) (0.012294579) (0.012826961999999983) (0.012646478000000003) (0.012442827500000017) (0.01289019000000001) (0.012630077999999989) (0.012294818499999999) (0.012448733000000017) (0.012803194500000004) (0.012765047499999987) (0.012639209999999998) (0.012555728500000002) (0.012750374999999994) (0.013129359000000007) (0.0129380635) (0.01265346399999999) (0.012920571999999991) (0.012713550500000004) (0.012635408) (0.012650649) (0.012544243999999996) (0.01280266549999999) (0.012769656000000004) (0.012679063000000004) (0.01281024850000001) (0.012560473499999988) (0.012924862999999995) (0.012773174999999998) (0.012953475500000006) (0.012717586000000017) (0.012584214999999996) (0.012647486999999999) (0.013175306999999997) (0.012610471500000012) (0.012647642500000014) (0.012510897000000007) (0.012409626500000007) (0.012469647) (0.012215778999999996) (0.012378963500000006) (0.012580653999999997) (0.012582521999999999) (0.012529871499999998) (0.012330025500000008) (0.012699000000000002) (0.012427609500000006) (0.012270532) (0.0124536975) (0.012462685000000001) (0.01223242749999999) (0.012354379499999998) (0.012227592499999995) (0.012333301000000005) (0.012698449000000014) (0.012212335000000005) (0.012302586500000004) (0.0126806275) (0.013081891999999998) (0.012516185000000013) (0.01229847499999999) (0.0125677805) (0.012427368000000022) (0.012305127499999999) (0.012355167) (0.01232866249999999) (0.013134553000000007) (0.0126780165) (0.012941447999999994) (0.012774563000000003) (0.012588791500000002) (0.013162291000000007) (0.012738861000000004) (0.012470844499999995) (0.013633885000000012) (0.013083585499999995) (0.012819907500000005) (0.013197075500000016) (0.012649952000000006) (0.01293441649999999) (0.012873623) (0.012696973000000014) (0.012556265999999996) (0.012702231000000008) (0.013198157000000016) (0.012853526000000004) (0.013043337500000016) (0.012594866999999996) (0.012685817499999988) (0.012647575000000008) (0.012737753500000004) (0.012873395999999995) (0.012783324000000013) (0.012561395499999989) (0.012563784500000008) (0.012578290999999991) (0.012917952999999996) (0.012498971000000011) (0.012227644999999995) (0.012245566) (0.012292592000000005) (0.012239578000000001) (0.012254428499999998) (0.012454417499999995) (0.012306530499999996) (0.01237672350000002) (0.012714720499999999) (0.012763935000000004) (0.0124281475) (0.012508066499999998) (0.012933212999999985) (0.012695652500000001) (0.012604540000000011) (0.012842051999999993) (0.0124416985) (0.012630628000000019) (0.012556227000000003) (0.012497717499999991) (0.01255891349999999) (0.01235681000000001) (0.012383308499999995) (0.012498455999999991) (0.012633689000000003) (0.0123906815) (0.012281182500000015) (0.012377566000000007) (0.01247445450000001) (0.012620208999999993) (0.012261370499999993) (0.012421138499999998) (0.012562453500000015) (0.012687592500000011) (0.012897620999999998) (0.012901116000000004) (0.012588458999999996) (0.01258472649999999) (0.012465971500000006) (0.012546941500000006) (0.012796633500000001) (0.012838779500000008) (0.012567981500000006) (0.012589153499999992) (0.01273898150000001) (0.012606456500000002) (0.012749883000000004) (0.012590876) (0.012715351000000014) (0.012646159000000004) (0.0125775105) (0.012994209500000006) (0.012752200500000005) (0.012572363999999989) (0.012697247000000009) (0.012585278499999991) (0.012703637000000004) (0.012590646999999996) (0.012820940999999988) (0.012705964500000014) (0.012782764000000002) (0.012704503000000006) (0.012731224) (0.013067483000000005) (0.012258484500000014) (0.012355836000000009) (0.012416264999999996) (0.012357439499999998) (0.012545971000000003) (0.012492503999999988) (0.012434391999999989) (0.012343197) (0.012380896500000002) (0.012519058) (0.0125515125) (0.012734318999999994) (0.012799573500000008) (0.012788720000000003) (0.012573719999999997) (0.012549525000000006) (0.01221075499999999) (0.012365368500000001) (0.012263648000000002) (0.012198642499999995) (0.012327439999999995) (0.012355877000000001) (0.012456077499999996) (0.012530698500000007) (0.01232696250000001) (0.012681965500000003) (0.012830414500000026) (0.012405712) (0.012609885000000001) (0.012637984500000005) (0.012579936) (0.012676242000000004) (0.0127051485) (0.012744809499999982) (0.012819645500000004) (0.012774795000000005) (0.012457350500000006) (0.0127721175) (0.012689430000000002) (0.012598811000000001) (0.012565028500000006) (0.012867187500000002) (0.012599337999999988) (0.012676581499999992) (0.013193127500000013) (0.013028983999999993) (0.012651464999999987) (0.012797218999999999) (0.012635816000000022) (0.012647613500000002) (0.012838451499999987) (0.012722109499999995) (0.012489853499999995) (0.01279509999999999) (0.012968751999999986) (0.012839075500000005) (0.012752610500000011) (0.013044759500000017) (0.012759151499999996) (0.012719966000000013) (0.01266506299999999) (0.012822892999999988) (0.013024705499999997) (0.012703119499999999) (0.012421522000000004) (0.012523181999999994) (0.012210715999999996) (0.012280808500000004) (0.012525887000000013) (0.01222239) (0.012237185000000012) (0.012515048) (0.0124349515) (0.012396492000000009) (0.01272081400000001) (0.012466959) (0.012749101999999998) (0.012591890999999994) (0.01248390499999999) (0.012312831999999982) (0.012428221000000017) (0.01264419650000001) (0.012189625999999995) (0.012857847500000005) (0.012401093500000016) (0.012436032) (0.012402768000000008) (0.012352193999999997) (0.012289730500000012) (0.012671916500000005) (0.01235480450000001) (0.012394187000000001) (0.012698717499999998) (0.012530957499999981) (0.012285641) (0.012326268500000001) (0.01249249799999999) (0.012827448500000005) (0.012461432499999994) (0.012535948000000005) (0.012568215500000007) (0.012792408500000005) (0.012841377000000001) (0.012421409500000008) (0.012830102999999995) (0.01274417600000001) (0.013035537500000013) (0.012728806500000009) (0.012667585500000009) (0.012948188499999999) (0.012515134000000011) (0.012726644499999995) (0.0126166375) (0.012698611999999998) (0.013510890499999983) (0.012978063999999997) (0.012609056500000007) (0.012584977999999997) (0.012698474000000001) (0.012643677999999992) (0.013032568499999994) (0.0131948635) (0.012842117500000014) (0.012700804999999996) (0.012469647999999986) (0.012659438000000009) (0.0125873695) (0.01266470950000001) (0.01232681749999999) (0.012276147000000001) (0.01238505749999999) (0.012404836500000002) (0.012153571499999988) (0.012521098499999994) (0.012239330500000006) (0.012624359000000016) (0.012296643999999995) (0.012401629499999997) (0.01260288050000001) (0.012339329499999996) (0.01231504) (0.012395226999999995) (0.012477246500000011) (0.012808803999999993) (0.012420743999999997) (0.012237745499999994) (0.0124955395) (0.012390946000000014) (0.012395112500000013) (0.012512540500000002) (0.012889242499999995) (0.012738885499999991) (0.012380784499999992) (0.0122986385) (0.012240252000000007) (0.012636271500000004) (0.012447626500000003) (0.01241821700000001) (0.01224630900000001) (0.012459015000000004) (0.012709255000000003) (0.012833525000000012) (0.0127128205) (0.012618013499999997) (0.012971795000000008) (0.012654496000000001) (0.012501164499999995) (0.012714829499999997) (0.012663981000000019) (0.012834578500000013) (0.012767292500000013) (0.012885777000000001) (0.012724588000000009) (0.012548735499999991) (0.013049757500000009) (0.012719732000000011) (0.012563118499999998) (0.012483791000000008) (0.012407885499999993) (0.01267362050000001) (0.012463660500000015) (0.012831503000000008) (0.012702684500000005) (0.0125528055) (0.012783087499999998) (0.013024424000000007) (0.013165434000000004) (0.012582569000000002) (0.012794537500000008) (0.01309136000000001) (0.01265709750000002) (0.012603740499999988) (0.012196354000000006) (0.012424171999999997) (0.012458077499999984) (0.012383018499999995) (0.0124349755) (0.01240010050000001) (0.012624929999999993) (0.012243492999999994) (0.012382568999999996) (0.012749426499999994) (0.012564133500000005) (0.012481596000000011) (0.012473554999999997) (0.012305159499999982) (0.012398254999999997) (0.012336480499999997) (0.012543315) (0.012331408500000002) (0.012267999500000001) (0.012495803) (0.012833861500000016) (0.012633998499999993) (0.01259557950000001) (0.012398480500000003) (0.012548567999999996) (0.0122926265) (0.01251416200000001) (0.012728112000000014) (0.012600811999999989) (0.012450257999999992) (0.01221538200000001) (0.012336353000000008) (0.012730645499999999) (0.012817521999999998) (0.0129005705) (0.012633383499999998) (0.012594043) (0.0131885635) (0.0131193265) (0.012794058499999997) (0.012681194499999993) (0.012744744500000002) (0.012698344) (0.012780534999999996) (0.013020162500000002) (0.012505257499999992) (0.012881442000000007) (0.012768823500000012) (0.012923644000000012) (0.012923680000000007) (0.012887645000000003) (0.01282889949999999) (0.012582005500000007) (0.012619998999999993) (0.012611183499999998) (0.012699683500000017) (0.012626495000000001) (0.01283303849999999) (0.012919586000000025) (0.012963703499999993) (0.013025020500000026) (0.01261061849999999) (0.012786661500000004) (0.013259343000000007) (0.0125225125) (0.012242376999999999) (0.0124019675) (0.012339099000000006) (0.012532766500000014) (0.012348702000000003) (0.0123940045) (0.012465072500000007) (0.012247558499999991) (0.0130663585) (0.012346300500000004) (0.012344532500000005) (0.012438280999999995) (0.012447652000000003) (0.01255518600000001) (0.012309979500000012) (0.012603407999999997) (0.012658158500000002) (0.012346690999999993) (0.012711628499999988) (0.012483769499999992) (0.0125363545) (0.012368418000000006) (0.01222753800000001) (0.012359813999999997) (0.012298476000000017) (0.012566805999999986) (0.012506466499999994) (0.01244516000000001) (0.012621418999999981) (0.012545195000000009) (0.012512780500000015) (0.01277202849999999) (0.012763035500000006) (0.012876684499999999) (0.012767665500000011) (0.012678861999999999) (0.012531336500000004) (0.012650145000000002) (0.012715703999999994) (0.01270092049999999) (0.01274739250000001) (0.012799941999999995) (0.012742112) (0.012602941500000006) (0.012974286000000002) (0.012784764000000004) (0.013089819499999988) (0.013029143499999993) (0.012723188499999982) (0.012684967500000005) (0.012500463999999989) (0.012957824500000006) (0.01273783249999999) (0.012894506499999986) (0.012874086999999992) (0.012956716499999979) (0.012835395500000013) (0.012831773000000019) (0.012674399999999988) (0.013134266000000006) (0.012848986500000006) (0.013047977500000016) (0.013248294000000008) (0.012756906999999998) (0.012522659500000005) (0.012614364000000003) (0.012230965999999996) (0.012448705000000004) (0.012651389999999998) (0.012413644000000001) (0.012439773999999987) (0.012672743) (0.012445098000000002) (0.012632813000000007) (0.012516916499999989) (0.01233048249999999) (0.012282725500000008) (0.012222771999999993) (0.012415099499999985) (0.012367967000000007) (0.012313399000000003) (0.012464975999999989) (0.012618656499999992) (0.012677280500000013) (0.012246769500000004) (0.012357761999999994) (0.012648763499999993) (0.012126972) (0.012634536500000015) (0.012656398999999999) (0.012485264499999996) (0.012733058999999991) (0.01261618299999999) (0.012675575499999994) (0.01256363349999999) (0.012632619499999997) (0.012845204999999998) (0.012940835999999997) (0.012797339500000005) (0.012622052000000009) (0.012912960000000001) (0.012735176500000014) (0.012795031499999984) (0.012840283499999994) (0.012698687499999986) (0.012610656499999998) (0.012826559500000001) (0.01310607649999998) (0.012810207500000018) (0.012725143000000008) (0.012845725500000002) (0.01279241149999999) (0.012678900500000007) (0.012702378) (0.012716823000000002) (0.012660267000000003) (0.012496824000000004) (0.012625100500000014) (0.012717353) (0.012832724500000003) (0.012682218000000009) (0.01265606150000001) (0.012849452499999997) (0.012497081000000007) (0.01287735550000002) (0.012877260000000001) (0.012695624500000002) (0.012565519999999983) (0.012187008999999999) (0.012614441000000004) (0.012342649999999997) (0.01242269650000001) (0.012290374000000007) (0.012237065000000005) (0.012692676999999986) (0.012374120000000002) (0.012422719499999998) (0.012575791500000016) (0.012852785000000005) (0.01237495449999998) (0.012677088500000003) (0.012833080999999996) (0.013060406999999996) (0.012778876499999994) (0.012213457499999997) (0.012309658000000001) (0.012729440999999994) (0.012081625499999998) (0.012542897999999997) (0.012438859999999996) (0.012523924499999992) (0.012556276500000005) (0.012631845500000002) (0.012602720499999998) (0.013157758499999991) (0.012604209499999991) (0.012372021999999996) (0.012368712000000004) (0.012673857499999996) (0.012745174999999997) (0.012739232500000003) (0.012485870499999996) (0.012562879999999998) (0.012695986000000006) (0.012566586000000005) (0.012846517500000001) (0.012407351499999997) (0.012645319500000002) (0.012786107500000005) (0.012745296500000017) (0.012997669999999989) (0.012828909999999999) (0.012610233000000012) (0.012800136500000003) (0.012850068499999992) (0.012716791499999991) (0.012742289500000017) (0.012809176999999991) (0.012819408500000004) (0.012700122999999994) (0.012484883500000002) (0.012541140999999992) (0.012595207000000011) (0.0130014445) (0.012847655) (0.013379322499999985) (0.0125114115) (0.013167624500000003) (0.013040724500000003) (0.012591755999999996) (0.012699445500000003) (0.012691786499999996) (0.012265942500000016) (0.012395163) (0.01222928949999999) (0.012443179499999998) (0.012353083999999986) (0.012105618999999998) (0.012475514499999993) (0.012513335) (0.012564461999999998) (0.012431696000000006) (0.0122832425) (0.012653930499999994) (0.012520789000000004) (0.012560154000000018) (0.012439712500000005) (0.012347226500000003) (0.012433118999999992) (0.012416525999999997) (0.012236474000000011) (0.012524461) (0.01251116599999999) (0.012427393500000009) (0.012295504000000013) (0.012727647000000009) (0.012669054500000013) (0.012584362500000001) (0.012874649500000002) (0.012833201500000016) (0.012275340499999995) (0.012502015499999991) (0.012511971499999996) (0.012647946499999993) (0.012666214000000009) (0.012675948000000006) (0.012478442500000006) (0.012620629500000008) (0.012627498500000015) (0.012801373000000005) (0.012715422500000004) (0.012924824000000001) (0.012836264500000014) (0.01277793699999999) (0.012738091000000007) (0.012666219499999992) (0.01258157700000001) (0.012770603000000005) (0.01286454599999999) (0.012535057999999988) (0.012658990499999995) (0.012610850999999992) (0.01283478099999999) (0.012638509500000006) (0.012984134999999994) (0.012687296) (0.012786467999999995) (0.012838321) (0.012770381499999983) (0.01264256100000001) (0.012604085499999987) (0.01286649799999999) (0.012687704000000008) (0.012898793500000005) (0.012664271500000004) (0.012299898500000003) (0.012509862999999996) (0.012418116500000007) (0.012617861500000008) (0.012941848000000006) (0.012488241000000011) (0.012433997000000002) (0.012240748999999995) (0.012276507500000006) (0.012415599) (0.0123223145) (0.012559609999999999) (0.012428864000000012) (0.012374286999999984) (0.012890230000000016) (0.012686737000000003) (0.012426622500000012) (0.012421606999999987) (0.012217764499999992) (0.012626820499999997) (0.01222269699999999) (0.012396087499999986) (0.012312841500000005) (0.012460659499999999) (0.012627256999999989) (0.012314524999999993) (0.012908161500000015) (0.012665626999999985) (0.012671687000000001) (0.013037421499999993) (0.01230390449999999) (0.01254001099999999) (0.012867063500000026) (0.012713723999999996) (0.012639233) (0.013022102999999993) (0.012554729499999986) (0.01250044950000001) (0.012652877500000007) (0.012893074500000018) (0.012814601000000009) (0.012781169500000009) (0.012748684999999996) (0.012823506499999984) (0.012725432500000008) (0.012612408500000005) (0.012890465500000003) (0.013107477999999992) (0.012853600999999992) (0.012647539999999999) (0.013083803000000005) (0.0126086745) (0.012632153999999993) (0.012551086500000003) (0.013081537000000004) (0.012693790499999996) (0.012753753500000006) (0.013035983000000001) (0.01271895399999999) (0.012652954999999994) (0.012878443000000003) (0.01284646099999999) (0.013117520999999993) (0.012903768999999995) (0.012424268500000002) (0.01232339049999999) (0.012516759500000002) (0.012133820000000003) (0.012286122999999996) (0.012394915000000006) (0.012557449000000012) (0.0124732865) (0.012487629500000014) (0.012551650999999997) (0.012580094) (0.012596673000000003) (0.012253664999999997) (0.012406187500000013) (0.012426594999999985) (0.012644047499999991) (0.012524335499999997) (0.01229668049999999) (0.012295714999999985) (0.012632197500000011) (0.012312519500000008) (0.012302772000000003) (0.01255547700000001) (0.012249630500000011) (0.012424454499999987) (0.0123449105) (0.012570965000000003) (0.012562652000000007) (0.01273224299999999) (0.01237464299999999) (0.012469643000000002) (0.012328066500000026) (0.012698449000000014) (0.012739794999999998) (0.012671914500000006) (0.012680820499999995) (0.012744723999999985) (0.012562203499999994) (0.012838796) (0.012702949499999991) (0.012614011999999994) (0.013084199500000018) (0.012860044000000015) (0.012806708) (0.012829515) (0.012650861499999999) (0.012615498500000016) (0.012985887500000029) (0.012744975499999991) (0.012749118000000004) (0.012635422499999993) (0.013077667499999987) (0.012693878000000006) (0.012801645999999986) (0.012729624500000009) (0.012573082999999999) (0.012834542500000004) (0.012807206500000001) (0.012838601499999991) (0.01291545650000002) (0.012794041999999992) (0.01280182000000002) (0.012898278000000013) (0.013087710999999988) (0.012476490500000006) (0.012656077999999987) (0.012508996499999994) (0.012313187500000003) (0.0125697325) (0.012311969999999992) (0.012258753499999983) (0.012288420499999994) (0.012641810500000017) (0.012776265000000009) (0.012384243500000003) (0.012336427000000011) (0.012391712500000013) (0.013004099499999991) (0.012385288000000008) (0.012426285500000009) (0.012497987000000002) (0.012298503500000002) (0.012291556000000009) (0.012218338500000009) (0.01250746300000001) (0.012478366000000005) (0.01308922400000001) (0.012505710500000003) (0.012656142999999995) (0.012579926500000005) (0.012318689000000022) (0.012386718000000005) (0.012587585499999998) (0.012554890500000013) (0.012483471499999996) (0.012518225500000008) (0.012857279999999999) (0.01268889849999999) (0.012574272000000011) (0.012792957000000008) (0.01256246150000001) (0.012953503499999991) (0.012564507499999988) (0.012962358999999979) (0.01302776700000001) (0.012599786000000002) (0.012661688500000004) (0.012772925500000004) (0.012754950000000001) (0.012598555499999997) (0.012945296000000023) (0.012829011000000029) (0.012706835999999999) (0.012784249500000011) (0.012489045000000004) (0.012678048499999997) (0.013219289000000009) (0.01286219949999999) (0.012754577500000017) (0.012812122500000009) (0.012597231999999986) (0.012834924999999983) (0.012686157000000017) (0.012962498499999989) (0.012902192499999993) (0.012683998999999987) (0.012924262999999991) (0.012709617000000006) (0.012273473500000007) (0.012455418499999996) (0.013097884000000004) (0.012242296999999985) (0.012395124000000007) (0.012673514500000024) (0.012457067500000002) (0.012208544499999988) (0.012573699999999993) (0.012191195999999987) (0.012402980499999994) (0.01238860949999998) (0.012728325500000012) (0.012573309000000005) (0.012435816000000016) (0.012274781499999984) (0.01255964050000001) (0.012362828000000006) (0.012283616499999983) (0.012794507999999996) (0.01304801600000001) (0.012469381500000001) (0.012473305000000004) (0.012806615999999993) (0.012574110999999999) (0.012635793999999992) (0.01265153500000002) (0.012641548500000002) (0.012426867500000008) (0.012442731500000012) (0.012655988499999979) (0.012770974500000018) (0.012912112000000003) (0.01269203200000002) (0.012699993999999992) (0.012629676999999992) (0.012495719499999974) (0.012725766) (0.012397034999999987) (0.012781417499999989) (0.012718873500000005) (0.012747144499999988) (0.013034357999999996) (0.012787221499999987) (0.01264232350000001) (0.012866394499999989) (0.012678266500000007) (0.012787128500000008) (0.012622142500000003) (0.012598793999999996) (0.01285718550000002) (0.012745725999999999) (0.012818272499999991) (0.012684969000000004) (0.012723966000000003) (0.01279438200000002) (0.013062741000000003) (0.01281554) (0.012830076499999996) (0.012558318499999985) (0.013030976) (0.013147675999999997) (0.012897033500000016) (0.01281386100000001) (0.012294430500000009) (0.012274710000000008) (0.012293302999999992) (0.012754159000000015) (0.012567192000000005) (0.012306778500000004) (0.012647995000000009) (0.012519634500000001) (0.012313377) (0.012457941000000014) (0.012415940499999986) (0.012473921500000013) (0.012343088999999988) (0.012326037500000012) (0.012481541499999999) (0.012432482499999994) (0.012269222499999996) (0.012300519499999996) (0.012484937500000001) (0.012253480499999997) (0.012389233000000013) (0.012327271000000015) (0.012295143499999994) (0.01229140250000002) (0.012622652000000026) (0.012470539500000002) (0.012431896000000012) (0.012420601999999989) (0.012349999500000014) (0.012812444500000006) (0.012271069499999981) (0.012502007500000023) (0.012677296500000004) (0.012604211500000004) (0.012732570499999998) (0.012634438499999998) (0.012631470999999991) (0.012499581500000023) (0.013549366000000021) (0.013070186000000025) (0.013213224499999995) (0.012960462999999992) (0.012982552500000022) (0.012629414000000005) (0.012750713999999996) (0.012690988500000014) (0.012911394499999992) (0.013036252000000012) (0.012707273499999991) (0.01283223800000001) (0.012549524000000006) (0.012625911500000003) (0.013135080499999993) (0.012760265999999978) (0.012722267499999995) (0.012557941499999989) (0.012788423000000007) (0.013007368500000005) (0.012920855499999995) (0.012747530500000007) (0.01291830099999998) (0.012792999000000027) (0.01285145449999997) (0.012570774000000007) (0.012302084500000005) (0.012746952000000006) (0.012241881499999996) (0.012635308499999998) (0.012268039999999994) (0.012714220499999998) (0.012235944999999998) (0.012587749500000009) (0.012369106500000004) (0.012209016500000003) (0.012524263000000008) (0.012234398000000021) (0.0123518195) (0.012680787499999999) (0.012278870999999997) (0.012464899000000002) (0.012301488499999999) (0.012124567500000002) (0.0124852035) (0.01257527600000001) (0.012515987999999992) (0.012740025500000002) (0.012274298000000003) (0.012256738000000003) (0.012504308000000006) (0.012301193000000016) (0.012665946499999997) (0.012831759999999998) (0.012928140000000005) (0.0123903145) (0.01243992499999999) (0.012445088999999993) (0.012755794) (0.012430505000000008) (0.014775125) (0.012982604999999994) (0.012622794999999992) (0.012517906499999995) (0.012688499499999992) (0.012498770000000006) (0.012720352500000004) (0.012609398500000008) (0.0126531785) (0.012956141500000004) (0.012996054999999992) (0.012433423499999999) (0.012614801499999995) (0.0127983765) (0.012876540500000005) (0.012826239500000003) (0.012810875500000013) (0.012694840999999998) (0.012795179500000003) (0.013055131000000011) (0.012481051999999992) (0.012580430000000004) (0.012714150499999993) (0.012930293499999995) (0.012753292000000013) (0.012658405499999997) (0.012805133499999996) (0.012835790000000014) (0.012856906500000015) (0.012941788499999995) (0.012208432500000019) (0.012151578499999996) (0.012483029500000006) (0.012265625500000002) (0.0123893905) (0.012255197499999995) (0.012430208999999998) (0.012342708999999993) (0.012321727000000005) (0.012546618999999995) (0.012374295000000007) (0.012443249000000003) (0.012354060000000014) (0.012560515999999994) (0.012383984000000015) (0.012483426999999991) (0.012216962000000012) (0.01225398250000001) (0.012388345000000009) (0.012636002500000007) (0.013135426500000005) (0.012412456500000002) (0.012420037499999995) (0.012397788499999993) (0.012509966499999983) (0.0122552415) (0.012694247000000006) (0.012331642500000004) (0.012500612500000008) (0.012243724499999997) (0.01245515250000001) (0.012477299499999997) (0.012659442000000007) (0.012727780500000008) (0.01268807050000001) (0.012360372000000008) (0.012757162500000016) (0.012724575000000016) (0.012556131999999998) (0.012492774999999998) (0.012670474500000015) (0.01291824350000001) (0.012609392999999997) (0.012824407999999995) (0.01309998050000001) (0.012816802500000002) (0.012784221499999998) (0.012559026000000001) (0.012873597999999986) (0.012533503500000015) (0.012660782500000009) (0.012846241499999994) (0.012601482499999997) (0.0127455385) (0.012825632500000003) (0.01298386600000001) (0.012663489) (0.012700818500000016) (0.012696512499999979) (0.012992676500000008) (0.01299755050000001) (0.012739737999999987) (0.01266808300000001) (0.012768373999999999) (0.01231409) (0.012329920000000008) (0.01220594749999998) (0.012417992000000003) (0.012505834000000007) (0.01229800049999999) (0.01243718499999999) (0.012146645499999983) (0.012373420999999996) (0.012334287) (0.012584384000000004) (0.012463352999999996) (0.0126174005) (0.012218488999999999) (0.012789745000000005) (0.012404492000000003) (0.012475371499999999) (0.012283689) (0.012323773499999996) (0.012653063999999992) (0.012430618000000004) (0.012506845000000016) (0.012325437000000009) (0.012470385999999986) (0.012460765999999998) (0.012461926499999984) (0.01257915350000001) (0.012441023999999995) (0.012408919000000004) (0.012441206999999996) (0.01235804) (0.012420279000000006) (0.012748263499999996) (0.012862142999999993) (0.012625149500000002) (0.012736005500000008) (0.012692121) (0.012633962500000012) (0.012720626999999998) (0.012615791500000001) (0.012656527) (0.012986718999999994) (0.013086345999999999) (0.012691609499999992) (0.012669294500000011) (0.013070350499999994) (0.012592139500000002) (0.012797651000000007) (0.012517373500000012) (0.012941125499999998) (0.012464360500000007) (0.012660937000000011) (0.01255500250000001) (0.012780009499999995) (0.012790227500000001) (0.012649886000000013) (0.012741593500000009) (0.012484231999999998) (0.0126253655) (0.012775726500000001) (0.012781008499999996) (0.012705532000000005) (0.012720497500000011) (0.012737370999999997) (0.012133920999999992) (0.01244005849999999) (0.012301307499999997) (0.012466821499999989) (0.012714299999999998) (0.012386228499999999) (0.012556410000000004) (0.012171154000000003) (0.012534282999999993) (0.012560872) (0.012186694499999998) (0.012456927999999992) (0.012648110500000018) (0.012352848) (0.012330066) (0.012559671000000008) (0.012441027499999993) (0.012301158999999992) (0.01239903299999999) (0.012839636500000001) (0.012147605000000006) (0.012505674000000008) (0.012212983999999996) (0.012405166999999995) (0.012407814500000003) (0.012653426500000009) (0.012189484) (0.012515716499999996) (0.012330992000000013) (0.012308356999999992) (0.012532885499999993) (0.012516273000000008) (0.012866374) (0.012858078999999994) (0.012789553499999995) (0.012824363500000005) (0.012373415000000013) (0.01276615149999999) (0.012561966000000008) (0.012511996999999983) (0.012792212999999997) (0.012799428500000015) (0.012738831500000006) (0.012893894000000017) (0.012863405999999994) (0.012905653000000003) (0.012712318000000014) (0.013123213000000009) (0.012900001500000008) (0.0125585255) (0.012592515499999998) (0.012842520999999996) (0.01293926649999999) (0.012621490999999999) (0.012720107999999994) (0.012523695000000001) (0.012651210499999996) (0.012806810000000002) (0.012607438499999998) (0.012716997000000008) (0.012502618999999993) (0.012820625500000002) (0.012622903500000004) (0.013033717500000014) (0.012607722000000002) (0.01242945049999998) (0.01238850850000002) (0.012262270500000005) (0.012393553000000002) (0.012304326500000004) (0.012620907499999987) (0.012287492999999997) (0.012914792999999994) (0.012410407000000012) (0.012385590000000002) (0.012228086999999999) (0.012369013499999998) (0.012301603999999994) (0.012783415500000006) (0.012486462000000004) (0.012272891999999994) (0.012289006000000005) (0.012507925500000003) (0.012616227000000008) (0.012160964499999996) (0.012183471999999987) (0.012470347999999992) (0.012178385500000014) (0.012388647500000002) (0.0123323625) (0.012422147500000008) (0.01238823850000001) (0.012484607499999995) (0.012394062999999997) (0.013135768000000006) (0.012496722500000002) (0.012812961499999997) (0.012943948999999982) (0.012413347500000005) (0.012615342000000015) (0.012663331) (0.012774655999999981) (0.012627935000000007) (0.012478695999999997) (0.012772109000000004) (0.012688018999999995) (0.012791148499999988) (0.013033988499999996) (0.012592617999999986) (0.012860673499999989) (0.012640847499999996) (0.0126436365) (0.0126874305) (0.012845388) (0.012931232) (0.012667863499999987) (0.01253865550000001) (0.012532746499999997) (0.013095693999999991) (0.012578423000000005) (0.012787091) (0.012891733500000002) (0.012497840499999996) (0.012896635500000003) (0.012978052000000004) (0.012703648499999984) (0.0130547825) (0.012575977500000002) (0.0124919795) (0.012369901000000003) (0.012489748500000009) (0.01240836549999999) (0.012345755500000014) (0.012299788500000006) (0.012498381499999989) (0.012441233499999996) (0.012448882999999994) (0.012432080999999984) (0.012370912000000012) (0.012430910000000003) (0.012361171000000004) (0.012362767999999996) (0.012640622000000004) (0.012330975499999994) (0.012300488500000012) (0.012516378499999994) (0.01230762299999999) (0.012095598999999999) (0.012287300500000015) (0.012192727500000014) (0.012426532500000004) (0.012381078000000004) (0.012496049499999995) (0.013236150000000002) (0.0124442825) (0.012676465499999984) (0.012303666500000005) (0.012380704499999992) (0.012298634499999989) (0.012910681499999993) (0.012999842000000011) (0.01246612499999998) (0.012906167499999982) (0.012776381999999989) (0.012995119999999999) (0.01253658349999999) (0.01305764899999999) (0.012671297999999998) (0.012704486000000001) (0.012792088500000007) (0.01269525249999999) (0.012976088499999996) (0.012596189500000007) (0.01258382000000001) (0.012793884500000005) (0.01268659300000001) (0.012812193500000013) (0.012847059000000022) (0.012645706499999992) (0.012698634) (0.012844911) (0.012590898500000003) (0.012805668500000006) (0.012625928500000008) (0.012653617999999991) (0.012634505500000004) (0.012833405000000006) (0.012621788000000009) (0.012847682) (0.012488083499999997) (0.012678690499999978) (0.013180051499999984) (0.01249873550000001) (0.012291547499999986) (0.012379728499999992) (0.0121890615) (0.012202233000000007) (0.012489021500000003) (0.01223607950000001) (0.013094309500000012) (0.012271215500000002) (0.012520192999999999) (0.012544232500000016) (0.012452674999999996) (0.012186273500000011) (0.012598437500000004) (0.0123906025) (0.012445649500000003) (0.012484812499999984) (0.012336199999999992) (0.012540294500000007) (0.012535577499999992) (0.012325178500000006) (0.012458136000000009) (0.012365235999999988) (0.012417046000000001) (0.012397978000000004) (0.012508685000000005) (0.012368940999999994) (0.012331934500000016) (0.013282719999999984) (0.012382526500000005) (0.012792035499999993) (0.01238935649999999) (0.012579476500000006) (0.012808438500000005) (0.012859730000000014) (0.012529944000000015) (0.012519582999999987) (0.012867424500000002) (0.012581096) (0.012450929999999999) (0.012569013000000018) (0.012738237) (0.01284005299999999) (0.012757820500000003) (0.012764842000000012) (0.01274636300000001) (0.012658061499999998) (0.01291123000000001) (0.012975655500000002) (0.012600737) (0.012856164500000003) (0.012867353499999984) (0.012718110000000005) (0.013247851500000005) (0.012850665000000011) (0.0127310395) (0.012955048999999996) (0.012756339500000005) (0.012609645499999989) (0.01263494350000001) (0.012973980499999996) (0.012631458999999998) (0.01283147300000001) (0.013091977500000004) (0.012501598000000003) (0.012266451999999997) (0.01224897699999998) (0.012723533999999995) (0.012486842000000012) (0.012532263499999988) (0.01232975850000001) (0.012386046499999998) (0.012410367000000005) (0.012543186999999997) (0.01264687049999999) (0.0126994525) (0.012385577500000008) (0.012354685000000004) (0.01234725049999999) (0.012408451000000001) (0.012480053500000005) (0.012726552500000002) (0.012658256499999992) (0.012503955000000011) (0.012572487499999993) (0.012553539000000002) (0.012224812500000015) (0.012225254500000005) (0.012406297999999996) (0.012321693500000008) (0.012609352000000004) (0.013053644500000003) (0.012559420500000015) (0.012544140499999995) (0.012320135999999995) (0.012627817) (0.012999478500000008) (0.012764073500000014) (0.012435795999999985) (0.012531419499999988) (0.012686423999999988) (0.012505757000000006) (0.012811104500000003) (0.012703048500000008) (0.012634603999999994) (0.012690991499999998) (0.01278269600000001) (0.012723730500000016) (0.012736331999999989) (0.012969957500000004) (0.01270900450000001) (0.013119793500000018) (0.012562072999999993) (0.01292581349999998) (0.012800667500000015) (0.012549526999999991) (0.012548260999999991) (0.012644553500000003) (0.012912027499999992) (0.012764597500000016) (0.012801659500000007) (0.012903885000000004) (0.012668845499999998) (0.012768224500000022) (0.01278935149999999) (0.012681722999999992) (0.012611866999999999) (0.012618413999999994) (0.012746573999999997) (0.012252035999999994) (0.012305583499999995) (0.01229231850000001) (0.012322810000000003) (0.012262111999999992) (0.012662801500000001) (0.0125951755) (0.01252976900000001) (0.012776165500000006) (0.012519502500000002) (0.012429306000000015) (0.012950810500000007) (0.012454021999999995) (0.012647503500000004) (0.012497763000000009) (0.01230672599999999) (0.012235914500000014) (0.012553529499999994) (0.012432730000000003) (0.0125440525) (0.0122046705) (0.012121686999999992) (0.012295785500000003) (0.016076605000000008) (0.012650962500000001) (0.012538983500000017) (0.012317863499999998) (0.012453474000000006) (0.012407436000000008) (0.012182679000000002) (0.012545199500000007) (0.012682765999999998) (0.01278225849999999) (0.012785294000000003) (0.012686920500000004) (0.01297512499999999) (0.012641786500000002) (0.012648316499999993) (0.012471771500000006) (0.012618247999999999) (0.012799815999999992) (0.012747463) (0.012828189500000003) (0.012802803500000001) (0.012703592000000014) (0.012898165500000003) (0.012775811999999998) (0.012674693000000015) (0.012672778999999995) (0.012704157000000008) (0.012775057999999992) (0.012740938000000007) (0.012916469999999985) (0.01267835199999999) (0.012601633999999987) (0.012687896500000004) (0.012656361000000005) (0.012772556000000004) (0.0129918755) (0.012926571499999998) (0.01293197900000001) (0.012979450500000017) (0.012539151499999998) (0.01286345400000001) (0.012217337999999994) (0.012143423) (0.012162857499999999) (0.012294159999999998) (0.012298759000000006) (0.012641356500000006) (0.012417755499999988) (0.01278011100000001) (0.012498879500000004) (0.012954228499999998) (0.012651648000000001) (0.012612389000000002) (0.012694826999999992) (0.012778325000000021) (0.012695623000000003) (0.012253214999999998) (0.01237162) (0.012632716500000016) (0.012351286500000017) (0.012440317000000006) (0.012580495999999997) (0.0123323335) (0.012169897999999998) (0.012503954499999997) (0.01248035850000001) (0.01234473450000001) (0.01241655600000001) (0.012369084000000002) (0.0122588) (0.012288089500000002) (0.012726670500000009) (0.0128694045) (0.012672274000000011) (0.012790366000000011) (0.012768527500000001) (0.012561692000000013) (0.012559702499999992) (0.012956961000000003) (0.013005351999999998) (0.012694929500000007) (0.012645099999999992) (0.012785342499999991) (0.013112677000000003) (0.013051389999999996) (0.013031534000000011) (0.012558246999999995) (0.012730893499999993) (0.012721351999999991) (0.01269746699999999) (0.012883572499999996) (0.012907776499999996) (0.012862983000000008) (0.012549695999999999) (0.012756001000000003) (0.01258491299999999) (0.012754486499999981) (0.012994374500000003) (0.012564019499999995) (0.012921752999999994) (0.012842209000000007) (0.012861593000000004) (0.012740682499999989) (0.012556950999999997) (0.012489460000000008) (0.012284045999999993) (0.012381988999999996) (0.012384552000000007) (0.012485470000000012) (0.012524929500000004) (0.012348948999999998) (0.012339824999999999) (0.012581829000000003) (0.012340280500000009) (0.012895264000000004) (0.012706797499999992) (0.012491933499999996) (0.0123809005) (0.012542228000000002) (0.01235137650000001) (0.01220537699999999) (0.012492160500000002) (0.012147816500000005) (0.012381935499999996) (0.012621229500000011) (0.012309767499999999) (0.012501370500000011) (0.01248414249999999) (0.012249488999999988) (0.012435525499999989) (0.012428686499999994) (0.0130101995) (0.012689080000000005) (0.012450475999999988) (0.012430978500000009) (0.012531978999999999) (0.013143573499999991) (0.012634304999999998) (0.012874192499999992) (0.012703738500000006) (0.012547531) (0.012878659500000014) (0.012660035000000014) (0.012631496499999992) (0.012840613) (0.01287240399999999) (0.012807723499999993) (0.012816121) (0.012894804499999996) (0.01305083600000001) (0.012514491499999988) (0.012881442000000007) (0.01267153700000001) (0.012906728499999992) (0.012634956000000003) (0.012693947999999997) (0.01250680550000001) (0.012504677000000006) (0.01250235000000001) (0.013029547000000002) (0.012925974500000006) (0.012622317999999993) (0.012684158499999987) (0.012826962499999997) (0.013077423000000005) (0.01261680250000001) (0.0127449335) (0.012801765999999992) (0.012534172999999996) (0.012872696999999989) (0.012357641000000003) (0.012473788000000013) (0.012435593499999995) (0.012282517499999993) (0.012405361000000004) (0.012746383) (0.01227553250000002) (0.012443086499999992) (0.012479722999999984) (0.012576635000000003) (0.012275077999999995) (0.012708787999999985) (0.012446440499999989) (0.012678229999999999) (0.012481859500000012) (0.012341413499999995) (0.01233392300000001) (0.012369796000000002) (0.01236973199999998) (0.012683854000000008) (0.012256883499999996) (0.012609560499999992) (0.012649509500000003) (0.012476061999999996) (0.012479439000000009) (0.012201957500000013) (0.012580872999999992) (0.012933658) (0.012595523999999997) (0.012474279000000005) (0.012598695499999979) (0.012640168000000007) (0.013011567500000001) (0.012959075) (0.012947555) (0.0128422765) (0.013221813999999998) (0.013070593500000005) (0.012661125999999995) (0.01272509799999999) (0.012735984999999991) (0.013202536000000015) (0.014320624000000004) (0.013112759500000001) (0.012561318500000002) (0.012527566500000004) (0.012799460499999998) (0.012832818999999995) (0.012867266000000002) (0.012847924499999996) (0.01274351) (0.012585405000000022) (0.012762390999999998) (0.013184623000000006) (0.012635490500000013) (0.012613028999999998) (0.0130850505) (0.012929163499999993) (0.012774389499999997) (0.012641475500000013) (0.01285468749999999) (0.012659587500000014) (0.012232376000000003) (0.012374981500000007) (0.01247449199999999) (0.012378607) (0.012412168000000001) (0.012253234000000002) (0.012391657000000014) (0.012287912499999984) (0.012641003499999998) (0.01232042799999998) (0.012697037500000008) (0.012370215000000004) (0.012324560499999998) (0.01246581599999999) (0.012703426500000004) (0.0124118815) (0.012249681999999998) (0.012359199499999987) (0.012381960499999983) (0.012313903000000001) (0.012796203499999992) (0.012207180499999984) (0.012319112999999993) (0.012360006000000007) (0.012378007499999982) (0.012431812000000014) (0.012443198000000003) (0.012502925499999998) (0.012502665499999996) (0.012427640500000003) (0.0122757545) (0.01235195900000001) (0.012897009000000001) (0.012560657000000017) (0.012595964500000001) (0.012694068500000003) (0.013222023500000013) (0.012372010500000002) (0.012600285500000002) (0.012810078000000003) (0.012938008000000015) (0.012741461499999981) (0.012823042500000006) (0.013092484500000001) (0.012602267499999986) (0.0130273095) (0.01276812599999999) (0.012814894999999993) (0.012840688000000003) (0.01268760649999999) (0.012560426999999999) (0.012767297499999997) (0.0125710245) (0.012733257499999984) (0.012469184000000008) (0.012509249500000014) (0.012767637000000012) (0.012768027500000001) (0.013220610500000007) (0.012761995499999998) (0.012756459499999998) (0.012885786499999996) (0.012721825000000006) (0.012531564499999995) (0.012403238499999997) (0.012405167500000008) (0.012618884499999997) (0.012329659499999993) (0.012606023999999993) (0.012242000500000003) (0.012712368500000015) (0.012503946999999987) (0.012972001500000024) (0.01249740349999999) (0.012488593000000006) (0.012517307500000005) (0.012618416999999993) (0.012608710999999995) (0.012225625000000004) (0.012764178000000001) (0.01249547849999999) (0.012381173500000009) (0.012415911000000002) (0.012473083999999995) (0.012458978499999995) (0.012341416499999994) (0.012710313) (0.012128624000000018) (0.012524616000000016) (0.012368850500000014) (0.012334822500000009) (0.01275344249999999) (0.012505007499999998) (0.012410076500000006) (0.012448960000000009) (0.012512539500000003) (0.012789944499999997) (0.013115879499999997) (0.012704486000000001) (0.012678519499999985) (0.012530345999999998) (0.012549760000000007) (0.012646247999999999) (0.012498441499999999) (0.0126797295) (0.012827545499999995) (0.012874153499999999) (0.01291049000000001) (0.013034661500000003) (0.013050843000000006) (0.012942341499999982) (0.013031231000000004) (0.012741658999999989) (0.012476691499999998) (0.012618430000000014) (0.012599926000000011) (0.012790570000000001) (0.012594571499999999) (0.012546236000000002) (0.012763058999999993) (0.012554152999999998) (0.012603869999999975) (0.012729666000000014) (0.012711493000000004) (0.01272963349999999) (0.012627734500000001) (0.012983939) (0.012721692500000006) (0.012482329500000014) (0.012556340499999999) (0.012253537999999994) (0.012209978499999996) (0.01238188400000001) (0.012356994499999996) (0.012687811000000007) (0.012447077500000014) (0.012637059000000006) (0.012275123000000013) (0.012338703000000006) (0.012753997500000003) (0.012394280500000007) (0.012717585000000003) (0.012552550999999995) (0.012527631999999997) (0.012610160999999995) (0.01219447799999998) (0.0124680135) (0.01236018450000001) (0.012523940000000011) (0.01251302700000001) (0.01229767100000001) (0.012795024500000002) (0.012514458500000006) (0.012553264500000008) (0.012575564999999997) (0.012618023000000006) (0.012689329499999985) (0.0126433705) (0.012507717000000015) (0.012331890999999984) (0.013039949499999995) (0.012737975999999998) (0.012961638500000011) (0.012582718499999992) (0.012777805000000003) (0.012749281500000001) (0.012858967500000013) (0.012580371999999992) (0.012929666999999992) (0.012812399500000002) (0.012962260000000017) (0.012829090000000001) (0.013021584500000002) (0.013135604500000009) (0.012725380999999994) (0.01277301850000001) (0.012771990999999996) (0.012579630500000008) (0.0124329465) (0.012615294999999999) (0.012943223000000004) (0.01269363400000001) (0.012955535000000004) (0.012672730999999993) (0.012677368500000022) (0.012704013499999986) (0.012701414499999994) (0.012944000999999997) (0.01282636999999999) (0.012764152) (0.012807641000000022) (0.012683312499999974) (0.012196184499999999) (0.012276783999999999) (0.012612826500000007) (0.012378664499999997) (0.012599617999999993) (0.012291454500000007) (0.012778624999999988) (0.012326547500000007) (0.012635140500000003) (0.012544296999999982) (0.013059661500000014) (0.012417287999999999) (0.01246896850000001) (0.012347668500000006) (0.012565406999999987) (0.012361051000000012) (0.012744415499999995) (0.012402194499999991) (0.01243574950000001) (0.01245960950000001) (0.012497776000000002) (0.012609396999999994) (0.012326884499999996) (0.012404937000000005) (0.012282192499999997) (0.012423189000000001) (0.012478420500000004) (0.012285391499999992) (0.012750406999999991) (0.012174457999999999) (0.012735147999999988) (0.012344164500000004) (0.012925702000000011) (0.012624849000000007) (0.012635243500000004) (0.012677850500000004) (0.012601421000000002) (0.012693542000000002) (0.012774387999999998) (0.0125773005) (0.012981699) (0.012747922999999994) (0.012952105000000005) (0.012825952499999974) (0.012779578) (0.012857931499999989) (0.01271767850000001) (0.012715707999999992) (0.012758582500000004) (0.012655160999999998) (0.012897701999999997) (0.012667068500000017) (0.012843753999999985) (0.012810176499999992) (0.012530804499999992) (0.01266969200000001) (0.013022276999999999) (0.01291305600000002) (0.012927989999999986) (0.012783308499999993) (0.01323437899999999) (0.012831706000000026) (0.012794234499999987) (0.012718568) (0.012176202999999997) (0.012638706) (0.012446950500000012) (0.012179106499999995) (0.0122049625) (0.012391144499999993) (0.012504494500000018) (0.012438578500000005) (0.012401812499999998) (0.012681113499999994) (0.012149291999999992) (0.012298598000000008) (0.012365882500000008) (0.012889932499999993) (0.01232337750000001) (0.012566042999999999) (0.012471621500000016) (0.012535024500000005) (0.012709139000000008) (0.01238843299999999) (0.012335215999999996) (0.012570532500000009) (0.012298433000000011) (0.012374913000000001) (0.0123913955) (0.012482603500000009) (0.012255054500000001) (0.012409545000000022) (0.012585797499999996) (0.012454142500000001) (0.012478543500000008) (0.012418259000000001) (0.012760234499999995) (0.012889483499999993) (0.012492291000000003) (0.012530409999999992) (0.013263218999999993) (0.012934420999999988) (0.013011355500000002) (0.01266820149999999) (0.012760856500000015) (0.01264572550000001) (0.012536859000000011) (0.012803337499999998) (0.012810872000000015) (0.013116797000000013) (0.012757029500000003) (0.012588967999999992) (0.012723019000000002) (0.012477164999999998) (0.012776454000000007) (0.012828455500000002) (0.012569802000000005) (0.012651548499999998) (0.012649389999999996) (0.012539399499999992) (0.012770731499999993) (0.012673271499999986) (0.012796395000000002) (0.013045919000000017) (0.012945692499999994) (0.013079377000000003) (0.012883761500000007) (0.012672210000000017) (0.012302518500000012) (0.01248378700000001) (0.0124918995) (0.012460256499999989) (0.012205149999999998) (0.012387434999999988) (0.012185901999999998) (0.012281995000000004) (0.012845197500000002) (0.012405778500000006) (0.012349980999999982) (0.0125949905) (0.012244429000000001) (0.012405406499999994) (0.012727395499999988) (0.012469354500000002) (0.012560957500000011) (0.012599184000000013) (0.012536350000000002) (0.012435929999999998) (0.012115666499999997) (0.012131892500000005) (0.012127987999999992) (0.012231854999999986) (0.012513526000000011) (0.012364) (0.012544808000000005) (0.012372941499999998) (0.012339903499999999) (0.012405292000000012) (0.012529786499999987) (0.012542880499999992) (0.012710105) (0.012727702999999993) (0.012763700499999989) (0.012722342999999997) (0.012723917000000001) (0.01264738) (0.013027672500000004) (0.012557090000000007) (0.012741637999999986) (0.012784181000000006) (0.012570868999999998) (0.012713962500000009) (0.012765310500000002) (0.012697665499999997) (0.012843329) (0.012661805000000012) (0.012663614500000003) (0.013051625999999997) (0.012753718999999997) (0.012774677499999998) (0.012654002999999983) (0.012533963000000009) (0.012591514000000012) (0.012773606500000007) (0.013054088499999991) (0.0126119175) (0.012749478500000008) (0.013120115000000002) (0.012883253999999997) (0.013253803500000008) (0.012545267500000012) (0.012871331) (0.012400249000000016) (0.012214404999999998) (0.012432261999999986) (0.012651571000000014) (0.01281244699999999) (0.012256020500000006) (0.012711215499999998) (0.012656674500000006) (0.012419104) (0.012428189999999992) (0.012516262000000014) (0.012843712000000007) (0.012572267499999998) (0.01247904150000001) (0.012155390000000016) (0.012624411500000016) (0.012440781499999984) (0.012714477000000016) (0.012259878000000002) (0.01228406) (0.012205650499999998) (0.012335324000000009) (0.012177590000000002) (0.012273285499999995) (0.012462434999999994) (0.012502428499999996) (0.012484344499999994) (0.012260727499999999) (0.012730073499999994) (0.012501164999999995) (0.012419351499999995) (0.012459730000000002) (0.012939130000000007) (0.012538142500000016) (0.012717203499999982) (0.012512098999999999) (0.012850014000000007) (0.012621059000000004) (0.012531289500000015) (0.012351049000000003) (0.012596375999999992) (0.012653461000000005) (0.012784047499999993) (0.012629408500000008) (0.012990012000000009) (0.012811963999999995) (0.012736544500000002) (0.012613221000000008) (0.012752753000000006) (0.012488885500000005) (0.012564281999999996) (0.013170354999999995) (0.012550642999999986) (0.01244397350000001) (0.01265910399999999) (0.012618530999999988) (0.012960462000000006) (0.01264454999999999) (0.012773031000000018) (0.012518068000000007) (0.012774377000000003) (0.012577475000000005) (0.012734189000000007) (0.012830007500000004) (0.012302088499999989) (0.012377660499999998) (0.012457681999999998) (0.012166925000000009) (0.012303375000000005) (0.012330038999999987) (0.012382119499999997) (0.012502564499999994) (0.01235341249999998) (0.012506768499999987) (0.012525846999999993) (0.012472433500000005) (0.012571195499999993) (0.012481917000000009) (0.012314021499999994) (0.01239386549999999) (0.012330220500000003) (0.012318768999999993) (0.012312856499999997) (0.012249442499999985) (0.012526002499999994) (0.012385933000000002) (0.012475903999999996) (0.012499108999999994) (0.012271600000000008) (0.01266012200000001) (0.012772791000000006) (0.01266862349999999) (0.012397718000000002) (0.012374615499999991) (0.012527524499999998) (0.012416684500000011) (0.012735474499999996) (0.012701767500000002) (0.01277449600000001) (0.012722855000000005) (0.012690382500000014) (0.012529258500000001) (0.012763882000000004) (0.012730489999999997) (0.012522880000000014) (0.012805860500000016) (0.012684469000000004) (0.012764785000000015) (0.01262553000000001) (0.012676028500000006) (0.012682757000000003) (0.01326031400000001) (0.012510171999999986) (0.012936696500000011) (0.012598587499999994) (0.012645919500000005) (0.012645040999999996) (0.012762788499999997) (0.012686968999999992) (0.01274312649999998) (0.012815926000000005) (0.012735687499999981) (0.01276174799999999) (0.013103773999999985) (0.012482182000000008) (0.012531526999999987) (0.013098355499999992) (0.012919438999999977) (0.012381573000000007) (0.012340325) (0.012362369499999998) (0.012110378000000005) (0.012412578500000007) (0.012350687499999999) (0.012214980499999986) (0.012172818000000002) (0.01260378799999999) (0.012463578999999989) (0.012674863999999994) (0.012682318999999997) (0.0126126025) (0.012357838999999995) (0.012411731499999995) (0.012221726500000002) (0.012258735000000007) (0.012511028999999993) (0.012423899500000002) (0.012388157999999996) (0.012256165) (0.012201575499999992) (0.012140603000000014) (0.012657475500000015) (0.012526568000000016) (0.012423883999999996) (0.012648585500000004) (0.012416536999999978) (0.012531978499999999) (0.01248664350000002) (0.012468292000000006) (0.012245489500000026) (0.01270784200000001) (0.012674323000000001) (0.012842254500000011) (0.01262672699999999) (0.012680251999999989) (0.012560019999999991) (0.012837641499999997) (0.01279599499999999) (0.012717922499999978) (0.012885891499999996) (0.012744399000000017) (0.01284566799999999) (0.012925911499999998) (0.012629803500000022) (0.012681592000000005) (0.012674452999999974) (0.012642005999999997) (0.01265346149999999) (0.013051278) (0.0125793555) (0.012644863499999992) (0.012459273500000007) (0.013002985000000009) (0.01257618449999999) (0.012796077000000003) (0.012696872999999997) (0.012645811499999993) (0.012590092999999997) (0.01320010449999999) (0.012710876499999996) (0.012642057000000012) (0.01273572449999999) (0.012425771500000016) (0.012361887500000016) (0.012636943999999997) (0.012221475499999995) (0.012400339499999996) (0.012355994000000009) (0.012302965999999985) (0.012246212999999992) (0.012653305500000003) (0.012402307500000001) (0.012388446000000011) (0.012923530000000003) (0.012567214500000007) (0.012676226499999999) (0.012352267500000028) (0.012218127499999995) (0.012555532500000008) (0.012184372000000013) (0.012400942999999998) (0.012340640999999986) (0.012158665999999999) (0.012667432500000006) (0.012636132499999994) (0.012470945999999997) (0.012364701000000006) (0.012626338499999987) (0.012490630999999988) (0.012618771500000014) (0.012665323499999992) (0.012384407) (0.012548109000000002) (0.012342208500000007) (0.012595258499999984) (0.013039562500000004) (0.012967484500000001) (0.01270196300000001) (0.012546453999999999) (0.012596763499999997) (0.012720471499999997) (0.012533640499999998) (0.013092300000000001) (0.012895047500000006) (0.012954102000000009) (0.012585723500000007) (0.013012672000000003) (0.01266031149999998) (0.012786176499999982) (0.013128374499999984) (0.012536093000000012) (0.012493308000000022) (0.012959974500000013) (0.012650763499999995) (0.012743328999999998) (0.012697909000000007) (0.012678626499999998) (0.012585852000000008) (0.012902787500000013) (0.012695250499999991) (0.012893372000000014) (0.01266645000000001) (0.012982601999999996) (0.01260241500000002) (0.012734785999999998) (0.012752687000000026) (0.012334365) (0.01228732199999999) (0.012235005500000007) (0.012433440500000018) (0.012196674500000018) (0.01254738200000001) (0.012389045999999987) (0.012551984499999988) (0.01228523799999999) (0.012896831999999997) (0.012640265000000012) (0.012665492) (0.012519257999999991) (0.012445823499999994) (0.012357014000000013) (0.012779955500000023) (0.012350508999999996) (0.0121874535) (0.012311524500000018) (0.012341818500000004) (0.012925945000000008) (0.012495314999999993) (0.012240394999999987) (0.012454655499999995) (0.012697708499999988) (0.01244675050000002) (0.0122964245) (0.012467658500000006) (0.01236378149999999) (0.012314410499999998) (0.012479468999999993) (0.01236923799999999) (0.012522921499999992) (0.012674822500000002) (0.012762793500000022) (0.012678409000000002) (0.01276152400000001) (0.012797363000000006) (0.0124114045) (0.012738533499999996) (0.012714780500000009) (0.012640010000000021) (0.012731932499999987) (0.012744884500000012) (0.012761843000000009) (0.012694322999999993) (0.012670912499999992) (0.012800325000000015) (0.012665593500000003) (0.012667692999999994) (0.012565511500000001) (0.012615259500000003) (0.0128499755) (0.012658525500000004) (0.012787185500000006) (0.012681839000000028) (0.012660575499999993) (0.012580601499999997) (0.012795229000000005) (0.013108337999999997) (0.012823215499999999) (0.012721277999999989) (0.012680101499999999) (0.01287506599999999) (0.012458960500000019) (0.012682994999999989) (0.012264723000000005) (0.012536568499999984) (0.012571348499999996) (0.0122491505) (0.012375256999999987) (0.012457659999999995) (0.01286778849999999) (0.012328729999999996) (0.012953558500000004) (0.012522208999999992) (0.012474580000000013) (0.012404049) (0.012381326999999998) (0.012438709999999992) (0.012340576000000006) (0.012435104999999988) (0.012331181499999996) (0.012280318999999998) (0.012419818) (0.012110780500000001) (0.012382986500000012) (0.012246719000000003) (0.012405205000000002) (0.012459935000000005) (0.012453795000000017) (0.012341783000000023) (0.012753442000000004) (0.012611840499999999) (0.01263959499999999) (0.012419946000000015) (0.012545686000000014) (0.012636837499999984) (0.012785112000000015) (0.012622633499999994) (0.012587861999999991) (0.0126386005) (0.012884819499999992) (0.012783255000000007) (0.012836341999999987) (0.012593028500000006) (0.012769538499999983) (0.012867802499999997) (0.013304410999999988) (0.012746056999999991) (0.012854552000000005) (0.01276722249999998) (0.013102092499999995) (0.012721734000000012) (0.012488925499999998) (0.012705075499999996) (0.01271539549999999) (0.012766797499999996) (0.01297072299999999) (0.012446989999999991) (0.012664316500000009) (0.013215357499999983) (0.013119237000000006) (0.012843198499999986) (0.012770007000000014) (0.012950102999999977) (0.012682733000000002) (0.012938162500000003) (0.012129680500000004) (0.012277051999999997) (0.012444597500000001) (0.012115659) (0.012282913000000006) (0.012492242499999986) (0.01241904499999999) (0.012607339000000009) (0.01216552600000001) (0.012404703999999989) (0.012654994000000003) (0.012357266999999991) (0.012375184000000011) (0.012365127000000004) (0.012581541000000002) (0.012468423500000006) (0.012430500499999997) (0.012634086000000003) (0.012627667999999995) (0.012116309000000006) (0.012148775999999986) (0.012145582000000002) (0.01232659500000001) (0.012412168500000001) (0.012464485499999997) (0.01216250499999999) (0.012264759499999986) (0.012759390999999995) (0.012503311499999989) (0.012443721500000005) (0.012416891499999999) (0.012413975000000008) (0.012779171000000006) (0.012664981499999992) (0.012489159999999985) (0.012634490499999998) (0.012572734500000002) (0.012743820000000003) (0.012620001000000006) (0.012482872000000006) (0.0128172275) (0.012851088999999996) (0.012810789000000003) (0.0125270475) (0.0127930235) (0.012862268999999996) (0.012621730999999983) (0.013001199000000005) (0.012768462000000008) (0.012583240499999995) (0.012775726000000015) (0.012763654499999999) (0.012886372999999993) (0.012579024499999994) (0.01265197400000001) (0.012737581499999998) (0.01260160149999999) (0.012738345000000012) (0.013225145999999993) (0.01292621400000002) (0.012614255000000005) (0.012619634500000004) (0.012593501500000007) (0.012959819999999997) (0.012272912499999997) (0.012557002999999997) (0.012258816500000005) (0.012492338000000006) (0.01257132300000001) (0.012391380499999993) (0.012315802) (0.012207633999999995) (0.012440294000000005) (0.012855709000000007) (0.012210370499999998) (0.012658728500000008) (0.012501776500000006) (0.012458016500000002) (0.012483643999999988) (0.012679978499999994) (0.012398817499999992) (0.0125999725) (0.012205806500000013) (0.012620087000000002) (0.012429603000000011) (0.01308446299999999) (0.01238378300000001) (0.012427914999999998) (0.0125501435) (0.012335748999999993) (0.012728576499999977) (0.012721910500000003) (0.012466584000000003) (0.012439211499999991) (0.012511098500000012) (0.012607481999999975) (0.012714918000000006) (0.012664336499999998) (0.012671389000000005) (0.012968378500000002) (0.012927216500000005) (0.012645015999999995) (0.012636606000000009) (0.012940439499999998) (0.012574034999999997) (0.012763073500000013) (0.01286119099999998) (0.01286155550000001) (0.012837840999999989) (0.012694588500000006) (0.01291039849999999) (0.012552084500000005) (0.012636812500000011) (0.012633029000000004) (0.01268018650000001) (0.01269142799999999) (0.012760991499999999) (0.012582813000000012) (0.012695233500000028) (0.012986872499999996) (0.012771802000000027) (0.012758535000000001) (0.013001531999999996) (0.012807991500000004) (0.013198505000000013) (0.012610823000000007) (0.013225392500000002) (0.013076068999999996) (0.012474274499999993) (0.0123748905) (0.012277738499999996) (0.012318212000000009) (0.012331029499999993) (0.012623540999999988) (0.012447496500000016) (0.01243466) (0.012711297499999996) (0.012629925) (0.012780407999999993) (0.012382860999999995) (0.012390064999999992) (0.012567055500000007) (0.012492721999999998) (0.012707766500000009) (0.012375806500000003) (0.012507535) (0.012617089500000012) (0.012516825999999995) (0.012303991) (0.012159917999999992) (0.012381833499999995) (0.012704603500000008) (0.012310357999999993) (0.012272988999999984) (0.012375807000000003) (0.012449148500000007) (0.012697786500000002) (0.012415569500000001) (0.012589750999999996) (0.012533571500000007) (0.012471476499999995) (0.012561954500000014) (0.012911850500000002) (0.012740307499999992) (0.0125509345) (0.012551803999999986) (0.012653095000000003) (0.012487229000000002) (0.0129989135) (0.012701872000000003) (0.012886585499999978) (0.012745444500000008) (0.012897189000000003) (0.012602620000000009) (0.012843836500000011) (0.012749500499999997) (0.012788420999999994) (0.012582876500000006) (0.012793616999999993) (0.012724985500000008) (0.012529864000000002) (0.012644471500000004) (0.012776319499999994) (0.01295068499999999) (0.01277374199999999) (0.012849787499999987) (0.012614894499999987) (0.012847851999999993) (0.01284035650000001) (0.012641472) (0.012888996) (0.012966740500000018) (0.012691400500000005) (0.012305968999999986) (0.012459826000000007) (0.0122365475) (0.0121995815) (0.012434445999999988) (0.012352228500000006) (0.012277721999999991) (0.012767175000000006) (0.012511583999999992) (0.01249890350000002) (0.012488553999999999) (0.0122392625) (0.012185749999999995) (0.012450746999999998) (0.012693516000000002) (0.012359877000000005) (0.012164272000000004) (0.0123486035) (0.012552884000000014) (0.012332013000000003) (0.012487277500000005) (0.012317487500000016) (0.012897569999999997) (0.012557519499999975) (0.01230220550000001) (0.012675079499999992) (0.012374233999999998) (0.012493249500000012) (0.012492958500000026) (0.012404600999999987) (0.012754128999999989) (0.013062623999999995) (0.012826555000000003) (0.012535233999999992) (0.012597863500000014) (0.01315158150000001) (0.012481562500000001) (0.012783342500000003) (0.012578444499999994) (0.01267072050000001) (0.012990144000000023) (0.012742422000000003) (0.012782859999999993) (0.012758764999999991) (0.012920280999999992) (0.012897421500000006) (0.012737602) (0.012589138499999986) (0.012471271500000006) (0.01281476749999999) (0.012675059500000002) (0.012592908) (0.012886342999999995) (0.012749739000000024) (0.012710610499999997) (0.012682048999999987) (0.012811600000000006) (0.012733978999999979) (0.012717865499999995) (0.012991939999999993) (0.0130106735) (0.012875798000000008) (0.01308519349999998) (0.012157254500000006) (0.012452675499999996) (0.01246997050000001) (0.012207279500000001) (0.013726542000000008) (0.012222229000000001) (0.012436885999999994) (0.012423139000000014) (0.012951054500000003) (0.01225366800000001) (0.012509006500000003) (0.013237304999999991) (0.012702048999999993) (0.012643606000000002) (0.012558892999999974) (0.012318365500000011) (0.012403966499999988) (0.012479470500000006) (0.012254466499999991) (0.012270622499999995) (0.01285530850000001) (0.012568852499999991) (0.012417039000000005) (0.012421427999999998) (0.012594610999999992) (0.012302684000000008) (0.012468911500000013) (0.012435716000000013) (0.012626123999999975) (0.012800147000000012) (0.012752871999999985) (0.012178189999999992) (0.012586401499999997) (0.012780973999999987) (0.012524054500000006) (0.012852896999999974) (0.012551473000000007) (0.012579535000000003) (0.012748145000000002) (0.012603240000000002) (0.012795374499999998) (0.013498583999999994) (0.012953631499999993) (0.013061994000000007) (0.012867324499999985) (0.012983519499999985) (0.012759259000000023) (0.012633599999999981) (0.012558202500000004) (0.0128220795) (0.012519196999999996) (0.012780706500000003) (0.012530900499999997) (0.012585693999999994) (0.012795304000000007) (0.012507358499999996) (0.012629179500000018) (0.013014216999999995) (0.012813945999999993) (0.012970553999999981) (0.01293626249999999) (0.012922803499999996) (0.012695539500000005) (0.012963433999999996) (0.012387483500000018) (0.012449298000000011) (0.012379840500000003) (0.012618366499999992) (0.012408247000000011) (0.012416437500000002) (0.012405986999999993) (0.012312326499999984) (0.012713597000000007) (0.0124925055) (0.01294480549999999) (0.012296197000000009) (0.012736643499999992) (0.012543523000000015) (0.012696965500000018) (0.012449144499999995) (0.012813962999999998) (0.013006345500000002) (0.012578805499999984) (0.012430570500000016) (0.012481445000000008) (0.012287710000000007) (0.012314665500000016) (0.012604851500000014) (0.012388552499999997) (0.012429355000000017) (0.012456366499999996) (0.012655697500000007) (0.012509046499999982) (0.012587777499999994) (0.012559526000000001) (0.01285870850000001) (0.012569808500000001) (0.012524816999999994) (0.012710648000000005) (0.012630752499999995) (0.013002235500000014) (0.01269998349999997) (0.013067286499999997) (0.012895580000000004) (0.012576483000000013) (0.012792332999999975) (0.013046306000000035) (0.012942303500000002) (0.012765598500000003) (0.013050357499999984) (0.01277679000000001) (0.01271216800000001) (0.012891640999999995) (0.013212388999999991) (0.01261805199999999) (0.012536212500000019) (0.013018697999999995) (0.012567591500000003) (0.012569161999999981) (0.012780962499999993) (0.012443151) (0.012800850499999988) (0.012884330500000013) (0.012963902999999971) (0.01273093850000001) (0.012810356000000023) (0.012716427999999988) (0.012930270499999993) (0.012257255499999994) (0.012218162000000005) (0.012322515500000006) (0.012767637499999998) (0.012359055499999994) (0.012561233000000019) (0.012458609499999995) (0.012414074000000011) (0.012866245000000012) (0.012339048500000005) (0.012439731999999995) (0.012557146500000005) (0.012303136500000006) (0.012901204500000013) (0.012562280000000009) (0.012529708500000014) (0.012293945499999986) (0.012528298999999979) (0.012752905500000009) (0.012377286500000001) (0.01268443750000002) (0.012193757) (0.012271887500000009) (0.012433405000000008) (0.012899125999999983) (0.012977776999999996) (0.012498703000000014) (0.012397340999999978) (0.012346793500000008) (0.012778825500000007) (0.012369909000000012) (0.01228558149999999) (0.012525328499999988) (0.012588941500000006) (0.012703443500000008) (0.012721132999999982) (0.012695406500000006) (0.012757265500000003) (0.012731836999999982) (0.012719167500000017) (0.012715147000000024) (0.012919726499999992) (0.012772172500000026) (0.012820589499999993) (0.012799789000000006) (0.012698943000000018) (0.013018085499999998) (0.012789190000000006) (0.012525180999999996) (0.012771147999999968) (0.012663493999999983) (0.012455427500000019) (0.012669803999999993) (0.0128714635) (0.012863047500000016) (0.012826972000000006) (0.012980141500000014) (0.013009307499999984) (0.012960312000000015) (0.012738101500000001) (0.01301714599999998) (0.012615916999999977) (0.01274806399999999) (0.012936622500000008) (0.012189345000000004) (0.012648739000000006) (0.012263043000000001) (0.0122328815) (0.01275418149999999) (0.012454484500000015) (0.012388854000000005) (0.01244567000000002) (0.012509765000000006) (0.012311987499999996) (0.012249830000000017) (0.012520195999999983) (0.01232549749999999) (0.013046378999999983) (0.01229480550000002) (0.012592362000000024) (0.012246846999999991) (0.012365297500000011) (0.01235754) (0.012210483500000008) (0.012571574000000002) (0.012393580500000001) (0.012459445999999985) (0.012597453499999994) (0.012596366499999997) (0.012637006999999992) (0.012425018499999982) (0.012461612999999983) (0.012903259999999986) (0.012596046999999999) (0.012560992500000007) (0.012253229500000004) (0.012570315499999998) (0.012749206500000013) (0.012603900499999973) (0.012794078000000014) (0.012652154999999998) (0.012625332000000003) (0.012898055500000019) (0.012625435000000004) (0.012927916500000011) (0.01285512450000001) (0.012732812499999996) (0.012920971000000003) (0.012938103500000006) (0.012623037500000003) (0.012660489000000011) (0.012640330499999977) (0.012609040999999988) (0.012706590000000004) (0.012683134499999998) (0.012887146000000002) (0.012513024499999997) (0.012682696999999979) (0.012795739) (0.012804148500000001) (0.013177540499999987) (0.01304648450000001) (0.012923151999999993) (0.012723116500000006) (0.01302861399999998) (0.012759160500000005) (0.012943556000000009) (0.013698862000000006) (0.012335731499999988) (0.01237924700000001) (0.012461316) (0.012537423499999992) (0.012256931999999998) (0.012237788) (0.01238235750000001) (0.012544784499999989) (0.012884218000000003) (0.012546488000000008) (0.012232358999999998) (0.012350771999999996) (0.012608701) (0.012514499499999998) (0.012486128499999999) (0.012325647999999995) (0.012597681999999999) (0.01238702799999998) (0.012636283500000012) (0.012520762000000005) (0.012518805999999993) (0.012528610499999995) (0.012589009999999998) (0.0124627385) (0.012353681500000005) (0.012347657500000012) (0.012512034000000005) (0.0123724885) (0.012452210000000005) (0.012327892500000007) (0.012533491500000007) (0.012373638500000006) (0.013174436999999997) (0.012739312000000003) (0.012803712999999994) (0.012529392) (0.012573544000000006) (0.012905386000000005) (0.01252751399999999) (0.012341521499999994) (0.012641961499999979) (0.0128987235) (0.01259666050000001) (0.013001161000000011) (0.012553579999999995) (0.0129424405) (0.012841247999999986) (0.012909634500000003) (0.01255587200000001) (0.012709061500000007) (0.012869978500000004) (0.012510969499999997) (0.012617152999999992) (0.012588223999999995) (0.012877059499999996) (0.01267196000000001) (0.01262090099999999) (0.013241897500000002) (0.012945890000000002) (0.012712658500000001) (0.012873882500000003) (0.012826779499999996) (0.012634127000000009) (0.012870007000000017) (0.012271621999999996) (0.0124575185) (0.01229322749999999) (0.012357050500000008) (0.0122879885) (0.012179763999999982) (0.012545849999999997) (0.012378723999999994) (0.012487167499999993) (0.012569315499999997) (0.01235001849999999) (0.012613966000000018) (0.012275252) (0.012532024500000016) (0.012562968499999994) (0.012370191500000002) (0.012250727000000003) (0.012257405000000013) (0.012341856499999998) (0.01261778949999999) (0.012790824999999992) (0.012716694499999986) (0.012288387999999997) (0.012427435) (0.012643482000000011) (0.01233780100000001) (0.012429006500000006) (0.0126851075) (0.012490529999999986) (0.012508811499999994) (0.012423432999999998) (0.012363711999999999) (0.012540990500000002) (0.012690729999999997) (0.012926498499999994) (0.0125849725) (0.012735290499999996) (0.012996007500000004) (0.012590682500000006) (0.01290722050000001) (0.012757604499999992) (0.012762535999999991) (0.012886046499999998) (0.01262440649999999) (0.012748205500000012) (0.01262488349999999) (0.012702971999999993) (0.013001977999999997) (0.012690855999999986) (0.012921530999999986) (0.012651083000000007) (0.012694547) (0.012898392999999994) (0.01309524849999999) (0.013200366000000005) (0.01267283100000001) (0.012832998999999998) (0.012721740999999995) (0.01292608050000002) (0.012563225500000011) (0.012893644999999995) (0.013060804999999995) (0.01261949050000001) (0.012822875499999983) (0.0123534815) (0.012408606500000002) (0.012441045499999998) (0.012227174999999993) (0.012417768499999995) (0.012311154000000005) (0.012415609999999994) (0.012273576999999994) (0.012380772500000012) (0.012580405000000003) (0.012338065500000009) (0.01250404300000002) (0.012120083000000018) (0.012740364000000004) (0.012461635999999998) (0.012466022000000007) (0.012443028500000008) (0.012419945000000016) (0.012186597499999993) (0.01226062600000001) (0.012574634499999987) (0.012461274999999994) (0.012558423999999999) (0.012423624500000008) (0.012622111000000005) (0.01258769949999998) (0.012455162499999992) (0.012706754999999986) (0.012439395999999991) (0.012656639499999997) (0.012422792000000002) (0.01258801050000001) (0.01253546400000001) (0.012479333499999995) (0.012503911500000006) (0.012559400999999998) (0.012652026999999996) (0.012868655500000006) (0.012577926000000003) (0.012973974499999985) (0.0131065915) (0.012772749999999986) (0.012947933500000008) (0.012639050499999999) (0.013105131500000006) (0.012824127500000004) (0.012955873500000006) (0.013065649499999998) (0.012773192500000002) (0.012750471) (0.012810072500000005) (0.01257382550000001) (0.012699491000000007) (0.012460431999999994) (0.012817090000000017) (0.012934124500000005) (0.012869289500000006) (0.012943669000000005) (0.012670496500000003) (0.012526201000000015) (0.012695348999999995) (0.013032041000000008) (0.012791748000000006) (0.01273506499999999) (0.01226036500000001) (0.012497413499999999) (0.012360311500000012) (0.012196741499999983) (0.012247911) (0.012242644999999996) (0.012528733500000014) (0.012292316499999997) (0.012453717500000003) (0.012560509499999997) (0.012659020500000007) (0.012269390500000005) (0.01287341950000001) (0.01236242600000001) (0.012727471000000004) (0.012735209499999997) (0.012285818500000004) (0.012521703499999995) (0.012221487000000003) (0.012461832000000006) (0.012431700000000004) (0.01225607699999999) (0.012258924000000004) (0.012306539499999991) (0.012544840000000002) (0.012326412999999994) (0.012236707) (0.012516871999999998) (0.012564022500000008) (0.012724665999999996) (0.012343371500000005) (0.012566456500000003) (0.012723579000000013) (0.012889652000000001) (0.0125081165) (0.012741357999999994) (0.013260961999999987) (0.012552247000000002) (0.012650583000000007) (0.012847437000000003) (0.0127892265) (0.012739737499999987) (0.012646004500000002) (0.01321884050000001) (0.012689979000000004) (0.012828879000000015) (0.012945722500000006) (0.012883318500000004) (0.012945184499999998) (0.012811281500000007) (0.012610015500000002) (0.012804594499999988) (0.012807633999999998) (0.012794848500000011) (0.012584870999999997) (0.012477347) (0.012871842499999994) (0.012652884999999989) (0.012820009499999993) (0.012667452999999995) (0.012733123499999999) (0.012716013499999984) (0.012812722999999998) (0.0130020525) (0.012291980000000008) (0.012388589500000005) (0.012281812000000003) (0.012382203000000008) (0.012333077999999997) (0.012217198999999998) (0.012424268500000002) (0.012237341999999998) (0.012429488000000002) (0.012667042500000003) (0.012340678499999994) (0.012386917999999997) (0.012409729000000008) (0.0125083525) (0.01228130550000002) (0.01242848399999999) (0.012396765500000004) (0.012241562499999997) (0.012316801500000002) (0.012304514999999988) (0.012470594500000015) (0.012144887999999993) (0.012260565000000001) (0.012512878000000005) (0.012674627999999993) (0.012661496500000008) (0.0125468745) (0.012247818999999993) (0.012307944000000001) (0.012541785) (0.01236441299999999) (0.012311175499999993) (0.012476963000000008) (0.013191234499999996) (0.012941086000000004) (0.012564424500000004) (0.01259906650000002) (0.012819089000000006) (0.012542728500000003) (0.012709754000000004) (0.012538518499999998) (0.012592135500000004) (0.01284223000000001) (0.012505295999999999) (0.012663531499999992) (0.013252389500000003) (0.012900271500000005) (0.012821413000000004) (0.012381819999999988) (0.012782794) (0.012805398499999995) (0.012464766500000002) (0.012648902500000017) (0.012609128999999997) (0.012467476499999991) (0.012780471000000002) (0.012679553499999982) (0.012517557499999998) (0.013118513999999998) (0.012679005500000007) (0.012915953500000021) (0.012996355500000015) (0.013289634000000008) (0.0126766985) (0.012380224000000009) (0.012257674999999996) (0.012324227500000007) (0.012539414999999998) (0.012217089000000014) (0.0122691615) (0.012773505000000004) (0.012293705500000002) (0.012427667000000003) (0.012610951499999995) (0.01244633199999999) (0.012798788500000005) (0.012291022499999998) (0.012271229500000008) (0.012502697000000007) (0.01255597) (0.012433036000000008) (0.012353576500000005) (0.012886965) (0.012301812499999995) (0.012158306500000007) (0.012282479499999999) (0.012450851500000013) (0.012176701999999998) (0.012354914500000008) (0.012715539999999984) (0.012325970000000006) (0.012433696999999994) (0.012284195999999997) (0.012478930499999999) (0.012379981999999984) (0.012429052500000023) (0.01305037449999999) (0.012852770500000013) (0.012788167000000003) (0.012820627499999987) (0.0126076715) (0.012702176999999995) (0.012606937999999984) (0.012861580999999997) (0.012664233499999997) (0.012763117500000004) (0.012892480499999998) (0.012503962500000007) (0.012722401000000008) (0.01281155049999999) (0.012760135500000006) (0.012564366499999993) (0.012705912) (0.013023345000000006) (0.0127735135) (0.0126945995) (0.012779431999999993) (0.012793709) (0.013203310499999996) (0.012859962500000002) (0.012960394500000014) (0.012573803499999994) (0.012795719999999997) (0.012865716999999999) (0.012678315999999995) (0.013031729500000006) (0.012831887999999986) (0.012902959999999991) (0.012342163000000003) (0.012340787000000006) (0.012306507000000008) (0.012288609500000006) (0.012423592999999997) (0.012341464499999996) (0.012610364499999999) (0.012410168500000013) (0.012523528500000006) (0.0129213735) (0.012361778000000004) (0.012614662499999985) (0.012397807499999997) (0.012853544500000008) (0.01252850350000001) (0.012571029499999997) (0.0125022085) (0.012159732000000006) (0.01231608549999999) (0.01223869050000001) (0.01215690450000001) (0.012560420500000002) (0.012271110500000001) (0.012256240000000002) (0.0127321455) (0.012929046499999985) (0.012779028999999997) (0.012575407499999997) (0.01263808000000001) (0.012270436999999995) (0.012594327500000002) (0.012612102500000014) (0.012875649000000003) (0.0126833965) (0.012590263500000004) (0.012647604500000006) (0.012758109000000004) (0.012698488500000008) (0.012959082499999997) (0.01240971149999999) (0.012689875000000003) (0.013105098999999995) (0.012803134000000008) (0.012778998) (0.012520261000000005) (0.01271194049999999) (0.012588450999999987) (0.012562668500000013) (0.012515089000000007) (0.012695316000000012) (0.012626300500000007) (0.012761301500000002) (0.012732868999999994) (0.012725114499999995) (0.012704407000000001) (0.012562149500000008) (0.013061695999999998) (0.012631604500000004) (0.012894529500000002) (0.012589776999999996) (0.013080207999999996) (0.012640977999999997) (0.01280287400000002) (0.013082620999999989) (0.012279940500000017) (0.0123183075) (0.012398046999999995) (0.012271635999999989) (0.012414090499999988) (0.012446227500000004) (0.012342199500000012) (0.012475015999999992) (0.012558610499999998) (0.012144513499999995) (0.01301814300000001) (0.012297084) (0.012494039999999998) (0.012351875499999998) (0.012733887999999985) (0.012522957000000001) (0.012501228999999989) (0.012308660000000013) (0.012201825500000013) (0.012315048999999995) (0.012386382000000001) (0.012373671500000002) (0.012371008999999988) (0.012241315499999988) (0.012204563000000002) (0.012448264) (0.012310445500000017) (0.012541230000000014) (0.012724006499999996) (0.012335085999999995) (0.012419671999999993) (0.012513548000000013) (0.012510898499999992) (0.012705965) (0.012975045000000004) (0.012557783499999989) (0.012838106000000002) (0.012962027000000001) (0.012990961999999995) (0.01257904) (0.012703350000000002) (0.012731088000000015) (0.012737775999999992) (0.01291477349999999) (0.012966176999999995) (0.013219218500000018) (0.013099157499999986) (0.012632352000000013) (0.012612483500000007) (0.01264439249999999) (0.012456094500000015) (0.012731445500000008) (0.0128428275) (0.012558269999999996) (0.0127167995) (0.012634207500000008) (0.013339293999999988) (0.012758259500000008) (0.012675809499999982) (0.01305476600000001) (0.01280161249999999) (0.012725583499999998) (0.012459925999999996) (0.01272269799999999) (0.012429603000000011) (0.012429463499999988) (0.012667710499999985) (0.012297278000000009) (0.012292134999999996) (0.012381358000000009) (0.012239708499999988) (0.01253883850000001) (0.012457838499999985) (0.0125135465) (0.012405479999999997) (0.012465251499999996) (0.012520135000000002) (0.013085898499999998) (0.012419379499999994) (0.012420704000000019) (0.012369433500000013) (0.012294076000000001) (0.01237809350000002) (0.01258749449999999) (0.012494559500000002) (0.012366459999999996) (0.012361796499999994) (0.012342109500000004) (0.012343851000000017) (0.012284966499999994) (0.012439645) (0.012735829000000004) (0.012184742499999984) (0.012489363999999989) (0.012519936500000009) (0.012507422500000004) (0.012418883499999991) (0.013186704000000007) (0.013118968499999994) (0.012829359499999998) (0.012653588500000007) (0.012757191000000001) (0.012915219000000006) (0.012374008499999992) (0.012805063000000005) (0.012576821500000002) (0.012713605500000003) (0.012634562499999988) (0.012681048) (0.012740904499999983) (0.012880034000000012) (0.012789013999999987) (0.012748539499999989) (0.012614514499999993) (0.012559268000000012) (0.013077152499999994) (0.012532489499999994) (0.012651030499999993) (0.012822541500000006) (0.012590972000000006) (0.0127339915) (0.013039321500000006) (0.012814455499999988) (0.012661501999999991) (0.012703920999999993) (0.012631360499999994) (0.012759553999999992) (0.012811224499999996) (0.012295126500000003) (0.012571151499999988) (0.012281371) (0.012614326999999995) (0.012629636000000014) (0.0123042565) (0.012384044999999996) (0.0122893045) (0.012333286999999998) (0.01248790100000001) (0.012447979499999998) (0.012839305499999995) (0.012412339499999994) (0.01255869850000002) (0.012359728) (0.012749759999999985) (0.012728187000000002) (0.012493267500000002) (0.012509879499999987) (0.012193430000000005) (0.012543206500000001) (0.012198066499999993) (0.012355979000000003) (0.012459792500000025) (0.012394180000000005) (0.012528613999999993) (0.0127536615) (0.012515205500000015) (0.012422555000000002) (0.012528205) (0.012547571499999993) (0.012583329500000004) (0.012714554500000003) (0.012964179499999992) (0.012728266000000002) (0.012625093000000004) (0.0125028935) (0.012473525) (0.012734362999999999) (0.012715524500000006) (0.012882893500000006) (0.012986251000000004) (0.01290441349999999) (0.012695984500000007) (0.012527296000000007) (0.012904732000000002) (0.013057192500000009) (0.012671666000000012) (0.012882055500000017) (0.012742185499999989) (0.013052353500000002) (0.012718713000000006) (0.012723974499999999) (0.012759097499999997) (0.012987581500000012) (0.012647726000000012) (0.01285726899999999) (0.012870349999999989) (0.012984014499999988) (0.012883349500000002) (0.012649430000000003) (0.01315554549999999) (0.012616730500000006) (0.012701637500000001) (0.012445482500000007) (0.012559497500000003) (0.012702062) (0.012559469500000017) (0.012449652999999991) (0.012285823500000001) (0.0122956325) (0.01226481800000001) (0.012297037999999982) (0.012624507000000007) (0.012312251499999982) (0.012445714499999996) (0.01254498250000001) (0.012381524500000005) (0.012476875999999998) (0.01268862200000001) (0.012229575999999992) (0.012340740500000003) (0.01237240299999999) (0.012290859500000001) (0.012315323500000003) (0.012384564) (0.012340228500000008) (0.012381096499999994) (0.012745314500000007) (0.012637404000000005) (0.01241809499999999) (0.0124293095) (0.012372319999999992) (0.012575525500000004) (0.012324757499999991) (0.01249098500000001) (0.012491411499999994) (0.012535368000000005) (0.013247421999999995) (0.012586142499999994) (0.012657553000000002) (0.012502260500000015) (0.012666314499999998) (0.012494498999999992) (0.012734786499999998) (0.012669020500000003) (0.012895533000000015) (0.012826433999999998) (0.012695560499999994) (0.013015962500000006) (0.012647377000000015) (0.012783448500000003) (0.012715198999999996) (0.013213925000000001) (0.012536064) (0.012746925500000006) (0.012869591000000014) (0.012844925500000007) (0.01265997349999999) (0.01278335400000001) (0.012549278999999997) (0.012848706999999987) (0.012779186499999998) (0.012616279000000008) (0.012761541500000001) (0.012640640500000008) (0.012616176499999993) (0.012861944) (0.012392553) (0.012474264500000012) (0.012273972499999994) (0.012502719499999995) (0.01253049299999999) (0.012833982499999994) (0.012216940499999981) (0.01246418199999999) (0.012540799500000005) (0.012342024000000007) (0.01241370700000001) (0.012406063500000009) (0.0123371055) (0.012526304500000002) (0.012357872000000006) (0.012503798499999996) (0.012829688500000005) (0.012406925499999999) (0.012240571999999991) (0.012568811999999999) (0.012200972000000018) (0.012677532000000005) (0.012597940500000016) (0.012568325000000005) (0.012573779999999993) (0.012691066500000014) (0.012308134499999984) (0.012608606499999994) (0.012345105000000009) (0.01235864049999999) (0.012491735000000004) (0.012486719000000007) (0.012787560000000003) (0.012603845000000002) (0.012500482500000007) (0.012720569000000015) (0.013072008499999996) (0.012701352999999999) (0.012374503000000009) (0.012619969499999995) (0.013066044999999998) (0.012784062000000013) (0.012638770500000007) (0.013055395999999983) (0.012849951499999998) (0.012823998499999989) (0.013038183000000009) (0.012795025000000002) (0.012557940500000003) (0.012659702999999994) (0.012614147000000006) (0.0126205925) (0.01279491549999999) (0.013070767000000011) (0.012631625999999993) (0.012971113500000006) (0.012598458000000007) (0.012666394500000011) (0.012801273500000002) (0.01281460449999998) (0.012619274999999985) (0.012886996999999997) (0.012795780999999992) (0.012692186500000008) (0.012406286500000002) (0.01262815149999999) (0.012077055500000003) (0.012635859999999999) (0.012276443999999997) (0.012695524) (0.012366962499999995) (0.012667536000000007) (0.012403109500000009) (0.012904302500000006) (0.012622064000000002) (0.012505450500000001) (0.01242758100000002) (0.012301272499999988) (0.012234185000000009) (0.012456160999999993) (0.012221155499999997) (0.012325240500000001) (0.012074322499999984) (0.012769042999999994) (0.012306560000000008) (0.012390642500000007) (0.012195086999999993) (0.012287403499999988) (0.012305925499999995) (0.012558346999999997) (0.012388496499999999) (0.012341728999999996) (0.012655676000000005) (0.012644533) (0.012235409500000002) (0.012651976999999995) (0.012566125499999997) (0.012729023500000006) (0.012524702499999998) (0.01275467949999999) (0.012813823500000016) (0.012429197500000017) (0.012519953) (0.012815286999999995) (0.012824459499999996) (0.012684292) (0.013100971000000003) (0.012812905500000013) (0.012759517000000012) (0.012804423500000009) (0.012782198499999994) (0.01291498599999999) (0.012816948499999994) (0.012608627999999997) (0.01265245949999999) (0.012809241500000013) (0.012760256000000011) (0.012867311500000006) (0.012733361500000012) (0.012767593999999993) (0.01300214399999998) (0.012739880499999995) (0.012594215500000006) (0.012698986999999981) (0.012686296000000014) (0.01291224449999999) (0.012619340999999992) (0.012910320500000017) (0.012173705500000007) (0.01228615550000002) (0.012516882999999979) (0.012519935999999995) (0.01244535350000002) (0.012266996000000002) (0.012214990499999995) (0.012188117499999998) (0.012703561000000002) (0.012849915500000017) (0.012583252499999989) (0.012240516999999992) (0.012404051499999999) (0.012437734499999992) (0.012308460000000007) (0.012646081999999989) (0.012200218500000012) (0.012523228499999997) (0.013016555499999985) (0.0125713685) (0.012444567500000017) (0.012179115000000004) (0.012742116499999998) (0.012337944999999989) (0.012347946999999998) (0.012461495500000003) (0.012638281000000001) (0.012598422000000012) (0.012312654000000006) (0.012652913000000016) (0.012497484999999989) (0.012513112000000007) (0.012908264000000003) (0.0126853985) (0.012888471999999998) (0.012799857499999998) (0.013124483500000006) (0.012611792999999996) (0.012663644500000001) (0.012609542500000001) (0.01281087950000001) (0.012598095500000031) (0.01258550550000001) (0.01297948950000001) (0.013071521999999988) (0.012780900499999998) (0.012887117500000003) (0.012616602000000005) (0.012695578999999999) (0.012746668499999989) (0.012790451999999994) (0.012662910999999999) (0.012744445499999993) (0.012739161499999999) (0.012722919500000013) (0.012786812999999994) (0.0128175715) (0.013047327500000011) (0.013085021999999988) (0.012984563000000018) (0.012740645500000009) (0.012774713000000007) (0.012943278999999988) (0.012809815499999988) (0.012320850000000008) (0.012425608500000004) (0.012204744500000003) (0.012431490000000003) (0.012612265999999997) (0.012290528999999994) (0.012370332499999998) (0.012715661500000003) (0.012731384499999998) (0.012569833500000002) (0.012609906500000004) (0.012309260500000002) (0.012541653) (0.012517963499999993) (0.012497675499999986) (0.012791437999999988) (0.012196966000000004) (0.012481458500000014) (0.012890503999999983) (0.012309075500000002) (0.013218363999999982) (0.012587381999999994) (0.012701632000000004) (0.012375025499999998) (0.012780096000000005) (0.012394224499999995) (0.012452568499999997) (0.012456936999999987) (0.012436411999999994) (0.012436658999999989) (0.012482778499999986) (0.012843234000000023) (0.012428456000000004) (0.012730673499999998) (0.012679546000000014) (0.012743072999999994) (0.012916986500000019) (0.012716729499999996) (0.012589478000000001) (0.012911303499999999) (0.0129984135) (0.012792105999999998) (0.01264554000000001) (0.012891989999999992) (0.012925013999999999) (0.012914603499999996) (0.012746257999999996) (0.01273785799999999) (0.01279051299999999) (0.01286967) (0.0127595125) (0.01288678900000001) (0.012426770500000003) (0.012451575500000006) (0.012531651500000004) (0.012897562000000001) (0.012846637999999994) (0.013250441500000001) (0.012860763499999997) (0.012610485500000004) (0.01273535599999999) (0.01268970400000001) (0.0126735615) (0.01261251799999999) (0.012714746499999985) (0.01260037600000001) (0.012475910999999992) (0.012814372000000004) (0.012324858000000008) (0.012572658) (0.012467497000000008) (0.012605107500000004) (0.012306295999999994) (0.012483314500000009) (0.0129562555) (0.012402557499999994) (0.012548741999999974) (0.012556107999999996) (0.012589289000000004) (0.01250649500000002) (0.012294768000000011) (0.012231753999999997) (0.012391320499999997) (0.0125349295) (0.012587170499999994) (0.012508924500000004) (0.01216746049999999) (0.012290175) (0.012446591499999993) (0.012488500000000013) (0.012342493000000024) (0.012278671000000005) (0.012677369500000008) (0.01288445199999999) (0.012437383499999982) (0.012471760499999998) (0.012810098500000006) (0.012564201999999997) (0.012629070500000006) (0.012552046499999997) (0.012822057999999997) (0.012550667000000001) (0.012925257999999995) (0.012755089000000011) (0.012891899499999998) (0.012657278500000008) (0.012955982000000005) (0.012867002000000002) (0.012937615000000013) (0.0126536275) (0.012659388500000007) (0.012838346499999986) (0.012772252999999997) (0.012832998999999998) (0.012821277500000006) (0.012782524999999975) (0.012733438500000013) (0.012875399499999995) (0.013021735500000006) (0.012712887500000006) (0.0130033455) (0.012592258000000023) (0.012771911000000025) (0.012790179499999985) (0.012799984500000014) (0.012776598499999986) (0.012825897000000003) (0.012682009499999994) (0.012246860999999998) (0.012520526000000004) (0.012703133500000005) (0.012324559499999999) (0.012392872999999985) (0.01241371699999999) (0.0121365675) (0.01252643299999999) (0.01237307700000001) (0.012807744499999996) (0.012478263000000003) (0.012513861000000001) (0.012285958999999999) (0.012456976499999994) (0.01232714) (0.012505381499999996) (0.01261741000000001) (0.012570763499999998) (0.01291014950000001) (0.012209985999999992) (0.012609170000000003) (0.012630269000000013) (0.012477297000000012) (0.012213370500000001) (0.012557238500000012) (0.012412340499999994) (0.012590432999999998) (0.012514430000000007) (0.012463544000000007) (0.012787168000000002) (0.012636659000000008) (0.013172413999999993) (0.012677839999999996) (0.012672361999999979) (0.012848046500000015) (0.0129947735) (0.012542740999999996) (0.012679066500000002) (0.012576843500000004) (0.012666669500000005) (0.012807098999999988) (0.012870042000000012) (0.012627540000000007) (0.01269277349999999) (0.013071961500000007) (0.012772052500000006) (0.012817998000000011) (0.0127228905) (0.012514805000000004) (0.012567928499999992) (0.012551140500000002) (0.012391853499999994) (0.013108535000000004) (0.012478515999999995) (0.012503360499999991) (0.012748181499999997) (0.01277570900000001) (0.012699226500000008) (0.012546280999999992) (0.0128266685) (0.012835398499999998) (0.012939919499999994) (0.01300307149999999) (0.012640617500000007) (0.012477480999999999) (0.01260944600000001) (0.012595491500000014) (0.012331994999999998) (0.012456119000000002) (0.012483474499999994) (0.012322173000000006) (0.012289645500000002) (0.0121695775) (0.01229915749999999) (0.012293223000000006) (0.012626782999999989) (0.012451219999999999) (0.012404435500000005) (0.0125793045) (0.012253420000000001) (0.012472231) (0.01253253850000001) (0.012560791500000001) (0.012677362500000011) (0.0123199415) (0.012636862999999998) (0.012452116499999999) (0.012240897) (0.012538972500000009) (0.012448077500000002) (0.012431339999999999) (0.012319874999999994) (0.01245541600000001) (0.012952908999999999) (0.012600843) (0.012379711000000002) (0.012901637500000007) (0.01276982950000001) (0.012511711000000009) (0.012627679999999988) (0.01256275350000001) (0.012610447999999996) (0.012598638500000009) (0.013336606) (0.013137507500000006) (0.012786719500000002) (0.012850848499999998) (0.012747045999999998) (0.012721222500000004) (0.012895429999999986) (0.01273192749999999) (0.013062180999999992) (0.01265152500000001) (0.012537649499999998) (0.012595820000000008) (0.012990615999999996) (0.012749505500000008) (0.012645386000000008) (0.012471331999999988) (0.012605606500000019) (0.012719828000000002) (0.012780546500000003) (0.012910167) (0.013213927999999986) (0.012811838499999992) (0.012724901499999997) (0.012830825500000018) (0.012987830000000006) (0.012302962499999986) (0.012561513999999996) (0.012447678500000003) (0.012111700499999989) (0.012264369000000011) (0.012720392999999997) (0.012926457999999988) (0.01221860150000001) (0.0123136145) (0.012353211499999989) (0.012417035500000007) (0.012923319499999988) (0.012283164999999999) (0.012431189500000009) (0.012322162499999997) (0.012353720999999998) (0.012422638500000013) (0.012498755) (0.012257940999999994) (0.012748323499999992) (0.012270639500000013) (0.012407228499999992) (0.012313493499999995) (0.012265617500000006) (0.01236694399999999) (0.012461814999999987) (0.012339403499999999) (0.012262375000000006) (0.012488977499999998) (0.012865196499999995) (0.012525439499999999) (0.012262418999999997) (0.012643218499999997) (0.012708368500000011) (0.012755219000000012) (0.012786493999999995) (0.012862004499999996) (0.012718688000000006) (0.012595234999999996) (0.012632583500000003) (0.0129644015) (0.012688364500000007) (0.012703391000000008) (0.012808004999999997) (0.012730606000000005) (0.012607185000000007) (0.012580677499999998) (0.012922151000000007) (0.012592841500000021) (0.013010724500000001) (0.012597130999999998) (0.012679952999999994) (0.012986484000000006) (0.012556068500000003) (0.012472449499999996) (0.01283964650000001) (0.012829399500000005) (0.012734132000000009) (0.012887253999999987) (0.012656498500000002) (0.012784176500000008) (0.012523964499999998) (0.012679650000000015) (0.013304604499999984) (0.012640613999999994) (0.012632148999999995) (0.012251766000000011) (0.012259447500000006) (0.012501704000000016) (0.012597828000000005) (0.0122574545) (0.012664219000000004) (0.012364007999999996) (0.012624072000000014) (0.012630668500000011) (0.0122582985) (0.012936933499999997) (0.012543276000000006) (0.012596124) (0.012670050000000002) (0.012424273) (0.012260786499999995) (0.01234847650000001) (0.012539083000000006) (0.012302248500000001) (0.012211416000000017) (0.012531822499999998) (0.012462728500000006) (0.01248971900000001) (0.013097987500000005) (0.012413301000000002) (0.0125897165) (0.012430543000000002) (0.01219256249999999) (0.012472614499999993) (0.012235375000000007) (0.01260591400000001) (0.012860181999999998) (0.0128967475) (0.012587477500000013) (0.012500718499999994) (0.012900436000000001) (0.012559940999999991) (0.012721846999999994) (0.0128218165) (0.013041800499999992) (0.012749718999999993) (0.012804303999999989) (0.01282664950000001) (0.012505363500000005) (0.012832366500000011) (0.012828798999999988) (0.012956649999999986) (0.01270518150000001) (0.012473501000000012) (0.012629083000000013) (0.012639717499999994) (0.012860199500000002) (0.012631452500000001) (0.012834333000000003) (0.013086793000000013) (0.013021865500000007) (0.01296834500000002) (0.01287835050000001) (0.012616704999999992) (0.012812590499999998) (0.012826711500000018) (0.01292679599999999) (0.012404715999999996) (0.012267534499999996) (0.012415832000000002) (0.012466141) (0.012751410500000004) (0.012392210000000015) (0.012587935500000008) (0.012281919000000002) (0.012436545999999993) (0.012662359999999998) (0.012452723499999999) (0.0122829785) (0.012490956500000011) (0.01261676049999999) (0.01283316100000001) (0.012314673999999984) (0.012400402000000005) (0.012973504999999996) (0.01243184800000001) (0.012308700000000006) (0.012369350500000001) (0.01238139499999999) (0.012255823999999998) (0.012154114999999993) (0.012579978000000006) (0.012469123999999998) (0.012843241000000005) (0.012708589999999992) (0.012584203500000002) (0.012266611999999996) (0.012555697500000004) (0.012309306000000006) (0.012631055000000002) (0.012633622999999997) (0.012591169999999999) (0.012412944999999995) (0.012900896499999995) (0.012859661500000008) (0.01264191399999999) (0.012711921500000015) (0.012646336499999994) (0.012902376500000007) (0.012946156999999986) (0.012934182500000002) (0.012824485999999996) (0.012594123999999984) (0.013021647499999997) (0.01299179949999997) (0.013052032500000005) (0.012567339999999982) (0.01292384249999999) (0.012663743000000005) (0.013179736999999997) (0.012759711999999993) (0.012458639999999993) (0.012577731500000008) (0.012642839000000003) (0.01258107600000001) (0.012622630999999981) (0.01276830850000002) (0.013037721000000002) (0.012621779999999999) (0.012747301500000016) (0.01288499600000001) (0.012214538000000011) (0.012451359000000009) (0.012439565500000013) (0.012439715000000018) (0.012562044499999994) (0.012546132000000002) (0.012489388500000018) (0.012525952999999992) (0.012500766499999996) (0.012421935999999995) (0.012402079499999996) (0.012754211999999987) (0.012425970499999994) (0.012354190500000015) (0.012450368000000017) (0.012746929000000004) (0.012453612500000003) (0.012123222999999989) (0.012702042499999983) (0.012324066500000008) (0.012514565499999977) (0.0123487335) (0.012240206500000003) (0.012321783000000003) (0.012473336500000015) (0.012268405499999996) (0.012230614499999987) (0.012503271499999982) (0.012535916500000008) (0.012608162999999992) (0.012472703500000015) (0.012441328500000015) (0.01268467849999999) (0.012821512500000007) (0.012682228000000004) (0.012835936500000006) (0.012808211000000014) (0.012914443499999984) (0.01279844899999999) (0.013102865000000005) (0.013102158500000002) (0.01279064050000002) (0.01274471499999999) (0.012802961999999987) (0.012687651000000008) (0.01282752299999998) (0.012987347499999996) (0.012651204999999985) (0.012651486000000003) (0.01252304450000001) (0.012587262500000002) (0.012583088499999992) (0.012585634999999998) (0.012786388999999995) (0.012743743499999988) (0.012562927499999987) (0.01281959449999999) (0.012688756499999995) (0.012700677500000007) (0.012797372500000015) (0.012833194500000006) (0.012704175499999998) (0.012609366999999996) (0.012564464500000011) (0.012733650499999999) (0.012296357499999994) (0.012340000500000003) (0.012344177499999984) (0.012345690499999978) (0.0125753475) (0.012558018000000004) (0.012352290999999987) (0.012239627000000003) (0.012435881499999996) (0.012632411499999996) (0.012619507500000002) (0.012181737999999998) (0.012210281000000003) (0.012391942999999989) (0.012505072499999992) (0.012229846499999988) (0.013092824499999989) (0.012332160000000009) (0.01275047800000001) (0.012491673999999994) (0.012463470500000018) (0.012321266500000011) (0.01245127950000001) (0.0125441305) (0.012219449500000007) (0.012369630499999992) (0.012606047000000009) (0.012516577500000015) (0.01225865100000001) (0.012731835000000025) (0.012422110999999986) (0.012686549000000005) (0.012676225) (0.012713509000000012) (0.01282770200000001) (0.012730305500000011) (0.012684838500000004) (0.012606910999999998) (0.013112391000000001) (0.012863954999999996) (0.012662257499999996) (0.012760459999999987) (0.012627078499999986) (0.012798513499999997) (0.012717972499999994) (0.012774736000000009) (0.012897080500000019) (0.012974422000000013) (0.012725603000000002) (0.012998007500000006) (0.012566521000000011) (0.012699350999999998) (0.013156443499999976) (0.013041173500000003) (0.012604702499999995) (0.01277655900000002) (0.012735512000000004) (0.012683369499999972) (0.012767576999999988) (0.012792212499999983) (0.012714015999999995) (0.012593604500000022) (0.01263699900000001) (0.012398349500000003) (0.012457950500000009) (0.012345632499999995) (0.012209692499999994) (0.012079459000000015) (0.012368643999999998) (0.012276767000000008) (0.012557984000000008) (0.012457676) (0.012281592000000008) (0.0124925865) (0.012646074500000007) (0.012763835499999987) (0.012726835000000006) (0.012375258000000028) (0.0123873335) (0.012429264499999995) (0.012523030000000004) (0.012330110499999991) (0.012775537500000003) (0.012230006999999987) (0.01236065750000001) (0.012467427500000003) (0.012692956000000005) (0.012580071500000012) (0.01239407699999999) (0.012567187000000007) (0.012477806000000022) (0.012898015499999999) (0.012478954999999986) (0.012851941000000006) (0.012328289999999992) (0.01251999049999998) (0.012830631499999995) (0.012588026000000002) (0.012505994499999992) (0.012632752499999997) (0.012529313500000014) (0.012736083499999995) (0.012628214999999984) (0.01311801750000001) (0.013068242000000008) (0.012842593499999971) (0.012616150000000007) (0.012929504499999994) (0.012770074499999992) (0.012703668000000001) (0.012726669499999982) (0.012458258999999985) (0.012399576499999995) (0.012691201) (0.012533370000000002) (0.013034572500000008) (0.012596891999999998) (0.013098589500000007) (0.012645886499999981) (0.012813715000000017) (0.012712895000000016) (0.012986602500000013) (0.012731545499999997) (0.012964094999999981) (0.012982536500000003) (0.01292723400000001) (0.012572028000000027) (0.012256039999999996) (0.012485468500000013) (0.012194727499999988) (0.012528507999999994) (0.012514005499999994) (0.012188921000000005) (0.0130152075) (0.012700651999999993) (0.012458987500000004) (0.012333056000000009) (0.012379393000000002) (0.012378098000000004) (0.012334598500000016) (0.012563735999999992) (0.012478552000000004) (0.012586396500000013) (0.012381067499999995) (0.012799164499999988) (0.01273137199999999) (0.01262022850000001) (0.012647464000000011) (0.012512801500000018) (0.01261638050000001) (0.012374371000000009) (0.012457984500000005) (0.012273173499999998) (0.012840496500000007) (0.012444779500000003) (0.012479935000000011) (0.012605169) (0.012544423500000013) (0.01264511950000001) (0.012737288) (0.012577909000000012) (0.012727955499999999) (0.012725241999999998) (0.012873313499999997) (0.012454117000000015) (0.012737915999999988) (0.012638895000000011) (0.012897332500000011) (0.012923712500000004) (0.012629745999999997) (0.012530527) (0.012641313500000001) (0.012670207500000016) (0.012742082000000002) (0.012755715999999986) (0.013241977499999988) (0.013130271999999998) (0.0133924255) (0.012582803999999989) (0.012758424500000004) (0.012669317500000013) (0.012678719500000005) (0.01297134300000001) (0.012796067500000008) (0.012596868999999983) (0.0130041605) (0.012827623999999996) (0.012741768000000014) (0.013044150000000004) (0.013207779500000003) (0.012772693500000001) (0.012297057) (0.012720192499999991) (0.012282457499999996) (0.012465902000000001) (0.012332987500000017) (0.012444882500000004) (0.012303461000000002) (0.012292686499999997) (0.012247074499999996) (0.012496559500000018) (0.01229988) (0.012630184000000003) (0.0123861995) (0.012378414500000004) (0.012400559999999991) (0.012300153499999994) (0.012480236999999991) (0.012510265000000007) (0.012519297999999998) (0.012395946000000005) (0.012444911000000003) (0.012890927999999996) (0.012437293000000002) (0.012356801499999986) (0.012883028500000004) (0.012342150999999982) (0.012634425000000005) (0.012509220500000015) (0.012543407499999978) (0.012586767499999998) (0.012453654499999994) (0.012402503500000009) (0.012648221000000001) (0.012563687500000004) (0.012649358999999999) (0.012646717999999987) (0.012723604000000013) (0.012584048) (0.012916377500000006) (0.012552262500000008) (0.012961187000000013) (0.012604837499999993) (0.012831135999999993) (0.013207651499999987) (0.01254154099999999) (0.012857726) (0.012622670999999988) (0.012688635500000017) (0.012903144500000005) (0.013095748000000004) (0.012626786500000015) (0.012700838500000006) (0.013086511500000009) (0.012899821500000005) (0.012538941999999997) (0.012813971000000007) (0.012626405499999993) (0.012662405500000015) (0.012791047) (0.0127373935) (0.013137926500000008) (0.012545212500000014) (0.012703427999999989) (0.012670426499999998) (0.012589352500000012) (0.012456723500000003) (0.012436657500000003) (0.012312576000000006) (0.012509940499999997) (0.012341764000000005) (0.012514797499999994) (0.012128240499999984) (0.012609804500000002) (0.01249293750000001) (0.012505637499999986) (0.012485548000000013) (0.012686403499999985) (0.012509481500000003) (0.012544468500000003) (0.0126059575) (0.012723655499999986) (0.012579863999999996) (0.012594374000000005) (0.012589201500000008) (0.0122092605) (0.012447708000000002) (0.012406681000000017) (0.01216449600000001) (0.012441280499999999) (0.012354932500000013) (0.012549012499999984) (0.012423430999999999) (0.012333088000000006) (0.012293929999999995) (0.012339740999999974) (0.012560965500000007) (0.012906742499999999) (0.0126078035) (0.012698651499999991) (0.012666040500000003) (0.0128575665) (0.01264986550000001) (0.012832463000000002) (0.01286539149999999) (0.012882471000000006) (0.012670088499999996) (0.012850221000000009) (0.01252034049999999) (0.013058980999999997) (0.013077470999999993) (0.012971135999999994) (0.012624832999999974) (0.012682790499999999) (0.01279088099999999) (0.013035022499999993) (0.012706164500000006) (0.013006294500000015) (0.012979938999999996) (0.012592082500000004) (0.012398126500000009) (0.01298038600000001) (0.012846679999999985) (0.012973710000000013) (0.012506720500000013) (0.012724309499999989) (0.012634806500000012) (0.01279819800000001) (0.012821402499999995) (0.01229044800000001) (0.012344664500000005) (0.012205745000000004) (0.01216855900000001) (0.013514379499999993) (0.012290242500000007) (0.012341299499999986) (0.012545450999999999) (0.012295724499999994) (0.012234178999999998) (0.014271408499999985) (0.012500775500000005) (0.012893383500000008) (0.01259410950000002) (0.012637566000000003) (0.012401920499999997) (0.012363829500000006) (0.012363482499999995) (0.012649724999999987) (0.012624379499999991) (0.012357239499999992) (0.0124940615) (0.012433474999999986) (0.012703010500000014) (0.01256433899999998) (0.01260468749999999) (0.012282516500000007) (0.012345320499999993) (0.012654163499999996) (0.012545270499999997) (0.012780450500000012) (0.012910092499999998) (0.012768830499999995) (0.012674946000000006) (0.012796400999999999) (0.01563650500000001) (0.012956965499999987) (0.013089769000000001) (0.012572661499999999) (0.0125514085) (0.01263747200000001) (0.0126123935) (0.012750881000000006) (0.012680317499999996) (0.012742896500000017) (0.012732068499999999) (0.012767628000000003) (0.012852130499999975) (0.01285805000000001) (0.012672100000000006) (0.012648824000000003) (0.012590426499999988) (0.012783279499999994) (0.012723751000000005) (0.012834205000000001) (0.012598996500000001) (0.013042576) (0.013325401000000028) (0.012789577999999982) (0.013048616000000013) (0.012964042000000009) (0.012742201999999994) (0.012738454999999996) (0.012629770499999998) (0.012225391500000002) (0.012354285500000006) (0.012394784000000006) (0.012507885499999996) (0.012495510499999987) (0.012553817500000009) (0.012591586500000002) (0.012801080500000006) (0.012356638000000003) (0.012270298999999998) (0.01282002900000001) (0.012538468999999997) (0.012760133500000007) (0.012413583000000006) (0.012453575500000008) (0.012502694000000023) (0.012311755500000007) (0.012551397000000006) (0.012411121499999997) (0.012514805000000004) (0.012734453999999992) (0.012849733499999988) (0.012522927000000003) (0.012612876499999995) (0.01224868400000001) (0.012439087000000001) (0.012434742999999998) (0.012408218499999998) (0.012363667499999995) (0.012330650499999998) (0.01216023899999999) (0.012816913) (0.012689078500000006) (0.012526697500000003) (0.01253290800000001) (0.012842290500000006) (0.012815007500000003) (0.013019376) (0.012828423500000005) (0.012995940499999997) (0.012925299499999987) (0.012809460500000022) (0.012923676000000009) (0.01295191300000001) (0.012942798500000005) (0.012743846500000017) (0.013020540999999997) (0.013146927000000003) (0.012662851500000002) (0.012734821500000007) (0.012664298000000004) (0.01281302049999998) (0.012517371000000013) (0.012949601000000005) (0.012916289499999997) (0.012919692999999982) (0.01273304599999997) (0.012876936000000005) (0.012680088999999978) (0.013329258499999996) (0.012752511000000008) (0.01306921450000001) (0.013128108500000013) (0.01269658899999998) (0.012324780999999993) (0.012328876000000002) (0.012469726999999986) (0.012450574000000006) (0.012279939000000004) (0.012235944000000012) (0.012583828499999991) (0.012136754999999999) (0.012750986499999992) (0.012585317499999998) (0.012382366500000005) (0.0127619375) (0.013023052000000021) (0.01236556300000001) (0.012360233999999984) (0.012472608999999996) (0.012377910500000006) (0.012487458499999993) (0.012294916500000003) (0.012550527499999992) (0.012318818999999995) (0.01253281399999999) (0.0124854945) (0.012517477500000013) (0.012542527000000012) (0.0124454165) (0.01259094999999999) (0.012501782500000017) (0.012481869999999992) (0.012646038999999984) (0.012710185499999999) (0.012775655999999996) (0.012742756500000008) (0.012543407000000006) (0.01301119249999999) (0.012696203999999989) (0.012614900500000012) (0.012670775999999995) (0.012974663999999997) (0.012885763499999994) (0.012572264999999985) (0.012822575500000002) (0.01278247099999999) (0.012640694000000008) (0.012858091500000002) (0.012651884999999988) (0.012732256999999997) (0.012954748000000002) (0.0130487725) (0.012757513500000012) (0.012680842000000012) (0.012675038000000013) (0.012718249499999987) (0.012746276499999987) (0.012835248499999993) (0.012606478000000018) (0.01275154000000002) (0.012838777000000023) (0.01290551249999998) (0.01314045350000001) (0.012885118000000015) (0.012987450999999997) (0.013015336500000016) (0.012554026999999995) (0.012562620499999996) (0.012198314499999988) (0.012276129499999996) (0.012575601999999991) (0.012524815499999994) (0.012318863499999999) (0.012428411) (0.012340265000000017) (0.012616187499999987) (0.012845436000000016) (0.01232607699999999) (0.012392305999999992) (0.012764838999999986) (0.012464512999999997) (0.012590391499999992) (0.012373725499999988) (0.01218793600000001) (0.012175792000000005) (0.012392299999999995) (0.012441167999999975) (0.012600132) (0.012683680500000002) (0.01226593699999999) (0.012589026499999989) (0.012695913000000003) (0.012445711499999984) (0.012575413999999993) (0.012525546499999998) (0.012652793999999995) (0.012630832000000008) (0.012611467000000001) (0.012636293000000007) (0.012563413499999995) (0.012661697500000013) (0.012673049999999991) (0.012759039500000013) (0.012619932) (0.012811215) (0.012548534000000014) (0.013094714500000007) (0.012998734999999997) (0.012837580000000001) (0.012667711499999998) (0.012943898499999995) (0.012778740499999997) (0.012848221000000007) (0.013226480999999998) (0.013059560499999998) (0.012463503) (0.012923524000000006) (0.012739697999999994) (0.01274559800000001) (0.01275393200000001) (0.012673940000000009) (0.013079511499999974) (0.012558326499999994) (0.012747089000000003) (0.012959211500000012) (0.012586340500000015) (0.012817601999999984) (0.012809491000000006) (0.013037468499999982) (0.013016151999999975) (0.012762657999999996) (0.012353342500000003) (0.012528347500000009) (0.012592022500000008) (0.012607986500000001) (0.012436800499999998) (0.01239378449999999) (0.012370328) (0.012309900000000012) (0.012405552499999986) (0.012896136500000016) (0.012425701999999997) (0.012396355999999983) (0.012774961000000015) (0.012653640999999993) (0.01232270100000002) (0.012663540499999987) (0.012984622500000001) (0.012435269500000026) (0.012526716500000007) (0.012404890500000001) (0.012331884999999987) (0.012242896000000017) (0.012489468000000004) (0.012314414999999995) (0.012413653500000024) (0.012220310999999984) (0.012509177499999982) (0.012479641500000013) (0.012415510000000005) (0.012373237499999995) (0.01238343750000001) (0.012477600000000005) (0.012706409500000002) (0.012791650500000001) (0.012882068999999996) (0.01262197650000002) (0.012738477999999998) (0.013211586500000011) (0.012662082000000005) (0.01286798850000001) (0.012769483500000012) (0.012797454000000014) (0.012932880000000008) (0.012875552999999998) (0.01271766449999999) (0.0125758765) (0.012964856499999997) (0.012499969500000013) (0.012986165000000008) (0.012550169) (0.012805161000000023) (0.012605718000000002) (0.012954402500000003) (0.012851150500000005) (0.01899376500000001) (0.012632557499999988) (0.012817863000000013) (0.012708177999999987) (0.012743173499999996) (0.012667194499999992) (0.013475029499999985) (0.012828495999999981) (0.012592634500000033) (0.012620851499999988) (0.012385844000000007) (0.012467657500000007) (0.012385561500000003) (0.012738858000000006) (0.012557960999999992) (0.01254627450000001) (0.012290367499999996) (0.012376441500000002) (0.01279580549999998) (0.01244902349999999) (0.012573398999999999) (0.01233778549999999) (0.012148768500000004) (0.012326774499999998) (0.012368731000000008) (0.012564936000000013) (0.012272195) (0.012452711000000019) (0.012303408500000002) (0.012561466000000007) (0.012573497500000003) (0.012478675499999994) (0.012162915999999996) (0.01243667200000001) (0.012288080000000007) (0.0127348615) (0.012520585000000015) (0.012670639499999997) (0.012431728000000003) (0.012488022500000001) (0.0125869495) (0.012412095499999998) (0.012507366999999991) (0.012794955499999996) (0.012474359000000004) (0.012722746499999979) (0.012965711000000005) (0.012623071) (0.012672479500000014) (0.012919231500000003) (0.012692605499999995) (0.012599632999999985) (0.012798674499999996) (0.012945989500000005) (0.012831989000000002) (0.013168443000000002) (0.012538051500000008) (0.0127750695) (0.012728480499999986) (0.012719518499999985) (0.012384449000000006) (0.012493665000000001) (0.012559224999999993) (0.012601199500000007) (0.012865651499999992) (0.012917776499999992) (0.012674969500000008) (0.01263038250000001) (0.012615723999999995) (0.012651767000000008) (0.012729361500000008) (0.012753676500000005) (0.012588426000000014) (0.013032950999999987) (0.012354115499999999) (0.012536844000000005) (0.012265606499999998) (0.012215136500000001) (0.012377635999999997) (0.012521888999999994) (0.0122047255) (0.01246249449999999) (0.012380525000000017) (0.013057286000000001) (0.012403494999999987) (0.0124726005) (0.012881217999999986) (0.012397555500000004) (0.012398894500000007) (0.012386125000000012) (0.012519159499999988) (0.012664899000000007) (0.012383095499999996) (0.012202469499999993) (0.012202570499999996) (0.012300026000000006) (0.012251326500000007) (0.012387849000000006) (0.012506331499999981) (0.012636843999999994) (0.012305137499999994) (0.012526108499999994) (0.012341649999999996) (0.012586737000000014) (0.01258086450000001) (0.012338842000000017) (0.012693417000000012) (0.01278265599999999) (0.012845638000000006) (0.012595942999999998) (0.012526276500000003) (0.012489644999999994) (0.0125900595) (0.012490243500000012) (0.01282549899999999) (0.012620072499999996) (0.013045052500000001) (0.013034662500000016) (0.012942026500000009) (0.012703954500000003) (0.012979202500000009) (0.012720503499999994) (0.012942597999999986) (0.012903612999999994) (0.012526199000000002) (0.012656314999999987) (0.012556260999999999) (0.012694595500000003) (0.012675127499999994) (0.012716639000000002) (0.012715190000000001) (0.012791642500000006) (0.012724437500000005) (0.012703319500000004) (0.012864910000000007) (0.013387155999999997) (0.012938551999999992) (0.012941025500000009) (0.012321996000000002) (0.012602508999999998) (0.012447596500000019) (0.012575468500000006) (0.01258198599999999) (0.01242986800000001) (0.012352068499999994) (0.012409130000000004) (0.012641661499999998) (0.0124007015) (0.012477976999999987) (0.012315838999999995) (0.0126635145) (0.01276361799999999) (0.012612684500000013) (0.01253570200000001) (0.01238612) (0.012272441000000009) (0.012366888499999992) (0.012517249499999994) (0.01273552) (0.01238022200000001) (0.012474165499999995) (0.012744976000000005) (0.012732156500000008) (0.01241138700000001) (0.012612007999999994) (0.012251910499999977) (0.012318232499999984) (0.012584527499999998) (0.012613688999999997) (0.012403361499999987) (0.012947645999999993) (0.012775822999999992) (0.012782420000000003) (0.012754980999999985) (0.012493616500000013) (0.012752746500000009) (0.012722850999999993) (0.012700256999999993) (0.012853775999999997) (0.012711158000000014) (0.012952824000000002) (0.012635787999999995) (0.012680485000000019) (0.012519832000000009) (0.012637927999999993) (0.012720358499999987) (0.013091452000000003) (0.012718738999999993) (0.012643209999999988) (0.0129742625) (0.012721565000000004) (0.012522823000000002) (0.012646505500000002) (0.012704340999999994) (0.012669890500000017) (0.012821182) (0.012800139000000002) (0.01286539199999999) (0.0125819655) (0.013087974500000002) (0.0126435835) (0.0126961835) (0.012798112) (0.01287277249999999) (0.012507460499999998) (0.012422182500000004) (0.012313338500000007) (0.012382653499999993) (0.012644189) (0.012520897000000003) (0.012378720499999996) (0.012588762000000017) (0.012389718000000008) (0.012243099000000007) (0.012296750999999995) (0.012629436499999994) (0.012353452000000001) (0.012496334499999998) (0.012398736000000007) (0.012284997000000006) (0.012335065999999992) (0.012385755999999998) (0.012522152499999994) (0.012307771499999995) (0.012941828499999988) (0.012272117499999999) (0.012421140000000011) (0.013015962999999992) (0.0123243735) (0.012425339500000007) (0.012499254500000001) (0.012255271999999998) (0.012423266000000002) (0.012359819499999994) (0.012794978499999998) (0.012849192500000009) (0.012647963999999984) (0.012774004999999991) (0.012460066999999991) (0.012752899000000012) (0.01242768150000001) (0.012549990499999997) (0.012732000000000007) (0.013536445499999994) (0.012718014000000014) (0.012967344500000005) (0.012913098999999997) (0.012685653000000005) (0.012790933000000004) (0.012941741000000007) (0.012732913499999998) (0.012568218999999992) (0.012745152999999995) (0.012734819000000008) (0.012577270499999987) (0.012729802000000012) (0.01262666300000001) (0.013309027500000015) (0.012525424499999993) (0.013147778999999998) (0.01280924500000001) (0.012703169) (0.0126831045) (0.01290907450000002) (0.012842062000000001) (0.012732343000000021) (0.012287829000000014) (0.01241218650000002) (0.012187360999999994) (0.012431051999999998) (0.012209787) (0.01233495300000001) (0.012292187499999982) (0.01224924350000002) (0.012226003000000013) (0.012414546499999998) (0.01237758600000001) (0.012286988999999998) (0.012300809499999996) (0.012380427) (0.012402808500000001) (0.012255251999999994) (0.01218531249999999) (0.012293878000000008) (0.012334392) (0.012741768999999986) (0.012204555499999992) (0.012317542) (0.012281059499999997) (0.012181359999999988) (0.012677817999999993) (0.012641623500000004) (0.01232671149999999) (0.012397542499999997) (0.01277561499999999) (0.012494982000000002) (0.012340173999999995) (0.012420539500000008) (0.012938790500000005) (0.012969239999999993) (0.012692739500000008) (0.01279688050000001) (0.012846047499999999) (0.013291999999999984) (0.012868948500000005) (0.012553330500000001) (0.013052346000000006) (0.012882164500000001) (0.012735614000000006) (0.01270051400000001) (0.013192558999999993) (0.012675031500000003) (0.012603121999999994) (0.01275785950000001) (0.0126135785) (0.012494683000000006) (0.012695455000000008) (0.012809963000000008) (0.012904319999999997) (0.012580598500000012) (0.012589851499999999) (0.012717445999999993) (0.012753816500000001) (0.012872248000000017) (0.012969672999999987) (0.012907949000000002) (0.012601823500000012) (0.013035986) (0.012631639) (0.0132583555) (0.012810646000000009) (0.012848737999999998) (0.012489862500000004) (0.012520651499999993) (0.012448579000000001) (0.012632446000000006) (0.012370482500000016) (0.012661484) (0.012496180999999995) (0.012446055999999997) (0.012510226499999985) (0.012514408000000005) (0.012943839499999985) (0.012399824500000003) (0.012584701000000031) (0.012857032000000004) (0.012431688499999996) (0.012363973) (0.012754322999999998) (0.012371919500000009) (0.012470828500000003) (0.012451440000000008) (0.012629278500000007) (0.012352238499999987) (0.01228708249999999) (0.012507241000000002) (0.012655866500000001) (0.012954116000000002) (0.012604532000000002) (0.012542379500000006) (0.012379316500000015) (0.012496508000000003) (0.012711084999999983) (0.01245227950000001) (0.013226793) (0.012659127999999992) (0.012735732500000013) (0.012622151999999998) (0.012994809499999996) (0.013011974999999995) (0.013009114999999974) (0.012706506500000006) (0.012787537500000001) (0.012805097500000001) (0.0127757555) (0.01262422349999999) (0.012734144499999989) (0.013308489999999992) (0.01312842950000001) (0.012592693000000002) (0.012740096499999992) (0.012803390999999997) (0.012887380500000004) (0.012666913999999987) (0.012649109499999991) (0.012526677500000014) (0.012871042499999985) (0.012634732499999995) (0.012802834999999999) (0.012766676500000004) (0.012985146500000003) (0.012801139999999989) (0.012958317999999996) (0.012699404999999997) (0.012368941999999994) (0.012395588500000013) (0.01222018300000001) (0.012164480999999991) (0.012479529999999989) (0.0125121495) (0.012481601500000009) (0.012375031500000008) (0.012662127999999995) (0.012498643500000003) (0.012312034) (0.012280971500000001) (0.01259572049999999) (0.0126010285) (0.012645231999999992) (0.012292532999999994) (0.012641891500000002) (0.012240256500000005) (0.012461905499999995) (0.012644027500000002) (0.012497831000000015) (0.012690056000000005) (0.012720380500000003) (0.012669368) (0.01250081850000001) (0.012425737500000006) (0.012398007500000016) (0.012261942499999998) (0.013364333499999992) (0.012591028500000004) (0.012325811500000006) (0.0126164535) (0.013001889500000002) (0.012791282000000001) (0.012561686500000002) (0.01303857) (0.01276343299999999) (0.012983784499999998) (0.012825365500000005) (0.012629226000000007) (0.012595479500000006) (0.01252378300000001) (0.01301392300000001) (0.013125383000000018) (0.012822352500000009) (0.012603264000000003) (0.012737945500000014) (0.0126701845) (0.012824075500000004) (0.012733958000000004) (0.0126195375) (0.012815098499999997) (0.012730733999999994) (0.012687615499999999) (0.012739081) (0.012970012000000017) (0.012753148500000006) (0.01281259600000001) (0.012685199000000008) (0.01288195300000003) (0.013095464000000015) (0.012622791999999994) (0.012842938999999984) (0.012490626500000018) (0.012409224999999996) (0.012567609499999993) (0.012207397500000022) (0.012190695500000015) (0.012335917999999987) (0.012186942499999992) (0.01277264950000001) (0.012257713500000003) (0.01269313950000002) (0.012333151) (0.012286413499999996) (0.012225666000000024) (0.012725038500000008) (0.012703566999999999) (0.012463373500000027) (0.012640398999999997) (0.012311674999999994) (0.012636104499999995) (0.012752892500000002) (0.012590031499999987) (0.0126004225) (0.01245772149999999) (0.012658038999999996) (0.012304364999999998) (0.012476397) (0.012291049499999998) (0.012717390499999995) (0.012355887000000024) (0.012406673999999993) (0.013137491999999987) (0.012520941000000022) (0.01250349499999999) (0.013165509999999991) (0.012848303500000005) (0.012551818499999992) (0.012720967500000013) (0.01274716499999999) (0.012930293499999995) (0.012508270999999987) (0.013306025999999999) (0.012992620000000024) (0.012654159000000012) (0.012837591999999995) (0.012799599500000008) (0.012611525500000012) (0.012583866499999985) (0.012601665000000026) (0.012771116000000013) (0.012827324000000001) (0.012650953499999992) (0.0125987345) (0.012709992500000017) (0.012558253499999991) (0.012875529999999996) (0.012683067000000006) (0.012637219500000005) (0.012869610000000004) (0.012907263999999974) (0.01279596399999998) (0.012934948000000002) (0.012864049500000002) (0.012795514000000008) (0.013126761999999986) (0.012807608999999998) (0.012550439499999996) (0.012391565000000007) (0.01243032899999999) (0.012462683500000002) (0.012611800500000006) (0.012530364500000002) (0.012476966499999992) (0.012374371000000009) (0.012381128500000005) (0.012635455000000004) (0.013278463000000004) (0.012601323499999997) (0.012745863499999996) (0.012401500999999995) (0.012296825999999983) (0.012958168999999992) (0.012613248500000007) (0.012277824000000007) (0.012712835000000006) (0.012541323999999993) (0.012257879499999999) (0.012733940499999999) (0.012418867000000014) (0.012576372500000002) (0.012747783999999998) (0.012509198999999999) (0.012715029500000002) (0.012473554999999997) (0.012676343500000006) (0.012637177999999999) (0.012895973499999991) (0.012792576) (0.0129294665) (0.012774204000000011) (0.012779661000000012) (0.013227220499999998) (0.012764181) (0.012757546500000008) (0.013071923499999999) (0.012909246500000013) (0.012898420999999993) (0.013021495500000008) (0.012631100999999992) (0.012905799499999995) (0.012866060499999998) (0.012770160000000003) (0.012791541500000003) (0.012532123000000006) (0.012920659500000015) (0.012811262000000018) (0.012975025499999987) (0.012749813499999998) (0.012613207000000001) (0.01260773150000001) (0.0126514655) (0.012781913000000006) (0.012874025000000011) (0.012856133499999992) (0.012653357500000004) (0.012801676999999984) (0.012460616000000008) (0.012883529500000004) (0.012869543999999997) (0.012890355499999992) (0.012406392000000002) (0.012441194500000002) (0.012547201500000008) (0.012477428000000013) (0.012589486999999996) (0.012299328999999998) (0.012660143500000012) (0.012501786) (0.012446815999999986) (0.012310419500000003) (0.01242741999999998) (0.01235086349999999) (0.012818950499999995) (0.012515159999999984) (0.0123933705) (0.012468172500000013) (0.012452819500000004) (0.012485648500000002) (0.012273556500000005) (0.012541752499999989) (0.01237558200000001) (0.012171416000000004) (0.012353486499999997) (0.01259657850000001) (0.012755019999999992) (0.012596553999999996) (0.012635582500000006) (0.012576056000000002) (0.012815676000000012) (0.01233214299999999) (0.012488159500000012) (0.01236407199999999) (0.012867220499999998) (0.012786471499999993) (0.012698869500000001) (0.012537848000000004) (0.012695175500000003) (0.012746275499999987) (0.012599855500000007) (0.012842739499999992) (0.012585063500000007) (0.012570288499999999) (0.012970815999999996) (0.012622114500000003) (0.012808243999999996) (0.012626486499999992) (0.013166254500000002) (0.012598685000000012) (0.012775281999999985) (0.012487236999999998) (0.012642754999999992) (0.012549377) (0.012745241000000004) (0.012904983999999994) (0.012668493499999989) (0.012788625499999984) (0.012773151999999982) (0.012782899) (0.012812780999999995) (0.013167335499999988) (0.012628619499999993) (0.01300655000000002) (0.012779918000000015) (0.012699694999999997) (0.012765143500000006) (0.012227445500000003) (0.012273961) (0.012429849500000006) (0.012440096500000011) (0.012663971999999996) (0.012668517500000004) (0.012336907499999994) (0.012342584000000004) (0.012518367000000002) (0.012488945000000001) (0.012469740000000007) (0.012374881500000004) (0.012451944000000006) (0.012331697000000016) (0.012757748499999999) (0.01240003499999999) (0.012222732) (0.012341634500000004) (0.012304969499999999) (0.012364784500000003) (0.012199912999999993) (0.012643277000000008) (0.01249782549999999) (0.012332067500000002) (0.012802658999999994) (0.012762128999999997) (0.012405516000000005) (0.012553616500000003) (0.012673183500000004) (0.012543644999999992) (0.012594424499999993) (0.012596191500000006) (0.012875834500000002) (0.01274641750000001) (0.01257117499999999) (0.012690270000000003) (0.012496834499999998) (0.012434993500000005) (0.012551352000000002) (0.012991576000000005) (0.012645325499999999) (0.012882949000000005) (0.013036447499999992) (0.012796813000000004) (0.01279001249999999) (0.012572989999999978) (0.012662059500000003) (0.012546633500000001) (0.012630244500000012) (0.012608709999999995) (0.012754825999999997) (0.012706408500000002) (0.012920729000000006) (0.012921082) (0.012749593500000003) (0.012829588000000003) (0.012705632999999994) (0.012723532999999995) (0.012760074499999996) (0.012995228999999997) (0.012956458000000004) (0.012586642500000009) (0.01305237699999999) (0.012354854500000012) (0.012692635999999993) (0.012352910500000008) (0.012813955000000002) (0.012656635000000013) (0.012480011499999999) (0.012403609999999995) (0.012497087500000004) (0.012492316500000003) (0.012584103) (0.012566578499999995) (0.012797020500000006) (0.012566274999999988) (0.012506419500000004) (0.012388445000000012) (0.012344474000000008) (0.012298241500000001) (0.012431603500000013) (0.012388403499999992) (0.012740343000000001) (0.012313915499999994) (0.012341794000000003) (0.012811201500000008) (0.012409446500000004) (0.012295081499999985) (0.012793793500000011) (0.01256938049999999) (0.012338316000000002) (0.012505105500000002) (0.012479947500000019) (0.012323282500000018) (0.012621854000000002) (0.013110264499999996) (0.012605286500000007) (0.013046303999999995) (0.012706546999999999) (0.013198970500000004) (0.012586591500000008) (0.012825993000000008) (0.012694350999999993) (0.012843939499999998) (0.01296246949999999) (0.012602402000000013) (0.01289542149999999) (0.012920417999999989) (0.012698646499999994) (0.012776418999999997) (0.01262779600000001) (0.01259007999999999) (0.012447802499999994) (0.013010918999999982) (0.012645667499999999) (0.012607124000000011) (0.012612484500000007) (0.012619481500000002) (0.012553419999999996) (0.012616383500000009) (0.01279798700000001) (0.013021929000000015) (0.012868080499999976) (0.012664202499999985) (0.012846580499999996) (0.012866950499999988) (0.012772025999999978) (0.012513350499999992) (0.012139035999999992) (0.012216564) (0.01230167) (0.012312104500000004) (0.012349276000000006) (0.01247420199999999) (0.012408574000000006) (0.012351442500000004) (0.012811508999999999) (0.012616254000000007) (0.012638330000000003) (0.012558891500000002) (0.012393341500000016) (0.012771418500000006) (0.012251951499999997) (0.012589907500000011) (0.012439857000000012) (0.012710563500000008) (0.012290592500000003) (0.012293130499999999) (0.012209725000000005) (0.012494174499999997) (0.012510918999999995) (0.012446530500000011) (0.012459490500000003) (0.012507618500000012) (0.01241273250000001) (0.012391892499999987) (0.012769754000000022) (0.012125316000000011) (0.012629525999999988) (0.012841802499999985) (0.012507237000000004) (0.012650742999999992) (0.012498893499999997) (0.012862696000000007) (0.012876795499999996) (0.012782994499999992) (0.012707762499999997) (0.012790750500000003) (0.012847019000000001) (0.013049346000000017) (0.012786785999999994) (0.012574857500000022) (0.01266201850000001) (0.013038775500000002) (0.012867111499999986) (0.01277242599999999) (0.012397216000000003) (0.012633221) (0.012603284000000006) (0.01297446449999999) (0.012754861500000006) (0.012760293499999992) (0.012646053500000004) (0.01318825849999998) (0.012925315999999992) (0.012675602499999994) (0.012977366500000004) (0.012691520500000011) (0.012671753500000021) (0.013057685999999999) (0.01274009899999999) (0.01246382900000001) (0.012334842499999984) (0.012440710500000007) (0.012128648499999992) (0.012647492999999996) (0.012300025000000006) (0.012568287499999997) (0.012524511500000002) (0.012715128499999992) (0.012938913999999996) (0.012332461999999988) (0.012503399999999998) (0.0122436405) (0.01272912649999998) (0.012731185000000006) (0.012458619000000004) (0.012266064499999993) (0.012209585500000009) (0.012228979499999987) (0.012521371000000003) (0.012419600000000003) (0.01271860950000002) (0.012546215999999999) (0.012400049499999996) (0.012471050999999983) (0.012486994500000001) (0.012468626999999996) (0.012331572999999985) (0.012673583500000002) (0.012680096500000002) (0.012437650000000008) (0.012586808500000005) (0.012647109000000004) (0.012725309500000018) (0.012854671000000026) (0.012714415500000006) (0.012708403000000007) (0.012650938999999986) (0.012702747000000014) (0.013018105000000002) (0.013059876500000012) (0.012650444000000025) (0.012666301500000018) (0.012918725499999992) (0.01277465450000001) (0.012463956999999998) (0.01268541699999999) (0.012660889499999994) (0.012745332500000012) (0.01279449349999999) (0.013018895999999974) (0.012497172000000015) (0.012510066499999986) (0.012968211999999993) (0.012574137999999999) (0.013158020999999992) (0.012686008999999998) (0.01267124750000001) (0.012735785999999999) (0.01278288900000002) (0.012550545499999996) (0.012710052500000013) (0.01272151399999999) (0.012907694000000011) (0.012325878500000012) (0.012416234000000012) (0.012188151999999994) (0.012205019499999997) (0.0123774465) (0.012341141) (0.01220901449999999) (0.012221090000000004) (0.0127448805) (0.012730404) (0.012691590000000003) (0.01262828399999999) (0.012433075000000016) (0.012604482) (0.012561776999999982) (0.012456874000000007) (0.01250941749999998) (0.012623080000000009) (0.012133205499999994) (0.012317578999999995) (0.012354504500000002) (0.0123517415) (0.012675973499999993) (0.0122605945) (0.012689802999999986) (0.01256317999999998) (0.012467165000000002) (0.01260602999999999) (0.012749872500000009) (0.012553159499999994) (0.012762030999999993) (0.012520781999999994) (0.01253390900000001) (0.012565996499999996) (0.01265930550000001) (0.0127185925) (0.012624070000000015) (0.01277255599999999) (0.0124113015) (0.012851075500000003) (0.013118767000000003) (0.012764284500000028) (0.013078086500000016) (0.012610483500000005) (0.012831954500000006) (0.013065585499999977) (0.013012982999999978) (0.012708429999999993) (0.012712893500000017) (0.01271805500000002) (0.012598235500000027) (0.012546402999999984) (0.013104749499999985) (0.012615709000000003) (0.012641786999999988) (0.012931817499999984) (0.012836913000000005) (0.012591495499999994) (0.012789329000000002) (0.012735275500000018) (0.012925127999999994) (0.012647648999999997) (0.012656173500000006) (0.01278650549999999) (0.012641840000000015) (0.012639157000000012) (0.01248111099999999) (0.0123273) (0.012343847499999991) (0.012772896999999991) (0.012400848999999992) (0.012456768999999993) (0.012772943000000009) (0.012583009999999992) (0.012636751500000001) (0.012361111500000022) (0.013011835499999999) (0.012801526499999993) (0.012352948500000002) (0.012406572000000005) (0.01227941049999999) (0.012750421500000012) (0.012321295499999982) (0.012486676499999988) (0.012513813999999998) (0.012354690000000002) (0.01221164050000001) (0.012445197500000005) (0.012367501500000003) (0.012200264000000016) (0.012830602999999996) (0.012758653499999995) (0.012541357500000003) (0.012495567499999999) (0.012440574499999982) (0.012708564999999991) (0.013110364499999985) (0.012639844000000011) (0.012576683500000005) (0.012867282999999993) (0.012790519) (0.0125229325) (0.012878775000000009) (0.012845161000000008) (0.013135739000000007) (0.012972956999999993) (0.012700343999999988) (0.012760319000000006) (0.012894034000000013) (0.012765983500000022) (0.012827532500000016) (0.012763189500000008) (0.012555576000000013) (0.012897078000000006) (0.012956583499999993) (0.012894033500000013) (0.012661909499999999) (0.01253871249999998) (0.012588793499999987) (0.012694755999999988) (0.012883884499999998) (0.013082330500000003) (0.013205917500000011) (0.01277085800000001) (0.012739749000000009) (0.013173402500000014) (0.01284682799999999) (0.012823519500000019) (0.012169190999999982) (0.012517727999999992) (0.012352880499999996) (0.012305441) (0.012260678000000011) (0.012406292000000013) (0.012283724500000023) (0.012443308) (0.012751758000000002) (0.012581246000000004) (0.012366815499999989) (0.012602457499999997) (0.012638682499999998) (0.012484509500000004) (0.012331751000000002) (0.0128821145) (0.012448110500000012) (0.01223834850000001) (0.012421138000000012) (0.012136256000000012) (0.012432258500000015) (0.01232271850000001) (0.012276839999999997) (0.012454640499999989) (0.012213742999999999) (0.012348011499999992) (0.012209606999999997) (0.012351927999999998) (0.01239217799999999) (0.012597755500000002) (0.012316811000000025) (0.01246693850000001) (0.012619988500000012) (0.013234438000000015) (0.012608597) (0.012582225000000016) (0.012562975000000004) (0.012617782000000008) (0.012643781500000006) (0.012526225000000002) (0.012906388000000005) (0.012800322000000003) (0.013117748999999998) (0.012892335000000005) (0.012766877499999996) (0.01269462049999999) (0.012716331999999997) (0.012783502500000016) (0.012678506000000006) (0.012860175499999987) (0.012625965000000003) (0.013086364000000003) (0.0125345075) (0.01277621050000001) (0.012451223500000011) (0.012507273999999999) (0.012750596000000003) (0.012702487499999998) (0.012629671499999995) (0.01280745200000001) (0.012797633500000002) (0.012490518999999992) (0.01274532149999999) (0.012658258000000006) (0.012536469000000008) (0.012228685999999989) (0.012222902999999993) (0.012329421000000007) (0.012330201500000013) (0.0123045705) (0.012691711000000008) (0.012168603000000014) (0.012376766000000011) (0.012392172999999992) (0.012533160500000001) (0.012362887000000003) (0.012509610500000004) (0.012749195500000005) (0.012547985999999997) (0.012419814500000001) (0.0123277475) (0.012491578500000017) (0.012296187) (0.012564270500000002) (0.012349416500000002) (0.012347111000000008) (0.012279829999999992) (0.012261338999999996) (0.012368327999999984) (0.012924251000000012) (0.012240516500000007) (0.012434188499999985) (0.0124839395) (0.012491900500000014) (0.012388371000000009) (0.01238650949999999) (0.012866269500000013) (0.012562864000000007) (0.012815964999999999) (0.012640194500000007) (0.012795429499999997) (0.012898841499999994) (0.012908071499999993) (0.012668155) (0.012795128999999988) (0.012748728000000015) (0.013438585500000003) (0.012736981999999994) (0.013019747499999998) (0.013022974000000007) (0.0128253735) (0.012978282499999994) (0.012399187500000006) (0.012703799000000002) (0.012772228999999982) (0.012960690499999997) (0.012683898500000013) (0.012776160499999994) (0.012868786999999979) (0.012847791999999997) (0.012924983000000001) (0.0126416855) (0.012715863499999994) (0.012799737499999991) (0.012751838500000001) (0.012769021500000005) (0.012656997500000003) (0.012779142999999993) (0.012285677000000009) (0.012207496999999998) (0.012160320000000002) (0.0122913375) (0.012644983000000012) (0.012382963499999997) (0.012279703000000003) (0.012542570000000003) (0.012331010500000003) (0.012309788000000002) (0.012403185499999997) (0.012556381999999991) (0.012689339500000008) (0.012372668000000003) (0.012801132000000007) (0.012501253500000004) (0.012270764500000003) (0.012333475999999996) (0.012370977499999991) (0.012374973499999997) (0.012391995000000003) (0.012201308500000008) (0.012227453) (0.012187775000000012) (0.012499495499999999) (0.012451773500000013) (0.0126824985) (0.012337385000000006) (0.01234863) (0.012518050000000003) (0.0125672555) (0.01256310699999999) (0.012946294999999997) (0.012626861500000003) (0.012956094999999987) (0.013166962500000004) (0.012567461500000002) (0.01252558949999999) (0.0126607215) (0.012761672500000001) (0.012820682) (0.0126683915) (0.012664793499999993) (0.012800970999999994) (0.012599629000000001) (0.01297408450000001) (0.012718529500000006) (0.012651113500000019) (0.012705309499999984) (0.012660542499999997) (0.012408759999999991) (0.012702614000000015) (0.012509380499999986) (0.012743576499999992) (0.012647308999999995) (0.012663659500000007) (0.01270560200000001) (0.01279301699999999) (0.012895746999999999) (0.01291224550000003) (0.01261239950000001) (0.012783265000000002) (0.012864503999999999) (0.012690729500000011) (0.012137794500000007) (0.012349206000000001) (0.012604454000000001) (0.012476888500000005) (0.012261523999999996) (0.012492671499999997) (0.01251231450000001) (0.012222216000000008) (0.0126698425) (0.012670987000000009) (0.012522284499999994) (0.012830710999999995) (0.012653604499999999) (0.012251987499999992) (0.012632285000000007) (0.012487685000000026) (0.01229470249999999) (0.012539838500000011) (0.01250203100000001) (0.01249340950000001) (0.012450384500000009) (0.012836461499999993) (0.012583322500000008) (0.012265229000000016) (0.013019026000000003) (0.012683427499999983) (0.012280012500000007) (0.012385466499999997) (0.012607326499999988) (0.012864066499999993) (0.01250083199999999) (0.012391040999999992) (0.012868119999999997) (0.013134504499999991) (0.012794497499999988) (0.012574115499999997) (0.012545319) (0.012899965999999999) (0.012875288499999984) (0.012514791999999997) (0.012753449) (0.012669993500000004) (0.01278253) (0.012842191500000003) (0.012822212000000013) (0.012704305000000013) (0.012926436000000013) (0.013148833500000012) (0.012582370499999995) (0.012562889500000007) (0.01265211699999999) (0.01291457650000001) (0.012715445500000006) (0.012642140999999996) (0.0127484135) (0.012926570499999998) (0.012822777500000007) (0.013043863500000016) (0.012866632500000003) (0.013018221500000024) (0.013124637500000008) (0.012790979499999994) (0.012779698000000006) (0.012816089500000016) (0.01259949149999999) (0.012291131499999997) (0.012168636499999996) (0.012553756999999999) (0.012471988000000003) (0.012597612499999994) (0.012761681499999997) (0.012353635000000002) (0.012310930499999997) (0.012391840500000015) (0.0123060755) (0.012314332000000011) (0.012768850000000012) (0.012674949500000005) (0.012689628499999994) (0.012347018999999987) (0.012546914000000006) (0.01240334350000001) (0.012482071499999997) (0.012421693500000011) (0.012714802499999997) (0.012127526999999999) (0.012254051500000002) (0.012781722999999995) (0.012786754999999983) (0.012570270500000022) (0.012556109999999995) (0.012825262500000018) (0.0122565845) (0.012257698500000011) (0.012416651499999987) (0.012343841500000022) (0.012448691499999998) (0.012862308999999988) (0.013066354500000002) (0.012951503500000003) (0.013194686999999997) (0.012680341500000011) (0.012628027) (0.012959103999999999) (0.012859901499999993) (0.012449916499999991) (0.01255165200000001) (0.013118148999999996) (0.01277957149999999) (0.012681785000000015) (0.012618006499999987) (0.013319607999999997) (0.012844888499999998) (0.012800097499999996) (0.01276176950000002) (0.012898278999999999) (0.01269766700000001) (0.012793350499999995) (0.012837887500000006) (0.012506318999999974) (0.01297393600000002) (0.012906121499999992) (0.01269598050000001) (0.01258282550000002) (0.012835753499999991) (0.01278470100000001) (0.012714655500000005) (0.012931048) (0.012723239000000011) (0.01227387499999999) (0.012609200000000015) (0.012624832000000016) (0.012492916500000006) (0.012734727000000015) (0.012356873000000018) (0.012317025999999981) (0.012688952500000003) (0.012451956000000014) (0.012710624000000004) (0.01255121549999999) (0.01230793049999998) (0.01263038250000001) (0.012767955000000011) (0.012499340000000012) (0.012322686999999999) (0.012701197500000025) (0.01248151900000001) (0.012327194000000027) (0.012859921499999996) (0.012355605000000006) (0.012304551999999996) (0.012517829999999994) (0.012528440999999987) (0.012675959) (0.0124583615) (0.012817135000000007) (0.012655022500000002) (0.012381612000000014) (0.012433909500000007) (0.012462227499999992) (0.012502944500000002) (0.012582148000000001) (0.012653800999999992) (0.012712218499999997) (0.012737307500000003) (0.012616083000000014) (0.012561022000000005) (0.012737614500000008) (0.012932771499999995) (0.012832477999999994) (0.012616043999999993) (0.012546673500000008) (0.012740249499999995) (0.012759450500000005) (0.012852520000000034) (0.012708801500000005) (0.01242526649999999) (0.012653236999999998) (0.012655923999999999) (0.012917231000000015) (0.012663224000000015) (0.012741270999999998) (0.012556997499999986) (0.012689212500000005) (0.013175403999999988) (0.012636340999999995) (0.012799111000000016) (0.013062487499999983) (0.012720106000000009) (0.012650025500000009) (0.012863371000000012) (0.012675884999999998) (0.01242451800000001) (0.012427192500000017) (0.012364091499999993) (0.012389538999999977) (0.012399437500000013) (0.012463894499999989) (0.012379795499999999) (0.0124157045) (0.012713233500000004) (0.012842731499999996) (0.012510960000000015) (0.012933418500000016) (0.01260032450000001) (0.012419623500000004) (0.012354388500000008) (0.012492553000000003) (0.012547253000000008) (0.012485055499999995) (0.012328863999999995) (0.012578362499999995) (0.012251756500000016) (0.012461824999999996) (0.01248692550000001) (0.012440753999999998) (0.012977621999999994) (0.012447610999999997) (0.012420384999999992) (0.012486742500000009) (0.012912391999999995) (0.012259343500000006) (0.012588982500000012) (0.01266398099999999) (0.012537345999999991) (0.012913884) (0.013369703999999996) (0.01245941049999999) (0.012622414499999998) (0.012698525000000002) (0.012465901500000001) (0.012680787999999998) (0.012821785999999988) (0.012896953499999989) (0.01261271600000001) (0.012531051999999987) (0.012945094500000004) (0.012822974000000015) (0.012841462999999997) (0.012742243000000014) (0.012785041499999983) (0.012734666500000005) (0.012861725000000018) (0.012853880500000012) (0.01288692399999998) (0.012596339499999998) (0.01307254699999999) (0.01247372749999999) (0.01267936700000001) (0.012978309999999993) (0.012582894999999997) (0.013030218999999982) (0.012837673999999993) (0.012864181500000002) (0.013108460999999974) (0.012783204499999992) (0.012545685) (0.0122898845) (0.012419802499999993) (0.012552197499999987) (0.012440454000000004) (0.012679484499999977) (0.012527527500000024) (0.012372142499999988) (0.012469157999999994) (0.012413812499999996) (0.012396838500000007) (0.012759544999999997) (0.012329418000000009) (0.013074173000000022) (0.012292346999999995) (0.01245729050000001) (0.012750148500000003) (0.012349540000000006) (0.012389505500000023) (0.012459711999999984) (0.012585734500000001) (0.012672035000000012) (0.012308314499999987) (0.012440149499999997) (0.012554701500000001) (0.01295664349999999) (0.012708886000000003) (0.01240803800000001) (0.012429004000000007) (0.012606093499999985) (0.012454605000000007) (0.0123504465) (0.012869096500000024) (0.012607435) (0.012857917499999982) (0.012625546500000001) (0.012734493) (0.012580749999999988) (0.012558523500000002) (0.0126295555) (0.012504032999999984) (0.01275800199999999) (0.012808556999999998) (0.012744638499999988) (0.012995709000000008) (0.013093557999999991) (0.013340657999999991) (0.013025323000000005) (0.012820915000000016) (0.012700085000000014) (0.012624094999999988) (0.012671912500000007) (0.01302913700000001) (0.012620104000000007) (0.012563143500000012) (0.012655905500000009) (0.012805806000000003) (0.012745664000000004) (0.012721856500000017) (0.012717693499999988) (0.0126224115) (0.01298730250000002) (0.013303839999999983) (0.012477932999999983) (0.012355793000000004) (0.012402887000000001) (0.012193181999999997) (0.012428960000000003) (0.012685328499999995) (0.012180813500000012) (0.012428406500000003) (0.012877186999999998) (0.012187062999999998) (0.012312509) (0.012531538499999995) (0.012290786999999997) (0.012614201499999991) (0.014508911999999999) (0.012410667) (0.012560015000000022) (0.012410862000000009) (0.01244492350000001) (0.01264233499999999) (0.012653584999999995) (0.012457785499999999) (0.012519304500000009) (0.012362680000000001) (0.012465134499999989) (0.012518117500000009) (0.012327022499999993) (0.012601935499999994) (0.012326193499999999) (0.012531371499999985) (0.012527224000000003) (0.012319786499999999) (0.012648328999999986) (0.012784991999999995) (0.01266232199999999) (0.012572551000000001) (0.012555687999999995) (0.013024538500000002) (0.012485404500000005) (0.012605875500000002) (0.012873054500000009) (0.012753517999999991) (0.012576408000000011) (0.013049566000000012) (0.012694378999999992) (0.012772116500000014) (0.013047853000000012) (0.012956423499999994) (0.01284450400000002) (0.012800730499999996) (0.012603609500000001) (0.01280434350000001) (0.012612603500000014) (0.012601334999999991) (0.01270512850000001) (0.012765192000000009) (0.012713633000000016) (0.013224471000000002) (0.0129370325) (0.013401147000000002) (0.012830545499999985) (0.012953122499999997) (0.012871201999999984) (0.013159134499999989) (0.012982048999999996) (0.012287527499999992) (0.012385490999999998) (0.012440210000000007) (0.012529882000000006) (0.013037167500000016) (0.012443971000000012) (0.01276923349999999) (0.012427689500000005) (0.012620029500000005) (0.012633289000000006) (0.01234560450000001) (0.0124567535) (0.012542721999999992) (0.01252176499999999) (0.012311036999999983) (0.012587224500000022) (0.012384798499999988) (0.012184151000000004) (0.012271835000000009) (0.012447212499999999) (0.012345297000000005) (0.012259360999999996) (0.012407086000000012) (0.0124183125) (0.012584581499999983) (0.012415696000000018) (0.012466064499999999) (0.012502397999999998) (0.012639660499999997) (0.012631579000000004) (0.012843394500000022) (0.012348628000000028) (0.012711081499999999) (0.013204837499999983) (0.012947565500000008) (0.012771900999999974) (0.012588578000000003) (0.012761992) (0.012951988999999983) (0.01274547249999998) (0.012712426999999998) (0.012793812000000016) (0.012756543499999995) (0.012717318000000019) (0.01268838550000001) (0.012647490999999997) (0.012882162000000003) (0.012598606999999998) (0.012622617000000003) (0.012921128000000004) (0.012518136499999999) (0.012888826999999992) (0.012630906499999983) (0.012680229000000001) (0.012747563000000003) (0.01270338850000001) (0.012787818500000006) (0.013039549999999997) (0.01296692549999999) (0.01284655250000001) (0.012710681000000015) (0.012977319999999987) (0.012762580499999995) (0.012933976999999985) (0.012408538499999996) (0.012175032000000002) (0.012293083999999996) (0.012320403500000007) (0.012366647499999994) (0.012382987500000012) (0.012326865500000006) (0.012427460000000001) (0.012482788499999994) (0.012658131000000017) (0.012472201000000002) (0.01235170499999999) (0.012142187000000013) (0.012301337999999995) (0.012439511) (0.012499752999999988) (0.012281102000000002) (0.012250082999999995) (0.012246970499999996) (0.012312703999999994) (0.012444235499999998) (0.012581329500000002) (0.012377405000000008) (0.012466750000000013) (0.012273766000000005) (0.012556599500000001) (0.01235654949999998) (0.01231563200000002) (0.012614125000000004) (0.012794303999999992) (0.012504027000000001) (0.012530797500000024) (0.012873726499999988) (0.012815479500000004) (0.012834767499999997) (0.012721454499999979) (0.012554085499999992) (0.012605744500000002) (0.012792328000000006) (0.012808153499999989) (0.012682073000000002) (0.012674762999999992) (0.012659594999999996) (0.012864434500000008) (0.012839769500000014) (0.012971892500000012) (0.012993607000000004) (0.012767399000000013) (0.01298609299999999) (0.01273249600000001) (0.012849298999999995) (0.012646250999999997) (0.013003235000000002) (0.012625824499999994) (0.012711884000000007) (0.012630950499999988) (0.01283905249999999) (0.012542218500000007) (0.012580817499999994) (0.012910765500000004) (0.013181156000000013) (0.012582136499999994) (0.012741623499999993) (0.012582774500000005) (0.012484565000000017) (0.01217755999999999) (0.012474572000000003) (0.012543624499999989) (0.01253042950000001) (0.012144106500000001) (0.012717697000000014) (0.012269625500000006) (0.012271133500000003) (0.012422544999999993) (0.012577431999999986) (0.012398287499999994) (0.01233139849999998) (0.012301997500000009) (0.012383365999999993) (0.012510495999999996) (0.012511145500000001) (0.012613329499999992) (0.01224314700000001) (0.012533740500000001) (0.01253539649999999) (0.012404360500000003) (0.012322068000000005) (0.012420233000000017) (0.012593213499999992) (0.012758665000000002) (0.012563082000000003) (0.012570888999999988) (0.012604414499999994) (0.012770748499999998) (0.012611621500000003) (0.012505780500000008) (0.01308492550000001) (0.012776926500000008) (0.012545959500000009) (0.013027958499999992) (0.013212823000000012) (0.012601593000000008) (0.012605173000000025) (0.012617534) (0.012611790499999997) (0.013460497000000016) (0.012944501999999983) (0.012829551000000008) (0.012802748999999988) (0.012723355500000005) (0.012808690499999983) (0.012736547499999973) (0.012755475500000002) (0.012502337000000002) (0.012606568000000012) (0.012756001499999989) (0.012854926000000003) (0.012751087500000008) (0.012727732000000005) (0.012613249500000007) (0.01293881899999999) (0.013050437999999984) (0.013053392499999997) (0.012820298500000007) (0.012731010999999987) (0.012756200000000023) (0.012919290000000014) (0.012719672500000015) (0.012155012999999992) (0.012245657000000007) (0.01304930550000001) (0.012255019500000006) (0.012437432499999998) (0.012358418999999995) (0.012431102999999985) (0.01246195700000001) (0.012414629499999996) (0.012632781999999995) (0.012550505500000003) (0.012561430999999998) (0.012778818999999997) (0.01240259099999999) (0.012386978999999992) (0.012872609999999993) (0.012711775499999994) (0.012463017500000007) (0.0125169995) (0.0124285685) (0.012283487499999995) (0.012364894500000001) (0.01257332600000001) (0.01261300450000001) (0.012886764000000009) (0.012601330500000021) (0.012459717499999995) (0.012539944999999997) (0.012470959000000004) (0.012428214000000007) (0.01230350949999999) (0.012422959000000011) (0.012446200000000004) (0.01270664349999999) (0.012747784500000012) (0.012607461) (0.012740988999999994) (0.012811890999999992) (0.01263890149999998) (0.012885342500000008) (0.012811933999999997) (0.012980788499999993) (0.012678378000000004) (0.012785823500000015) (0.012646948499999991) (0.012961705000000004) (0.012579847499999977) (0.012870479000000004) (0.012708684500000011) (0.012687325) (0.01290330349999999) (0.012507081000000017) (0.012650620500000015) (0.012870985000000015) (0.012967093500000013) (0.013010482500000031) (0.012911880999999986) (0.012793600000000002) (0.012766727500000019) (0.012817096000000014) (0.013035986999999999) (0.012689367500000007) (0.012678730999999985) (0.01271974749999999) (0.012544854500000008) (0.012433471499999987) (0.012497342000000022) (0.012280719999999995) (0.012027457500000019) (0.01225901750000001) (0.012272006999999988) (0.012426122999999997) (0.0122758315) (0.012593904500000003) (0.012592908999999985) (0.012338955499999985) (0.012655578) (0.012822774500000009) (0.012398419500000007) (0.012755285500000019) (0.012165873000000008) (0.012799552500000005) (0.012549612499999988) (0.012513737999999996) (0.01222390999999999) (0.012748641000000019) (0.012468594999999999) (0.0122516565) (0.012394787499999976) (0.012377672000000006) (0.01271128249999999) (0.012416693499999992) (0.012742885999999981) (0.0126606955) (0.01238441300000001) (0.012468678999999996) (0.012596368999999996) (0.012735757499999986) (0.012631824499999986) (0.012627570000000019) (0.012565799500000016) (0.012828787499999994) (0.012658673499999995) (0.0126373345) (0.01267520400000001) (0.012720858000000002) (0.012804446499999969) (0.012984251000000002) (0.01290023400000001) (0.012674933) (0.012689784499999995) (0.012666630999999998) (0.012969725500000015) (0.01258387050000001) (0.012931372999999982) (0.012786892499999994) (0.012746619000000015) (0.012675907) (0.01280123250000001) (0.01274644649999998) (0.012805754500000016) (0.01260768399999998) (0.013116556999999987) (0.012821337999999988) (0.0131059055) (0.012991245000000012) (0.012709049999999986) (0.01262653649999998) (0.012233599499999998) (0.012419638499999996) (0.012662111500000003) (0.012218866000000009) (0.012356659500000006) (0.012464901) (0.012652520999999986) (0.012200854499999997) (0.012499382500000003) (0.012570127) (0.012734949499999995) (0.01246166550000001) (0.012602792999999987) (0.012544614999999995) (0.012448058500000012) (0.012282333000000006) (0.012301314000000008) (0.012583191000000007) (0.012353886499999994) (0.012538064000000002) (0.012085117999999992) (0.012187055500000016) (0.0124424925) (0.012652878000000006) (0.012361038000000005) (0.012426588499999988) (0.01244155750000002) (0.012357867500000008) (0.012413695000000016) (0.012475338000000002) (0.012682635499999997) (0.012672319500000015) (0.012550734500000008) (0.012559131500000015) (0.013153834500000017) (0.012760681499999996) (0.012696058500000024) (0.012792395999999998) (0.012674583500000003) (0.012732812999999996) (0.012940684500000008) (0.012597555499999982) (0.012664066000000015) (0.012727588500000012) (0.01268311150000001) (0.012986224500000018) (0.01284060250000002) (0.012732186499999978) (0.012387156999999996) (0.0127951335) (0.012534072500000007) (0.012525618000000002) (0.012723925999999997) (0.01267314999999998) (0.012652425000000009) (0.012603389999999992) (0.013157955500000013) (0.013003518000000006) (0.012758081000000004) (0.012725342000000014) (0.012688181499999993) (0.012806774999999992) (0.012779052000000013) (0.012711557000000012) (0.01257481449999999) (0.012532674500000007) (0.012279310000000015) (0.012258902499999988) (0.012588611500000013) (0.012625078000000012) (0.012517144499999994) (0.012492824999999999) (0.012603312500000005) (0.012337408000000008) (0.012323081999999999) (0.012376533999999967) (0.012214166499999998) (0.012488013499999992) (0.012628753000000006) (0.012313483999999986) (0.012528044000000002) (0.012598768499999996) (0.01245877450000002) (0.012821921) (0.012301586500000017) (0.012421630000000017) (0.012705162000000006) (0.012529088499999994) (0.012832127500000012) (0.012627511500000022) (0.01285554600000001) (0.012613173000000033) (0.012584203000000002) (0.012580737000000036) (0.012646817000000005) (0.012599348500000024) (0.012796455500000012) (0.012669109499999998) (0.012916086499999993) (0.012798707999999978) (0.012489621500000006) (0.012847721499999992) (0.012659368500000004) (0.012744852000000015) (0.012837936000000008) (0.012508710500000006) (0.01311416650000001) (0.012995193999999988) (0.012726497999999989) (0.012920775999999995) (0.012857666000000004) (0.01261375699999999) (0.013282675499999994) (0.0128761305) (0.012712616499999982) (0.012733236000000009) (0.012603090500000011) (0.012685242999999999) (0.0131641225) (0.012882877499999987) (0.012786190499999975) (0.013023411000000013) (0.012874305000000003) (0.012739764499999973) (0.01275973750000002) (0.012932172500000005) (0.012833786) (0.013373856999999989) (0.009933780000000003) (0.009869766500000002) (0.009987863) (0.009957360499999998) (0.010255469000000003) (0.0100568075) (0.010019795999999997) (0.010080518999999996) (0.010398558500000002) (0.010073617000000007) (0.010305725500000001) (0.010311210499999987) (0.01013475699999998) (0.010150945499999994) (0.010532539000000007) (0.010208056500000007) (0.010148800999999999) (0.010016851499999993) (0.010001632499999996) (0.01003692149999999) (0.01013999950000001) (0.010004761499999987) (0.010033272499999996) (0.010076063499999996) (0.010211131499999998) (0.010229456999999997) (0.010086071000000002) (0.01020899800000001) (0.010246745500000001) (0.01003517999999999) (0.01007589099999999) (0.0102143965) (0.010212971000000015) (0.010585453999999994) (0.010561902999999997) (0.010359630000000009) (0.010534306000000007) (0.010284156000000003) (0.010203273999999998) (0.010544912500000003) (0.010414999500000008) (0.010531887000000004) (0.010310763999999986) (0.010460008000000007) (0.010417543500000015) (0.010378126500000015) (0.010233414499999996) (0.010660591000000011) (0.010392925499999997) (0.010482738000000005) (0.010572277500000005) (0.010303837499999996) (0.010332724500000001) (0.010439151999999993) (0.010309737499999999) (0.010341416500000006) (0.010324149999999976) (0.010599595000000003) (0.010845413999999998) (0.010482205000000008) (0.010429683999999995) (0.010343791000000019) (0.010428709500000008) (0.010675623499999995) (0.010064298499999999) (0.010134597999999995) (0.009958982000000005) (0.01010275849999999) (0.0101655425) (0.010076396500000001) (0.010030942999999987) (0.010045947500000013) (0.0100621595) (0.010107599000000009) (0.010002463000000003) (0.010176231500000008) (0.010340778999999994) (0.010053682000000008) (0.010181162000000007) (0.01021341549999999) (0.010120121499999996) (0.009966967500000007) (0.010341312999999991) (0.010468387499999995) (0.010021000000000002) (0.010023447500000005) (0.010004986500000007) (0.009991332000000006) (0.010480509999999998) (0.010169811) (0.0102219635) (0.010209206499999984) (0.010164234499999994) (0.01014179300000001) (0.010436244000000011) (0.010241207000000002) (0.0103735395) (0.010493457499999997) (0.010341836000000007) (0.010501775000000005) (0.010426771000000001) (0.010273124000000008) (0.010680718499999992) (0.010301319999999989) (0.010695667499999992) (0.010722750000000003) (0.010701437500000008) (0.011042334499999987) (0.010505394000000001) (0.010508765500000003) (0.010760620499999998) (0.010433237999999997) (0.010570217499999993) (0.010221248500000002) (0.010369492000000008) (0.010495624500000009) (0.010524692999999988) (0.010194670499999989) (0.010557284) (0.010326096000000007) (0.01042618649999999) (0.010645703000000006) (0.01064291199999999) (0.010508305499999995) (0.010510198499999998) (0.010469678999999996) (0.010757572000000007) (0.010755829000000008) (0.009895937999999993) (0.010011655500000008) (0.010287293500000003) (0.010012129500000008) (0.010068770500000004) (0.010082418499999982) (0.010062313000000003) (0.009978160500000013) (0.010270251500000008) (0.009980731999999992) (0.010418977499999996) (0.010063897000000002) (0.010072242999999995) (0.01024804850000001) (0.009989645500000005) (0.010121611500000002) (0.010013666500000004) (0.010193448000000008) (0.010061227499999992) (0.009917673499999988) (0.010151279999999999) (0.010018866500000001) (0.010184052999999998) (0.010216709000000004) (0.010059841) (0.010148473500000005) (0.010110307500000013) (0.010129132499999999) (0.010144138999999983) (0.010036086) (0.01012537799999999) (0.010201792000000001) (0.010414712999999992) (0.010462032999999996) (0.010241446500000001) (0.010517815) (0.01027366149999999) (0.01046211250000001) (0.010419336500000015) (0.010499397999999993) (0.010279532499999994) (0.010474543500000016) (0.010333069999999986) (0.0105625565) (0.010586950500000011) (0.010455474500000006) (0.010553621499999999) (0.01065153349999999) (0.010332821500000006) (0.01037134649999999) (0.010293410000000003) (0.010485327000000003) (0.010371326000000014) (0.010439914999999994) (0.010353910500000008) (0.010459920499999997) (0.010440045499999995) (0.010841115499999998) (0.010592422500000004) (0.010792137999999993) (0.010560178500000003) (0.010647455) (0.010539431500000002) (0.010569924999999994) (0.009913476000000004) (0.010114631499999999) (0.010208384499999987) (0.010402493499999999) (0.010017149500000003) (0.01004712549999999) (0.010005866000000002) (0.010127112500000007) (0.010298738500000001) (0.010161760499999992) (0.010102104) (0.010362778999999989) (0.01024560549999999) (0.010347192499999991) (0.010315517999999996) (0.0101799885) (0.009891730999999987) (0.010135091999999998) (0.010155739999999996) (0.010239270499999995) (0.010024535000000001) (0.010154944999999999) (0.009939711000000004) (0.01000968499999999) (0.010309308500000003) (0.010406944499999987) (0.01026333900000001) (0.010359716000000005) (0.010030834000000002) (0.01010155900000001) (0.010125440000000013) (0.010333202500000013) (0.010530262000000012) (0.010341214000000015) (0.010272370000000003) (0.010220591000000001) (0.010315968499999995) (0.010417120000000002) (0.010366595499999992) (0.01035243100000001) (0.010342458499999999) (0.010551859499999997) (0.010568531000000006) (0.010515554499999996) (0.01085970650000001) (0.010692851000000003) (0.010615932500000008) (0.010499082499999993) (0.010359709999999994) (0.01028430800000002) (0.010217611500000001) (0.010317366499999994) (0.010389839499999998) (0.010435645499999993) (0.010490003999999997) (0.010381533999999998) (0.010430838500000011) (0.010590139500000012) (0.01066287049999999) (0.010640566000000004) (0.010456332999999998) (0.010537084500000002) (0.01058254950000001) (0.0107309305) (0.010156951000000011) (0.0099537175) (0.009960403000000007) (0.01012971) (0.010081069999999998) (0.009881883499999994) (0.009927892499999993) (0.009878297999999994) (0.0100931145) (0.010282612499999996) (0.010200670499999995) (0.010310616999999994) (0.010226683000000014) (0.010044095000000003) (0.009997348000000003) (0.010342907000000012) (0.009993327499999996) (0.010258871999999988) (0.010258684000000004) (0.010066129000000007) (0.010051671500000012) (0.00999884849999999) (0.010180857999999987) (0.010079570999999982) (0.01010803049999999) (0.010087343999999998) (0.010076857500000008) (0.010141260499999999) (0.010205535500000001) (0.010218076000000006) (0.0103764675) (0.010122975500000006) (0.010543729500000015) (0.010349702499999988) (0.010236918000000012) (0.010442324499999989) (0.010471526000000009) (0.010513170000000002) (0.010229659500000002) (0.010338971500000002) (0.010423898500000014) (0.010291030499999992) (0.010576745499999998) (0.010318831999999986) (0.010397936999999996) (0.010396427) (0.01041147449999999) (0.010641237999999997) (0.01067634399999999) (0.010550770000000001) (0.010288811000000009) (0.010269583499999999) (0.010515763499999997) (0.0102574775) (0.010466133500000016) (0.010590466500000006) (0.010406526) (0.010415731000000011) (0.010564702999999995) (0.010530884000000004) (0.010497923000000006) (0.010396141499999997) (0.010666767499999993) (0.01037251900000001) (0.01005571899999999) (0.010173519499999992) (0.010099815000000012) (0.009948412000000004) (0.0101650655) (0.010153074000000012) (0.01004258899999999) (0.010057336) (0.010028741000000008) (0.010322456500000007) (0.010135922500000005) (0.010075575500000003) (0.010318653499999997) (0.010188865499999991) (0.010095002499999992) (0.010454289000000005) (0.010110989499999987) (0.009945817499999995) (0.010155406000000006) (0.010136911000000012) (0.0101754555) (0.010112957000000006) (0.010104998500000004) (0.0100375615) (0.010145081) (0.010261248) (0.010281732500000001) (0.010244349) (0.010174587499999999) (0.010078248500000012) (0.010141823999999994) (0.010010653500000008) (0.010539539) (0.010248818500000006) (0.010398941000000009) (0.010485484999999989) (0.010302246999999987) (0.01059898599999999) (0.010447956499999994) (0.010605999000000005) (0.01074152049999999) (0.010525433499999987) (0.010415465999999984) (0.010418283500000014) (0.01054703600000001) (0.010488629999999985) (0.010429824000000004) (0.010434282500000003) (0.010479747499999997) (0.010519111499999984) (0.010341054000000002) (0.010291741499999993) (0.010338220500000009) (0.010333373000000007) (0.010342604000000005) (0.010269618499999994) (0.010644690999999998) (0.010777669500000003) (0.010466452000000001) (0.010459745000000006) (0.010621190500000002) (0.010786941499999994) (0.010595465499999984) (0.010251689500000008) (0.01078358850000001) (0.009997865499999994) (0.010091854000000011) (0.010173110000000013) (0.010128719500000008) (0.010073594499999991) (0.010117330500000007) (0.010285617999999996) (0.01007506200000001) (0.0100549115) (0.01024551650000001) (0.010326914999999992) (0.01005694750000001) (0.010209297499999992) (0.010150423499999991) (0.01003536499999999) (0.010149190000000002) (0.010074731000000003) (0.00989905649999999) (0.010053412499999997) (0.010020788000000017) (0.010261894500000007) (0.01009194799999999) (0.009988009000000006) (0.010243634500000001) (0.010257346) (0.010271543999999994) (0.010158412500000005) (0.010112530499999994) (0.010533998500000002) (0.010325623000000006) (0.010423086499999998) (0.010264124500000013) (0.010681490500000002) (0.010288583000000004) (0.0103699305) (0.010237210999999996) (0.010345924499999992) (0.010358293000000005) (0.010825388499999991) (0.010575043499999992) (0.010519866999999988) (0.010407414500000003) (0.010489289999999998) (0.015993189000000005) (0.01035889050000001) (0.01059750999999999) (0.010381886000000007) (0.010588955499999997) (0.010396881499999996) (0.010332607500000007) (0.010280718999999994) (0.01040641099999999) (0.010380077499999987) (0.01044387799999999) (0.010213265) (0.010402462500000015) (0.010489577999999986) (0.010508045500000007) (0.0105669065) (0.01061504299999999) (0.010647283500000007) (0.010377520500000015) (0.010539971500000009) (0.010013900999999992) (0.010145926500000013) (0.010181652500000013) (0.010210507500000007) (0.010165045999999983) (0.010080473500000006) (0.009944194500000003) (0.010155443000000014) (0.010134723499999998) (0.01020965700000001) (0.010318882500000001) (0.0103074685) (0.0100665895) (0.010114974999999984) (0.010153565000000003) (0.01018442650000001) (0.010267634499999984) (0.010118534000000012) (0.010084414) (0.00993081500000001) (0.010181620000000002) (0.010196904500000006) (0.009967300500000012) (0.0102686595) (0.010307541000000017) (0.010378836000000016) (0.010163182000000007) (0.010250390999999998) (0.010119809499999993) (0.0102293465) (0.010265181999999998) (0.01021117199999999) (0.01039704000000001) (0.010596922000000009) (0.010229993500000006) (0.010338858999999978) (0.010317363999999996) (0.010658356500000007) (0.01026041400000001) (0.010560440500000004) (0.010479289500000002) (0.010762242499999991) (0.010557786999999999) (0.01048502250000001) (0.010542588499999991) (0.010566765999999991) (0.01047875799999999) (0.010537811499999994) (0.010427142) (0.01042112399999999) (0.010522588) (0.010434523500000015) (0.010382651000000007) (0.0103762555) (0.010308977499999997) (0.010446154) (0.010386089000000001) (0.010609539000000001) (0.010604639500000013) (0.01041001100000001) (0.0105535675) (0.010571871499999996) (0.010635680500000008) (0.010508636500000001) (0.01024148300000001) (0.009981636000000002) (0.01020874599999999) (0.010012422499999993) (0.010030656000000013) (0.010262347000000005) (0.0101625605) (0.010090993499999992) (0.009957684999999994) (0.010222506499999992) (0.010170526999999999) (0.00999231149999999) (0.010060539000000007) (0.009945644999999989) (0.010146178000000006) (0.010237078999999996) (0.0101144435) (0.010097700000000015) (0.009917200000000001) (0.010238651500000001) (0.010009879) (0.010079073000000008) (0.010187283000000005) (0.009955900000000004) (0.010146144999999995) (0.010135918499999994) (0.010169455999999993) (0.010092168500000012) (0.010111283500000012) (0.010112174000000002) (0.01026152100000001) (0.010260181000000007) (0.0104991735) (0.010254401499999996) (0.010353355999999994) (0.010549714500000001) (0.010351456999999994) (0.010667389499999999) (0.010295390999999987) (0.010412356500000011) (0.010668249500000004) (0.010710065000000005) (0.010441473500000006) (0.010443757500000012) (0.010443766000000007) (0.010634400499999988) (0.01042739849999999) (0.010502326500000006) (0.010624605999999995) (0.010657368500000014) (0.010687912000000008) (0.010596252499999986) (0.010415975999999993) (0.010522398500000002) (0.010519970999999989) (0.010314719) (0.010555172500000001) (0.010562428499999998) (0.010558665500000008) (0.010543480500000008) (0.010321762499999984) (0.010515469) (0.010547031999999998) (0.010625337500000012) (0.010131616499999996) (0.010069289999999995) (0.010074092000000007) (0.010016426500000009) (0.009967417500000006) (0.010244633000000003) (0.010083380500000003) (0.010108678499999996) (0.010287363999999993) (0.010057526999999997) (0.010136037) (0.010381132000000001) (0.010282949999999999) (0.010113146999999989) (0.010495894000000006) (0.010090680000000005) (0.010686931499999996) (0.010016539500000005) (0.010007988999999995) (0.010274169) (0.010061521000000004) (0.010039951499999991) (0.009956558000000004) (0.009965808500000006) (0.010030572499999987) (0.010404952499999995) (0.01031468549999999) (0.010217712500000004) (0.010166464999999986) (0.010223051499999997) (0.010055482500000004) (0.010202428000000013) (0.010442968499999997) (0.010466754500000008) (0.010309245500000008) (0.010341855499999997) (0.010670909499999992) (0.010444692000000005) (0.010392689999999996) (0.010431945499999998) (0.010443951499999993) (0.010391667500000007) (0.010495513499999998) (0.010484696000000002) (0.010536178499999993) (0.010613123999999988) (0.010503935500000006) (0.010631701999999993) (0.01034156949999998) (0.010405931000000007) (0.01028847799999999) (0.010343365499999993) (0.010457429000000004) (0.010304125999999997) (0.010524796500000017) (0.010994943000000021) (0.0105094565) (0.010742659999999987) (0.010559862500000003) (0.010497019499999996) (0.010564601500000007) (0.010740064000000021) (0.010514655499999997) (0.010453899500000002) (0.010000211999999994) (0.010195005499999979) (0.010205138000000002) (0.010177999499999993) (0.009930792000000008) (0.010223673500000002) (0.009999916999999997) (0.010088347999999997) (0.010293258999999999) (0.010137171000000014) (0.010074368) (0.010466074499999992) (0.010340749999999996) (0.010193520499999997) (0.010324695999999994) (0.010115265500000012) (0.01019851849999999) (0.010041020500000011) (0.010171964499999991) (0.010400138500000003) (0.010100291000000011) (0.009984494999999982) (0.010015087999999991) (0.009972896500000009) (0.010366724000000022) (0.010281063000000007) (0.010095919999999994) (0.009954101499999993) (0.010281106999999998) (0.010194824500000005) (0.010354679500000005) (0.010151670500000001) (0.010363668500000006) (0.010319158000000009) (0.010521466499999993) (0.010573169500000007) (0.010460526999999997) (0.010358371000000005) (0.010425325) (0.010397114999999998) (0.01040257) (0.010292173499999988) (0.010534364000000004) (0.010408130000000002) (0.010418955500000007) (0.010626155499999998) (0.010482886999999996) (0.010697549) (0.010525874500000004) (0.010355954) (0.010302294500000017) (0.010447480999999995) (0.01052699850000001) (0.010472392999999997) (0.01066939800000001) (0.010439514499999997) (0.010551315500000005) (0.010742742999999985) (0.010519265500000013) (0.010531631500000013) (0.010730082000000002) (0.010387418500000009) (0.010649947499999993) (0.010739324000000008) (0.0103100775) (0.010175468499999993) (0.010228038499999995) (0.010170122000000004) (0.010411234500000005) (0.010445517000000001) (0.010067020499999996) (0.010019750499999994) (0.0101425505) (0.010065939999999995) (0.010140238499999996) (0.010166515000000001) (0.010082425500000006) (0.010359403500000003) (0.010575078000000002) (0.010318063000000002) (0.010167132999999995) (0.010109980500000004) (0.01014466) (0.0101357215) (0.010168841999999997) (0.010106693499999986) (0.010101114499999994) (0.010083526500000009) (0.010210194000000006) (0.010394665999999997) (0.010274409000000012) (0.010381601000000004) (0.010254931000000009) (0.010290169000000002) (0.0104242675) (0.010488883500000004) (0.0102341965) (0.0104048095) (0.0104241095) (0.0103684525) (0.010468106000000005) (0.010412967999999995) (0.010302135000000004) (0.010524466999999996) (0.010351737) (0.010408363500000017) (0.010541747500000004) (0.010408549000000003) (0.010515219500000006) (0.010623806) (0.010724815499999998) (0.01067855899999999) (0.010691239000000019) (0.010357810499999981) (0.010629195499999994) (0.01040614749999999) (0.01032322450000002) (0.010384369000000004) (0.010387662500000006) (0.010453770999999987) (0.010597244500000005) (0.010687975500000002) (0.010867158000000016) (0.010495876500000001) (0.010540398500000006) (0.010601331000000006) (0.010535511999999997) (0.010914031000000005) (0.009994245000000013) (0.010145216000000012) (0.009896804499999995) (0.009941447000000006) (0.009997602999999994) (0.00996667250000001) (0.010195521999999999) (0.01001827100000001) (0.010068759499999996) (0.010119206500000005) (0.01012368100000001) (0.01014240999999999) (0.010182473999999997) (0.010021663) (0.00999341849999999) (0.010136063499999987) (0.010094823500000003) (0.009991917500000003) (0.009928218499999988) (0.00995186649999999) (0.010050048500000006) (0.0100493985) (0.010186889000000005) (0.010088151500000003) (0.010076673999999994) (0.010398065499999998) (0.010114603000000014) (0.00994845350000001) (0.010239575) (0.010072117500000005) (0.010173592499999995) (0.010171096000000004) (0.010581644500000001) (0.010328194499999999) (0.01048659149999999) (0.01035448) (0.010497673499999999) (0.010314797500000014) (0.010333240499999993) (0.010561763500000002) (0.010364574000000001) (0.010421839499999988) (0.010457951000000007) (0.010456370499999992) (0.010565679999999994) (0.010804908000000002) (0.010683985499999993) (0.010443891999999996) (0.010386737499999993) (0.010341079499999989) (0.010418176000000001) (0.010343016499999996) (0.010595026000000007) (0.01032374500000001) (0.010243623500000007) (0.010402224500000001) (0.010607692500000002) (0.010636265000000006) (0.010351517000000005) (0.010414347500000004) (0.010592976000000018) (0.010566541999999998) (0.010357930499999987) (0.010424142499999997) (0.010232038999999984) (0.010336501000000012) (0.010188722999999997) (0.009988343999999996) (0.009917060499999991) (0.010082974999999994) (0.010370321000000002) (0.010214766499999986) (0.010032336999999988) (0.010173097000000006) (0.010208366499999996) (0.010061303499999993) (0.010152912) (0.010300344999999989) (0.010162973000000006) (0.010151206999999995) (0.010112618500000004) (0.010159110500000013) (0.0101924595) (0.01008203199999999) (0.010014247500000004) (0.010020881499999995) (0.010249427000000005) (0.010142851999999994) (0.010084725499999989) (0.010281951999999997) (0.010226728500000004) (0.010132387000000007) (0.010275813500000008) (0.010177593499999985) (0.010310779500000006) (0.010125915500000013) (0.011628976500000013) (0.010434288000000014) (0.010303282999999983) (0.01035602649999999) (0.010375699499999988) (0.010484275000000001) (0.010335641500000006) (0.010502176500000002) (0.0104555655) (0.010644006500000011) (0.010464132000000001) (0.010454260499999993) (0.010544718500000008) (0.010369316000000003) (0.010655840500000013) (0.01039719750000001) (0.010445146500000002) (0.01039255900000001) (0.01033691099999999) (0.01050297700000001) (0.01053617350000001) (0.010604598000000007) (0.010534294999999999) (0.010376235999999997) (0.010536893999999991) (0.010526823000000005) (0.010475812000000001) (0.010603603500000003) (0.01055719749999999) (0.010305875000000006) (0.010638008000000004) (0.010597924999999994) (0.009887622499999998) (0.009963265999999998) (0.010334829500000003) (0.010460061499999992) (0.010051247499999985) (0.010286194499999998) (0.010090970000000019) (0.010159045499999991) (0.010459996499999999) (0.009972367499999996) (0.010422892499999989) (0.010375502500000008) (0.010320231) (0.01022125900000001) (0.010299465499999994) (0.010220496999999995) (0.009947609999999996) (0.010014559000000006) (0.010063575000000005) (0.009917874500000007) (0.010342309500000008) (0.010202068500000008) (0.010037856999999997) (0.010088840999999987) (0.010327794000000001) (0.010127820999999995) (0.010259733999999993) (0.010090660000000001) (0.010207586500000018) (0.010161804499999996) (0.010259793000000003) (0.010206383000000013) (0.010231710500000005) (0.010434658500000013) (0.010284370999999987) (0.010378907000000007) (0.010414332999999998) (0.010413980000000017) (0.010430584999999992) (0.010459339499999998) (0.010341967499999993) (0.010518543500000005) (0.0104206565) (0.010592584500000016) (0.010537321000000002) (0.010576742999999986) (0.010462626999999988) (0.010451632000000002) (0.0105190275) (0.010373122999999998) (0.010191905499999987) (0.010366133500000013) (0.010300243499999986) (0.010549806500000009) (0.010282435500000006) (0.010237049500000012) (0.010602362500000004) (0.010360079499999994) (0.010882921500000003) (0.01062702900000001) (0.010736925499999994) (0.010461801000000007) (0.010620214000000017) (0.010350931499999994) (0.010154949499999996) (0.010135618000000013) (0.010215216499999985) (0.010011562000000002) (0.01015446149999999) (0.010054774500000002) (0.010043892999999998) (0.01041264850000001) (0.010049659000000002) (0.010171700500000005) (0.01012560749999998) (0.0103959525) (0.01026277099999999) (0.010190888500000009) (0.010375096) (0.010750473999999996) (0.0101527265) (0.010203064999999997) (0.01019410200000001) (0.010352954999999997) (0.010250090500000017) (0.010452086500000013) (0.0101356155) (0.009996985499999986) (0.010185256000000004) (0.010166264499999994) (0.010286800999999998) (0.010217606000000004) (0.010141843499999997) (0.010211679500000015) (0.01019777799999999) (0.010276977999999992) (0.010484182499999994) (0.01048462700000001) (0.010438984000000012) (0.010585625500000001) (0.010369669999999998) (0.010578407999999997) (0.010564764500000004) (0.010668877999999993) (0.010375621000000002) (0.010422396999999986) (0.010655181000000014) (0.010565924500000004) (0.010366991499999992) (0.0105214255) (0.01048334649999999) (0.010535478000000001) (0.010368811000000006) (0.010327653500000006) (0.010306498999999997) (0.01045935349999999) (0.010237696500000004) (0.010421394) (0.010940262500000006) (0.010338101000000002) (0.01051741199999999) (0.010366963500000007) (0.010545777000000006) (0.010432823000000008) (0.010492242000000013) (0.010541454500000005) (0.010443420999999994) (0.010549950000000002) (0.010006852999999996) (0.010058260999999999) (0.010099281999999987) (0.010001311999999984) (0.00997648100000001) (0.01039010650000001) (0.010118766499999987) (0.009990933499999993) (0.010087801500000007) (0.009981213500000002) (0.010133705999999992) (0.010022839500000005) (0.010193091500000001) (0.010328213500000016) (0.010124921000000009) (0.010195979500000008) (0.009998154500000009) (0.009938692999999998) (0.010276437500000013) (0.009979582500000014) (0.010004917000000002) (0.00993348450000002) (0.010155697000000005) (0.010104797500000012) (0.010230274999999997) (0.010266444999999999) (0.010098768499999994) (0.010189204499999993) (0.01012395599999999) (0.010038371500000004) (0.010044318999999996) (0.010196010000000005) (0.010358502999999991) (0.010361621000000001) (0.01029290699999999) (0.010275403500000002) (0.010329796500000002) (0.010344729999999996) (0.010511233000000009) (0.010216177999999992) (0.01049770600000001) (0.010269678000000004) (0.010566576499999994) (0.010471615500000017) (0.01056504200000001) (0.010379902999999996) (0.010443146499999986) (0.010366970499999989) (0.010381241) (0.010520908999999995) (0.010360811499999997) (0.010523182999999992) (0.010415676500000012) (0.0102459825) (0.010422331000000007) (0.010302948499999992) (0.01038243400000001) (0.010597489000000002) (0.010427792499999991) (0.010498665000000004) (0.010589121000000007) (0.010256510499999996) (0.010843062) (0.010594070999999997) (0.010037217000000001) (0.009985993499999998) (0.009940725499999997) (0.010199707500000002) (0.010076897499999987) (0.010010313500000007) (0.010106525499999991) (0.010208203999999999) (0.0100184455) (0.010282035500000009) (0.010036372000000002) (0.010300393000000005) (0.010083206000000011) (0.010152667500000004) (0.010316206500000008) (0.01027151350000001) (0.010256426999999999) (0.010226699999999991) (0.010111396499999994) (0.010060493500000003) (0.010040518000000012) (0.010136276999999999) (0.01039358800000001) (0.010092123999999994) (0.010128497999999986) (0.01038190600000001) (0.010236039000000002) (0.0103159325) (0.010217958) (0.01018028800000001) (0.010151054499999992) (0.00998200149999999) (0.010457025999999994) (0.010511985000000015) (0.010324391500000016) (0.01036889449999999) (0.010399611499999989) (0.010508873000000016) (0.01030416549999999) (0.010466058) (0.010376626500000014) (0.010588379999999994) (0.010437511499999996) (0.0103273475) (0.010492434999999994) (0.010434266500000011) (0.010705745000000003) (0.01058537200000001) (0.01107051349999999) (0.010323920500000014) (0.010261689000000004) (0.010315738500000005) (0.010369362499999993) (0.010372091999999986) (0.0102996915) (0.01040145649999999) (0.010350443499999987) (0.010451997000000005) (0.010467747) (0.010490547500000003) (0.01071381199999999) (0.010771369999999988) (0.01084425700000001) (0.010659140500000011) (0.010167197499999989) (0.010021839500000004) (0.010030232500000014) (0.01041597150000001) (0.0099143535) (0.010374553000000009) (0.010103759000000004) (0.010025988999999999) (0.010108459) (0.010210997500000013) (0.010097773500000004) (0.010126897499999996) (0.010218901500000002) (0.01016246250000001) (0.010039329) (0.010034176999999991) (0.01015941699999999) (0.010029100499999999) (0.010102224500000007) (0.009878794999999996) (0.010153110499999993) (0.010260639000000002) (0.010612412000000002) (0.010118568499999994) (0.010337448999999999) (0.01033023949999999) (0.010150748499999987) (0.010297010500000023) (0.010466486999999997) (0.010387217500000018) (0.010145508500000011) (0.010251093999999988) (0.010777338999999997) (0.010246893000000007) (0.010585905000000007) (0.010351996499999988) (0.010539073499999996) (0.010319451500000007) (0.010355264499999989) (0.010391705000000001) (0.010478907999999995) (0.010680276500000002) (0.010473464500000015) (0.010406121500000004) (0.010594981500000003) (0.010493387500000007) (0.010288297500000015) (0.010484978000000006) (0.01054789149999999) (0.010435900499999998) (0.010349031499999994) (0.010335713499999996) (0.010590158000000002) (0.010280539500000005) (0.010343698999999998) (0.010263838499999997) (0.010505574500000003) (0.010633216999999986) (0.010466429) (0.010429850500000004) (0.010690557500000003) (0.010644503000000013) (0.010788541000000013) (0.010779251000000004) (0.010035352999999983) (0.010155049999999999) (0.010241629000000002) (0.010331309999999996) (0.0101680445) (0.009955101499999994) (0.01019400949999999) (0.010048437500000007) (0.010225954499999995) (0.01033307600000001) (0.01031794400000001) (0.009975034500000007) (0.010266886500000016) (0.010475680000000001) (0.01007346549999999) (0.010163437999999997) (0.010142884500000005) (0.010042893499999997) (0.010114023500000013) (0.009983252499999984) (0.010128245500000008) (0.0099633145) (0.010129154500000001) (0.009945082999999993) (0.010219557500000004) (0.010324777000000007) (0.01017957600000001) (0.010247396999999991) (0.010279113999999992) (0.010601337500000002) (0.010439827499999998) (0.010403970999999998) (0.010429328500000001) (0.010499890499999984) (0.010263566500000001) (0.010553534500000003) (0.010446010000000006) (0.010325338000000003) (0.010582253000000014) (0.010303431500000002) (0.010503131999999998) (0.010485158999999994) (0.010661011499999998) (0.01052918500000001) (0.010689887500000009) (0.010479016500000007) (0.010373775500000001) (0.01063951299999999) (0.01037046250000001) (0.010451171000000009) (0.010363346499999995) (0.010425687000000003) (0.010216005) (0.010497277499999999) (0.0102730335) (0.010454381499999998) (0.010531963499999991) (0.010722399499999993) (0.010651695000000003) (0.010441837999999995) (0.010724747499999993) (0.010796756500000004) (0.010798534999999998) (0.0108473855) (0.0101134175) (0.009846703999999998) (0.010039601499999995) (0.009947501499999997) (0.010038810999999995) (0.010019247499999995) (0.0102891975) (0.010057964500000002) (0.010073820499999983) (0.010401481500000004) (0.010227963999999992) (0.010259531999999988) (0.010237251000000003) (0.010081981000000004) (0.010252787500000013) (0.01018738399999998) (0.009931061000000005) (0.010101351500000022) (0.009879935499999992) (0.010185926499999984) (0.009986268500000006) (0.01013446300000001) (0.009970835499999983) (0.01003246699999999) (0.010009503500000003) (0.010258248999999997) (0.010203374500000001) (0.01024141399999999) (0.009952554999999988) (0.010211404000000007) (0.010066558999999989) (0.010081626499999996) (0.0104468635) (0.0103759675) (0.010406453499999996) (0.0101851585) (0.01030887450000001) (0.010119670500000011) (0.010219366000000007) (0.010209962500000003) (0.010563423500000002) (0.01060439199999999) (0.010414018000000011) (0.010481597499999995) (0.010338332000000006) (0.01065985500000001) (0.010498549999999995) (0.010566725999999999) (0.010437270499999998) (0.01027329099999999) (0.010325200000000007) (0.010400810999999996) (0.010365383499999992) (0.010826860500000007) (0.010449186500000013) (0.01058648849999999) (0.010741571500000019) (0.011478162999999986) (0.010427137000000003) (0.010604451000000015) (0.010466092499999996) (0.010562912499999993) (0.010615366000000001) (0.010660562000000012) (0.010188419000000004) (0.010213532499999997) (0.010086175500000003) (0.010191560000000002) (0.010196854000000005) (0.009995151499999994) (0.010183084999999995) (0.00995103) (0.0102011615) (0.010193833999999999) (0.010189766000000003) (0.0101745045) (0.010201424500000014) (0.010113459500000005) (0.010101620499999991) (0.0100728905) (0.010215082500000014) (0.01007587950000001) (0.010114445) (0.010129370000000013) (0.01016669549999999) (0.010235068500000014) (0.010162866499999992) (0.010203476500000003) (0.009961234499999999) (0.010184745500000009) (0.01057150150000001) (0.01032793500000001) (0.01022867899999999) (0.010290980500000005) (0.015002691999999998) (0.010125864000000012) (0.010476970999999988) (0.010249053000000008) (0.010704122999999996) (0.010428498000000008) (0.010433272000000007) (0.010295744999999995) (0.010266464000000003) (0.010367472500000002) (0.010411704999999993) (0.010440363499999994) (0.010547256500000005) (0.010543524999999984) (0.010574611999999997) (0.01073188650000001) (0.010523153000000007) (0.010597553999999995) (0.01042368199999999) (0.01055493049999999) (0.010314590499999984) (0.010341720500000012) (0.01021088149999999) (0.010324415999999989) (0.010405117500000005) (0.010378936000000005) (0.010731541499999983) (0.010645377499999983) (0.010434731500000002) (0.010482744500000002) (0.010771274499999997) (0.010519900499999998) (0.01049245650000001) (0.010311688500000013) (0.010140321000000008) (0.010159065000000009) (0.009960178) (0.010066862499999996) (0.010136470000000009) (0.010021384499999994) (0.010197951499999997) (0.01001298049999999) (0.0100312615) (0.010080402000000002) (0.010257124500000006) (0.01032989749999999) (0.01014090799999999) (0.009998734500000009) (0.010465586499999999) (0.01017985049999999) (0.010139701000000015) (0.009968882499999998) (0.010058049500000013) (0.010059807000000004) (0.010227255500000004) (0.010070964500000001) (0.010201387500000006) (0.00996980850000001) (0.010192289499999979) (0.010354341000000003) (0.010036623000000008) (0.010285993500000007) (0.010195586000000006) (0.010208566000000002) (0.010126997999999998) (0.010270739000000015) (0.010397900999999987) (0.010155032499999994) (0.010566811999999995) (0.010441698499999999) (0.010551166499999987) (0.010532052) (0.0107207) (0.010443020000000011) (0.010636373000000005) (0.010750416499999998) (0.01051887700000001) (0.010397320500000001) (0.010727087999999996) (0.010672035499999996) (0.0104988315) (0.010681590500000004) (0.010412233000000007) (0.010703420000000005) (0.010658989999999993) (0.010504802500000007) (0.010360670500000002) (0.0103713515) (0.010252607499999997) (0.010950889999999991) (0.010663853999999987) (0.010596063000000003) (0.010626611000000008) (0.010790759000000011) (0.010682917) (0.010479803999999995) (0.010781588500000008) (0.010544382500000005) (0.010068840499999981) (0.01048051450000001) (0.010141883500000004) (0.010145674500000007) (0.009991758000000003) (0.010215440500000006) (0.010042766000000009) (0.010020291999999986) (0.01039088099999999) (0.010452192999999999) (0.010173052000000002) (0.010191717000000003) (0.010129072999999988) (0.010393076500000015) (0.010068654999999996) (0.010378974) (0.01029629500000001) (0.010360433000000002) (0.01001482599999999) (0.010222219000000018) (0.010307242499999994) (0.010098214999999994) (0.010465383999999994) (0.009946393499999998) (0.010380859999999992) (0.010275890999999995) (0.010230388000000007) (0.010407092000000007) (0.010320401499999993) (0.010304629499999982) (0.010328628499999992) (0.010321136499999994) (0.010454495500000008) (0.010571377000000007) (0.010490793999999984) (0.010390930499999979) (0.010509030500000016) (0.010549896999999989) (0.010285878999999984) (0.010460950499999996) (0.010871060000000002) (0.010990913000000005) (0.010403807000000001) (0.010655741999999996) (0.0104289365) (0.010402076999999996) (0.010548041000000008) (0.010447366999999999) (0.010507969500000006) (0.010378925499999997) (0.010302657999999992) (0.01023544400000001) (0.010374546499999984) (0.010276784499999997) (0.010314976500000003) (0.010396574999999991) (0.010512635499999992) (0.01080232199999999) (0.010436195999999995) (0.010477304000000007) (0.010536201500000009) (0.010668892999999999) (0.0106617985) (0.010546396500000013) (0.009986868999999995) (0.010060236499999986) (0.009884128000000006) (0.010069090000000003) (0.010097811999999984) (0.010132650000000007) (0.010171442500000002) (0.010147678500000007) (0.010079256499999995) (0.010282713999999998) (0.010216940500000007) (0.010365522500000002) (0.010151705999999996) (0.010293630499999998) (0.010133570000000008) (0.01016453249999999) (0.009791580000000008) (0.010294349999999994) (0.00981927049999999) (0.009998227499999998) (0.010130283000000004) (0.009951206000000004) (0.010346672500000001) (0.010180829000000002) (0.010394254999999991) (0.01021324550000001) (0.010107233999999993) (0.010218073000000022) (0.010311815500000002) (0.010611184499999995) (0.010034525000000002) (0.010369530499999988) (0.01028058749999998) (0.01033671700000001) (0.01033637100000001) (0.010423937499999994) (0.010389107999999994) (0.010269724499999994) (0.010415292499999992) (0.010507420999999989) (0.010561337000000004) (0.010391943) (0.010754413500000004) (0.010503731500000002) (0.010610539000000002) (0.010328520500000007) (0.010490963500000006) (0.010506314499999989) (0.010324739500000013) (0.010495388000000008) (0.010445701000000002) (0.010352686999999985) (0.010727131) (0.010440229499999995) (0.01036471550000001) (0.010301909499999998) (0.010474675500000002) (0.010373749499999987) (0.01071352049999999) (0.010443877000000018) (0.010589088999999996) (0.010710764499999997) (0.010677765000000006) (0.010656628499999987) (0.010198487999999992) (0.010057944999999999) (0.01005279499999999) (0.009952580000000016) (0.010047210500000014) (0.0101460035) (0.010058563499999992) (0.010189817500000004) (0.010048677499999992) (0.010458555500000008) (0.010448906500000008) (0.010090726499999994) (0.01011740550000001) (0.010460473499999998) (0.010225676000000003) (0.010244907000000011) (0.010269089500000009) (0.010126145500000003) (0.010241971000000002) (0.010055084499999992) (0.010252621500000003) (0.010207847499999992) (0.010062656500000003) (0.009986440000000013) (0.010202272500000012) (0.01023657800000001) (0.010265519000000015) (0.010332859) (0.010219342999999992) (0.010225776500000006) (0.010200550000000003) (0.010360495499999997) (0.010431630500000011) (0.010543558499999994) (0.010267942000000002) (0.010312510499999997) (0.010355250999999996) (0.0103443005) (0.010182865499999999) (0.01030708150000001) (0.01047456849999999) (0.010416469999999997) (0.010458192500000005) (0.01039789449999999) (0.010592415500000008) (0.010400505000000004) (0.010401108000000006) (0.010517817999999998) (0.010357906999999986) (0.010268212499999999) (0.0103065725) (0.010388732499999997) (0.010423838000000005) (0.010219132999999991) (0.010464718000000012) (0.010320278000000002) (0.010593217999999988) (0.010677486000000014) (0.010517859500000004) (0.011063891999999992) (0.010610205499999997) (0.010600143499999992) (0.010665358) (0.010692219000000003) (0.010222920999999996) (0.010056784499999999) (0.010007140999999997) (0.0102701595) (0.010083791500000008) (0.009991329999999993) (0.010158646499999993) (0.010017413999999988) (0.010199181500000001) (0.01047456350000002) (0.010119457499999998) (0.010162460499999998) (0.010091613999999999) (0.010258644000000011) (0.010203194499999999) (0.01017129500000001) (0.010140569500000002) (0.009968276000000012) (0.0101429995) (0.010063577000000004) (0.010099739999999996) (0.010120095999999995) (0.010307253000000002) (0.010038362499999995) (0.010359701499999999) (0.010209502499999995) (0.010214805500000007) (0.010158620499999993) (0.010149439499999996) (0.010065216500000002) (0.010162156500000005) (0.010310781000000005) (0.010421311500000002) (0.010627858500000018) (0.010486583500000007) (0.01030300499999999) (0.010313168999999997) (0.010430649) (0.010378904499999994) (0.010499208999999995) (0.01067887699999999) (0.01058852149999999) (0.010440971000000007) (0.010683380999999992) (0.010741491000000006) (0.010480739999999988) (0.010954389499999995) (0.010424932999999997) (0.010433054999999997) (0.010499441999999984) (0.0103156665) (0.010271336500000006) (0.010795075000000001) (0.01057826549999999) (0.010295660499999998) (0.010448896499999999) (0.010497398000000019) (0.010444194500000004) (0.010495774499999999) (0.010629314999999986) (0.010494360500000008) (0.010522447500000004) (0.01057222649999999) (0.010484164500000004) (0.010246990499999997) (0.01010823999999999) (0.010008941500000007) (0.01006486949999999) (0.01026618750000001) (0.010031865000000001) (0.010144546000000004) (0.010210524999999998) (0.010294998999999985) (0.010307884000000003) (0.01021242800000001) (0.010365508499999995) (0.010256954999999998) (0.01044241450000001) (0.010121960000000013) (0.010117523500000003) (0.010129095500000004) (0.010184450000000012) (0.010029974999999997) (0.0101614285) (0.010359897499999993) (0.010186361500000018) (0.009939846500000002) (0.0101814385) (0.010138567000000001) (0.01032720749999999) (0.010326727999999993) (0.010255883000000007) (0.01024626649999999) (0.010323614500000008) (0.010421700999999992) (0.010456095499999984) (0.010568543000000014) (0.010415348500000005) (0.010555081499999994) (0.010486722500000004) (0.010460885999999989) (0.010344300499999987) (0.010495281499999995) (0.0103140335) (0.010574665499999997) (0.010586081499999997) (0.010490962000000006) (0.010482790500000005) (0.011324986999999995) (0.010831000999999993) (0.010425293500000002) (0.010648814999999992) (0.010458463500000001) (0.010298931499999997) (0.010634064499999998) (0.010349743999999994) (0.010631755999999992) (0.010470558000000005) (0.011024610000000004) (0.010566690500000003) (0.010793128999999999) (0.010539775500000001) (0.010750243500000006) (0.010599683999999998) (0.010544180999999986) (0.010766573000000002) (0.010718002500000004) (0.010705197999999999) (0.009901707499999995) (0.00989344049999999) (0.010047448499999986) (0.00987971850000001) (0.010314801999999998) (0.010081906500000015) (0.00990162750000001) (0.010198297000000009) (0.010197943499999987) (0.010189365500000006) (0.010065515499999997) (0.010213787499999988) (0.010098620500000016) (0.010090172499999994) (0.010106097499999994) (0.010084914000000014) (0.010138845999999993) (0.010078629999999991) (0.010144590999999994) (0.010101623500000004) (0.01038492349999999) (0.010250183499999996) (0.010034587499999997) (0.010211683500000013) (0.010442718000000004) (0.010144525500000001) (0.010158746999999996) (0.010279880000000005) (0.010008852999999998) (0.010282125999999989) (0.010100040000000005) (0.010282564500000008) (0.010513883000000002) (0.010285621499999995) (0.0104063935) (0.010336066000000005) (0.01045978950000001) (0.010403435000000003) (0.010384821000000016) (0.010260132500000005) (0.010792941499999986) (0.010386351500000002) (0.010415404499999989) (0.010497388999999996) (0.010538393999999993) (0.010611730000000014) (0.010529525999999997) (0.010425456) (0.010341591999999997) (0.010302419499999993) (0.010497429999999988) (0.010288750499999999) (0.010384234000000006) (0.010333721000000004) (0.010469099999999995) (0.010321550499999999) (0.010529735499999998) (0.010714280499999992) (0.010565635500000004) (0.010535788000000004) (0.010585460500000018) (0.010421955499999996) (0.01030254400000001) (0.010470285999999995) (0.010103576000000003) (0.009990390000000016) (0.009964057500000012) (0.010016671000000005) (0.010420290500000012) (0.010075992500000006) (0.010009038499999998) (0.009966298999999998) (0.010440317000000005) (0.010255873499999998) (0.010419698499999991) (0.010233375500000003) (0.010440655000000007) (0.010121836499999995) (0.01002513749999999) (0.010412281499999995) (0.010055327000000017) (0.010106221000000012) (0.010147578500000004) (0.01044353150000002) (0.009965718499999998) (0.010277811999999997) (0.01005407799999998) (0.010097862499999999) (0.010168905499999992) (0.010201325499999997) (0.01020419950000001) (0.010151720500000017) (0.010260297999999987) (0.01035016599999998) (0.0103218365) (0.010365599999999989) (0.010607872500000004) (0.010528506000000007) (0.0103356015) (0.010707228) (0.010398247) (0.010401090500000001) (0.010285860499999994) (0.010493438500000007) (0.010600876000000009) (0.010508565499999997) (0.010922981000000026) (0.010606656499999992) (0.010357674500000011) (0.010554963500000014) (0.010745155499999992) (0.010431062500000005) (0.010439601000000007) (0.010477089499999995) (0.010618788500000004) (0.010390935500000004) (0.010389689999999993) (0.010516604000000013) (0.011033389500000004) (0.010339831499999994) (0.010539647999999999) (0.010537619499999984) (0.010614626000000002) (0.010451969000000005) (0.010388145500000001) (0.010337932499999994) (0.010459073499999985) (0.010427914999999996) (0.00998837100000001) (0.010160498500000004) (0.010135646499999998) (0.010219298500000001) (0.009966473000000003) (0.010209546500000014) (0.01022447750000001) (0.010192076500000008) (0.010085953000000009) (0.010188587499999999) (0.010130184) (0.012258250999999998) (0.010172181000000002) (0.010092061999999999) (0.010092519499999994) (0.010224415) (0.010088442499999989) (0.0101958885) (0.010004488000000006) (0.009961992500000003) (0.010249328500000002) (0.010220863999999996) (0.00995194549999999) (0.010166245000000018) (0.010460767499999996) (0.010102960999999994) (0.010238843999999997) (0.010177512) (0.010439231499999993) (0.010166173) (0.010250065500000016) (0.010213178999999989) (0.010604976000000002) (0.010412202499999995) (0.010429076499999995) (0.010225394000000013) (0.010401780499999999) (0.010494704000000021) (0.010300229499999994) (0.010359656000000009) (0.010609253499999999) (0.010580347000000004) (0.010444508000000005) (0.01031145) (0.010662725499999998) (0.010522298999999999) (0.010581235499999994) (0.010431659999999995) (0.010462151499999989) (0.010513889499999998) (0.010267847499999996) (0.010348157999999996) (0.010671652500000003) (0.010398899999999989) (0.010515126) (0.010342565500000012) (0.010705831499999999) (0.010681635999999994) (0.010614417499999987) (0.010676052000000005) (0.010858575499999995) (0.010934084499999996) (0.010636157999999993) (0.010833434500000003) (0.01009260549999999) (0.009986453500000006) (0.010124103500000009) (0.010205541999999998) (0.010077393500000004) (0.010615563499999994) (0.010366923499999986) (0.010195138500000006) (0.010273125500000008) (0.010245516499999996) (0.010154750500000004) (0.010610072999999998) (0.010419487499999991) (0.010339520000000005) (0.010297257500000004) (0.010347096) (0.010041205499999997) (0.010083505999999992) (0.010198557999999996) (0.010037650500000009) (0.009982972500000006) (0.010264402499999992) (0.010291125999999998) (0.010082160999999992) (0.010172030999999984) (0.010246377000000001) (0.010266729500000002) (0.010158350999999996) (0.010243756000000007) (0.010401744500000004) (0.0103714845) (0.010382783999999992) (0.010541218000000005) (0.010479412499999993) (0.010375503499999994) (0.010392812500000015) (0.010387670500000001) (0.010457361499999998) (0.010473332500000002) (0.010486954500000006) (0.010695889) (0.010555214500000007) (0.010585234000000013) (0.010630718999999997) (0.010493102000000004) (0.010446204) (0.010437620000000009) (0.010466465500000008) (0.010489889500000002) (0.010374691499999991) (0.01027998749999999) (0.010452238499999988) (0.010515781000000002) (0.010497890999999995) (0.010392196000000006) (0.010447022500000014) (0.010723384500000002) (0.010747238999999992) (0.010383387499999994) (0.010396241) (0.010520349999999998) (0.010382126999999991) (0.010755544999999991) (0.0104840665) (0.00993492600000001) (0.010109233999999995) (0.01002961749999999) (0.010169070000000002) (0.01019176749999999) (0.010030508500000007) (0.010324888500000004) (0.01022070550000001) (0.0099481295) (0.010190233500000007) (0.010153793000000008) (0.010354104500000003) (0.010038394000000006) (0.010176855499999998) (0.010308105999999984) (0.01025013000000001) (0.01011793200000001) (0.010070547) (0.010116900499999998) (0.010073188499999997) (0.009854630500000003) (0.010083312999999997) (0.010460126) (0.009944991) (0.010225856500000005) (0.010133250499999996) (0.010288936499999984) (0.010183814499999999) (0.009919308000000002) (0.010437536499999997) (0.010000708499999997) (0.010130557999999998) (0.010306036500000004) (0.0102883525) (0.010400971000000009) (0.01036882) (0.010243150000000006) (0.010338875499999997) (0.0102632) (0.010471092000000001) (0.010320055500000008) (0.010722651) (0.010826299499999983) (0.010534635) (0.010573770499999996) (0.01040875749999999) (0.01055093700000001) (0.010595874500000005) (0.010237072499999986) (0.01051405200000001) (0.010447723500000006) (0.010549969500000006) (0.010404067000000003) (0.010343545999999995) (0.010319488500000001) (0.010274231500000008) (0.010466098000000007) (0.010592668999999999) (0.010450961000000009) (0.010536186499999989) (0.010851975) (0.010751211499999996) (0.010596406500000002) (0.010490386000000004) (0.010194445499999996) (0.010046212999999998) (0.0099531645) (0.010112172000000003) (0.009941605000000006) (0.009934528000000012) (0.010035432499999997) (0.010185775000000008) (0.010326804000000009) (0.010003255500000002) (0.010418369999999996) (0.010336181) (0.010049635000000001) (0.01016453049999999) (0.010207799999999989) (0.010338350499999996) (0.010192119) (0.009951656500000003) (0.010086243499999994) (0.010183800499999993) (0.010040825000000003) (0.010033242499999998) (0.010382689000000014) (0.010014480000000006) (0.010188619499999996) (0.010283866999999988) (0.010336747999999993) (0.010437946500000003) (0.010084325000000005) (0.010347438499999986) (0.010147571000000022) (0.010448416999999988) (0.010413981499999989) (0.010176803000000012) (0.010472992500000014) (0.010453038000000012) (0.010396902999999999) (0.010463193999999995) (0.010502070500000002) (0.0104740485) (0.010470619500000014) (0.010376766999999995) (0.010361291500000008) (0.010464344499999986) (0.01043724800000001) (0.010556869999999996) (0.010414870999999992) (0.010568942499999998) (0.010336881499999992) (0.010219510500000015) (0.010432340999999998) (0.010407743499999997) (0.0102680265) (0.010556593000000003) (0.010558875999999995) (0.010242067500000007) (0.010591259000000006) (0.010502234) (0.010748965) (0.010465818499999988) (0.010565732499999994) (0.010489033000000009) (0.010643162999999997) (0.010792675500000001) (0.01018780150000001) (0.009960507000000007) (0.01024912750000001) (0.010098290999999995) (0.010056238999999995) (0.010042882500000003) (0.010043078499999997) (0.01002088000000001) (0.010096490999999985) (0.010070708999999997) (0.010056912499999987) (0.010514245000000005) (0.010231033499999986) (0.010127531500000009) (0.010016785) (0.010609962) (0.010060962000000007) (0.01017295) (0.010069540999999987) (0.010201227499999993) (0.010172253500000006) (0.009951913999999992) (0.010001382499999989) (0.009998462000000014) (0.010266360000000002) (0.010404147499999988) (0.0103241325) (0.010129641000000009) (0.010393224500000006) (0.010332809000000012) (0.010236486000000003) (0.010296768999999997) (0.01054907749999999) (0.010396158500000002) (0.010491675000000006) (0.01033879750000001) (0.010347192000000005) (0.010338691999999997) (0.010429711500000008) (0.010370882499999998) (0.0106455045) (0.010930093500000002) (0.010455581000000005) (0.010486240000000008) (0.010683987500000006) (0.010349306999999988) (0.010283818) (0.010444815999999996) (0.010588726500000006) (0.010312577500000003) (0.010360760499999996) (0.010915803500000001) (0.010663046499999995) (0.010409545500000006) (0.010593953000000003) (0.010160619499999995) (0.010586922000000012) (0.010895556999999986) (0.010656768499999997) (0.010667964000000002) (0.010628789999999985) (0.010584527999999996) (0.010512607499999993) (0.010667940499999987) (0.010066562999999987) (0.010090658500000002) (0.010145610499999999) (0.010287381499999998) (0.010293702499999988) (0.0102189325) (0.00996536599999999) (0.010011213000000005) (0.01019481899999998) (0.010224604499999998) (0.0101924085) (0.0100267785) (0.010002919999999998) (0.010175244000000014) (0.0103362065) (0.010144750500000008) (0.01030563050000001) (0.009993119000000009) (0.010271572500000006) (0.010246676999999982) (0.01002744600000001) (0.010254124999999989) (0.010367983500000011) (0.010132002000000001) (0.010373031000000005) (0.010297641499999996) (0.010173384999999993) (0.010148167999999999) (0.010255308000000019) (0.010236357500000001) (0.01041047049999999) (0.010400754999999998) (0.010362242999999993) (0.010470722000000002) (0.010313887999999993) (0.010338679500000003) (0.010276938499999999) (0.010466429000000013) (0.010521989999999995) (0.010430666499999991) (0.010543312999999999) (0.010451697999999995) (0.010542382000000003) (0.01057528599999999) (0.010698436500000005) (0.010538898500000005) (0.010522428) (0.0104012505) (0.010340977500000001) (0.010429946500000009) (0.010247363500000009) (0.010415630000000009) (0.010384908500000012) (0.010433868500000013) (0.010558205500000015) (0.010437338500000004) (0.010548778000000009) (0.010767467000000003) (0.010769210999999987) (0.010700164999999998) (0.01082709599999998) (0.010927700999999984) (0.010530811000000001) (0.010607840499999993) (0.010240383500000005) (0.009987839499999998) (0.010046680000000002) (0.010184486999999992) (0.01017477) (0.010153452000000007) (0.01006341899999999) (0.010136840499999994) (0.010055898500000007) (0.010049226499999994) (0.010146841000000004) (0.010130525999999987) (0.010102553499999986) (0.010111866499999997) (0.010063545999999993) (0.010098318999999994) (0.010246583000000004) (0.010226985499999994) (0.010312488999999994) (0.01014000100000001) (0.010230221499999984) (0.009920412500000003) (0.010080785000000009) (0.010160925000000001) (0.010182258) (0.010251053499999982) (0.010169515000000004) (0.010105320499999987) (0.010064857499999996) (0.010282065500000007) (0.010134565499999998) (0.010014405500000004) (0.010348653999999999) (0.010319244500000005) (0.010373409500000014) (0.010742226500000007) (0.010332612500000005) (0.010216444500000005) (0.010385663500000003) (0.010433708499999986) (0.010439057000000002) (0.010641810499999987) (0.010535415499999992) (0.010413053999999991) (0.01035157199999999) (0.010481829500000012) (0.010739060500000008) (0.010380796999999997) (0.010440217000000002) (0.010498885) (0.01038484449999999) (0.010615233499999988) (0.010425012000000011) (0.010505294500000012) (0.01022463500000001) (0.010294741499999996) (0.010491186) (0.010577214500000015) (0.01064504749999999) (0.010294666999999993) (0.010487849999999993) (0.010488649500000002) (0.010551498500000006) (0.010448063999999993) (0.010349244999999993) (0.010261658499999993) (0.010005108999999998) (0.01006908649999999) (0.010160448000000016) (0.010023574500000007) (0.009928385999999997) (0.010342498000000006) (0.010252891) (0.010274573999999995) (0.010388968499999998) (0.010177233499999994) (0.010024275499999985) (0.010157362499999989) (0.010152419999999995) (0.010297147500000006) (0.010151223999999986) (0.010118110999999999) (0.010357482500000015) (0.010128431499999993) (0.010259906500000013) (0.010024160000000004) (0.010392850500000009) (0.010312324000000012) (0.010303946000000008) (0.010104412500000007) (0.010066539499999999) (0.009981200499999995) (0.010323594000000005) (0.010167676000000014) (0.010357011) (0.010181671999999989) (0.010308734) (0.010413341999999992) (0.010331642500000002) (0.010533077500000002) (0.010188342000000003) (0.010514289499999996) (0.010303520999999996) (0.010281411000000004) (0.010604086499999998) (0.010511402500000003) (0.010355368500000003) (0.010776533500000005) (0.010415993499999998) (0.010607289499999992) (0.010295767499999997) (0.010453893500000006) (0.010398000500000018) (0.010464839000000004) (0.01048234100000002) (0.010303393499999994) (0.010519161999999999) (0.010237266500000008) (0.010351029500000011) (0.010178580499999992) (0.010943367999999995) (0.010709321999999993) (0.010669702999999989) (0.010546328499999993) (0.010707465499999999) (0.010815666000000002) (0.010575692999999997) (0.010436423) (0.010117499500000002) (0.009909562499999996) (0.01006394799999999) (0.009995355999999997) (0.009958417999999997) (0.010394243499999997) (0.010077285500000005) (0.010204664000000002) (0.010373537500000002) (0.010150876499999989) (0.010348225000000003) (0.010218719500000015) (0.010147101999999991) (0.010423631500000002) (0.010203527500000004) (0.010221063000000016) (0.009956769500000004) (0.010092673499999996) (0.01009612) (0.010140815999999997) (0.010000766999999994) (0.010409928500000012) (0.010055867999999996) (0.010271767000000001) (0.010495815999999991) (0.010257236000000003) (0.010410932000000012) (0.010159025000000002) (0.010092426000000002) (0.010037681000000007) (0.0101566285) (0.010066626000000009) (0.010233597999999997) (0.010469820000000005) (0.010238437500000003) (0.010411561) (0.010368215500000014) (0.010540859999999999) (0.010343204499999994) (0.010292548499999998) (0.010418351000000006) (0.01030804149999999) (0.010703596999999995) (0.010577467000000007) (0.010346157999999994) (0.01033813800000001) (0.010501596000000016) (0.010548622499999993) (0.010466130000000004) (0.010564257999999993) (0.010569129999999996) (0.010402199) (0.0104481835) (0.010568263499999994) (0.010437630000000003) (0.01031331499999999) (0.010380507499999983) (0.01058496149999999) (0.010437377000000012) (0.010330724999999999) (0.010378562000000022) (0.010487982500000007) (0.010549075500000019) (0.010510190500000002) (0.010084961500000003) (0.010041825000000018) (0.010251402999999992) (0.010151025500000008) (0.010135719500000001) (0.010550477000000003) (0.0100965695) (0.01017211400000001) (0.010313257000000006) (0.01026426250000001) (0.010073785000000002) (0.010296840000000002) (0.010801629000000007) (0.010106761499999992) (0.010404289999999997) (0.010209251500000002) (0.010293583999999995) (0.010785741000000015) (0.010190618500000012) (0.010267560499999995) (0.010322113000000008) (0.009960610000000009) (0.010345438500000012) (0.010111888999999999) (0.01141019700000001) (0.010238701000000017) (0.010165762500000008) (0.010319536000000004) (0.010345960000000015) (0.010315406) (0.010171056999999997) (0.010142209) (0.010380236000000001) (0.01046093649999999) (0.0103593575) (0.010783294999999998) (0.010355830499999996) (0.010398132000000004) (0.010597259999999997) (0.010751310500000014) (0.010410958499999998) (0.010528048999999998) (0.010563972500000018) (0.010770975500000002) (0.010609994999999997) (0.01049844200000001) (0.010701022000000004) (0.010373630000000009) (0.010573042000000005) (0.010373097499999998) (0.010394910000000021) (0.010671456999999995) (0.010416306) (0.0108952155) (0.010641965999999989) (0.010387730499999984) (0.010604173500000008) (0.010493112999999998) (0.010562903499999998) (0.010539853000000016) (0.010347257999999998) (0.010571233500000013) (0.010455698999999999) (0.010571208499999998) (0.01019901400000002) (0.009885019999999994) (0.010046407000000007) (0.010149376500000001) (0.009893056999999997) (0.010097506500000006) (0.010117310500000004) (0.00990808750000001) (0.01016579749999999) (0.009938324499999998) (0.010180151499999998) (0.010054686500000007) (0.010262848999999977) (0.010302049500000007) (0.010209548999999998) (0.010253729500000003) (0.010079811499999994) (0.01004252) (0.0101144965) (0.010294813) (0.009975317999999997) (0.010614415500000002) (0.010047878499999996) (0.01014698) (0.010020298999999983) (0.010355211499999989) (0.010486812499999998) (0.010116083500000012) (0.010061337500000003) (0.010150556000000005) (0.01040308849999999) (0.01014089800000001) (0.010232973000000006) (0.010481024999999991) (0.010654292499999996) (0.010559238499999984) (0.010413659000000006) (0.010487702000000015) (0.010268052) (0.010331142000000015) (0.010339130999999988) (0.010396792999999988) (0.010594549000000009) (0.01044183650000001) (0.010604658499999989) (0.010559712499999999) (0.010566727999999997) (0.010488567000000004) (0.010556727000000002) (0.010317229000000011) (0.010407580000000013) (0.010524301499999986) (0.010236271000000005) (0.01060625350000001) (0.01051068849999999) (0.010495396000000004) (0.010427664499999989) (0.010307869500000011) (0.010676339499999993) (0.010578912999999995) (0.010560929999999996) (0.010628261999999986) (0.010559011500000007) (0.010551031499999988) (0.0102439525) (0.010029319499999995) (0.010101820500000011) (0.010028549000000012) (0.010289678499999982) (0.010301891999999993) (0.010054011500000001) (0.010224912000000017) (0.010132829499999996) (0.010184886500000004) (0.010190692000000001) (0.010042199500000001) (0.010343843000000005) (0.010383816500000004) (0.010282442000000003) (0.010317243500000003) (0.010475491500000003) (0.010037037999999998) (0.010060288499999986) (0.010055595999999986) (0.010134938499999996) (0.010067027500000006) (0.010392735500000014) (0.010163806499999983) (0.010175395500000003) (0.010399151999999995) (0.010430930000000005) (0.010227961499999993) (0.010486205000000012) (0.010167944999999998) (0.010210922499999997) (0.010382929000000013) (0.010353754000000007) (0.010320956500000006) (0.010641237499999998) (0.010375086000000006) (0.010308530999999996) (0.010443171999999987) (0.0104117185) (0.01047743050000001) (0.010334111500000007) (0.010406028999999997) (0.0104777665) (0.0105674875) (0.010655105999999998) (0.010369192999999999) (0.010590377000000012) (0.010480511499999998) (0.010516976000000011) (0.010343384499999997) (0.010633238000000003) (0.010457558500000005) (0.010334216999999993) (0.0103213615) (0.010458214500000007) (0.01056350049999999) (0.010639054000000009) (0.010558058499999995) (0.01053493300000001) (0.01054074699999999) (0.010718072999999995) (0.010512688000000006) (0.010606472499999992) (0.010545252000000005) (0.009994416000000006) (0.010107840000000007) (0.010306735000000011) (0.010154364999999999) (0.010255039500000007) (0.010163530500000004) (0.010044862500000001) (0.010033209000000001) (0.0101779865) (0.01015851999999999) (0.010275079999999992) (0.010349049999999999) (0.010180156999999995) (0.010367669999999982) (0.01022350000000001) (0.010290686000000007) (0.010214193499999996) (0.010142996000000001) (0.010038802) (0.010179903000000004) (0.010155121000000003) (0.01037296800000001) (0.010290070499999998) (0.010389505499999993) (0.010321009499999992) (0.010208939500000014) (0.010489046000000002) (0.010249669000000003) (0.0101570505) (0.010144873999999998) (0.010234179999999996) (0.010050332999999995) (0.01043893700000001) (0.010469329) (0.010433741999999996) (0.010415532000000005) (0.010354990999999994) (0.010435708500000002) (0.010556186499999995) (0.010355068999999995) (0.010370626499999994) (0.010541868999999995) (0.01059243700000001) (0.01056164100000001) (0.010407462500000006) (0.010615854500000008) (0.010378010500000007) (0.010548059499999998) (0.010439487499999997) (0.01081264400000001) (0.010347749999999989) (0.010348883000000003) (0.010498739000000007) (0.010563221499999997) (0.010377479500000009) (0.010387353499999988) (0.010896899000000002) (0.010491045000000004) (0.010534541499999994) (0.010574416000000003) (0.010537194999999985) (0.010948451500000012) (0.010346996499999997) (0.010686869000000015) (0.010301493000000009) (0.010147846000000002) (0.010339402999999997) (0.01016848549999999) (0.010139467499999999) (0.010222909000000002) (0.010134418999999992) (0.010671080999999999) (0.010301644999999998) (0.010164121999999998) (0.010236918499999997) (0.010257102500000004) (0.010302411499999997) (0.0102218595) (0.010103686000000014) (0.010153001999999994) (0.009937088499999996) (0.010079741500000003) (0.010208485500000017) (0.010000464) (0.01053186149999999) (0.010166004999999992) (0.010374357) (0.010130057999999983) (0.010303766000000006) (0.010389874500000007) (0.010504283500000003) (0.01033693699999999) (0.010438102500000004) (0.010198703500000017) (0.010170193500000008) (0.010154375499999993) (0.01033726950000001) (0.010409361000000006) (0.010684495500000002) (0.010677447999999992) (0.010418581499999982) (0.010440060000000001) (0.010325233500000003) (0.010423950500000015) (0.010758258000000007) (0.010601189499999997) (0.010569179499999998) (0.010587461999999992) (0.010572682000000014) (0.010821840499999999) (0.010731905500000014) (0.010465648000000008) (0.010738679000000001) (0.010474572000000001) (0.010444722500000003) (0.010624044) (0.010329206499999993) (0.010365185499999999) (0.010242502999999986) (0.010659032499999999) (0.010838865000000017) (0.010711146000000005) (0.01068035399999999) (0.011030791499999998) (0.010534394000000016) (0.0106378835) (0.010697081000000011) (0.010954933499999986) (0.01028009399999999) (0.010066185000000005) (0.010159273999999996) (0.010074213499999984) (0.010134672499999997) (0.010371419000000007) (0.010028340999999996) (0.010240534499999995) (0.010058600000000001) (0.010407423499999999) (0.010168790999999996) (0.010361619500000002) (0.010163341000000006) (0.010328136000000002) (0.010138783499999998) (0.010112682499999998) (0.010035737999999989) (0.010139831500000002) (0.010000740499999994) (0.009967212000000003) (0.010136265999999991) (0.010124759499999997) (0.010100607999999997) (0.009969203499999996) (0.010239802000000006) (0.01022429300000001) (0.009985671500000001) (0.009961460999999991) (0.010563306999999994) (0.010158097500000005) (0.010203324499999986) (0.010122317500000005) (0.010656738999999998) (0.010535790499999989) (0.010409857500000008) (0.01077242199999999) (0.010253846999999996) (0.010303018499999997) (0.010246670999999999) (0.010475923499999998) (0.010422592499999994) (0.0108365755) (0.010522681000000006) (0.010262320000000005) (0.010517390500000001) (0.010344619) (0.010874776000000003) (0.010477534999999996) (0.010311649999999992) (0.010202747999999998) (0.010374473499999995) (0.010284487500000009) (0.010570939000000015) (0.010395111000000012) (0.010388636000000007) (0.010581872999999992) (0.0105406215) (0.010556335000000014) (0.010666275500000003) (0.010404716500000008) (0.01077143550000001) (0.010531095500000004) (0.01072195699999999) (0.010495078500000005) (0.010243957999999997) (0.010146546499999992) (0.01002441200000001) (0.010603952000000014) (0.010033871500000013) (0.010248902000000004) (0.010171286500000015) (0.01006349699999999) (0.010260809999999995) (0.010182479500000022) (0.01045188250000001) (0.010331315500000007) (0.010013797500000005) (0.010175125500000007) (0.009978745499999997) (0.010443338999999996) (0.010276042499999999) (0.010073594500000005) (0.010047400999999997) (0.010224083500000009) (0.010171608500000012) (0.009960567999999989) (0.010187370500000001) (0.009968352000000014) (0.010053632000000007) (0.010151305499999999) (0.010115202500000003) (0.01020663899999999) (0.010194981500000005) (0.010143185999999998) (0.00999721349999999) (0.010250852000000005) (0.010520321999999985) (0.010408802500000008) (0.010359214499999991) (0.010333587499999991) (0.010254632000000014) (0.010423148999999993) (0.010361784999999998) (0.010263117000000016) (0.01042767700000001) (0.010463581) (0.010588708999999988) (0.010911360000000009) (0.010403944999999998) (0.010661335500000008) (0.010380564499999995) (0.010461260499999986) (0.010351439000000004) (0.01022176200000001) (0.010591720499999999) (0.010343071500000009) (0.010507828999999996) (0.010327720499999998) (0.010703500000000019) (0.01081473600000002) (0.01061746899999999) (0.010556580999999995) (0.010447328000000006) (0.010462697500000007) (0.010655863000000002) (0.010427905500000001) (0.010465682000000004) (0.010564229499999994) (0.010101337500000002) (0.010306662500000008) (0.009952126000000006) (0.01009012450000002) (0.010123207499999995) (0.010068540999999986) (0.010020197499999994) (0.010408926999999998) (0.010062131000000002) (0.0102903035) (0.010324642999999994) (0.010373808999999984) (0.01023054800000002) (0.010158870000000014) (0.01022244450000001) (0.010241083999999998) (0.010052671) (0.010268619999999992) (0.01030135850000001) (0.009988595999999988) (0.01000997649999999) (0.009964236500000001) (0.010357724499999998) (0.010099795000000009) (0.010319995999999998) (0.010154738499999996) (0.010135315499999992) (0.010122024500000007) (0.010441383499999998) (0.010351400999999996) (0.010301791500000004) (0.01022045050000002) (0.010413191500000002) (0.010311487999999994) (0.010347136999999992) (0.010505648500000006) (0.010660619499999996) (0.010295517000000004) (0.010351241499999997) (0.01056325100000001) (0.0104855705) (0.010444031499999992) (0.010625902499999992) (0.010528933000000004) (0.010900388499999983) (0.010414878500000002) (0.010603164999999998) (0.010440539000000013) (0.010486930500000005) (0.010526007000000004) (0.010414152499999996) (0.010421636999999997) (0.010698448000000013) (0.010429788999999995) (0.010357669) (0.010465886499999993) (0.010674481999999999) (0.010582733999999996) (0.010713445000000016) (0.010394916500000004) (0.010544474000000012) (0.010505537500000009) (0.010533102500000016) (0.010492228499999992) (0.009944520499999998) (0.010037550999999992) (0.010135483500000014) (0.010156654000000001) (0.00998789) (0.00997408000000001) (0.010104837499999991) (0.010317085000000004) (0.010484710999999994) (0.010131252999999993) (0.0102788365) (0.010107692000000001) (0.010388331) (0.010481450500000003) (0.010103180499999989) (0.01048371549999999) (0.010107020500000008) (0.010270215499999985) (0.010026958499999988) (0.01030286050000001) (0.010018297500000009) (0.010355798) (0.009937063499999982) (0.010237769500000007) (0.010180123499999999) (0.010377325500000006) (0.010380804500000007) (0.010016230000000001) (0.010281236499999999) (0.01027831650000001) (0.010139335499999985) (0.010273807499999996) (0.01039263700000001) (0.010394534999999996) (0.010353902499999998) (0.010374117500000002) (0.010421013999999992) (0.010375884000000002) (0.010252571500000002) (0.01038365799999999) (0.010381994999999991) (0.010516086000000008) (0.010643628000000002) (0.010414904500000002) (0.010384048500000007) (0.010528024999999996) (0.010515595999999988) (0.010482938999999997) (0.010401020999999996) (0.010585972000000013) (0.010521946500000004) (0.010395529499999986) (0.010319015) (0.010676575999999993) (0.010526105500000008) (0.010465096000000007) (0.010722113000000005) (0.010578802999999998) (0.01050412399999999) (0.010473069500000001) (0.01053076850000001) (0.01070504550000001) (0.0105274925) (0.010617507500000012) (0.010026108500000006) (0.009956717000000004) (0.010127560500000007) (0.010158592499999994) (0.010129299999999994) (0.010115698999999992) (0.009987119000000003) (0.010153077999999996) (0.0100594455) (0.0103432715) (0.010082240500000006) (0.01025131700000001) (0.010063766500000002) (0.010137580999999979) (0.0101882935) (0.009935360500000004) (0.01014203200000001) (0.009898283000000008) (0.009982287999999992) (0.010226417999999987) (0.010003746999999993) (0.010129196000000007) (0.010028887) (0.010018527499999999) (0.010059430499999994) (0.010364336500000002) (0.010066743500000017) (0.010278909000000017) (0.010361305500000001) (0.010187529999999986) (0.0102267095) (0.010144803000000008) (0.010602742999999998) (0.010510054500000005) (0.0102642005) (0.010357247500000014) (0.010292410000000002) (0.01030309750000001) (0.010420681000000001) (0.01023618250000001) (0.010378956500000008) (0.0104798755) (0.010248125999999996) (0.010508185500000017) (0.010610138000000005) (0.010437522500000004) (0.010522058) (0.010386256999999982) (0.010203679500000007) (0.0105548585) (0.010375830000000003) (0.010417480999999992) (0.010471471499999996) (0.010181058500000006) (0.010474672000000004) (0.010498688000000006) (0.010351326500000008) (0.010486118000000003) (0.010633113500000013) (0.010754733500000002) (0.0105302315) (0.010382703000000007) (0.010618442000000006) (0.010550370500000003) (0.010151808500000012) (0.010306038500000003) (0.009987388499999986) (0.010062032999999998) (0.010071856500000004) (0.01034011800000001) (0.010045422999999998) (0.010118825499999998) (0.010135321999999988) (0.010030907500000005) (0.010402599999999984) (0.010014556500000008) (0.009995294500000002) (0.010166005000000006) (0.010127411500000003) (0.010176351500000014) (0.010079125999999994) (0.00992341599999999) (0.01007739249999999) (0.010190610000000003) (0.01014709250000001) (0.009992014999999979) (0.010081043499999998) (0.010137456000000003) (0.01022168250000001) (0.010155658499999998) (0.010401694000000003) (0.0103587235) (0.010163874999999989) (0.010104552499999989) (0.010307568500000003) (0.010303455000000003) (0.010670479999999996) (0.010327822) (0.010644956499999997) (0.01033645050000001) (0.010215712000000002) (0.010300312499999992) (0.01038884050000001) (0.010512800500000002) (0.010683642000000007) (0.010518226999999991) (0.010632055999999987) (0.010709668999999991) (0.010834348500000007) (0.010550759500000007) (0.010596866999999996) (0.0104111645) (0.010438318999999988) (0.010311929000000011) (0.010362936000000003) (0.010390398499999995) (0.010688747999999998) (0.01041119850000001) (0.010371607000000019) (0.010310713999999999) (0.010538886500000011) (0.010379943500000016) (0.010661642999999998) (0.010553943999999996) (0.01047118250000001) (0.010369562999999998) (0.01066384400000002) (0.010637818499999993) (0.009962116000000007) (0.010064091499999997) (0.010295784500000002) (0.010216282000000007) (0.010130902499999997) (0.009890043999999987) (0.01020342299999999) (0.009993623500000007) (0.0099858045) (0.010110670000000016) (0.010330734499999994) (0.010182096500000001) (0.010118617499999996) (0.010444320500000007) (0.010219611000000003) (0.010192802500000014) (0.010194277500000001) (0.010313653999999992) (0.009960373499999994) (0.009970271499999989) (0.010044615000000007) (0.010047953999999998) (0.010135573499999995) (0.01017960050000001) (0.010179941500000012) (0.011342858500000011) (0.010072767999999996) (0.010316106000000005) (0.010399754499999997) (0.010433089499999992) (0.010305041000000015) (0.009978929499999997) (0.010304826499999989) (0.010469413999999982) (0.010310668499999995) (0.010611050499999997) (0.010538885000000012) (0.010460707000000014) (0.010660373) (0.010220142500000001) (0.011072353500000007) (0.01044601449999999) (0.010316515499999998) (0.010589147999999993) (0.010621383500000012) (0.010770393000000003) (0.010499034500000004) (0.010524262500000006) (0.010621295999999988) (0.010595955500000004) (0.010484234000000009) (0.010310692999999996) (0.010525583500000005) (0.01044445899999999) (0.010464816500000002) (0.010246297000000001) (0.010522056500000002) (0.01046490450000001) (0.010517518500000003) (0.010416696000000003) (0.010515544500000001) (0.010565527000000019) (0.010572403999999994) (0.010624078499999995) (0.010140610499999994) (0.010314348000000015) (0.010205030000000004) (0.010040854000000002) (0.010210943) (0.010154443000000013) (0.010101421500000013) (0.015107281499999986) (0.010344572499999996) (0.010078333000000009) (0.010102677500000004) (0.010007608500000015) (0.010288828) (0.010322102000000014) (0.010116723499999994) (0.0100012555) (0.010364988499999991) (0.010174415999999992) (0.009957544499999998) (0.010292708999999997) (0.010356337500000007) (0.010251316999999996) (0.010308146000000004) (0.010151066999999986) (0.010128589500000007) (0.010259923500000004) (0.010072051999999998) (0.010333750499999989) (0.010319716000000007) (0.010377533999999994) (0.010407038000000007) (0.010498911) (0.010451257500000005) (0.010398152499999994) (0.010451035499999997) (0.010333002500000008) (0.01037574849999999) (0.010318188000000006) (0.010979614000000013) (0.010664296000000004) (0.010922176500000005) (0.010472906000000018) (0.010639713999999995) (0.010333770500000006) (0.010589683000000016) (0.010641034499999993) (0.01044805900000001) (0.01064778050000001) (0.010484281499999998) (0.01039253150000001) (0.010397647999999995) (0.010380417500000003) (0.010481666000000014) (0.010483423500000005) (0.010434995499999988) (0.01041674699999999) (0.01054240749999999) (0.010578564999999998) (0.010644375999999997) (0.010533539499999994) (0.010608990499999998) (0.01059976550000001) (0.010213587999999996) (0.010686722999999995) (0.0100995205) (0.010284983999999997) (0.010519235500000002) (0.010076136999999999) (0.009942191000000003) (0.01003751550000001) (0.010064694999999985) (0.009961086999999993) (0.010058321500000009) (0.010385945500000007) (0.010242681000000003) (0.010348374500000007) (0.010142951000000011) (0.010103340500000002) (0.0101073005) (0.010181405000000004) (0.010028045000000013) (0.010007971000000004) (0.010024865999999993) (0.010034686000000001) (0.0099713845) (0.010054506000000019) (0.009959600499999999) (0.010222753499999987) (0.010094912499999997) (0.010136952500000004) (0.010204730499999995) (0.010166080999999993) (0.010154135000000009) (0.010131055) (0.010148908499999998) (0.010202568500000009) (0.010971627500000011) (0.01039767200000001) (0.010397953000000001) (0.010528173000000002) (0.010429274000000002) (0.010232011000000013) (0.010231535) (0.010638361499999999) (0.010540568) (0.010574292999999998) (0.010251842999999997) (0.011491610500000013) (0.010497362499999996) (0.0106019475) (0.010535992999999994) (0.010788310999999995) (0.010384791000000018) (0.0103649715) (0.010442466499999997) (0.01042133349999999) (0.010381505) (0.010167211499999995) (0.010391042500000003) (0.01044704049999999) (0.010707737999999994) (0.010364379000000007) (0.010487771499999993) (0.010507938999999994) (0.010393627000000003) (0.010359108000000006) (0.01057707699999999) (0.010526389000000011) (0.010129422999999999) (0.010150253999999997) (0.010052686499999991) (0.010205802) (0.010045810499999988) (0.010132929000000013) (0.0099821685) (0.010077243499999985) (0.0100524055) (0.010127761999999998) (0.010180290999999994) (0.01002832300000002) (0.010255639999999996) (0.010125725500000016) (0.010203471000000006) (0.010138654999999996) (0.009915086000000004) (0.01031729649999999) (0.0099507115) (0.010112051999999996) (0.010196480500000007) (0.010084451000000008) (0.010155573500000015) (0.009956327999999987) (0.010200619999999994) (0.010153687499999994) (0.010085853499999992) (0.010081924500000006) (0.009999000999999993) (0.010322164499999995) (0.010020946500000003) (0.010139265000000008) (0.010389615500000005) (0.010327798999999999) (0.010693055999999992) (0.010232672499999998) (0.010377058500000008) (0.010340089499999996) (0.010368936500000009) (0.0103702705) (0.010415024000000009) (0.010393299500000008) (0.010714859000000021) (0.01035816199999999) (0.010377459000000006) (0.010859167500000003) (0.01039453550000001) (0.01045799750000001) (0.010517958500000008) (0.010430413) (0.010331058000000004) (0.010338593499999993) (0.010324571000000018) (0.01020914149999999) (0.010390298499999992) (0.010443234499999995) (0.01048563949999999) (0.010517838000000002) (0.010435320499999998) (0.010512536000000003) (0.010448637499999996) (0.010505622000000006) (0.0106223545) (0.010414802) (0.01013811299999999) (0.010245427500000001) (0.010053697) (0.010159982499999998) (0.010082296500000004) (0.01015192799999999) (0.010231423500000017) (0.010209997999999998) (0.010211650000000003) (0.010205851499999988) (0.010272530000000002) (0.010265035999999991) (0.010233359999999997) (0.010210522500000013) (0.010099355000000004) (0.010240589000000008) (0.010192390499999995) (0.01015932750000001) (0.010116924499999985) (0.010160389000000006) (0.01007722250000001) (0.010282942000000017) (0.010175089999999984) (0.010101633500000012) (0.010156048) (0.010144198999999993) (0.010217633000000004) (0.010147639) (0.010569286999999997) (0.010118835499999992) (0.010271150500000006) (0.010195822500000007) (0.010331422000000007) (0.010360046500000011) (0.01046243550000002) (0.01026108000000002) (0.010627828999999991) (0.010602645999999993) (0.010856941999999994) (0.010364546999999988) (0.010830915999999996) (0.010576447000000003) (0.010519519500000019) (0.010539935000000014) (0.01036831249999999) (0.010659210500000016) (0.01042294399999999) (0.010605587999999999) (0.010554065000000001) (0.010393500000000014) (0.010550283999999993) (0.010406271000000009) (0.010152150500000012) (0.010432421999999997) (0.010530837500000001) (0.01049186449999999) (0.010589853999999996) (0.010799914499999994) (0.01055275650000001) (0.010606483) (0.010331011499999987) (0.01051501199999999) (0.010432759) (0.01068064199999999) (0.0101753215) (0.010328217) (0.010049379000000011) (0.010259969000000008) (0.010258413500000008) (0.010195300500000004) (0.010034788500000003) (0.010040275000000001) (0.01047483099999999) (0.010515701000000002) (0.010169637999999995) (0.010135073000000008) (0.010256302999999994) (0.009985381500000001) (0.010286550500000005) (0.010134615999999985) (0.010155378000000007) (0.01040250899999999) (0.009947128999999999) (0.010072323999999994) (0.010169853500000006) (0.01011218550000001) (0.010270168999999996) (0.010006045000000005) (0.010214948500000015) (0.01044851899999999) (0.010236857500000002) (0.010163037500000013) (0.010221404500000003) (0.010458235999999996) (0.010260664500000002) (0.010251089500000005) (0.010626871999999996) (0.010246353500000013) (0.01056758499999999) (0.010366409999999993) (0.010422394000000015) (0.010337380999999993) (0.01033353200000002) (0.010453824000000014) (0.0106631445) (0.010669411000000004) (0.010464546500000019) (0.010352574500000003) (0.010491514499999993) (0.010591721999999998) (0.010524137500000003) (0.010272665999999986) (0.01081393) (0.0105533045) (0.010229069499999993) (0.010285416000000006) (0.010560959499999995) (0.010540193499999989) (0.010437878999999997) (0.010411319500000002) (0.010986140499999991) (0.010726154000000002) (0.011047060499999997) (0.010530287499999999) (0.01054403750000002) (0.010702553000000004) (0.010561146999999993) (0.0105652475) (0.010146846999999987) (0.009988165999999993) (0.010096952999999992) (0.0100741315) (0.010193972999999995) (0.010069366499999996) (0.009952590999999997) (0.010060718499999996) (0.010112629500000012) (0.010129970500000002) (0.010063494500000006) (0.010123004500000019) (0.010309666999999995) (0.010180515000000001) (0.010092701999999981) (0.010018303000000006) (0.010069554499999994) (0.010041494500000012) (0.010089777999999994) (0.010234081999999992) (0.010190568999999997) (0.010068343999999993) (0.010108145999999998) (0.01028939899999999) (0.010151576500000009) (0.010120089499999999) (0.010118513499999995) (0.010129219499999995) (0.010113154) (0.010238258) (0.010212263499999999) (0.010111019499999999) (0.010601192999999995) (0.010238507999999993) (0.010458777000000002) (0.0105385905) (0.010411714500000002) (0.010303284499999982) (0.010422375999999997) (0.010381946000000003) (0.010637339499999995) (0.010298546500000005) (0.010423114000000011) (0.010722152999999998) (0.010554702000000013) (0.010462880000000008) (0.010465192999999998) (0.010338879499999995) (0.010400831499999999) (0.010239946499999986) (0.010565751000000012) (0.010700053000000001) (0.010683322000000009) (0.010301496500000007) (0.01059935100000002) (0.01030259950000001) (0.010464211000000001) (0.010746039999999998) (0.010432786999999999) (0.010803955000000004) (0.010522273999999998) (0.010459244500000006) (0.010495082500000003) (0.010461574000000001) (0.009984963000000013) (0.010009929) (0.010075593999999993) (0.010186477999999999) (0.010102087499999995) (0.009931395999999995) (0.010379064999999993) (0.01007595650000001) (0.010282276000000007) (0.01005866100000001) (0.010218963500000011) (0.010220789000000008) (0.010299244999999999) (0.0100478165) (0.010249168500000003) (0.0102979225) (0.009951263000000002) (0.009974252999999988) (0.010179833999999999) (0.010257902499999999) (0.010024250499999998) (0.010099454000000008) (0.01013124800000001) (0.010362383500000016) (0.010116452999999984) (0.010142752000000005) (0.009984044000000011) (0.01022866900000001) (0.010189610500000015) (0.010364725500000005) (0.010448854000000007) (0.010238090500000005) (0.010503987500000006) (0.010305043000000014) (0.010360579500000008) (0.010460962500000004) (0.010364140500000008) (0.010459892999999984) (0.010316494999999995) (0.010632086999999985) (0.010511843500000007) (0.010449962499999993) (0.01048484550000002) (0.0104140905) (0.010464303500000008) (0.010325825499999997) (0.010590529000000001) (0.010632021500000005) (0.010468691500000016) (0.010415579999999994) (0.01059073549999999) (0.01065326450000001) (0.010428781499999998) (0.010480257500000006) (0.010233931500000001) (0.010260628500000007) (0.010359726999999999) (0.010543834000000016) (0.010556392500000011) (0.010802550000000008) (0.010514399999999993) (0.010565508500000001) (0.01051348199999999) (0.01049470050000001) (0.009959723000000004) (0.010117584499999999) (0.01022190299999999) (0.0100088505) (0.009931620000000002) (0.010016981499999994) (0.010211255500000002) (0.010027594499999987) (0.010270685500000001) (0.01045528300000001) (0.010129010499999994) (0.010137842000000008) (0.010192512499999987) (0.010315967999999995) (0.01046606) (0.01023589350000001) (0.010238857500000004) (0.010100269499999995) (0.010130956499999996) (0.010146058999999999) (0.009962140499999994) (0.009949492500000004) (0.01010863799999999) (0.009959379000000004) (0.010277829500000002) (0.010000425500000007) (0.010261289999999992) (0.010030174500000003) (0.010138870500000022) (0.010222176500000013) (0.010285546499999992) (0.010294852500000007) (0.010467676499999995) (0.010333535000000005) (0.010415700999999986) (0.010652996500000012) (0.010537361000000009) (0.010469538999999986) (0.010532428499999982) (0.010339267) (0.010661027000000003) (0.01064255700000001) (0.010549580499999989) (0.010574707500000002) (0.010474832500000003) (0.010481767000000003) (0.010601362999999989) (0.010401842999999994) (0.010503600500000002) (0.010599126499999986) (0.010386278499999999) (0.010263193000000004) (0.010614988999999991) (0.010492994500000005) (0.010389507000000006) (0.01054129899999999) (0.010588034499999996) (0.0107812625) (0.010525680499999995) (0.010520831500000008) (0.010676976000000005) (0.010527663499999992) (0.010769612000000012) (0.010804037500000002) (0.0101375395) (0.010141849000000008) (0.009990903499999995) (0.0100532235) (0.010174758999999992) (0.01006964299999999) (0.010399795000000003) (0.010325201499999992) (0.0102883255) (0.010474902500000008) (0.01062145149999999) (0.010497672000000013) (0.010341040999999995) (0.010553843499999993) (0.0104391385) (0.010131334999999991) (0.010379311500000016) (0.010199330999999992) (0.010068889499999997) (0.010172816000000001) (0.010110858) (0.010099799000000007) (0.010145818000000001) (0.01029419799999999) (0.010166245000000004) (0.010121418999999993) (0.010180111500000005) (0.010455319500000004) (0.0106361175) (0.010152101499999996) (0.010242578999999988) (0.010244252999999995) (0.01042018950000001) (0.010333684999999995) (0.010368128500000018) (0.010369979500000001) (0.010295937500000005) (0.010299741500000015) (0.010439556500000002) (0.010215290500000002) (0.010452160500000002) (0.010829057000000003) (0.010555686499999994) (0.010623919999999981) (0.010498323500000004) (0.010917810000000014) (0.01053501400000001) (0.010505355499999994) (0.010849443) (0.010535834499999994) (0.010374144500000002) (0.010385232500000008) (0.010535186500000002) (0.010590054000000002) (0.010432924999999996) (0.010309233000000001) (0.010666437999999986) (0.010568307999999998) (0.010423695999999996) (0.010611863499999999) (0.010571130499999998) (0.010647231000000007) (0.010393724499999993) (0.010586307500000003) (0.010013680000000011) (0.010129642499999994) (0.00998714199999999) (0.010084086500000006) (0.010287459499999985) (0.010307610000000009) (0.010117548000000004) (0.010031032999999995) (0.0100673535) (0.010137070499999998) (0.010166390500000011) (0.010196400500000008) (0.010103328000000009) (0.010172402499999997) (0.010201903000000012) (0.010163818000000005) (0.010091816000000003) (0.010050508000000014) (0.010018381999999992) (0.009949024) (0.010136823500000003) (0.009969195) (0.010266357000000018) (0.010061457999999995) (0.010217249000000012) (0.010209024499999997) (0.010408583999999999) (0.010153323500000005) (0.010620796500000015) (0.0103850895) (0.010459373000000008) (0.010390873000000009) (0.010377230500000001) (0.010421264) (0.010439773) (0.010584221000000005) (0.010318719000000004) (0.010264398499999994) (0.010471868499999995) (0.010342985500000013) (0.010483781499999997) (0.010492091000000009) (0.010301672500000011) (0.010388369999999994) (0.010486122) (0.010400896499999993) (0.010438534499999999) (0.010462105500000013) (0.010329999499999992) (0.010348552999999983) (0.010378286) (0.010425599500000007) (0.010520331500000007) (0.010268517000000019) (0.0101760335) (0.010313775999999997) (0.010419927499999995) (0.01056645099999999) (0.010539761000000009) (0.010570034999999992) (0.01075725000000001) (0.010428225999999999) (0.010543490500000002) (0.010541047999999997) (0.009997631500000007) (0.010072722999999992) (0.010250461499999988) (0.009954721) (0.010107537000000014) (0.010326260000000004) (0.01015141) (0.010093507500000001) (0.010125074499999998) (0.010430166000000005) (0.010126724500000003) (0.01006809950000001) (0.01004955049999999) (0.010121297000000001) (0.0103897565) (0.010247466999999996) (0.010140722000000005) (0.01090413300000001) (0.010086359000000003) (0.010423827499999996) (0.010331395000000007) (0.010352847999999998) (0.010320354500000004) (0.010222190500000006) (0.010063780999999994) (0.010128518500000003) (0.0101519625) (0.010034211500000001) (0.01013901049999999) (0.010138166000000004) (0.010107618999999998) (0.01032630250000001) (0.010335442500000014) (0.010544806500000004) (0.0103583025) (0.010509228500000009) (0.010345999499999994) (0.010214175999999991) (0.010355497499999991) (0.010586415500000002) (0.010749244500000005) (0.010369588499999999) (0.010388416000000011) (0.010569695500000004) (0.010566007500000002) (0.010621871500000005) (0.01066900450000001) (0.01051406199999999) (0.010416928000000006) (0.01051766400000001) (0.010282880500000008) (0.0103252395) (0.010482992999999996) (0.010339817999999987) (0.010320018) (0.010575076500000002) (0.010597126499999998) (0.01064319150000001) (0.01048417850000001) (0.010479343999999988) (0.010614780000000004) (0.010542083500000007) (0.010647871999999989) (0.010511174499999998) (0.010180005000000006) (0.010070289999999996) (0.010094342499999992) (0.01004485400000002) (0.010048902499999984) (0.01009044399999999) (0.010208068) (0.009946575) (0.010067568499999985) (0.010105596000000008) (0.010321116000000019) (0.010251605999999996) (0.010047085499999997) (0.01010626399999999) (0.010378685999999998) (0.010157858499999992) (0.010277274500000003) (0.010177917500000008) (0.010177668) (0.01024367150000001) (0.009971578500000022) (0.009920664999999995) (0.010261970999999995) (0.010296447) (0.010206898500000006) (0.010305294500000006) (0.010224194500000006) (0.010223143000000004) (0.010138156999999995) (0.010572258000000001) (0.010172488999999993) (0.010185823499999996) (0.010486506999999992) (0.010404884999999989) (0.010410193499999998) (0.010361745499999991) (0.010537328499999998) (0.010399561500000001) (0.010434337999999987) (0.010354283500000006) (0.010584611000000008) (0.01045241899999999) (0.010594767500000005) (0.010628904999999994) (0.010344320000000004) (0.010481590999999998) (0.010529850999999993) (0.010379720499999995) (0.010225305000000004) (0.010413784999999995) (0.010619355999999996) (0.010499591999999988) (0.010585483499999992) (0.0104371355) (0.010577549999999991) (0.010307872499999995) (0.010474700000000003) (0.010821826500000006) (0.010430022999999997) (0.010465073999999991) (0.010584216999999993) (0.010715941999999992) (0.010567967499999997) (0.010635130000000007) (0.010296254000000005) (0.010071288500000011) (0.010090481999999998) (0.010200579000000001) (0.010327452) (0.010405344499999997) (0.010023636500000016) (0.010116866000000002) (0.010428432500000001) (0.010321070000000002) (0.009986549499999997) (0.010557943) (0.010439102000000006) (0.010286948000000004) (0.010271232500000005) (0.010153642000000004) (0.010110825000000004) (0.010186870000000015) (0.010085451999999995) (0.010501891) (0.009993920000000003) (0.010302279499999997) (0.010111718999999991) (0.010368756000000007) (0.010498244500000004) (0.0102885375) (0.010160969500000006) (0.010360908500000002) (0.01017351000000001) (0.010185837000000003) (0.010375625) (0.01025391049999999) (0.0105017305) (0.010431693000000006) (0.010448952499999997) (0.010457918499999996) (0.010421036999999994) (0.010457670000000002) (0.010425483999999999) (0.010579500500000005) (0.010453273999999985) (0.010620683500000005) (0.0106127565) (0.01038472600000001) (0.010497481000000003) (0.010561352999999996) (0.010664231999999996) (0.010404799499999992) (0.010388500500000009) (0.01028308850000001) (0.010548778500000008) (0.010506944000000004) (0.010363624500000015) (0.010361177000000013) (0.0106206685) (0.010483686000000006) (0.010656910500000005) (0.010678514500000014) (0.010421055999999998) (0.01054353999999999) (0.010617787000000004) (0.010602460999999994) (0.010482252999999997) (0.01038354000000001) (0.010083135999999993) (0.010016987000000005) (0.010050553500000003) (0.010605955500000014) (0.010012376000000003) (0.010078155999999991) (0.009988109499999995) (0.010087270999999995) (0.010107303499999998) (0.010080498000000007) (0.010020668999999996) (0.010183443499999986) (0.010250403499999991) (0.010101194499999994) (0.010525249) (0.010164788500000008) (0.010039805500000012) (0.009962971499999987) (0.010196112499999993) (0.010018044000000004) (0.009891820499999995) (0.010041784999999998) (0.01006654600000001) (0.009997275) (0.010369934499999983) (0.010080556500000004) (0.009978825999999996) (0.00997688699999999) (0.010233712000000006) (0.01037753050000001) (0.010054552499999994) (0.010189330999999996) (0.010368074000000005) (0.01016227850000001) (0.010524052999999992) (0.010494215500000001) (0.010368927999999986) (0.010251516500000002) (0.010232585500000002) (0.010818287999999995) (0.010359427500000004) (0.010734627999999996) (0.010257678000000006) (0.010443604000000009) (0.010583788999999996) (0.010547821499999999) (0.010349759499999986) (0.010522483499999999) (0.010281906500000007) (0.01039341199999999) (0.010307580499999996) (0.010465575500000004) (0.0102700815) (0.010394540000000008) (0.010460993000000002) (0.010493575000000005) (0.010540361499999984) (0.010594660499999992) (0.010545175000000004) (0.010695055499999995) (0.010491661500000013) (0.010596450500000007) (0.010433420999999998) (0.010591225499999996) (0.0100645605) (0.010192422499999992) (0.010099843999999997) (0.009977796499999997) (0.01017037500000001) (0.010200767000000013) (0.010035322499999999) (0.010137809999999997) (0.010101090999999993) (0.010243307000000007) (0.010093654000000007) (0.010165083499999991) (0.010199435500000006) (0.010369646999999996) (0.0102919395) (0.010332058500000005) (0.010000668000000004) (0.010200102500000002) (0.010025126499999981) (0.010306560999999992) (0.010048604500000002) (0.010062198499999994) (0.009993798499999998) (0.010445466) (0.009993433499999996) (0.010205762000000007) (0.01011810149999999) (0.010083872499999993) (0.010058156999999998) (0.01008896799999999) (0.010297767499999999) (0.010238799999999992) (0.010624846999999979) (0.010515987000000004) (0.010490817999999999) (0.010501086500000006) (0.010448901499999996) (0.010396877999999998) (0.010462060499999995) (0.010263131000000009) (0.010640859500000002) (0.010522410499999996) (0.010652001000000008) (0.010457483000000017) (0.01034889700000001) (0.010515887000000002) (0.010442275) (0.01050523049999999) (0.010330965499999997) (0.010238630999999998) (0.010396652500000006) (0.01026867649999999) (0.010367570499999992) (0.010284812000000004) (0.010419008999999993) (0.010583287499999997) (0.010581321500000004) (0.010391641500000007) (0.010590157500000003) (0.010513302500000016) (0.010683834500000003) (0.010590615999999997) (0.010863024500000013) (0.010620031000000002) (0.010169274999999978) (0.010036185500000003) (0.010137259999999995) (0.010027407499999988) (0.010018311500000002) (0.010132665500000013) (0.010271352500000011) (0.010252659499999997) (0.010210704000000015) (0.010365056499999997) (0.010067108500000005) (0.010103162000000013) (0.010331477000000006) (0.010158762000000002) (0.010145439999999992) (0.0100674335) (0.010390974500000011) (0.009957798500000004) (0.00990047949999999) (0.009954470500000007) (0.010068569000000013) (0.010159729000000006) (0.01008334050000001) (0.01004931449999999) (0.010105180000000005) (0.01017552300000002) (0.010030175499999988) (0.010421057500000011) (0.010120664000000001) (0.010196307000000002) (0.010463405999999995) (0.010000837999999998) (0.010257380999999996) (0.010395828999999995) (0.01031117849999999) (0.010244611500000014) (0.010450822500000012) (0.010460552499999998) (0.010305468499999998) (0.0105003865) (0.010316583500000004) (0.0105198965) (0.010307585500000008) (0.010265040000000003) (0.010672510999999996) (0.010557869999999997) (0.010240822499999996) (0.010357186500000004) (0.010528711499999996) (0.010692621) (0.010320613499999992) (0.010572200500000004) (0.010538488499999998) (0.010282232999999988) (0.010227045000000004) (0.010264943499999998) (0.010699734999999988) (0.010446383999999989) (0.010633959499999998) (0.010807586999999994) (0.010521829999999996) (0.010675120999999996) (0.010405789000000013) (0.010559446000000014) (0.010011763500000007) (0.009881285500000003) (0.009977801499999994) (0.010163143999999999) (0.010280055999999996) (0.010588546000000004) (0.010023752999999996) (0.009941251499999998) (0.010154836) (0.010266232500000014) (0.010151538000000015) (0.0102084645) (0.010068360999999998) (0.010330853000000001) (0.010183658999999998) (0.010065551000000006) (0.010229728000000007) (0.010297193999999996) (0.010276623500000012) (0.009976751499999992) (0.01002277900000001) (0.009953921500000004) (0.010237823499999993) (0.010208304000000001) (0.010287452500000002) (0.010020186000000014) (0.010110382000000015) (0.010270918500000004) (0.010321371499999996) (0.010377979500000009) (0.010438783000000007) (0.010418206499999999) (0.01026128250000001) (0.010357761500000007) (0.010575690500000012) (0.010388210999999994) (0.010483169) (0.010619666000000014) (0.010651354000000016) (0.010465480999999999) (0.010441939999999997) (0.010379362500000003) (0.010480001000000003) (0.010440592499999998) (0.010645117999999995) (0.010567018499999997) (0.010542015500000002) (0.0104097145) (0.010716992499999994) (0.010485394000000009) (0.01067765750000002) (0.010496976500000005) (0.010382313500000004) (0.010430293500000007) (0.010646199499999995) (0.010240851999999995) (0.010466845499999988) (0.010515337000000013) (0.010588341500000015) (0.010608071499999996) (0.0107291905) (0.010362182500000011) (0.010521457500000012) (0.010772852000000013) (0.010202965999999994) (0.0101836805) (0.010093832999999997) (0.010128401000000009) (0.010080077500000006) (0.010127506499999994) (0.009909846) (0.010402644000000003) (0.010143640999999995) (0.010172145000000007) (0.010426808999999995) (0.010191629000000008) (0.009980794000000015) (0.010293695499999991) (0.010112584499999994) (0.010159230000000005) (0.010050807000000009) (0.00984134049999999) (0.010068287000000009) (0.010030376999999993) (0.010082138000000004) (0.0099846975) (0.010264201) (0.010218680000000008) (0.010377728000000003) (0.010147658500000004) (0.010444688500000007) (0.010117730500000005) (0.010188901999999986) (0.009936186999999999) (0.010118053500000002) (0.010212356500000005) (0.010485571499999999) (0.010739835000000003) (0.0103524225) (0.010329142) (0.010500275000000003) (0.010341380999999997) (0.010490367000000014) (0.010447413999999988) (0.010293552500000011) (0.010424977500000016) (0.010629479000000011) (0.010320716500000007) (0.01040514499999999) (0.010442084000000004) (0.010488316999999983) (0.010375426499999993) (0.010261568499999998) (0.010316155500000007) (0.01046190900000002) (0.010741858000000007) (0.010462413500000003) (0.010456738000000007) (0.010437126000000005) (0.010369521500000006) (0.01054986899999999) (0.01095921250000001) (0.010484639000000018) (0.010669334000000003) (0.010444180999999997) (0.010390955000000007) (0.010332614000000004) (0.0104456255) (0.010033267999999998) (0.0100737615) (0.010014755000000014) (0.0100605) (0.009968708999999978) (0.009977297999999996) (0.010267539499999992) (0.010131973000000002) (0.010505728999999991) (0.010226378000000008) (0.010371259999999993) (0.010254842) (0.010354562999999997) (0.010231366499999991) (0.010068143000000002) (0.01019610750000001) (0.009902769499999992) (0.010171806500000005) (0.00984865950000001) (0.010100933999999992) (0.009984147000000013) (0.01034114450000001) (0.010197186499999997) (0.010299492499999993) (0.010133808000000008) (0.010439370000000003) (0.010542983500000006) (0.010019264) (0.010722410000000002) (0.010012001999999992) (0.010180005500000006) (0.010382003) (0.0103356795) (0.010331749000000001) (0.010886225) (0.010752246000000007) (0.010543174500000002) (0.010375177499999999) (0.010250726500000001) (0.010339503) (0.010472980499999993) (0.010420166000000008) (0.01057799999999999) (0.010451073499999991) (0.010535118999999996) (0.010502144500000019) (0.010327501499999989) (0.010524440499999996) (0.010310637999999997) (0.010532286500000002) (0.010218118000000012) (0.010507723499999996) (0.010366916000000004) (0.010201746999999997) (0.010602987499999994) (0.010478382500000008) (0.010528995499999999) (0.010553123000000011) (0.010468248999999999) (0.010622061000000002) (0.010448852499999994) (0.010576421500000002) (0.010640615500000006) (0.010485458000000003) (0.009984773500000002) (0.010099558500000008) (0.0101877145) (0.010062008000000011) (0.009935036500000008) (0.01029344950000001) (0.010154884000000003) (0.010158084999999997) (0.010225896999999998) (0.01001800600000001) (0.010035908999999996) (0.010312081000000015) (0.01020832449999999) (0.010215461000000009) (0.010143453499999996) (0.010085406000000005) (0.010208169000000003) (0.010105002500000015) (0.010170197000000006) (0.009969557500000004) (0.009956337999999981) (0.010011221499999987) (0.010113030999999995) (0.010299293000000001) (0.010166245500000004) (0.010149480999999988) (0.010204570499999982) (0.010118117999999995) (0.010234263500000007) (0.010199316999999986) (0.01020876350000001) (0.010054582999999992) (0.010251503499999995) (0.010251718500000007) (0.010468673999999997) (0.010480426000000001) (0.010263253500000014) (0.010450337500000004) (0.010601314) (0.010531653000000016) (0.010328985999999998) (0.011192965999999999) (0.010473584500000008) (0.010673822499999985) (0.010699470500000002) (0.010408690999999998) (0.0105023385) (0.010871424000000005) (0.010432959999999991) (0.010603589499999996) (0.010227722999999994) (0.010430392999999996) (0.010339268499999998) (0.010395751499999994) (0.010341182000000004) (0.010398593500000011) (0.010687778000000009) (0.011024619000000013) (0.010686348000000012) (0.010649453500000003) (0.010335464000000016) (0.01040055699999999) (0.010767569500000004) (0.010622314500000007) (0.009917501000000009) (0.010433071000000002) (0.010104421000000002) (0.00994750300000001) (0.010000279) (0.010108322500000003) (0.010001545499999986) (0.009950306999999992) (0.010404191999999993) (0.01007958299999999) (0.0102334585) (0.010181243000000006) (0.010236663000000007) (0.010341460999999996) (0.010242358000000007) (0.010183914000000002) (0.010093880999999999) (0.010196333500000002) (0.010130410500000006) (0.01019160500000002) (0.010024927500000003) (0.010127949999999997) (0.009969992499999997) (0.010146496500000005) (0.010175614999999999) (0.010099562999999992) (0.010003736000000013) (0.010158669999999995) (0.010246026999999991) (0.010203945500000006) (0.010082873500000006) (0.010073359500000004) (0.010403059500000006) (0.010441875500000003) (0.010206898000000006) (0.010330465499999997) (0.010580647499999998) (0.010385057000000003) (0.010444001500000008) (0.010673184500000002) (0.010582855999999988) (0.010511738000000007) (0.01038344599999999) (0.010379939500000004) (0.01088550599999999) (0.010819312999999997) (0.010693106499999994) (0.010801607500000004) (0.010446938500000003) (0.010214248499999995) (0.010390910000000003) (0.01029294) (0.010293824000000007) (0.01022316650000002) (0.010295000499999998) (0.012793790999999999) (0.01060362849999999) (0.010554653000000011) (0.010475460500000006) (0.010640420499999984) (0.010486871000000009) (0.010762513000000001) (0.010677606000000006) (0.010800155499999992) (0.010069013000000016) (0.010226191499999995) (0.010055273000000003) (0.009956088499999988) (0.010297212500000014) (0.009996554500000004) (0.010328442499999993) (0.01016325500000001) (0.010207648) (0.010038534500000001) (0.010108856999999985) (0.009989777499999991) (0.010153297999999991) (0.010107620499999997) (0.010172003999999998) (0.01013674199999999) (0.010189658000000004) (0.0099687735) (0.010028910500000002) (0.010101716999999996) (0.010458134999999993) (0.010132887999999993) (0.010322369999999997) (0.010281903000000009) (0.010180004500000006) (0.010210907000000005) (0.01016987350000001) (0.010120808999999995) (0.010472810999999999) (0.010416967999999985) (0.010270990500000007) (0.010177764499999992) (0.010425200499999995) (0.010805725500000002) (0.01056869449999999) (0.010473290499999996) (0.010436962999999994) (0.010355120499999995) (0.010316777999999999) (0.010626443999999999) (0.010707862999999998) (0.010482766500000004) (0.010416644500000002) (0.010587228500000004) (0.010412027000000004) (0.010650190500000004) (0.0105127795) (0.010519057999999998) (0.01025760249999999) (0.01037052649999999) (0.010431228) (0.010309541499999991) (0.01036989549999999) (0.010357067999999997) (0.0103427465) (0.010489887500000003) (0.010496253999999997) (0.010612594000000017) (0.010447766499999997) (0.010595921500000022) (0.010684898499999998) (0.010585814499999999) (0.010553620000000014) (0.010803104499999994) (0.010376163499999994) (0.010485750500000002) (0.010056971999999997) (0.010283419500000002) (0.010127482500000007) (0.01015948550000001) (0.010002504499999995) (0.0101473505) (0.010272897500000003) (0.010212127499999987) (0.010222915499999999) (0.010176286000000007) (0.010288966499999996) (0.010131372) (0.010032884999999991) (0.010289541500000013) (0.010019658) (0.010270050000000003) (0.010193259999999996) (0.010115579499999985) (0.010024810500000009) (0.010021023500000004) (0.010110168000000017) (0.010140297000000006) (0.010127211499999997) (0.01004656000000001) (0.010215121999999993) (0.010195990999999988) (0.010185514000000007) (0.010166902499999991) (0.010127308000000002) (0.01008471250000001) (0.010363956000000007) (0.010260991999999997) (0.010500955499999992) (0.010656991500000004) (0.010340651000000006) (0.010702457999999998) (0.010253551) (0.010508665) (0.010303458500000001) (0.010597479000000007) (0.010808361499999988) (0.010963526000000015) (0.010538242499999989) (0.010445562500000005) (0.010376505500000008) (0.010466495500000006) (0.010588802000000008) (0.010521061999999998) (0.01051866450000001) (0.010692879500000002) (0.010568628499999996) (0.010418922999999997) (0.010676046999999994) (0.010519986000000009) (0.010440227499999996) (0.010653830500000003) (0.010491075500000016) (0.010694446499999996) (0.010813882499999997) (0.010645131000000002) (0.010656447999999985) (0.010605520999999993) (0.010102699000000007) (0.010190869500000005) (0.010133116499999997) (0.010080022999999994) (0.0101421015) (0.010230847500000001) (0.010079526500000005) (0.010169916500000015) (0.010916929500000006) (0.010058734500000013) (0.010361743500000006) (0.010371196999999985) (0.010095786500000009) (0.0104410635) (0.01015150799999999) (0.010234076000000009) (0.010218391999999993) (0.010106810500000007) (0.010037274499999999) (0.010064519999999993) (0.010014998499999997) (0.010390737000000011) (0.010234909500000014) (0.010308886000000003) (0.010395888999999991) (0.010137951499999992) (0.01044287549999999) (0.010228655500000003) (0.01022765249999999) (0.010401924999999992) (0.010159354499999995) (0.010069839999999997) (0.010344013999999999) (0.010339161000000013) (0.010351071500000003) (0.010228110999999998) (0.010364862000000002) (0.012718317000000007) (0.010506695999999996) (0.010408145500000007) (0.010792919500000012) (0.010543797499999993) (0.010444733999999997) (0.010311529500000013) (0.010644597000000006) (0.010483398500000005) (0.010675605000000005) (0.010452545000000008) (0.010305422000000009) (0.010432423499999996) (0.010282694999999994) (0.010303584500000004) (0.010342409499999983) (0.010501908000000004) (0.010359043999999998) (0.010865328999999993) (0.010532031499999997) (0.01057458900000001) (0.010620402000000001) (0.01085994400000001) (0.010459399000000008) (0.010420975999999998) (0.010749935000000002) (0.010585580499999997) (0.010098828500000004) (0.010064007499999986) (0.010029784) (0.010188572999999992) (0.010313749999999983) (0.010185801500000008) (0.010014260499999997) (0.010153472999999996) (0.010077527000000003) (0.010093864499999994) (0.010255228000000005) (0.010191796000000003) (0.010193874500000005) (0.010242653500000004) (0.010438735500000018) (0.010324449499999985) (0.01005984850000001) (0.010318948999999994) (0.010141384000000003) (0.010065772499999986) (0.01040956550000001) (0.009961851999999993) (0.010389908999999989) (0.010192314999999993) (0.010508188000000002) (0.010386054500000005) (0.010379707000000002) (0.010178945500000008) (0.010222270500000005) (0.010423514000000009) (0.01035119100000001) (0.010456973000000008) (0.010379040000000006) (0.010433659999999997) (0.010423394000000002) (0.010661563499999985) (0.010534457499999997) (0.010324057999999997) (0.010446073000000014) (0.010463234000000002) (0.010603801499999996) (0.010706730499999997) (0.010444459000000003) (0.010416962500000002) (0.010593156499999992) (0.010576930999999984) (0.010426670499999999) (0.010671068999999991) (0.010396731500000006) (0.010508286499999991) (0.010623611499999991) (0.010430019000000013) (0.010407801500000008) (0.010670655000000001) (0.010394984999999995) (0.010505032499999983) (0.010824671499999994) (0.010721958000000004) (0.010687615500000011) (0.010569697500000017) (0.010609974500000008) (0.010751537500000005) (0.010520606999999987) (0.010433086499999994) (0.009978775999999995) (0.0099004855) (0.010251136000000008) (0.010192174499999984) (0.010190793000000004) (0.010340313000000004) (0.00991900749999998) (0.01015651749999999) (0.010124963999999986) (0.010108796000000003) (0.010242203499999991) (0.010203396000000003) (0.010410405999999997) (0.010019028999999999) (0.010208875500000006) (0.010198362000000002) (0.010246168000000014) (0.010081657000000008) (0.010555107999999994) (0.010198570500000004) (0.01001038600000001) (0.0100139125) (0.010062936500000008) (0.010041988999999987) (0.010287016499999982) (0.010327359999999994) (0.01017783350000001) (0.009980714500000001) (0.010261098499999996) (0.010074284500000003) (0.01042286399999999) (0.0099372665) (0.010389000499999995) (0.010445611499999993) (0.010633286999999991) (0.010598069000000016) (0.010431901500000007) (0.010316215000000004) (0.010301466500000023) (0.010232687000000004) (0.010537784500000008) (0.010335824999999993) (0.010414628499999995) (0.010726204499999989) (0.010719708000000008) (0.010415283999999997) (0.010522412000000009) (0.010403005999999992) (0.010213117000000008) (0.010733062000000002) (0.010279555999999995) (0.010404974499999997) (0.010389145000000002) (0.010287312500000007) (0.010416944000000011) (0.01057525849999999) (0.010558620500000004) (0.010725275500000006) (0.010405141499999992) (0.010569388999999998) (0.010526224499999987) (0.01040506849999999) (0.010337987500000007) (0.01048608999999999) (0.010337061499999994) (0.010235539500000002) (0.010077518999999993) (0.01013032500000001) (0.010412281499999995) (0.010081244000000003) (0.01019523) (0.010265712999999996) (0.010321806000000003) (0.01042033299999999) (0.01008949399999999) (0.01031918150000001) (0.010170706500000001) (0.010144729500000005) (0.010131423) (0.010067518500000011) (0.010042135499999993) (0.010396635000000001) (0.010199529000000013) (0.010311993000000005) (0.01023070899999999) (0.010000522499999998) (0.009911158000000003) (0.010157756000000004) (0.010229404999999997) (0.010345769500000004) (0.010243195999999996) (0.010309298499999994) (0.010361472999999996) (0.010119481999999999) (0.010168719500000006) (0.010112110999999993) (0.01030151850000001) (0.010348010500000004) (0.010805582500000008) (0.010352990500000006) (0.010493582000000001) (0.010459905500000005) (0.010557860500000002) (0.010452042499999994) (0.01072830000000001) (0.01052787749999999) (0.010328513499999997) (0.010425320000000002) (0.010399938499999983) (0.010450769999999998) (0.010449129000000001) (0.010520572999999991) (0.010412423000000004) (0.010578373499999988) (0.010646540999999995) (0.01043151049999999) (0.010662242500000016) (0.010431833000000001) (0.010552568499999984) (0.010621288499999992) (0.010637179499999996) (0.010544008500000007) (0.010554444999999996) (0.010698246500000008) (0.010630520500000004) (0.010545063500000007) (0.010353982999999997) (0.010660892000000005) (0.010098600999999985) (0.010095640500000003) (0.01020444849999999) (0.010115524999999986) (0.010136862499999996) (0.009984686000000007) (0.010028752500000002) (0.01028271) (0.010182119000000003) (0.010120613) (0.010177791999999991) (0.010152145000000001) (0.010197209999999998) (0.010058709500000013) (0.010479416000000005) (0.010026668000000002) (0.010029436000000017) (0.0101811245) (0.010331032000000004) (0.010069978499999993) (0.010325454999999983) (0.010430651999999999) (0.010058673000000004) (0.010305014500000001) (0.01028105700000001) (0.010149197999999998) (0.010287495500000007) (0.010267178500000015) (0.010235514000000001) (0.010106893999999991) (0.010403442999999998) (0.010165531499999991) (0.010623488) (0.010461503499999997) (0.010391862999999987) (0.010271745499999999) (0.01040244799999998) (0.01038848249999999) (0.01045745499999999) (0.010408199499999993) (0.010616019500000004) (0.010646069000000008) (0.010612165499999993) (0.010586680000000001) (0.01049767) (0.010655203500000002) (0.010328950000000003) (0.010335566000000004) (0.010532313000000001) (0.010645638499999985) (0.010572969000000015) (0.010341003000000001) (0.010441474500000006) (0.010435168499999994) (0.01054745750000001) (0.010585041999999989) (0.010623583499999992) (0.010462113500000009) (0.010610091000000016) (0.010404214000000009) (0.010643609499999984) (0.010389284499999998) (0.010551874000000003) (0.010543641000000006) (0.010138688999999992) (0.010312656000000017) (0.010071358500000002) (0.010412521999999994) (0.010245249999999997) (0.010081189500000004) (0.010191947500000006) (0.010128943000000001) (0.010175694000000013) (0.010281765499999998) (0.010006492500000005) (0.010290952499999992) (0.010249240499999993) (0.010055547499999998) (0.010184177000000003) (0.010211825500000007) (0.010143813000000002) (0.010209005499999993) (0.010243496000000005) (0.010079678000000009) (0.010179376500000004) (0.0103463595) (0.010418176500000015) (0.010292477499999994) (0.010272187500000002) (0.010139806500000001) (0.010197531499999996) (0.010240937999999991) (0.010260722) (0.010354848) (0.010254088500000008) (0.010123406000000001) (0.010345431500000002) (0.010408122999999991) (0.010488194000000006) (0.010283051499999987) (0.010525430000000002) (0.010338270999999996) (0.010472574499999984) (0.010358663000000004) (0.010631869000000002) (0.010655557999999996) (0.010809808000000004) (0.010569008500000004) (0.01065512049999999) (0.010525777) (0.010748332499999985) (0.010557787999999999) (0.010384219) (0.01044588249999999) (0.010304632500000008) (0.010513716499999992) (0.010499076999999996) (0.010461228500000003) (0.010474931000000007) (0.010559161000000011) (0.010613905000000007) (0.010457856000000001) (0.010628197500000006) (0.010610268499999992) (0.010519492500000005) (0.010666857000000002) (0.010452578500000018) (0.010688239000000002) (0.010031499) (0.00999799749999998) (0.0099856745) (0.009931258999999998) (0.010081444500000009) (0.010466221499999998) (0.009916946499999996) (0.0100195805) (0.010059658999999999) (0.010315005500000002) (0.010040102000000009) (0.010244045499999993) (0.01022501499999999) (0.01025329250000001) (0.010447310500000001) (0.010153161000000008) (0.009961579999999998) (0.010197115500000006) (0.010034920999999988) (0.010246085500000002) (0.009891827999999991) (0.010023241999999988) (0.010012024999999994) (0.010210212999999996) (0.010313774499999998) (0.0103711425) (0.010009002000000003) (0.010243077500000017) (0.010346739000000008) (0.010325481500000011) (0.010219989500000012) (0.010125277500000002) (0.010328549999999992) (0.010252710499999984) (0.010467104500000005) (0.010400976000000006) (0.010366044500000005) (0.010171065999999993) (0.010471775999999988) (0.010338523000000002) (0.010397816000000004) (0.010511963) (0.010846223500000016) (0.010365574000000002) (0.010535487499999996) (0.010778142000000004) (0.010593034000000015) (0.010452831999999995) (0.010641849500000009) (0.010412647499999997) (0.010391940500000002) (0.010411931999999999) (0.010329919500000007) (0.01045401750000001) (0.010708677) (0.010404198000000003) (0.010499765500000008) (0.010917065000000004) (0.010404633499999996) (0.010447367499999999) (0.010575745499999997) (0.010564854999999998) (0.010621315499999992) (0.010707001499999994) (0.009987391999999998) (0.009986145999999987) (0.010106770999999987) (0.01012353199999999) (0.010443420500000009) (0.010159395000000002) (0.010113272500000006) (0.010106813500000006) (0.010139690500000006) (0.010290360999999998) (0.010321225000000003) (0.010031949000000012) (0.010032055999999998) (0.010398715000000003) (0.010128835500000002) (0.010219412999999997) (0.01015341900000001) (0.010041575000000011) (0.010381911500000007) (0.010244634999999988) (0.010290565000000002) (0.010196236999999997) (0.010083751500000002) (0.01006699200000001) (0.009985474000000008) (0.010162918000000007) (0.0101306865) (0.010454473499999992) (0.010001797999999992) (0.010262012499999987) (0.010091706500000006) (0.010267675500000004) (0.010403072499999999) (0.0103514985) (0.010429398000000006) (0.010505782500000005) (0.010387166500000003) (0.010301040999999997) (0.010353761000000003) (0.010425562499999985) (0.010271535999999998) (0.010627138499999994) (0.010505657499999987) (0.010449084999999997) (0.010399345500000004) (0.010562359500000007) (0.01048649800000001) (0.01064871199999999) (0.010248397499999992) (0.010326857500000008) (0.010343152999999994) (0.010616442000000004) (0.010389851500000005) (0.010316926500000004) (0.010293417500000013) (0.010228268499999985) (0.01061445150000001) (0.010831380500000001) (0.010557509999999992) (0.010326605500000002) (0.010911814500000006) (0.010661497999999991) (0.010539225) (0.010532814500000001) (0.010136621000000012) (0.010073686499999998) (0.009999844000000008) (0.009974520000000014) (0.010338774000000009) (0.010080657999999992) (0.0098990085) (0.010463270499999996) (0.010266576999999999) (0.010058683499999985) (0.010253387000000003) (0.010198865000000001) (0.010558409500000004) (0.010609563500000002) (0.010345007500000003) (0.010151199499999985) (0.010068259499999996) (0.010197746499999993) (0.009955036) (0.009989739499999997) (0.010006312500000003) (0.009912549500000006) (0.010087689499999997) (0.010205891499999994) (0.010471818500000007) (0.010260692000000002) (0.010126623500000001) (0.010125103499999996) (0.010140674000000002) (0.0103435625) (0.010262850000000018) (0.01028151549999999) (0.010245597999999995) (0.010397138) (0.010514098999999999) (0.010362915499999986) (0.010445225000000002) (0.010356662499999988) (0.010367779999999993) (0.010230486999999996) (0.010540882000000001) (0.010384701999999996) (0.01047007500000001) (0.010529813999999998) (0.010651401000000005) (0.010605900500000001) (0.010343949500000005) (0.010583594500000001) (0.010489598999999988) (0.010571948999999997) (0.010704892000000008) (0.010304618000000001) (0.0105164175) (0.010451788000000004) (0.010237138999999992) (0.010419468000000015) (0.010661192999999985) (0.010520736500000002) (0.010464855999999995) (0.010550494000000007) (0.01042808349999999) (0.010513312499999997) (0.010486668500000004) (0.010509272) (0.010259662000000017) (0.010046001499999999) (0.010085050499999998) (0.010213600000000003) (0.010000389499999998) (0.009934430999999994) (0.010326035999999997) (0.010333550999999996) (0.0105094825) (0.009987573) (0.01030412800000001) (0.010544157499999998) (0.010205958999999987) (0.010324845) (0.010078122499999995) (0.010079432999999999) (0.009939056500000001) (0.01011334600000001) (0.010136506999999989) (0.01011977700000001) (0.010064148999999994) (0.010017969500000001) (0.010054677999999984) (0.010043563499999991) (0.010335325000000006) (0.010564635000000003) (0.0101746625) (0.010390478000000009) (0.010189685000000004) (0.010396228000000007) (0.010240436500000005) (0.010417030000000008) (0.010460647500000003) (0.010421620500000006) (0.010418123000000001) (0.010396731500000006) (0.010441037) (0.01072153599999999) (0.010707658500000009) (0.010276569999999999) (0.010487616000000005) (0.010571128999999999) (0.010458485999999989) (0.010473668999999991) (0.010339784500000004) (0.0104024655) (0.0104395875) (0.010595325500000002) (0.010422069000000006) (0.010478203499999991) (0.010379270999999995) (0.0105578645) (0.01066577199999999) (0.010547031499999984) (0.010487027999999995) (0.010505705500000004) (0.010803026000000007) (0.010716852999999998) (0.010627686999999997) (0.010670305000000005) (0.01068036) (0.01061045749999999) (0.010708200000000015) (0.010623535500000003) (0.009947918000000014) (0.01019204750000001) (0.01012987) (0.010287717500000002) (0.0100244585) (0.010153692000000006) (0.010173362499999991) (0.0101495905) (0.010327579000000003) (0.01021896) (0.010164421500000007) (0.010081965999999998) (0.010051833499999996) (0.009969271000000002) (0.010394674499999992) (0.01005705400000001) (0.010360057499999992) (0.01070656099999999) (0.010125143499999989) (0.010034225500000007) (0.009928740500000005) (0.01007690750000001) (0.009968538999999998) (0.009990791999999998) (0.009936320500000012) (0.010061836000000005) (0.010311093500000007) (0.010176051999999991) (0.010198673000000005) (0.010342361500000008) (0.010268603500000001) (0.010017639000000009) (0.010288329999999998) (0.010275411499999998) (0.010303259500000009) (0.010375035000000005) (0.010540836999999997) (0.010743240000000001) (0.010321831000000004) (0.010256148999999992) (0.010535604000000004) (0.010476045499999989) (0.010371787999999993) (0.010400336999999996) (0.01051861450000001) (0.010511363499999996) (0.010288112000000002) (0.010468611000000003) (0.010684881999999993) (0.010376823500000007) (0.010403381500000003) (0.010434710000000014) (0.01063768399999998) (0.010581531500000005) (0.01035987749999999) (0.010609888999999997) (0.01069618700000001) (0.010486843999999995) (0.010557348500000008) (0.010262256499999997) (0.010534421000000002) (0.010758307999999994) (0.010381975500000001) (0.01068573099999999) (0.010039594999999985) (0.010279229) (0.010122964500000012) (0.010164281999999997) (0.010255958499999995) (0.010155471999999999) (0.010044617500000005) (0.009975554000000011) (0.010294424999999996) (0.010065010999999999) (0.009999158000000008) (0.010283525000000002) (0.010286937999999982) (0.010205128499999994) (0.01006028149999999) (0.010293660999999982) (0.010214350499999997) (0.010057847500000008) (0.010024252499999997) (0.0102197745) (0.01018645800000001) (0.010074366000000001) (0.010152857500000015) (0.010172754000000006) (0.010144446000000001) (0.0100903985) (0.0101539935) (0.010149214000000004) (0.010071662500000009) (0.010369720500000013) (0.010093338500000007) (0.010203879999999999) (0.010494662500000002) (0.010401820000000006) (0.010513525499999996) (0.010487985500000005) (0.01035469550000001) (0.010631308500000006) (0.010309955499999995) (0.010315798000000001) (0.011472179999999998) (0.010556890499999999) (0.010485906999999989) (0.010699356000000007) (0.010755452499999998) (0.010330057500000003) (0.01041492899999999) (0.010405320499999995) (0.010387975499999993) (0.01035999600000001) (0.010586625000000002) (0.010298544000000007) (0.010300012499999997) (0.01046793800000001) (0.010590808499999993) (0.01027960600000001) (0.01064437700000001) (0.01040977400000001) (0.010329828500000013) (0.010464597000000006) (0.010593325) (0.010462799999999994) (0.010597598500000013) (0.010640108500000009) (0.009870658500000004) (0.010155447499999984) (0.01014888450000001) (0.010503839000000001) (0.010073088999999993) (0.010076446000000003) (0.010054849000000005) (0.010384482499999986) (0.010139943500000012) (0.010413991500000011) (0.010105293500000001) (0.010167773500000005) (0.010080219000000001) (0.010343731500000009) (0.010159597500000006) (0.010259925499999989) (0.010060509500000009) (0.01015289200000001) (0.009985977499999993) (0.01015030900000001) (0.010225830000000005) (0.0099932665) (0.010125820500000007) (0.010215848999999999) (0.010239125000000016) (0.01032889350000002) (0.010231283000000022) (0.010084797500000006) (0.0102679985) (0.010365475999999985) (0.010252386500000002) (0.010121438999999996) (0.010532177500000003) (0.010413278999999984) (0.010302788499999993) (0.01038008850000001) (0.01061332700000002) (0.010725391500000014) (0.01032007750000001) (0.010476975) (0.010600498500000013) (0.010543973000000012) (0.010691860999999997) (0.010311961000000008) (0.010669542500000004) (0.01041856599999999) (0.010600218000000008) (0.010491601500000017) (0.010828671500000012) (0.010611606999999995) (0.01060912800000001) (0.01042699300000001) (0.010495710499999991) (0.01028580250000001) (0.010429302500000001) (0.010250093000000002) (0.010816891499999995) (0.010505143500000008) (0.01044638149999999) (0.01053920600000001) (0.010688811500000006) (0.010843932999999986) (0.010485269500000005) (0.010480608500000002) (0.010156637999999996) (0.010164658000000007) (0.010054269000000005) (0.010000147000000001) (0.010332465499999999) (0.010310213999999998) (0.010023915999999994) (0.010115251000000006) (0.010139944999999997) (0.010240916499999989) (0.010392774999999993) (0.010345952500000005) (0.010257876499999999) (0.0103478875) (0.010483969499999996) (0.010194658499999995) (0.0101545745) (0.010056071499999986) (0.010162722499999999) (0.010161174500000009) (0.010270870500000001) (0.010007482500000012) (0.010142271500000008) (0.010085212999999996) (0.010679834500000013) (0.010508909499999997) (0.010133863499999993) (0.010422550000000017) (0.010358909999999985) (0.010210366499999998) (0.010229376999999998) (0.010152801000000003) (0.01049465849999999) (0.01050424949999998) (0.010262662500000005) (0.010460178500000014) (0.010321016499999988) (0.010337349499999995) (0.010237114000000005) (0.01086888400000001) (0.010549200500000008) (0.010534204000000005) (0.01058939099999999) (0.010436311500000003) (0.01045175000000001) (0.010408030499999998) (0.010522683000000005) (0.010643488500000006) (0.010402357000000001) (0.010706259999999995) (0.010572558999999995) (0.0105735) (0.010480859500000009) (0.010411926000000002) (0.010417727000000002) (0.01044252100000001) (0.01067383700000002) (0.010492386500000006) (0.010856005500000002) (0.010518312000000002) (0.010773053000000005) (0.010995057499999988) (0.0105479785) (0.010716468500000007) (0.010158728999999991) (0.010056011000000004) (0.0100780855) (0.01021118900000001) (0.009979376499999984) (0.010050749500000011) (0.010231769500000001) (0.01000487600000001) (0.010213359499999991) (0.010217196500000011) (0.0102729545) (0.01025116849999999) (0.010356811000000007) (0.010180395999999994) (0.010160305999999994) (0.010072481999999994) (0.010194741000000007) (0.010071684999999997) (0.010204962000000012) (0.009929700999999999) (0.010018530999999997) (0.00998896199999999) (0.0100478705) (0.010057593500000003) (0.010140720499999992) (0.010298874500000013) (0.01034818600000001) (0.010115504499999997) (0.010226950999999998) (0.010366384500000006) (0.010039797500000003) (0.010198094000000005) (0.010441290500000006) (0.010318880999999988) (0.010320724000000003) (0.010431451000000008) (0.010388652499999998) (0.010746541500000012) (0.010406869499999999) (0.01045507150000001) (0.010462422499999999) (0.010379281000000004) (0.010586396499999998) (0.010546543499999991) (0.010261169) (0.01050200200000001) (0.010432273999999991) (0.010544853000000007) (0.010417915) (0.010409685500000002) (0.010341481) (0.010394610999999998) (0.01045826100000001) (0.010464760000000004) (0.0105253275) (0.01045057299999999) (0.010476129000000015) (0.010288189000000003) (0.010679900000000006) (0.010434605999999999) (0.010560661999999998) (0.010811733000000004) (0.010476838000000002) (0.010652062500000004) (0.01030967599999999) (0.010319732999999998) (0.01045103800000001) (0.010266551999999984) (0.009930537000000003) (0.010042362999999999) (0.010100178500000001) (0.010061345999999999) (0.010282798499999996) (0.010265922999999996) (0.010195151) (0.01001841249999999) (0.010215678500000006) (0.010181539999999989) (0.01041760400000001) (0.010182089499999991) (0.010167322000000006) (0.009945232999999998) (0.010035460499999996) (0.010100062499999993) (0.010182963500000003) (0.010228320000000013) (0.010359487) (0.011155896499999998) (0.010233048000000008) (0.010058710499999998) (0.010182261499999998) (0.010264699000000002) (0.010452508499999999) (0.010527880000000003) (0.010082464) (0.010086970000000015) (0.010390004999999994) (0.010691251499999999) (0.010192357499999985) (0.010470970999999996) (0.010603514000000008) (0.010270068000000007) (0.010375340499999997) (0.010407076000000001) (0.010363773000000007) (0.010357968500000009) (0.010511173500000012) (0.0106064315) (0.010432234999999998) (0.010633012499999997) (0.010518485000000008) (0.010560616999999994) (0.010396822) (0.010366829999999994) (0.010489523000000014) (0.010460624000000002) (0.010503394499999999) (0.010586329999999991) (0.010311807000000006) (0.01053926799999999) (0.011139695000000005) (0.01062035800000001) (0.010801595499999997) (0.010484096999999998) (0.010655323000000008) (0.01065110449999998) (0.010401486000000001) (0.010423354499999996) (0.010118975500000002) (0.010262972500000009) (0.010185151999999989) (0.010132890500000005) (0.010053174000000012) (0.010197027500000025) (0.010165946000000009) (0.010110890499999997) (0.009985117500000001) (0.0101922775) (0.010286244000000014) (0.010305046000000012) (0.010001780500000002) (0.010056122999999986) (0.0103407935) (0.010066435999999998) (0.01011417349999999) (0.01000839100000002) (0.01011060200000001) (0.010044883000000004) (0.010503521499999988) (0.010300313999999991) (0.01025968499999999) (0.010272619499999996) (0.010324537500000008) (0.01014749849999999) (0.010180547499999998) (0.010150921000000007) (0.010238954500000008) (0.010265828000000005) (0.01052513849999999) (0.010184542500000004) (0.010304764499999994) (0.010380802500000008) (0.010368646999999995) (0.0104654775) (0.010295384000000005) (0.010309447500000013) (0.010395615999999996) (0.01056931600000001) (0.010474348499999994) (0.010603793) (0.010494505500000015) (0.0105211885) (0.010575138999999997) (0.010840648999999994) (0.010548163999999999) (0.010612553499999997) (0.010499139500000004) (0.010415279) (0.010413305999999983) (0.010274768500000003) (0.010497578499999993) (0.01051830799999999) (0.01030555050000001) (0.010359149499999998) (0.010535153499999991) (0.01054361550000002) (0.010515731) (0.010514693000000006) (0.01081385750000001) (0.010791634000000008) (0.010553549499999995) (0.010715876499999999) (0.0100248525) (0.010070679499999999) (0.010128329000000005) (0.010096472499999995) (0.009990774500000008) (0.010073907499999993) (0.010212361000000017) (0.010124035000000003) (0.010312364500000018) (0.010379501999999985) (0.010111784999999998) (0.010141153000000014) (0.010271541999999995) (0.01019436949999998) (0.010119014499999995) (0.010440744999999987) (0.010126886499999987) (0.010115777500000006) (0.010264408999999988) (0.010263624499999999) (0.010458197499999988) (0.010155635499999996) (0.010285260500000004) (0.010010437999999997) (0.010444667500000004) (0.01037711999999999) (0.010356458000000013) (0.010256335500000005) (0.010217492000000009) (0.010285938000000008) (0.010104468500000019) (0.010368122500000007) (0.010571968500000015) (0.010505523999999988) (0.010446678000000001) (0.010581132000000007) (0.010466652500000007) (0.01038019300000001) (0.010539824500000003) (0.010484992999999998) (0.010643769500000011) (0.010422167999999982) (0.010549913499999994) (0.01063154849999999) (0.010629758500000003) (0.010523233499999993) (0.010551311000000008) (0.010606987499999998) (0.010515673000000003) (0.010439952500000002) (0.010458207499999997) (0.010534860500000007) (0.010591562499999999) (0.010577657500000004) (0.01044139849999999) (0.010206368500000007) (0.010678181999999994) (0.010506594499999994) (0.010755942500000004) (0.010489572000000003) (0.0106996585) (0.010723359999999987) (0.010514759500000012) (0.010379706500000002) (0.010316919999999993) (0.010042383500000002) (0.01005209550000001) (0.010286303999999996) (0.010189122499999995) (0.010091016500000008) (0.010141035500000006) (0.010153922999999995) (0.010099638500000008) (0.009919671000000005) (0.010450170499999994) (0.010221278000000014) (0.010225810499999988) (0.010202635000000002) (0.010137277999999986) (0.010145049500000003) (0.01001018749999999) (0.010036717499999986) (0.010139476000000008) (0.009955640500000015) (0.010199619999999993) (0.0098947635) (0.010082089000000002) (0.010130601000000003) (0.010151713499999993) (0.010269347499999998) (0.010054207999999995) (0.010158890500000003) (0.010144130000000001) (0.010345169500000001) (0.01018797099999999) (0.01005324349999999) (0.010741458499999995) (0.010184910999999991) (0.010452067499999995) (0.010254786499999988) (0.010249314500000009) (0.010678912999999998) (0.0103742) (0.010283689000000013) (0.010394000000000014) (0.010460141999999992) (0.010542431000000005) (0.010414254999999997) (0.010322047000000015) (0.010539637500000004) (0.010511694500000016) (0.01062038350000001) (0.010403420999999996) (0.01045349399999998) (0.0103604645) (0.01054881349999999) (0.010652725000000002) (0.010282363500000002) (0.010431952499999994) (0.010451177499999992) (0.010578476500000017) (0.010451858499999994) (0.0106893235) (0.0106634595) (0.010701032499999985) (0.010568543) (0.010572694999999993) (0.01043393200000002) (0.010150202999999997) (0.010238074000000014) (0.010086409500000004) (0.010037590999999998) (0.010085119500000017) (0.00997337999999999) (0.010028591999999989) (0.010087974) (0.010132856999999995) (0.010298659500000001) (0.010209185499999995) (0.010065472999999991) (0.010009920000000005) (0.010349924499999996) (0.010394242999999997) (0.010134209499999977) (0.010192599499999996) (0.009960235999999997) (0.010306115000000005) (0.010011954000000003) (0.010223069000000001) (0.010041047999999997) (0.009919921999999998) (0.010061019000000004) (0.01010941) (0.01026680449999999) (0.010155115500000006) (0.010178542499999998) (0.0101163695) (0.010165209999999994) (0.01032821199999999) (0.010100085999999994) (0.0105329745) (0.010653145500000002) (0.01046104299999999) (0.010438861000000008) (0.010337004999999996) (0.010409002000000014) (0.010590892500000004) (0.010354122500000007) (0.010575584999999998) (0.01054139350000001) (0.010707232000000011) (0.010384426500000016) (0.010359564500000001) (0.010544224500000005) (0.010474676500000002) (0.010306971500000012) (0.010472085999999992) (0.010605545500000008) (0.010209809) (0.010872004500000004) (0.010270426500000013) (0.010623460500000001) (0.010354610999999986) (0.010385965999999996) (0.010713954999999997) (0.010532330500000006) (0.010782228500000005) (0.010529771000000007) (0.010709652) (0.010810461000000007) (0.010807134999999995) (0.010696122499999988) (0.010202394500000003) (0.010145395500000001) (0.010178376500000003) (0.010071719500000006) (0.01007619650000001) (0.0102368595) (0.010257779499999994) (0.010078708000000006) (0.010069432000000003) (0.01027754950000001) (0.010282152500000002) (0.010357740500000004) (0.010276201499999998) (0.01028626399999999) (0.010203993000000022) (0.01049651850000001) (0.010092503500000002) (0.009909654500000004) (0.009987583499999994) (0.010151848000000005) (0.010245695999999999) (0.01021461650000001) (0.009984042999999998) (0.010341587) (0.010115599000000003) (0.010333292499999994) (0.010379871499999999) (0.01021271) (0.010365761999999987) (0.010321104999999997) (0.010101725999999991) (0.010136093000000013) (0.010243944500000005) (0.010502789499999998) (0.0102627245) (0.0103955315) (0.01035056899999999) (0.010337519000000003) (0.010395755500000006) (0.010568115500000003) (0.010618607500000002) (0.010402957500000004) (0.010941408500000013) (0.01059484699999999) (0.010361493999999999) (0.01054197450000001) (0.010605687999999988) (0.010625120500000015) (0.010363708) (0.010529833500000016) (0.010368264000000002) (0.0102387335) (0.010398222000000013) (0.010514475499999995) (0.010414824000000003) (0.010299473000000017) (0.010662998000000007) (0.010628790499999999) (0.01062930899999999) (0.01050396499999999) (0.010440347999999988) (0.010460295500000008) (0.0107726935) (0.0103997765) (0.010095928500000004) (0.010152224999999987) (0.010152838499999997) (0.010198974999999999) (0.010203699999999996) (0.010088266499999998) (0.010138790000000009) (0.0100621865) (0.010322362500000001) (0.010104304000000008) (0.010202053500000002) (0.01045238350000001) (0.010042007999999991) (0.010075747499999996) (0.010257508500000012) (0.010304794000000006) (0.010170657500000013) (0.010340928) (0.010067638000000004) (0.010249495499999997) (0.010088720999999995) (0.010097960999999989) (0.010286690499999987) (0.009984258999999981) (0.010218019000000009) (0.010347440500000013) (0.010054057499999991) (0.010269524999999988) (0.010207013000000001) (0.010328461999999983) (0.010276306000000013) (0.010269259000000003) (0.010351896499999999) (0.010568755499999999) (0.01066927450000002) (0.010466291500000002) (0.010340512000000024) (0.010434092999999992) (0.010616927999999998) (0.010552921500000007) (0.010633763000000004) (0.010547230000000005) (0.010543070499999987) (0.010515997999999985) (0.010519183000000001) (0.010500681999999997) (0.010414532500000004) (0.010697712499999998) (0.010492219499999997) (0.010767619500000006) (0.010342249500000011) (0.010918637499999995) (0.010477300999999994) (0.010592426000000002) (0.01102476799999999) (0.010624255499999999) (0.010688597999999994) (0.010474290499999997) (0.010658176000000005) (0.010604731000000006) (0.010515133499999982) (0.010432536999999992) (0.010507474000000003) (0.010571149000000002) (0.010007464500000021) (0.0102239945) (0.009860035999999989) (0.010000804000000002) (0.010030640999999993) (0.009975438500000003) (0.010110047000000011) (0.010132244999999998) (0.010097541000000002) (0.010020123999999991) (0.010144522500000003) (0.010190852) (0.010175387000000008) (0.0102584545) (0.0100463955) (0.010342074999999992) (0.00988564900000001) (0.0100230085) (0.009873743500000004) (0.010165630499999995) (0.010234169500000001) (0.00992237550000001) (0.010169284) (0.009903892500000011) (0.009968681999999993) (0.01021064449999999) (0.010123591000000015) (0.010350631499999999) (0.010371842500000006) (0.01004540100000001) (0.010242722999999995) (0.010219946500000007) (0.010296567999999992) (0.01028017149999999) (0.010286809000000008) (0.010576506999999999) (0.010176158500000004) (0.010232504500000003) (0.010345853499999988) (0.01024441949999999) (0.01050954150000001) (0.010388873499999993) (0.010489625000000002) (0.010474429000000007) (0.010429478500000006) (0.010337431500000008) (0.010767999) (0.010748162999999991) (0.010415336499999997) (0.010307808500000015) (0.010488866) (0.010248468999999996) (0.010330025500000006) (0.010407454999999982) (0.010387578500000008) (0.010232993499999996) (0.010319608999999993) (0.01045774549999999) (0.010579758500000008) (0.010681476500000009) (0.010624308499999999) (0.010454801499999986) (0.010808465000000003) (0.010447734) (0.010017146500000004) (0.010032970000000016) (0.010208742999999992) (0.010125100500000012) (0.0103270055) (0.010016162500000009) (0.010125841499999982) (0.01016705100000001) (0.010643164499999996) (0.009975393499999999) (0.010233618) (0.010198387000000003) (0.010333847499999993) (0.010099733) (0.010257819000000001) (0.010224160499999996) (0.010137072499999997) (0.009968246499999986) (0.009990425999999997) (0.01012369099999999) (0.010244379000000012) (0.010028029999999993) (0.009895482499999997) (0.00997141900000001) (0.010210615499999992) (0.010035720000000012) (0.010259552000000005) (0.010323119999999991) (0.010327627499999978) (0.010207164500000004) (0.010181634999999994) (0.0099852265) (0.010308234999999999) (0.010232149499999996) (0.010462645500000006) (0.010495592499999998) (0.010434589000000008) (0.010575415000000005) (0.01036185249999999) (0.01016508549999999) (0.0104610745) (0.01035899350000001) (0.010616590999999995) (0.010494934500000011) (0.010527783500000013) (0.010608803499999986) (0.010827324499999999) (0.010537098499999994) (0.01027346350000001) (0.010406305000000005) (0.010625249500000003) (0.010253281000000003) (0.010503925499999997) (0.010527951000000008) (0.010273259500000007) (0.010292126499999998) (0.010638577499999996) (0.010561348999999998) (0.010777961000000003) (0.010735386000000013) (0.01058742750000001) (0.010460884000000004) (0.01081060099999999) (0.010699923500000014) (0.0102393925) (0.010008456999999985) (0.010297503000000013) (0.010379529499999998) (0.009983370000000005) (0.009930109499999992) (0.010004140500000008) (0.010319900999999992) (0.010175505999999987) (0.010128033000000009) (0.0102770695) (0.010136106499999992) (0.010213708500000002) (0.010049709000000004) (0.01016963400000001) (0.01020895500000002) (0.010140826500000005) (0.010150308999999996) (0.009852525000000015) (0.010111424999999993) (0.009966553000000003) (0.009850083999999995) (0.010135944000000008) (0.01030606199999999) (0.010069872000000021) (0.010201613499999998) (0.010191643499999986) (0.010212074500000001) (0.010195678499999986) (0.010636012000000014) (0.010205796000000003) (0.010065815500000005) (0.010358533000000003) (0.010390862) (0.010588464999999991) (0.010617163499999999) (0.010361470999999997) (0.010334225500000002) (0.010542326500000004) (0.010647031999999987) (0.010500935500000003) (0.010490089500000008) (0.010421322999999996) (0.010602071500000004) (0.010484217500000004) (0.010529904500000006) (0.01057187749999998) (0.01096602649999999) (0.010381675000000007) (0.010421750499999993) (0.01034246200000001) (0.010445918500000012) (0.010630735500000002) (0.010582755999999999) (0.010342705999999993) (0.010511580500000006) (0.010584382500000003) (0.010480287000000005) (0.01053817800000001) (0.010506066500000008) (0.0106916445) (0.010385465999999996) (0.010578612500000015) (0.010499352000000003) (0.010092168499999984) (0.010086445999999999) (0.010393035000000009) (0.010253231000000002) (0.010115782000000018) (0.010031149999999989) (0.010064524000000005) (0.01004234000000001) (0.010107407999999984) (0.010181259000000012) (0.010250562000000005) (0.01032951) (0.010208020499999984) (0.010255529) (0.010490539000000007) (0.010243274999999982) (0.010224457500000006) (0.010516462500000004) (0.010165784499999997) (0.0102835815) (0.010195099) (0.010688017499999994) (0.010230961499999996) (0.010193797500000004) (0.010411267000000002) (0.010310011499999994) (0.010473702500000001) (0.010689330499999997) (0.010159028499999986) (0.010385923500000005) (0.010258033000000014) (0.010370151499999994) (0.010436090500000009) (0.010549688500000001) (0.010640746999999992) (0.010450137499999998) (0.0105320255) (0.010339366500000016) (0.010415746000000004) (0.010573647499999991) (0.010474704000000001) (0.010333562500000004) (0.010694882500000003) (0.010453711000000004) (0.010695716999999993) (0.010626772999999992) (0.010732000499999991) (0.010676480500000002) (0.010356496500000006) (0.010349199999999989) (0.010575912000000007) (0.010555169999999989) (0.010482753500000011) (0.010508076500000005) (0.010742328499999995) (0.010681621000000002) (0.010710851500000007) (0.010470683999999994) (0.010532770499999997) (0.010610195500000003) (0.010547787500000003) (0.010680056999999993) (0.010668174499999988) (0.010613790499999998) (0.010119582999999988) (0.01039696700000002) (0.010107050499999992) (0.010172802000000009) (0.009993377999999997) (0.010187954000000013) (0.010059383500000005) (0.009971631500000008) (0.010175195500000012) (0.010036029499999988) (0.010336932500000007) (0.010110155999999995) (0.010213462000000006) (0.010033304999999992) (0.010131107999999986) (0.010000082500000007) (0.009895903499999997) (0.010085597500000015) (0.010009911999999996) (0.010025516499999998) (0.010083268500000006) (0.01033711150000001) (0.010104384000000008) (0.010055387000000013) (0.010253517000000004) (0.01023724949999999) (0.010043261499999998) (0.010216999000000004) (0.010391572499999988) (0.010208632499999995) (0.010307870999999996) (0.010261028500000005) (0.010216679000000006) (0.01041309700000001) (0.010296527499999986) (0.010446826500000006) (0.010934575000000002) (0.010229296500000012) (0.010451937000000008) (0.010360796500000005) (0.010327179000000006) (0.010443493500000012) (0.010638540500000002) (0.010723590500000019) (0.010440168500000013) (0.010453708500000006) (0.010475501999999984) (0.010494763500000004) (0.010410614500000012) (0.0104931375) (0.010456459999999987) (0.010487958999999991) (0.010396812000000005) (0.010381710499999988) (0.010328495499999993) (0.010306089000000004) (0.01040073250000001) (0.010615885499999991) (0.010597139000000005) (0.010625224000000003) (0.010504686) (0.010519901999999984) (0.010327001500000002) (0.0106207455) (0.010262408500000014) (0.010021326999999997) (0.009915243500000004) (0.010026138000000004) (0.010241941000000018) (0.010042834500000014) (0.0101496175) (0.010122959) (0.010034570499999992) (0.010162120999999996) (0.0103656855) (0.010185268499999983) (0.010269307000000005) (0.010318061999999989) (0.010189177500000007) (0.010238125) (0.00993827550000001) (0.010175020500000007) (0.009891446999999998) (0.009933342000000012) (0.010083648) (0.010186677000000005) (0.010418495) (0.010202448500000003) (0.010220051500000021) (0.01017322150000001) (0.010795665999999995) (0.01024585900000001) (0.010689281499999995) (0.010179394999999994) (0.010274801) (0.010041290999999994) (0.010291875499999992) (0.010743529000000016) (0.010405801999999992) (0.010335668500000006) (0.010387069499999999) (0.01047984199999999) (0.010437062999999996) (0.010429415499999997) (0.010660232500000005) (0.010542569000000002) (0.011379134499999985) (0.0103927875) (0.010473352000000005) (0.010746735999999993) (0.010622528500000006) (0.010722411999999987) (0.010626866499999998) (0.01060991850000001) (0.010339408499999994) (0.010541862999999999) (0.01051041350000001) (0.010471961500000002) (0.010204160000000004) (0.010337904500000009) (0.01071781649999999) (0.010955881) (0.010780192000000008) (0.010609191500000018) (0.010740818499999985) (0.010595568999999999) (0.010454407500000013) (0.01075239) (0.009917035500000004) (0.01008494) (0.010222033000000005) (0.010161689000000002) (0.009982917999999993) (0.009979697999999995) (0.010027145499999987) (0.010194996999999997) (0.010155733499999986) (0.01040741249999999) (0.010145102499999989) (0.010197066500000004) (0.010145905999999996) (0.010202516499999995) (0.010357211500000005) (0.01017543500000001) (0.010274922500000006) (0.009975251500000004) (0.009910070000000007) (0.010088058999999996) (0.01022079499999999) (0.010574792) (0.010210538500000005) (0.010103892500000003) (0.010257446500000003) (0.010492344000000015) (0.010102045000000018) (0.010150326999999987) (0.010298708500000003) (0.010395575000000004) (0.010100448499999984) (0.010182663999999994) (0.0104702235) (0.01040435449999999) (0.010662347500000002) (0.01053109699999999) (0.010344693500000002) (0.010338831999999992) (0.01033825749999999) (0.010677630499999993) (0.010664451500000019) (0.010462996000000002) (0.0104821415) (0.010391534000000008) (0.010546121500000005) (0.010510877000000002) (0.010556081499999995) (0.010351070500000004) (0.01033215500000001) (0.010459374500000007) (0.010466232499999992) (0.01034331799999999) (0.010350759000000001) (0.010442668000000002) (0.010410434999999996) (0.01048752850000001) (0.010889152) (0.010701917499999991) (0.01036788999999999) (0.010450525499999988) (0.010658035499999996) (0.010570358500000002) (0.010504703000000004) (0.010727985999999995) (0.010011154999999994) (0.010128626500000001) (0.010134347000000002) (0.010090897000000001) (0.010277271000000004) (0.010177208999999993) (0.010185898500000012) (0.010083605999999995) (0.010318816499999994) (0.010430944000000011) (0.01010878350000001) (0.010254003499999997) (0.010295744499999981) (0.010031153000000001) (0.010731125500000008) (0.01016458349999999) (0.010411634000000003) (0.01023044649999999) (0.009946115499999991) (0.010099429999999993) (0.009952913500000007) (0.010118763000000003) (0.010045864999999987) (0.010405962500000004) (0.010299383499999995) (0.010353937000000007) (0.010251115499999991) (0.010159992500000006) (0.010400476000000006) (0.010087009999999993) (0.010066211000000005) (0.010359070499999998) (0.01064061999999999) (0.010538928500000003) (0.01020553099999999) (0.010304746000000004) (0.010556376999999992) (0.010564345000000003) (0.01043379350000001) (0.010176688500000003) (0.010599033499999994) (0.010612901499999994) (0.010536338500000006) (0.010708335499999999) (0.010467651000000008) (0.010567758999999996) (0.010274994499999995) (0.010471917499999997) (0.010779966000000002) (0.010395936999999994) (0.010410479) (0.010423186000000001) (0.010491531000000012) (0.01042955050000001) (0.0103344685) (0.010344445999999993) (0.010697550000000014) (0.010612378499999991) (0.010561492499999992) (0.010554530000000006) (0.010460691500000022) (0.010597379500000018) (0.010978121500000007) (0.010647434499999997) (0.010011679999999995) (0.010080822000000003) (0.009981110500000001) (0.01023727599999999) (0.010001275500000004) (0.010165295000000005) (0.010058138499999994) (0.010002458000000006) (0.010131479500000012) (0.010009093499999996) (0.010122119499999999) (0.010183126) (0.010036941499999993) (0.010285349499999999) (0.01015640999999999) (0.010007580500000002) (0.010137920500000008) (0.009956949499999992) (0.010137065) (0.010219736500000007) (0.010132397000000001) (0.010235734499999996) (0.010192263000000007) (0.010085277500000003) (0.010214860500000006) (0.010161305499999995) (0.010286501999999989) (0.010491674499999992) (0.010241758000000004) (0.010198532999999996) (0.01020608499999999) (0.010300787999999991) (0.01031042) (0.010865035499999995) (0.010219429500000002) (0.010509105000000005) (0.010456606000000007) (0.010399645999999999) (0.010261991500000012) (0.010579064000000013) (0.010407566499999993) (0.010579549999999993) (0.010454252999999983) (0.010600444) (0.010578984) (0.01053425849999999) (0.010559632999999999) (0.01066188600000001) (0.010343336500000008) (0.010465577500000017) (0.010523786500000007) (0.010292622500000015) (0.01053670050000001) (0.010435775499999994) (0.01042088649999999) (0.010522294000000001) (0.010594536500000001) (0.010606849000000002) (0.010585700999999989) (0.010698948500000013) (0.010665859999999985) (0.010741412999999991) (0.010582021499999997) (0.010460015000000003) (0.009967230000000007) (0.010001161499999994) (0.010352569500000006) (0.010142521500000001) (0.010159677000000006) (0.010303407499999986) (0.010321765499999982) (0.009997476000000005) (0.010446936000000004) (0.0101133365) (0.010503252500000004) (0.010243781500000007) (0.01018857749999999) (0.0101146825) (0.01018906550000001) (0.01016742100000001) (0.010280263500000011) (0.010135777999999998) (0.00999496250000001) (0.010114777000000005) (0.009966445500000004) (0.01015023900000002) (0.010144487499999993) (0.010050189500000015) (0.010430195500000003) (0.010211057999999995) (0.010245217000000001) (0.010301856499999998) (0.010271225499999995) (0.010329841499999992) (0.010341385500000008) (0.01054039200000001) (0.010535961500000024) (0.010366084500000011) (0.010422995000000004) (0.010270833000000007) (0.010453952000000002) (0.010642489000000005) (0.010427361499999996) (0.010514082999999994) (0.010453832499999996) (0.010436632000000001) (0.010463847999999998) (0.010557253000000003) (0.01070772149999999) (0.010698697000000007) (0.010531178499999988) (0.010717722000000013) (0.010556266499999994) (0.010536961000000011) (0.010416576999999996) (0.010562186000000001) (0.010426465499999996) (0.01073498349999999) (0.010384488999999997) (0.0104753385) (0.010527620000000001) (0.010871620000000012) (0.010467477500000003) (0.010602727000000006) (0.010527940999999999) (0.010563923000000003) (0.01051780699999999) (0.010594790000000007) (0.010006153000000004) (0.010090729999999992) (0.010183616500000006) (0.010070379000000004) (0.010068378000000003) (0.0103675825) (0.010241529500000013) (0.01011865699999999) (0.010189275999999997) (0.010314452999999987) (0.010290080999999993) (0.010554196000000002) (0.010463126999999989) (0.010131920500000002) (0.010521096999999993) (0.010222873000000007) (0.01031378899999999) (0.009953981499999986) (0.010020242499999998) (0.010230256500000007) (0.010432955000000008) (0.010249168500000017) (0.01032837049999999) (0.010535564499999997) (0.0102094135) (0.010461934499999992) (0.010274654499999994) (0.010492585999999998) (0.010382333499999993) (0.01022895750000001) (0.010390375000000007) (0.0101636415) (0.010392826500000008) (0.010344805999999998) (0.010391053999999983) (0.010451205500000019) (0.0102774105) (0.010515541999999989) (0.010245336500000007) (0.010394269999999997) (0.010421484500000008) (0.010761761000000009) (0.010479864000000005) (0.010465791000000002) (0.010870233499999993) (0.010699953499999998) (0.010499205499999997) (0.010382488499999995) (0.010672244499999997) (0.010459110500000007) (0.010440815499999992) (0.010589082) (0.010620770000000002) (0.010410724999999982) (0.010344794500000018) (0.010641060999999993) (0.01069808350000001) (0.010594050000000008) (0.010649277999999984) (0.010422993000000005) (0.010744737500000004) (0.010525190000000004) (0.010499234999999996) (0.0104550895) (0.010094218500000002) (0.010179395499999994) (0.010340609) (0.010143422999999999) (0.010119222499999997) (0.010002128999999998) (0.010034060000000011) (0.010159748499999996) (0.010253469499999987) (0.010521891999999991) (0.010293332000000002) (0.010204668000000014) (0.010631029) (0.010273485999999998) (0.010314391499999992) (0.010107125500000008) (0.010389363999999998) (0.010192051999999993) (0.010240737499999986) (0.01026866899999998) (0.010426569999999996) (0.010112208499999997) (0.010395592499999995) (0.01032159149999999) (0.010217211000000004) (0.010286248499999998) (0.01037845250000001) (0.010109491499999984) (0.010286853499999998) (0.010194468500000012) (0.010270548500000004) (0.010477306500000005) (0.010374459000000016) (0.010406011500000006) (0.010452106500000016) (0.010372976500000006) (0.010538829) (0.010464381000000009) (0.010436468000000004) (0.010186880499999995) (0.010808771999999994) (0.010560220499999995) (0.010498499500000008) (0.010476021500000002) (0.01086548050000001) (0.010600171000000005) (0.010592343500000004) (0.01061176250000001) (0.010461600500000015) (0.010410852499999998) (0.010732896499999992) (0.010617366999999989) (0.010716107999999988) (0.010650568500000013) (0.010548057999999999) (0.010399216000000003) (0.010819007499999991) (0.010501618500000004) (0.010515004500000008) (0.010858928500000004) (0.010522098000000008) (0.010680034500000005) (0.010477429500000024) (0.010529830000000004) (0.010113255000000002) (0.010085744999999993) (0.010100697500000005) (0.010131294999999985) (0.010239896999999998) (0.010144780499999992) (0.01006322300000001) (0.010196053499999996) (0.010198265000000012) (0.010145319) (0.010265094000000002) (0.010104242499999999) (0.010068770000000005) (0.010107501500000005) (0.01021122449999999) (0.010393610500000011) (0.010157580499999999) (0.009994587999999999) (0.010054098500000011) (0.01033381450000001) (0.010165373000000005) (0.010125411) (0.010113462000000004) (0.01023593149999999) (0.010116662999999998) (0.010071225500000003) (0.010285183000000003) (0.010104805499999994) (0.0099817715) (0.010273084000000002) (0.010053025000000007) (0.010271673499999995) (0.0104544845) (0.010324393500000015) (0.010463038500000008) (0.010487490000000002) (0.010403185999999995) (0.010532487499999993) (0.010223912000000016) (0.010499636499999992) (0.01056687449999999) (0.010467868000000005) (0.010400145999999999) (0.010677457500000001) (0.010727142499999995) (0.010349209999999998) (0.010515197000000004) (0.010655833500000003) (0.010477238) (0.010850163999999995) (0.01050506150000001) (0.010628875999999995) (0.010812978) (0.010374984500000003) (0.010418367500000011) (0.010386423499999978) (0.010554456000000018) (0.010670758499999988) (0.010800325999999999) (0.010439577000000005) (0.010867190500000012) (0.01058042649999999) (0.010645461499999995) (0.010656873499999997) (0.010098604499999997) (0.010173355499999995) (0.010196847499999995) (0.010224044500000001) (0.010537777499999998) (0.010223412999999987) (0.010470412000000012) (0.01025778649999999) (0.010229817500000002) (0.010187225500000008) (0.010244483000000013) (0.010295049) (0.010351966000000004) (0.010397264500000003) (0.010111931000000005) (0.010230471000000005) (0.010192384499999999) (0.010164193000000002) (0.010182200000000002) (0.010121327500000013) (0.010177895000000006) (0.010035817000000002) (0.010055677999999998) (0.010015391499999998) (0.010146601000000005) (0.010211581500000011) (0.01026058199999999) (0.010194862499999999) (0.010081667000000016) (0.010147809000000008) (0.010209712499999982) (0.010334039000000003) (0.010355949500000003) (0.010278007499999992) (0.010332448000000008) (0.010310511500000008) (0.010654368999999997) (0.010545285000000001) (0.010240088000000008) (0.010537936000000012) (0.010695369499999996) (0.010543741499999995) (0.010538830500000013) (0.01040357750000001) (0.010808831000000005) (0.010530086000000022) (0.010616469500000003) (0.01035873100000001) (0.010416081499999993) (0.010625403499999991) (0.010384477000000003) (0.010397440999999993) (0.010267147000000004) (0.010549203999999993) (0.010334606999999996) (0.010286645499999997) (0.010699288500000001) (0.010900720000000003) (0.0106316345) (0.010412642000000014) (0.010717986499999999) (0.01051527050000002) (0.01049709) (0.010493383499999995) (0.010401396999999993) (0.010156896499999998) (0.010200679000000004) (0.010061354999999994) (0.010049964499999994) (0.0099536145) (0.010151962) (0.010471280999999999) (0.010370193000000014) (0.010352539500000008) (0.010136179500000009) (0.010381187000000014) (0.01041975249999999) (0.010271656500000004) (0.010164523499999994) (0.010673076500000003) (0.010031350499999994) (0.010265296999999993) (0.010023013500000011) (0.0099802945) (0.010089624499999991) (0.010549572499999993) (0.010103411500000006) (0.010151561000000003) (0.010173799999999997) (0.010070112500000006) (0.01011944699999999) (0.010191801) (0.010125512000000003) (0.0101399915) (0.010078308499999994) (0.010403217499999992) (0.010365356000000006) (0.010439156000000005) (0.010327905499999998) (0.010203881499999984) (0.010583173000000001) (0.01050522999999999) (0.010447494999999987) (0.01029870699999999) (0.010632100999999991) (0.010776398500000006) (0.010455605000000007) (0.010776254999999998) (0.010665607999999993) (0.010564698499999997) (0.010866646000000008) (0.010561645000000008) (0.010285106000000016) (0.010508849) (0.010470587999999989) (0.01055201800000001) (0.010401926499999992) (0.010449049500000002) (0.010528825500000005) (0.010281469500000001) (0.010572484499999993) (0.010368165499999998) (0.011024971999999994) (0.010548788000000003) (0.010608361999999996) (0.01048441700000001) (0.010769715499999999) (0.0105049745) (0.010088207500000002) (0.010066100500000008) (0.010157554) (0.010020987500000009) (0.010292955500000006) (0.010243417500000004) (0.010140261999999997) (0.010005173999999992) (0.010633423000000003) (0.01041814349999999) (0.010235932500000003) (0.010405746000000007) (0.01048902950000001) (0.010405893999999999) (0.01037602) (0.010356727999999996) (0.01044871600000001) (0.009993686500000001) (0.010350923499999998) (0.010464263000000001) (0.010028239500000008) (0.010151694999999988) (0.010270852499999997) (0.010171749499999994) (0.010409726499999994) (0.010263808500000013) (0.010402648499999986) (0.010334122999999987) (0.010243004000000014) (0.010453512499999998) (0.010308235500000013) (0.010282864000000003) (0.010407854000000008) (0.010583179499999998) (0.01581316699999999) (0.010474853499999992) (0.010454393499999992) (0.010636529500000005) (0.010872998500000008) (0.012431211499999997) (0.010717260499999992) (0.010666468499999998) (0.010595564000000002) (0.010417655499999998) (0.010501347499999994) (0.010427050999999993) (0.010749316499999995) (0.0104704625) (0.010324666999999996) (0.010503129500000014) (0.010653837499999999) (0.010529346999999994) (0.011071341499999984) (0.010398545000000009) (0.010452784999999992) (0.01041221349999999) (0.010580390000000009) (0.010724662499999996) (0.01067943099999999) (0.010418834999999987) (0.010622960500000014) (0.010506918500000004) (0.010643396) (0.010655600000000001) (0.010281759500000001) (0.009909578999999988) (0.010316630500000007) (0.010117635) (0.01042630750000001) (0.01015584) (0.010163828) (0.010268767499999998) (0.010066962999999998) (0.010303501999999992) (0.010362517000000016) (0.010238325000000006) (0.010214571500000005) (0.010317854000000001) (0.010229383499999994) (0.010085958999999992) (0.010231981500000015) (0.010015161499999994) (0.010122548500000009) (0.010055215000000006) (0.00998383700000001) (0.010221099499999997) (0.010349010499999992) (0.009921661499999998) (0.010199625000000004) (0.010214333000000006) (0.010172149499999991) (0.010074615999999995) (0.010409609999999986) (0.010186927500000012) (0.010278456499999977) (0.010760404000000001) (0.010427190500000003) (0.010298514500000008) (0.010391999499999999) (0.010260709000000007) (0.010374363500000011) (0.010145549000000004) (0.01063168199999999) (0.010395708000000004) (0.010497458999999987) (0.010413935000000013) (0.01047466100000001) (0.010489842) (0.010304650999999998) (0.010864846000000011) (0.010407709000000001) (0.0106637495) (0.010522017500000008) (0.01031798049999999) (0.010281252500000004) (0.010330866499999994) (0.010251774000000005) (0.010445220000000005) (0.010341237499999989) (0.010371375000000002) (0.010641577999999985) (0.010487763499999997) (0.01063539899999999) (0.0107309805) (0.010808524) (0.010626144000000004) (0.010564155500000005) (0.010493395000000003) (0.010037988000000012) (0.010102273000000009) (0.010071589500000006) (0.010100161499999982) (0.009972162500000006) (0.010220476500000006) (0.01050693450000001) (0.010113110999999994) (0.010093915000000009) (0.010223210499999996) (0.010279788999999998) (0.010101248500000007) (0.0104103465) (0.010251692999999992) (0.010427661500000004) (0.010115269999999996) (0.010320229) (0.010125836) (0.010084916) (0.010249307) (0.010245294999999988) (0.010311711999999987) (0.010258611) (0.010189943000000007) (0.010381520499999991) (0.010078372999999988) (0.010265387000000015) (0.01019006950000001) (0.010365214500000011) (0.010092255499999994) (0.0103905735) (0.010262035000000003) (0.010497404500000002) (0.010333068499999987) (0.010469404500000001) (0.010516912500000003) (0.01043456999999999) (0.010643515000000006) (0.010175353999999998) (0.010489592500000006) (0.010491552999999987) (0.010373569999999985) (0.010300630000000005) (0.010520411499999993) (0.010611497499999997) (0.010624517) (0.010664149500000011) (0.010566260999999993) (0.010495479000000002) (0.010618841500000004) (0.010421295499999997) (0.010243456999999997) (0.010596102499999996) (0.010451244999999984) (0.015363915500000005) (0.010679811000000011) (0.010609663500000005) (0.010657735000000015) (0.010581637000000005) (0.010594516499999998) (0.010483111500000003) (0.0105436535) (0.010607881) (0.010592830499999983) (0.010169141500000006) (0.010320711999999996) (0.010105218999999999) (0.0101879255) (0.010159737000000002) (0.009960030499999994) (0.010232363500000008) (0.010141011500000005) (0.010961460499999992) (0.0102022145) (0.010368777999999995) (0.01009937000000001) (0.0102567655) (0.010379170499999993) (0.010260849500000016) (0.010084729000000014) (0.009940677499999995) (0.010068414999999997) (0.009975345999999996) (0.010150279500000012) (0.01028837199999999) (0.010138166500000004) (0.010338435500000007) (0.010059105999999998) (0.010347400500000006) (0.010152146) (0.010260100999999994) (0.0100722065) (0.010331813499999995) (0.010251400999999993) (0.01022672749999999) (0.0102257085) (0.010472613499999991) (0.010375615500000004) (0.010319721500000004) (0.01040714849999999) (0.010381731500000005) (0.010332225999999986) (0.010438674999999994) (0.010525261499999994) (0.010495301499999984) (0.010515497000000013) (0.01070888099999999) (0.010406193000000008) (0.010617698499999995) (0.010418315500000011) (0.010523219499999986) (0.010325742500000012) (0.010538839500000008) (0.010575639999999997) (0.010302150999999996) (0.01050034200000001) (0.01042772950000001) (0.010586441999999988) (0.010335856500000004) (0.0103224165) (0.010515172999999989) (0.010721918499999997) (0.010594054499999991) (0.010648482) (0.0106739255) (0.01055705500000001) (0.010469114500000001) (0.010662384999999996) (0.010084986000000004) (0.010267403999999994) (0.010115962500000006) (0.010151744500000004) (0.010009900500000002) (0.010174947000000004) (0.0102280285) (0.010207362499999997) (0.010260623999999996) (0.010347987500000003) (0.010283840500000016) (0.010369198999999996) (0.010270559999999998) (0.010199426500000011) (0.010440587500000001) (0.010523068999999996) (0.010127681) (0.0104776335) (0.010290174) (0.010265536499999992) (0.010105592499999982) (0.010288833999999997) (0.010165361500000011) (0.010004311499999988) (0.010370689500000002) (0.010441684000000007) (0.010410427999999985) (0.010148268000000002) (0.010324910999999992) (0.01036148449999999) (0.01020476549999999) (0.010319090500000003) (0.010441152499999995) (0.010555672999999988) (0.010372534500000002) (0.010409548000000005) (0.010427574999999994) (0.010355977500000016) (0.010407089499999994) (0.010418927500000008) (0.010369360500000022) (0.010510356499999984) (0.010586306500000003) (0.010521326000000011) (0.010681147000000002) (0.01064460049999999) (0.010950841000000017) (0.010539420000000008) (0.010690590000000014) (0.010628498) (0.010398713000000004) (0.010649707499999994) (0.010528773499999991) (0.01071755299999999) (0.010451447000000003) (0.010362649000000002) (0.010487720999999992) (0.010542266499999994) (0.010720328000000001) (0.010609831500000014) (0.01053941500000001) (0.010510067499999998) (0.010577915500000007) (0.010858610000000005) (0.01003362599999999) (0.010144745999999996) (0.010243217499999999) (0.01023781850000001) (0.010062926999999985) (0.010076920000000003) (0.010066671999999999) (0.010032327999999993) (0.010203310999999993) (0.01027546900000001) (0.010369219499999999) (0.010255218499999996) (0.010037980500000016) (0.010253071500000002) (0.010343924500000004) (0.01020533600000001) (0.010214173499999993) (0.010228855499999995) (0.010174099000000006) (0.010180517) (0.0100574955) (0.010549920500000004) (0.010212825999999994) (0.009989325499999993) (0.009961032500000008) (0.010110897500000007) (0.010429814000000023) (0.010180566500000002) (0.010024630499999992) (0.010151581499999979) (0.010197442000000001) (0.010194391999999997) (0.010404999000000012) (0.010491032499999997) (0.01052496650000001) (0.010336857500000005) (0.010540546999999983) (0.010435322499999997) (0.010467810500000008) (0.010298282500000006) (0.010443889000000012) (0.010347453000000006) (0.010629856500000007) (0.010438324999999998) (0.01065284100000001) (0.010434911500000005) (0.010813085) (0.010330873500000004) (0.010259477500000003) (0.010690395499999991) (0.010372489499999998) (0.010499929499999991) (0.010507337499999991) (0.010259469500000007) (0.01024343599999998) (0.010472732499999998) (0.0103438265) (0.010586850000000009) (0.010365027500000012) (0.010343370000000005) (0.010546120499999978) (0.010796289) (0.010418978999999995) (0.010444703999999985) (0.010359735000000009) (0.010151635499999992) (0.01020797150000001) (0.010023407500000012) (0.010019331000000006) (0.009936993500000005) (0.010307590500000005) (0.010040031000000005) (0.010082792499999993) (0.010071579499999997) (0.010206595999999998) (0.010216674999999995) (0.01044911400000001) (0.010236052999999995) (0.010349335499999987) (0.010267152500000001) (0.010119920000000004) (0.010179202999999998) (0.010109562500000016) (0.010280235499999998) (0.010107788500000006) (0.010028948499999996) (0.009866407999999993) (0.010249711000000009) (0.010271599000000006) (0.010248583500000005) (0.010558767999999996) (0.010177463499999997) (0.010230418500000005) (0.010383834500000008) (0.010748671500000001) (0.01022401449999999) (0.010430146000000015) (0.0103618595) (0.010463402499999996) (0.010521959999999997) (0.010455861499999997) (0.010558719499999994) (0.010433475499999997) (0.0104941105) (0.010431918999999998) (0.01073537699999999) (0.010388840999999996) (0.010598082000000009) (0.0105198445) (0.010513030500000006) (0.010462167000000008) (0.010709891999999999) (0.010542740500000009) (0.01065741000000002) (0.010338015000000006) (0.010509695500000013) (0.010460443000000014) (0.010316232999999994) (0.010309212499999998) (0.010374885000000014) (0.010796051999999987) (0.010418347999999994) (0.010510245500000001) (0.010880470999999989) (0.010692854499999987) (0.010644201500000006) (0.010774011) (0.010503601500000015) (0.010240289499999986) (0.010188404500000012) (0.010228706500000004) (0.0100940385) (0.010362636999999994) (0.010115196499999993) (0.010442732499999996) (0.010317332000000012) (0.01033049150000001) (0.010304503500000006) (0.01012504950000001) (0.009985958499999989) (0.010173958499999997) (0.010126140500000005) (0.01064197850000001) (0.010471122999999999) (0.010094080000000005) (0.010095423000000006) (0.010143689500000011) (0.010101325000000008) (0.010353536999999996) (0.010013728999999999) (0.010402039999999987) (0.010256409500000008) (0.010326932000000011) (0.010247158500000006) (0.010309730500000003) (0.0102274475) (0.010128579999999998) (0.010065199499999997) (0.010065703499999995) (0.010210843000000011) (0.010308973500000013) (0.010508732500000006) (0.010292993) (0.010416201000000014) (0.010270641999999996) (0.01025329350000001) (0.010380789500000001) (0.010433811000000001) (0.01075063100000001) (0.010723557000000009) (0.010546211499999986) (0.010940451500000004) (0.010818811499999997) (0.010810048000000017) (0.010427784500000009) (0.010619055000000016) (0.010759253999999996) (0.010357945499999993) (0.010418201999999988) (0.01044705700000001) (0.010363893000000013) (0.010463943000000003) (0.010483700500000012) (0.010645215999999999) (0.010432329500000004) (0.010513130499999995) (0.010489382999999991) (0.010573177000000017) (0.01076720199999999) (0.01058861300000001) (0.010389960000000004) (0.010546274000000008) (0.010205828500000014) (0.010216669499999997) (0.010004220999999994) (0.010227672000000007) (0.010091481500000013) (0.010085246000000006) (0.010462131500000013) (0.010103506000000012) (0.010341354999999997) (0.010253719499999994) (0.01009009999999999) (0.010282301500000007) (0.010053121499999998) (0.010193540000000001) (0.010446223500000018) (0.010080265000000005) (0.010780925499999996) (0.010096414499999998) (0.010209911500000016) (0.010150909500000013) (0.01014163600000001) (0.010288456000000001) (0.010117448499999987) (0.010219986999999986) (0.010156826499999994) (0.0104488675) (0.010497526999999993) (0.010129470500000001) (0.010291703499999985) (0.010227405000000009) (0.01051495999999999) (0.010170709) (0.010339711499999987) (0.010467212000000004) (0.010380261500000001) (0.010497839999999994) (0.010743475500000002) (0.010557048999999999) (0.010661449500000017) (0.010551065500000012) (0.0107271055) (0.010789404500000002) (0.010750349499999992) (0.010569822499999992) (0.010656348999999996) (0.010681907500000004) (0.010664055999999991) (0.010466354999999997) (0.010398365999999992) (0.010697676499999989) (0.010501950499999996) (0.010336751000000005) (0.010522687000000003) (0.010505176500000005) (0.010520332999999993) (0.010411791500000003) (0.010622388999999982) (0.0108141935) (0.010389940000000014) (0.01044606699999999) (0.010538081500000004) (0.010705582000000005) (0.010480823499999986) (0.010587839499999988) (0.01011942149999999) (0.010200858499999993) (0.010112620500000002) (0.01018325249999999) (0.010081860000000012) (0.009942563500000001) (0.010224587000000007) (0.010191134500000004) (0.010204705000000008) (0.010144103500000015) (0.010303234999999994) (0.010198337000000016) (0.01048299350000001) (0.010397211000000003) (0.010262107000000006) (0.010211798000000008) (0.010058482499999993) (0.010053369499999992) (0.010520092999999994) (0.01024615000000001) (0.010271081000000001) (0.010149854) (0.010198592500000006) (0.010103408000000008) (0.010376016000000002) (0.010351237999999999) (0.010189271) (0.010004800499999994) (0.010123358999999998) (0.010249205999999997) (0.010246523999999993) (0.010182130499999997) (0.010239252500000004) (0.010248717000000004) (0.010365164499999996) (0.010388793499999993) (0.010443279) (0.010404923499999996) (0.01042881499999998) (0.01040177199999999) (0.010492269500000012) (0.010734934500000001) (0.010585900500000009) (0.010743321) (0.010249827500000003) (0.010603261999999988) (0.010546740999999998) (0.010584273500000005) (0.010513374999999991) (0.010476482999999995) (0.010257452500000014) (0.010388187999999979) (0.010408536999999995) (0.010521202500000007) (0.010381163499999999) (0.010572909999999991) (0.010979598499999979) (0.010587547499999989) (0.010515731500000014) (0.010684955499999996) (0.010402790999999995) (0.010741939000000006) (0.010482116) (0.010480612) (0.010100722999999992) (0.010141707999999985) (0.010216641500000012) (0.010155282500000001) (0.010577056500000001) (0.010117847) (0.010273984000000014) (0.010322860499999989) (0.010067936499999985) (0.010183936500000004) (0.010200271499999997) (0.010248305999999999) (0.010103557499999985) (0.01008606749999999) (0.010255480999999997) (0.01050123950000001) (0.010223342999999996) (0.010019035999999995) (0.010217719) (0.010186578000000002) (0.010042931000000005) (0.010059883999999991) (0.010251684499999997) (0.010347087500000005) (0.01023960900000001) (0.010082473499999994) (0.010279000999999982) (0.010045292499999997) (0.010061902999999997) (0.010148417000000007) (0.010088620500000006) (0.010089517000000006) (0.010359111500000004) (0.010440717000000002) (0.010545506999999996) (0.010549584) (0.01025585200000001) (0.010490860000000005) (0.010395935000000009) (0.010430895499999981) (0.010518592000000007) (0.01035337750000001) (0.010371589) (0.01067013850000001) (0.010716884999999995) (0.0105508775) (0.010309931500000008) (0.010574368) (0.010550820000000002) (0.010706466000000012) (0.010289295500000004) (0.010486217000000006) (0.010311460500000008) (0.010520253500000007) (0.010429370999999993) (0.010657111499999997) (0.010643035999999995) (0.010450375499999984) (0.010627508999999993) (0.010532758999999989) (0.010467951000000003) (0.010576251000000009) (0.0105651925) (0.010762591500000002) (0.010205109000000004) (0.010354697499999996) (0.010127603000000013) (0.010239290999999998) (0.009939950500000003) (0.01026281350000001) (0.010255907999999994) (0.010290950499999993) (0.010419692500000008) (0.010066399000000004) (0.010294343499999997) (0.010154818999999995) (0.0103202295) (0.010220621999999985) (0.010331095999999998) (0.010175597999999994) (0.01018363450000001) (0.010089967500000005) (0.010259137999999987) (0.010235949500000008) (0.010262668500000002) (0.009924208000000018) (0.010056468500000013) (0.009916951499999993) (0.01038973850000001) (0.01023468050000001) (0.010217843500000004) (0.010170715499999997) (0.01025914600000001) (0.010419501999999997) (0.010121145499999998) (0.010178122999999997) (0.01033389550000001) (0.0104560135) (0.010602221499999995) (0.010370662000000003) (0.010409191500000012) (0.010592081500000003) (0.01059467800000001) (0.010272229000000022) (0.010523751500000011) (0.010509068499999996) (0.0105372455) (0.010377370499999997) (0.01061580949999999) (0.010548361499999992) (0.010478979000000013) (0.010376934500000004) (0.010597828500000003) (0.010424323) (0.010457401500000005) (0.010868037499999983) (0.010552946000000007) (0.010671311000000003) (0.01031850949999999) (0.010363470499999985) (0.010848130500000011) (0.010587075500000001) (0.010354013500000009) (0.010506730500000006) (0.010483229999999996) (0.01077348950000001) (0.01048105199999999) (0.010556580999999995) (0.010063250499999996) (0.009920512499999992) (0.010215773500000011) (0.009951041499999994) (0.010029564000000005) (0.010119625499999993) (0.010131124500000005) (0.01020132550000001) (0.01020372700000001) (0.010249053500000008) (0.010127253999999988) (0.010148266000000017) (0.010340053500000002) (0.010198889000000003) (0.01059838149999999) (0.010222335499999999) (0.010408069000000006) (0.010144371999999999) (0.010102034499999982) (0.01006091299999999) (0.010135763999999992) (0.010657878499999995) (0.010165986500000002) (0.010257615999999997) (0.01034088250000001) (0.010224160999999996) (0.01035412899999999) (0.010227203000000018) (0.010139756) (0.010293244999999993) (0.010212580999999998) (0.010370107500000003) (0.010350256000000002) (0.010432258500000013) (0.010288097999999996) (0.010826103500000017) (0.010361854500000003) (0.010395575000000004) (0.010425806499999996) (0.010618686500000002) (0.010664862999999997) (0.010553721000000016) (0.010490794999999997) (0.010373434) (0.010606931500000014) (0.010733655999999994) (0.010537206999999993) (0.010569201500000014) (0.010443943000000011) (0.010453566499999997) (0.010536873000000002) (0.010643049500000001) (0.010533313499999988) (0.010402953500000006) (0.010491255500000005) (0.010374845000000008) (0.010620967499999995) (0.010774986) (0.010245588500000014) (0.010556228500000014) (0.010571727000000003) (0.010535245499999998) (0.010302015499999997) (0.010477744999999997) (0.0099661635) (0.010193934000000002) (0.010296878500000009) (0.010128955000000009) (0.010031257500000015) (0.010147379500000012) (0.010264816499999996) (0.010032090500000007) (0.010091781500000008) (0.010104446499999989) (0.010336990000000004) (0.010186439500000005) (0.010193428500000004) (0.010277421000000009) (0.010083750000000002) (0.010054550999999995) (0.010344844499999992) (0.010092221999999998) (0.010035392000000004) (0.010212871999999998) (0.010269769500000012) (0.010150853500000001) (0.010214543999999992) (0.010254833000000005) (0.010036525000000004) (0.010137436999999985) (0.010275121000000012) (0.010506122000000007) (0.01024178349999999) (0.010291588000000004) (0.010261951500000005) (0.010141356000000018) (0.010222706499999998) (0.0104934) (0.010478026999999987) (0.010494793500000016) (0.010346544999999999) (0.010365868) (0.010544972500000013) (0.010439300999999984) (0.010372968499999996) (0.010307893999999998) (0.010383078000000004) (0.010715785499999991) (0.010687625000000006) (0.010581338999999981) (0.010550903) (0.010550743500000001) (0.010449896500000014) (0.010596923500000008) (0.010303896999999992) (0.010617345) (0.0104636065) (0.010326589499999997) (0.01030966550000001) (0.010348292000000009) (0.01052397649999999) (0.010767529999999997) (0.010594155000000008) (0.010390288500000011) (0.01084512850000001) (0.010791567500000002) (0.010702538499999997) (0.010606264000000004) (0.010163462999999998) (0.010067948000000007) (0.010171856999999992) (0.010147528000000003) (0.010136200499999998) (0.010132977000000015) (0.0100109845) (0.010200552000000002) (0.010082563000000003) (0.010216902000000014) (0.010175140999999999) (0.010060548500000002) (0.010206994499999997) (0.010063982999999985) (0.010145984499999997) (0.010384506500000001) (0.010081085500000003) (0.010314598500000008) (0.010075580000000015) (0.01027554800000001) (0.010093752999999997) (0.009968736499999992) (0.010022352999999998) (0.010267909499999991) (0.010416909000000002) (0.010186434000000008) (0.010154148000000002) (0.010101350000000009) (0.010309568500000005) (0.010202226499999995) (0.010140173000000002) (0.0101485085) (0.01027149699999999) (0.010278019500000013) (0.010506030999999999) (0.01037614249999999) (0.010353979) (0.010334639999999992) (0.010403609499999994) (0.01084044649999999) (0.010354068999999994) (0.0105116445) (0.010382372) (0.010468662000000004) (0.010433539500000005) (0.010338412000000019) (0.010586896999999984) (0.010629442500000003) (0.010575772000000011) (0.010564177500000008) (0.010369311500000006) (0.010640221500000019) (0.010513821000000007) (0.010351673500000005) (0.010343209000000006) (0.010491057999999998) (0.010699304500000006) (0.010623767000000006) (0.010579229499999995) (0.010401657500000008) (0.010539343000000007) (0.0106559445) (0.010544106999999983) (0.01032221949999998) (0.010377463000000003) (0.010203246) (0.010091178000000006) (0.00994200449999999) (0.01019629100000001) (0.010291281999999999) (0.010229685500000002) (0.010127318499999996) (0.010219106999999991) (0.010203852999999999) (0.010328092499999997) (0.010274173999999997) (0.010038931499999987) (0.010071109500000022) (0.01020756249999999) (0.01022620249999999) (0.010125705000000013) (0.010015246500000005) (0.010213586499999996) (0.010131730500000005) (0.010104112500000012) (0.010272884499999996) (0.010187083) (0.009997329499999985) (0.010547083499999999) (0.010334024000000011) (0.010393851499999995) (0.010634843500000005) (0.010382038499999996) (0.010383662499999988) (0.0102399195) (0.010097698499999988) (0.0104810885) (0.010372559000000003) (0.010433825499999994) (0.010356392999999992) (0.010388083500000006) (0.010494737500000004) (0.010242921500000002) (0.010365028999999998) (0.010442009500000002) (0.010644846) (0.010519005500000012) (0.010561444000000003) (0.010509614) (0.010576934499999996) (0.010534527000000002) (0.010569096999999986) (0.0103841125) (0.010286728499999995) (0.010601248499999993) (0.010326936000000009) (0.010248884999999985) (0.0104177555) (0.010477171999999993) (0.010468146499999997) (0.010522672499999997) (0.010468928000000016) (0.010326535500000011) (0.010601794999999997) (0.010603139499999997) (0.01063832499999999) (0.01113707500000001) (0.010734603499999995) (0.010111862) (0.010152302000000002) (0.010187252500000007) (0.010353295500000012) (0.010096247500000002) (0.010163637499999989) (0.0102265255) (0.0100671975) (0.010220911) (0.010239737499999998) (0.01037436650000001) (0.010234486499999987) (0.01031052049999999) (0.010622608500000005) (0.010130100500000003) (0.010439376999999986) (0.010106946499999991) (0.010051899000000003) (0.010174338500000005) (0.010074399000000012) (0.010182594000000003) (0.0102243095) (0.010012249000000015) (0.010314545499999994) (0.010343060999999987) (0.010300123999999994) (0.010340846499999987) (0.01026191600000001) (0.010344471000000008) (0.01013753449999999) (0.010422645999999994) (0.010800273999999999) (0.0103554015) (0.010509483) (0.010748450500000006) (0.010346968999999984) (0.010387309999999997) (0.010815893500000007) (0.010633956) (0.010376336500000014) (0.010772283000000007) (0.01058289300000001) (0.010693262499999995) (0.010738408500000005) (0.01043068200000001) (0.010721339499999982) (0.01040571550000001) (0.010817807999999998) (0.0104231355) (0.010426876500000001) (0.010448203500000003) (0.010514667499999991) (0.010238925999999995) (0.0105795895) (0.012034378999999998) (0.010560381999999993) (0.010689292000000003) (0.01065547) (0.0106042145) (0.010560636499999998) (0.010751315999999997) (0.010596916999999997) (0.010647966000000023) (0.010446207499999999) (0.012324823499999998) (0.0123324385) (0.012447703000000004) (0.012461265) (0.012265924499999997) (0.012351051500000015) (0.012601680500000004) (0.012209364) (0.012487127) (0.012357722999999987) (0.012470257000000012) (0.012317903500000005) (0.012427531999999991) (0.012401588500000005) (0.012384572999999996) (0.012917757500000002) (0.012382020000000007) (0.012431416) (0.012366336000000006) (0.0124550945) (0.01249610999999999) (0.012534686500000003) (0.012837348999999998) (0.012665640500000006) (0.012191213500000006) (0.01274198750000001) (0.012682706500000002) (0.012350846499999998) (0.012664417000000011) (0.01224453049999999) (0.012883296499999988) (0.012333895499999997) (0.012780081500000012) (0.01271687099999999) (0.012758906) (0.012638255000000001) (0.012748620500000002) (0.012752183500000014) (0.0124570195) (0.012653179000000014) (0.012853723500000011) (0.01250888900000001) (0.01267517650000001) (0.0126608515) (0.012760237499999993) (0.012681280999999989) (0.012685640499999998) (0.01259345299999999) (0.012662075500000022) (0.012684689499999985) (0.013087797999999998) (0.012522772000000001) (0.012630596499999994) (0.012602959499999983) (0.012849758500000003) (0.01262299900000001) (0.012634025999999993) (0.012782323500000012) (0.012807021000000002) (0.01277711849999999) (0.012958417) (0.012943374999999993) (0.012757426500000002) (0.012642105) (0.012174445000000006) (0.012537457500000002) (0.012328723) (0.012199106000000001) (0.0126175865) (0.012613805500000005) (0.012452439499999995) (0.012381245999999999) (0.01246062249999999) (0.012404911500000004) (0.012459121000000017) (0.012564692999999988) (0.012427746500000003) (0.012505892500000004) (0.012304190499999992) (0.012247712000000008) (0.01233663900000001) (0.012069040500000003) (0.012510236499999994) (0.012328675499999997) (0.012498536000000005) (0.012622564500000003) (0.012525801999999989) (0.01283969) (0.012619259499999994) (0.012649038499999987) (0.013055900499999995) (0.012218043000000012) (0.012851940999999992) (0.012352000500000002) (0.012976289499999988) (0.013041174000000003) (0.012848808999999989) (0.0126220935) (0.012834274499999992) (0.01313260699999999) (0.01261823799999999) (0.012527637499999994) (0.01255608350000001) (0.012703663500000004) (0.0127852455) (0.013037076499999994) (0.012668645500000006) (0.012937644999999998) (0.013080259499999997) (0.013000914000000002) (0.012922248999999997) (0.012933108999999998) (0.012819103000000012) (0.012786718500000002) (0.012853487999999996) (0.013051215500000005) (0.012667947499999999) (0.012681310000000001) (0.012630064999999996) (0.01253989300000001) (0.012644871000000002) (0.013067087500000019) (0.013013751000000004) (0.01301561300000001) (0.012793616499999994) (0.012931808000000003) (0.012822810000000004) (0.012933925499999999) (0.012354004000000016) (0.012389251500000004) (0.012580383) (0.012308712999999999) (0.012539408500000002) (0.012728959499999998) (0.012539603999999996) (0.012341304999999997) (0.012745752999999999) (0.012468804) (0.012272785000000008) (0.012487537000000007) (0.012334853999999992) (0.012702867000000007) (0.01261123900000001) (0.012592004500000004) (0.01230964150000001) (0.0125828355) (0.012329986000000001) (0.012847703000000002) (0.012446087000000008) (0.012895424000000016) (0.012654555999999997) (0.012737290999999998) (0.012441558499999991) (0.012565238500000006) (0.012681211500000011) (0.012225112999999996) (0.012552541) (0.012304892999999997) (0.012527710999999997) (0.012541398999999995) (0.012652108499999995) (0.012682267999999997) (0.01278235350000001) (0.012490668499999996) (0.012884211499999992) (0.012865954499999999) (0.013085857999999992) (0.012607227499999998) (0.012998822499999993) (0.012625354499999991) (0.012609978500000008) (0.012797609000000001) (0.012862452999999996) (0.013131422000000004) (0.01281662750000001) (0.012821926000000011) (0.01266457800000001) (0.013257540499999998) (0.012665447999999996) (0.012757926000000003) (0.012503733500000003) (0.01261225349999999) (0.012678053000000009) (0.013569953999999995) (0.012680325999999992) (0.012579877500000003) (0.012644271499999998) (0.012605488999999998) (0.012905072000000004) (0.012814015499999998) (0.012868557500000002) (0.01293254349999999) (0.012324467000000006) (0.012709021000000015) (0.012393250999999994) (0.012244383000000011) (0.012359320999999993) (0.012291377000000006) (0.012418878999999994) (0.012267355500000007) (0.012297731500000006) (0.012492415500000006) (0.012755871500000016) (0.012861295500000008) (0.012739491499999991) (0.012484612499999992) (0.012525916499999998) (0.012435244999999998) (0.012474467500000003) (0.012326599500000007) (0.012344206499999982) (0.01276749449999999) (0.012515629) (0.012289283000000012) (0.012593454000000004) (0.01251426450000001) (0.012992678500000007) (0.012664105000000009) (0.012289620999999987) (0.012619649499999996) (0.012408824000000013) (0.012479370000000004) (0.012429984499999991) (0.012586694999999995) (0.012710190499999996) (0.0128846465) (0.012919167999999995) (0.012550915499999996) (0.012436278000000009) (0.012897739500000005) (0.012574234500000017) (0.012633856999999998) (0.012762467499999985) (0.012940615500000002) (0.013106459) (0.012673513999999997) (0.012644606999999988) (0.012803118500000002) (0.012649505999999991) (0.012870010500000015) (0.012718650499999998) (0.012692864499999998) (0.01262216499999999) (0.012802276500000001) (0.012549446000000006) (0.012710482000000009) (0.012696542499999991) (0.012824183000000017) (0.013449710000000004) (0.012752537499999994) (0.012901564000000004) (0.012905285500000002) (0.0132548745) (0.013015665499999995) (0.013012331999999988) (0.012742862500000007) (0.012348863500000001) (0.012359144000000002) (0.01255415900000001) (0.012405317499999985) (0.012366384999999994) (0.012296397) (0.01248494600000001) (0.012407638999999998) (0.012609193000000005) (0.012513734499999998) (0.012207237999999981) (0.012279075499999986) (0.012348825500000007) (0.012135414499999997) (0.012498390499999998) (0.012513558500000008) (0.012220652000000012) (0.012160874499999988) (0.012181971) (0.01217048250000001) (0.01216742300000001) (0.012303290500000008) (0.012180883000000003) (0.012256310000000006) (0.012471020499999999) (0.0124192095) (0.012232926500000005) (0.012653966500000002) (0.0121676525) (0.012769371500000001) (0.01264220349999999) (0.012271790000000005) (0.012673385499999995) (0.012457311999999984) (0.012417887500000002) (0.012790654999999998) (0.01260879999999999) (0.012894457499999998) (0.013157719999999998) (0.01252649850000001) (0.01284272950000001) (0.012704211500000007) (0.012854291500000017) (0.012752003999999983) (0.012445910500000004) (0.01271172000000001) (0.013027974500000011) (0.012675398500000004) (0.01270890849999999) (0.012407786500000004) (0.012513506999999993) (0.012487305000000004) (0.0126766455) (0.012590119999999996) (0.013136605499999995) (0.012722820999999995) (0.01266729450000001) (0.012586643999999994) (0.012746810500000011) (0.012804579999999996) (0.013084997000000001) (0.013136637000000007) (0.012750198500000004) (0.012531548000000003) (0.012195402999999994) (0.012261797000000005) (0.012623121500000015) (0.012379748499999996) (0.012394780000000008) (0.012535377) (0.012404195000000007) (0.012243307499999995) (0.012366699499999995) (0.012264940499999988) (0.012332270000000006) (0.013973922) (0.012637784999999999) (0.012509192500000002) (0.012399068499999999) (0.012643447999999988) (0.012487731500000002) (0.012588114999999997) (0.012440405500000001) (0.012388603500000012) (0.0124803535) (0.012327921000000006) (0.0122249455) (0.012716761500000007) (0.012703404500000001) (0.012381405999999998) (0.012416381000000004) (0.012481548500000009) (0.012482316500000007) (0.012658727499999994) (0.01253823100000001) (0.012590703000000009) (0.012718557499999991) (0.0127262125) (0.01257196699999999) (0.012956713999999994) (0.012855644500000013) (0.012631787500000005) (0.012499051499999997) (0.012787115000000002) (0.012744189999999989) (0.012632181499999992) (0.012517120499999992) (0.013090002000000003) (0.013226850999999998) (0.012701708000000006) (0.012837079000000001) (0.012890686999999998) (0.01299080000000001) (0.012420857499999993) (0.012673615) (0.012706560500000005) (0.01304776149999999) (0.012638419499999998) (0.012916322999999993) (0.012723461999999991) (0.012712268999999998) (0.0126364375) (0.012883620499999998) (0.012619293500000003) (0.012915196500000004) (0.012867389500000007) (0.013110131999999997) (0.012642389000000004) (0.012201165) (0.012398019499999996) (0.012450202499999993) (0.012290078999999995) (0.012277979000000008) (0.01249032550000001) (0.0124377965) (0.013331077499999983) (0.012478888999999993) (0.012244360999999995) (0.012355767000000017) (0.012638787999999984) (0.012388083000000008) (0.01247316050000001) (0.012274684999999994) (0.012348876499999994) (0.01245839) (0.012090325499999999) (0.012281693999999996) (0.012340887999999994) (0.012623506000000007) (0.012183836500000003) (0.012452407999999998) (0.012461321499999997) (0.012362132499999998) (0.0124210285) (0.012629901500000013) (0.012641102000000001) (0.012866084500000013) (0.012325380999999996) (0.012542738999999983) (0.012678361999999985) (0.012453997000000008) (0.012723821499999996) (0.012686913500000008) (0.012555252500000003) (0.012444889) (0.0125188715) (0.012638325999999991) (0.012437255999999994) (0.012743420000000005) (0.012664793000000008) (0.012657986499999996) (0.012695377499999994) (0.0127775465) (0.0128711725) (0.01275797799999999) (0.0129478695) (0.012438161500000003) (0.012853938999999995) (0.012735844999999996) (0.01272818299999999) (0.0126692645) (0.012640362000000002) (0.012758063) (0.01286494199999999) (0.012641827999999994) (0.012650979000000007) (0.012571167500000008) (0.012584654) (0.012813969000000008) (0.0127089165) (0.012804702499999987) (0.012579110000000004) (0.012570015000000004) (0.012616945000000004) (0.012463839000000004) (0.012439066000000013) (0.012256023000000005) (0.012807699999999991) (0.012150492999999984) (0.012516317999999999) (0.012547523000000005) (0.0124268025) (0.012427999500000009) (0.012373667000000005) (0.01251252500000001) (0.012246318000000006) (0.012429548000000012) (0.012412224) (0.012774185499999993) (0.012418705500000016) (0.012547518500000007) (0.012334522499999986) (0.012746075999999995) (0.01238007549999999) (0.0126151065) (0.012523791999999992) (0.012617570000000009) (0.012607193999999988) (0.012389624500000002) (0.012281961500000008) (0.012552014000000014) (0.012407257500000005) (0.012514155500000013) (0.012335681000000001) (0.012988078) (0.012925314000000021) (0.012740644999999995) (0.012756918000000006) (0.012606656500000007) (0.012679681499999998) (0.012712237000000001) (0.012879238499999987) (0.013271574000000008) (0.012926563499999988) (0.012992902) (0.013055773499999992) (0.013628177499999991) (0.013036533499999989) (0.0129342645) (0.012901572500000014) (0.012700563000000012) (0.012486827500000006) (0.012589580999999989) (0.012643574500000018) (0.012625309500000001) (0.012604030000000002) (0.012471579499999996) (0.012854282499999994) (0.012830096500000013) (0.012846742499999994) (0.012773437499999998) (0.012829547999999996) (0.012656357999999993) (0.01252250449999999) (0.013201690000000002) (0.012765919999999986) (0.012553387500000013) (0.012289936500000015) (0.012463376499999998) (0.012074201000000007) (0.01231831500000001) (0.012200831999999995) (0.012350375499999997) (0.012465123000000009) (0.012315326000000001) (0.012403813) (0.012347689999999995) (0.012504121999999993) (0.012356677999999996) (0.012340990499999996) (0.012706179999999997) (0.012722861000000002) (0.012515716999999996) (0.012590321500000001) (0.012376589000000007) (0.012354511999999998) (0.012529989500000005) (0.012675261499999993) (0.012468201500000012) (0.012302170500000001) (0.012339203500000007) (0.012346692000000006) (0.012643635000000014) (0.01226021749999999) (0.012400854500000016) (0.012371964000000013) (0.0123888615) (0.012494109500000017) (0.012707110500000007) (0.01296686050000001) (0.012511447500000009) (0.013319649000000003) (0.012767159) (0.01286893) (0.012763584000000008) (0.01309110450000002) (0.01309527449999999) (0.012979298) (0.012611178) (0.012755212000000002) (0.013149561500000004) (0.0133417505) (0.012657689) (0.012920164499999998) (0.012686836499999993) (0.012768756500000006) (0.012682328000000007) (0.015157568999999996) (0.0128232925) (0.012566892499999996) (0.012666130499999997) (0.012455280499999999) (0.0127709295) (0.012872126500000011) (0.012791431000000006) (0.012548790000000004) (0.012676775000000001) (0.01254952849999999) (0.012793328500000006) (0.0125783795) (0.012265213999999997) (0.012417556999999996) (0.012591311999999993) (0.01250335499999998) (0.012382201999999995) (0.01247651050000001) (0.012893324499999997) (0.012122937500000014) (0.012642875499999998) (0.012536381999999999) (0.01261371650000001) (0.012639983500000021) (0.0124751855) (0.012408535999999998) (0.012407108) (0.012925251999999998) (0.012721356499999989) (0.012584156500000013) (0.012245672499999985) (0.012375113999999993) (0.012398182499999993) (0.012357971999999995) (0.012484526499999996) (0.012337727000000007) (0.01260992050000001) (0.012259365000000008) (0.012464340000000004) (0.012484701) (0.012705360499999999) (0.012417948999999984) (0.012291908500000004) (0.012377327000000007) (0.012825468999999992) (0.012757461499999997) (0.012801832999999999) (0.012707626999999985) (0.012579606999999993) (0.012854222999999984) (0.01276808950000001) (0.012717041000000012) (0.01281310450000002) (0.01269648150000001) (0.012923181499999992) (0.012636913500000013) (0.012664627999999997) (0.012662578999999993) (0.01270523450000001) (0.012731807999999997) (0.012641179500000002) (0.012644241500000014) (0.01273527599999999) (0.012837485999999995) (0.012931075000000014) (0.012569139499999993) (0.012794024000000001) (0.012632565499999998) (0.012858257499999998) (0.01287518) (0.012646011499999985) (0.012653929500000008) (0.012562974000000018) (0.013001747999999994) (0.012716274999999999) (0.012826127000000007) (0.012218180000000009) (0.012491955999999999) (0.012378723999999994) (0.012177637000000005) (0.012400224000000001) (0.012313866000000007) (0.012286305499999997) (0.012426897000000006) (0.012423245999999999) (0.012331400500000006) (0.01243419150000001) (0.012294646000000006) (0.012437113999999999) (0.012710279500000005) (0.012724074000000016) (0.012529435499999991) (0.012516374499999997) (0.012354212000000003) (0.01248133350000001) (0.012209639000000008) (0.012602841500000017) (0.012228775499999997) (0.012278506499999994) (0.012510182499999994) (0.012572651000000004) (0.012363003999999997) (0.01262663) (0.012295471000000016) (0.012651488500000002) (0.012281081999999999) (0.0123965105) (0.012672496000000005) (0.012681283000000002) (0.012617819000000002) (0.012837083) (0.012530793999999998) (0.012942889499999999) (0.012838243499999985) (0.013083548499999986) (0.012472016500000002) (0.012716067000000011) (0.012816533500000019) (0.012866695499999983) (0.012960478999999997) (0.0128367635) (0.0127579055) (0.0127429305) (0.01299570450000001) (0.013344761999999996) (0.012644446000000004) (0.012519899000000001) (0.01269735000000001) (0.012945269499999995) (0.012721153999999998) (0.0128660585) (0.012709278000000004) (0.012928753000000001) (0.012672505) (0.012604399000000002) (0.012930734999999999) (0.012951246000000013) (0.013092323500000003) (0.013948936499999995) (0.012850915000000004) (0.012632568499999997) (0.01300669850000001) (0.0123714335) (0.012674843000000005) (0.012375376000000007) (0.012434725000000008) (0.012277562000000006) (0.012484389499999998) (0.012434082999999999) (0.012379217999999997) (0.012881029000000002) (0.012527035499999992) (0.01241667149999999) (0.012564239500000005) (0.012469272000000003) (0.012436260000000018) (0.012352384500000008) (0.012468928000000004) (0.012343148999999998) (0.012299537999999999) (0.012202690999999988) (0.012414458500000017) (0.012622285999999996) (0.012531300499999995) (0.012522060000000015) (0.012461993500000004) (0.0124817485) (0.012393269999999998) (0.012252745499999995) (0.012395526500000004) (0.012494538999999999) (0.012383173499999997) (0.013501788) (0.012579982000000003) (0.012721945999999984) (0.012640682) (0.012811407999999982) (0.012713685499999988) (0.012920828500000009) (0.012996638000000005) (0.012610687500000009) (0.012606784999999995) (0.012854076999999992) (0.01269141) (0.01268251649999999) (0.012616469500000005) (0.012631776499999997) (0.01296993199999999) (0.01291705600000001) (0.012858219000000004) (0.012644438500000008) (0.012575359499999994) (0.012862643000000007) (0.012565447000000007) (0.012622652499999998) (0.012584887000000003) (0.012840614) (0.0126484345) (0.012888815500000012) (0.012891946500000015) (0.012765010000000007) (0.01301711300000001) (0.012967035000000002) (0.012835400499999997) (0.012455448499999994) (0.012389496000000014) (0.012350828999999994) (0.012203697000000013) (0.012385175000000012) (0.012354250000000011) (0.012652851499999992) (0.012390245500000008) (0.012466741500000003) (0.01251967050000001) (0.012797053000000003) (0.012401092500000002) (0.012633539999999999) (0.012362586000000009) (0.012377285500000001) (0.012658580000000003) (0.012383719500000001) (0.012711353499999994) (0.012377166000000009) (0.01236957200000001) (0.01258548999999999) (0.012525936500000001) (0.01218387650000001) (0.012305404500000006) (0.012389421999999997) (0.012511888500000012) (0.0126442435) (0.012709520000000002) (0.012418059500000009) (0.012465130000000005) (0.0126208035) (0.012384417999999994) (0.012624647500000002) (0.012929375500000007) (0.013213988999999995) (0.012903322999999994) (0.012758607500000005) (0.012603566999999996) (0.012811963499999995) (0.012560419000000003) (0.0129002525) (0.012737739999999997) (0.012844262999999995) (0.012841524999999993) (0.0128892865) (0.012803988500000002) (0.012806119000000019) (0.013259649999999998) (0.012738792000000013) (0.012710255500000003) (0.0124869185) (0.012579845000000006) (0.012735111999999993) (0.012760697000000015) (0.012691399500000006) (0.012981786000000009) (0.012998799500000005) (0.012789343000000022) (0.012574735500000003) (0.012996957000000003) (0.012900567500000001) (0.012875495) (0.012742094499999995) (0.0126074355) (0.012554357000000002) (0.012541362500000014) (0.012521491499999995) (0.012490519000000005) (0.012215724999999997) (0.012276398000000008) (0.012569307500000002) (0.01239259600000002) (0.012749351499999992) (0.01265885) (0.012554939000000001) (0.012479406499999984) (0.012612284500000015) (0.012350940000000005) (0.012294565500000007) (0.012330713999999993) (0.012617956499999985) (0.012202652500000008) (0.012568694499999991) (0.012356487) (0.012516950499999999) (0.01238147349999999) (0.012359673000000002) (0.012423838499999992) (0.012641406499999994) (0.0124884745) (0.012539608500000021) (0.012405018000000004) (0.012591270500000001) (0.012700161500000001) (0.01234833249999999) (0.012531021000000003) (0.012756750499999997) (0.012732593500000014) (0.012898647000000013) (0.012656633) (0.013092572999999996) (0.012571744499999996) (0.012661275500000013) (0.012848027499999998) (0.0126886435) (0.012807151500000002) (0.01307635) (0.013147504500000004) (0.012646122499999995) (0.012613699000000006) (0.012847896999999997) (0.012771834499999996) (0.012697208500000001) (0.012861877000000008) (0.012478860499999994) (0.012775905500000004) (0.012745523999999994) (0.012993092499999997) (0.012699586499999999) (0.012529167999999993) (0.012770887499999994) (0.012998418999999997) (0.012829608500000006) (0.012789831499999987) (0.012889496) (0.01262516150000001) (0.012663350000000004) (0.012541506499999994) (0.012508441000000009) (0.012510976000000007) (0.012261233999999996) (0.012438600000000008) (0.012635751) (0.012449749999999982) (0.012364608499999999) (0.012499584500000008) (0.012497139000000018) (0.01284702700000001) (0.012612757000000002) (0.0124157545) (0.012798771500000014) (0.012577375500000001) (0.012727703499999993) (0.012317011000000017) (0.012478505) (0.012378331499999992) (0.012249056500000008) (0.012570106999999997) (0.012241548000000005) (0.012233126499999997) (0.012491596500000007) (0.012331159500000008) (0.012427526999999994) (0.012387987999999989) (0.012100724499999993) (0.012916836000000001) (0.012543571500000017) (0.012370972499999994) (0.012693062500000005) (0.012502719999999995) (0.012534941000000008) (0.012742399000000001) (0.012939161500000004) (0.013165095000000002) (0.012943189999999993) (0.012646027000000004) (0.012564326) (0.012930059499999993) (0.012871755499999998) (0.013220358000000001) (0.012988836000000004) (0.012567338499999983) (0.012867825) (0.012986225000000018) (0.012881691) (0.01281097149999999) (0.013036555000000019) (0.01280766350000001) (0.012425584999999989) (0.012690863499999996) (0.013061440499999993) (0.012973573000000002) (0.012561462499999995) (0.012751009500000007) (0.012659933999999998) (0.012639067000000004) (0.012719908000000002) (0.012651739999999995) (0.012830712000000008) (0.012646346000000003) (0.012605497499999993) (0.01260341949999999) (0.01247203099999998) (0.012497084000000006) (0.012500978499999996) (0.012570648000000004) (0.012442301500000003) (0.012294751500000006) (0.012492046500000006) (0.012691660499999993) (0.012333585000000008) (0.012554019999999999) (0.012498863999999998) (0.012497975999999994) (0.012357414000000011) (0.012434523000000003) (0.012365300999999995) (0.012348190000000009) (0.012465717500000001) (0.01222886749999999) (0.012340220000000013) (0.012603031) (0.012485873999999994) (0.012358948999999994) (0.012580791499999994) (0.012216262000000006) (0.012419438000000005) (0.012469008500000003) (0.012491410499999994) (0.012396164500000001) (0.012632459000000013) (0.012469473499999995) (0.01256975199999999) (0.012422817000000003) (0.012819840499999999) (0.01284410350000001) (0.012769707500000005) (0.012718563499999988) (0.012627444499999987) (0.012808005499999997) (0.012628126000000003) (0.012986981500000008) (0.012921296000000013) (0.012736934999999991) (0.012596501499999996) (0.012879449499999987) (0.012661429000000016) (0.0126956825) (0.012936189500000014) (0.013175425000000004) (0.012664073500000012) (0.01273076549999999) (0.012628797499999997) (0.012692376500000005) (0.012741023000000004) (0.012757201999999995) (0.012502197000000007) (0.012574911000000008) (0.012657656500000017) (0.012714027000000003) (0.012730443000000008) (0.012781260499999988) (0.012884129500000008) (0.012770792000000003) (0.012803419999999996) (0.012602374500000013) (0.012238238000000012) (0.012284601499999992) (0.012339940000000008) (0.012518013000000008) (0.012595181499999997) (0.012486592000000005) (0.012368752499999996) (0.012180873499999995) (0.012798202499999994) (0.012436898499999988) (0.012294940000000004) (0.012398505000000004) (0.012572810500000017) (0.012462257500000004) (0.01232631449999999) (0.012274733499999996) (0.012543596500000004) (0.012591046500000008) (0.012477771999999998) (0.012665057999999993) (0.012132608500000003) (0.012552911) (0.012295973500000001) (0.01240882800000001) (0.012471189000000008) (0.012416500499999997) (0.012687001999999989) (0.012330366500000009) (0.012354314499999991) (0.01267567900000001) (0.012515484500000007) (0.012267838000000003) (0.012745066) (0.012905407499999993) (0.012543774499999993) (0.012507158500000004) (0.012596138999999992) (0.012655369999999999) (0.012469933499999988) (0.01264911199999999) (0.012758798500000001) (0.01260178599999999) (0.012699985499999997) (0.01268503600000001) (0.012919323999999996) (0.012760580499999993) (0.012778425499999996) (0.012752563999999994) (0.012716895499999992) (0.012657780500000007) (0.012535262500000005) (0.012525288499999995) (0.012644957500000012) (0.01255850900000001) (0.012447581499999999) (0.012411726499999998) (0.0126199325) (0.012547791999999988) (0.0126923865) (0.01278362399999998) (0.012799598999999995) (0.012719520499999998) (0.012719541000000001) (0.012547958000000012) (0.012837111999999998) (0.012513411000000002) (0.0123883105) (0.012331019999999998) (0.012552255499999998) (0.012964555500000002) (0.012135772000000003) (0.012418102499999986) (0.012481815499999993) (0.012303976000000008) (0.012285431500000013) (0.012412988500000013) (0.012584743500000009) (0.01234669599999999) (0.012783879500000012) (0.012444168500000005) (0.012310403999999997) (0.012356411500000011) (0.012412648499999998) (0.012353712000000003) (0.012343091) (0.012313602000000007) (0.012276471499999997) (0.012330402000000004) (0.012366837500000005) (0.012374554999999995) (0.0124407505) (0.012735073999999999) (0.012264705) (0.01245439050000001) (0.012444826000000006) (0.012541808500000001) (0.012934100000000004) (0.012592411499999998) (0.012446540000000006) (0.012770118499999983) (0.012716870000000005) (0.012958892999999999) (0.012807685500000013) (0.012519588999999998) (0.012790114000000019) (0.01276106199999999) (0.012974747000000009) (0.012758810999999995) (0.012858888499999999) (0.012936349) (0.012586588999999981) (0.013270611500000001) (0.012691103499999995) (0.012557010000000007) (0.01263453349999999) (0.01267079950000001) (0.012692437000000015) (0.012881235500000005) (0.012602204999999991) (0.01252026349999999) (0.012685611999999999) (0.012535742499999988) (0.012688314000000006) (0.012943682999999997) (0.012947043500000005) (0.012818066999999989) (0.012759266500000005) (0.012704955000000004) (0.012345948000000023) (0.012433047500000002) (0.012592044499999996) (0.01234600499999998) (0.01242603249999999) (0.012326694999999999) (0.012373700999999987) (0.01231151450000001) (0.012696106000000013) (0.012421519500000006) (0.012604163500000015) (0.012568721000000005) (0.0124602875) (0.012352453999999999) (0.012307686999999998) (0.012590441000000008) (0.012409415000000007) (0.012364382500000007) (0.012317499499999995) (0.012320074) (0.012381396500000003) (0.012389003499999995) (0.012294263000000014) (0.012480949500000005) (0.012342645499999999) (0.012383397500000004) (0.012419120499999992) (0.012431316499999998) (0.012860041000000003) (0.012326646999999996) (0.012699295999999999) (0.01230697650000001) (0.012915345999999994) (0.012557009999999993) (0.012576403999999985) (0.012986816499999998) (0.012785576500000007) (0.012729721999999999) (0.012690879500000016) (0.012518568500000007) (0.012810672500000009) (0.01281212150000001) (0.012831621500000001) (0.012958768500000009) (0.012663508000000004) (0.012882357499999997) (0.012699935999999995) (0.012779497) (0.012776740500000008) (0.012651972999999997) (0.012920565999999994) (0.012660464499999996) (0.012981728999999997) (0.012811729500000008) (0.012613447) (0.012810649999999993) (0.013132450500000004) (0.012968919499999995) (0.012728792999999988) (0.013154911000000005) (0.0127937085) (0.013079440499999997) (0.013077416499999994) (0.012712826999999996) (0.012772543999999997) (0.012367820500000001) (0.012198839499999989) (0.012506968000000021) (0.012591832499999997) (0.012317381000000002) (0.012729588000000014) (0.012539664500000006) (0.012659587) (0.012460819499999984) (0.012381632999999989) (0.01246605499999999) (0.012544004499999997) (0.012387135000000007) (0.012400544000000013) (0.012284212000000003) (0.012534260500000005) (0.012425328000000013) (0.012471436500000002) (0.012373863499999999) (0.012477961999999995) (0.012540879500000005) (0.012361455000000007) (0.012330948000000008) (0.012717030500000004) (0.012441679999999983) (0.01227851349999999) (0.012663564000000002) (0.012503681999999988) (0.012690291500000006) (0.012367207500000005) (0.01221250950000001) (0.012703903500000002) (0.013060785500000005) (0.01282082449999998) (0.012740198000000008) (0.012615869000000002) (0.012820138499999995) (0.012687222500000012) (0.012668592499999992) (0.012709307000000003) (0.012968275500000001) (0.012842855500000014) (0.012778713999999997) (0.012571746000000009) (0.012640141500000007) (0.012877938500000005) (0.012607753500000013) (0.012897613499999988) (0.012560570499999993) (0.012543187499999997) (0.012565832500000013) (0.012775169000000003) (0.012617837000000007) (0.012828506999999989) (0.012642627500000003) (0.012959846499999997) (0.012929862500000014) (0.012675954000000003) (0.012642761500000016) (0.012793417500000015) (0.012888862499999987) (0.012779469000000002) (0.01315883650000002) (0.012496890499999996) (0.012471322499999993) (0.01252391650000001) (0.012301020499999996) (0.012389396499999997) (0.012283493999999992) (0.012216672500000011) (0.012244701499999996) (0.012554574500000013) (0.012421668999999996) (0.012251074499999987) (0.01249011550000001) (0.012378845) (0.0126089395) (0.01229325349999999) (0.012455562500000003) (0.012299551000000006) (0.012149269500000004) (0.012439698999999999) (0.012239539500000021) (0.012586045500000004) (0.012582556499999994) (0.012028868999999998) (0.012261942000000012) (0.012657559999999998) (0.0125777995) (0.012569347999999994) (0.01248576749999998) (0.012469513000000015) (0.012351466500000005) (0.012576152000000007) (0.012547973500000004) (0.012435441999999991) (0.012682307000000004) (0.012617212000000017) (0.012651798500000005) (0.012390004999999996) (0.012775966500000013) (0.012865694999999996) (0.012995152499999996) (0.012629383499999994) (0.013032163999999999) (0.012602403499999998) (0.012786655500000021) (0.012505743) (0.012684216499999998) (0.013112170000000006) (0.01273465) (0.012578296500000002) (0.012691069999999999) (0.012550417999999994) (0.012482908499999987) (0.013157647000000008) (0.01246462949999999) (0.012726368499999988) (0.012622189499999992) (0.012654238999999998) (0.012667335499999988) (0.012705284999999997) (0.01286201449999999) (0.013155636500000012) (0.012726997500000004) (0.012653043499999989) (0.012975661999999999) (0.012612710499999999) (0.012304619999999988) (0.01255647750000001) (0.012402789499999983) (0.012590442999999993) (0.012229272499999999) (0.012294754000000005) (0.012145776499999997) (0.01254077100000002) (0.012435762999999989) (0.012614284500000003) (0.0125098035) (0.012380725999999995) (0.012657980499999999) (0.01253907650000001) (0.012489548500000003) (0.012239280499999991) (0.0123237135) (0.012476748999999995) (0.012199470000000004) (0.012270745) (0.012498385) (0.012385115500000002) (0.012499743499999993) (0.012426885999999998) (0.012504427000000012) (0.012859937500000002) (0.012369026000000019) (0.012482569999999998) (0.012537254999999997) (0.012526013000000003) (0.012716506500000016) (0.012584050500000013) (0.012622431000000003) (0.012682865000000001) (0.012693199500000016) (0.012851847999999999) (0.012626224500000005) (0.01274468899999999) (0.012542901499999995) (0.01315277749999999) (0.012586656000000002) (0.012760068) (0.013067038000000003) (0.01250285050000001) (0.013025196000000003) (0.012657123499999992) (0.013137601499999998) (0.01260736450000001) (0.01286958199999999) (0.012524102999999995) (0.013039760000000011) (0.012521590999999999) (0.012982429500000003) (0.012777216499999994) (0.013112099999999988) (0.0128556695) (0.012711928500000011) (0.012845766499999994) (0.012841237500000005) (0.012837367999999988) (0.012888460000000004) (0.012526495000000012) (0.012623628500000011) (0.012643585999999984) (0.012285488499999997) (0.012332004499999993) (0.012323795500000012) (0.012397850500000002) (0.012389670999999991) (0.012521013999999997) (0.012380081000000015) (0.012687630000000005) (0.012467883500000013) (0.012476543000000007) (0.01270461099999999) (0.012765616499999993) (0.012759514000000013) (0.012419777000000007) (0.01253489549999999) (0.013053075500000011) (0.012110946499999997) (0.012533499500000003) (0.012290442499999985) (0.012800129999999993) (0.012337223499999994) (0.0125185835) (0.012273865499999995) (0.0125077735) (0.012796804499999995) (0.012484379000000004) (0.01242654600000001) (0.012530204500000003) (0.012470017) (0.012693867500000025) (0.012478069999999994) (0.012921944000000019) (0.012718538999999987) (0.012857979000000005) (0.012889660499999997) (0.013424872500000004) (0.012743780499999996) (0.013547085) (0.012819448999999997) (0.012782755499999993) (0.012845830500000002) (0.012989762000000016) (0.012515002999999997) (0.012800790499999992) (0.012497286999999996) (0.012915420999999996) (0.013051932500000016) (0.013067345000000008) (0.012537377500000002) (0.012690022999999995) (0.012689364499999994) (0.012994027000000005) (0.013587291000000001) (0.012531136500000012) (0.01274785099999999) (0.012757587) (0.012505228000000007) (0.012942342499999995) (0.013083718000000022) (0.012707778500000003) (0.012514546500000001) (0.012905810500000003) (0.012527780999999988) (0.012318174500000001) (0.0123449905) (0.012502071000000003) (0.012248882000000003) (0.012346978499999994) (0.012367622999999994) (0.012369108000000004) (0.012279412999999989) (0.012524692500000004) (0.0123373165) (0.012335801000000007) (0.012486108499999996) (0.012376617500000006) (0.012633403500000001) (0.012503194499999995) (0.012701230999999993) (0.012209237999999997) (0.012722538000000005) (0.01229521900000001) (0.012239832499999992) (0.012460237999999998) (0.012351937000000007) (0.012512520499999999) (0.012618843500000004) (0.012482014) (0.0125803845) (0.012749439499999973) (0.012665201000000001) (0.012680215500000008) (0.012711334000000005) (0.012508352) (0.012581327500000003) (0.012608658499999995) (0.012700236500000003) (0.012882196500000012) (0.012675454500000002) (0.012869214000000004) (0.012688153499999993) (0.012871552999999994) (0.012717236499999993) (0.013421967500000007) (0.013516565999999994) (0.013257421999999991) (0.012796463999999994) (0.013093256999999997) (0.012778598499999988) (0.012933787000000002) (0.01266485149999999) (0.01261081600000001) (0.012804359999999987) (0.0128597815) (0.012993480000000002) (0.012935585) (0.012636136500000006) (0.012584751500000005) (0.012824496500000004) (0.012861915500000015) (0.012818779500000002) (0.012893214) (0.013174888999999995) (0.013022150999999996) (0.012755554000000002) (0.012805984000000006) (0.013000729500000002) (0.012460167000000008) (0.012546236500000002) (0.012757923500000004) (0.012530884000000006) (0.012504246499999996) (0.012683957499999995) (0.012445153499999986) (0.012294673000000006) (0.012303478000000007) (0.012191066999999986) (0.012349363000000002) (0.01272657349999999) (0.012344471999999995) (0.012389408500000004) (0.012526093500000002) (0.012754031499999999) (0.012407419999999988) (0.012154463500000004) (0.01266468150000001) (0.012259384500000012) (0.012366732000000005) (0.01222497900000001) (0.012212368000000001) (0.012414597999999985) (0.012520070000000008) (0.012320678499999987) (0.013083497) (0.012410688500000003) (0.012889847999999995) (0.012335342) (0.0127087595) (0.012524056999999991) (0.012718952500000005) (0.012698095499999992) (0.012829692500000003) (0.012880842000000003) (0.012677134500000006) (0.012500872499999996) (0.012625924999999996) (0.012514560499999994) (0.01267845450000002) (0.01259039549999999) (0.012821463000000005) (0.012658490999999994) (0.012699032999999998) (0.012552654999999996) (0.012811615999999998) (0.012883603999999993) (0.012753711000000001) (0.012730514500000012) (0.0126836855) (0.012861862500000015) (0.012660697000000012) (0.012686011499999997) (0.012580740999999993) (0.012998459500000004) (0.013200174000000009) (0.012669876999999996) (0.012820929999999994) (0.012788389499999997) (0.013020024500000005) (0.012788747499999989) (0.012943618000000004) (0.012848051000000013) (0.012700202500000007) (0.012302546999999997) (0.012630069000000008) (0.012388051999999997) (0.012205340999999995) (0.01240210450000001) (0.012350287499999987) (0.012091269000000002) (0.012276787499999997) (0.012412704999999996) (0.012267811000000003) (0.012587766499999986) (0.012349159499999998) (0.012261165000000004) (0.012427071500000011) (0.012434741) (0.012377254500000004) (0.012796013499999995) (0.012182941500000002) (0.012293626000000002) (0.012175286499999993) (0.012390954499999995) (0.012309529999999985) (0.012525323000000005) (0.012528957999999993) (0.012409022499999992) (0.012547890499999978) (0.012757796500000002) (0.012503222500000008) (0.012351400000000012) (0.01247433499999999) (0.012503326999999995) (0.012930057500000008) (0.012609864999999998) (0.012555250500000004) (0.012680446500000012) (0.0128997525) (0.012828084999999989) (0.012855203999999995) (0.01280262900000001) (0.012697302500000007) (0.012775824000000005) (0.012730015999999997) (0.012744802999999999) (0.012637776500000003) (0.012568262999999996) (0.012735008999999992) (0.012653938500000003) (0.012853813000000006) (0.012666231) (0.012809174999999992) (0.012432250499999992) (0.013084705000000002) (0.013039083000000007) (0.012990931999999983) (0.012630052500000002) (0.012656327500000009) (0.013395225499999996) (0.01286243649999999) (0.012737788000000014) (0.01281060299999999) (0.012909732999999993) (0.012729944499999993) (0.012747889499999998) (0.012538136500000005) (0.01271332750000001) (0.012338764000000002) (0.012364750999999993) (0.01226847099999999) (0.012570518000000003) (0.012851625499999991) (0.012706432000000004) (0.012639823500000008) (0.01268222749999999) (0.012863280500000004) (0.012492095000000009) (0.012475036999999994) (0.01253689799999999) (0.012709716499999996) (0.012460909000000006) (0.012403341999999998) (0.012264958999999992) (0.012211055499999998) (0.012278319499999996) (0.012276438) (0.012383826499999986) (0.012570268999999995) (0.012401828000000004) (0.01247872500000001) (0.012369732500000008) (0.01247726099999999) (0.012430716500000008) (0.012571650000000004) (0.012528541500000004) (0.012262660999999994) (0.012594937) (0.012798796000000001) (0.012707312000000012) (0.01267182650000001) (0.012690994999999997) (0.012617178499999993) (0.012703611500000003) (0.012453165000000002) (0.012951019499999994) (0.013011616000000004) (0.012720825500000019) (0.012810941000000006) (0.012770967000000008) (0.013175974500000007) (0.012867001000000003) (0.012627512499999993) (0.012640642000000007) (0.012415808) (0.012942177499999999) (0.012674811999999994) (0.012698359500000006) (0.012594180499999996) (0.012691066) (0.013059575500000017) (0.012733825000000004) (0.012855176999999995) (0.013581978000000008) (0.012884466999999997) (0.012797398500000001) (0.012921940000000007) (0.012617661000000002) (0.012966786500000008) (0.013075151499999993) (0.012335276000000006) (0.012381272500000012) (0.01250880900000001) (0.012655324999999995) (0.012080310499999997) (0.012248883500000002) (0.012296743999999998) (0.012608825500000004) (0.0128689585) (0.012754836000000006) (0.012435577500000003) (0.012643261000000003) (0.012667603999999999) (0.012667982500000008) (0.012367364000000006) (0.012432758499999988) (0.012643862499999992) (0.01256885349999999) (0.012559671999999994) (0.01239849799999998) (0.01238157849999999) (0.012481621499999998) (0.012239697999999993) (0.012225428999999996) (0.012654173500000004) (0.012894721499999998) (0.01251503050000001) (0.012604048499999992) (0.012549451000000003) (0.012602986499999996) (0.012528412500000016) (0.012353078500000017) (0.01289427450000001) (0.012797490500000008) (0.01255492350000001) (0.01274557400000001) (0.012834272500000021) (0.012788868999999994) (0.012466071999999995) (0.012956899999999993) (0.013019694499999998) (0.012792519500000002) (0.012657762499999989) (0.012907013999999994) (0.012540806000000015) (0.012882058000000002) (0.012775733000000011) (0.012660391499999993) (0.012927948500000008) (0.012680821000000009) (0.013056862999999988) (0.012591372000000003) (0.012507904000000014) (0.012935737000000003) (0.01282169100000001) (0.012504599500000005) (0.0129201335) (0.013097422999999997) (0.01303784849999999) (0.012704723499999987) (0.012941658000000009) (0.012732314499999994) (0.0130424715) (0.01267216950000001) (0.012436944000000005) (0.01229623149999999) (0.012365415500000004) (0.012473306500000003) (0.012366299000000011) (0.012494990999999983) (0.012588962000000009) (0.0124189995) (0.012897560000000002) (0.012422639499999999) (0.012627385000000005) (0.01229719800000001) (0.012438089999999999) (0.01252178100000001) (0.012597488500000004) (0.012597727999999989) (0.012307776000000006) (0.012413114000000017) (0.012437299499999999) (0.012291896499999996) (0.012455520499999997) (0.012287808999999997) (0.012358122499999999) (0.012326908500000011) (0.012415240000000008) (0.012320440500000002) (0.012764857500000004) (0.012367114500000012) (0.012472066000000004) (0.012413668999999988) (0.012574537999999982) (0.012641758500000003) (0.012507770500000001) (0.012546734500000004) (0.012794044000000004) (0.012719442999999997) (0.012632537999999999) (0.012786668000000001) (0.012801954500000018) (0.012639939500000003) (0.013005854499999997) (0.012742864500000006) (0.012856147499999998) (0.012805466000000001) (0.013119581499999991) (0.012753961500000008) (0.012962798500000011) (0.012964791000000003) (0.01248566000000001) (0.012806291000000011) (0.012712234000000003) (0.012827999499999992) (0.013191197500000001) (0.012559661) (0.012604969500000007) (0.012811205999999992) (0.012832673000000003) (0.0126140785) (0.012687653500000007) (0.012812582000000003) (0.012908344499999988) (0.01270972799999999) (0.013117013999999996) (0.012650531000000007) (0.012561084000000014) (0.012732099499999996) (0.012216273999999985) (0.012386499499999995) (0.0124812765) (0.01241374050000002) (0.012358052000000008) (0.012207875500000007) (0.012405354000000007) (0.012364759999999989) (0.012582632999999996) (0.012320986499999992) (0.01289406550000001) (0.0126028475) (0.012368621499999996) (0.012640460000000006) (0.012584902499999995) (0.012312907499999984) (0.012290969499999999) (0.012352482999999997) (0.012383680999999994) (0.012427615499999989) (0.012357160000000006) (0.012493800499999999) (0.012392308500000004) (0.012424337000000008) (0.012294459999999993) (0.0125801725) (0.012771693) (0.012544173499999992) (0.012788953499999978) (0.012432691499999995) (0.013001755500000003) (0.01266813600000001) (0.012660063499999999) (0.012766379000000008) (0.013119058500000003) (0.012626138500000009) (0.012879139999999997) (0.012722668000000006) (0.012677356000000015) (0.012726806499999993) (0.012769747999999997) (0.012639526999999998) (0.012847522500000014) (0.012816584999999991) (0.012671850499999998) (0.012722288500000012) (0.012760650499999998) (0.012790444500000012) (0.012551216500000018) (0.012568016000000001) (0.012996571499999998) (0.0127634665) (0.012599100000000016) (0.012504729500000006) (0.012558865000000002) (0.012802161500000006) (0.012652904500000006) (0.012896081500000003) (0.012863892500000015) (0.012789350000000005) (0.012761394000000023) (0.012746857000000028) (0.012421187000000014) (0.01249554750000001) (0.012755556500000001) (0.012439669999999986) (0.012461586999999996) (0.012254410499999993) (0.012500816499999998) (0.01233694249999999) (0.012667687499999997) (0.0126262595) (0.0124430455) (0.01264509450000001) (0.013021209500000006) (0.012541663999999994) (0.0125335065) (0.012294654499999988) (0.0123508705) (0.012401743499999993) (0.01247952899999999) (0.012277196500000004) (0.012326570999999995) (0.012631086) (0.012426783499999997) (0.012269524000000018) (0.012480188500000003) (0.012482437499999999) (0.012612706499999987) (0.012510466999999997) (0.012357883) (0.012480605499999992) (0.012715894000000005) (0.012717524999999993) (0.012707448999999996) (0.012576718000000014) (0.013121782999999998) (0.012713703000000007) (0.012684754000000006) (0.012763584500000008) (0.012714074999999991) (0.012620880999999987) (0.013016371999999998) (0.012673962999999996) (0.012700080000000002) (0.013149582000000007) (0.012919780500000005) (0.012610188500000008) (0.013206859000000015) (0.012932272500000008) (0.012867416500000006) (0.012646347500000002) (0.012811775000000011) (0.012505562999999997) (0.012577875000000002) (0.012731024499999993) (0.01244174549999999) (0.012624241000000008) (0.013432402499999996) (0.013078796500000003) (0.012790401000000007) (0.012767181000000002) (0.012986413500000002) (0.013008296999999988) (0.012859908499999989) (0.012873848999999979) (0.012397017999999996) (0.012336357999999992) (0.012384246999999987) (0.012257738000000004) (0.012218333999999997) (0.01248826950000001) (0.012298901499999987) (0.012688731500000008) (0.012449086999999998) (0.012410261500000005) (0.012538230999999997) (0.012409328499999997) (0.012463106000000002) (0.012387392000000011) (0.012667033999999994) (0.012617775000000025) (0.012177193500000003) (0.012238033499999995) (0.012424693500000014) (0.012729749499999998) (0.01239148200000001) (0.012358195500000002) (0.012270981) (0.012592651499999996) (0.01280183850000001) (0.012604922500000004) (0.012618306499999996) (0.012625763499999984) (0.012305449999999996) (0.012565616000000002) (0.012337112499999997) (0.012320713999999997) (0.012613179000000002) (0.012875843999999997) (0.012457262999999996) (0.01272482350000001) (0.012884579000000007) (0.012979149999999995) (0.012428126999999997) (0.013044997000000016) (0.012879834500000006) (0.01282369350000001) (0.012846355500000017) (0.013134134499999991) (0.01261503) (0.012930897999999996) (0.012698620499999994) (0.01284287549999999) (0.012799248499999999) (0.013111104000000012) (0.012752538499999994) (0.012619208000000007) (0.012818132499999996) (0.012952074000000008) (0.012906248500000009) (0.012833801000000006) (0.012742297500000013) (0.013018011499999996) (0.013030009500000009) (0.012759727499999998) (0.012932510499999994) (0.012755545999999993) (0.012824156500000003) (0.012788826500000003) (0.012456200000000014) (0.012739847999999984) (0.012518281499999992) (0.012430429999999992) (0.012130167500000011) (0.012117030499999987) (0.012303158499999994) (0.012627303999999992) (0.012552133500000007) (0.012500779000000004) (0.012454185000000007) (0.012443609499999994) (0.012397947999999992) (0.012442757999999998) (0.012581424500000007) (0.012497610999999992) (0.012683634499999999) (0.012861270499999994) (0.012665060999999991) (0.012631600000000007) (0.012466960500000013) (0.012345114500000004) (0.012260281999999997) (0.012433317) (0.012532340000000003) (0.0123853555) (0.012360017499999987) (0.012688769500000002) (0.012673230000000008) (0.012330959000000002) (0.012262393999999996) (0.012385175500000012) (0.012585443500000001) (0.012754495000000005) (0.012710924499999998) (0.012525404500000004) (0.012879960499999996) (0.012716805999999997) (0.01261485250000001) (0.012601727500000007) (0.012531402000000011) (0.012758579499999992) (0.012606434500000013) (0.012741881499999996) (0.01286722600000001) (0.013095979499999993) (0.012778257000000001) (0.012603631000000004) (0.012647793500000004) (0.013016318000000013) (0.012708022999999999) (0.012627259000000016) (0.012646761500000006) (0.012781347499999998) (0.012541434500000004) (0.012817480500000006) (0.012753940500000005) (0.01277694700000001) (0.012790618500000003) (0.012793604000000014) (0.0127511275) (0.012688333999999996) (0.012651447499999996) (0.012721572500000014) (0.012306863500000001) (0.012317138499999991) (0.012577549000000007) (0.012597323499999993) (0.012266694500000008) (0.012358687500000007) (0.012335850999999995) (0.012371313499999995) (0.013141486999999993) (0.01248959999999999) (0.012503611499999998) (0.01257652649999999) (0.012626258500000001) (0.012514459500000005) (0.0125589765) (0.012391610500000011) (0.012376113499999994) (0.012209490000000003) (0.01289580600000001) (0.012344634499999993) (0.012308470000000002) (0.012547621500000009) (0.012347764999999997) (0.012556495500000014) (0.01249466099999999) (0.012410159500000004) (0.012310231500000005) (0.012212452999999998) (0.012625454000000008) (0.012653110499999995) (0.01252858849999998) (0.012211506999999996) (0.012607852500000002) (0.012681556499999996) (0.012576822000000001) (0.012763648000000002) (0.01282004099999999) (0.012598403999999994) (0.01251307950000001) (0.012599985000000008) (0.012602347500000013) (0.012903072000000002) (0.013226442000000005) (0.012939596499999984) (0.01261825200000001) (0.012758444999999993) (0.012727607000000016) (0.012814359999999997) (0.012530751000000007) (0.012687934500000012) (0.012594569000000014) (0.012748190000000006) (0.012539037499999989) (0.012577792500000004) (0.01326980450000001) (0.013077597999999996) (0.012820443000000015) (0.012950866500000005) (0.012812575499999992) (0.012719324000000004) (0.012820885500000004) (0.012826346500000002) (0.012709605500000012) (0.012843939999999998) (0.012531076000000002) (0.012356146499999998) (0.012251727000000004) (0.01220817099999999) (0.012697866999999988) (0.012152317499999996) (0.012593094499999985) (0.01235956449999999) (0.012424187000000003) (0.012562947000000005) (0.012566925999999992) (0.012769022500000005) (0.012348264999999997) (0.012583792499999996) (0.012585266999999997) (0.012402648500000002) (0.012405548499999988) (0.01254123850000001) (0.012377498) (0.012435845000000001) (0.012682773499999994) (0.01239675250000001) (0.01226371350000001) (0.012454528500000006) (0.012401301500000003) (0.0123708565) (0.012497516) (0.01260365099999998) (0.012766659999999999) (0.012444358999999988) (0.012696257000000002) (0.012776004499999993) (0.012742631000000004) (0.012876594500000005) (0.012723134999999997) (0.012764060000000008) (0.013187912999999996) (0.01300316) (0.012665937000000002) (0.012679529499999995) (0.012682013999999991) (0.012706969499999998) (0.01268670949999999) (0.013063527000000005) (0.01282581649999999) (0.012469947999999995) (0.012990924000000015) (0.012774395500000008) (0.013146927000000003) (0.012726043999999992) (0.012718313500000009) (0.012889920999999999) (0.012840020999999993) (0.012671516499999994) (0.01300603950000001) (0.01289038050000002) (0.013014299499999993) (0.01275565799999999) (0.012896533000000002) (0.012604268500000002) (0.012795360500000005) (0.01273429899999999) (0.012919660999999999) (0.012718960000000001) (0.012300384499999997) (0.012641172499999992) (0.012231438999999997) (0.012416660499999996) (0.012405170999999993) (0.012469963) (0.012755327499999997) (0.0122826355) (0.012325389499999992) (0.012665664000000007) (0.012335019500000016) (0.012505765500000002) (0.012371668500000016) (0.01333733949999999) (0.012825238500000002) (0.012647985000000014) (0.01262286) (0.012306732) (0.012106711000000006) (0.012409071999999993) (0.012413391499999996) (0.012262222000000003) (0.012283231000000006) (0.012353951000000002) (0.012840920500000005) (0.012423433999999997) (0.01275799000000001) (0.012743300500000013) (0.01256301500000001) (0.0123873085) (0.012659302000000011) (0.012559545000000005) (0.012738403999999995) (0.012644478500000014) (0.012769532499999986) (0.0126946545) (0.012617722999999997) (0.012928946499999996) (0.0125255435) (0.01277194949999999) (0.012563041999999983) (0.012644002500000001) (0.012963886500000008) (0.01279836899999999) (0.0126670215) (0.012814999499999993) (0.012849672999999992) (0.012699810499999992) (0.012646186500000003) (0.012639809500000002) (0.012798591000000012) (0.012713813000000004) (0.012476597000000006) (0.012660991499999996) (0.012620695500000001) (0.012656451999999999) (0.012836701000000006) (0.01266978249999999) (0.012718544999999998) (0.012770023499999991) (0.012877726500000006) (0.012901698499999989) (0.012911914499999996) (0.012749004000000008) (0.012261955000000005) (0.012436160999999987) (0.012669118000000007) (0.012305314500000011) (0.012374197999999989) (0.012834140500000008) (0.012483803500000001) (0.012669075000000002) (0.012400450500000021) (0.012311154000000005) (0.012621653999999996) (0.012684578000000002) (0.012608142500000002) (0.012596275500000004) (0.0123494475) (0.012820432999999992) (0.012282072000000005) (0.012191646) (0.012412772999999988) (0.01245057799999999) (0.012360330000000003) (0.012484629000000011) (0.01252117450000001) (0.012530180500000002) (0.012312036999999998) (0.01240637750000001) (0.012651594999999988) (0.012285779999999996) (0.012346135500000008) (0.0123537705) (0.012465886499999995) (0.012437550499999991) (0.012598352499999993) (0.012650629499999996) (0.01262407850000001) (0.012623837499999999) (0.013004864000000005) (0.012510385000000013) (0.012754284000000005) (0.012713745999999984) (0.012601979) (0.013016409499999979) (0.012585283000000003) (0.01263893399999999) (0.012750966500000002) (0.012968799000000003) (0.01288657800000001) (0.012717083500000004) (0.01317201300000001) (0.012761502999999993) (0.01276441049999999) (0.012577913499999996) (0.01265222399999999) (0.01266001550000001) (0.012803009500000004) (0.012726430499999997) (0.013118505500000002) (0.012969103499999995) (0.0126679715) (0.012725222000000008) (0.013033336999999992) (0.012659465499999994) (0.012934645000000008) (0.012744060000000015) (0.012338245999999997) (0.012296576000000004) (0.012379082999999999) (0.01236598600000001) (0.012505936500000009) (0.012411235500000006) (0.012686571499999993) (0.012631717) (0.012389165000000008) (0.012601787000000003) (0.012272500500000005) (0.012908013999999995) (0.012398077000000007) (0.0126843975) (0.012465439000000009) (0.012477720999999997) (0.012247871500000007) (0.012517565499999994) (0.012567993) (0.012426106500000006) (0.012375714499999996) (0.01246323299999999) (0.012490141999999996) (0.012541924499999996) (0.012326182500000005) (0.012476251500000007) (0.01282625350000001) (0.012217437499999997) (0.012536814999999993) (0.012512785500000012) (0.012621234499999981) (0.012330729999999998) (0.012667150500000002) (0.012527716499999994) (0.013037552999999993) (0.012981905500000002) (0.012519771499999999) (0.012936656000000005) (0.012907841500000017) (0.01254411100000001) (0.0132626525) (0.012841068999999997) (0.012653431000000007) (0.013215491499999996) (0.0131012925) (0.012775352000000004) (0.01285565100000001) (0.013124668500000006) (0.012526425999999993) (0.012572853999999994) (0.01266502700000001) (0.01282005750000001) (0.012809894499999988) (0.012693496499999998) (0.012902799500000006) (0.012812011999999998) (0.012877321999999983) (0.012806581499999997) (0.013256907499999998) (0.012605076499999993) (0.012892424500000013) (0.013030822999999997) (0.012572803500000007) (0.012685689) (0.012577169) (0.01252484000000001) (0.012414717499999992) (0.012282276000000009) (0.012314867999999993) (0.012561468000000006) (0.012479383999999996) (0.01239056799999999) (0.012613672999999992) (0.012598308000000003) (0.012524655499999995) (0.012606845500000019) (0.012278989000000004) (0.012424470500000007) (0.012472269000000008) (0.01234563200000001) (0.013051921999999994) (0.012331996499999998) (0.012593678499999983) (0.012372337499999997) (0.012383133500000004) (0.012602707500000004) (0.012442730999999999) (0.012462549500000017) (0.012699939500000007) (0.012303613500000019) (0.012371730500000011) (0.012288141500000002) (0.01300205950000001) (0.012790990500000002) (0.012705056499999992) (0.01260456) (0.012824807999999993) (0.012826814499999992) (0.012907632500000002) (0.012930854500000005) (0.012764136999999995) (0.0129342145) (0.013077601499999994) (0.013015395500000013) (0.012990297999999983) (0.012912911499999999) (0.01281615500000001) (0.012586208000000002) (0.013394037500000011) (0.01258820849999999) (0.012792333999999989) (0.012637010500000004) (0.012889835000000002) (0.01305691049999999) (0.012667527999999997) (0.013217147499999984) (0.01297455950000001) (0.012844912500000014) (0.012838751999999995) (0.012687581999999989) (0.012899755500000012) (0.012645653499999993) (0.012594608999999993) (0.012823781500000006) (0.013074166499999984) (0.012641047500000002) (0.012848851999999994) (0.012833784) (0.012248301499999989) (0.012407625999999991) (0.012487938500000004) (0.012394254500000021) (0.012363893) (0.012343140499999988) (0.012692796999999992) (0.012448620999999993) (0.012650730999999985) (0.012536867000000021) (0.0127289815) (0.012480591499999999) (0.012497382499999987) (0.012392410999999992) (0.012539784499999998) (0.012559836000000005) (0.012253629500000002) (0.012269385999999993) (0.012211760000000002) (0.01260845350000002) (0.012110855500000003) (0.012227831999999994) (0.012634037999999986) (0.012369973999999992) (0.01252114) (0.012427810500000011) (0.012502709) (0.012572921) (0.01242385750000001) (0.012442748500000017) (0.012504878499999997) (0.012561106999999988) (0.01261731449999999) (0.012395337999999992) (0.012733388999999998) (0.012751220500000007) (0.012651852500000005) (0.012780057499999997) (0.012781413999999991) (0.012683117500000007) (0.012775501499999994) (0.012715355999999997) (0.013123637499999993) (0.012674531500000003) (0.012875400999999995) (0.012751558999999996) (0.012803052999999995) (0.013336581500000014) (0.012814830999999999) (0.012481560500000016) (0.012623292000000008) (0.012654086499999995) (0.012663333999999998) (0.012727660499999988) (0.012815326500000002) (0.01265171000000001) (0.012819161999999995) (0.012667799999999993) (0.0125370645) (0.01306935599999999) (0.012642778499999993) (0.012856091000000014) (0.012866250999999995) (0.013190611500000005) (0.012262691999999992) (0.012478585) (0.012457644500000004) (0.012661703999999996) (0.012495024000000007) (0.012474949499999999) (0.012455842499999994) (0.012731820500000018) (0.012429047499999998) (0.012505453) (0.012641787499999987) (0.012473810999999987) (0.012456967000000013) (0.01283340899999999) (0.012681766999999997) (0.01249932799999999) (0.012435434499999981) (0.012525505000000006) (0.012520280500000008) (0.012229016499999995) (0.012661843999999992) (0.012654973500000014) (0.012360512500000004) (0.012474081999999997) (0.012317520499999998) (0.012239265499999999) (0.012447356999999992) (0.012833769000000009) (0.012560289500000002) (0.012253033499999996) (0.012411788999999993) (0.012656784000000004) (0.012706919999999997) (0.01304485200000001) (0.012530702000000005) (0.012677351500000003) (0.012985665499999993) (0.012594239500000007) (0.012556870499999997) (0.012773428000000003) (0.013202421500000006) (0.012654814999999986) (0.0130535185) (0.013241865499999991) (0.013056686000000012) (0.012797872499999988) (0.012575116999999983) (0.012702196499999999) (0.012732291000000007) (0.012772864999999994) (0.012895660000000003) (0.012948329500000008) (0.012576237000000004) (0.012635314500000008) (0.012681450999999982) (0.013273722500000015) (0.012942203999999999) (0.012813627999999994) (0.013062391000000007) (0.012915867499999997) (0.012723845500000011) (0.012658059000000013) (0.012550551999999993) (0.012799996499999994) (0.012353464500000008) (0.012761431500000003) (0.012625585999999994) (0.012445579499999998) (0.012463914999999992) (0.0122268715) (0.012491620000000009) (0.012366973500000003) (0.012769601500000005) (0.012364901499999997) (0.012915401999999992) (0.012359996999999998) (0.01276302600000001) (0.012506556999999988) (0.01301273850000001) (0.012714112999999999) (0.012188011499999998) (0.012495982000000003) (0.01248215350000001) (0.012378433499999994) (0.012482101499999981) (0.012565888999999997) (0.012386557999999992) (0.012760527500000007) (0.012636731999999998) (0.01244953) (0.012656487500000008) (0.01293358) (0.012517199499999992) (0.012712112999999997) (0.01271249549999999) (0.012379066499999994) (0.012912103000000008) (0.013061267000000001) (0.0128574105) (0.012819774499999992) (0.012536303500000012) (0.012664453499999992) (0.012743503000000003) (0.013302297500000004) (0.012743147999999996) (0.012682441500000002) (0.012800819500000005) (0.0128524275) (0.012808605) (0.01261831599999999) (0.013448211000000002) (0.01283601899999999) (0.012509586000000017) (0.012782930499999998) (0.012865130500000002) (0.012637171500000002) (0.01257293999999999) (0.0127586685) (0.012615454499999998) (0.012910658999999991) (0.0126073825) (0.012691928499999991) (0.012633692500000002) (0.012780729000000005) (0.012922832499999995) (0.012854178499999994) (0.012682297000000009) (0.012516861000000004) (0.012507311499999993) (0.012315535499999988) (0.01234116049999999) (0.012438170500000012) (0.012614591000000008) (0.012398238500000006) (0.012534378500000012) (0.012591099000000008) (0.012338816999999988) (0.01228945649999999) (0.012548625499999994) (0.01233317149999999) (0.012439395000000006) (0.0129788755) (0.012328137500000003) (0.012487775500000006) (0.012406754000000006) (0.012461557999999998) (0.012309535999999996) (0.012391640999999995) (0.012285743499999988) (0.012257567000000011) (0.012502946000000001) (0.012618112500000014) (0.012712311000000004) (0.012648377000000002) (0.012364) (0.012300008000000015) (0.012190061500000002) (0.012390252500000004) (0.012360719500000006) (0.012434468000000004) (0.012610507500000007) (0.012519713500000001) (0.012756358999999995) (0.012384161500000004) (0.012885760499999996) (0.013064989499999999) (0.012620764500000006) (0.0125256235) (0.01310394999999999) (0.012554608500000008) (0.012747346500000006) (0.012950483999999998) (0.012731498999999993) (0.012727661499999987) (0.012801061999999988) (0.012638125) (0.012783922000000003) (0.012939884999999998) (0.012769009999999997) (0.013014856499999991) (0.012786908000000013) (0.012738151000000003) (0.012625218500000007) (0.012541566000000004) (0.012840983) (0.012737681500000014) (0.012639661999999996) (0.012764181) (0.012753281000000005) (0.012775884500000001) (0.012572362500000003) (0.012717193500000001) (0.01238409800000001) (0.012225512999999993) (0.012474894) (0.012446104) (0.012347876999999993) (0.012361985999999991) (0.0131596135) (0.012461222500000008) (0.012475647500000006) (0.01235894450000001) (0.0126403675) (0.012452094999999996) (0.012772358499999997) (0.012587023500000002) (0.012292117000000005) (0.012609821499999993) (0.01242211) (0.012233951499999993) (0.012237891) (0.012601391999999989) (0.012387840999999997) (0.01254303200000001) (0.01221132300000001) (0.012576624500000008) (0.012692838500000012) (0.012392740999999999) (0.012576160500000003) (0.012550887499999996) (0.012551930999999988) (0.012525307) (0.012456018999999999) (0.012312693) (0.013416153) (0.012552963999999986) (0.012752747500000008) (0.012806392000000014) (0.012816526500000008) (0.013021247500000013) (0.012881202999999994) (0.012653626500000001) (0.012528491500000002) (0.012890109999999996) (0.013534533000000001) (0.012577471500000006) (0.012756899000000002) (0.012639059499999994) (0.0126726655) (0.012936621500000009) (0.012436984000000012) (0.012942476499999994) (0.012852656000000004) (0.012590871500000003) (0.012905693499999996) (0.0125888465) (0.012689217000000003) (0.012838027500000002) (0.013045391000000003) (0.0127306955) (0.013022505000000018) (0.012731204999999995) (0.013065604499999994) (0.012819992500000016) (0.012971055999999995) (0.012726145999999994) (0.012196118499999992) (0.012340941999999994) (0.012398945000000008) (0.0122519205) (0.012324645500000009) (0.012536201499999997) (0.012370873000000004) (0.012448264500000014) (0.012493312500000006) (0.01260974799999999) (0.012273804499999985) (0.012802799500000003) (0.012309637499999984) (0.012357824500000017) (0.01256025799999999) (0.012631799500000013) (0.012336979500000012) (0.012567159000000008) (0.012262357500000001) (0.012382125999999993) (0.012302194500000002) (0.012452409999999997) (0.012229662000000016) (0.012593689000000005) (0.012485787499999998) (0.01227064) (0.012530834500000004) (0.012723050999999999) (0.012571460500000006) (0.012711666499999996) (0.012596165499999992) (0.012282474000000002) (0.012613454499999996) (0.012460884000000005) (0.012843057000000005) (0.012750993999999988) (0.01288273849999999) (0.01281724599999999) (0.012754154000000004) (0.012872184500000008) (0.012677430000000003) (0.012900332499999986) (0.012870674499999998) (0.012757225999999997) (0.012763280000000002) (0.013051767000000006) (0.012905669500000008) (0.01295703699999999) (0.012784432999999998) (0.012632877) (0.012704992000000012) (0.013015129500000014) (0.012747868499999995) (0.012768751500000008) (0.012538676000000012) (0.012638688999999995) (0.012724766500000012) (0.013012867999999983) (0.013074012499999996) (0.012680544999999988) (0.012802335499999998) (0.013117758499999993) (0.013153186499999997) (0.012757840000000006) (0.012284987999999983) (0.012840977999999989) (0.012607730999999997) (0.012411759000000008) (0.012331116500000003) (0.012576582500000003) (0.012495710000000007) (0.012523229499999983) (0.012423853999999998) (0.012376421000000012) (0.012557173000000005) (0.01243103000000001) (0.012327069499999996) (0.012316857) (0.0125169735) (0.012418331500000004) (0.012358985499999989) (0.012317836499999998) (0.012297863499999992) (0.012424549500000007) (0.01220713150000001) (0.0121848185) (0.012710499499999986) (0.01253172100000001) (0.012376474499999998) (0.012471342500000024) (0.012458488000000004) (0.0125242265) (0.013482397000000007) (0.012430615000000006) (0.012397268499999989) (0.012753189500000026) (0.012769612500000013) (0.012667382000000005) (0.012911084500000003) (0.012600267000000012) (0.012560560999999998) (0.01291946599999999) (0.012724510499999994) (0.012873652499999999) (0.012804064000000004) (0.012982436000000014) (0.012668273999999993) (0.012912329999999986) (0.012682105499999999) (0.01296763899999999) (0.012602805499999994) (0.012840456) (0.012662959000000001) (0.012962911499999993) (0.012620199500000012) (0.012700097999999993) (0.012761163500000006) (0.012719965500000013) (0.0127695325) (0.012650955500000005) (0.012729642999999999) (0.01276890800000001) (0.012833745999999993) (0.012708429999999993) (0.01295412550000001) (0.012894133000000002) (0.012801414499999997) (0.012934645500000022) (0.012598349000000009) (0.012189831499999998) (0.01238766849999999) (0.012340639499999986) (0.0122023505) (0.012562990499999996) (0.0123659245) (0.012472235999999998) (0.012795278999999993) (0.012526641000000005) (0.012569804500000004) (0.012257642499999999) (0.012318818500000009) (0.012444967000000001) (0.0124560175) (0.018954692499999995) (0.012600329499999993) (0.012749107499999995) (0.01265733949999999) (0.012260607000000007) (0.0126846075) (0.0122271345) (0.012270890999999992) (0.012471877000000006) (0.012477198499999995) (0.012692911999999987) (0.01270547200000001) (0.012762072999999999) (0.012527820999999995) (0.012795935000000008) (0.012583074000000014) (0.012811771) (0.012643092500000008) (0.012684968000000019) (0.012620500999999992) (0.012662365000000009) (0.012724363999999988) (0.01287207450000001) (0.012609803000000003) (0.012989658500000001) (0.012878041999999992) (0.012796881499999996) (0.012752916499999989) (0.012859591500000003) (0.012608389500000011) (0.012727472000000017) (0.012940296500000004) (0.01313081649999999) (0.012821110999999996) (0.01273466799999999) (0.012721972500000012) (0.012817268000000007) (0.01292275000000001) (0.012604078500000004) (0.012451343500000017) (0.0127915755) (0.012682196000000007) (0.012720951000000008) (0.012642715999999998) (0.012785995999999994) (0.012615512499999995) (0.013045117000000009) (0.012810924000000001) (0.012757501500000018) (0.012452416500000008) (0.012685972500000017) (0.013005700499999995) (0.012689100500000008) (0.012536638500000002) (0.012420397000000014) (0.012488455999999995) (0.012592992499999997) (0.012236929500000007) (0.0124516395) (0.012454521999999996) (0.012321357500000005) (0.0123790025) (0.012402567500000003) (0.012499202000000001) (0.012323957499999996) (0.012271775999999984) (0.012380961999999995) (0.012672625500000007) (0.012354860500000009) (0.012405737000000014) (0.012450055499999987) (0.012250539000000005) (0.012626826000000008) (0.01257517000000001) (0.012412874500000004) (0.012580520499999998) (0.012484937500000001) (0.012486877999999993) (0.012390475500000012) (0.012480213500000004) (0.012480154500000007) (0.012494239500000004) (0.012842066500000013) (0.012774567) (0.012805941000000001) (0.012841084000000003) (0.012653226999999989) (0.012585632499999999) (0.012862366999999986) (0.012891183) (0.012690421500000007) (0.012721140999999991) (0.012540016000000001) (0.012991185500000002) (0.013069748500000006) (0.013139948000000012) (0.012680872999999995) (0.013175621999999998) (0.012688609500000003) (0.0125201125) (0.012761493999999998) (0.013020606500000004) (0.012685849499999999) (0.012446533499999995) (0.012655986999999994) (0.012701296000000015) (0.012584356500000005) (0.012695907499999992) (0.012973773499999994) (0.012816360500000012) (0.012876452499999996) (0.012738047000000016) (0.012823374999999998) (0.012594726999999986) (0.012309807500000006) (0.012443893500000011) (0.012399784999999983) (0.012370843500000006) (0.012341784999999994) (0.012972270999999994) (0.012372193000000004) (0.012548477999999988) (0.012083640999999992) (0.012318718499999992) (0.012472848999999994) (0.012272376000000002) (0.012419386000000004) (0.012532252499999993) (0.012359703) (0.012472223000000005) (0.012240159) (0.012493241500000002) (0.012446904999999994) (0.012569473999999983) (0.012369682000000007) (0.012097425999999994) (0.012144919000000004) (0.01240486049999999) (0.012371658500000007) (0.012461258499999989) (0.0122361255) (0.012515829500000006) (0.012660680999999993) (0.012347282000000001) (0.012310288999999988) (0.01283611300000001) (0.01270516150000002) (0.014886199499999989) (0.012546407499999995) (0.012724188500000011) (0.012542419499999999) (0.012634365499999994) (0.012641074500000002) (0.012637804999999988) (0.012774998499999995) (0.012660389500000022) (0.012831308499999985) (0.012668559999999995) (0.01263806399999999) (0.012709441500000002) (0.012738438000000019) (0.012467544999999997) (0.012568477999999994) (0.012735216999999993) (0.01254076350000001) (0.012736077999999998) (0.012617318499999988) (0.012755772999999998) (0.012673076500000005) (0.012957131999999996) (0.012790811500000013) (0.012640661999999997) (0.012934731500000005) (0.012753055999999999) (0.012628655000000003) (0.012630853000000011) (0.012832099500000013) (0.012455782500000012) (0.012364102000000016) (0.012212266) (0.012929201500000001) (0.012450953000000015) (0.012253071500000004) (0.012236098999999986) (0.012631566499999997) (0.012721398500000008) (0.0125065055) (0.012521076000000006) (0.012371211999999993) (0.012458306500000016) (0.012777315500000011) (0.012410974000000005) (0.012399151499999997) (0.012400443499999997) (0.012490428999999997) (0.012456350500000005) (0.012193590000000004) (0.012468646500000014) (0.012342983999999987) (0.012365586500000011) (0.012442507000000005) (0.01244310550000001) (0.012578090500000014) (0.012844169000000003) (0.012738301999999993) (0.01245852850000001) (0.012308703000000004) (0.012515281500000003) (0.012303696000000003) (0.012518520499999991) (0.012661863999999995) (0.0126456115) (0.012797323000000013) (0.012676856000000014) (0.01253873300000001) (0.012755365000000005) (0.012549453000000002) (0.012990593500000008) (0.012915963000000003) (0.012761882000000002) (0.012764164499999994) (0.012745383999999998) (0.012843483000000003) (0.012595985000000004) (0.013054653499999985) (0.0129010175) (0.013111072500000001) (0.012647419000000007) (0.012701167499999999) (0.012622539500000002) (0.012452066999999997) (0.0128497095) (0.012570752000000004) (0.012912421999999993) (0.012834271000000008) (0.012732414499999997) (0.012668180000000015) (0.012575422000000003) (0.012843337999999996) (0.012616204500000006) (0.012713575000000005) (0.01233722999999999) (0.012625797500000008) (0.012554502500000009) (0.012297749499999996) (0.012778498500000013) (0.0123027265) (0.012327906500000013) (0.013000432000000006) (0.012439285499999994) (0.012897663500000003) (0.012425283500000009) (0.012357054000000006) (0.012190826000000002) (0.012400794000000007) (0.012526846999999994) (0.0125948325) (0.012724760499999987) (0.012233984000000003) (0.012138498500000011) (0.012655312000000002) (0.012530106499999999) (0.012542511500000006) (0.0122672125) (0.012205317000000007) (0.012877916999999989) (0.012642732500000003) (0.012285278499999996) (0.012339446000000004) (0.012613683) (0.01232591249999998) (0.012303679499999998) (0.012564657500000007) (0.012558581499999999) (0.012716328999999998) (0.012669378499999995) (0.012541366500000012) (0.012637720499999991) (0.012628405999999995) (0.012600719999999982) (0.012713951000000001) (0.012737274000000007) (0.012655999000000015) (0.013155795000000012) (0.012781860500000006) (0.012947961500000021) (0.013120056500000005) (0.01255563550000001) (0.0126389435) (0.012624726500000016) (0.012775591000000003) (0.012592946000000008) (0.012431481999999994) (0.012436139999999998) (0.012657410499999994) (0.012959331000000004) (0.012620594499999999) (0.01265508700000001) (0.012947254500000005) (0.012665005000000007) (0.012713802999999996) (0.012761771499999991) (0.012842279499999998) (0.012804734500000012) (0.012745615000000002) (0.012498444499999997) (0.012436305500000008) (0.012527689999999994) (0.012679846500000008) (0.012539385500000014) (0.012377378500000008) (0.012409464499999995) (0.012484710499999996) (0.012381435999999996) (0.012904133499999998) (0.012374533499999979) (0.012362113500000008) (0.012532656000000003) (0.012635054000000007) (0.01237584600000001) (0.012346850500000006) (0.012352967000000006) (0.012624605999999997) (0.012323416500000003) (0.01222097200000001) (0.012402176) (0.012346975999999996) (0.012187353999999997) (0.012630975000000003) (0.012745019999999996) (0.012713441500000006) (0.012609778000000002) (0.012582001999999995) (0.012714694999999998) (0.01251824) (0.012577161500000003) (0.012308729500000004) (0.012608506999999991) (0.012858591500000002) (0.012789300000000003) (0.012911067499999998) (0.012751473499999999) (0.012597099000000014) (0.012720836499999999) (0.012693338500000012) (0.012770126999999992) (0.012951175500000009) (0.013094746000000004) (0.01281750050000001) (0.012639454499999994) (0.012704412499999998) (0.012514313499999999) (0.013197774999999995) (0.012568298500000005) (0.012446821499999997) (0.012597076500000012) (0.012745208000000008) (0.012857424500000006) (0.012582187999999994) (0.012586148999999991) (0.012578871000000005) (0.01297520399999999) (0.01306655050000001) (0.012800339499999994) (0.012656439499999991) (0.013544670499999995) (0.01287786199999999) (0.013415065000000004) (0.012711962000000007) (0.012525452000000006) (0.012265229499999988) (0.012167806499999989) (0.012309240999999999) (0.012294259500000002) (0.012532928499999998) (0.012292844499999997) (0.01236992399999999) (0.012534686000000003) (0.012483328000000016) (0.012625365) (0.012542241499999982) (0.012694564000000005) (0.01290412099999999) (0.012465503000000003) (0.012554443499999984) (0.012139785) (0.012364400999999997) (0.012233260499999996) (0.012268368000000002) (0.012379175000000006) (0.012212786999999989) (0.012522533000000002) (0.012628394000000001) (0.012335006999999995) (0.012716579500000005) (0.012311699500000009) (0.012623300000000004) (0.012716876000000016) (0.012660213500000003) (0.012683006499999996) (0.012599956499999995) (0.012737810000000002) (0.012726041499999993) (0.012691470499999996) (0.012721393000000011) (0.012571535500000008) (0.012542072500000001) (0.012508030999999989) (0.012597123500000001) (0.013085422) (0.012666804500000003) (0.012586724000000007) (0.01284208299999999) (0.013013495) (0.012831152999999984) (0.01276017900000001) (0.01283137949999999) (0.012893092000000009) (0.012511701) (0.012837044500000006) (0.013080986500000003) (0.012774052000000008) (0.012613909499999992) (0.012644104500000003) (0.013018218000000012) (0.013149291500000007) (0.012814871499999991) (0.012755111999999999) (0.01283847049999999) (0.012616172999999994) (0.012624910500000003) (0.012754034000000011) (0.012953655999999994) (0.012367088500000012) (0.012547994499999993) (0.012292393999999998) (0.012710127000000002) (0.012325468999999992) (0.01248371849999999) (0.012235616500000004) (0.012622359500000013) (0.012433442000000003) (0.012290676) (0.012573901499999998) (0.012484270000000006) (0.012522938999999997) (0.012390049) (0.012889300499999992) (0.012392926999999998) (0.012199840500000017) (0.012340667000000013) (0.012534114499999999) (0.012645236500000004) (0.012846886000000002) (0.012456926500000007) (0.012563074999999993) (0.01247662849999999) (0.0125586315) (0.012363961999999992) (0.012499993999999987) (0.01245272850000001) (0.012517168999999995) (0.012771996000000008) (0.012294085499999996) (0.012586203500000018) (0.01262447899999998) (0.012463351999999997) (0.012681105499999998) (0.012887433000000004) (0.012592194000000001) (0.0127443265) (0.0126717425) (0.012821538500000021) (0.012845529499999994) (0.01263910850000001) (0.012845474999999995) (0.012703066499999999) (0.012719382499999987) (0.012734151499999999) (0.012537920500000008) (0.012525586500000005) (0.012498075000000011) (0.012707333000000001) (0.012700882999999996) (0.012404716499999996) (0.012822428499999997) (0.012641162999999997) (0.012460197499999992) (0.012633703999999996) (0.012774854500000002) (0.012679605499999996) (0.012637002999999994) (0.012745474499999992) (0.01265859350000001) (0.012754757500000005) (0.012553127499999997) (0.012583318999999996) (0.012206547499999998) (0.0125030005) (0.012412309499999996) (0.012324316500000002) (0.012294940000000004) (0.01242161500000001) (0.012664541499999987) (0.012348804000000005) (0.012395774499999998) (0.012366651499999992) (0.012487775000000007) (0.0126799145) (0.012499647500000016) (0.012540903999999992) (0.01238054949999999) (0.012458947000000012) (0.012592038000000014) (0.012531626500000004) (0.012569675499999988) (0.012772146999999998) (0.012519799499999998) (0.012603238000000003) (0.012554910500000002) (0.012427300000000002) (0.012447419500000001) (0.012256359999999994) (0.01244707149999999) (0.012292016999999988) (0.012457740500000009) (0.012338046500000005) (0.012489888500000018) (0.012338795999999999) (0.012487128) (0.012692016999999986) (0.012618476000000003) (0.013022258499999995) (0.01281679749999999) (0.012834594000000005) (0.012633233999999993) (0.012698208999999988) (0.012821611999999996) (0.012700574999999992) (0.012878084500000012) (0.012872775500000003) (0.01272023650000001) (0.013145170999999997) (0.013011543) (0.012678313999999996) (0.012589100999999991) (0.012550521000000009) (0.012849353999999993) (0.012497095) (0.012833888000000016) (0.012462303500000008) (0.0128277995) (0.012849760000000002) (0.012576349) (0.013396366999999992) (0.012571474) (0.012828883999999999) (0.012750737999999984) (0.012613287499999987) (0.0130325325) (0.01283289550000001) (0.012465122499999995) (0.012518659500000001) (0.012266794499999997) (0.012273207500000008) (0.012660762500000006) (0.012540165500000006) (0.01235885149999999) (0.012198436499999993) (0.012479654000000007) (0.012226652500000004) (0.012779655499999987) (0.01253709) (0.012423570500000009) (0.012702542999999997) (0.012636249500000002) (0.012834218500000008) (0.012689673999999998) (0.012370366499999993) (0.012173237000000003) (0.012415002999999994) (0.012729999000000006) (0.012340676500000008) (0.01266540350000002) (0.0123734655) (0.012476092499999994) (0.012633309500000009) (0.012298719000000014) (0.0124487145) (0.012281635999999999) (0.012434490499999992) (0.012551758999999996) (0.012330916999999983) (0.012307877499999995) (0.012648977000000006) (0.013043650000000004) (0.012538870000000008) (0.012628389000000004) (0.013049841000000006) (0.012659001500000003) (0.01341887700000001) (0.012878198000000007) (0.01291265400000001) (0.012750536499999993) (0.01287758750000001) (0.01268288699999999) (0.012912542499999999) (0.012879269999999998) (0.01277711350000002) (0.012606395500000006) (0.012538011000000016) (0.012985904999999992) (0.012560703000000006) (0.012939475000000006) (0.012932180500000015) (0.012867693999999999) (0.012912814499999994) (0.012632467000000022) (0.012663011500000002) (0.012471567000000003) (0.01260021950000001) (0.012626604999999999) (0.012657941500000006) (0.012932138999999981) (0.012922655499999991) (0.012472147000000017) (0.012313044499999995) (0.012574220999999997) (0.012387060000000005) (0.012283109999999986) (0.012255083) (0.012629244500000011) (0.012507601499999993) (0.013273933500000001) (0.012812657500000005) (0.012215116499999998) (0.01259595949999999) (0.012448029499999999) (0.012519245500000012) (0.012546341000000016) (0.012479695499999999) (0.012638671000000004) (0.012334197499999991) (0.012293528500000012) (0.01259513050000001) (0.012203982000000016) (0.012432625000000003) (0.012304426000000007) (0.012465802499999998) (0.0127628085) (0.01258329499999998) (0.012491381499999996) (0.012436526500000003) (0.012405557999999997) (0.012516099000000003) (0.01233131350000001) (0.012664738500000008) (0.012679632499999996) (0.013023296500000003) (0.012559488000000008) (0.012732707499999996) (0.012592786500000008) (0.01280765049999999) (0.012817716000000007) (0.012555259499999999) (0.012925780499999998) (0.012688184500000019) (0.01298539650000001) (0.012640312) (0.012760057000000019) (0.012582745000000006) (0.012640144499999992) (0.012481007000000002) (0.012761936000000002) (0.012682788999999986) (0.01248078800000002) (0.012712429000000011) (0.012643220999999996) (0.012824347) (0.01273109) (0.012713769) (0.01298796549999999) (0.012696149000000004) (0.012704049499999995) (0.012548214999999988) (0.012759860999999983) (0.012743217000000015) (0.0129299665) (0.012883306499999997) (0.012679155999999997) (0.012242384500000009) (0.012426709500000008) (0.012602176500000006) (0.012460078) (0.012144136) (0.012341235999999978) (0.012348096499999989) (0.012404257500000015) (0.012478994500000007) (0.012252003999999983) (0.012372163499999991) (0.012454439999999997) (0.012536191500000016) (0.012278361000000002) (0.012293825000000008) (0.012499431499999991) (0.012417648999999989) (0.012462377999999996) (0.012142792) (0.012409822000000001) (0.012239272500000009) (0.012361250000000004) (0.012520011000000011) (0.012354943000000007) (0.012433834000000005) (0.012683785000000003) (0.013097863999999987) (0.012859806500000001) (0.012473268999999995) (0.012429093000000002) (0.012312945500000005) (0.012933558000000012) (0.012836104000000001) (0.012753628999999989) (0.012817657499999996) (0.012897121499999997) (0.012754290000000001) (0.012693381000000004) (0.012764787) (0.012832496499999999) (0.012668995500000002) (0.012898421500000007) (0.013062959999999998) (0.012988287500000001) (0.012719929500000005) (0.012870370000000006) (0.012595252000000001) (0.0127577745) (0.012745259500000009) (0.012724349499999996) (0.012625038500000005) (0.013151205500000013) (0.013064300000000015) (0.012856124499999996) (0.012997301999999988) (0.012894344999999988) (0.012704696500000001) (0.012750588999999993) (0.013312118500000011) (0.012929703000000015) (0.013106433999999986) (0.012922765000000003) (0.01279502350000003) (0.012172938500000008) (0.012321534499999995) (0.012659232999999992) (0.012245128000000022) (0.012854513499999998) (0.012317106499999994) (0.012456822999999992) (0.012509514499999999) (0.012318878500000005) (0.012491462999999994) (0.012591840499999993) (0.012703765499999992) (0.012497627000000011) (0.012383241500000003) (0.012539745500000005) (0.012547019499999992) (0.012427854000000002) (0.012273535000000002) (0.012413610500000005) (0.012290861) (0.012374963500000002) (0.012683925999999998) (0.012333105499999997) (0.012738859499999991) (0.012598536500000007) (0.0130794105) (0.012471240999999994) (0.012479273499999999) (0.012486930499999993) (0.012835317999999998) (0.012777868499999998) (0.012385693500000003) (0.012594493999999998) (0.012415805500000002) (0.012823792) (0.012904812500000015) (0.013282625499999992) (0.012569601000000014) (0.012580494999999983) (0.012669646499999992) (0.012903062999999992) (0.01307570800000002) (0.012582567499999989) (0.012866473999999989) (0.012783766500000016) (0.012737063500000007) (0.012673543999999995) (0.012847874499999995) (0.012705019499999998) (0.012662247500000001) (0.012669283999999989) (0.012731306999999997) (0.012905225000000006) (0.01288484999999999) (0.012654361000000003) (0.012968203499999997) (0.012883122999999996) (0.01306447849999999) (0.012682688999999997) (0.012890252500000005) (0.012859012500000003) (0.013268862500000006) (0.012752833500000005) (0.0127498625) (0.012619271499999987) (0.01234505100000001) (0.0123561945) (0.012250499500000012) (0.012345727500000014) (0.012667813500000014) (0.012357310499999996) (0.012600449) (0.012601628000000004) (0.012488730500000003) (0.0123109005) (0.012520257499999993) (0.012468381) (0.012552734999999995) (0.01262858700000001) (0.012571071500000003) (0.012319473000000011) (0.012549443000000007) (0.012329308499999997) (0.012492271499999999) (0.012426457499999988) (0.012543001499999998) (0.012467225999999998) (0.012306787) (0.012505901999999985) (0.012632708500000006) (0.012624974499999983) (0.012457297500000006) (0.012454485000000001) (0.012515642000000007) (0.01239264050000001) (0.012538543999999985) (0.0127087315) (0.012742709000000005) (0.012611267500000009) (0.012707517500000001) (0.012636039500000001) (0.012532395499999988) (0.012566995500000011) (0.012607905499999988) (0.012759894499999994) (0.012881494000000007) (0.013010566500000001) (0.012664119500000015) (0.012773859999999998) (0.012839701500000009) (0.012656918000000003) (0.012992926000000016) (0.012746451499999992) (0.012510619) (0.012642342499999987) (0.012842244000000003) (0.012773472000000008) (0.013109310999999998) (0.012946488500000006) (0.012536373000000003) (0.012852077500000003) (0.012958508000000007) (0.01279426950000001) (0.012775853500000017) (0.012766009999999994) (0.012887820500000008) (0.01297532849999998) (0.0126161355) (0.012250121499999989) (0.012325409999999995) (0.012304058499999992) (0.0124990205) (0.012191288000000008) (0.012517168499999995) (0.013038312999999996) (0.012376599500000002) (0.012578912499999997) (0.012247185000000008) (0.012395926500000015) (0.012537298500000002) (0.012495734499999994) (0.012354820500000002) (0.012312736000000005) (0.012453439999999982) (0.012523084000000004) (0.012802169499999988) (0.012257816500000004) (0.012337204000000004) (0.012197311000000002) (0.012390694000000008) (0.012557671000000006) (0.012497325000000004) (0.012498968499999999) (0.012413294499999991) (0.012284968499999993) (0.012266178499999988) (0.012633734499999993) (0.012441945999999995) (0.012938722) (0.01250066250000001) (0.012820981999999995) (0.012873655499999997) (0.012572969000000003) (0.012413935000000001) (0.012550661500000004) (0.012683582000000013) (0.012702802999999999) (0.012605292500000004) (0.012766892500000002) (0.01272115850000001) (0.012978578500000018) (0.013151867500000011) (0.0127537655) (0.012813768999999989) (0.012645951000000002) (0.012940808499999998) (0.01327426050000001) (0.012733920499999982) (0.012794684499999986) (0.012551112999999989) (0.012805790999999997) (0.012936754500000008) (0.012746280499999998) (0.01260457500000002) (0.012606139500000002) (0.012462735500000002) (0.012943554999999982) (0.012882731000000022) (0.0125876335) (0.013027904499999993) (0.012853756499999994) (0.012802305999999986) (0.012300961500000013) (0.012156374999999997) (0.012181632999999983) (0.012538685000000008) (0.012352594999999994) (0.012302717500000004) (0.012505119499999995) (0.012360389999999999) (0.012464202499999993) (0.012506379499999998) (0.012418565500000006) (0.0124168645) (0.012485301000000004) (0.012658306500000008) (0.012808220999999995) (0.012513798999999992) (0.012663578000000009) (0.01246323499999999) (0.012280099000000003) (0.012359661999999993) (0.01217256650000001) (0.012632641999999986) (0.012246871999999992) (0.012296131500000015) (0.012614484499999995) (0.012526391499999998) (0.012389876499999994) (0.012536485500000014) (0.012701685000000018) (0.012683344000000013) (0.012589262000000004) (0.012572549999999988) (0.012725206500000003) (0.012821608999999984) (0.012958860999999988) (0.01268641849999999) (0.012755369999999988) (0.012842336999999995) (0.012715946000000006) (0.012667027499999997) (0.012719626000000012) (0.012751333000000004) (0.012684887500000006) (0.013035926999999989) (0.012998872500000008) (0.012904670500000007) (0.01278243100000001) (0.012738370499999985) (0.012730549500000007) (0.012825965500000008) (0.012486862500000001) (0.012681722000000006) (0.012883456499999987) (0.012652680999999999) (0.01296072899999999) (0.01284495350000002) (0.012951274499999998) (0.012721276500000003) (0.012815255499999997) (0.012586376999999996) (0.012720994999999999) (0.012953857500000013) (0.012825536499999998) (0.013118775) (0.012309255499999991) (0.012488588999999994) (0.0121938085) (0.012255306999999993) (0.012525687000000021) (0.012750449999999997) (0.012263926499999994) (0.012460448999999998) (0.012348698500000005) (0.012942741000000008) (0.012368275000000012) (0.012981488999999999) (0.012451961499999983) (0.012658571000000007) (0.01240996350000001) (0.012464766500000002) (0.012288644000000001) (0.012577631499999992) (0.012265024499999999) (0.012823797999999997) (0.012581363499999998) (0.01222862949999999) (0.0122842685) (0.012626711499999999) (0.012511542500000014) (0.012503645000000008) (0.01236084300000001) (0.01259651299999999) (0.012479273999999999) (0.012417515000000004) (0.0124399345) (0.012955222000000016) (0.01272229850000002) (0.012663365999999995) (0.012787291000000006) (0.012693654499999998) (0.012890222499999993) (0.012705268499999992) (0.012925468499999995) (0.012489115500000009) (0.0130161045) (0.012743951000000003) (0.012828661499999991) (0.012736211500000011) (0.0128019355) (0.013067204499999999) (0.012791474499999997) (0.012707710000000025) (0.012576061999999999) (0.013312081500000017) (0.01261287350000001) (0.012842293500000018) (0.012431838) (0.012914414499999999) (0.012620764500000006) (0.01264993099999999) (0.012814312000000008) (0.012677807000000013) (0.012737189499999996) (0.012732736000000008) (0.012968092000000014) (0.012549119500000011) (0.012828020999999981) (0.012977820499999987) (0.012577787499999993) (0.012472033500000007) (0.012449657000000003) (0.012369576000000007) (0.012536856000000013) (0.012398733999999995) (0.012393298499999997) (0.01271019050000001) (0.0125141005) (0.012782930500000012) (0.012676560500000017) (0.012666194500000005) (0.012559993500000019) (0.012572010999999994) (0.012358091000000002) (0.012366476999999987) (0.012442281000000013) (0.012514892499999986) (0.012438744500000015) (0.012444430000000006) (0.012665785500000012) (0.012322607000000013) (0.012310654500000004) (0.012390411000000004) (0.012387751500000016) (0.012346742500000008) (0.012568641500000005) (0.012512845999999994) (0.01277977949999999) (0.012460851000000009) (0.012319977499999996) (0.012510570999999998) (0.01317836750000001) (0.0131154235) (0.012765257499999988) (0.012870052500000007) (0.012893969000000005) (0.0134734455) (0.012998037000000018) (0.012845187000000008) (0.012575016000000008) (0.013192018) (0.01278241350000002) (0.01312508950000002) (0.012849754000000005) (0.013152333000000002) (0.012899824000000004) (0.012905485000000008) (0.012697910000000007) (0.012880964499999994) (0.01264095200000001) (0.01268698700000001) (0.01265515049999999) (0.013005651000000007) (0.01269416249999998) (0.012563234999999992) (0.012811957000000013) (0.012785805000000011) (0.012877449999999985) (0.012841735499999993) (0.012724257500000002) (0.012911137000000017) (0.012656829500000008) (0.01291682700000002) (0.012329341499999993) (0.012208219499999992) (0.012391161999999997) (0.012018032999999997) (0.012192481499999991) (0.012214869000000003) (0.012131554999999988) (0.012258865999999993) (0.012526946000000011) (0.012563033500000015) (0.012432329999999991) (0.0125276005) (0.012452380500000013) (0.012753196500000008) (0.012390298500000008) (0.012348896499999998) (0.012402100499999999) (0.012264146500000003) (0.012435753999999993) (0.012400884000000015) (0.012400173500000014) (0.012735789999999983) (0.01241245199999999) (0.012301487000000014) (0.012457001500000009) (0.012673247499999998) (0.012596942999999985) (0.012379286999999989) (0.012142145000000007) (0.012371554500000007) (0.012509632500000006) (0.012645993499999994) (0.012773790500000007) (0.012723696000000007) (0.01257412500000002) (0.012663227999999999) (0.012633219000000015) (0.012934244999999997) (0.012611962500000004) (0.012539028500000007) (0.012604601000000007) (0.01261847549999999) (0.012822477000000013) (0.012769250499999982) (0.012711708000000002) (0.012863965500000005) (0.0129053175) (0.012666357000000003) (0.012483877000000004) (0.012934383500000007) (0.012692493) (0.012638364000000013) (0.01271512200000001) (0.012614386000000005) (0.012774822000000005) (0.012762401500000006) (0.0125212725) (0.012905145000000007) (0.012720743000000007) (0.012737846999999997) (0.012544075500000015) (0.0127742265) (0.012588976500000001) (0.0126510165) (0.012271123499999995) (0.01222815449999999) (0.012667586499999994) (0.0124422015) (0.012365300999999995) (0.012781933499999995) (0.012806334999999988) (0.012305002499999995) (0.012421206500000004) (0.012697999000000015) (0.012657213) (0.012913634999999993) (0.012397479000000003) (0.01257378499999999) (0.012273112499999989) (0.012419976499999999) (0.012380466999999992) (0.012358054000000007) (0.012360533500000007) (0.012461056499999998) (0.012279585999999995) (0.0122246055) (0.01295901699999999) (0.01253811199999999) (0.01238939) (0.012401763999999996) (0.012771584500000002) (0.012487418000000014) (0.0127453805) (0.012432720500000022) (0.01263316249999999) (0.012415336499999999) (0.012775842999999995) (0.012563125499999994) (0.0127943935) (0.012719168500000003) (0.012685367500000017) (0.01283012750000001) (0.012561626000000006) (0.012725417000000003) (0.012728031) (0.012757039499999998) (0.013061595999999995) (0.012928156499999996) (0.013165214499999994) (0.012701479500000001) (0.012902216999999994) (0.013194747999999992) (0.012638615499999992) (0.012727449000000016) (0.012497417999999996) (0.012719349500000005) (0.012727343000000002) (0.012669921) (0.012864724500000008) (0.012759720500000016) (0.012448846999999985) (0.013090775500000013) (0.012624099999999985) (0.013060537999999997) (0.0126592175) (0.012576566499999997) (0.013099730500000017) (0.012759849500000017) (0.012741228500000007) (0.01227603599999999) (0.012511623999999985) (0.012252060999999995) (0.012353808999999993) (0.012882545499999995) (0.012499830000000003) (0.012493367500000005) (0.012531569500000006) (0.012370132500000006) (0.012333605500000011) (0.012487366000000014) (0.012388291999999995) (0.012448532999999998) (0.012219112500000004) (0.012509386499999997) (0.012255676999999993) (0.012518870000000001) (0.012223607999999997) (0.012498524499999997) (0.01222198699999999) (0.012661744500000002) (0.012379894500000002) (0.0123643435) (0.012842133000000006) (0.01243287999999998) (0.012859831499999988) (0.012550844000000005) (0.012586658499999986) (0.01267087950000001) (0.012591929000000016) (0.012508441999999995) (0.012888323999999993) (0.012646501500000004) (0.013470705) (0.012522377000000001) (0.01274146850000002) (0.012828767000000005) (0.012877260000000001) (0.012486154) (0.012732102999999995) (0.012688631500000006) (0.012880214499999987) (0.012597929999999993) (0.012634304500000013) (0.012628120500000006) (0.012572222499999994) (0.012792258000000015) (0.012827664500000002) (0.012702755499999996) (0.012754994499999991) (0.01280489) (0.012684026000000001) (0.012630602000000005) (0.013027953000000009) (0.012868348000000002) (0.012783489499999995) (0.012805693500000007) (0.012821684) (0.013219603999999996) (0.013042869999999998) (0.013083025999999984) (0.012791915000000015) (0.012586417500000002) (0.012167198000000018) (0.012368093999999996) (0.012367415499999992) (0.01235412100000001) (0.012485063000000005) (0.012301422499999992) (0.012410626500000008) (0.012503702999999991) (0.012302777) (0.012574205000000005) (0.012234004000000007) (0.012447505499999997) (0.012552559000000019) (0.012388243499999993) (0.012530431499999994) (0.012487912000000004) (0.012462871999999986) (0.012337113499999997) (0.012380077999999989) (0.0129194485) (0.012371892499999995) (0.01261676049999999) (0.012363698999999992) (0.012265524) (0.012353240500000001) (0.012317255499999999) (0.012590813500000006) (0.012548960000000012) (0.012290696500000003) (0.012648373000000004) (0.012329774000000002) (0.012458065500000004) (0.012812247499999999) (0.012927795999999991) (0.0125578145) (0.012797026999999989) (0.012680309) (0.012788117500000001) (0.012575290000000003) (0.012821992500000018) (0.012955650999999999) (0.012837936000000008) (0.012755915000000007) (0.012658991499999994) (0.012909293500000002) (0.01332844850000002) (0.012812919500000006) (0.013064496999999994) (0.012659167999999998) (0.012819097000000015) (0.012929001999999995) (0.013153181999999985) (0.012517432499999995) (0.012634728000000012) (0.012918243999999995) (0.012681428499999994) (0.012841402000000002) (0.01261893900000001) (0.012683140499999995) (0.01260249799999999) (0.012808607999999999) (0.013100366000000002) (0.012751688499999997) (0.012920497000000003) (0.01283989499999999) (0.012435877999999997) (0.012414070499999999) (0.012461453499999997) (0.01251993450000001) (0.012424681999999992) (0.012258541500000011) (0.012640314) (0.012559755500000006) (0.012514912000000003) (0.012274055500000006) (0.012730400000000003) (0.012362001499999997) (0.012350371999999998) (0.012384965999999997) (0.01298769100000001) (0.012315755999999997) (0.012358340999999995) (0.012348133999999997) (0.012467834999999997) (0.012316140000000003) (0.012298732499999993) (0.012322068499999991) (0.01227449700000001) (0.012526757) (0.012621731999999997) (0.012408290999999988) (0.012652497499999998) (0.012386184999999994) (0.012511452000000006) (0.012347625000000001) (0.01270410600000002) (0.012553697500000002) (0.0127462765) (0.012491659000000002) (0.012612211499999984) (0.01265753750000001) (0.012480345000000004) (0.012772769999999989) (0.012720892499999997) (0.01297537700000001) (0.012662827999999987) (0.012677656500000009) (0.01265012900000001) (0.0129674615) (0.01276671850000001) (0.012970319999999994) (0.012570766499999997) (0.0127817675) (0.012940680999999996) (0.012775953999999992) (0.012581856000000002) (0.012581470500000011) (0.012841265000000004) (0.01287123100000001) (0.012768637999999999) (0.012715506000000001) (0.012922462499999995) (0.01285059949999999) (0.012824278500000008) (0.0126643335) (0.012754406499999996) (0.012994066499999998) (0.012775680499999983) (0.012309640999999996) (0.012360553499999996) (0.012210954999999996) (0.012936970499999992) (0.012508159500000005) (0.012509101999999994) (0.012243503999999988) (0.01248784900000001) (0.012566145) (0.012496213000000006) (0.012660718500000001) (0.012615551500000002) (0.012506555999999988) (0.012747537499999989) (0.012589011999999983) (0.012404205500000001) (0.012244620000000012) (0.012402478500000008) (0.012180353500000005) (0.012794225000000006) (0.012246880000000002) (0.012606812499999995) (0.012186385000000008) (0.012450470000000005) (0.012552621) (0.012710668500000008) (0.012801973499999994) (0.01243867600000001) (0.012491674000000008) (0.012297488499999995) (0.012526152499999998) (0.012369302999999998) (0.012610441) (0.012513257) (0.012687214000000002) (0.012650653499999998) (0.012686966999999993) (0.012476056999999999) (0.012612145000000005) (0.012755846000000015) (0.012972895999999998) (0.012588718999999998) (0.0129205305) (0.012864358999999992) (0.012996431999999988) (0.01288587749999999) (0.012791385000000002) (0.012928995499999998) (0.0128630795) (0.012836276999999993) (0.012660521000000008) (0.012583203000000015) (0.012569287000000012) (0.01289411650000001) (0.012865861500000006) (0.012521403000000014) (0.012634967499999997) (0.01297247650000001) (0.012503065500000007) (0.01275561800000001) (0.012800402000000002) (0.012632907499999999) (0.01268304599999999) (0.012657938500000007) (0.012358749500000002) (0.012300896500000005) (0.012608227) (0.01248342450000002) (0.012453224499999999) (0.012442380999999988) (0.012316498499999995) (0.012431531499999995) (0.012429630499999997) (0.012372466999999998) (0.01253585900000001) (0.012819413500000001) (0.01251445100000001) (0.012533943500000005) (0.012320244000000008) (0.012323966499999991) (0.012511695499999989) (0.012409052000000004) (0.012844531500000006) (0.012355340500000006) (0.012547337500000005) (0.012457222000000004) (0.012633779000000012) (0.012915363499999999) (0.012605354999999999) (0.012587768500000013) (0.012409983500000013) (0.012663998499999995) (0.01244940500000001) (0.0127975335) (0.01243744699999999) (0.012769791000000003) (0.012697462000000007) (0.012720862999999999) (0.012531571499999991) (0.013298500500000004) (0.012844992999999999) (0.013037738000000007) (0.012757703999999995) (0.012909356499999983) (0.012775598499999999) (0.01265965949999999) (0.012993829500000012) (0.012893987999999995) (0.012639535000000007) (0.012530964500000005) (0.012863330999999992) (0.013064973500000007) (0.012640710000000013) (0.01265123650000001) (0.012753607000000014) (0.012871687499999993) (0.012885475000000007) (0.012490120999999993) (0.012652583999999995) (0.012580772000000004) (0.012732128500000009) (0.012913824000000004) (0.012626750000000006) (0.013364996000000004) (0.012857757499999997) (0.012968935500000014) (0.012946356499999992) (0.012817162499999993) (0.01236764500000001) (0.01227313549999999) (0.012282668499999996) (0.012395392500000005) (0.012617403999999999) (0.012361879500000006) (0.012277146000000017) (0.012150472499999995) (0.012432912000000018) (0.012492572500000007) (0.012678284999999997) (0.012590830000000011) (0.012366198500000009) (0.012527912000000016) (0.012809481000000011) (0.012341677999999995) (0.012413914999999998) (0.012394450000000001) (0.012478293500000001) (0.01238650999999999) (0.012498685999999995) (0.0123031465) (0.012470890500000012) (0.012230689000000003) (0.012862187999999997) (0.012671390500000004) (0.012623804000000002) (0.012702538000000013) (0.012282354500000009) (0.012281876999999997) (0.012493907500000012) (0.01251219599999999) (0.013008471999999993) (0.012603255500000007) (0.013182925999999998) (0.012775378500000004) (0.012592061500000001) (0.012566449000000007) (0.012762517500000015) (0.012529846999999997) (0.012651420499999982) (0.013035544499999996) (0.01271085000000001) (0.012830848999999991) (0.013376662499999997) (0.012789420499999996) (0.012854641) (0.012716057000000003) (0.012785558999999988) (0.013142798499999997) (0.012468041) (0.0128812965) (0.012602672500000009) (0.012585922) (0.01255981099999999) (0.013073844499999987) (0.013273108000000006) (0.012934457499999996) (0.0126978685) (0.012940641000000003) (0.013287746000000003) (0.013043889000000003) (0.0127845885) (0.012933353999999994) (0.01234333700000001) (0.0125540195) (0.012881136500000001) (0.012534289000000004) (0.012556373499999995) (0.012342526500000006) (0.012529678500000002) (0.01224830099999999) (0.014706197000000004) (0.012549721) (0.01275404849999999) (0.012431944500000014) (0.012550983500000001) (0.012796104000000003) (0.012526658499999996) (0.012464778999999995) (0.012428066000000002) (0.012324065999999995) (0.01259192499999999) (0.012514581499999997) (0.012307038500000006) (0.012348562500000007) (0.012373214499999993) (0.012224581499999998) (0.012576723499999998) (0.012517089999999995) (0.012530844499999999) (0.012530247999999994) (0.0124186045) (0.012564780499999997) (0.012289948499999995) (0.012996838499999996) (0.0126879555) (0.012666823500000021) (0.012735932000000005) (0.012569329500000004) (0.012794828500000008) (0.012563602999999979) (0.0128837485) (0.01296269450000001) (0.01300095900000002) (0.012720447999999995) (0.012705019499999998) (0.012676668000000002) (0.012794365499999988) (0.013111128) (0.01266909599999999) (0.012964502500000002) (0.012747104999999995) (0.012752864499999989) (0.012604225000000024) (0.012621016000000013) (0.012574125499999991) (0.012804490500000001) (0.012699881999999996) (0.012807464000000005) (0.012825276999999996) (0.013154829500000007) (0.012668232500000001) (0.012693311000000013) (0.012689736500000007) (0.012807340500000014) (0.01277283650000001) (0.012801423999999992) (0.012483253) (0.012539271500000004) (0.012160864500000007) (0.012655505999999997) (0.012657834500000006) (0.012662075499999995) (0.013035376999999987) (0.012610136500000008) (0.012412386000000011) (0.012520276499999997) (0.01284689) (0.012297450500000001) (0.012313527000000005) (0.012440825500000002) (0.012643316500000001) (0.012727533499999999) (0.012602350999999998) (0.012740280000000007) (0.012268859500000007) (0.012419130999999986) (0.012852284500000005) (0.012472880499999991) (0.012575888499999993) (0.012370667500000002) (0.012442073500000012) (0.012652570500000015) (0.012519282500000006) (0.012400741000000007) (0.01229717000000001) (0.012571407999999992) (0.012130313500000017) (0.012616280000000007) (0.0129411995) (0.012951293500000002) (0.013079290000000007) (0.012738213999999998) (0.012771815999999991) (0.012915125999999985) (0.012944263500000011) (0.012745422499999992) (0.012710442000000002) (0.012696813000000015) (0.013044191999999996) (0.012734049999999997) (0.012991475000000002) (0.012756430500000013) (0.012725509499999996) (0.012904186499999984) (0.013087220499999996) (0.01288368799999999) (0.0126017125) (0.0125291825) (0.012456005000000006) (0.012736457500000006) (0.012701854499999998) (0.012723993000000003) (0.012875470999999986) (0.012976621000000008) (0.012652638999999993) (0.013107856000000015) (0.012822437999999992) (0.012665873999999994) (0.012636673000000015) (0.012634620999999999) (0.012560931999999983) (0.01229608750000001) (0.0125332435) (0.012301105000000007) (0.012436405500000011) (0.01231623150000001) (0.012296744500000012) (0.012584177499999988) (0.012332678500000013) (0.0124414625) (0.012445724000000005) (0.012353025500000003) (0.012360693999999992) (0.012383104999999991) (0.012402217000000007) (0.012507799500000014) (0.012306314999999998) (0.0124390905) (0.012294035499999995) (0.012650297000000005) (0.012546189) (0.012500840999999999) (0.01249671049999998) (0.0124517715) (0.012442920499999996) (0.012885615000000003) (0.012752190499999982) (0.01241750250000001) (0.012362630999999999) (0.012462144499999994) (0.012530271000000023) (0.012232588000000003) (0.012779834500000004) (0.012724783999999989) (0.012699966999999993) (0.012603833999999994) (0.012653602500000014) (0.01276060200000001) (0.012755771499999999) (0.012657116999999982) (0.012856732499999995) (0.012938343000000005) (0.012818360499999987) (0.01263637849999999) (0.012569965999999988) (0.012756228500000008) (0.013009444000000009) (0.012943407500000004) (0.012544184500000014) (0.012957901500000008) (0.0128705675) (0.012857721500000002) (0.012661388999999995) (0.013134393000000008) (0.012714807500000008) (0.012771021500000007) (0.01287924900000001) (0.012984814499999997) (0.013099507999999996) (0.012854953500000016) (0.012748507500000006) (0.013545840000000017) (0.012872153000000011) (0.013234216500000007) (0.0127645495) (0.012404591000000006) (0.012787996999999982) (0.0127521845) (0.012534281500000022) (0.012947752500000007) (0.012539646000000002) (0.012284415500000007) (0.012521623499999995) (0.012676959000000015) (0.012590090500000012) (0.012495219500000002) (0.012750220000000007) (0.012838863499999992) (0.012400329000000002) (0.012327881500000012) (0.0127173015) (0.012418242499999996) (0.012472807999999988) (0.012305754500000002) (0.012651902500000006) (0.012452552000000006) (0.012284032000000014) (0.012493823000000001) (0.012481583500000004) (0.012338536999999997) (0.012521662500000003) (0.012406825999999996) (0.012415456000000005) (0.012531646000000007) (0.012551130999999993) (0.0125091445) (0.012783498500000004) (0.012645165) (0.012947405499999995) (0.01290694449999999) (0.012689890999999995) (0.012649896499999994) (0.012771385499999996) (0.012699547999999991) (0.012683664499999997) (0.01257602549999999) (0.0128390325) (0.012822578499999987) (0.012899078999999994) (0.012738336000000003) (0.01284560500000001) (0.012865017499999992) (0.012622545499999999) (0.012860289999999996) (0.012955409499999987) (0.012735943) (0.012520389499999993) (0.012851695499999996) (0.012900495999999997) (0.013000446999999998) (0.012739483999999995) (0.012587361500000005) (0.012818191499999992) (0.01267458199999999) (0.012727559000000013) (0.012931200000000004) (0.012661877500000002) (0.012678038000000003) (0.012503673999999979) (0.012193977999999994) (0.012390775999999992) (0.012199830499999995) (0.012287889999999996) (0.012402919499999998) (0.012366318000000001) (0.01270631550000001) (0.012290189000000007) (0.012503151500000004) (0.012479249500000011) (0.012559988000000008) (0.012607719000000003) (0.012514749000000006) (0.012329225499999999) (0.012840530000000003) (0.012435251499999994) (0.012248617999999989) (0.012239074000000003) (0.012425940499999996) (0.012185070500000006) (0.012393222500000009) (0.012495318500000005) (0.0123418515) (0.012507768500000002) (0.012294848000000011) (0.012558723000000008) (0.012636276000000016) (0.012386282499999998) (0.012255611999999999) (0.012786809499999996) (0.012337491499999992) (0.012738762) (0.0128285375) (0.012836072500000004) (0.012912719500000003) (0.0129068725) (0.012673227500000023) (0.013092774500000001) (0.012740671499999995) (0.01277521849999999) (0.012647761999999993) (0.013395795500000002) (0.012752889000000003) (0.012866758999999992) (0.01299939750000001) (0.013223139000000009) (0.012810053500000002) (0.012711206000000003) (0.012961870500000014) (0.012836208000000016) (0.012740974500000016) (0.012772145499999998) (0.01271154649999999) (0.012586658500000014) (0.012724444500000001) (0.013114874000000012) (0.012943509000000006) (0.012643216500000012) (0.012794068500000005) (0.013108697499999988) (0.01300171750000001) (0.012889577499999999) (0.012933809500000004) (0.012418862500000002) (0.012308785000000003) (0.012344915000000012) (0.012363283500000002) (0.012419522500000002) (0.012224558499999996) (0.012629603500000003) (0.012350477000000012) (0.012417932500000006) (0.012382313500000006) (0.012518961999999995) (0.0125489545) (0.01242551900000001) (0.012358530499999992) (0.012991151499999992) (0.01268731549999999) (0.012320445499999999) (0.012390440500000002) (0.012434512000000009) (0.012462121499999992) (0.0122608585) (0.012392267999999998) (0.012628843499999987) (0.012349564000000007) (0.012234003499999993) (0.012505391500000004) (0.012625753500000003) (0.012365452999999998) (0.01240553500000001) (0.012426293000000005) (0.012654479499999996) (0.012346573) (0.012779932000000008) (0.012918135499999997) (0.012799219999999986) (0.012808426999999997) (0.0125859485) (0.012539233499999997) (0.012759507500000003) (0.012879102500000003) (0.012660434499999984) (0.012948750499999995) (0.012621945499999995) (0.012724511999999993) (0.012848877499999994) (0.012865871000000001) (0.012914970499999998) (0.012803760500000011) (0.012770081000000003) (0.012581882500000016) (0.012546296499999998) (0.012624338500000012) (0.01281850800000002) (0.012888224500000003) (0.012824650000000007) (0.012932525) (0.013048339999999992) (0.012791086500000007) (0.012740322499999984) (0.012821848499999997) (0.012599393999999986) (0.01271488200000001) (0.013052353500000002) (0.012976888500000006) (0.012475142499999994) (0.012217555500000005) (0.012516728000000005) (0.0125374875) (0.012524904000000017) (0.01235629399999999) (0.012505985999999997) (0.012624797999999993) (0.012788793499999992) (0.012525797000000005) (0.012566635000000007) (0.012419375999999996) (0.012608384) (0.012486628) (0.0122752015) (0.012422087999999998) (0.012495998499999994) (0.012558381999999993) (0.012475320000000012) (0.012203613500000002) (0.012769712000000016) (0.012295935499999994) (0.012431907500000006) (0.012252562000000009) (0.012359397999999994) (0.012432508499999995) (0.0123845125) (0.012571369499999999) (0.012661191500000002) (0.012719214500000006) (0.012446659500000012) (0.012480788500000006) (0.012923508) (0.012775623) (0.0126532335) (0.012788069499999999) (0.012587585000000012) (0.012478592499999996) (0.012472203499999987) (0.012969507499999991) (0.013026566500000003) (0.012902239999999995) (0.012639338) (0.01312993400000001) (0.012922584499999987) (0.012641863000000003) (0.012711709500000015) (0.012738421500000013) (0.01263773) (0.013264077500000013) (0.012920582000000014) (0.012978874000000001) (0.012653228500000002) (0.012888975499999997) (0.0126594545) (0.012667863500000015) (0.013011639499999991) (0.012857720000000003) (0.012849386000000004) (0.012919495000000017) (0.01299849850000001) (0.012759633500000006) (0.012670380499999995) (0.01282792649999999) (0.012257844000000004) (0.012606905000000002) (0.012478454000000014) (0.012372247000000003) (0.012426273500000015) (0.012614058499999997) (0.012482707999999995) (0.012617669999999997) (0.012505823999999999) (0.012697832000000006) (0.012549570999999982) (0.012465625999999994) (0.012556538999999992) (0.012441638500000005) (0.012553416500000011) (0.012429590000000004) (0.012195009999999992) (0.012478191) (0.012343968499999997) (0.012693769499999993) (0.012639737500000012) (0.012393272999999996) (0.012314369000000006) (0.012511312999999996) (0.012192075499999996) (0.012421531000000013) (0.012440266000000005) (0.012424036500000013) (0.012501586000000009) (0.012598942500000002) (0.012682734000000015) (0.0127209915) (0.012924054000000004) (0.012958217999999994) (0.012380904999999998) (0.012801897500000006) (0.012694348000000008) (0.012764141999999978) (0.012889097499999988) (0.012752507999999996) (0.013205661000000007) (0.012828540500000013) (0.013131903) (0.012863994000000004) (0.013008400000000003) (0.012826041999999996) (0.012909941999999994) (0.012663736500000009) (0.013012180499999998) (0.012816092500000001) (0.012754918000000004) (0.012559103500000016) (0.012628625500000004) (0.012938516999999997) (0.012793635999999997) (0.012767048500000003) (0.013026616500000004) (0.013041804500000004) (0.012851732499999977) (0.01256787899999999) (0.012745440499999997) (0.012686781999999994) (0.012701876500000014) (0.012827303499999984) (0.0122621745) (0.012519120499999994) (0.012162315000000007) (0.012229881500000012) (0.012139504999999995) (0.012491173500000008) (0.012495646) (0.012399116000000002) (0.012509465500000011) (0.012478326999999997) (0.012333875000000008) (0.012275657999999995) (0.012460809500000003) (0.012563981000000002) (0.012205304000000014) (0.012408333500000007) (0.012331759000000012) (0.012515797500000009) (0.012714704499999993) (0.01234555399999998) (0.012485879999999991) (0.012375189999999994) (0.012623819499999994) (0.012762356500000002) (0.012459047000000001) (0.012511001999999993) (0.012362787000000014) (0.012245951500000019) (0.012430216499999994) (0.012445305000000004) (0.012525495499999997) (0.012394272000000012) (0.012695436000000004) (0.01253797949999999) (0.012732605999999994) (0.012653928000000009) (0.012845544) (0.012798762500000005) (0.012627731000000003) (0.012966858500000011) (0.012661984000000001) (0.012871869000000008) (0.012904174500000018) (0.012630113499999998) (0.012740041999999993) (0.012781252500000007) (0.012803803000000002) (0.012629067000000008) (0.012627541499999992) (0.012834831500000005) (0.012823588999999982) (0.012543009499999994) (0.012528549499999986) (0.012616171500000009) (0.012913493999999984) (0.012454078999999993) (0.012565676500000011) (0.013392130000000002) (0.012511956000000005) (0.013194395499999997) (0.012763435000000004) (0.012705233999999996) (0.012821000999999999) (0.012620430000000002) (0.012626937500000004) (0.012489856999999993) (0.0125118315) (0.01227499800000001) (0.012437739000000003) (0.012372877000000004) (0.012418942499999988) (0.012374501999999996) (0.012895429999999986) (0.012375615999999992) (0.012237723499999992) (0.01227661649999999) (0.012517029499999999) (0.01258467499999999) (0.012519352999999997) (0.012302074499999996) (0.012699212500000001) (0.01238214) (0.012568926500000008) (0.01243652549999999) (0.01248600300000001) (0.01244213050000001) (0.012227570500000007) (0.012189807999999996) (0.012442003499999993) (0.012325701999999994) (0.012416974499999997) (0.012349942000000003) (0.012377651000000003) (0.012714212500000002) (0.012361853000000006) (0.012534013499999996) (0.01287472349999999) (0.01318742299999999) (0.012706468999999998) (0.012788903500000004) (0.012687185000000017) (0.012544114499999995) (0.012758867500000007) (0.01265921049999999) (0.013042666999999994) (0.012951312499999992) (0.012668351500000008) (0.012638181999999998) (0.012983360999999999) (0.012647928500000002) (0.012767987999999994) (0.013348427999999996) (0.01240066599999999) (0.012495367000000007) (0.0129561215) (0.01292541300000001) (0.012665152999999998) (0.012965808500000009) (0.012563762000000006) (0.012494234500000007) (0.012737707000000001) (0.0128217365) (0.01274410949999999) (0.012776939499999987) (0.0131483815) (0.012934756500000005) (0.012750729500000002) (0.012704425499999991) (0.01228792450000002) (0.012325965500000008) (0.012136022999999996) (0.01255070250000001) (0.012312925500000016) (0.012440788999999994) (0.012408152500000005) (0.012282004499999999) (0.012571180500000001) (0.012880397500000015) (0.012336478500000012) (0.012320341500000012) (0.012585825500000009) (0.012556572500000016) (0.012484091500000002) (0.0124587595) (0.012290203000000013) (0.012779430499999994) (0.012493509500000013) (0.012121070999999997) (0.012290414499999985) (0.012432879000000008) (0.012366217999999998) (0.01272756450000001) (0.012940293000000005) (0.012842772499999988) (0.012289307) (0.012614941500000004) (0.012596452499999994) (0.012531349000000011) (0.012600212999999999) (0.012567387999999999) (0.013328055000000005) (0.012451629500000005) (0.012795116500000009) (0.012821410500000005) (0.012953040499999999) (0.012740825499999997) (0.012731764500000006) (0.012761186500000007) (0.012744879) (0.01280502700000001) (0.012693746000000006) (0.012646882999999998) (0.013029639000000023) (0.01292960999999998) (0.0128811135) (0.012619156500000006) (0.012603394500000004) (0.012770091499999997) (0.012696330500000005) (0.01279609100000001) (0.01269182449999999) (0.012701008) (0.012798301499999998) (0.012890941999999989) (0.012853501000000003) (0.012776576499999998) (0.012984959500000004) (0.0128439085) (0.012808913500000005) (0.013073334000000006) (0.013002287500000015) (0.012756057000000001) (0.012114598500000004) (0.01248250549999999) (0.012697613999999996) (0.012462026500000015) (0.012409214000000002) (0.01258891799999999) (0.012376118499999991) (0.01265364799999999) (0.012597434500000018) (0.01232295500000001) (0.012360340999999983) (0.0126769085) (0.01251738949999999) (0.01242449050000001) (0.012341966499999996) (0.012264792499999996) (0.012436878000000012) (0.012606085000000003) (0.012316520999999983) (0.012457507000000007) (0.012578657499999993) (0.012618627000000007) (0.0121934925) (0.012519754500000008) (0.01267181199999999) (0.012544974499999986) (0.012711637000000012) (0.01231056450000001) (0.012263174500000001) (0.012393308999999991) (0.012812255500000008) (0.01245199000000001) (0.013081498999999996) (0.012841866499999993) (0.012548205999999992) (0.012496385999999998) (0.012688771500000001) (0.012606109500000004) (0.012596753000000002) (0.012679305500000002) (0.012982380499999988) (0.012915288499999983) (0.012725096499999991) (0.012937090499999998) (0.012852592499999996) (0.012795349999999997) (0.012822908999999993) (0.012622951000000007) (0.012721281000000001) (0.012573405999999995) (0.012805299999999992) (0.012657385500000007) (0.0127606455) (0.012989894500000015) (0.012582530499999994) (0.012545755500000005) (0.012915320500000008) (0.012769099999999992) (0.012664274000000017) (0.012907852499999997) (0.012914743999999992) (0.012929222000000004) (0.012706671500000002) (0.012793182000000014) (0.012840390499999993) (0.012423760500000006) (0.01232362499999999) (0.012583565500000005) (0.012706397000000022) (0.012771179000000007) (0.012529031999999996) (0.012741091499999996) (0.012645466000000008) (0.012384296999999989) (0.012306366) (0.012617029000000002) (0.012297633000000002) (0.012712694499999996) (0.012329801000000001) (0.012301842999999993) (0.012449623000000007) (0.012337956999999997) (0.012377738) (0.012388430500000006) (0.012395611999999986) (0.012194604499999998) (0.012292490500000003) (0.012194284) (0.012254023500000016) (0.01226946050000001) (0.012793295499999996) (0.012404198000000005) (0.0123188605) (0.012685528000000001) (0.012801918500000009) (0.012336618000000008) (0.012616477500000015) (0.012638725999999989) (0.012729226999999996) (0.012596324499999992) (0.012544268499999983) (0.012968935000000001) (0.012475223500000007) (0.012853858999999995) (0.012900349999999991) (0.013032252500000008) (0.012988285500000016) (0.012588464500000007) (0.012821464500000004) (0.012782204999999991) (0.01257986400000001) (0.012958029499999996) (0.012580160999999992) (0.012549227999999996) (0.012642319499999999) (0.012592444499999994) (0.012612557999999996) (0.012639369499999997) (0.012598069000000003) (0.012630957500000012) (0.012818600999999999) (0.012677479500000005) (0.012820630000000013) (0.01263460000000001) (0.012739708500000002) (0.012827064499999999) (0.012612866500000014) (0.012933873000000012) (0.0125161555) (0.012572509999999995) (0.01279266950000002) (0.012618559499999987) (0.012498418499999997) (0.0124005165) (0.012438557500000016) (0.012395400499999987) (0.012307729000000003) (0.012446346999999996) (0.012460007499999995) (0.012304766999999994) (0.01249855350000001) (0.012651964500000001) (0.012537463999999998) (0.012628982499999983) (0.01240901500000001) (0.01228275949999999) (0.01225532600000001) (0.01233567499999999) (0.012202681999999992) (0.012454167000000002) (0.012782702999999992) (0.012430639499999993) (0.012531634000000014) (0.012711685500000014) (0.013027385499999988) (0.012342377000000015) (0.012292954499999995) (0.012358056500000006) (0.01230555300000001) (0.012392749500000008) (0.012633437499999997) (0.012530395) (0.012583799999999992) (0.012677747999999989) (0.012704963000000014) (0.01289490950000001) (0.012909959000000013) (0.01287595250000001) (0.012710704500000003) (0.012967110500000004) (0.012827529000000004) (0.012767164499999997) (0.012877541999999992) (0.012825541499999996) (0.01326163100000001) (0.012701583999999988) (0.012536311499999994) (0.012705829500000002) (0.012813666500000001) (0.012573416000000004) (0.012790243000000007) (0.012699523000000004) (0.012656277499999993) (0.012623791999999995) (0.012733084999999991) (0.012944423499999996) (0.013072850999999983) (0.012812663500000002) (0.013045038000000009) (0.013026904000000006) (0.0129978335) (0.01324350000000002) (0.012404458500000007) (0.012112710499999998) (0.012456059499999991) (0.012281922) (0.012245885999999997) (0.012193850499999992) (0.012641831000000006) (0.01289783650000001) (0.012561033999999999) (0.012374181999999997) (0.0124138845) (0.012650870000000008) (0.012628830499999993) (0.018625901) (0.012290111999999992) (0.012434928500000011) (0.012141017000000004) (0.012609961000000003) (0.012426612000000004) (0.012277920499999984) (0.012371467999999997) (0.012616727000000022) (0.012328568999999998) (0.012246115500000002) (0.01228609650000001) (0.012629991000000007) (0.012344959499999988) (0.012362236499999998) (0.012492128000000005) (0.012512254) (0.012392716500000012) (0.012374414000000014) (0.0127182245) (0.01273920399999999) (0.012704012) (0.012759513499999986) (0.012545404999999996) (0.012965855000000012) (0.013063206999999993) (0.012847515500000004) (0.012848874499999982) (0.012887795500000007) (0.013052875500000005) (0.012886258499999984) (0.012834740500000011) (0.01309827999999999) (0.012786997000000008) (0.012926237500000007) (0.013026223500000003) (0.01309914999999999) (0.012679222500000004) (0.012738218499999995) (0.012545443000000003) (0.0126975545) (0.012596736500000011) (0.012703232500000008) (0.013048345499999989) (0.012757242000000002) (0.0127150085) (0.012986132000000011) (0.012579661000000006) (0.012637269499999992) (0.012870149499999983) (0.01250594699999999) (0.012308446999999986) (0.012464801999999997) (0.01239726499999999) (0.012664245500000004) (0.012359037000000003) (0.012679214500000008) (0.01252512750000001) (0.012301417500000009) (0.012749280000000002) (0.012438073500000008) (0.012323406999999995) (0.012990225499999994) (0.012600410000000006) (0.012568238499999995) (0.012614539499999994) (0.012392478500000012) (0.012748811499999999) (0.012294485500000008) (0.012426058500000003) (0.012562044500000008) (0.012571663999999996) (0.012267829500000008) (0.012441586000000004) (0.012469590500000002) (0.012419815000000015) (0.012334860000000017) (0.012685036999999996) (0.012823966500000006) (0.012315092) (0.012319657000000012) (0.012493534499999986) (0.012559348000000012) (0.012829832) (0.012662080000000006) (0.012668559499999996) (0.012746087000000003) (0.0125440505) (0.012783713500000002) (0.012943614000000006) (0.01261747399999999) (0.012854626000000008) (0.012960882499999993) (0.012880635999999987) (0.012905905499999981) (0.013248620499999988) (0.01270541700000001) (0.012776331500000002) (0.013710170000000008) (0.012683458499999994) (0.012826153000000007) (0.012730474500000005) (0.012801489999999999) (0.012547956999999998) (0.012584848999999981) (0.012639639500000008) (0.012756890499999993) (0.012819163500000022) (0.013222585500000009) (0.012809896500000015) (0.012933049000000016) (0.012912449499999992) (0.01304975600000001) (0.012840246000000013) (0.012857982500000004) (0.012166394499999983) (0.012425449000000005) (0.012384112500000002) (0.012346419499999997) (0.012229867499999991) (0.012322977499999999) (0.012442123) (0.012332419499999997) (0.012514576999999999) (0.012571273499999994) (0.012523200500000012) (0.012556711499999998) (0.012475683000000001) (0.012900455500000005) (0.012446925500000011) (0.012715665500000015) (0.012739300499999995) (0.012324083499999985) (0.012508254499999996) (0.012425145999999998) (0.012424424999999989) (0.012782046000000005) (0.012437521500000007) (0.012379397) (0.012696385500000004) (0.012649437999999999) (0.012708811) (0.012829807999999998) (0.012578497499999994) (0.012624919999999998) (0.012392133) (0.012286560499999988) (0.0130106465) (0.013031793000000014) (0.012643727999999993) (0.012848711999999998) (0.012829998499999995) (0.012790500999999996) (0.01270325550000001) (0.012781982499999997) (0.012553946499999996) (0.012811925500000015) (0.012818969000000013) (0.012810080000000001) (0.012725332500000006) (0.013244213000000005) (0.01282076850000001) (0.012912700000000013) (0.012931542000000004) (0.012752905500000009) (0.012483757999999998) (0.012699452000000014) (0.012912026999999993) (0.012455326500000002) (0.012768325999999997) (0.012693468) (0.012848821999999982) (0.012869334999999996) (0.012808425499999984) (0.012800680500000008) (0.012821908500000007) (0.012657983999999983) (0.012877621999999991) (0.012781404499999996) (0.012345646000000002) (0.012972115500000006) (0.012997543999999986) (0.012528682000000013) (0.01242199599999999) (0.012214386000000008) (0.012535462000000011) (0.012718799000000003) (0.012355286000000007) (0.012510872999999992) (0.012340536) (0.012578374500000003) (0.012572378999999995) (0.012498419499999983) (0.012881232499999992) (0.01246579099999999) (0.012294705500000003) (0.012399661999999992) (0.012556105499999998) (0.012507604500000005) (0.0128222645) (0.012468821000000005) (0.012684619499999994) (0.012312669999999998) (0.012320561499999994) (0.012412541999999999) (0.012564632000000006) (0.012995674999999998) (0.012720295500000006) (0.012473771500000008) (0.012413916499999983) (0.012299167) (0.012754199500000007) (0.012829928500000004) (0.012631083500000001) (0.0129967275) (0.012713264500000016) (0.012570757000000002) (0.012646565999999998) (0.012703701999999997) (0.012737349499999995) (0.012934263500000001) (0.0128763935) (0.012530288) (0.012808888000000018) (0.012851489499999993) (0.0126557375) (0.012680190000000008) (0.012791386500000015) (0.012678177000000013) (0.012783178000000006) (0.012571361999999989) (0.013095226000000015) (0.012985560999999993) (0.012727799999999997) (0.012706455499999991) (0.012645609000000002) (0.012837709500000002) (0.0129066085) (0.012747507000000005) (0.012703490000000012) (0.012663514500000014) (0.01294171700000002) (0.012727890499999991) (0.012471696000000004) (0.012152074499999999) (0.012457591000000004) (0.012121003500000019) (0.012369470500000007) (0.012625585500000008) (0.012350392500000001) (0.012367297499999985) (0.0124581255) (0.012282204500000005) (0.012703713000000005) (0.012494705000000023) (0.012676635000000006) (0.012439040000000012) (0.012595997999999997) (0.012524790499999994) (0.01258480549999999) (0.012800868499999993) (0.012356409499999998) (0.013527326500000006) (0.012266259500000001) (0.012650156499999995) (0.012270073499999992) (0.012403806500000003) (0.01257570849999999) (0.01238183399999998) (0.012828016000000012) (0.012306752000000004) (0.012497288499999995) (0.012923668499999999) (0.012655549500000002) (0.012274275000000001) (0.012721904999999992) (0.01251968399999999) (0.012822159999999999) (0.012815714500000006) (0.012585285500000001) (0.012850350499999996) (0.012644323499999999) (0.013089117000000011) (0.012872545999999999) (0.012879016999999993) (0.012924132000000005) (0.012735019) (0.012949026999999988) (0.01301983050000001) (0.012720586499999992) (0.013244764000000006) (0.012776121500000001) (0.012543924000000012) (0.012761848500000006) (0.012518803499999995) (0.0130102535) (0.012642648500000006) (0.012601403000000011) (0.012684640000000011) (0.013310204500000006) (0.013154208) (0.012672140499999998) (0.012577879500000014) (0.012778404999999993) (0.013039624000000014) (0.012750525499999998) (0.012998170500000003) (0.012491351499999997) (0.012730722000000014) (0.012773216000000004) (0.012468590500000001) (0.01245474499999999) (0.012481518499999997) (0.012412685999999992) (0.012468318500000006) (0.0126943385) (0.012352521499999991) (0.012503641999999995) (0.012233338999999996) (0.012641320999999997) (0.012815683500000008) (0.01251772999999999) (0.01256579499999999) (0.012450158500000016) (0.012744877000000002) (0.0123586475) (0.012249534500000006) (0.012611850500000008) (0.01231952) (0.012478831999999995) (0.012614568000000007) (0.012487399999999996) (0.012820193499999993) (0.012605095499999996) (0.012470491) (0.012710510999999994) (0.012512913) (0.012488791999999999) (0.012610541000000003) (0.012664751500000002) (0.012787455500000003) (0.012694500499999997) (0.012901599) (0.012561499999999975) (0.01298064950000001) (0.012656358499999992) (0.012855107000000005) (0.013154022500000001) (0.012718583500000005) (0.012831028000000008) (0.012516362000000003) (0.012885320000000006) (0.0125713685) (0.012816802500000002) (0.012836570500000005) (0.012965924500000003) (0.012617680499999992) (0.012523671) (0.012885196999999987) (0.012700457500000012) (0.012857218000000004) (0.012700375000000014) (0.01318770150000001) (0.012890580999999998) (0.013157514500000009) (0.012901236999999996) (0.013203788499999994) (0.012655116500000008) (0.012926828999999987) (0.013080887999999999) (0.012931880000000007) (0.01216889900000001) (0.012093879499999988) (0.012339732500000006) (0.012360673000000003) (0.012503032499999997) (0.012459023999999999) (0.0122453545) (0.012303348999999991) (0.012676917999999995) (0.012601030999999999) (0.012344001999999993) (0.012459334000000002) (0.012488173500000005) (0.012384322000000003) (0.012729940999999995) (0.012543549000000001) (0.012420995000000018) (0.01241107000000001) (0.012304536500000005) (0.012540596000000001) (0.012286148499999983) (0.012438039499999998) (0.012479688500000002) (0.012355489999999997) (0.012438873000000003) (0.012247929500000004) (0.012655223500000007) (0.013148736500000022) (0.012449520500000005) (0.012391941500000003) (0.012590589) (0.01222833999999999) (0.012820512000000006) (0.0127490445) (0.0127247625) (0.012743676999999981) (0.012640306500000004) (0.012894552000000004) (0.012525575999999997) (0.0126925965) (0.013156622000000007) (0.012664826500000004) (0.012962506000000013) (0.012731661000000019) (0.012693461000000003) (0.01300940099999999) (0.012923793000000003) (0.012695853999999993) (0.012612950499999998) (0.012792143499999992) (0.013011004500000006) (0.012655906000000008) (0.012539666500000005) (0.012785860499999996) (0.012692528000000008) (0.012787879999999988) (0.012755264000000016) (0.012820070999999988) (0.01254541200000002) (0.012575213499999988) (0.012567162500000006) (0.013315363499999983) (0.012842569999999984) (0.012760950000000007) (0.012444307500000001) (0.01235148450000001) (0.012255782999999992) (0.0123658445) (0.012467737500000006) (0.012932645500000006) (0.01239250900000001) (0.012478640499999999) (0.012394917500000005) (0.012496357) (0.012418525999999985) (0.012520746999999999) (0.012348320999999995) (0.012518808500000006) (0.012468957999999988) (0.012733248000000003) (0.01229504100000002) (0.012285498000000006) (0.012491559499999999) (0.012677331) (0.012370573499999996) (0.012931353999999992) (0.0127561385) (0.012263423499999995) (0.012949057500000014) (0.012377452999999997) (0.012630747999999997) (0.012551899499999991) (0.012569035500000006) (0.012371892499999995) (0.013081449500000009) (0.012841286999999993) (0.012542892000000014) (0.013167694000000008) (0.012864022500000002) (0.013132091999999984) (0.012995588999999988) (0.01291478750000001) (0.012948894000000016) (0.012706526499999996) (0.012735444000000012) (0.012837092999999994) (0.012942057499999993) (0.012676462000000013) (0.012586164999999996) (0.012937842500000005) (0.013002056000000012) (0.012843914999999997) (0.012948304499999994) (0.012911030000000004) (0.012913281499999985) (0.012767886499999992) (0.012633789500000006) (0.012620959499999987) (0.01297814700000001) (0.012706056999999993) (0.012823868500000002) (0.012906023500000002) (0.012651454499999992) (0.012956190499999992) (0.01282196049999998) (0.01264153400000001) (0.01276483149999999) (0.012645132000000003) (0.012411162999999989) (0.012688212500000004) (0.012275405500000003) (0.012380738000000002) (0.012289525999999995) (0.012640165999999994) (0.01230436700000001) (0.01232050500000001) (0.012223775999999992) (0.012545838500000017) (0.012732018499999997) (0.012423840999999991) (0.012451534) (0.012517644000000008) (0.01243462499999999) (0.012398666499999988) (0.012478363999999992) (0.012439103000000007) (0.012500800500000006) (0.012363781500000004) (0.012594249999999987) (0.012061965000000008) (0.012145126999999992) (0.012293464500000004) (0.012521037999999998) (0.012817270500000005) (0.012841602999999993) (0.012664383500000015) (0.012919833000000006) (0.012317727) (0.012645152500000006) (0.012428193500000004) (0.012815984500000002) (0.012572869000000014) (0.012711472500000001) (0.012835030499999997) (0.012730051500000006) (0.012535125499999994) (0.012618021500000007) (0.0126180355) (0.01268126) (0.012711497499999988) (0.013068942500000014) (0.012714727499999995) (0.013004976000000001) (0.012820695500000007) (0.012649400000000005) (0.012756781999999994) (0.01273242749999999) (0.012522911999999983) (0.012634370499999992) (0.012619088999999986) (0.012820775500000006) (0.012800935) (0.012941025999999994) (0.0125857615) (0.012542296499999994) (0.012909926500000016) (0.012995358999999998) (0.012605131000000006) (0.0129007295) (0.01261325050000002) (0.013038043500000013) (0.012703607999999991) (0.012603409499999996) (0.012586461999999993) (0.012348706000000001) (0.012670219499999996) (0.012807253500000004) (0.01291675099999999) (0.012468878500000002) (0.013016836500000004) (0.012301834499999983) (0.012410661000000017) (0.012365165500000011) (0.012563488500000011) (0.012620035000000016) (0.012513659499999996) (0.012497056999999992) (0.012500130499999998) (0.012563853) (0.012179579499999982) (0.012648492999999997) (0.012977647500000009) (0.012850532000000012) (0.01293986300000001) (0.012733921500000009) (0.012418651000000003) (0.012591630999999992) (0.012892765000000014) (0.012719543) (0.012332023500000011) (0.012364049000000002) (0.012317317999999994) (0.012543374999999982) (0.012656313000000002) (0.012510667999999989) (0.012846050499999984) (0.012695961999999991) (0.012968019000000011) (0.01279562400000002) (0.012794154000000002) (0.013063831999999997) (0.012803190500000006) (0.013302346000000007) (0.012928160999999994) (0.01279006399999999) (0.01292881999999998) (0.012874037500000005) (0.012670258000000004) (0.012732250000000014) (0.013128159999999986) (0.012869858499999998) (0.012668793499999997) (0.013130787000000005) (0.012501504999999996) (0.012754942500000005) (0.012776228000000014) (0.013095356499999988) (0.013034915999999994) (0.012703988999999999) (0.012981175000000011) (0.012866942499999992) (0.012730221500000014) (0.012721867499999984) (0.01268634049999999) (0.012819015500000017) (0.012819627499999972) (0.0126253635) (0.012519544000000007) (0.012563425500000003) (0.012362055499999997) (0.012546146999999994) (0.01255691049999999) (0.01239845000000002) (0.012211990999999991) (0.012513058000000007) (0.012784144999999997) (0.012493817000000018) (0.012557421499999999) (0.012417983999999993) (0.012671913500000007) (0.0127401085) (0.012416107499999995) (0.012525882999999988) (0.012323890000000004) (0.01241738399999999) (0.012195060499999993) (0.012205540500000014) (0.012478958999999998) (0.012465920500000019) (0.0124675375) (0.012418361500000002) (0.012389873499999982) (0.012508164000000016) (0.012549642) (0.01228742649999999) (0.01251952449999999) (0.012280434000000007) (0.012575408999999996) (0.01288341250000001) (0.012803014000000015) (0.0125958865) (0.012662973499999994) (0.012718153999999995) (0.01262521300000001) (0.012624359000000016) (0.012624248500000004) (0.012900643500000003) (0.012764415000000001) (0.012711546000000004) (0.01267967049999999) (0.012767301000000009) (0.013119299499999987) (0.012808702499999991) (0.012634261499999994) (0.012774392499999995) (0.012805787500000013) (0.01274765450000001) (0.012726295499999998) (0.012632947500000005) (0.013266653000000003) (0.012903620000000005) (0.012737288999999999) (0.012793204500000016) (0.012865320000000013) (0.012915244999999992) (0.012855384500000011) (0.012618988999999997) (0.012703579000000007) (0.01286437600000001) (0.012880417500000005) (0.012235900499999994) (0.012532517500000007) (0.012461072500000003) (0.012399885499999999) (0.01243772500000001) (0.01229266100000001) (0.012371058500000004) (0.012565829) (0.012481431000000001) (0.012436241500000014) (0.0125120965) (0.012417904000000007) (0.012516704500000003) (0.012430045000000015) (0.012641218999999995) (0.012300112000000002) (0.01228749849999998) (0.012466717499999988) (0.012379814000000003) (0.012316941000000012) (0.01253096649999999) (0.012421480500000012) (0.012306041500000003) (0.0124408565) (0.012550276499999999) (0.012610429499999992) (0.012455134000000007) (0.012619472999999992) (0.012420068500000006) (0.012714918499999991) (0.012679750999999989) (0.012741834499999993) (0.012679017499999987) (0.012845810999999999) (0.012602738000000002) (0.012533100500000005) (0.012780979999999997) (0.012494437499999997) (0.012885034000000004) (0.01279809300000001) (0.012747214500000006) (0.01304014199999999) (0.013028646500000005) (0.01268235849999999) (0.01279171300000001) (0.012900387999999999) (0.012804509500000005) (0.012903828999999992) (0.012893279500000007) (0.012630212500000002) (0.012600226000000006) (0.0125172915) (0.012677322500000004) (0.012730907) (0.012628646500000021) (0.01288503349999999) (0.012810309500000006) (0.012814057500000003) (0.0126650195) (0.013101004999999985) (0.01269727900000002) (0.012797397500000002) (0.012720930500000005) (0.013114575000000003) (0.012471796000000007) (0.012698929499999997) (0.012493990499999996) (0.012263307000000015) (0.012474874999999996) (0.012476749999999995) (0.012218772999999988) (0.012807620499999992) (0.012417804000000005) (0.012406855500000008) (0.012271836499999994) (0.012707316999999996) (0.012929472999999997) (0.012648259499999995) (0.012391684499999986) (0.012563552500000005) (0.012714708499999991) (0.012191792499999993) (0.012927412499999999) (0.012271518999999995) (0.012547859000000008) (0.012366708500000004) (0.01246726699999999) (0.012741631000000003) (0.012542958000000007) (0.012910085000000002) (0.012253592499999993) (0.012516329500000006) (0.012278860000000003) (0.012732503000000006) (0.012478910499999996) (0.01239667350000001) (0.012667254000000003) (0.01265173600000001) (0.012858449999999993) (0.012913430500000003) (0.012828574999999995) (0.012710056999999983) (0.012919471000000002) (0.012588710500000003) (0.012788643500000002) (0.012753425500000012) (0.012907692999999998) (0.012784899499999988) (0.012686280999999994) (0.01284540599999999) (0.012808785500000003) (0.012899614000000004) (0.012860662500000009) (0.012551397500000006) (0.012672714500000001) (0.012522915499999995) (0.012504586499999998) (0.012687841500000005) (0.012831477000000008) (0.012759060000000003) (0.013098589999999993) (0.012923711000000004) (0.012803364999999997) (0.012875190000000009) (0.013350200000000007) (0.013172230500000007) (0.012921192999999997) (0.012839158999999989) (0.012386562500000003) (0.012253471000000002) (0.012418098500000002) (0.012410643999999985) (0.012288483999999988) (0.01219798100000001) (0.01249001949999999) (0.012603899499999988) (0.012391583500000011) (0.01237012400000001) (0.012476233500000003) (0.012740809000000006) (0.012313743999999988) (0.012739173500000006) (0.012383744000000002) (0.012707231000000013) (0.012627938499999991) (0.01232193949999999) (0.012277149500000015) (0.012291119500000003) (0.012687728500000009) (0.012337063999999995) (0.012430325000000006) (0.012229894500000005) (0.012723499999999999) (0.012475090999999994) (0.01257396999999999) (0.013012574999999998) (0.0130243835) (0.0124232955) (0.01263132900000001) (0.012821405000000008) (0.012630486499999996) (0.0130494055) (0.012944386000000002) (0.012689606000000006) (0.012470834) (0.01275240649999998) (0.012681130499999985) (0.012696352999999994) (0.012998384500000001) (0.012854996499999993) (0.012852168499999997) (0.012783768000000001) (0.013084864499999987) (0.013072293999999998) (0.013010237999999993) (0.012573972499999989) (0.012856388499999996) (0.012683140999999995) (0.012755819000000015) (0.013145772500000014) (0.012754039999999994) (0.01294948650000001) (0.012796573500000005) (0.012600979499999998) (0.012906551500000002) (0.012882680999999993) (0.013014227000000003) (0.013725419500000002) (0.01292914349999999) (0.012839299499999984) (0.012767624000000005) (0.012906265) (0.012530512499999993) (0.01244902249999999) (0.012710894499999986) (0.012600407999999994) (0.012387101000000011) (0.0125358245) (0.012608474500000008) (0.012723373499999996) (0.012479388000000008) (0.012278385500000003) (0.0126678925) (0.012684356000000008) (0.012600878499999996) (0.012385666000000004) (0.012255026500000002) (0.012554447499999996) (0.012373975999999995) (0.012465338500000006) (0.012545629500000002) (0.012411114000000001) (0.012410936499999997) (0.012433418999999987) (0.012450147000000009) (0.012547479499999986) (0.012531513500000008) (0.0123353155) (0.012506576499999991) (0.012477107000000001) (0.012323296000000011) (0.012493932499999999) (0.012492138) (0.013154925000000012) (0.012782718499999998) (0.012586121999999991) (0.013114472500000002) (0.012504148000000007) (0.0129955935) (0.013019599999999992) (0.012834514000000005) (0.012859457000000005) (0.012769113500000012) (0.012686390000000006) (0.012805995) (0.01286431049999999) (0.012973082499999997) (0.012810296499999999) (0.013057526) (0.012755851499999998) (0.013145451000000002) (0.012909417499999992) (0.012489879999999981) (0.0127122115) (0.012525778000000001) (0.012380299999999997) (0.012958240999999995) (0.012672737500000003) (0.012735178999999985) (0.012606869500000006) (0.01265891550000002) (0.01295568200000001) (0.012446583499999997) (0.012567650999999999) (0.0131234135) (0.012905020500000017) (0.012149720000000003) (0.012447780499999991) (0.012382968500000008) (0.01255163450000002) (0.01241236100000001) (0.012244613000000001) (0.012776220000000005) (0.012427096999999998) (0.012271033) (0.012361319999999995) (0.012394481999999998) (0.012390253500000004) (0.012355067499999997) (0.012456180999999997) (0.01242248550000001) (0.012418450499999997) (0.012242719999999999) (0.01287510800000001) (0.012760364999999996) (0.012401936000000002) (0.0127670275) (0.012552827000000003) (0.012540208000000011) (0.012490090500000009) (0.012610781999999987) (0.012599799499999995) (0.012569701000000003) (0.012508909000000012) (0.012508416500000008) (0.012392162000000012) (0.012439303999999998) (0.012516951999999998) (0.0128351555) (0.012791583499999995) (0.012652450999999995) (0.01292750699999999) (0.019124540999999995) (0.013010911) (0.012608743500000005) (0.012726894500000002) (0.013206634999999994) (0.012559887000000006) (0.012903143499999978) (0.012568557000000008) (0.012978467499999993) (0.012990277999999994) (0.012869945499999993) (0.012999169500000005) (0.012764588999999993) (0.012617387999999993) (0.012551620999999999) (0.012654513000000006) (0.012632852) (0.012647328499999999) (0.01294257950000001) (0.012596161999999994) (0.012671974000000003) (0.0128239515) (0.01280445999999999) (0.01286474750000001) (0.012787388999999982) (0.013161353) (0.013023880000000002) (0.01248139849999999) (0.012310903999999998) (0.012192462000000001) (0.012309183500000001) (0.012462834500000006) (0.012512525499999996) (0.012266845999999998) (0.012304423500000009) (0.012393066000000008) (0.012311216000000014) (0.012217757499999995) (0.012425244499999988) (0.01239787399999999) (0.0125684655) (0.012421965999999993) (0.012407127000000004) (0.012629303499999994) (0.012297262000000003) (0.012285479500000002) (0.012687953000000002) (0.012700760499999991) (0.012391530999999997) (0.012384223) (0.012537786499999995) (0.012291675000000002) (0.01244348549999999) (0.012291267000000008) (0.0125234075) (0.012636395499999994) (0.012453702999999997) (0.012516621499999991) (0.012657619500000009) (0.012492351999999998) (0.012608557499999992) (0.012925425000000004) (0.012551818999999992) (0.012955152000000025) (0.012577885999999996) (0.012944840499999999) (0.012920979499999999) (0.01283550600000001) (0.012727851499999998) (0.012678737999999995) (0.012750200500000003) (0.013006802999999997) (0.013434621999999993) (0.01337699099999999) (0.012957129999999997) (0.012657674000000008) (0.012878541499999993) (0.012571259500000001) (0.012719171000000001) (0.012938378000000014) (0.012734011000000003) (0.012910139499999987) (0.012811537500000011) (0.012488022000000015) (0.01281164) (0.012753822499999998) (0.012589128000000005) (0.012690158500000007) (0.012674928500000002) (0.012925180000000008) (0.012855161500000004) (0.012729599000000008) (0.012798027000000003) (0.012394275499999996) (0.012483663500000006) (0.0121802025) (0.012273091) (0.012371564500000001) (0.012593399500000005) (0.012525833) (0.012397900000000003) (0.012628471000000016) (0.012481626999999995) (0.012607735000000009) (0.012481733000000009) (0.012537641999999988) (0.012734897499999995) (0.012408739000000002) (0.012551707500000009) (0.012677690000000005) (0.012456105000000009) (0.012325468499999992) (0.012587882000000009) (0.012462254999999992) (0.012494786500000007) (0.01246731899999999) (0.012584291499999997) (0.01268440600000001) (0.012505372999999986) (0.012370990999999998) (0.012728685500000017) (0.012450285499999991) (0.01237168100000001) (0.012418493000000003) (0.01243909550000001) (0.012560840500000017) (0.0129968315) (0.012932194999999994) (0.01254002500000001) (0.012649789500000022) (0.012676674499999999) (0.012844303500000001) (0.012877237500000013) (0.012804120500000002) (0.012673992500000009) (0.012619734500000007) (0.013266742999999998) (0.012758392000000007) (0.01298664749999999) (0.012877859500000005) (0.012520007999999985) (0.012575517999999994) (0.012950158999999989) (0.012494204999999994) (0.012633025499999992) (0.012560395499999988) (0.012525926499999993) (0.0126507005) (0.012724354000000007) (0.0125715265) (0.013471820999999995) (0.012614923499999986) (0.0129174695) (0.012908840500000004) (0.01276922450000001) (0.012713528000000016) (0.012399735499999995) (0.012271240000000003) (0.01217575700000001) (0.012225527) (0.012456163000000006) (0.012283195999999982) (0.012367949500000003) (0.012605323500000001) (0.012370744500000003) (0.012437265000000003) (0.012919585500000011) (0.012332857000000003) (0.012719352000000017) (0.012222771499999993) (0.012834539499999992) (0.012609084000000007) (0.012558565499999993) (0.012586014999999992) (0.012124308999999986) (0.012391832500000005) (0.01243477150000001) (0.012616310999999991) (0.0124596825) (0.012448210000000001) (0.012583140499999992) (0.012423192500000013) (0.012623979999999993) (0.012611051999999998) (0.012641318499999998) (0.012617194499999998) (0.012764233499999986) (0.012329362499999982) (0.012720102999999996) (0.01248687250000001) (0.012830561500000004) (0.012742054500000002) (0.012888629000000013) (0.012798051500000004) (0.012848414000000002) (0.012683281000000005) (0.012439589499999987) (0.012747829000000002) (0.012663827500000002) (0.012902497999999998) (0.012562838999999992) (0.012578936500000013) (0.012790612999999992) (0.012676135000000019) (0.012862830000000006) (0.012784191500000014) (0.012858148) (0.012882783999999994) (0.012722862500000001) (0.012647374999999988) (0.012591115000000014) (0.012642196000000008) (0.012717767000000005) (0.01283263350000001) (0.01289233699999999) (0.012765183) (0.012750064500000019) (0.012890542500000005) (0.01273714849999999) (0.012654270999999995) (0.012507680000000007) (0.01252085) (0.012488350999999995) (0.012542168999999992) (0.012458081499999996) (0.012237437000000004) (0.012487951000000011) (0.012548456) (0.012611698000000005) (0.01257630400000001) (0.012425997499999994) (0.012553397500000008) (0.012391993500000004) (0.012446222000000007) (0.012770638000000015) (0.012820071000000016) (0.012490483999999996) (0.012380863999999991) (0.012518449000000001) (0.012339496500000005) (0.012408198500000009) (0.012276233999999997) (0.012472154999999999) (0.012395441499999993) (0.012735348499999993) (0.012803989500000001) (0.012477044499999992) (0.012732369999999993) (0.0125463185) (0.012553492) (0.012790337500000012) (0.012580354500000002) (0.013318824499999993) (0.0134490585) (0.012784499000000019) (0.012929692999999992) (0.012970783500000013) (0.013312003999999988) (0.012946966000000004) (0.013048234500000006) (0.012755391500000005) (0.012982030499999991) (0.012658103500000004) (0.012883224500000012) (0.012655141500000008) (0.012694579999999997) (0.012850784500000004) (0.0127420575) (0.012886904000000005) (0.012695951999999996) (0.012890564500000007) (0.012622950499999994) (0.012820359000000003) (0.012618052500000004) (0.012669215500000011) (0.012886948000000023) (0.012684018000000005) (0.012996381000000001) (0.012965789000000005) (0.012890473500000013) (0.013002589000000023) (0.01274981700000001) (0.012630520999999992) (0.012766712500000013) (0.012729249499999998) (0.012620357000000013) (0.012765057999999996) (0.012510132000000007) (0.012465288500000005) (0.012335974999999999) (0.012486650000000002) (0.012407840000000017) (0.012691127999999996) (0.012554626499999999) (0.012671228499999992) (0.012391908000000007) (0.01260109000000001) (0.012556523) (0.01235710000000001) (0.0124156235) (0.012404075) (0.012501919) (0.012310903999999998) (0.012650381500000002) (0.012608006000000005) (0.012217369999999991) (0.012384853500000001) (0.01271657100000001) (0.012433028999999998) (0.012701299000000013) (0.012808646999999992) (0.013072054500000013) (0.0125292615) (0.01254213350000001) (0.012615333500000006) (0.012488829500000007) (0.012603703999999993) (0.013263204) (0.012584738499999984) (0.012593471000000009) (0.012869252499999997) (0.012848520500000002) (0.012832051999999997) (0.01287164049999999) (0.013222541000000004) (0.012753542000000007) (0.012743552499999991) (0.0128819305) (0.012796636) (0.012575278500000009) (0.012893021000000005) (0.012716746999999987) (0.012658326999999997) (0.012745421500000007) (0.012542254000000017) (0.012610383500000003) (0.012517809500000004) (0.012582995999999999) (0.013031073500000004) (0.01274504899999998) (0.013105563499999986) (0.012851760000000004) (0.012813005499999988) (0.012803194000000018) (0.012773121500000012) (0.012959122000000003) (0.013180631999999984) (0.01289324) (0.012124713500000009) (0.012414126499999983) (0.012776409500000002) (0.012326998499999992) (0.012488125500000002) (0.012800875499999989) (0.012650480500000005) (0.012525017) (0.012608986000000003) (0.012525362999999998) (0.012739039000000008) (0.012269377499999998) (0.012628463499999992) (0.012533846499999987) (0.012622493499999998) (0.012737368999999998) (0.012700324499999999) (0.012323635999999999) (0.01263895999999999) (0.012743987999999998) (0.012647772000000002) (0.012716827) (0.012267485499999994) (0.013040120999999988) (0.012713704999999992) (0.01272359399999999) (0.01258604599999999) (0.012478267999999987) (0.012689782499999996) (0.012484053500000009) (0.012449002) (0.01251605) (0.012829005500000004) (0.012918080499999998) (0.012733236499999995) (0.012920461000000008) (0.012545138999999997) (0.012644865000000005) (0.012536618499999999) (0.012897535000000002) (0.013314926500000004) (0.012758747) (0.012709889500000002) (0.013068096000000001) (0.013067489000000002) (0.012724599999999989) (0.012732637500000005) (0.012730998000000007) (0.012776388499999985) (0.012788419999999995) (0.012553531000000007) (0.013114818000000014) (0.012799581000000004) (0.012856826000000002) (0.012696796999999996) (0.012594069999999999) (0.013112745500000009) (0.012867390999999992) (0.013114148000000006) (0.0127953455) (0.012785289500000005) (0.012802702) (0.012588041499999994) (0.012843019499999997) (0.012285985) (0.012596161000000008) (0.012334326000000007) (0.012667999499999999) (0.012363607999999998) (0.012519579500000017) (0.012295466000000005) (0.01251882800000001) (0.012587591499999995) (0.012845415499999999) (0.012569923499999996) (0.012901655499999998) (0.01260581949999999) (0.012594405999999989) (0.01243955749999999) (0.012449541999999994) (0.012128056999999998) (0.012529694000000008) (0.012637634000000009) (0.012370728499999997) (0.012493402) (0.01243581449999999) (0.012874242500000008) (0.01240279300000001) (0.012332686999999995) (0.01239808249999999) (0.012831231499999998) (0.012627907000000008) (0.012618782499999995) (0.012242523499999991) (0.012562536500000013) (0.012275627499999997) (0.012580602499999996) (0.01290569100000001) (0.012982655499999995) (0.012819332000000003) (0.012595666499999991) (0.012737377000000008) (0.012872565000000002) (0.01247801450000001) (0.012959133499999997) (0.013128805999999993) (0.012872813999999996) (0.012767339499999988) (0.013015607000000012) (0.012907419000000003) (0.012765219000000008) (0.01259097549999999) (0.012537995999999996) (0.012501382000000005) (0.012811511999999997) (0.012596657999999997) (0.012585390500000002) (0.012556244999999994) (0.012521045000000008) (0.012807587999999995) (0.013083284000000014) (0.012869505000000017) (0.012597919499999999) (0.012748019999999985) (0.012699736499999989) (0.013138006999999993) (0.012701836999999994) (0.012820863499999988) (0.012390712000000012) (0.012308554499999999) (0.012372766999999993) (0.012254591999999995) (0.012312846500000002) (0.012271293500000016) (0.012487964500000018) (0.012290837999999998) (0.012395470500000005) (0.012768650500000006) (0.012337182499999988) (0.012362026499999998) (0.012477138999999998) (0.012434419000000002) (0.012440352999999987) (0.012810117499999982) (0.012378560499999983) (0.012705524499999996) (0.012465415000000007) (0.012421821000000013) (0.012623380999999989) (0.012404061000000008) (0.012522169499999986) (0.012469512000000002) (0.012283773499999998) (0.012617075999999991) (0.012330447499999994) (0.012839489499999995) (0.012606534000000003) (0.01240092650000002) (0.012659604500000005) (0.012552185000000007) (0.012973704000000003) (0.012506520000000007) (0.012622397499999993) (0.012610905999999991) (0.01268208400000001) (0.012710786000000002) (0.012745335499999996) (0.013052093) (0.013070803500000006) (0.012806851500000008) (0.012872487000000002) (0.01301115550000001) (0.01275908449999999) (0.012686272000000012) (0.012941829000000016) (0.012816188000000006) (0.012529906000000007) (0.01266316649999999) (0.012689561499999988) (0.012527787499999998) (0.012575082500000001) (0.012840249499999998) (0.012594891499999997) (0.012639665500000008) (0.012696610999999983) (0.013070170999999992) (0.013216438000000011) (0.012682579999999999) (0.012724101500000001) (0.012807907999999993) (0.012851840500000003) (0.01316722599999999) (0.012832200000000002) (0.012280283499999989) (0.012318744999999992) (0.012369814000000007) (0.012559627000000004) (0.012534899999999988) (0.012344199) (0.012419986999999993) (0.0125409935) (0.012368136500000002) (0.012417019000000001) (0.012799305499999997) (0.012199615499999997) (0.012446331500000005) (0.01267049349999999) (0.012557969000000002) (0.012419509499999995) (0.012301922999999992) (0.012376554500000012) (0.012312908999999997) (0.012405551) (0.012399491999999998) (0.012472502999999996) (0.012764724499999991) (0.012344992499999985) (0.012443042000000001) (0.012363586999999995) (0.012825803999999996) (0.012633242999999988) (0.012868939499999996) (0.012721173999999988) (0.012511841499999996) (0.012476541500000007) (0.013018904499999998) (0.012692668000000004) (0.01279680250000001) (0.012383398500000004) (0.012644634000000002) (0.012760399999999977) (0.012566113000000004) (0.012625792499999997) (0.01310386999999999) (0.012679545) (0.012684312500000003) (0.01310167949999999) (0.012767069000000006) (0.012827306999999996) (0.012750303000000018) (0.013235189000000008) (0.012709820999999996) (0.012768526000000002) (0.0126648595) (0.012882382500000011) (0.012786383000000012) (0.012611717999999994) (0.013036555500000005) (0.012955650999999999) (0.012829406000000002) (0.012925165000000002) (0.012777844499999996) (0.012502119500000006) (0.012865776999999995) (0.012925111500000003) (0.012769847499999987) (0.012579543499999998) (0.012464443000000006) (0.012572757000000004) (0.012296969500000005) (0.012470989500000002) (0.01240525399999999) (0.01242745649999999) (0.01243044950000001) (0.012701273499999999) (0.012994995500000009) (0.012290740000000008) (0.012595982500000005) (0.01240632400000001) (0.01250559100000001) (0.012385262499999994) (0.012344165000000004) (0.012488963000000006) (0.012339421999999989) (0.012369931499999987) (0.012445893500000013) (0.012508428500000002) (0.012279783000000002) (0.01223758300000001) (0.012376673500000018) (0.012580854500000002) (0.012361683999999998) (0.012417370499999997) (0.012385256499999997) (0.012414579000000009) (0.012580372000000006) (0.012823761500000017) (0.012536869499999992) (0.012752331500000005) (0.012869850000000002) (0.012978309500000007) (0.012861135499999996) (0.012660103499999992) (0.012656123000000005) (0.012544620999999992) (0.013083760000000014) (0.013040590000000005) (0.012796989500000008) (0.012820100000000015) (0.012826913499999995) (0.012586435499999993) (0.0129485285) (0.012669066499999979) (0.012715832999999996) (0.012810590499999996) (0.01278327500000001) (0.013069257) (0.012974641999999995) (0.012643827999999996) (0.012855691499999988) (0.012657272499999997) (0.012661088000000001) (0.013030655000000002) (0.012704037500000001) (0.012927754999999999) (0.012802570999999999) (0.013126943500000016) (0.012806589500000007) (0.012765748499999993) (0.01298502850000001) (0.0124378255) (0.01254208050000001) (0.012197509499999995) (0.012294916500000003) (0.012225980499999997) (0.012481525000000007) (0.012278700500000017) (0.012537586000000017) (0.012313082000000003) (0.0124471825) (0.012804233000000012) (0.012793025000000013) (0.01264547299999999) (0.012447881500000008) (0.012499043500000001) (0.012270976499999989) (0.012485152) (0.012500371499999996) (0.012508672000000012) (0.01233708800000001) (0.012414926999999992) (0.012312819999999988) (0.012122546999999997) (0.012210331000000005) (0.01240962000000001) (0.012841075999999993) (0.012445846999999996) (0.012672895500000003) (0.012487946) (0.012666477499999995) (0.012652692000000007) (0.012891079500000013) (0.012845618500000003) (0.012848713999999997) (0.012907033999999998) (0.012634210499999993) (0.012678829000000003) (0.012709838500000015) (0.01261868499999999) (0.013008212500000005) (0.012720336999999998) (0.012702494000000009) (0.012745797500000003) (0.01268617800000002) (0.012778159499999983) (0.012734062000000018) (0.01275765899999999) (0.012598596500000003) (0.013257244000000001) (0.012768939500000007) (0.012582066500000003) (0.01259156900000001) (0.012662332499999998) (0.012704504500000005) (0.012622382500000001) (0.012763449499999996) (0.012793685499999999) (0.013122946999999996) (0.012810905499999997) (0.012859863999999999) (0.012612851000000008) (0.01285567550000001) (0.012700217499999986) (0.012602871000000015) (0.012263614500000006) (0.0124584415) (0.012196031499999996) (0.012488695000000008) (0.012554261499999997) (0.012884685000000007) (0.012259261500000007) (0.01234086949999999) (0.012737430500000008) (0.012522955999999988) (0.012537651499999997) (0.012389526499999998) (0.012395953500000001) (0.012369435000000012) (0.012826093499999996) (0.013333560499999994) (0.01276082449999999) (0.012476650000000006) (0.012792314999999999) (0.012486417) (0.012324911499999994) (0.01223352300000001) (0.012513416500000013) (0.012435074500000004) (0.012729318000000003) (0.012644653999999991) (0.012574034499999998) (0.012451688000000002) (0.012412266000000005) (0.012354619000000011) (0.012376545000000003) (0.012333804000000004) (0.012875459999999991) (0.012762057999999993) (0.012680356000000004) (0.012655635000000012) (0.0127148745) (0.012794987000000008) (0.012612237499999998) (0.012792755999999988) (0.012702643999999999) (0.012781275500000008) (0.012852832999999994) (0.013111889500000001) (0.012869040000000012) (0.012641555499999999) (0.012801153499999995) (0.01290387350000001) (0.012518975500000001) (0.012533030000000014) (0.013022444999999994) (0.012747800000000004) (0.012570182499999999) (0.012614100999999989) (0.013284491499999995) (0.013022481500000002) (0.01275275749999999) (0.013208854000000006) (0.01300304549999999) (0.0128477605) (0.013083612000000008) (0.012534043000000009) (0.012967131499999993) (0.012770273999999998) (0.012177366999999995) (0.012208834500000001) (0.012288478500000005) (0.012668242999999996) (0.012115082000000013) (0.012619238500000005) (0.012621017500000012) (0.012918374999999996) (0.01265335200000002) (0.012139777500000004) (0.012286443500000008) (0.012401601499999998) (0.012545475000000014) (0.012405472500000014) (0.012851121000000007) (0.012458589000000006) (0.01260133200000002) (0.012659370000000003) (0.012294620499999992) (0.012220471999999996) (0.012277768999999994) (0.012349780000000019) (0.012200905999999997) (0.012332393000000011) (0.012595193000000005) (0.012852371500000015) (0.012528096500000002) (0.012740835000000006) (0.012805632500000011) (0.012624918500000012) (0.012382135000000002) (0.012505747999999997) (0.012763699500000003) (0.012803904000000005) (0.013097184500000011) (0.012557124999999988) (0.012733888000000013) (0.0128215775) (0.012730705499999995) (0.013045214999999985) (0.0125571035) (0.01295726250000001) (0.012699489999999994) (0.012626304500000005) (0.012741167999999997) (0.013221323500000007) (0.012720599000000013) (0.012811526000000004) (0.012715951000000003) (0.012971874499999994) (0.012653230499999987) (0.01273606599999999) (0.012711509499999996) (0.0128577525) (0.012596700500000002) (0.012767523500000003) (0.012859846999999994) (0.0129581525) (0.012647972000000007) (0.012798783500000008) (0.012998936000000003) (0.012784377000000013) (0.0129224275) (0.013055111499999994) (0.012203082500000004) (0.012641453499999983) (0.0124796945) (0.012637541000000002) (0.012221832000000002) (0.012600047500000003) (0.012456802500000003) (0.012601755999999992) (0.012737765999999998) (0.012607663000000005) (0.01244360650000001) (0.012678114500000004) (0.012306938000000003) (0.012417679000000001) (0.012398120499999998) (0.012343686500000006) (0.012449457999999983) (0.0123453315) (0.012672021999999991) (0.012381407499999997) (0.012430724500000004) (0.012708915500000001) (0.012682039500000006) (0.012322522500000002) (0.012610826499999991) (0.012546473000000002) (0.012468869999999993) (0.0127725365) (0.012525414499999998) (0.012628023500000002) (0.012707967) (0.012685541499999994) (0.012701159000000004) (0.012532442000000005) (0.012419709000000001) (0.012852705000000006) (0.012685704000000006) (0.012752033499999996) (0.01293615649999999) (0.012801383999999999) (0.012593116500000015) (0.01289373399999999) (0.012661315500000006) (0.012729611000000002) (0.012697051) (0.012730858999999997) (0.012892759000000004) (0.0128589925) (0.012524299499999988) (0.012669912999999991) (0.01265854100000001) (0.012674283000000008) (0.012572025500000014) (0.012616160000000001) (0.01274820850000001) (0.012831298000000005) (0.012763287000000012) (0.01312322299999999) (0.012736378500000006) (0.012912155499999994) (0.012790610999999993) (0.012708672500000004) (0.01272728749999999) (0.013098258999999987) (0.012605889999999995) (0.012389542000000003) (0.012133219) (0.012255628000000005) (0.012413842999999994) (0.012374533999999993) (0.01255186799999998) (0.012817959500000004) (0.012485427499999993) (0.012373901500000006) (0.012734906500000004) (0.01279884000000002) (0.012746443499999996) (0.012596312500000012) (0.012588944000000005) (0.012560588999999997) (0.012556179499999987) (0.012554488500000002) (0.012205173000000014) (0.012823848999999998) (0.012089420000000003) (0.01261800199999999) (0.012285256499999994) (0.012795766) (0.012381089499999998) (0.012693382499999989) (0.012818036500000005) (0.012481771000000003) (0.012434439000000005) (0.013118276999999998) (0.012897718500000002) (0.012633899500000004) (0.012788498500000009) (0.012709855999999992) (0.013267065999999994) (0.012749366000000012) (0.012617436499999996) (0.012745281999999997) (0.012356929499999988) (0.01253668699999999) (0.012689259499999994) (0.012695155999999999) (0.012648657500000021) (0.012993420499999991) (0.012563972000000007) (0.012785783499999995) (0.012760483000000003) (0.012699702999999993) (0.012995884499999999) (0.012616833499999994) (0.012454263999999993) (0.012650818500000008) (0.012650958500000004) (0.012625542999999989) (0.012730661000000004) (0.012603573000000007) (0.01253268249999999) (0.01273775349999999) (0.012661371000000005) (0.012884627499999995) (0.012707979000000008) (0.012734504000000008) (0.01320128949999999) (0.012622553999999994) (0.012189597999999996) (0.012573693999999996) (0.0123687715) (0.012376919499999986) (0.012404922999999998) (0.012383637500000003) (0.012592235999999993) (0.012459644499999992) (0.012398965499999998) (0.012651302499999989) (0.012655331500000006) (0.012485552999999996) (0.012541482499999992) (0.012398153500000009) (0.012480164500000002) (0.01253135200000001) (0.012231532000000003) (0.012475002500000013) (0.012305033499999993) (0.012312589500000012) (0.012232515999999999) (0.012314198000000012) (0.01229611600000001) (0.012245295999999989) (0.012732396999999993) (0.012983448500000008) (0.012283152999999991) (0.01273234749999999) (0.012304446999999996) (0.012533798999999984) (0.012481935) (0.01258002900000002) (0.012656138500000011) (0.013074649500000007) (0.012502897499999999) (0.012711973500000015) (0.013127068499999991) (0.012871769499999991) (0.012583935000000004) (0.013025448999999995) (0.012770543999999995) (0.012788702499999999) (0.012905040999999992) (0.012837738500000015) (0.012666090500000005) (0.012734963499999988) (0.013149156000000009) (0.012794978999999998) (0.012515399499999996) (0.013003621999999992) (0.012576829000000012) (0.012954127499999996) (0.012603745999999999) (0.012890178000000002) (0.012631503000000002) (0.012725085999999997) (0.012911494999999995) (0.012872486999999974) (0.012773295500000004) (0.013014822500000009) (0.012983502000000008) (0.012795422) (0.01268908149999999) (0.012769427000000014) (0.012552426500000005) (0.012277930000000006) (0.012174175499999995) (0.012459495999999987) (0.012340871000000003) (0.012471389999999999) (0.012583729000000002) (0.012444628499999999) (0.012461656000000002) (0.012415750499999989) (0.012297056000000015) (0.012436702999999993) (0.012214173500000022) (0.012837794499999985) (0.012810110500000013) (0.012580151499999997) (0.01247503400000001) (0.0125850505) (0.01330249750000001) (0.012417880500000006) (0.012262779500000015) (0.01236377050000001) (0.012513126999999999) (0.012267186) (0.012439639999999988) (0.012445599000000002) (0.012886147000000014) (0.012374754500000015) (0.012811443999999991) (0.012654612499999995) (0.012261855500000016) (0.012523180499999995) (0.012610195000000005) (0.012918911499999991) (0.012816513000000002) (0.012516411000000005) (0.012451953000000002) (0.012701793000000003) (0.012879667499999997) (0.012735551999999997) (0.013101521500000005) (0.0126123125) (0.012876348999999995) (0.012761677999999985) (0.013014170500000005) (0.013095069500000014) (0.012625534500000007) (0.012645215000000001) (0.012822305500000006) (0.0126081215) (0.012734177) (0.012924048499999993) (0.012807907999999993) (0.012531438000000006) (0.012806204000000015) (0.012769464000000008) (0.012627483499999995) (0.012701190000000015) (0.012644084) (0.012925032000000003) (0.012904492999999989) (0.012954072499999997) (0.012758949999999991) (0.012795191000000011) (0.012320632499999998) (0.012443837) (0.01244869350000001) (0.012363836500000017) (0.01253079700000001) (0.012564031500000003) (0.012243163500000001) (0.012354584999999987) (0.012582444999999998) (0.0123522935) (0.012692932000000004) (0.012686287000000004) (0.012578244000000002) (0.012540354500000003) (0.012530152000000003) (0.012545585499999998) (0.012646311000000007) (0.012270636499999987) (0.012379524000000003) (0.01242442399999999) (0.012303804500000001) (0.012370124999999996) (0.012936989499999982) (0.012533180000000019) (0.012413068000000013) (0.012593334000000012) (0.012578103999999993) (0.012515693500000022) (0.012498885500000001) (0.012320073500000014) (0.012714370000000003) (0.01253296000000001) (0.01262843000000001) (0.012727665999999999) (0.012491325499999997) (0.012823690499999998) (0.012682518000000004) (0.012448769000000012) (0.012852835999999992) (0.012678354000000003) (0.012825727499999995) (0.012921211999999987) (0.012880916499999978) (0.012844160499999993) (0.013305494000000001) (0.012795136000000012) (0.01292608800000003) (0.012828454500000003) (0.012700839500000005) (0.012663609499999992) (0.012626145499999991) (0.012431825000000021) (0.012846291999999995) (0.012605806499999997) (0.012539584499999978) (0.012813190000000016) (0.013052376000000004) (0.012531679500000004) (0.012704178999999996) (0.013049715000000003) (0.01277039649999999) (0.012741213500000001) (0.012916111999999993) (0.012652801499999991) (0.012605289500000005) (0.012357056500000005) (0.012476916000000018) (0.012338703999999992) (0.012452548500000007) (0.012408459499999996) (0.012412227999999997) (0.012417168499999992) (0.012661212500000005) (0.012641524000000001) (0.012571871999999998) (0.012560837000000005) (0.012568207999999997) (0.012534900500000015) (0.01238188450000001) (0.012455932999999988) (0.012270217499999986) (0.012298828499999997) (0.0125274665) (0.012585432500000007) (0.012720753000000001) (0.012671641999999997) (0.012387717000000006) (0.012500166000000007) (0.012584996000000015) (0.012566062999999988) (0.012941795500000006) (0.012951979500000002) (0.012876176499999989) (0.012470867999999996) (0.012788332) (0.0127052255) (0.012682890500000002) (0.012660519000000009) (0.012940472499999994) (0.012928095) (0.012828999500000007) (0.012842015000000012) (0.012546464000000021) (0.012941851000000004) (0.012855547500000009) (0.012766758500000003) (0.012650143500000016) (0.012698188999999985) (0.012790541499999988) (0.012837760500000003) (0.012772496499999994) (0.013048580000000004) (0.012523227499999998) (0.012961559499999997) (0.012957171000000017) (0.012620308499999996) (0.01265496649999999) (0.012581476500000008) (0.012845560999999991) (0.013386167500000004) (0.013253508499999997) (0.01303849) (0.012696522999999987) (0.012782511999999996) (0.012865263500000002) (0.012811680500000006) (0.012987158999999998) (0.01286900449999999) (0.012509451000000005) (0.012335861500000003) (0.012373936500000002) (0.012492436999999995) (0.012319165999999993) (0.012479546500000008) (0.012362075) (0.012385779999999985) (0.012509018499999996) (0.012735641499999992) (0.012513507999999993) (0.012480091499999998) (0.012434679500000004) (0.012539829500000002) (0.012609645500000016) (0.012577460499999998) (0.012202906999999999) (0.012436451000000001) (0.012341031000000002) (0.0123052045) (0.012181121500000003) (0.012699459999999996) (0.012518888000000006) (0.012185906999999996) (0.012772305999999997) (0.012737879999999993) (0.012505185000000002) (0.012909114499999999) (0.01239153950000002) (0.012669995000000003) (0.012405356999999992) (0.012507041499999996) (0.012773824500000003) (0.012629126000000004) (0.012643650999999992) (0.012682786000000001) (0.01276829950000001) (0.0126404705) (0.012508260499999993) (0.012483644499999988) (0.012847512499999991) (0.012781417000000003) (0.012882520499999994) (0.012851550500000017) (0.01281591750000001) (0.012572001000000013) (0.012954895500000008) (0.012784039999999997) (0.0129880255) (0.013052645499999987) (0.012630804499999995) (0.012619200499999997) (0.012943207999999998) (0.012650371500000007) (0.013088037499999983) (0.012792642499999993) (0.01274853799999999) (0.01274442549999999) (0.012610469499999999) (0.012711901000000012) (0.012925363999999995) (0.012821213500000012) (0.012795554499999987) (0.012887946999999983) (0.012303792999999993) (0.0123167535) (0.012460171499999992) (0.01245412450000001) (0.012302220000000003) (0.012203714500000004) (0.012352086499999998) (0.01229052) (0.012240263500000001) (0.01248068899999999) (0.012452872500000017) (0.012846945999999998) (0.012678830500000002) (0.012759355) (0.012592816500000006) (0.01255916800000001) (0.012627316) (0.012309319499999999) (0.012430460000000004) (0.012489552999999987) (0.012462270500000011) (0.012277852499999992) (0.012351474000000001) (0.012624710500000011) (0.012531082999999998) (0.012589903999999999) (0.012361135499999995) (0.012613482499999995) (0.012302318500000006) (0.01244229749999999) (0.012549562) (0.012362311499999987) (0.012790428000000006) (0.012878363500000004) (0.012702771500000001) (0.01264338449999998) (0.012512843999999995) (0.012788216000000005) (0.012555155999999984) (0.012528110999999995) (0.012774121000000013) (0.012887072999999999) (0.012713063999999996) (0.012996978999999992) (0.01282075399999999) (0.012708926499999995) (0.012679056499999994) (0.012850782000000005) (0.012872555999999993) (0.012958537000000006) (0.012796787000000004) (0.012598310500000001) (0.01280932400000001) (0.0127610415) (0.012992795000000015) (0.012701034) (0.012840843500000004) (0.012816945499999996) (0.012902132499999996) (0.012877926999999997) (0.012977939000000008) (0.01291165000000001) (0.012775390499999997) (0.012843614500000003) (0.012469470499999996) (0.012305180999999998) (0.01221547399999999) (0.012817393499999996) (0.012388998999999998) (0.012413926000000006) (0.012205952999999992) (0.01232319250000001) (0.012579931999999988) (0.012661731999999995) (0.012493888500000008) (0.012588994500000006) (0.012438311000000007) (0.012270817999999989) (0.012816019999999997) (0.012319943999999985) (0.012351649500000006) (0.01256431949999999) (0.012544289) (0.012302290499999993) (0.012419222500000007) (0.012308765) (0.012514897499999997) (0.012379508999999997) (0.012773945500000009) (0.012581035500000004) (0.012389831000000018) (0.012629120499999993) (0.01252031699999999) (0.012806365500000014) (0.012472134499999996) (0.012609948999999981) (0.012784284500000007) (0.01271493500000001) (0.013009238500000006) (0.012792332500000003) (0.012561252999999994) (0.012654521000000002) (0.012626276500000005) (0.012552867999999995) (0.012666101999999999) (0.012686365000000005) (0.012944326500000006) (0.012811315500000003) (0.012936957999999985) (0.013057684) (0.012897431) (0.012950643499999998) (0.012839375500000014) (0.012804652) (0.01267360200000002) (0.012683736000000001) (0.013059071500000005) (0.012589534) (0.013331718500000006) (0.013089627999999992) (0.012824404999999997) (0.012756017500000008) (0.014666043500000003) (0.01275771299999999) (0.012719107500000007) (0.012631717) (0.012999353000000005) (0.012723667500000008) (0.0122994575) (0.012461789999999986) (0.012656544000000006) (0.012324651499999992) (0.012559218000000011) (0.012445187499999996) (0.0123512135) (0.012372326500000003) (0.012497213999999993) (0.012576364999999992) (0.012573024500000002) (0.012549257500000008) (0.013104261999999992) (0.012374133000000023) (0.012643912500000007) (0.012776123000000014) (0.012738431999999994) (0.012517260000000002) (0.012882452999999988) (0.012313098000000008) (0.012332102000000011) (0.012604677499999994) (0.012631151999999993) (0.012240050000000002) (0.012969784499999984) (0.012448979499999999) (0.012432810000000002) (0.01259096500000001) (0.012292025999999998) (0.012972606500000011) (0.012330352000000017) (0.01249027799999998) (0.012678433000000017) (0.012945289999999998) (0.012803768499999979) (0.012800137500000017) (0.0126938875) (0.0126496995) (0.01274040700000001) (0.01245808100000001) (0.012609381000000003) (0.013054545499999987) (0.012571196000000007) (0.012909793500000016) (0.01297762949999999) (0.012983141500000003) (0.013003239499999986) (0.012530528999999999) (0.012757487499999998) (0.012643008999999997) (0.013062044499999995) (0.012705177499999984) (0.01290227599999999) (0.012578509000000002) (0.012554287500000011) (0.01258427099999998) (0.012848236999999998) (0.01295897599999997) (0.01276998700000001) (0.012959741999999996) (0.012944300999999991) (0.012690353499999973) (0.012603983500000013) (0.01318860849999999) (0.012717538500000014) (0.012265252500000018) (0.01257860849999999) (0.012374357499999988) (0.012492585999999986) (0.012593453500000004) (0.012365915000000005) (0.012749054499999996) (0.012327311500000007) (0.012518940999999992) (0.012667982999999994) (0.012758110500000017) (0.012519744500000013) (0.012687489999999996) (0.012638266500000009) (0.012501124000000002) (0.01242824549999999) (0.012445040000000004) (0.012671075500000004) (0.012487829000000006) (0.0122419265) (0.012304295000000007) (0.012777930000000007) (0.012515139999999994) (0.01246335450000001) (0.01280854200000002) (0.013133585500000003) (0.0130023415) (0.01265854100000001) (0.012382429999999986) (0.012450280999999994) (0.01229754999999999) (0.0125038715) (0.012797033499999999) (0.012941630999999995) (0.012615170500000009) (0.012598232000000001) (0.012657872) (0.012797765500000002) (0.012986614999999993) (0.012861919999999999) (0.012674397500000004) (0.012624317499999996) (0.01303989300000001) (0.012671921000000003) (0.012682154000000001) (0.012862396999999998) (0.01309318100000001) (0.01275594799999999) (0.0127900455) (0.012749844499999996) (0.012930442500000014) (0.012841715000000004) (0.013024687000000007) (0.012679103499999983) (0.012859934000000031) (0.013334460499999992) (0.012943874500000008) (0.012610995000000014) (0.013051692500000017) (0.012607707500000023) (0.012971603000000012) (0.012745814999999994) (0.012875759000000014) (0.012408009999999997) (0.012337158) (0.012540398500000008) (0.0124768445) (0.012509257499999996) (0.012431485000000006) (0.012141490000000005) (0.012452479000000016) (0.012388687999999995) (0.012746363999999996) (0.012830051999999995) (0.012548392500000005) (0.012341992499999996) (0.012507013499999997) (0.012851396499999973) (0.012307429000000009) (0.012375684500000012) (0.012673146999999982) (0.012538321500000005) (0.01239627950000001) (0.012439407500000013) (0.012569264499999996) (0.012347409000000018) (0.012517986999999994) (0.012352315000000003) (0.012497636499999992) (0.012428632000000009) (0.012536755999999982) (0.012585240499999983) (0.01237110050000001) (0.012496836000000011) (0.01265247700000001) (0.012537803999999986) (0.012913687500000007) (0.012657217999999998) (0.012615410500000021) (0.012507967500000008) (0.012590360499999995) (0.012672719000000013) (0.01283098000000002) (0.012792375499999994) (0.01287021050000002) (0.012641827999999994) (0.013014155) (0.012870565500000014) (0.013059791500000001) (0.012967431500000015) (0.013082172500000003) (0.012975551999999987) (0.0125012605) (0.012751107499999983) (0.012590055000000003) (0.012594179999999996) (0.012522811499999995) (0.012617893500000005) (0.012577086999999987) (0.012868987999999984) (0.013239522000000017) (0.012660079000000005) (0.012777015500000016) (0.012848694500000007) (0.012745532000000032) (0.013067797999999992) (0.012896256500000008) (0.012410060500000014) (0.012534320000000002) (0.012299266999999989) (0.01230580199999999) (0.012394543500000008) (0.012261502500000007) (0.012425396000000005) (0.012234637000000007) (0.0124480005) (0.01243728500000002) (0.012439001499999977) (0.012326632500000018) (0.012438243499999987) (0.012688899500000003) (0.012455897500000007) (0.01244463899999998) (0.012619891000000008) (0.012467155999999993) (0.012261863500000011) (0.012417892500000013) (0.012757771499999987) (0.012383894499999992) (0.012368446500000019) (0.012650807) (0.012710412500000018) (0.012255135999999986) (0.012243255000000008) (0.012465717500000001) (0.012357047999999982) (0.012671498000000003) (0.012599867000000015) (0.012390836000000002) (0.012592806499999984) (0.012531710000000015) (0.01249518749999999) (0.012648038499999986) (0.01280400750000002) (0.012857629500000009) (0.012651942) (0.012818690000000008) (0.012885125499999997) (0.01289692449999999) (0.013018583000000014) (0.013254103999999989) (0.012558551000000015) (0.012856068500000012) (0.012915344499999981) (0.012943426000000022) (0.01270384699999999) (0.012752787500000001) (0.012862254500000017) (0.013088331499999994) (0.012640853499999993) (0.012705111500000019) (0.012638277999999961) (0.012697579500000028) (0.012958340500000026) (0.012936211500000017) (0.012907532) (0.012730375000000016) (0.0126730055) (0.013035454000000002) (0.012866556000000015) (0.013003612499999997) (0.010729168499999997) (0.010540466999999998) (0.010802805999999998) (0.010463820000000013) (0.010470932499999988) (0.010381371000000014) (0.010607575000000008) (0.010869230500000007) (0.010531084499999996) (0.010688445500000004) (0.010792385000000002) (0.010611864499999998) (0.010762178999999997) (0.010854060499999998) (0.011023305499999997) (0.011006415499999991) (0.010726154000000002) (0.010454505000000003) (0.010587591999999993) (0.010600796499999995) (0.011066193499999988) (0.010909556499999987) (0.010690393500000006) (0.010490804000000006) (0.010671445500000001) (0.010690285500000007) (0.010828207500000006) (0.010689381500000011) (0.010580050499999993) (0.010514464000000001) (0.0106787785) (0.010776288500000009) (0.010865954999999997) (0.010862122000000002) (0.01093479) (0.010895184000000002) (0.011116611000000012) (0.010892945500000015) (0.01093918499999999) (0.010947265500000011) (0.011038785499999995) (0.01083439550000001) (0.011034663) (0.01091123599999999) (0.010923645999999981) (0.010927347000000004) (0.011085675500000003) (0.010943817000000008) (0.011276737999999994) (0.011056165499999993) (0.011045916000000003) (0.010909563499999997) (0.010942612000000004) (0.010842374500000002) (0.011188272999999999) (0.010897871999999989) (0.011091077000000005) (0.010943169499999988) (0.01107871299999999) (0.010942219500000003) (0.011125785) (0.011102028000000014) (0.0110708105) (0.010992593500000009) (0.010743997000000005) (0.010654236000000011) (0.010627757000000002) (0.010681807000000001) (0.010790682499999996) (0.010977829499999994) (0.01074631899999999) (0.010794563500000007) (0.01091022500000001) (0.0106249915) (0.01077039299999999) (0.010614657999999999) (0.011059213000000012) (0.010843500500000006) (0.0107810755) (0.010705712000000006) (0.010868492499999993) (0.010801250999999998) (0.010620876000000001) (0.010701170499999996) (0.010573560999999995) (0.010631860499999993) (0.010595697499999987) (0.010543875000000008) (0.010882965499999994) (0.010843161000000004) (0.010993215999999986) (0.01085430100000001) (0.010713073999999989) (0.010684034999999995) (0.010660477000000002) (0.010726082499999998) (0.011072335000000003) (0.010851938000000005) (0.011043118000000005) (0.010761166500000002) (0.010912304499999997) (0.010755844) (0.011106953500000002) (0.010822930999999994) (0.011007175999999994) (0.011043932499999992) (0.01113070549999999) (0.011042887999999987) (0.011056697500000004) (0.011321703000000016) (0.011048174500000008) (0.011078277499999997) (0.010852569500000006) (0.011093582500000004) (0.011028997999999998) (0.011019618499999995) (0.011011338499999995) (0.011013289999999995) (0.010896037500000011) (0.010997218000000017) (0.011050876500000001) (0.010978823999999998) (0.011002089999999992) (0.011074299499999982) (0.0109212385) (0.011056558499999994) (0.011127407500000006) (0.011029419999999998) (0.010514406500000004) (0.010825532999999998) (0.010421178500000017) (0.01067670549999998) (0.010526316499999994) (0.011054398000000007) (0.010710175500000002) (0.010663737499999992) (0.0110833355) (0.010737864) (0.010599210500000011) (0.010724726500000004) (0.010794679000000015) (0.010955630500000008) (0.010766092000000005) (0.010789638500000004) (0.010690085500000002) (0.010745591499999999) (0.01079082549999999) (0.010825494000000005) (0.010737729500000001) (0.010589494500000005) (0.010649655999999993) (0.010560187499999998) (0.010591150500000007) (0.010846340999999995) (0.01080225) (0.010831676499999998) (0.010715255999999992) (0.010909499499999989) (0.010805212999999994) (0.010867289500000016) (0.011160805499999996) (0.010965709000000004) (0.010826453) (0.010960966499999988) (0.011018006999999996) (0.0110542015) (0.010989292499999997) (0.010991197500000008) (0.011187320500000014) (0.011133743500000001) (0.011009803500000012) (0.010914221500000015) (0.010935588999999996) (0.011065401500000002) (0.011040198000000001) (0.011174474000000004) (0.011170631499999986) (0.011053989) (0.010870772) (0.011449151500000004) (0.01091946249999999) (0.011210216499999995) (0.010820244000000007) (0.011063179500000006) (0.010972188999999993) (0.010967258499999993) (0.011005322499999998) (0.011124646500000002) (0.011235347499999992) (0.01114809750000001) (0.011109388500000011) (0.011152011500000003) (0.010872514) (0.010707495500000011) (0.010587274999999993) (0.010633047500000006) (0.010695688000000009) (0.010699756500000004) (0.010785078500000003) (0.010807903999999993) (0.010931815999999997) (0.01092088849999999) (0.010782389500000003) (0.010611909000000003) (0.01071084500000001) (0.010777381000000003) (0.010737876000000007) (0.010694758999999998) (0.010666134500000007) (0.010580323000000003) (0.010900691000000004) (0.010667006500000006) (0.011043936000000004) (0.010573972499999987) (0.010716434999999996) (0.01075598300000001) (0.011060478500000012) (0.010840898000000002) (0.010591728999999994) (0.010762091499999987) (0.010826631500000003) (0.010758050499999991) (0.011122931500000002) (0.010782216999999997) (0.010837305500000005) (0.010969132499999992) (0.010833142500000004) (0.010996966999999983) (0.011267840000000001) (0.011210767499999996) (0.011217097499999995) (0.010981509) (0.011093275) (0.010968655999999993) (0.010949872499999999) (0.011251745000000007) (0.0109389545) (0.010936782499999992) (0.011271873000000016) (0.011028758499999985) (0.010890798999999993) (0.011178268000000005) (0.01095019300000001) (0.0111711855) (0.0111532835) (0.010943187999999993) (0.010933274499999993) (0.01124514950000001) (0.011319818499999995) (0.011235459999999989) (0.011204225499999998) (0.011270487499999995) (0.011080972000000008) (0.011142380999999993) (0.011023959) (0.011023048999999993) (0.010524421000000006) (0.010816071499999996) (0.010511143) (0.010832316500000008) (0.01063227) (0.010439540000000011) (0.010830474499999992) (0.010873965499999999) (0.010768988500000007) (0.0108507885) (0.010562139499999998) (0.010736505000000007) (0.010944801000000004) (0.010848945499999998) (0.010766415500000001) (0.010834361) (0.010616060499999996) (0.010591464000000009) (0.01087191450000001) (0.01066296600000001) (0.010615619500000006) (0.010611186000000009) (0.010711581499999984) (0.01066460150000001) (0.010501101000000013) (0.01097731099999999) (0.010667731000000014) (0.01050313550000001) (0.010628666499999995) (0.01064341499999999) (0.010653227000000015) (0.010857100500000008) (0.010887407500000015) (0.010958234000000011) (0.010886562500000002) (0.010921017499999991) (0.010978551000000003) (0.010991887500000005) (0.010991976) (0.010779412500000002) (0.011224405000000007) (0.011006654500000004) (0.011065440999999981) (0.011067623999999998) (0.010973726000000003) (0.010975315) (0.010940514500000012) (0.01119600400000001) (0.011109412999999985) (0.010992427999999999) (0.0109868625) (0.011020943000000005) (0.011077414000000008) (0.011103470500000004) (0.011049409999999996) (0.01104759100000001) (0.011404455499999994) (0.011127847999999996) (0.01133384450000001) (0.010947239499999983) (0.011156667000000023) (0.010899118999999999) (0.011288562000000002) (0.011191535999999988) (0.010826683500000003) (0.0110114605) (0.010572406500000006) (0.010848586500000007) (0.010891692999999994) (0.0108842215) (0.010786338000000006) (0.010754426999999997) (0.010941278999999998) (0.010910970000000006) (0.010755010499999995) (0.010598022999999998) (0.010772303999999996) (0.010943295000000006) (0.010850843499999985) (0.010688370500000016) (0.010722865999999998) (0.010682136500000008) (0.010700268500000013) (0.010560129000000015) (0.010627739499999997) (0.010550687500000003) (0.010695868999999997) (0.010537265500000004) (0.011145089499999997) (0.010812383499999995) (0.010673072000000006) (0.010908087499999997) (0.010807131999999997) (0.010816224999999999) (0.010724511999999992) (0.010774080000000005) (0.010853372) (0.010989023) (0.010839374999999998) (0.010926534000000002) (0.010964715) (0.011005945000000003) (0.010759192000000015) (0.010906943999999988) (0.011098427999999994) (0.011125777500000003) (0.011034801999999996) (0.011021924000000002) (0.010987975000000011) (0.010843078499999992) (0.011016838999999987) (0.011045442000000003) (0.010944971499999998) (0.010973148500000002) (0.01105196650000001) (0.011652849500000007) (0.010992953) (0.011553029000000006) (0.011029891) (0.011070319499999995) (0.01110695199999999) (0.011857224500000013) (0.0111889565) (0.011136721999999988) (0.010948925000000012) (0.010985833000000014) (0.011006002500000014) (0.011291582500000008) (0.01066109450000001) (0.010682990000000003) (0.010685983999999996) (0.010629665499999996) (0.011121770499999989) (0.010902687999999994) (0.010722817999999995) (0.010614454999999995) (0.010703767500000017) (0.010741433999999994) (0.010570841499999997) (0.010819068999999987) (0.010755621999999992) (0.010653471000000012) (0.010751757) (0.010570348999999993) (0.01061329100000001) (0.010587458000000008) (0.010554685499999994) (0.010625504000000008) (0.010864909999999992) (0.010765675500000002) (0.010639010500000004) (0.010551419000000006) (0.010896322499999986) (0.010877085999999994) (0.010831338499999996) (0.01083521500000001) (0.010884859499999996) (0.010859891999999996) (0.010659596499999993) (0.010630080499999986) (0.011052732999999995) (0.010986173000000016) (0.010936545500000006) (0.011297935999999995) (0.0111540205) (0.011269677500000005) (0.01123619599999999) (0.010863558000000023) (0.01130917549999999) (0.011319190999999992) (0.010982191499999988) (0.011007745499999999) (0.011128797499999996) (0.010841936999999996) (0.010907194500000009) (0.011346778500000002) (0.011104404499999998) (0.010988652000000002) (0.011212917500000003) (0.011030829499999992) (0.010942793499999992) (0.011272689000000002) (0.011032654499999989) (0.010853847499999986) (0.011125224000000003) (0.011525718500000018) (0.010898309499999995) (0.011214163) (0.011191050500000008) (0.010997894000000008) (0.01105574799999999) (0.011215013999999995) (0.0105169715) (0.010577000500000003) (0.010772136999999987) (0.010553170499999986) (0.010781180500000001) (0.01088512250000001) (0.010651434000000001) (0.010848119999999989) (0.010819533000000006) (0.010792744999999992) (0.011158329000000008) (0.010933485999999992) (0.0109048375) (0.010904839999999999) (0.010867423499999987) (0.010676848999999988) (0.010692412999999998) (0.01053264600000002) (0.010769170500000008) (0.010713102000000002) (0.010839000000000015) (0.010954247) (0.010683671999999991) (0.010744825) (0.010754997000000002) (0.011037298000000001) (0.010765045499999987) (0.010871765999999991) (0.010856149499999995) (0.010950319500000014) (0.010823007999999995) (0.010863524) (0.010977890000000004) (0.011153021999999999) (0.0107955515) (0.011226204500000003) (0.011028039000000017) (0.010749600999999998) (0.010883390000000007) (0.010936219999999996) (0.01151146850000001) (0.0111345625) (0.011140436500000003) (0.01113173449999999) (0.0110834675) (0.011244198999999996) (0.011347048999999984) (0.010953753999999996) (0.01105494500000001) (0.011481954500000002) (0.0110570465) (0.011041889) (0.010986969499999999) (0.010977971000000003) (0.010998288499999995) (0.011106316500000005) (0.011439754999999996) (0.011327379999999984) (0.010999996499999998) (0.011048225999999994) (0.011362685499999997) (0.011302767500000005) (0.011100978000000025) (0.010874323000000005) (0.010501745500000007) (0.010757621499999995) (0.010758223499999997) (0.010590161999999986) (0.010865186500000013) (0.010609342000000008) (0.01096100450000001) (0.010815317500000005) (0.010589148000000007) (0.010546889000000018) (0.010653044) (0.0108121625) (0.010812518000000007) (0.010641619500000005) (0.01065357800000001) (0.01072931449999999) (0.010489192000000008) (0.010697517000000004) (0.010821488500000004) (0.010933219500000008) (0.010656518500000017) (0.010542371000000009) (0.010910728999999994) (0.010686035499999996) (0.010595938000000013) (0.010774722499999986) (0.010674289000000003) (0.010621457) (0.010652857000000002) (0.010932095500000003) (0.0107108665) (0.01054484) (0.01073642050000001) (0.011002674500000004) (0.011019134000000014) (0.011207540000000002) (0.01087952099999999) (0.011131628000000018) (0.011074767999999985) (0.011038379500000015) (0.010851239500000012) (0.011004029499999998) (0.010923074000000005) (0.011385635000000005) (0.011280476999999997) (0.010988750999999991) (0.011146025000000004) (0.011021158500000003) (0.011107868499999993) (0.011113812) (0.01092294549999999) (0.01118789449999999) (0.0109415135) (0.011060217000000011) (0.011039309999999997) (0.010927918500000008) (0.011071508999999993) (0.011281372499999998) (0.010913186499999991) (0.011048187499999987) (0.0109574365) (0.011013048499999997) (0.011210988000000005) (0.010933922499999998) (0.010840497500000004) (0.010851080999999999) (0.010871023000000007) (0.010740960500000007) (0.010932966999999988) (0.010838999000000002) (0.010877539499999991) (0.010879570500000005) (0.010978569999999993) (0.010864812000000001) (0.010688954) (0.010903777999999989) (0.010883651999999994) (0.010878990500000005) (0.010911811000000007) (0.010646779499999995) (0.010627789999999998) (0.010722715000000008) (0.010962667999999995) (0.010685503999999985) (0.01075329350000001) (0.010739245999999994) (0.010601820500000012) (0.010668561999999993) (0.010797732500000004) (0.010788155499999993) (0.010697181) (0.010934889000000003) (0.010754214499999998) (0.010905664999999995) (0.010596777000000002) (0.010750348500000007) (0.010837571500000018) (0.011207639999999991) (0.01114486449999999) (0.010856242500000002) (0.010995941499999995) (0.010929209500000009) (0.011071182499999999) (0.0110414925) (0.010959146500000003) (0.01104490000000001) (0.011252591499999992) (0.011134511) (0.0110993375) (0.010902365499999997) (0.011195457500000006) (0.011155066000000005) (0.010960393499999999) (0.010925311500000007) (0.010882466000000007) (0.010942524500000009) (0.01111106549999999) (0.010903227000000001) (0.010840093499999995) (0.011030876000000009) (0.010950848499999999) (0.010953749999999998) (0.011312912000000008) (0.011211922499999999) (0.011279421999999997) (0.011367008999999997) (0.01122608) (0.011403066500000003) (0.010670820499999997) (0.010755173500000006) (0.010547076000000002) (0.0106490905) (0.010708124) (0.01079772150000001) (0.010755878999999996) (0.011019414500000005) (0.010592112) (0.010773324) (0.010743661500000001) (0.010669886500000003) (0.010600687499999983) (0.010650698) (0.010602892000000003) (0.010781172500000005) (0.010554045500000012) (0.010619325499999999) (0.010755513000000008) (0.010652164500000005) (0.010771493499999993) (0.010632134000000001) (0.010620246) (0.010767898499999998) (0.010736554500000009) (0.010797276499999994) (0.010861398000000008) (0.01090634) (0.0105932465) (0.010868430499999998) (0.010669255000000002) (0.010688391499999991) (0.011239061999999994) (0.011152561499999991) (0.0110010985) (0.011133890499999993) (0.010784685500000002) (0.010975526500000013) (0.01093419000000001) (0.011093493499999996) (0.01098854299999999) (0.01088194599999999) (0.011054347000000006) (0.010964883999999994) (0.011250742000000008) (0.01108505700000001) (0.011202820000000016) (0.011197808500000003) (0.010983880500000001) (0.011381391500000004) (0.010950446499999988) (0.011089120499999994) (0.010899267000000004) (0.011154904999999993) (0.010989999000000014) (0.010894583999999999) (0.01102533750000001) (0.011091277499999982) (0.011215141999999997) (0.01102126099999999) (0.010996651999999996) (0.010962373999999997) (0.011050750500000012) (0.011085621500000004) (0.010849849500000008) (0.010572836000000002) (0.010945204000000014) (0.010802701000000012) (0.010700953) (0.0106107005) (0.011220904500000004) (0.010793444499999999) (0.010935698000000008) (0.010930303000000016) (0.010834199499999989) (0.010592273999999985) (0.010988844500000011) (0.010632569499999994) (0.01085792699999999) (0.010687815500000017) (0.010882529000000002) (0.010764021499999998) (0.010641284000000015) (0.010864748000000007) (0.010479546000000006) (0.010723789999999997) (0.010777797999999991) (0.010769790500000001) (0.010743080000000002) (0.010683353999999992) (0.010762933000000002) (0.01097490650000002) (0.010995535500000014) (0.01076870499999999) (0.01100152950000001) (0.011143278999999992) (0.01133311549999999) (0.011066637000000004) (0.011183228000000003) (0.011326509999999998) (0.010969778) (0.011232659500000006) (0.010977084500000012) (0.011350614999999994) (0.011278184999999996) (0.011083336) (0.011438754500000009) (0.011089129000000017) (0.011092170999999998) (0.011418697000000005) (0.011193236500000009) (0.011013953499999993) (0.01112151900000001) (0.011175750999999998) (0.011094337499999996) (0.011164229999999997) (0.011178593499999986) (0.011139592500000003) (0.011062513499999982) (0.011058282000000003) (0.011233670500000001) (0.011313395000000004) (0.011058923999999984) (0.011059048500000002) (0.011080131499999993) (0.011135852500000001) (0.011318975499999981) (0.011373564999999988) (0.010773014999999997) (0.010659164499999985) (0.010688816000000004) (0.010639974999999996) (0.010714184000000002) (0.010883555500000003) (0.010622489499999985) (0.010786328499999998) (0.0108483375) (0.01107420299999999) (0.010634693) (0.010995685499999991) (0.011120149999999995) (0.010820792999999995) (0.010908796000000012) (0.010621917499999994) (0.010871732500000009) (0.010563795500000014) (0.01063203850000001) (0.010513979500000006) (0.01064552299999999) (0.010783092500000008) (0.011324287499999988) (0.010634585999999988) (0.010770598499999992) (0.010861637000000007) (0.010758933499999984) (0.010684228500000004) (0.010855942500000007) (0.010640210499999983) (0.010733517500000012) (0.010664523500000009) (0.010844902000000003) (0.010922652000000005) (0.011012029500000006) (0.011091720999999999) (0.01090199650000001) (0.011054698999999987) (0.010896564500000011) (0.01120278949999999) (0.011066051500000007) (0.011067084000000019) (0.010881619499999995) (0.011250234999999997) (0.010934886500000005) (0.010846240999999993) (0.011037970499999994) (0.011140707) (0.011154847999999995) (0.011036023499999992) (0.010950614999999997) (0.010929228) (0.010906349999999995) (0.011044055999999997) (0.011088037999999995) (0.011071494500000001) (0.011626401500000008) (0.01117093050000001) (0.010980320500000001) (0.011058619000000006) (0.01096031850000001) (0.0113775755) (0.011560365000000003) (0.010841315000000004) (0.010741674500000006) (0.011210172500000004) (0.010851156) (0.010736745500000006) (0.010600930499999994) (0.010699766999999999) (0.01075519450000001) (0.010612502499999996) (0.010747045499999996) (0.010747399500000004) (0.010750686499999995) (0.010921099000000004) (0.010873986000000002) (0.010796595500000006) (0.010956965499999999) (0.010752065000000005) (0.010597588500000005) (0.010971838999999997) (0.010739074499999987) (0.010627197500000005) (0.010906154500000001) (0.010793399500000009) (0.0106457425) (0.010636172999999999) (0.010825267) (0.010761606500000007) (0.010665919999999995) (0.010880165999999997) (0.010905649999999989) (0.010713241999999998) (0.010990831000000006) (0.010717590499999999) (0.011063797500000014) (0.011124545) (0.011113909500000005) (0.010960790499999998) (0.010893092000000007) (0.011059837499999989) (0.011014190999999993) (0.010986380500000004) (0.011016908999999991) (0.011073858500000006) (0.011158059999999997) (0.01102598099999999) (0.010978277999999994) (0.010995216000000002) (0.010953978500000003) (0.011286840000000006) (0.010769022500000003) (0.010882704000000007) (0.011138690500000006) (0.011097031499999993) (0.010949377999999996) (0.010835046000000015) (0.010952425999999987) (0.011119581999999989) (0.011139462000000017) (0.011057503499999996) (0.010964797000000012) (0.011141157499999998) (0.011146047500000006) (0.011221628499999997) (0.011047171500000008) (0.010985117500000002) (0.010794456500000008) (0.01058793450000002) (0.011332627999999983) (0.010722665500000006) (0.010779451499999995) (0.010781877999999995) (0.010630257000000004) (0.010590178500000005) (0.010753775999999993) (0.010829901500000003) (0.010777333) (0.0106870815) (0.010775940999999997) (0.01118168600000001) (0.011155696000000007) (0.01067886300000001) (0.010570111499999993) (0.010663429500000016) (0.010600430999999993) (0.010802383000000013) (0.010701208500000017) (0.010473673500000003) (0.010590647500000008) (0.010936403500000011) (0.01075630200000001) (0.011713114999999996) (0.010776873499999992) (0.010827651499999993) (0.010633826499999999) (0.011117189) (0.010849771500000008) (0.010892681500000001) (0.010864577999999986) (0.011174526000000004) (0.010877420999999998) (0.011026565500000002) (0.011163283999999996) (0.011262479500000006) (0.0109117995) (0.011195594000000003) (0.011184373000000011) (0.011053238000000007) (0.011025846999999991) (0.011269623500000006) (0.011357555499999991) (0.0113453835) (0.011230564999999984) (0.011023605000000006) (0.011229581000000002) (0.011172154500000003) (0.010851627000000003) (0.010863954000000009) (0.011016720000000008) (0.010776020000000011) (0.011000819000000009) (0.010922708000000003) (0.01122141900000001) (0.011090757499999992) (0.011156383000000006) (0.011067870000000007) (0.011084365999999998) (0.011127083999999995) (0.0109758415) (0.011213173499999993) (0.010959639999999993) (0.01055634150000001) (0.010660243000000014) (0.010912349000000002) (0.010718065499999999) (0.010869852499999999) (0.010910556500000002) (0.010606163000000002) (0.010760501499999992) (0.010923210000000003) (0.010757781000000022) (0.010595920000000009) (0.010931655999999998) (0.01094677899999999) (0.010862056500000009) (0.011070745499999993) (0.01118661750000001) (0.010930477999999993) (0.010666408500000002) (0.010695838000000013) (0.010534827499999996) (0.01100582500000001) (0.01069128400000001) (0.01064627650000001) (0.010709404499999992) (0.011145263499999988) (0.010839270999999998) (0.010724619500000018) (0.010847830000000003) (0.010865484499999994) (0.010835140999999993) (0.010833054999999994) (0.011246938999999997) (0.01109138200000001) (0.010825032000000012) (0.011194652500000013) (0.011124610499999993) (0.010881244500000012) (0.010997020499999996) (0.011034061000000012) (0.011542826999999992) (0.0111489855) (0.011257240999999987) (0.011096758999999998) (0.011153289499999983) (0.011312030000000015) (0.011095806) (0.011118537499999998) (0.011795759000000003) (0.011206977500000007) (0.011008599000000008) (0.0112658115) (0.011293228500000002) (0.010904163999999994) (0.01124088199999998) (0.011168325499999993) (0.011206862499999998) (0.011276322500000005) (0.011254407000000008) (0.011037180500000021) (0.0111035055) (0.011144013500000008) (0.011073264999999985) (0.01131979700000002) (0.010595231000000024) (0.010743535500000012) (0.010588230500000018) (0.010614557499999996) (0.010610415499999998) (0.010767029999999997) (0.010865602999999988) (0.010980702499999995) (0.010827421000000004) (0.010634240000000003) (0.010737627) (0.010926778999999998) (0.010782317) (0.01083576800000001) (0.011146713500000002) (0.010803689499999991) (0.010563735500000004) (0.010576124999999992) (0.010757374999999986) (0.01054121899999999) (0.010785124000000007) (0.010493862999999992) (0.010741906500000009) (0.010721119000000001) (0.010782133999999999) (0.010605248500000011) (0.0105933525) (0.010449694499999995) (0.010992844000000002) (0.010645586499999998) (0.010751756999999987) (0.01079930450000001) (0.010802028500000005) (0.01122127149999999) (0.011123221000000003) (0.010857610000000004) (0.010902977000000008) (0.011075118500000009) (0.010924858999999995) (0.010921141499999995) (0.011091881999999983) (0.011036500000000005) (0.01100704949999999) (0.011000113000000006) (0.011170079) (0.010965304499999995) (0.011248672500000001) (0.011067449499999993) (0.010920125499999989) (0.010980197499999983) (0.010983288999999993) (0.010758616499999984) (0.010879638000000011) (0.010962672500000006) (0.011037576000000007) (0.010910281499999994) (0.010969261500000008) (0.011109247000000003) (0.010931137999999993) (0.011114679000000002) (0.010899587000000002) (0.010974913999999988) (0.011029833000000017) (0.010966377999999999) (0.010466051500000004) (0.01057849650000002) (0.01072187799999999) (0.010621775) (0.010517104) (0.010567794000000005) (0.0107764375) (0.0106520155) (0.010558854999999992) (0.011060609499999999) (0.010805903500000005) (0.010914693999999989) (0.010788025999999992) (0.010964272999999997) (0.010711273000000007) (0.01072134600000002) (0.010482832000000011) (0.010539615499999988) (0.010557076999999998) (0.0106938075) (0.010534854999999996) (0.010913142) (0.010548198499999994) (0.010843158500000005) (0.010717530499999989) (0.010833994) (0.010736908999999989) (0.010726238499999999) (0.010571474500000011) (0.010679787499999996) (0.010722715500000007) (0.010673896500000002) (0.010914947499999994) (0.010801960999999999) (0.011147549000000007) (0.011175967500000009) (0.010928889499999997) (0.010961574000000002) (0.010874078499999995) (0.011089665500000012) (0.011044206500000014) (0.010954454000000002) (0.010927058000000003) (0.010996124499999996) (0.010972361999999986) (0.011119408999999997) (0.010954452000000003) (0.011245017999999996) (0.011022109999999988) (0.011052396000000006) (0.010991363500000004) (0.01111157800000001) (0.010974258) (0.011046758000000004) (0.0111769055) (0.010950937499999994) (0.011251312499999985) (0.010901820500000006) (0.010877666000000008) (0.011254978000000013) (0.01124575450000001) (0.01106515999999999) (0.011009429500000001) (0.011340308999999993) (0.010656188999999996) (0.010568547500000011) (0.0107728515) (0.010792911500000002) (0.010606238500000004) (0.010580087000000002) (0.010779381000000005) (0.011091784500000007) (0.010634792500000004) (0.010947104) (0.010841978499999988) (0.010673143999999996) (0.010908549500000003) (0.010840468000000006) (0.010671110500000011) (0.010783759000000004) (0.01051286400000001) (0.010681878500000005) (0.010580692000000003) (0.010636945000000009) (0.0106409705) (0.010659263000000016) (0.010840094000000008) (0.010765556499999995) (0.010801468500000008) (0.010684917000000002) (0.010660483000000012) (0.010930709999999996) (0.010934958500000022) (0.010625565500000017) (0.01058495600000002) (0.010776288999999994) (0.011227441000000019) (0.011090282000000007) (0.011117426) (0.011007028000000002) (0.011130751500000008) (0.01109855450000001) (0.011335103999999999) (0.011281781500000004) (0.01099989550000001) (0.011310150500000005) (0.010981783500000009) (0.010884233499999993) (0.011025637000000005) (0.011167928499999993) (0.011324085999999997) (0.010926151500000009) (0.010917860000000015) (0.010965706000000006) (0.011135982000000016) (0.010908361000000005) (0.010846608000000008) (0.010986866999999997) (0.010974017000000003) (0.011136898000000006) (0.010996393000000007) (0.011019630500000002) (0.0110722075) (0.011263977999999994) (0.01104090399999999) (0.011068978999999993) (0.011107482500000002) (0.010915266499999993) (0.010864184499999985) (0.010754579500000014) (0.011041670500000003) (0.010572371000000011) (0.011058855500000006) (0.010769883500000008) (0.010640273500000005) (0.010576297000000012) (0.010682774000000006) (0.010877598500000016) (0.01102330750000001) (0.010874705500000012) (0.010790729499999999) (0.010736398999999994) (0.010663180500000008) (0.011055593500000002) (0.010707051999999995) (0.01075661) (0.010565447500000005) (0.010596929500000005) (0.010537826000000014) (0.010749832500000014) (0.0105461325) (0.010727901500000012) (0.010890261999999998) (0.010803296000000004) (0.010997694000000002) (0.011052489999999998) (0.011089705000000005) (0.0109346305) (0.011021758499999992) (0.010845297500000003) (0.011228529499999987) (0.011065065999999998) (0.011085150000000002) (0.011390402000000008) (0.011016830500000005) (0.011132618999999996) (0.011068686500000008) (0.01093248999999999) (0.011020993500000006) (0.010994808999999994) (0.01090273) (0.011084234500000012) (0.01094487000000001) (0.0113963745) (0.011116753500000007) (0.011218066000000013) (0.010946258) (0.011234010499999988) (0.011418634499999997) (0.011110751000000002) (0.011029193000000007) (0.011119398000000003) (0.011011070999999997) (0.010940904000000015) (0.01105933449999999) (0.011425963499999983) (0.011256889000000006) (0.011204283999999995) (0.011144784000000005) (0.011060088999999995) (0.011127190500000009) (0.011142200500000018) (0.010524373000000004) (0.010533176000000005) (0.010669625999999988) (0.011032119500000007) (0.010486844500000009) (0.010601266499999998) (0.010688370500000016) (0.010660275999999996) (0.010821265999999996) (0.01058986399999999) (0.010996144499999985) (0.01061624450000001) (0.010611646500000002) (0.010752645000000005) (0.010712627000000002) (0.010793702000000002) (0.010637335500000011) (0.010559406000000007) (0.010617183000000016) (0.010663094999999997) (0.010551903000000001) (0.010683970000000001) (0.0108874645) (0.010563794999999987) (0.01062506349999999) (0.010542334) (0.010894711500000001) (0.010848035499999992) (0.010678919499999995) (0.010822158500000012) (0.010892041000000005) (0.010692257499999996) (0.011160789000000004) (0.011051310499999994) (0.010977613499999997) (0.011128017000000004) (0.010867910999999994) (0.011052355) (0.01106344849999999) (0.011123516) (0.011179112000000005) (0.011115963499999992) (0.011258093499999997) (0.01103627) (0.010898820500000017) (0.011205510000000002) (0.011064296500000001) (0.011030452999999996) (0.010778056499999994) (0.010927281999999996) (0.0110294685) (0.010798592500000023) (0.01100685400000001) (0.010898837500000008) (0.011166527999999995) (0.0108365775) (0.011277395999999995) (0.011273039499999998) (0.01138103700000001) (0.010982024000000007) (0.011030454499999995) (0.011152267499999993) (0.011211249999999992) (0.010887649499999999) (0.010678959500000001) (0.010789886499999998) (0.010503231500000001) (0.01083572549999999) (0.010615670999999993) (0.011080916999999996) (0.010687370000000002) (0.01081806149999999) (0.010620169999999998) (0.011026546999999984) (0.010777103999999996) (0.01082562799999999) (0.010862868000000012) (0.0108711435) (0.010692909) (0.010791907000000003) (0.010688124499999993) (0.010507675999999994) (0.010667176999999986) (0.010686851499999997) (0.010815025500000006) (0.010448925999999997) (0.010784232500000004) (0.010650771000000003) (0.010614577499999986) (0.01090874) (0.010816207499999994) (0.0106672835) (0.010956904500000017) (0.010837187999999984) (0.010762937) (0.010746977500000005) (0.0109860455) (0.011112123500000001) (0.011146906999999998) (0.011253201500000004) (0.010893594000000006) (0.010963305499999992) (0.0109058665) (0.01099082350000001) (0.010976750000000007) (0.011176039000000013) (0.011021322) (0.011370437499999983) (0.011009970000000008) (0.011202454) (0.011035904499999999) (0.011120780999999996) (0.01085060950000001) (0.010884066000000012) (0.010995088) (0.01114549599999999) (0.011066859499999998) (0.010866215499999984) (0.011159190999999999) (0.010935058000000011) (0.011157151000000004) (0.011240000499999986) (0.011146996499999992) (0.010996692000000002) (0.010940307999999996) (0.011218550499999994) (0.011091142499999998) (0.010977911499999993) (0.011052793000000005) (0.010470669499999988) (0.0106587645) (0.010579958000000014) (0.010986616500000004) (0.010900932500000002) (0.010831934500000001) (0.010742994500000005) (0.01072743050000001) (0.010846206000000011) (0.010968874000000003) (0.010890869500000011) (0.0109220555) (0.010877835000000002) (0.010685769499999997) (0.010977618999999994) (0.010809941000000003) (0.010857429500000002) (0.010488553499999997) (0.010573708000000001) (0.011215070999999993) (0.010511458999999987) (0.010789331) (0.010693807) (0.010636192500000002) (0.010911573499999994) (0.01080732000000001) (0.010800167500000013) (0.010775397000000006) (0.010894973000000016) (0.010664016499999984) (0.010729362500000006) (0.010997063500000001) (0.011029867000000013) (0.011089867000000017) (0.010903723500000004) (0.011191883999999985) (0.011052102000000008) (0.010965331499999995) (0.011103004000000014) (0.011066191499999989) (0.011253646999999992) (0.011140698000000004) (0.011066867000000008) (0.011232570999999997) (0.011058785500000015) (0.010943459500000002) (0.011226076000000015) (0.011153592500000004) (0.010883438999999995) (0.010837366499999987) (0.010895830999999995) (0.0109310995) (0.010952393500000018) (0.0109514535) (0.010921326000000009) (0.011308916000000016) (0.011024240500000004) (0.011136943499999996) (0.011007793000000002) (0.010926742500000003) (0.011074683499999988) (0.010950830000000009) (0.011092782999999995) (0.010994076500000005) (0.010701172500000009) (0.0108211005) (0.01074198550000001) (0.011037805999999997) (0.010719837999999995) (0.010639524500000011) (0.010873219500000003) (0.010938693999999999) (0.0107934425) (0.010982309999999995) (0.010836276000000006) (0.011154505499999995) (0.010806981000000007) (0.010627121000000003) (0.010687503000000001) (0.010773047999999993) (0.010782496000000003) (0.010876973499999998) (0.0107837665) (0.010705919500000008) (0.010879452499999998) (0.010684667000000009) (0.010773841500000006) (0.011165103500000023) (0.010730899500000002) (0.010825024500000002) (0.010971987000000002) (0.011032917500000003) (0.010765217500000007) (0.0106715805) (0.010784302999999995) (0.01096222999999999) (0.01096464200000001) (0.010883883499999997) (0.010849650500000002) (0.011002000999999997) (0.011038684500000007) (0.010822596500000004) (0.010973914500000001) (0.011384171500000012) (0.011035451500000001) (0.011239715499999997) (0.011024397499999991) (0.011216213000000003) (0.010917456000000006) (0.011222787999999997) (0.01090021799999999) (0.01108574050000001) (0.011195776000000005) (0.010943983500000004) (0.011044667000000008) (0.010836789999999985) (0.011052431999999987) (0.010935862000000005) (0.01091172650000001) (0.011555151500000013) (0.0113333085) (0.011226324499999982) (0.011111541499999988) (0.011159721500000011) (0.011412054500000005) (0.011172017500000006) (0.011142676000000004) (0.010798387000000007) (0.010781223500000006) (0.010760155499999993) (0.010936479999999998) (0.01077035300000001) (0.010595871499999993) (0.010715486499999996) (0.010610224499999987) (0.010955811499999996) (0.010813470500000005) (0.010883431499999999) (0.010907129000000002) (0.010658122000000006) (0.011106677999999995) (0.010566565) (0.010878968499999989) (0.010607605500000006) (0.010633593999999996) (0.010804351500000003) (0.010666336499999984) (0.010643849999999996) (0.010746823500000002) (0.010655718999999994) (0.010788359000000011) (0.010868204000000006) (0.010679927000000006) (0.010757973000000004) (0.010887576499999996) (0.010783096999999991) (0.010664813000000009) (0.010746065499999999) (0.010818755999999999) (0.010931155499999998) (0.011049341500000004) (0.010909111000000013) (0.010822067000000005) (0.011057088500000006) (0.011193465499999986) (0.011152798499999991) (0.010944381499999989) (0.011150687499999978) (0.011112375999999993) (0.010845695500000002) (0.011177141000000002) (0.010944743999999992) (0.01120093400000001) (0.01138807900000001) (0.011273784000000009) (0.011192370000000007) (0.011106216000000002) (0.010897215500000001) (0.01090110250000001) (0.010889009500000005) (0.011107488499999998) (0.011171185) (0.010938316500000017) (0.011239816) (0.011163123499999997) (0.011311675000000007) (0.011060307500000019) (0.011266064499999992) (0.011231026000000005) (0.011244174499999995) (0.011236209999999996) (0.0106829975) (0.010574569500000006) (0.01061306699999999) (0.010896129500000004) (0.010625282) (0.010868297999999998) (0.010712196000000007) (0.010535708500000004) (0.010750622999999987) (0.010655210999999998) (0.010755889000000005) (0.011698436000000006) (0.010716509499999985) (0.010728351499999997) (0.01101741199999999) (0.010700452999999985) (0.010859394500000008) (0.0105735525) (0.010851360500000004) (0.010646213000000002) (0.010613901499999981) (0.010971342499999995) (0.011038092999999999) (0.0105391455) (0.0107748825) (0.010805498999999996) (0.010840337999999991) (0.010625335000000014) (0.010818993999999998) (0.01071801600000001) (0.011089096999999992) (0.010644348499999998) (0.011019397499999986) (0.010876493000000015) (0.010927056500000004) (0.010911975500000004) (0.011093033000000002) (0.011022566500000011) (0.010935286999999988) (0.010914090000000015) (0.010935123000000005) (0.011234472999999995) (0.011191228999999983) (0.011324261000000002) (0.011149747500000001) (0.011066316500000006) (0.011012799000000004) (0.010942715499999991) (0.011235700500000001) (0.01101927400000001) (0.011025139500000003) (0.010958513499999989) (0.011089385999999993) (0.010915670500000002) (0.010956437000000013) (0.010840366500000004) (0.011236784999999985) (0.011236592500000003) (0.010975707999999987) (0.011089310500000005) (0.011206248000000002) (0.011761768999999991) (0.01106620500000001) (0.011355506500000001) (0.010943186999999993) (0.010701777999999995) (0.010628901499999982) (0.010881835000000006) (0.010819773000000005) (0.010593728999999996) (0.010699828999999994) (0.010808117999999978) (0.010633784500000007) (0.01093672100000001) (0.010716559) (0.010535937499999995) (0.0106963115) (0.01072302650000001) (0.010825267) (0.010685312000000002) (0.010676157000000006) (0.010569148) (0.0107233635) (0.010737671000000004) (0.010842970000000007) (0.010769721999999995) (0.010737880500000005) (0.010898972500000007) (0.010910658000000004) (0.010884778999999997) (0.010806441499999986) (0.010687255000000007) (0.011052928000000004) (0.010948621499999991) (0.010689484500000013) (0.010867489000000008) (0.011258410999999996) (0.011199152000000004) (0.0112099965) (0.01085070099999999) (0.011149791500000006) (0.01127425700000001) (0.011025499499999994) (0.010918994499999987) (0.011046921000000001) (0.0110443125) (0.010998830500000015) (0.011058723000000006) (0.011107161000000004) (0.011331821500000006) (0.011308375999999995) (0.011134886999999996) (0.011003950000000012) (0.011043827500000006) (0.011076003499999987) (0.011049895500000004) (0.0111019745) (0.010955244000000003) (0.011064876000000001) (0.011018873999999998) (0.011131509499999984) (0.011189459499999999) (0.011053937) (0.01143971249999999) (0.011141595000000004) (0.011302200999999998) (0.010990472000000001) (0.011055215499999993) (0.010844685000000007) (0.010771748999999997) (0.010730260500000005) (0.010702029500000002) (0.010521773499999984) (0.010801304999999997) (0.010624012499999988) (0.010626751000000004) (0.010879907999999994) (0.010837729500000018) (0.0107353325) (0.010956777000000001) (0.010813757499999993) (0.010709962500000017) (0.010722521999999984) (0.0106691545) (0.010622615500000002) (0.010994813999999992) (0.01057834299999999) (0.010624493499999998) (0.010756381499999995) (0.010426743000000002) (0.010805843499999995) (0.010560183) (0.010866736000000016) (0.010891749999999992) (0.010916963499999988) (0.010910523500000005) (0.011023389000000008) (0.011179255000000013) (0.010797668999999996) (0.010804381499999988) (0.01095011550000001) (0.010962700500000006) (0.011056424499999995) (0.011062824999999998) (0.011140657000000012) (0.010909664000000013) (0.010966523500000006) (0.011145546500000006) (0.011376583999999995) (0.011218834999999996) (0.010913634500000005) (0.010985420499999995) (0.011699913500000006) (0.011225576499999987) (0.011062502999999987) (0.011298387499999993) (0.011037888499999995) (0.011057870500000011) (0.011129227999999991) (0.010989496499999987) (0.011205526999999993) (0.010854080499999988) (0.011278217499999993) (0.011230411999999995) (0.011383376000000014) (0.011089406999999996) (0.01154166899999999) (0.011096776000000003) (0.011530179999999987) (0.011163323500000003) (0.011133208500000005) (0.011147599000000008) (0.01065530549999999) (0.010519149500000005) (0.010647210500000004) (0.010703336999999993) (0.0106558925) (0.010717208000000006) (0.010810002999999999) (0.01073012000000001) (0.010825950499999987) (0.010945909500000003) (0.0106738485) (0.010760569999999983) (0.010780294999999995) (0.010810390000000003) (0.010846921500000009) (0.010696855000000019) (0.01071025199999999) (0.010550622999999981) (0.010723910000000003) (0.010629964000000006) (0.010913748000000001) (0.010764596000000001) (0.01060939050000001) (0.010651689999999991) (0.010733975499999993) (0.010668677000000001) (0.010892300000000008) (0.010617893500000003) (0.010881033999999984) (0.010713339000000002) (0.010555929499999991) (0.010851221999999994) (0.010870249499999998) (0.010808870499999998) (0.011137558000000006) (0.011039539000000015) (0.0110485065) (0.011203940499999995) (0.011011229999999997) (0.010980758999999979) (0.011057633500000011) (0.011157645999999993) (0.011167598) (0.010951895500000017) (0.011140960500000005) (0.011198441999999989) (0.011115565000000008) (0.010988713000000011) (0.01099502749999999) (0.011238892) (0.010877722500000006) (0.010991677500000005) (0.010858870000000007) (0.011214084999999999) (0.011037532000000003) (0.011297445500000003) (0.011039193500000002) (0.011464142499999996) (0.011218354) (0.011116083500000012) (0.011459414500000015) (0.011329441999999995) (0.011146301499999997) (0.01130426200000001) (0.010838340499999988) (0.010561948000000015) (0.010916127500000011) (0.011174460999999997) (0.01062975799999999) (0.0109379) (0.010901830000000001) (0.010612931500000006) (0.010836079499999998) (0.010796543500000005) (0.01072578199999999) (0.010911259499999992) (0.0108883855) (0.011065764999999991) (0.010779509000000007) (0.010625581500000009) (0.01069328750000001) (0.010869825) (0.0108921815) (0.010951715999999986) (0.010547684499999987) (0.011410202000000008) (0.010731740500000003) (0.010578653499999993) (0.010676387999999995) (0.011053123000000012) (0.010838276499999994) (0.010739631) (0.010815861499999996) (0.010912927000000003) (0.010783954000000012) (0.010975603499999986) (0.010861189000000007) (0.010857306499999997) (0.010925635500000003) (0.011171760500000003) (0.011024857499999999) (0.011018630000000015) (0.01100048599999999) (0.01109519149999999) (0.011113797999999994) (0.011187099999999991) (0.011125589500000005) (0.011292831999999989) (0.011067478000000006) (0.010951510499999997) (0.011427612500000003) (0.011302667500000002) (0.011072670999999992) (0.011207941499999999) (0.011215148999999994) (0.011184952999999997) (0.011038574499999995) (0.010824231000000004) (0.011248023999999995) (0.010867683999999989) (0.0113241875) (0.011201565999999996) (0.011181549000000013) (0.011181671000000018) (0.011255304500000007) (0.011525118499999987) (0.011008284500000007) (0.011084098) (0.010581135499999991) (0.010665805000000014) (0.010525699999999999) (0.010673198000000009) (0.01065274899999999) (0.010789885999999985) (0.010561624500000005) (0.010681054499999995) (0.01064174200000001) (0.0106978135) (0.010856336500000008) (0.011042913000000001) (0.010700698499999994) (0.01061168400000001) (0.011051329999999998) (0.0108508425) (0.010647039999999983) (0.010876826499999992) (0.010615337499999988) (0.010890430499999992) (0.010723045) (0.01067243200000001) (0.010988254000000003) (0.010784236500000002) (0.010638164000000006) (0.010596765500000008) (0.010735284000000012) (0.010740931000000009) (0.010863562000000007) (0.010673551500000003) (0.010763626499999998) (0.010885104500000006) (0.011023459) (0.011212863000000003) (0.011323186999999998) (0.011202275999999983) (0.011086304499999991) (0.011144039500000008) (0.010766676500000003) (0.010952352500000012) (0.011283185500000015) (0.011247783999999997) (0.010894013500000008) (0.010914490999999998) (0.011099186499999997) (0.011242176499999978) (0.011027056499999993) (0.011028903999999992) (0.011068608500000007) (0.011082703) (0.01102582399999999) (0.011117020499999991) (0.01114830800000001) (0.01115414699999999) (0.01143019200000002) (0.010981986499999985) (0.011192372499999992) (0.011004924000000013) (0.010951533000000013) (0.01109072500000001) (0.010985358000000015) (0.011147423500000003) (0.011056779000000003) (0.010966961999999983) (0.010746760000000008) (0.010592801500000013) (0.010693313499999996) (0.01083605850000001) (0.010669568500000004) (0.010793090000000019) (0.010631622999999993) (0.010801908000000013) (0.010670156) (0.010856144999999998) (0.010951275499999996) (0.0107942865) (0.010810888500000004) (0.011181971999999998) (0.01099022849999999) (0.010872953500000004) (0.010721324500000004) (0.010774201499999983) (0.010605440999999993) (0.010587563499999994) (0.010751639999999993) (0.010836800500000007) (0.010813128500000005) (0.010834679) (0.0109068425) (0.010804444499999996) (0.011056691999999993) (0.010904368500000011) (0.010748821500000005) (0.010973809000000001) (0.010914694000000003) (0.010986766000000009) (0.011098415) (0.010781896) (0.010908006000000012) (0.010882140999999998) (0.011351668999999995) (0.010977702000000006) (0.011379669999999995) (0.011115597000000005) (0.011035762500000004) (0.010979621500000009) (0.010940839999999993) (0.011141972500000014) (0.011259913999999996) (0.011222886500000001) (0.010960040000000018) (0.011105442000000007) (0.011045019000000003) (0.010956227000000013) (0.010998276500000001) (0.011038120499999998) (0.010976238499999999) (0.011084432000000005) (0.01114930800000001) (0.011041095) (0.011117426) (0.011167750000000004) (0.011300122499999996) (0.011071790499999984) (0.01150955599999999) (0.011083304000000002) (0.01111853900000001) (0.011053759500000024) (0.010519093500000007) (0.010591740000000016) (0.010665351500000003) (0.0106313465) (0.010688454) (0.010696540500000018) (0.010804181499999996) (0.01047823149999999) (0.010572061499999993) (0.010540052499999994) (0.01088992150000001) (0.010599933500000006) (0.010493485499999997) (0.010618218500000012) (0.010678290499999993) (0.01059793149999999) (0.0105910595) (0.010634941999999994) (0.01069842750000001) (0.010696411000000017) (0.010610376000000005) (0.010663127499999994) (0.010445968000000014) (0.010864033500000009) (0.010846565000000016) (0.010592197000000012) (0.010684616499999994) (0.010823712999999999) (0.010742796000000013) (0.010778617000000004) (0.010840977500000001) (0.010911930000000014) (0.010969887999999997) (0.0111651475) (0.010857901000000003) (0.011070689499999994) (0.010936313000000003) (0.010885073000000009) (0.010819758999999998) (0.010871297500000002) (0.010877850499999994) (0.011155480999999995) (0.011045810000000017) (0.011567264499999994) (0.010928239499999992) (0.011029074) (0.010976761500000001) (0.011118715999999987) (0.011075762499999989) (0.011008007500000014) (0.010947046000000002) (0.01083932800000001) (0.010827918499999992) (0.01099821749999999) (0.01097301299999999) (0.011174616999999998) (0.011113744000000023) (0.011150101499999995) (0.011211335000000003) (0.01099405399999999) (0.011614870499999999) (0.01105471949999999) (0.0111625105) (0.011174576999999991) (0.010851209) (0.010676828500000013) (0.0106470605) (0.010549969000000006) (0.010473565000000004) (0.010537297499999987) (0.011045573000000003) (0.010605019499999993) (0.010712672500000006) (0.010973439500000001) (0.010662179000000008) (0.010680939) (0.010585656999999998) (0.010870749500000013) (0.010720843000000008) (0.010719406999999986) (0.010660613999999999) (0.010768805999999992) (0.010948769999999997) (0.010461706000000001) (0.010807616499999992) (0.010574062999999995) (0.010628384500000018) (0.010544046500000001) (0.01073753949999999) (0.010960379500000006) (0.011020015500000008) (0.010893956999999996) (0.010615609999999998) (0.010705971999999994) (0.01085984750000002) (0.010604461999999995) (0.010943931500000004) (0.011249180500000011) (0.010837604) (0.011054437500000014) (0.010932240999999995) (0.01103644849999999) (0.011089006499999998) (0.010936866000000003) (0.011004026499999986) (0.011116222000000009) (0.011300473999999991) (0.010965359500000008) (0.01090688749999999) (0.011271056000000002) (0.011110916000000012) (0.011169689999999996) (0.010808220499999993) (0.011132648999999994) (0.011035002500000002) (0.01108587150000001) (0.011008492500000008) (0.010884362499999994) (0.010926438499999996) (0.010999981499999992) (0.010974137499999995) (0.011215220999999997) (0.011208278499999988) (0.010904595500000017) (0.011009585500000002) (0.011096938000000015) (0.011006464000000007) (0.01131148600000001) (0.010714368500000002) (0.010575523999999989) (0.010800508) (0.01068332000000001) (0.010951312000000019) (0.010727439500000005) (0.010878640500000009) (0.010677646000000013) (0.010704048000000008) (0.010642143500000006) (0.010648005500000002) (0.010781970500000002) (0.010816859500000012) (0.010716602000000006) (0.010614619500000005) (0.010701643999999996) (0.010838934499999994) (0.010781596000000004) (0.010826614500000012) (0.010674455000000013) (0.010854195499999997) (0.010695922999999996) (0.010848467) (0.01081782249999999) (0.010949135499999998) (0.010978484999999996) (0.010696430500000007) (0.010819046999999984) (0.01065592) (0.010939827499999999) (0.0107182205) (0.010722131999999995) (0.010942801500000002) (0.011097549000000012) (0.011145182000000003) (0.010926561500000001) (0.010955817000000007) (0.011281265499999998) (0.010853401000000013) (0.0108884925) (0.011051267000000004) (0.010898957499999987) (0.011117523500000004) (0.011108673500000013) (0.011258596499999982) (0.011036043499999981) (0.011235475999999994) (0.011089373) (0.01082934549999999) (0.010984598500000012) (0.011066599999999996) (0.011143969500000003) (0.010882943000000006) (0.0111267605) (0.011003969000000002) (0.010943086500000018) (0.0109569905) (0.011177771000000003) (0.010926758999999994) (0.011028625499999986) (0.010951930500000012) (0.011117676500000007) (0.011008577500000005) (0.0111677835) (0.010959718000000007) (0.010471324500000004) (0.010886372500000005) (0.010652790500000009) (0.010691058500000003) (0.010572767999999982) (0.010783112499999997) (0.01096313900000001) (0.01071946750000001) (0.010863327499999992) (0.010917589499999991) (0.010787235500000006) (0.010874352000000004) (0.010785261000000004) (0.01080358549999999) (0.011021457499999998) (0.010750448999999981) (0.010489708499999986) (0.010596675499999986) (0.010850237499999998) (0.010621459499999986) (0.010752694999999993) (0.010569517500000014) (0.010606841500000005) (0.010921397499999999) (0.010889367499999997) (0.011037520000000009) (0.010868470499999991) (0.011132701499999995) (0.0107902795) (0.010955645000000014) (0.010716985000000012) (0.010997042000000012) (0.010999344999999994) (0.010785964999999995) (0.0111716615) (0.010975555499999998) (0.011126400000000009) (0.010940143000000013) (0.011030164499999995) (0.011158136499999999) (0.011040869500000008) (0.01105231050000001) (0.011139537500000005) (0.010995223999999998) (0.011148959000000014) (0.010934029499999998) (0.011502396999999998) (0.010927924499999991) (0.010927853999999987) (0.010924039499999996) (0.0109086625) (0.010863307999999988) (0.010951741499999987) (0.0111591375) (0.01087145149999999) (0.010957923500000008) (0.010974657500000012) (0.011182110499999995) (0.011155289500000012) (0.011645282499999993) (0.011375814499999998) (0.010968197499999999) (0.011258374500000001) (0.010607625999999995) (0.010783926) (0.010925687500000003) (0.010447573500000015) (0.0106865815) (0.010583917999999984) (0.010396968499999992) (0.010567307999999997) (0.010881561499999998) (0.010734549999999995) (0.010584085500000007) (0.011412145999999998) (0.010720210000000008) (0.010715734000000005) (0.011123355000000015) (0.010597260999999997) (0.010615770999999996) (0.010695178499999985) (0.010561376499999997) (0.0107573995) (0.010745476500000004) (0.01054907849999999) (0.010584823500000007) (0.011058083999999996) (0.010642598999999989) (0.010609093499999986) (0.010871355) (0.010758694) (0.010639271500000005) (0.010862845999999995) (0.010665981000000005) (0.010936554500000015) (0.010977462999999993) (0.010984673999999986) (0.010954878000000001) (0.011026712000000008) (0.010978805000000008) (0.01097380050000002) (0.010921560999999996) (0.010892827499999994) (0.010822725500000005) (0.010933861999999989) (0.011094110000000004) (0.010873968999999997) (0.011060049500000002) (0.011004596999999991) (0.01106277500000001) (0.011045662499999997) (0.010937216999999999) (0.010898736499999992) (0.011121726499999998) (0.010741487500000008) (0.011158383500000008) (0.010812371500000015) (0.0108209145) (0.01114567200000001) (0.010937120500000008) (0.01131492549999999) (0.011149014499999985) (0.011124710499999996) (0.011289033500000004) (0.01126389550000001) (0.011181918999999998) (0.011067116500000002) (0.010820937000000017) (0.010688173499999995) (0.010666617499999989) (0.010662493500000009) (0.010681429499999992) (0.01056088999999999) (0.010700433999999995) (0.010783336000000004) (0.010583618499999989) (0.010729612999999999) (0.010682114999999992) (0.011085456499999993) (0.010723000999999996) (0.010655158999999997) (0.010749962000000002) (0.010818686999999994) (0.010765667999999992) (0.010772728500000009) (0.01089874149999999) (0.01059075000000001) (0.010749908000000002) (0.010557935500000004) (0.0105407535) (0.0107428725) (0.010709648500000016) (0.010567064000000001) (0.010709851500000006) (0.010617364000000004) (0.010957330500000015) (0.0106128355) (0.010828786499999993) (0.010641320499999996) (0.011024866499999994) (0.011395842999999989) (0.011178262499999994) (0.010791722500000003) (0.010877417) (0.01090326500000001) (0.010897194999999998) (0.010850519999999989) (0.010996892499999994) (0.011054303500000001) (0.011021129500000004) (0.011106859499999996) (0.011336975499999985) (0.010931312000000012) (0.011366384499999993) (0.011119715000000002) (0.010813010499999998) (0.01108990750000001) (0.010916556499999994) (0.01107707999999999) (0.010714545000000006) (0.01091014650000001) (0.010871849499999989) (0.011150554000000007) (0.011169669499999993) (0.011074157500000015) (0.011083875999999993) (0.011028373000000008) (0.011010684499999993) (0.011113006500000008) (0.011286241000000002) (0.011086675500000004) (0.010500327000000004) (0.010747494999999996) (0.010526397999999992) (0.010770568000000008) (0.010544606999999998) (0.010807629499999999) (0.010768567499999993) (0.01106678500000001) (0.010757970999999991) (0.011048287000000004) (0.010761549500000009) (0.010896408999999996) (0.010614499) (0.010662909499999998) (0.011017205000000002) (0.010856050499999992) (0.010622511500000001) (0.01070932849999999) (0.010907573000000004) (0.010544391) (0.0106817555) (0.010609425000000006) (0.011244162500000002) (0.010896806500000009) (0.010831456000000003) (0.010746805999999998) (0.011032830000000007) (0.010890640500000007) (0.010698629500000001) (0.010722253000000015) (0.01084784200000001) (0.010815895000000006) (0.010955767000000019) (0.011275727499999999) (0.01080660500000001) (0.01116978049999999) (0.010830141000000001) (0.010827448000000003) (0.010860504499999993) (0.011057310500000014) (0.011058079999999998) (0.011213901999999998) (0.011243210500000017) (0.011209489000000017) (0.011376000000000011) (0.011163824000000003) (0.011227500500000001) (0.011156822999999996) (0.011134200499999997) (0.010957071499999999) (0.011133207999999992) (0.010873991499999985) (0.01116118499999999) (0.010823284000000002) (0.011001785) (0.010809150000000003) (0.011070381000000004) (0.01134154200000001) (0.011276844499999994) (0.01092999900000001) (0.011188554500000003) (0.011066682000000008) (0.011141173000000018) (0.011038042499999998) (0.010893468999999989) (0.010574081500000013) (0.010692525000000008) (0.010755460499999994) (0.010829479000000017) (0.010691687500000005) (0.010858597000000011) (0.010579764499999991) (0.01066808900000002) (0.011145584) (0.010720481500000004) (0.010915241999999992) (0.010711812000000001) (0.011000089000000005) (0.010839729500000006) (0.011242521000000005) (0.01073014450000001) (0.010641032500000008) (0.010644016000000006) (0.010695971499999998) (0.010748529499999993) (0.010542093499999988) (0.010941383499999999) (0.011531705500000003) (0.010998562000000003) (0.010993136500000014) (0.010862166000000006) (0.011141601000000001) (0.010806016500000001) (0.010938955999999986) (0.010931769499999994) (0.010682156000000012) (0.011200764000000002) (0.010959015000000003) (0.011083030000000008) (0.010872944500000009) (0.010944581499999995) (0.010828606500000004) (0.010828244) (0.011040128500000024) (0.011130140499999996) (0.011148764500000005) (0.011005571000000006) (0.011139344500000009) (0.011202232500000006) (0.011255734500000003) (0.011000389) (0.0111921455) (0.010973077499999997) (0.011031681999999987) (0.010864353500000007) (0.011466998999999992) (0.0109101385) (0.011063111) (0.011160486499999997) (0.011081820000000006) (0.011343762500000007) (0.011202177999999993) (0.011110883999999988) (0.011116348999999998) (0.011218982999999988) (0.01105023649999999) (0.010959088000000006) (0.011125289999999996) (0.010395581000000001) (0.01070540099999999) (0.010849588500000007) (0.011286999000000006) (0.010742756499999992) (0.011041454000000006) (0.010689301499999998) (0.010662850500000001) (0.010600587000000009) (0.010693300000000003) (0.010655729000000003) (0.010577801000000012) (0.01101784900000001) (0.010695453499999993) (0.011047202499999992) (0.010708602999999997) (0.010823890500000016) (0.010639567499999988) (0.0106650425) (0.010720122000000012) (0.010690071999999995) (0.010874891000000012) (0.010496070499999996) (0.010660934499999997) (0.010781029999999997) (0.011128779500000005) (0.011052719000000003) (0.01078294049999999) (0.010988100000000015) (0.011037026000000005) (0.0115264385) (0.011072712999999998) (0.010914922999999993) (0.010733891500000009) (0.0108823755) (0.011138212500000008) (0.010975907000000007) (0.010873567000000015) (0.011113985500000007) (0.010876152) (0.0109488965) (0.010893846999999984) (0.011165893499999996) (0.011054014000000001) (0.011041837500000012) (0.010951229500000007) (0.011173123999999993) (0.0110589725) (0.010960853499999992) (0.010932260499999999) (0.011007661500000002) (0.011163513000000014) (0.010962008999999995) (0.010825243000000012) (0.010980014999999996) (0.0109542995) (0.011273914499999996) (0.011168388000000001) (0.011448526000000014) (0.011080979000000005) (0.011286799) (0.011342185500000004) (0.011133030500000016) (0.011148236500000006) (0.010702415000000007) (0.010805697500000017) (0.010746899000000004) (0.011056213499999995) (0.010792215000000008) (0.011150224) (0.012794624000000004) (0.010549369500000003) (0.010957884000000001) (0.010833352000000004) (0.010680604999999996) (0.010834748500000005) (0.010848859000000002) (0.011035160500000002) (0.010692392499999995) (0.010970782000000012) (0.01077652400000001) (0.010901820499999992) (0.010634780499999996) (0.010714379499999996) (0.010734379500000002) (0.0106403115) (0.010603194999999996) (0.010718962499999998) (0.01078771349999999) (0.010656249499999992) (0.010944046999999985) (0.010987193000000006) (0.0107657855) (0.010942563999999988) (0.010748164000000004) (0.010937571999999993) (0.011133814999999991) (0.011083602999999997) (0.011061145499999994) (0.011130366000000003) (0.01087138850000001) (0.010840104500000003) (0.011248435500000015) (0.010965778999999995) (0.011069382000000003) (0.011144473000000002) (0.011382817500000003) (0.011135909499999999) (0.011195927999999994) (0.0109591765) (0.011020105000000002) (0.0110840185) (0.01119892950000001) (0.011040135500000006) (0.011119534999999986) (0.011146264000000003) (0.0109480505) (0.010928376500000003) (0.011048371500000001) (0.010994004000000002) (0.011081596499999999) (0.011190823000000003) (0.011209050499999998) (0.011174532000000001) (0.011040773500000003) (0.011097783499999986) (0.011544585999999996) (0.01110799500000001) (0.01063364) (0.010709532999999993) (0.010726715999999983) (0.010806474499999996) (0.010503772500000008) (0.010961844999999998) (0.010633180499999992) (0.010825698999999994) (0.010905532499999995) (0.010562903999999998) (0.010880407499999994) (0.011007516499999995) (0.010946520000000001) (0.010745618999999998) (0.010866279999999992) (0.01087785949999999) (0.010750724500000003) (0.010646434999999996) (0.010608844500000006) (0.010661595999999995) (0.010587208) (0.010785285500000005) (0.010522650000000008) (0.01068902799999999) (0.010730758500000007) (0.010902448499999981) (0.010662454000000002) (0.010744906499999998) (0.010692742499999977) (0.011033758000000005) (0.01099448850000001) (0.010971358499999986) (0.011023982500000001) (0.011161491499999995) (0.011352431499999996) (0.011178984500000017) (0.01110547549999999) (0.011162395000000006) (0.010886546499999997) (0.0109183095) (0.011078981499999987) (0.011283652000000005) (0.010912839000000008) (0.011432677000000002) (0.011377082499999996) (0.011411090999999998) (0.011226134499999998) (0.011429031999999992) (0.011109208999999995) (0.013035047499999994) (0.011014380000000004) (0.011015931000000007) (0.011113539499999991) (0.0110365085) (0.011214713000000001) (0.010937159999999987) (0.011338085000000012) (0.011410288500000004) (0.011353448500000002) (0.011201774499999997) (0.011565684000000007) (0.011195487000000004) (0.011198224999999992) (0.01102220000000001) (0.011121034999999987) (0.010778492) (0.010888316999999995) (0.010644070000000005) (0.010634538999999998) (0.010601633499999999) (0.010801833499999997) (0.010580634999999991) (0.01074283349999998) (0.01090396199999999) (0.010999143000000003) (0.0107295585) (0.010767225500000005) (0.010744237000000004) (0.010776333999999999) (0.01105195099999999) (0.010571590000000006) (0.010738011500000005) (0.010870994500000009) (0.010775177499999997) (0.010820754500000002) (0.01077445149999999) (0.010694100999999998) (0.010819845999999994) (0.010950096500000006) (0.011138742499999993) (0.011142302499999993) (0.010838201999999991) (0.010852834500000005) (0.010785352499999998) (0.011137234499999996) (0.010714329499999994) (0.01114655099999999) (0.011130090499999981) (0.0110704405) (0.011103763500000002) (0.01115321200000001) (0.010969488999999999) (0.011017534999999981) (0.011224038000000006) (0.0115668045) (0.010934030499999997) (0.011167870499999982) (0.010939478999999988) (0.011165366000000024) (0.011114426999999996) (0.010968271999999987) (0.011409135) (0.010812397499999987) (0.011074052000000015) (0.011048588000000012) (0.011015949999999997) (0.011117496500000018) (0.011142915500000003) (0.010925258000000007) (0.011279719499999993) (0.011092396500000004) (0.011355867499999991) (0.011185780000000006) (0.01115904999999999) (0.011083641500000005) (0.011311062499999996) (0.011119687500000017) (0.011327093999999996) (0.010902612499999992) (0.010779921999999997) (0.010729570500000007) (0.010530070000000002) (0.010764505499999993) (0.010629057499999997) (0.010504782000000004) (0.010664112500000003) (0.0108504205) (0.010682940000000002) (0.010722234499999997) (0.010679958999999989) (0.010883445000000005) (0.010729368000000017) (0.010733628500000023) (0.010678494499999996) (0.010604495499999991) (0.010470842999999994) (0.010383644499999997) (0.010679233999999996) (0.0109363715) (0.010742474500000002) (0.010636113000000003) (0.010547282000000005) (0.010767576499999987) (0.010567803500000014) (0.010727341500000001) (0.010786007) (0.01084094599999999) (0.010692712500000007) (0.010712912000000005) (0.010707458000000003) (0.010961299000000008) (0.011142480999999996) (0.010753922499999999) (0.01115039100000001) (0.011132771000000014) (0.011034472999999989) (0.011025807500000012) (0.011092739000000004) (0.011021688000000016) (0.01107290250000001) (0.010937643999999996) (0.011665903500000019) (0.011260085999999989) (0.010842737000000005) (0.011099565500000005) (0.011107829999999999) (0.0109472595) (0.011012647) (0.011047473000000016) (0.010804597999999999) (0.010971530000000007) (0.01101487000000001) (0.010790086000000018) (0.010859271000000004) (0.011001256500000015) (0.0112851635) (0.011120754999999996) (0.011259141) (0.011111547500000013) (0.011146752499999996) (0.01147567799999999) (0.011385146999999998) (0.010726716000000011) (0.010871751999999998) (0.010626158999999996) (0.010614081499999997) (0.010633311000000006) (0.010674355499999996) (0.0108719865) (0.010688799999999998) (0.010843056000000004) (0.010644583499999999) (0.010750280999999987) (0.010813202499999994) (0.010665282999999998) (0.010627873999999995) (0.01060223199999999) (0.010918839000000014) (0.010648442999999994) (0.010585655999999999) (0.010817386499999998) (0.010534025000000016) (0.010710260999999999) (0.010678194999999988) (0.010631689) (0.010622481000000003) (0.010560180499999988) (0.010880573000000004) (0.010801636500000017) (0.010655583499999996) (0.010682843499999997) (0.010559865500000001) (0.010687408499999995) (0.010600732000000002) (0.011061425) (0.010929115500000003) (0.011227260000000003) (0.010939562000000014) (0.011192869500000008) (0.01106355149999999) (0.010913638500000003) (0.01083360350000001) (0.011123651999999998) (0.010923309500000006) (0.010934143999999993) (0.010860303000000002) (0.010984690000000005) (0.011150288999999994) (0.011221690999999992) (0.011335106499999997) (0.010999736999999996) (0.01095473100000001) (0.010948380000000008) (0.010914594000000014) (0.011068062500000003) (0.010994478000000002) (0.010963766) (0.011039337999999996) (0.011119538000000012) (0.011078335500000008) (0.011025386000000012) (0.011025685499999993) (0.011256228500000007) (0.011892871499999999) (0.011187032) (0.011091080000000003) (0.0106669645) (0.0109708565) (0.01076487999999999) (0.010881089999999996) (0.010873291500000007) (0.010791330500000001) (0.010704978000000004) (0.011035812000000006) (0.011159122999999993) (0.01082820100000001) (0.010928022499999981) (0.0106777755) (0.010670335500000003) (0.010826355499999996) (0.010918270499999994) (0.01087511799999999) (0.010908229500000005) (0.010872823000000004) (0.01099978900000001) (0.010821551999999998) (0.010848132999999996) (0.010957857999999987) (0.010705844500000006) (0.010744646999999996) (0.010649400000000003) (0.010684292500000012) (0.010918111999999994) (0.010711228000000003) (0.010778191500000006) (0.010783668499999996) (0.010958941500000013) (0.010815273) (0.011043844999999997) (0.010923747499999997) (0.011135027000000006) (0.010958064500000003) (0.010809052) (0.01084222750000001) (0.010974059000000008) (0.011146469500000006) (0.011402882499999989) (0.011163307999999997) (0.011164617000000002) (0.01118636150000002) (0.011162065499999999) (0.01108965050000002) (0.011046573500000004) (0.010988903000000008) (0.010928445000000009) (0.010997085500000003) (0.0110082975) (0.010799825499999985) (0.011108705499999996) (0.010884617) (0.011013925999999993) (0.011049340500000004) (0.01134831) (0.011497261000000009) (0.0109285935) (0.011251980499999995) (0.010975906999999993) (0.01111143199999999) (0.011084934000000005) (0.011141494000000016) (0.010650667000000003) (0.010616944999999989) (0.010668988000000004) (0.010694207499999997) (0.010753165500000009) (0.010836522000000001) (0.01091827699999999) (0.010672165000000011) (0.010938227999999994) (0.010863605999999998) (0.010926182500000006) (0.010815376999999987) (0.01063771500000002) (0.010778101499999998) (0.010888530999999993) (0.010852999500000002) (0.010847627499999998) (0.010653318500000009) (0.010823132999999999) (0.01062432449999999) (0.010681896999999996) (0.010678225500000013) (0.010815212000000005) (0.010736633499999995) (0.010912302999999998) (0.010992710000000003) (0.010964685500000002) (0.010867864000000005) (0.010861532000000007) (0.0108405065) (0.010826406999999996) (0.010934408000000007) (0.011095492499999998) (0.011111485500000004) (0.010935933000000009) (0.01114635500000001) (0.01085215249999999) (0.010832161000000007) (0.011356533999999988) (0.010921409999999993) (0.011425458000000013) (0.011173678500000006) (0.011077033000000014) (0.010990418500000002) (0.011351643500000008) (0.011225687500000012) (0.011108836499999997) (0.0109895515) (0.011083008500000005) (0.011054290000000008) (0.011214433499999996) (0.010861430000000005) (0.010995581500000004) (0.011209521000000014) (0.010994208500000005) (0.011044935999999991) (0.011283501000000001) (0.011413923500000006) (0.011119820999999988) (0.011282236499999987) (0.011196287500000013) (0.01107942549999999) (0.011004536500000009) (0.010991486000000009) (0.010518016500000005) (0.010616555) (0.010659554499999987) (0.0104142245) (0.0107794965) (0.010580534500000002) (0.01112261149999999) (0.010588378499999995) (0.010581714000000006) (0.010881578499999989) (0.010755639000000011) (0.010776878500000003) (0.01081881250000001) (0.010754891000000003) (0.010607411999999983) (0.0108981135) (0.010475643000000007) (0.010658934499999995) (0.010558539999999991) (0.010799786999999991) (0.010571981000000008) (0.010566264500000005) (0.010606113) (0.010716841000000005) (0.010832357) (0.01097963049999999) (0.010665924499999993) (0.010692010000000002) (0.010692039500000014) (0.010847497499999997) (0.010619101499999992) (0.0106294215) (0.011245618499999999) (0.010950912999999993) (0.010964172000000008) (0.0110305485) (0.011045014500000006) (0.01102961600000002) (0.011051278499999997) (0.011097118500000003) (0.011153523999999998) (0.010929076999999995) (0.01137297100000001) (0.010950901999999998) (0.01110113) (0.011059104499999986) (0.011162771500000002) (0.011235109999999993) (0.01104986550000002) (0.010941639500000003) (0.010926050500000006) (0.011003283500000002) (0.011085194999999992) (0.011242866000000018) (0.011090187500000001) (0.011048508499999998) (0.011276784499999998) (0.010953388999999994) (0.011041610999999993) (0.01122878599999999) (0.011098082999999995) (0.011274906000000001) (0.011174721999999998) (0.011083569500000001) (0.010517716499999996) (0.010606679499999994) (0.010775417999999995) (0.010811047000000004) (0.010591960500000011) (0.01079092899999999) (0.010796328499999994) (0.010631875999999998) (0.010713567000000007) (0.010769515999999993) (0.0107036395) (0.010924757499999993) (0.010659611499999985) (0.010882359999999994) (0.01093080199999999) (0.010836588500000008) (0.010790153999999996) (0.010608949500000006) (0.010562409500000008) (0.010654251000000003) (0.010832734499999996) (0.010719431499999987) (0.01075798650000001) (0.010565749499999999) (0.011406337500000016) (0.010894084500000012) (0.010787470999999993) (0.010737449999999996) (0.010999011000000003) (0.011024291000000006) (0.010818985500000003) (0.01093354299999999) (0.010816131499999992) (0.010967838999999993) (0.010813799499999999) (0.011004120000000006) (0.010796740499999999) (0.011045334500000004) (0.010922256500000005) (0.010954715500000003) (0.010924186999999988) (0.011080752499999999) (0.011176658999999992) (0.011454450500000005) (0.011135303999999985) (0.01134666799999999) (0.011124007000000005) (0.011073669000000008) (0.011100394) (0.010907828999999994) (0.0110644305) (0.01099296100000001) (0.011030218499999994) (0.010760799000000001) (0.011062278499999995) (0.011047842000000002) (0.011089000000000002) (0.011301624999999996) (0.0113291155) (0.011179965500000014) (0.011189356500000011) (0.011208507999999992) (0.011386834999999984) (0.011135975500000006) (0.010697349000000009) (0.01068465149999999) (0.010836654000000001) (0.010656745999999995) (0.010686915000000005) (0.010637773500000003) (0.010567008000000003) (0.010656743499999982) (0.01064001399999999) (0.010669903000000008) (0.010995185500000004) (0.010785153500000005) (0.010780060000000008) (0.010663710500000007) (0.010653217500000006) (0.01061123) (0.010742325499999983) (0.010629029500000012) (0.010605847500000001) (0.010592377) (0.010641488000000004) (0.010577207499999991) (0.010637518499999998) (0.010686038500000009) (0.010807440000000015) (0.0107908585) (0.010707705000000012) (0.010661888499999994) (0.010714985499999996) (0.010843664000000003) (0.011095408499999987) (0.01074895749999999) (0.011083954999999993) (0.010966123500000008) (0.010877863500000001) (0.011066903500000003) (0.011092088) (0.010805871999999994) (0.01114232250000001) (0.011125656499999984) (0.011079303499999985) (0.010969973000000008) (0.011026949000000008) (0.011343604999999993) (0.011221682499999996) (0.011220609499999992) (0.011035546499999993) (0.010967771500000015) (0.010940489499999997) (0.011054096499999999) (0.011034826000000011) (0.011269355999999994) (0.011074227000000006) (0.011019869500000015) (0.010980649999999995) (0.010809536999999994) (0.011231029000000003) (0.011177676500000011) (0.011171137500000011) (0.011352249500000008) (0.0112091265) (0.011196924999999996) (0.011453643) (0.011008500000000004) (0.010638332) (0.011179658999999995) (0.010984651999999998) (0.010824076500000002) (0.010643450999999998) (0.010697199000000004) (0.010668189000000008) (0.010699900500000012) (0.010939185500000018) (0.01063579299999999) (0.010731562) (0.010775158999999992) (0.010860438499999986) (0.010991440000000005) (0.010653334) (0.010939320000000002) (0.01056589849999999) (0.010604085999999999) (0.010642141999999993) (0.01082817350000001) (0.010645328499999995) (0.010693908500000002) (0.010606270500000015) (0.01069990350000001) (0.010742718500000012) (0.010813316999999989) (0.010813945500000005) (0.010800822500000015) (0.010830640500000002) (0.0111150795) (0.011065106499999991) (0.010981803499999998) (0.011308653500000002) (0.011069431000000018) (0.011414569) (0.011043377499999993) (0.011071600000000001) (0.011105323500000014) (0.011569794500000022) (0.01075388100000002) (0.011461755000000004) (0.011021670999999997) (0.011306248000000005) (0.011023031000000003) (0.011327462999999996) (0.011193315499999995) (0.011223065000000004) (0.010960298000000007) (0.010933887000000003) (0.01117327400000001) (0.011181074499999999) (0.010986331499999988) (0.010815538) (0.010841925000000002) (0.010918400499999995) (0.011215467000000007) (0.011209404500000006) (0.011124084000000006) (0.011068699000000001) (0.011350060999999995) (0.011261855000000015) (0.011110399499999993) (0.011145618499999996) (0.01131474099999999) (0.010473102499999998) (0.010718943999999994) (0.010584198000000003) (0.010657303500000007) (0.0105139135) (0.010523189999999988) (0.010778699000000003) (0.010649275499999986) (0.010512027999999993) (0.010939053500000004) (0.010587261) (0.010695667999999992) (0.010633324) (0.010757159500000016) (0.010701434499999996) (0.010899077499999993) (0.010556963000000016) (0.010477654500000003) (0.01056932699999999) (0.010737461000000004) (0.010739142499999993) (0.010635951500000004) (0.011142607999999998) (0.010662040500000011) (0.011384268999999989) (0.010808055999999996) (0.010635049000000008) (0.010782364500000002) (0.010683126000000001) (0.01065241950000001) (0.010711788499999986) (0.010737797499999993) (0.011026374500000005) (0.010921408500000007) (0.010889838999999998) (0.010958731499999999) (0.01102155349999999) (0.010885980000000017) (0.0108255555) (0.010792107499999995) (0.011027272000000005) (0.011346415499999998) (0.010840736500000003) (0.01090568900000001) (0.011122075500000009) (0.010956900499999991) (0.011077601000000006) (0.011263396500000009) (0.010907268999999997) (0.010955361499999997) (0.011130912000000007) (0.01088618949999999) (0.010774127000000008) (0.011336886500000004) (0.011028097) (0.010873055999999992) (0.011196116999999992) (0.011458469999999998) (0.010906820500000011) (0.011203924500000018) (0.011080679999999996) (0.011202797) (0.011418784000000015) (0.011184272000000009) (0.010752830000000005) (0.010634087000000014) (0.010772414499999994) (0.010686015500000007) (0.010545887000000004) (0.010796453999999997) (0.010623951000000006) (0.010527989500000001) (0.0107585065) (0.010674693499999999) (0.010910765000000003) (0.010686757500000019) (0.010854627500000005) (0.010866655000000003) (0.0110360335) (0.010874784499999998) (0.010697224500000005) (0.010650675499999998) (0.010790550999999995) (0.010640393000000012) (0.010616160999999999) (0.010909939000000007) (0.010697451499999996) (0.010911762999999991) (0.010655420500000012) (0.01094669849999999) (0.010776431999999989) (0.010888761499999997) (0.010983857000000014) (0.010878990000000005) (0.010858152999999995) (0.010787909499999984) (0.011312879499999998) (0.011032368499999987) (0.011195636000000009) (0.011042387499999987) (0.01111201249999999) (0.010905033000000008) (0.01103730750000001) (0.011287933000000014) (0.011224691999999994) (0.011420936000000007) (0.011142379999999993) (0.011258510499999999) (0.011170425999999983) (0.010969997500000009) (0.011232996000000009) (0.011173092999999995) (0.011187948000000003) (0.010881845499999987) (0.0112470145) (0.0109222655) (0.011104222999999996) (0.010852576500000002) (0.011171461000000008) (0.010804136000000006) (0.011374775500000017) (0.011231252999999983) (0.010975492500000003) (0.01123301900000001) (0.011244673499999996) (0.011041408500000002) (0.01114129500000001) (0.011025179999999982) (0.01058195649999999) (0.01057407199999999) (0.010870856499999998) (0.01063834050000001) (0.010653788499999997) (0.010553937) (0.010682651500000015) (0.010522323499999986) (0.01081309300000001) (0.010754193999999995) (0.010856742999999988) (0.010685734500000002) (0.0109143295) (0.010716780499999995) (0.010892043500000004) (0.010940607500000005) (0.010626196500000004) (0.010684825999999994) (0.010919327500000006) (0.010911812000000007) (0.010458453500000006) (0.010720956500000003) (0.010676289499999991) (0.010545697499999993) (0.010799147999999995) (0.011024701499999998) (0.010754618500000007) (0.011051566499999999) (0.010763974999999995) (0.010757050000000018) (0.010887110000000005) (0.010689825499999986) (0.0112368095) (0.011131082499999986) (0.010855112) (0.011092732999999994) (0.011108044999999997) (0.010923528500000002) (0.010882028500000002) (0.010954454500000002) (0.011096741499999993) (0.011360166000000005) (0.01112249550000001) (0.0109879945) (0.010841091499999997) (0.010930498999999996) (0.011164682499999995) (0.010922848000000013) (0.011338803999999994) (0.011037111000000002) (0.01107939699999999) (0.010854270000000013) (0.010944448999999995) (0.010927640499999988) (0.010881136) (0.010924344500000016) (0.011185310000000004) (0.011074241500000012) (0.0111582395) (0.011131554500000002) (0.01138773650000001) (0.0112671825) (0.010977482499999996) (0.011306472000000012) (0.010707439499999999) (0.010742682000000003) (0.010766646000000005) (0.010744607500000003) (0.01082055550000001) (0.010738315500000012) (0.010724879999999992) (0.010908869000000002) (0.010798835999999992) (0.010886790999999993) (0.010910685500000003) (0.010769723499999995) (0.01076407950000001) (0.010944719999999991) (0.01095412200000001) (0.01084483) (0.0106247555) (0.01077678550000001) (0.010846357500000015) (0.010569487000000002) (0.010516429999999993) (0.010602779999999992) (0.010690207000000007) (0.01075602149999999) (0.010989223000000006) (0.010874258500000011) (0.010848134499999995) (0.010884889000000009) (0.0108948725) (0.010851081499999984) (0.010999850999999991) (0.010763769499999992) (0.010920984500000008) (0.011241282499999991) (0.011370067500000011) (0.010969001500000006) (0.011157749499999994) (0.010933324499999994) (0.011263659500000009) (0.010978806500000021) (0.01101688549999999) (0.011151504999999992) (0.011081921500000008) (0.011102169500000009) (0.011397065999999997) (0.011266853000000007) (0.011067128999999995) (0.011038657499999993) (0.011097012500000003) (0.011068413000000013) (0.010923625000000006) (0.010863651000000002) (0.011322078) (0.0111666245) (0.011321450499999997) (0.011075324000000011) (0.011031919500000001) (0.011087034999999995) (0.011038865999999994) (0.01092196949999999) (0.011155508500000008) (0.011343954500000003) (0.011352260999999988) (0.010939159500000017) (0.010787513999999998) (0.010793021) (0.010579885499999997) (0.0106031865) (0.010559486500000007) (0.010783670499999995) (0.010678876500000004) (0.010687025999999988) (0.010825598499999978) (0.010744046999999993) (0.011125195500000004) (0.010850761) (0.010635315499999992) (0.010696000999999997) (0.010903734499999998) (0.01064788450000001) (0.010700008999999996) (0.010693743999999991) (0.010536229500000008) (0.0107920715) (0.010632374000000014) (0.010480484499999998) (0.010632997000000005) (0.010713491500000005) (0.01071764) (0.010855773999999999) (0.010613297000000008) (0.01095669199999999) (0.010678272000000016) (0.010909756999999992) (0.010701122499999993) (0.010640610500000008) (0.010901587000000018) (0.011030589000000007) (0.010933438000000004) (0.010975028999999997) (0.010945885000000002) (0.010830092999999999) (0.011062062500000011) (0.010945593500000003) (0.010950545999999992) (0.011144968000000005) (0.011308884000000005) (0.011087872999999998) (0.011282671499999994) (0.011134198999999997) (0.010945300500000005) (0.011063405000000012) (0.010912943000000008) (0.010912444499999993) (0.011024479500000003) (0.010741094500000006) (0.010870136000000002) (0.011079490000000011) (0.010951278000000009) (0.011058637499999996) (0.011389190000000007) (0.010970138000000004) (0.011445997) (0.011248031000000006) (0.011117901999999999) (0.011043545499999988) (0.011159757000000006) (0.010963543999999992) (0.010812251999999994) (0.0109576495) (0.010726363500000002) (0.0104741015) (0.01088576699999999) (0.010611414999999999) (0.0109275655) (0.01091415300000001) (0.01082198849999999) (0.01083377399999999) (0.010899461999999999) (0.01075455900000001) (0.010714415000000005) (0.010781038499999993) (0.010786275999999997) (0.0108834825) (0.01080748250000002) (0.010719576499999994) (0.0108686115) (0.010530257500000001) (0.010523433499999998) (0.010871124999999995) (0.010627989500000004) (0.0107745925) (0.010894444000000017) (0.0107275795) (0.010731194499999985) (0.011030902500000009) (0.010755669499999995) (0.010827029000000002) (0.010629192999999995) (0.010799458500000012) (0.010894406499999995) (0.01087769949999999) (0.011150252999999999) (0.010904594500000017) (0.010999255999999999) (0.011146854000000012) (0.010913429500000002) (0.011213346500000013) (0.011118886499999994) (0.010865334500000004) (0.011120933499999985) (0.011594420999999994) (0.011442769500000005) (0.011342526000000006) (0.01105167750000001) (0.011092453000000002) (0.01092178549999999) (0.010914997499999995) (0.010920482499999995) (0.010778612999999992) (0.010956282499999997) (0.010939671499999998) (0.011109744000000005) (0.011015657999999998) (0.011252773000000008) (0.011342828999999999) (0.011260389499999982) (0.01121008100000001) (0.011311871000000001) (0.012116424) (0.011106619499999984) (0.011284173500000008) (0.010674534999999985) (0.010727339000000002) (0.010837492500000018) (0.010818374500000005) (0.010746992499999997) (0.010738782000000002) (0.010847178999999998) (0.0108701675) (0.010773035) (0.010957764500000022) (0.010865377500000009) (0.010814859999999996) (0.010641046500000001) (0.010883794999999988) (0.010785180000000005) (0.011180899999999994) (0.010694731999999985) (0.01070770750000001) (0.010725747499999994) (0.010850527500000012) (0.01088604650000001) (0.010813746000000013) (0.010792505499999994) (0.010532022000000016) (0.011023171499999998) (0.010775699) (0.010918831500000004) (0.01082725000000001) (0.010941528499999992) (0.010940817500000005) (0.010894082499999999) (0.010748123999999984) (0.010874372499999993) (0.01100681449999999) (0.010983563000000002) (0.01103240150000001) (0.010924851999999985) (0.011137268000000006) (0.010970833499999985) (0.010903709500000011) (0.011205432000000015) (0.010956742999999991) (0.011017354999999993) (0.011074671499999994) (0.011322582499999997) (0.011217058000000002) (0.010965285499999991) (0.011232489499999998) (0.010868237500000003) (0.011154719999999993) (0.011012048499999982) (0.010990333000000005) (0.011025675999999998) (0.011238670000000006) (0.011013349999999991) (0.012983439999999999) (0.011345712000000008) (0.011260297000000002) (0.011168350499999993) (0.011159377499999998) (0.0111905105) (0.011132818500000002) (0.011378752000000006) (0.010928564000000002) (0.010775984500000016) (0.010782288000000001) (0.010717368500000005) (0.010601820499999998) (0.01069299550000001) (0.010773575499999993) (0.01067679149999999) (0.010698478999999997) (0.011135822000000004) (0.011023109500000003) (0.010862847499999995) (0.010913260999999994) (0.010920810499999989) (0.010885938499999998) (0.010922730500000005) (0.010889840499999984) (0.010753640000000009) (0.010781746999999994) (0.010803831) (0.010620300999999999) (0.010483115500000015) (0.010579720499999987) (0.010725898999999997) (0.010636701999999998) (0.010860874500000006) (0.011034981) (0.010880816000000001) (0.010804779) (0.010740708500000015) (0.010883298499999985) (0.010859295500000005) (0.010769339000000003) (0.011173542500000008) (0.01101392150000001) (0.011177625999999996) (0.011192954000000005) (0.0109403005) (0.010987833999999988) (0.0110952785) (0.010834499999999997) (0.011366134) (0.011282308000000005) (0.011139801000000005) (0.011051132000000019) (0.011232907) (0.011335083999999995) (0.011185943000000004) (0.01133576700000001) (0.010962178500000017) (0.011191152499999996) (0.010975673500000019) (0.011108117) (0.010955873500000005) (0.011396226499999995) (0.011069440000000014) (0.011007786500000005) (0.011327393000000005) (0.01124828650000001) (0.011770440499999993) (0.011090540999999995) (0.011214911500000008) (0.011234448499999994) (0.011146913500000008) (0.011220332500000013) (0.010626247000000005) (0.010698804999999992) (0.010702566499999996) (0.010650855999999986) (0.010834728000000002) (0.01068894200000002) (0.01078196549999999) (0.010527422500000022) (0.010645227500000007) (0.011058709) (0.010879398999999998) (0.01055900600000001) (0.010925308500000022) (0.010791448499999995) (0.010636406500000015) (0.010680389999999998) (0.010775985999999987) (0.01055276899999999) (0.010847579999999996) (0.010878582999999997) (0.010667180499999998) (0.010527888499999999) (0.010847267500000007) (0.010489334000000003) (0.010674919000000005) (0.010709235999999997) (0.011044088000000007) (0.010699884500000006) (0.010858741500000005) (0.010650326000000002) (0.010745656500000006) (0.010674308000000007) (0.010850428499999995) (0.011100010000000007) (0.011117776999999995) (0.010999674499999987) (0.011074803500000008) (0.010897090999999998) (0.011078253499999996) (0.0111341145) (0.010958901999999993) (0.011130365500000003) (0.0113226055) (0.01101622699999999) (0.011188070499999994) (0.011017023500000014) (0.011149027000000006) (0.011094009500000002) (0.010960641999999993) (0.011198906000000008) (0.010921113499999996) (0.011045629000000001) (0.011022790000000005) (0.010926371000000004) (0.011180725000000002) (0.010870129999999992) (0.011319603500000011) (0.011075736500000002) (0.010984095999999999) (0.011044005999999995) (0.0110052645) (0.0111644085) (0.010859984000000017) (0.010973015500000002) (0.010717999500000006) (0.01069165200000001) (0.010818663999999992) (0.010738448499999997) (0.010608525500000007) (0.01092219550000001) (0.010582389999999997) (0.010658514999999993) (0.010742890000000005) (0.011021359499999994) (0.010900545000000011) (0.010837000999999999) (0.010916935499999988) (0.010758882499999997) (0.010732064499999985) (0.010697064000000006) (0.010748663000000006) (0.010572752000000005) (0.010659325000000011) (0.01067886350000001) (0.010718637500000003) (0.010805695000000004) (0.010925292500000003) (0.010958808) (0.010889323499999992) (0.011169848999999996) (0.010814717500000015) (0.01107340350000001) (0.010887973999999995) (0.010730296000000014) (0.010758060500000013) (0.010665754999999985) (0.010886211499999993) (0.010962770999999996) (0.010916538500000003) (0.01087065949999999) (0.010848941) (0.011056604499999984) (0.010812192000000012) (0.010973358999999988) (0.011158525500000016) (0.011208086000000006) (0.011227875999999998) (0.011028257999999999) (0.011247419000000008) (0.011156074000000016) (0.011053827499999988) (0.011328191500000015) (0.011198956999999995) (0.011076297500000012) (0.010838025499999987) (0.011071462000000004) (0.011107841999999993) (0.011207590000000003) (0.01085489549999999) (0.011107069999999997) (0.011504129500000002) (0.011161010499999999) (0.011064184000000032) (0.011029094999999989) (0.011220769000000005) (0.011166740499999994) (0.01119993200000001) (0.011241694499999982) (0.010591845999999988) (0.010724517499999989) (0.0108602795) (0.01071379850000001) (0.010479920000000004) (0.010622908999999986) (0.010718320500000003) (0.010792089000000005) (0.010897026000000004) (0.010685823000000011) (0.010640510999999991) (0.010727439499999991) (0.010679470499999996) (0.010932965000000003) (0.010633400500000001) (0.010801275000000013) (0.010832953499999992) (0.010649003000000004) (0.010515662000000009) (0.010970033000000004) (0.011198367999999986) (0.010688940499999994) (0.010669571000000003) (0.010608420999999993) (0.010866406999999995) (0.010894940000000006) (0.010909906999999996) (0.010761335999999996) (0.010869468499999993) (0.010851492000000004) (0.010842803000000012) (0.010931152000000013) (0.010920641500000008) (0.010961870499999984) (0.01096509200000001) (0.011092981000000002) (0.010981960499999985) (0.010945641000000006) (0.01094757099999999) (0.011363213999999996) (0.01115712499999999) (0.011251316000000011) (0.010859705499999997) (0.01103008200000001) (0.010950935499999995) (0.011383194) (0.011300026500000004) (0.010966104499999976) (0.010958800000000005) (0.010952471000000005) (0.01089198899999999) (0.010975368999999985) (0.010921951499999999) (0.011025388999999997) (0.011138165999999991) (0.010895983999999997) (0.011058837500000016) (0.011297310500000005) (0.010977143499999995) (0.011344764999999979) (0.011109532000000005) (0.011169188999999968) (0.011008527500000032) (0.011263554500000009) (0.01082946600000001) (0.010650824500000003) (0.010688260500000005) (0.010750667000000005) (0.010801205500000008) (0.010697785999999987) (0.010795376999999995) (0.010646285499999991) (0.010602767999999999) (0.01096435300000001) (0.010735767499999993) (0.011837394000000001) (0.010666917499999998) (0.010960599000000001) (0.010878052999999999) (0.011144403999999997) (0.010716057000000001) (0.010830710500000007) (0.010544975499999998) (0.010771677500000007) (0.010698096500000004) (0.010761514) (0.010768086499999996) (0.010659984000000011) (0.010799676999999994) (0.010858807999999998) (0.010948188000000011) (0.010663602499999994) (0.010843168) (0.010776901499999991) (0.010945970499999999) (0.010733795000000018) (0.011178479500000005) (0.011117876999999998) (0.011175769000000002) (0.010958337499999984) (0.010966450000000016) (0.011114354499999993) (0.011114384500000005) (0.011398707000000008) (0.010964298999999997) (0.011187970499999991) (0.011066957499999974) (0.010956923500000007) (0.011126222000000005) (0.01116136349999998) (0.011163738000000006) (0.011310626000000018) (0.011278472000000012) (0.011065763500000006) (0.011232555499999991) (0.011109448499999994) (0.011138758999999998) (0.011158594999999993) (0.011106908500000012) (0.010905922499999998) (0.011156023000000001) (0.011233121499999998) (0.011173890999999991) (0.010990334000000018) (0.010852984499999982) (0.011292955499999993) (0.010997555000000006) (0.011288422500000006) (0.010541770999999991) (0.010555536000000004) (0.010946016500000003) (0.010693448000000008) (0.01074787150000002) (0.010501659499999996) (0.010823339500000001) (0.010517961999999992) (0.010613473500000012) (0.010752719499999994) (0.01066344000000001) (0.010711651000000003) (0.010901635500000006) (0.010967178500000008) (0.010792545000000014) (0.010534310500000005) (0.01061206599999999) (0.010631251000000008) (0.010744741500000002) (0.010693423000000007) (0.010620552500000005) (0.010609922999999993) (0.010554438499999999) (0.010840070000000007) (0.010938028000000002) (0.010680623) (0.010700646999999994) (0.0107192745) (0.01069673900000001) (0.010827133999999988) (0.010849579999999998) (0.011003683500000014) (0.01085854850000001) (0.010901398499999992) (0.010816118999999999) (0.011260972500000008) (0.0108733055) (0.011268261499999987) (0.010857576500000007) (0.011161444500000006) (0.011056398500000009) (0.01118454399999999) (0.010947313) (0.011256620499999995) (0.010940399000000003) (0.011099336000000001) (0.011197423499999998) (0.011237719000000007) (0.010845631999999994) (0.011122691500000004) (0.01110319400000001) (0.010764946499999997) (0.010894392500000002) (0.01108564649999999) (0.010887604000000009) (0.011021109000000001) (0.011131652500000006) (0.010913693500000016) (0.011084634999999995) (0.011130847999999999) (0.011085453499999995) (0.011086813000000001) (0.011012036499999989) (0.010997608500000006) (0.010942522499999996) (0.010780043500000017) (0.010792555500000009) (0.010786331499999996) (0.010613923499999997) (0.010573002999999997) (0.010633022000000006) (0.0106641435) (0.010885122999999997) (0.010565689999999989) (0.011099281499999988) (0.010883836499999994) (0.010708494499999999) (0.010861682499999997) (0.010725716999999996) (0.010802010499999987) (0.010737205500000013) (0.0106572895) (0.010876630000000012) (0.010635346500000004) (0.01076696499999999) (0.010982013500000012) (0.010893105) (0.010609965000000013) (0.011079087500000001) (0.01076885050000001) (0.010800406499999998) (0.01105642850000002) (0.010918911000000017) (0.010749263500000009) (0.010617118499999995) (0.010758573499999993) (0.0110330535) (0.011110863500000012) (0.010754427999999996) (0.010959331499999989) (0.011190892499999994) (0.011033515500000007) (0.011051613500000015) (0.011021205500000006) (0.011425101500000007) (0.010996778500000012) (0.011122573999999996) (0.011111743500000007) (0.011507371000000002) (0.01094174149999999) (0.011312929999999985) (0.010877070500000002) (0.010987511999999991) (0.010915902000000005) (0.010881077999999988) (0.010991461500000008) (0.011031946000000015) (0.011072970499999987) (0.010796279000000006) (0.011151697000000002) (0.010910781999999994) (0.01129368) (0.011152726500000015) (0.011384218499999987) (0.010999970499999998) (0.011318055000000007) (0.011361465500000001) (0.011277049500000011) (0.010660129000000018) (0.010646426) (0.010720370000000007) (0.010737516000000003) (0.010771431499999998) (0.010896600999999992) (0.010567933000000002) (0.010794276500000005) (0.010651003999999992) (0.010914591000000015) (0.010672962500000008) (0.010616203500000004) (0.010781884999999991) (0.010681804000000003) (0.010858293500000005) (0.010843022499999994) (0.010659982499999998) (0.01087671400000001) (0.010523319000000003) (0.010680948499999995) (0.010810987999999994) (0.010555323000000005) (0.010614344999999997) (0.010738184000000012) (0.010752524500000013) (0.010724594500000004) (0.010750835) (0.010633294999999987) (0.010799841000000004) (0.010703750999999997) (0.010656388000000003) (0.010580636500000004) (0.010902297500000005) (0.01099231099999999) (0.011092310500000008) (0.010947424499999997) (0.010912136000000003) (0.010873224) (0.011130581) (0.011198235) (0.01090685050000001) (0.010833967) (0.01109408399999999) (0.011194155999999997) (0.010854674500000008) (0.011153041500000002) (0.011061366500000017) (0.011252293999999996) (0.010932893999999999) (0.01100864900000001) (0.011211842) (0.011075477500000014) (0.011116412000000006) (0.011024779499999998) (0.01129304149999999) (0.010872167999999988) (0.011038502999999991) (0.011025248000000015) (0.011000327500000004) (0.011058871999999997) (0.010952243499999986) (0.011014513000000017) (0.011024189000000004) (0.011468649499999997) (0.010993238000000002) (0.010821966000000002) (0.010648244000000001) (0.010817771500000004) (0.010536155000000005) (0.010804117500000002) (0.010695024499999997) (0.010645490500000007) (0.010734365999999995) (0.010593139500000001) (0.011155284500000001) (0.010863161499999996) (0.010679631499999995) (0.010678291999999992) (0.01093760499999999) (0.010699091500000008) (0.010672350999999997) (0.010943012500000002) (0.010543270499999993) (0.010912236999999991) (0.010751098) (0.010862689999999994) (0.010891136999999995) (0.010830999999999993) (0.010880417500000003) (0.010772290000000004) (0.010731238500000004) (0.010867528000000015) (0.011067198) (0.010948011999999993) (0.010954551500000007) (0.010811652000000005) (0.010859383500000014) (0.011199171500000007) (0.011324609) (0.010887680499999997) (0.011121753999999984) (0.011007422500000003) (0.011072062999999993) (0.010835401500000008) (0.011018597500000005) (0.011243254500000008) (0.011199200499999992) (0.011396688499999988) (0.011212415000000003) (0.01096916449999999) (0.010945018) (0.011046188500000012) (0.011045675500000018) (0.010820234500000012) (0.011175203500000008) (0.011039366999999994) (0.011058306000000004) (0.011082401999999991) (0.011457547499999998) (0.011061173500000007) (0.011097959500000004) (0.011034016499999993) (0.011159334499999993) (0.011422046500000019) (0.01124597649999999) (0.011230252999999996) (0.01107309400000002) (0.011262352000000003) (0.010604654000000005) (0.010700237000000001) (0.010561900500000013) (0.010701202000000007) (0.01052255449999999) (0.010749935000000002) (0.0107730355) (0.010627491500000003) (0.010722280500000014) (0.010601652500000003) (0.010573995000000003) (0.010619851999999999) (0.010779920499999984) (0.010800166) (0.010657464000000005) (0.010772927500000015) (0.010791969499999998) (0.010573115500000008) (0.01071677900000001) (0.011243422000000003) (0.0108066795) (0.010642940000000017) (0.010611027499999995) (0.010514038000000003) (0.010948558499999997) (0.010632920000000004) (0.011031672000000006) (0.010904622999999988) (0.010832453000000006) (0.01073593099999999) (0.010590821000000014) (0.010845465499999998) (0.011153848000000008) (0.010824617499999994) (0.011212630500000001) (0.011026880000000003) (0.011052818999999992) (0.011056216000000008) (0.011173055500000015) (0.010831337999999996) (0.010983511500000001) (0.011011902000000004) (0.01098773800000001) (0.010939856000000012) (0.011050260000000006) (0.011272519500000008) (0.011089080000000001) (0.011057387000000002) (0.010810690000000012) (0.010945906499999991) (0.010835527999999997) (0.010931512000000004) (0.011094558000000004) (0.011019602000000003) (0.010940658500000006) (0.010942936) (0.011136772000000003) (0.011067735499999995) (0.01124964149999999) (0.011014461000000003) (0.011081629499999995) (0.011270648500000008) (0.011020014999999994) (0.010980759000000007) (0.010656041000000005) (0.010745210500000005) (0.010747166000000002) (0.010817514) (0.010494391000000006) (0.010731573999999994) (0.010781578499999986) (0.01060584349999999) (0.010765530499999995) (0.010886527500000007) (0.010752413500000002) (0.010680189000000007) (0.010893594999999992) (0.011109423999999993) (0.010823466500000004) (0.010856815500000006) (0.010790531500000006) (0.010788117) (0.010634328999999998) (0.010591785499999992) (0.010554844999999993) (0.010595095999999998) (0.010696283999999986) (0.01066315000000001) (0.010955221000000001) (0.01067730850000001) (0.01086587) (0.010872444000000009) (0.011029933499999992) (0.010739530499999997) (0.010754695999999994) (0.0106332965) (0.011081412999999998) (0.0109564875) (0.011209561999999992) (0.010991806999999992) (0.011492163000000014) (0.010850397499999997) (0.011122052000000007) (0.010965772999999998) (0.010924243) (0.011093736000000007) (0.011064744500000001) (0.010971199499999987) (0.011091880999999998) (0.011090334999999993) (0.010998564000000002) (0.011190536000000001) (0.011096714500000007) (0.01112927150000001) (0.011241156000000002) (0.0110500075) (0.010998316499999994) (0.011115464499999991) (0.011191734499999995) (0.01088175899999999) (0.011462341000000001) (0.0112051445) (0.011100059499999995) (0.011123649499999999) (0.011093451000000004) (0.010907999500000015) (0.011312988499999996) (0.011037667000000001) (0.01089677900000001) (0.010783459999999995) (0.01065698150000001) (0.010502721499999992) (0.011168017000000002) (0.010885012999999999) (0.01052603299999999) (0.01051488199999999) (0.010896564000000011) (0.010712184) (0.010831644000000001) (0.01109072300000001) (0.010773766000000004) (0.010706841000000009) (0.010615839000000002) (0.010693252) (0.010742169499999996) (0.01069514449999999) (0.010590062499999997) (0.010620849500000001) (0.010941993499999997) (0.010670651499999989) (0.01059516449999999) (0.01058197150000001) (0.010614203500000002) (0.010543511000000005) (0.010840990500000008) (0.010853059000000012) (0.010754722500000008) (0.010764919499999998) (0.010724044500000002) (0.010710860999999988) (0.011038794000000005) (0.011140770999999994) (0.010879840500000001) (0.010851724999999993) (0.01086142150000001) (0.01112608399999998) (0.010858729000000011) (0.011111039000000017) (0.011453418999999992) (0.011089701000000007) (0.011013077999999996) (0.010909231000000005) (0.011187876000000013) (0.010842486499999998) (0.010974401500000008) (0.011154922999999997) (0.011378399499999997) (0.010997872500000005) (0.011193650999999999) (0.010886807999999998) (0.010938010999999997) (0.011251449499999996) (0.010956572499999997) (0.011130117999999994) (0.011248306) (0.011302256999999996) (0.011177413499999997) (0.011498776500000002) (0.011104768000000015) (0.011217710000000006) (0.011076348499999986) (0.011083240999999994) (0.010601033499999996) (0.010888269500000006) (0.010822494500000016) (0.01065643799999999) (0.010654044999999987) (0.010570204499999986) (0.0107967915) (0.010566787499999994) (0.010905758500000001) (0.010975828000000007) (0.0107719805) (0.010885988500000013) (0.010951108000000001) (0.010639824999999992) (0.010797099000000004) (0.010750466999999986) (0.010772530000000002) (0.010951075500000004) (0.010763698000000002) (0.010681536499999991) (0.010659730999999992) (0.010858259000000009) (0.011258834499999995) (0.010690910499999984) (0.010821582499999996) (0.01096619950000001) (0.010835685499999997) (0.010750236999999982) (0.010747615500000002) (0.010781074500000001) (0.010936171500000008) (0.0106040575) (0.010949892500000002) (0.010933454000000009) (0.011105628000000006) (0.01101414349999999) (0.01104480699999999) (0.01101405200000001) (0.010948327999999993) (0.010802242000000004) (0.010900901000000005) (0.011050987499999998) (0.0109597565) (0.011097985500000004) (0.01126332699999999) (0.01098710650000001) (0.011149179499999995) (0.011085297500000008) (0.011182808000000002) (0.010993816999999989) (0.010980676999999994) (0.011194112000000006) (0.010813844000000003) (0.010987993499999987) (0.011137801999999988) (0.01102077600000001) (0.011044640999999994) (0.010983198) (0.011412418000000008) (0.01109962249999999) (0.010922234000000003) (0.0112346755) (0.010994938999999995) (0.011130197499999994) (0.010686271499999997) (0.010845603500000009) (0.010826832500000008) (0.010606667) (0.0108758885) (0.010665693500000004) (0.010571136500000008) (0.01053586799999999) (0.010793511500000005) (0.010970104000000008) (0.010922004999999999) (0.010776227999999985) (0.010971212999999994) (0.010721742999999992) (0.010755091000000022) (0.010841247999999998) (0.010693276000000002) (0.010608205999999995) (0.010604327499999996) (0.010548996000000005) (0.010741112499999997) (0.010619833500000009) (0.01055697600000001) (0.010623699) (0.0106312925) (0.010671963999999992) (0.01074108) (0.010882833499999994) (0.010711477000000011) (0.010604622499999994) (0.010622224499999985) (0.010833183499999996) (0.010989431499999994) (0.011082610000000007) (0.011172118000000009) (0.010922247999999996) (0.011048759499999991) (0.010922212) (0.011045332500000005) (0.011009934499999999) (0.011007596999999994) (0.011081170000000015) (0.011094256999999996) (0.011350159000000012) (0.011008660000000003) (0.011280465500000003) (0.010934580999999999) (0.011310221500000009) (0.010834972499999998) (0.01113914249999999) (0.010881615500000011) (0.011022845000000003) (0.010881476000000001) (0.010823262) (0.010919302000000006) (0.0108694815) (0.010879047500000016) (0.011335221499999992) (0.0113353925) (0.011310483499999996) (0.01127418899999999) (0.011418895999999998) (0.011124579499999995) (0.011061358499999993) (0.010591155500000005) (0.01093926399999999) (0.0104894435) (0.010548252999999994) (0.010681154499999998) (0.010535719500000013) (0.010671287000000002) (0.010905277000000005) (0.010821893499999999) (0.010959600499999986) (0.010628969000000002) (0.010886463499999999) (0.010642824499999995) (0.0108566135) (0.010910849999999986) (0.010630322999999997) (0.010884773000000014) (0.010756470500000004) (0.010813029500000015) (0.010690094999999997) (0.010607445999999993) (0.010768803500000007) (0.010800231499999993) (0.010976549499999988) (0.010606250500000011) (0.010624232999999983) (0.0109503175) (0.010837601499999988) (0.01064664550000001) (0.010829214000000004) (0.010739121000000004) (0.01078556650000001) (0.011108521499999996) (0.010984768500000006) (0.011079237000000006) (0.010874885) (0.011047605999999988) (0.010827350999999999) (0.010872503500000005) (0.011093813999999994) (0.011192662500000006) (0.011004996999999989) (0.011311380999999995) (0.011250293999999994) (0.011203830999999997) (0.0112960015) (0.012790466000000014) (0.011042583000000009) (0.011121514500000013) (0.011307617000000006) (0.011251043500000002) (0.011313512499999998) (0.01109410949999999) (0.011038453500000003) (0.010807302500000004) (0.011337681000000016) (0.01108670049999999) (0.011442769000000005) (0.011109571499999998) (0.011256845000000001) (0.011398424500000004) (0.011206912) (0.011146587) (0.011184230999999989) (0.010882961999999996) (0.010571545000000016) (0.010879306500000005) (0.010899347000000018) (0.010741344500000014) (0.011146935499999996) (0.010530913000000017) (0.010818769000000006) (0.010740768499999997) (0.010837368) (0.010946508999999993) (0.010859124999999997) (0.010856036) (0.01103839899999999) (0.010809396499999999) (0.010768152000000003) (0.011154190499999994) (0.010708702000000014) (0.010615521000000003) (0.010935472500000001) (0.010676932) (0.010783721999999996) (0.010662528500000004) (0.01084027400000001) (0.010688030000000001) (0.010681662000000022) (0.010954313499999993) (0.010820228500000001) (0.010786747999999999) (0.010797343500000015) (0.010930170000000003) (0.010989596500000004) (0.011071025999999998) (0.01126698999999999) (0.010930576499999997) (0.011010217000000003) (0.01091818750000001) (0.011114446499999986) (0.011124610499999993) (0.010856479000000002) (0.010990918500000002) (0.011054142500000003) (0.0112015065) (0.011200946500000003) (0.011034648500000008) (0.011257202999999993) (0.011369619000000011) (0.011357112500000002) (0.010972915) (0.010898522499999994) (0.011287602500000007) (0.011111334000000014) (0.010916961500000003) (0.01100254299999999) (0.010911332999999995) (0.011018142500000008) (0.011258767999999988) (0.011196607999999997) (0.011540041499999987) (0.011116161) (0.011199720499999982) (0.011239093499999991) (0.011443237999999994) (0.011169505999999996) (0.011002292499999997) (0.010765022499999985) (0.010725553999999984) (0.01115931199999999) (0.010746423500000005) (0.010766690500000009) (0.010793578999999998) (0.010734921000000008) (0.010984885000000014) (0.010732897500000005) (0.010927884000000013) (0.011218048000000008) (0.010664349000000004) (0.010854141499999997) (0.010776594500000014) (0.011183432000000007) (0.010567427500000004) (0.010603374499999998) (0.010804371500000007) (0.010860014500000001) (0.010762694499999989) (0.010962514000000007) (0.010946769499999995) (0.010711651000000003) (0.010966862000000008) (0.010744642499999998) (0.010925981500000001) (0.010940235500000006) (0.011156751000000006) (0.011024482000000002) (0.01074984200000001) (0.011037895000000006) (0.010916018) (0.01123977150000001) (0.011014535500000006) (0.011137228999999998) (0.011021265500000002) (0.011186633500000001) (0.011340392000000005) (0.010872019999999996) (0.011336631) (0.010989067500000005) (0.011091077000000005) (0.010972376499999992) (0.011204727499999997) (0.011170996500000002) (0.0110959375) (0.010924671499999997) (0.01090092949999999) (0.011040973999999995) (0.011218417999999994) (0.010807373500000009) (0.01100647099999999) (0.0109155695) (0.011035479499999987) (0.011242878500000011) (0.011161494500000008) (0.011226787000000002) (0.011224671000000006) (0.011375602000000012) (0.011383452499999988) (0.011383938999999996) (0.011142438000000005) (0.01113370050000001) (0.01045829849999999) (0.010641150500000002) (0.010604337000000005) (0.010661999500000005) (0.010975371499999997) (0.010724528999999997) (0.010699306000000006) (0.010514290999999995) (0.010682155499999998) (0.010547455000000011) (0.010637160500000006) (0.010837330499999992) (0.010807592500000018) (0.010738366999999985) (0.010926093999999997) (0.010867237499999988) (0.010584948499999997) (0.010656012999999992) (0.011044033499999995) (0.010748731499999997) (0.01063236549999999) (0.010726893000000001) (0.010727277500000007) (0.010662448500000005) (0.011042825499999992) (0.010951241499999986) (0.010905983999999994) (0.010778837) (0.010686381999999994) (0.010755765000000014) (0.010744478500000001) (0.010884440500000009) (0.010977251500000007) (0.010944815499999996) (0.010997133499999992) (0.011202433999999997) (0.011299772) (0.010953205000000008) (0.010802672499999999) (0.010811860000000006) (0.011403639000000007) (0.011045626499999989) (0.011087173500000005) (0.010967052000000005) (0.01126980000000001) (0.011264006500000007) (0.011036544499999995) (0.0110827285) (0.010972908000000003) (0.011104877499999985) (0.011021651499999993) (0.011113571999999988) (0.010886643500000001) (0.011276653499999997) (0.011264941) (0.01083972300000001) (0.011139598500000014) (0.01115492600000001) (0.0112199085) (0.011057378000000007) (0.0113299335) (0.011097979500000008) (0.011219333999999997) (0.011097334499999986) (0.0111018175) (0.010579511999999985) (0.010657631999999986) (0.010698244999999995) (0.010624782999999999) (0.010754359000000005) (0.01069553849999999) (0.010773960000000013) (0.010844799500000002) (0.0107271865) (0.011055401999999992) (0.010742031999999999) (0.010855815500000005) (0.011011103999999994) (0.011005378499999982) (0.010829774999999986) (0.010809802999999993) (0.01075525599999999) (0.010748269000000005) (0.010626084999999993) (0.010712) (0.010590672999999995) (0.01077025849999999) (0.010587325499999994) (0.011074851499999996) (0.011000248500000004) (0.010701700499999994) (0.010894916500000004) (0.010879634500000013) (0.011011298000000003) (0.010893668999999995) (0.01097352950000001) (0.011119017499999995) (0.010970169499999988) (0.010996516000000012) (0.010989705500000002) (0.01099452150000002) (0.011005925000000014) (0.011438201000000009) (0.010942202000000012) (0.010976652000000003) (0.011380978000000014) (0.011075486500000009) (0.010788619999999999) (0.011066912000000012) (0.011585491000000003) (0.011162473499999992) (0.011118299499999998) (0.010874729) (0.011225327999999993) (0.011022970999999993) (0.010972398000000008) (0.010939144499999984) (0.010999773000000004) (0.01136060350000001) (0.010876157500000011) (0.011510896000000007) (0.011113248500000006) (0.011526553500000009) (0.011254314500000001) (0.010975644500000006) (0.011273667000000015) (0.011021806500000009) (0.011041749999999989) (0.010908664999999984) (0.010650345000000006) (0.010656837000000002) (0.010804373000000006) (0.010751611500000008) (0.010789648499999999) (0.010774564) (0.010780950499999997) (0.010837299000000009) (0.010778047499999985) (0.010723931500000006) (0.0106994235) (0.010783968500000005) (0.010800374499999987) (0.010904317499999996) (0.010844002499999991) (0.010706444499999995) (0.010552553999999992) (0.010750074000000012) (0.01072310500000001) (0.010813484000000012) (0.01115737850000001) (0.010640453499999994) (0.010840158500000002) (0.011029657499999998) (0.010775083500000018) (0.010604320000000014) (0.0109082905) (0.010724595999999989) (0.010772451999999988) (0.010768950499999999) (0.010740938000000005) (0.010896141499999998) (0.010982111500000016) (0.010930227) (0.011128990500000005) (0.010861168000000004) (0.011060130999999987) (0.010863987000000006) (0.011093768500000004) (0.011214272000000011) (0.011329158999999991) (0.011055529999999994) (0.010956147999999985) (0.011251374500000008) (0.011171300999999995) (0.011268272499999996) (0.011050988500000011) (0.011116989000000008) (0.011329506500000003) (0.011046248999999994) (0.011033041999999993) (0.0109442545) (0.010973861500000001) (0.011139124999999986) (0.011242810999999991) (0.011474636499999996) (0.011062829999999996) (0.011353778999999994) (0.011344389499999996) (0.011456095499999985) (0.011113007500000008) (0.011009064499999999) (0.010962024) (0.010562803499999995) (0.010838550000000016) (0.010639216499999993) (0.010653048999999998) (0.01065825849999999) (0.010755210500000001) (0.010676853) (0.010885023999999993) (0.010681973999999983) (0.010988983499999994) (0.010953638000000016) (0.010702233000000005) (0.010749222000000003) (0.010794273000000007) (0.01106578350000001) (0.010947829500000006) (0.010756578500000002) (0.011110316500000009) (0.010847039000000003) (0.010637440999999997) (0.010726560499999996) (0.010738991000000003) (0.01075964850000001) (0.01091860850000001) (0.011106278999999983) (0.010814643499999999) (0.010898636500000003) (0.010808449499999997) (0.01085786050000001) (0.01091417750000001) (0.010750978500000008) (0.010992715) (0.011180916999999999) (0.011189350000000015) (0.01103041099999999) (0.010999099499999998) (0.010866822499999998) (0.011013623499999986) (0.010973784) (0.010921444500000002) (0.011120732999999994) (0.011011479500000004) (0.011054516) (0.011177829) (0.011349196500000006) (0.011043560500000008) (0.011317854499999988) (0.0112831595) (0.0109459685) (0.01090638100000002) (0.011169522500000015) (0.011268832999999992) (0.011176738000000006) (0.011230933499999984) (0.011083205000000013) (0.011180094500000001) (0.011429786500000011) (0.011079490000000011) (0.011337030999999997) (0.011642049000000002) (0.011289625499999983) (0.011300920499999992) (0.010897603499999992) (0.011085503499999996) (0.010695822500000007) (0.010605369000000003) (0.010787314999999992) (0.010916568000000001) (0.010642558499999996) (0.010748644999999987) (0.010590783500000006) (0.010479984000000012) (0.010745653499999994) (0.010905370499999997) (0.010913564499999986) (0.010674105499999989) (0.0107878545) (0.010568888999999998) (0.011241651500000005) (0.010707677999999998) (0.0108983775) (0.010744608999999988) (0.010645074000000004) (0.010547333500000006) (0.010744490999999981) (0.010767331500000005) (0.010738766999999996) (0.010679612000000005) (0.011107840499999994) (0.010815054000000004) (0.011044404000000008) (0.010603167999999996) (0.010738353000000006) (0.010591211499999989) (0.010824802500000008) (0.010827872500000002) (0.011176773000000015) (0.011127670500000006) (0.010790422500000008) (0.01080303199999999) (0.010899986) (0.011208761999999997) (0.010716346000000002) (0.010905257000000002) (0.010958848499999993) (0.010844340999999993) (0.010970647) (0.011002416000000001) (0.010928838999999982) (0.011014841999999997) (0.011261523999999995) (0.011492123500000007) (0.011051753999999997) (0.011013873499999993) (0.010873213999999992) (0.011004618999999993) (0.010999211000000009) (0.010886155499999994) (0.011086333000000004) (0.011024995499999996) (0.01115875799999999) (0.011280907000000007) (0.010925949000000004) (0.011110792999999994) (0.011165230999999998) (0.011082133500000008) (0.011704291000000006) (0.011156754000000005) (0.01055102749999999) (0.010506062499999996) (0.010776973500000009) (0.010620795999999988) (0.010510930500000001) (0.01055089649999999) (0.0107636225) (0.010691683499999993) (0.01075334850000001) (0.010889135500000008) (0.010909499500000003) (0.010664551999999994) (0.010807610499999995) (0.01108326300000001) (0.011122708500000009) (0.010747003000000005) (0.010708923499999995) (0.010522659000000004) (0.010704696000000014) (0.010866728499999992) (0.010689456500000014) (0.010687595000000008) (0.010547184000000001) (0.010780123000000003) (0.010866417000000003) (0.010992903999999998) (0.010763287999999996) (0.010693800500000003) (0.010689444500000006) (0.010619493499999993) (0.010961651500000016) (0.010853108999999986) (0.010903128499999998) (0.011069243999999992) (0.010896853499999998) (0.010923663999999986) (0.011029788000000013) (0.011165282999999998) (0.010867708500000017) (0.011306074500000013) (0.010904395499999983) (0.011256650500000007) (0.01104851100000001) (0.011063615999999998) (0.011057704000000002) (0.01117075499999999) (0.010974473499999998) (0.011113638000000009) (0.010821754500000003) (0.010832247499999989) (0.01090183900000001) (0.011101117499999993) (0.010810197999999993) (0.010911494499999994) (0.011443474500000009) (0.010997326500000001) (0.011368658500000003) (0.011193930500000004) (0.010960611000000009) (0.011128327999999993) (0.011240792999999999) (0.011016450000000011) (0.010985918500000011) (0.011143369499999986) (0.0107537345) (0.010573162499999997) (0.010766355500000005) (0.010647680000000007) (0.0106841045) (0.010859375500000004) (0.010625683999999996) (0.01067008450000001) (0.011155834000000003) (0.010856260499999992) (0.010801334499999982) (0.010612195000000005) (0.010713786000000003) (0.01068490900000002) (0.010690899000000018) (0.010969661999999991) (0.01058353400000002) (0.010801794999999989) (0.011017191499999995) (0.010794865999999986) (0.010648333000000024) (0.010589149499999992) (0.010712439000000004) (0.010611250500000002) (0.010798901) (0.010977988999999994) (0.010799674500000009) (0.010634326999999999) (0.010773003500000003) (0.010787819500000004) (0.010699902499999997) (0.011163335999999996) (0.01117738850000001) (0.010986823499999993) (0.010932150000000002) (0.010908039500000008) (0.010959365499999998) (0.01091294750000002) (0.011065835499999996) (0.011086861000000003) (0.011179553500000008) (0.011064124999999994) (0.011184627000000003) (0.011247501999999993) (0.011248940499999999) (0.011233595499999999) (0.011336043500000004) (0.010986251500000016) (0.011060892999999988) (0.011076693999999998) (0.011127901999999995) (0.011094038) (0.011100072000000002) (0.011177227000000012) (0.010890312499999999) (0.011106704499999995) (0.011459774500000006) (0.011037576000000007) (0.011099330500000004) (0.011354917499999992) (0.011427062500000001) (0.011284277500000009) (0.011182403499999993) (0.011139080499999995) (0.010651669000000002) (0.010819077499999996) (0.010887519499999998) (0.01079480699999999) (0.010686542999999993) (0.01064857150000001) (0.010575630499999988) (0.0107169825) (0.010835240999999995) (0.010699809000000005) (0.010876257) (0.011047045500000005) (0.010985898000000008) (0.010867261999999989) (0.010853642499999996) (0.010743797) (0.01047475349999999) (0.01059639300000001) (0.010730174000000009) (0.010856987999999998) (0.0106236195) (0.011120815500000006) (0.010548613999999998) (0.0106436335) (0.010701263499999988) (0.010809645999999992) (0.010690209499999992) (0.010741599500000004) (0.011077256500000007) (0.010787383500000011) (0.01110538350000001) (0.011028882500000003) (0.010987327499999991) (0.010888302500000002) (0.010880883999999993) (0.011288653999999995) (0.011023623999999996) (0.01098435099999999) (0.011019767) (0.011180049500000011) (0.011156507499999996) (0.011132038999999996) (0.010981071000000009) (0.01134872449999999) (0.011087475) (0.01109449450000001) (0.01099066) (0.011173039499999995) (0.01104839199999999) (0.01094455150000001) (0.011105079500000004) (0.010961105499999999) (0.011157081999999999) (0.010991561499999997) (0.011207236499999995) (0.01106397299999999) (0.01110051799999999) (0.011347318499999995) (0.011173350499999984) (0.011038226999999998) (0.011153595000000002) (0.011146395500000003) (0.011262468999999997) (0.011472668500000005) (0.010789028000000006) (0.010745948000000005) (0.010615246999999994) (0.01058173300000001) (0.010455791000000006) (0.010524217499999988) (0.010525474499999993) (0.010782700500000006) (0.010632918500000005) (0.01076879) (0.010839494499999991) (0.010726774000000008) (0.010737492000000001) (0.010859349000000004) (0.010951606000000003) (0.010837221000000022) (0.01077080200000001) (0.010798922499999988) (0.010513989000000001) (0.010549882499999996) (0.010852300499999995) (0.010812361999999992) (0.01065214199999999) (0.010691994499999996) (0.010794698000000005) (0.010905410000000004) (0.010683611499999995) (0.01068567949999999) (0.010790969999999997) (0.010858680499999995) (0.010634859499999996) (0.010479841500000003) (0.01110512600000002) (0.011063579000000004) (0.011032441500000004) (0.010985612500000005) (0.010827591499999997) (0.011169596500000004) (0.010961198999999991) (0.010955256499999996) (0.011075034999999997) (0.0110309995) (0.01119896849999999) (0.011194174000000001) (0.011249291000000008) (0.011042039500000003) (0.011078109000000003) (0.011066091500000014) (0.011062238000000016) (0.010810483999999995) (0.010989208000000014) (0.010806481999999992) (0.011002065000000005) (0.010898272) (0.011016217999999994) (0.011132650500000008) (0.011318793500000007) (0.011138825000000005) (0.011028172000000003) (0.011092875000000016) (0.011022459999999984) (0.011260756499999997) (0.010990239000000013) (0.011025084500000004) (0.010870012999999998) (0.010558982500000008) (0.010710272000000007) (0.010530290999999997) (0.010650215500000004) (0.010706603999999995) (0.010716287000000005) (0.010807608499999982) (0.0107040085) (0.01076087249999999) (0.010732445500000007) (0.010588913500000005) (0.010917957999999992) (0.010987969500000014) (0.010760592000000013) (0.010801121999999996) (0.010769025000000002) (0.0106839205) (0.010529349999999993) (0.010902594500000001) (0.010722569000000001) (0.010729414499999992) (0.010638233999999996) (0.010525511000000001) (0.01072496199999999) (0.010811329500000008) (0.010740405500000008) (0.010757492999999993) (0.011011367500000022) (0.0109956425) (0.010648818000000018) (0.010812334499999993) (0.011229003500000015) (0.01083625449999999) (0.010806437000000002) (0.01100876549999999) (0.011044422999999998) (0.010901404000000003) (0.010925959999999985) (0.011128539999999992) (0.011413566) (0.0109985155) (0.010961572000000003) (0.011259578999999992) (0.011232019499999996) (0.011040555500000007) (0.0110763995) (0.011151571999999998) (0.0109798745) (0.010824533999999997) (0.011010013499999999) (0.010861999499999997) (0.010998286499999996) (0.011004752500000006) (0.011097942500000013) (0.011132016500000008) (0.011311284500000005) (0.011167742000000008) (0.011674425500000002) (0.011065675499999997) (0.011134164000000002) (0.011528424500000009) (0.011290059500000005) (0.011455371999999991) (0.010693487000000002) (0.01073970049999999) (0.010610927999999992) (0.011167785500000013) (0.010549689499999987) (0.01046324450000001) (0.0105098005) (0.010683494000000002) (0.01072525449999999) (0.010649026000000006) (0.010589505000000013) (0.01070285) (0.010768176500000004) (0.010821011999999991) (0.010851635999999998) (0.010906227000000004) (0.01074792250000002) (0.010630240499999999) (0.010736816499999996) (0.010863151000000001) (0.010862774499999991) (0.01099535950000001) (0.010976049000000015) (0.010607979999999989) (0.010919952499999996) (0.011029536000000006) (0.010658035999999996) (0.0106218555) (0.010637012000000015) (0.010743148999999994) (0.010764612500000006) (0.010908754500000006) (0.011144326999999996) (0.010825816500000002) (0.011133391500000006) (0.010877500999999998) (0.011104887999999993) (0.010932259) (0.011066682499999994) (0.010929597) (0.011251942000000001) (0.011321169000000006) (0.010996172999999998) (0.011007957999999998) (0.011226020000000003) (0.011180588499999991) (0.011179849000000006) (0.010927798499999988) (0.010905317499999997) (0.011283507499999998) (0.010868658000000003) (0.01083497550000001) (0.0110017065) (0.011256307000000007) (0.011133017000000009) (0.010937601500000005) (0.011121719499999988) (0.011278867999999997) (0.011189973500000006) (0.011349000999999997) (0.011209740999999995) (0.011221626499999998) (0.011048753000000008) (0.011159441500000006) (0.010807189499999995) (0.010922587500000011) (0.010799420500000004) (0.01049316900000001) (0.011008992500000009) (0.010686037499999995) (0.010613902499999994) (0.011493990999999995) (0.010768641499999995) (0.010907412000000005) (0.010937359499999993) (0.01070844750000001) (0.010678278500000013) (0.01073047299999999) (0.010723979999999994) (0.010778208499999983) (0.010893849999999997) (0.01082401899999999) (0.01076434200000001) (0.010710401000000008) (0.01060187) (0.011009218500000001) (0.010793121000000003) (0.010643042500000005) (0.010905244500000008) (0.010842986499999999) (0.01115100300000002) (0.010864239999999997) (0.0107552925) (0.010923502000000002) (0.010774478000000004) (0.010800403999999986) (0.010786035499999999) (0.011173673999999995) (0.01093202) (0.011029207) (0.01102315999999999) (0.011139187500000008) (0.010856287499999992) (0.010858141000000002) (0.010973225500000003) (0.011153560499999993) (0.011394944500000004) (0.011063835999999994) (0.011109731999999983) (0.011037794500000003) (0.011150489999999985) (0.011176731000000023) (0.011190085000000002) (0.010962096500000004) (0.011170356499999992) (0.011356656999999992) (0.011089769499999999) (0.010946869499999998) (0.010913774999999987) (0.011077504000000016) (0.011214970500000004) (0.011299892999999991) (0.010871815999999992) (0.010909227000000007) (0.011646212500000017) (0.01126096950000001) (0.011075520499999991) (0.01112801649999999) (0.0108407685) (0.010837327500000007) (0.010695462500000003) (0.010669087500000007) (0.010744371500000002) (0.010703134500000003) (0.011118836000000007) (0.010779295500000008) (0.010683538500000006) (0.01066768550000001) (0.010921996499999989) (0.010696023999999998) (0.010693738499999994) (0.010669727000000004) (0.0106813865) (0.010789007500000003) (0.010763808999999985) (0.010843253999999997) (0.010696743000000009) (0.010615963499999992) (0.010701200999999994) (0.010939488499999997) (0.010701621000000008) (0.010647528000000003) (0.01088407000000001) (0.010857768000000004) (0.010895968499999992) (0.011074537499999995) (0.010777063000000017) (0.010742481499999998) (0.010880769500000012) (0.010719287000000008) (0.010959418500000012) (0.010942711500000007) (0.010863132999999997) (0.010909136499999986) (0.011012197499999987) (0.010880514000000008) (0.011063351499999999) (0.011245264000000005) (0.010983803) (0.011081045500000011) (0.0111216695) (0.011325001000000001) (0.011052307000000011) (0.011024496999999994) (0.010931036500000005) (0.011046311999999989) (0.010928234000000009) (0.010917366499999998) (0.011093154499999994) (0.0110025505) (0.011181555999999995) (0.010935425499999998) (0.011112131000000011) (0.010953851) (0.011075803500000009) (0.011243129500000004) (0.01101585649999999) (0.011276121) (0.011220810000000012) (0.010956519499999998) (0.011356321500000002) (0.011320591000000005) (0.011228273999999983) (0.01068535100000001) (0.01064957150000001) (0.01063668050000001) (0.01056599250000001) (0.010792686499999996) (0.010832021999999997) (0.010989934500000006) (0.010794876499999995) (0.010826655000000004) (0.010621639000000002) (0.010607606999999991) (0.010773298) (0.010762730499999998) (0.010656041500000005) (0.010852930499999996) (0.010892182999999986) (0.010638992500000014) (0.010770236999999988) (0.010928562500000003) (0.010639683000000011) (0.010496106500000005) (0.010757693499999998) (0.010639061500000005) (0.011039026500000007) (0.010823979499999997) (0.01073545849999999) (0.011120609999999989) (0.010766984500000007) (0.011006746999999997) (0.0106139695) (0.010796497000000002) (0.011258756999999994) (0.010969555500000006) (0.011068653499999997) (0.010983843999999993) (0.011376545000000002) (0.010976549000000016) (0.01105113549999999) (0.011027953999999993) (0.011082118000000002) (0.0115275705) (0.011253403499999995) (0.01123134299999999) (0.011086613500000009) (0.011467067499999997) (0.011134472499999992) (0.011223516500000016) (0.011144494500000005) (0.011012848500000005) (0.010907470500000016) (0.011214397999999987) (0.010947306500000004) (0.011392000999999999) (0.010892233499999987) (0.010950622000000007) (0.011592422500000005) (0.011028870499999996) (0.011161461499999997) (0.011343968499999996) (0.011323696499999994) (0.011352482000000011) (0.011341457999999999) (0.010990367000000001) (0.010708922999999995) (0.010804222500000016) (0.010504382999999992) (0.01107820449999998) (0.010795297999999995) (0.010674807500000008) (0.010725650500000003) (0.010517655000000015) (0.010835834000000003) (0.010998487000000001) (0.010926473499999992) (0.010827016000000009) (0.01089627550000001) (0.010698382500000006) (0.010871525500000007) (0.010848081999999995) (0.010712734500000001) (0.010783759500000004) (0.010618340500000004) (0.010667379500000004) (0.010626633999999982) (0.010655822499999995) (0.010628437500000004) (0.010779508000000007) (0.010887702499999999) (0.010922502000000014) (0.010793869999999997) (0.010781539000000007) (0.010902013500000016) (0.010885332499999983) (0.01075372949999999) (0.010722968999999999) (0.010999907000000003) (0.010932042000000003) (0.011098632999999997) (0.011076772499999984) (0.011071552499999998) (0.011082238999999994) (0.011424898500000003) (0.011065480500000016) (0.010971322500000005) (0.011515305500000003) (0.011114054000000012) (0.011067279000000013) (0.011101934000000008) (0.011069625500000013) (0.011232595499999998) (0.0112513095) (0.011117729000000007) (0.010956375500000004) (0.010874319499999993) (0.011292250500000003) (0.01105625049999999) (0.011037005000000003) (0.010824499000000001) (0.011102483999999996) (0.011232386499999997) (0.011207402499999977) (0.011681285499999985) (0.011135200000000012) (0.011350215499999997) (0.011025608499999992) (0.010945334000000015) (0.011051029000000004) (0.010662327999999999) (0.010956863999999997) (0.010778164000000007) (0.010869286500000006) (0.010818117499999988) (0.010636590500000001) (0.010777117499999989) (0.010962449999999999) (0.010639188000000008) (0.010789564999999987) (0.01085245550000001) (0.010851917000000003) (0.010936277500000008) (0.010966719500000013) (0.010778442000000013) (0.010866452999999998) (0.011087739999999999) (0.011090770000000014) (0.010775279999999998) (0.010519624499999991) (0.010913892999999994) (0.010897906499999985) (0.010616071500000004) (0.010605110500000015) (0.010864234) (0.011131716000000014) (0.011026617999999988) (0.010718872000000004) (0.010831924000000007) (0.010880105500000015) (0.010987052999999997) (0.010700771500000011) (0.01114867750000001) (0.011321057499999995) (0.011030557999999996) (0.010849064499999991) (0.0112527335) (0.010996238999999991) (0.01096779249999999) (0.010945268000000008) (0.01092383199999998) (0.011174681499999992) (0.010946815999999998) (0.011142591500000007) (0.011375600999999999) (0.011270646999999981) (0.011126807000000016) (0.01133045249999999) (0.010958654499999998) (0.011104792500000002) (0.01109293) (0.010820378500000005) (0.01122492700000001) (0.011072964500000004) (0.011221508500000005) (0.010898534500000001) (0.011006814000000004) (0.011531206500000002) (0.011151400000000006) (0.011569488500000003) (0.011148579500000005) (0.011225485999999993) (0.0109986735) (0.011276672000000015) (0.01059180400000001) (0.010942993999999998) (0.010494056500000001) (0.01072898600000001) (0.01076883649999999) (0.010799517500000022) (0.010609409500000014) (0.010617091999999995) (0.010652811999999984) (0.010707972499999996) (0.010824170000000008) (0.010716493999999993) (0.010638328499999988) (0.010633416499999992) (0.01058563550000001) (0.011072506999999995) (0.010554005000000005) (0.010717714500000003) (0.010694355000000016) (0.010776925000000007) (0.010568176499999998) (0.010546999000000001) (0.010499080999999993) (0.010777357000000001) (0.010601387000000004) (0.010739238000000012) (0.011024374000000003) (0.010931001999999995) (0.010996981000000003) (0.010767213500000011) (0.01070317450000001) (0.01065166749999999) (0.0110471615) (0.01104339900000001) (0.010945127000000013) (0.011103335500000006) (0.011059224500000006) (0.010912228999999982) (0.010996022500000008) (0.010749064999999988) (0.011031760499999987) (0.011093139999999987) (0.011042415000000014) (0.011094612500000003) (0.010970653499999997) (0.011257439499999994) (0.011188408999999996) (0.0109428825) (0.011014631999999996) (0.010807127) (0.011040141500000003) (0.011279156999999998) (0.011129505000000012) (0.011225736) (0.01088025799999999) (0.010860843500000009) (0.011109768500000006) (0.0112832935) (0.010854104000000017) (0.011049227999999994) (0.010956486500000015) (0.011037973500000006) (0.011023645499999984) (0.011335632999999998) (0.0108138245) (0.010630251000000007) (0.010843409499999998) (0.01072004) (0.010727516000000006) (0.01065256349999999) (0.010680678500000013) (0.010710163999999994) (0.010732857500000012) (0.01073843549999999) (0.010709310500000013) (0.010942109499999991) (0.010925457) (0.01072429250000001) (0.010783233000000003) (0.010858783999999996) (0.010689193999999999) (0.010807009500000006) (0.010805414499999999) (0.010771493499999993) (0.010770915500000006) (0.010804724500000001) (0.010736705) (0.010561190500000012) (0.01133371150000001) (0.010706862499999997) (0.01085908649999999) (0.010932258) (0.010826560499999999) (0.010879924999999999) (0.011042088499999991) (0.010879155000000001) (0.010950374999999998) (0.011345367999999995) (0.011184168499999994) (0.010772692999999986) (0.010834051499999997) (0.011030588000000008) (0.011059073000000003) (0.01119297100000001) (0.011193056999999978) (0.010990626000000003) (0.011097702000000015) (0.0114450745) (0.011010194499999987) (0.010983347000000004) (0.011531848499999983) (0.010954511999999986) (0.01097608600000001) (0.010854529500000001) (0.011367489499999994) (0.010881251499999994) (0.010962547000000003) (0.010983790999999993) (0.010872007000000017) (0.010926486999999999) (0.011046066500000007) (0.011371108500000005) (0.01105356149999999) (0.011124372000000007) (0.011059021499999988) (0.011041804000000002) (0.011293429500000007) (0.010944652500000013) (0.010983289999999993) (0.010682588999999992) (0.010806588500000006) (0.011028531500000008) (0.01057506350000001) (0.010835332499999989) (0.010961458000000007) (0.01054070850000001) (0.010751787500000012) (0.010680409000000002) (0.010741033999999997) (0.010756396000000001) (0.010652689499999993) (0.0109786105) (0.01066546950000001) (0.010825894000000003) (0.010533899499999999) (0.010640090500000005) (0.0107153205) (0.010778157999999996) (0.011065262500000006) (0.010758934500000011) (0.010796246499999995) (0.010754798999999982) (0.01080837350000001) (0.010956354000000015) (0.010730579000000004) (0.010959168000000005) (0.01082340050000001) (0.010656886000000004) (0.010887874999999991) (0.010753652000000002) (0.011216381999999997) (0.011160987499999983) (0.011253372000000011) (0.011024385999999997) (0.010919491000000003) (0.010945400999999993) (0.0112414505) (0.010908144499999994) (0.011131949499999988) (0.011137516999999986) (0.010994861999999994) (0.011017017500000018) (0.0113849595) (0.011218914999999996) (0.011015886500000002) (0.011298611) (0.0111344825) (0.01090981249999999) (0.011051960000000013) (0.011020113999999998) (0.011068765499999994) (0.011006530499999986) (0.011028450499999995) (0.010750491000000015) (0.011419461500000005) (0.011164231999999996) (0.01109932000000001) (0.01122700800000001) (0.010992396499999987) (0.011169087000000008) (0.01099763400000002) (0.011132335500000007) (0.010714331999999993) (0.010859876500000018) (0.010967003499999989) (0.010892209500000014) (0.010655812000000014) (0.010765458499999991) (0.010796585500000011) (0.010842015999999996) (0.010604797499999999) (0.010695441499999986) (0.010631412499999993) (0.010805240000000008) (0.010849752000000018) (0.01073692950000002) (0.011081580499999993) (0.010880204500000004) (0.010554206499999996) (0.010677620499999999) (0.010771995499999992) (0.010676705499999994) (0.010753602000000015) (0.010852291000000014) (0.010746919000000008) (0.010669051499999999) (0.01097508400000001) (0.010987523999999999) (0.010829199499999984) (0.010818997499999997) (0.010722652500000013) (0.010686331500000007) (0.010775718500000003) (0.010692883) (0.011043554499999997) (0.011147880499999999) (0.010845263000000008) (0.010875977500000009) (0.011224174000000003) (0.010878604499999986) (0.010979518999999993) (0.010873937) (0.011185609499999999) (0.010993693499999999) (0.011235494499999985) (0.011196274000000006) (0.011127338500000014) (0.011227439500000005) (0.011200441499999991) (0.011163605499999993) (0.011091061499999985) (0.010944067000000002) (0.0109533785) (0.011165986000000003) (0.01117103500000001) (0.010932418) (0.0113221015) (0.011115346499999998) (0.011378230000000003) (0.011376651000000002) (0.011027004499999979) (0.011141410000000018) (0.010980655499999978) (0.011020322499999999) (0.011196675500000017) (0.011037646999999998) (0.010842613000000015) (0.010480151000000007) (0.010470062000000002) (0.010455964500000012) (0.010593656499999993) (0.010644029499999985) (0.010716041499999995) (0.010817793000000006) (0.010854507000000013) (0.010837841) (0.011028212499999995) (0.010896572999999993) (0.010658496500000003) (0.010789887999999997) (0.010966353499999998) (0.011045835500000004) (0.010558459000000006) (0.010661992999999995) (0.010609543499999999) (0.01057340250000001) (0.010613727000000003) (0.010532584999999983) (0.010674285000000006) (0.010754791999999999) (0.010855633999999989) (0.010744116499999998) (0.011078721499999986) (0.010959677000000001) (0.010616399499999998) (0.010779899999999995) (0.010721516499999986) (0.011007146499999995) (0.0108477035) (0.010751671000000004) (0.010806026999999996) (0.010989931000000008) (0.010883965499999995) (0.010742997000000004) (0.011028040500000003) (0.010879890500000003) (0.011194719000000006) (0.011125768999999994) (0.01134832899999999) (0.011231330000000012) (0.011082157499999995) (0.011018096000000005) (0.010978546999999991) (0.011037930000000001) (0.010852131500000015) (0.011117006999999998) (0.010763740499999994) (0.010903297000000006) (0.011087501999999999) (0.0108663175) (0.010956754999999999) (0.010907010999999994) (0.011327837000000007) (0.011138647000000002) (0.011190290500000005) (0.011283080499999987) (0.011090683000000004) (0.011512883500000001) (0.011070112499999993) (0.011333613999999992) (0.010690280499999982) (0.010508306000000009) (0.01052995600000002) (0.010644555) (0.010962001499999999) (0.010615760500000002) (0.010797129500000002) (0.010576245499999984) (0.01097968449999999) (0.010704465499999996) (0.0107153725) (0.010850416500000015) (0.010794851500000008) (0.010889979999999994) (0.01083733399999999) (0.010696789499999998) (0.010880057499999998) (0.010705293500000004) (0.010910450499999988) (0.010573565999999993) (0.010722599499999999) (0.011088031500000012) (0.010713049999999988) (0.010816087000000002) (0.010752201000000003) (0.010790430500000003) (0.010692004000000005) (0.010941811499999995) (0.010715322000000013) (0.010701899) (0.010721717999999991) (0.010986468) (0.011025902500000004) (0.01137316699999999) (0.010791138500000005) (0.011095322500000004) (0.011017013500000006) (0.011083479500000007) (0.010992461500000009) (0.01100901750000001) (0.011184422999999999) (0.011053752999999986) (0.011322116000000007) (0.011110982999999991) (0.011343720500000015) (0.010888092499999988) (0.011255308000000006) (0.011110256999999998) (0.010982178500000009) (0.010893810000000004) (0.010941101000000009) (0.01109457500000001) (0.0110912715) (0.011166138499999992) (0.010921450499999985) (0.011051275) (0.010994294000000002) (0.010985018499999999) (0.011351633) (0.011203097000000009) (0.011134295000000002) (0.011121614000000002) (0.011186885499999993) (0.011348171000000018) (0.010795901499999996) (0.010741915000000005) (0.0105085085) (0.010640331500000003) (0.010892790999999999) (0.01075513950000001) (0.010676572499999995) (0.010583531999999993) (0.010834206000000013) (0.01077410949999999) (0.010581196999999987) (0.010700738999999987) (0.010882932999999997) (0.010895712500000002) (0.010925742500000002) (0.010945962500000003) (0.010803775499999987) (0.01087696349999999) (0.010696507999999993) (0.010897340499999991) (0.010938125500000007) (0.010832372999999992) (0.01082549449999999) (0.010685777000000007) (0.010655570000000003) (0.010716527000000003) (0.010982883499999999) (0.010957517000000014) (0.010831304) (0.010748817999999993) (0.010737670500000004) (0.010988406000000006) (0.010802971000000008) (0.01119780649999999) (0.01096361500000001) (0.010806384500000002) (0.010773654999999993) (0.010892486999999992) (0.011257074000000006) (0.010874383000000001) (0.010976062999999994) (0.011172235000000003) (0.011042990499999988) (0.0111365655) (0.011137066499999987) (0.01118569300000001) (0.011275898000000006) (0.011238814500000013) (0.010891194000000007) (0.011095264000000007) (0.010877799500000007) (0.010997922999999993) (0.011047215499999999) (0.011161152500000007) (0.010863353499999992) (0.010997183999999993) (0.011182759499999986) (0.011315881500000013) (0.011228433999999995) (0.011098914499999987) (0.01141658949999999) (0.011149041500000012) (0.01110699350000001) (0.011130474500000001) (0.010725386500000003) (0.010568125000000012) (0.010704099000000009) (0.010677094999999998) (0.0107808655) (0.010640881000000005) (0.010794389000000001) (0.010639617000000018) (0.010740024499999987) (0.010855402500000014) (0.011074639499999997) (0.0108525015) (0.010789992499999998) (0.010754858500000006) (0.010914457500000002) (0.010865000000000014) (0.01062834900000001) (0.010817643500000002) (0.010735098499999998) (0.010644402499999997) (0.010834294499999994) (0.010740940000000004) (0.010845738999999993) (0.010704150999999995) (0.010807848999999994) (0.011036365500000006) (0.011039142000000016) (0.010716202499999994) (0.011346159000000008) (0.01089081900000001) (0.011001851000000007) (0.011196851999999993) (0.011082786499999997) (0.010766309999999987) (0.01087089699999999) (0.011102057999999998) (0.011078214500000003) (0.011227467500000005) (0.010963279499999992) (0.010914125999999996) (0.01093432400000001) (0.010950411500000007) (0.011428703499999998) (0.011122195500000001) (0.011033046500000004) (0.010960814500000013) (0.011084388499999986) (0.011311738000000016) (0.0110650115) (0.011107630500000007) (0.010862263000000011) (0.01106406750000001) (0.011058503500000011) (0.011054787499999996) (0.011075991999999993) (0.011213819000000014) (0.011250796000000007) (0.011467293500000003) (0.011652916499999985) (0.01127326699999999) (0.011165197499999988) (0.011233003000000005) (0.011225750500000006) (0.011346447999999995) (0.010453220499999999) (0.010684151000000003) (0.010667361000000014) (0.01053677) (0.010584334) (0.010779225500000003) (0.010738783500000001) (0.010648905) (0.010707930499999976) (0.010916610500000007) (0.010682804000000004) (0.010915391499999982) (0.01075422600000002) (0.01065836349999999) (0.010844766500000005) (0.010590713500000001) (0.010575296999999997) (0.010550659500000004) (0.010748627999999996) (0.010716661500000002) (0.010702291500000002) (0.010666185499999994) (0.010809970000000002) (0.010934173000000005) (0.01074733700000001) (0.010793238999999996) (0.01077243500000001) (0.010712505000000011) (0.010844632499999993) (0.010659031499999999) (0.010888241500000007) (0.01077851199999999) (0.010881408499999995) (0.011053810499999997) (0.010812069499999993) (0.011145430499999998) (0.0108320675) (0.011182558499999995) (0.011077994500000007) (0.011055065500000003) (0.011318719000000019) (0.010979516499999994) (0.011271249499999997) (0.011195079999999996) (0.011003519999999989) (0.010979049500000018) (0.010970070500000012) (0.010923826000000011) (0.011086435999999991) (0.011194591500000003) (0.011041534999999991) (0.011400341000000008) (0.011058340999999985) (0.011007720999999998) (0.01109855350000001) (0.011021968500000007) (0.011206479000000005) (0.011357381) (0.011094489000000013) (0.011049218999999985) (0.011169368500000013) (0.0111886665) (0.01126088900000001) (0.011393216999999983) (0.010584176) (0.010804363500000011) (0.010595412000000012) (0.010607187500000004) (0.010656873500000011) (0.011010881) (0.010643789) (0.010715487499999996) (0.010887098499999998) (0.010621890500000009) (0.011072879499999994) (0.01089425899999999) (0.010806793999999995) (0.010726426999999997) (0.010827908999999983) (0.010608794500000004) (0.010736451000000008) (0.010526010500000016) (0.010864959000000007) (0.010584475999999995) (0.010797470500000003) (0.010705881500000014) (0.010593962999999998) (0.010699030499999998) (0.010878201500000004) (0.010914686999999992) (0.010668936500000004) (0.010688798499999985) (0.010745373000000016) (0.010611602500000011) (0.0109174425) (0.010929273499999989) (0.010995032500000002) (0.011391883500000005) (0.011089179000000005) (0.011171750500000008) (0.011074685) (0.010824363500000003) (0.010891580999999997) (0.010745440500000009) (0.011284991499999994) (0.0112441935) (0.011392746499999995) (0.010983474999999993) (0.011253961499999993) (0.011282792499999986) (0.011357095999999997) (0.01142876150000001) (0.010987615500000006) (0.010973193999999992) (0.011299109500000001) (0.010937202999999993) (0.010900012499999986) (0.011330890499999996) (0.011022683500000005) (0.011260382999999985) (0.011108261500000008) (0.011230342500000004) (0.01151676750000001) (0.011199376499999997) (0.01100651200000001) (0.011117930499999998) (0.011174425500000015) (0.01131323699999999) (0.010756748499999982) (0.010771745999999999) (0.0106490365) (0.010821743499999995) (0.010675791500000004) (0.010710272000000007) (0.010664090000000001) (0.010943478499999992) (0.01065965449999999) (0.010969854000000001) (0.010905323499999994) (0.010737631500000011) (0.010743100500000005) (0.010802979500000004) (0.010944639500000006) (0.01084322) (0.010484810499999997) (0.010816088500000001) (0.010658479999999984) (0.010904373000000009) (0.010513383500000001) (0.010670614500000009) (0.01076743749999999) (0.01074812650000001) (0.010857527499999992) (0.01085245600000001) (0.010862925500000009) (0.010734466999999998) (0.01078779199999999) (0.011038146499999998) (0.011005598500000005) (0.010964980499999999) (0.01098327049999999) (0.011438144499999997) (0.010810708000000016) (0.010898086000000015) (0.010879679500000003) (0.011207660000000008) (0.01099305049999999) (0.011005082) (0.011007218499999999) (0.011194643000000018) (0.0113038585) (0.011212760000000002) (0.011020645499999995) (0.01118285699999999) (0.011009107500000004) (0.01101192049999998) (0.0109842245) (0.0109844095) (0.010798200000000008) (0.010942656500000009) (0.010932894999999998) (0.011100340000000014) (0.0109884705) (0.011000180499999998) (0.011007057499999987) (0.011343416000000009) (0.011236101999999998) (0.011404986999999991) (0.01144000199999999) (0.011635595500000012) (0.011219752) (0.011012301500000002) (0.010709182500000011) (0.010670654500000001) (0.010858582000000006) (0.010785667999999984) (0.010599674000000017) (0.010562463000000008) (0.01060744000000001) (0.011105624000000008) (0.01097462049999999) (0.010696137499999994) (0.011053409499999986) (0.010899395500000006) (0.010867702500000007) (0.011045463500000019) (0.010822885500000018) (0.0108827965) (0.011078726000000011) (0.010827370500000003) (0.010888116500000003) (0.010715751499999995) (0.010711987500000006) (0.010855769500000001) (0.010834878500000006) (0.010709019) (0.010703051000000005) (0.010901619000000001) (0.011014399999999994) (0.010822486500000006) (0.011242375499999999) (0.01099537149999999) (0.010721472999999995) (0.011033528) (0.011060154000000003) (0.011039021499999996) (0.011142297500000009) (0.011235734999999997) (0.010933356499999991) (0.011168855500000005) (0.011102286500000003) (0.011050392000000006) (0.011386634999999992) (0.011165933000000003) (0.011449647000000007) (0.011141164500000009) (0.01132780700000001) (0.01099694150000001) (0.011424029000000002) (0.011018018000000018) (0.010983906000000015) (0.011329962500000013) (0.011019045499999991) (0.010952539000000011) (0.0111232515) (0.011314032999999987) (0.011093704499999996) (0.0112183015) (0.011401216000000006) (0.011159334500000007) (0.011094458999999987) (0.011722036000000005) (0.011268841999999987) (0.011220345000000007) (0.01103602749999999) (0.011304434000000002) (0.010707760999999996) (0.010596392999999996) (0.010606083999999988) (0.010877611999999981) (0.01078084) (0.010905447500000012) (0.010760771000000002) (0.01084811799999999) (0.010893548500000003) (0.010805179999999984) (0.01077307000000001) (0.010685292499999999) (0.010880810000000005) (0.010789343999999992) (0.011235234999999996) (0.010811631500000002) (0.010605827499999998) (0.010546026500000014) (0.010778022999999998) (0.010752315999999998) (0.0105399085) (0.010710637500000009) (0.010799299499999998) (0.010525460499999986) (0.010721868500000009) (0.011132114999999998) (0.010805334999999985) (0.010767655000000015) (0.011013257000000012) (0.01077673500000001) (0.010647169000000012) (0.010651574499999997) (0.010978165999999984) (0.010941063000000001) (0.010999149) (0.010889239500000009) (0.010970221999999988) (0.010924713000000003) (0.010880883500000008) (0.010893153999999988) (0.011283578500000002) (0.011194593000000003) (0.011192388500000011) (0.011255328000000009) (0.011250812500000013) (0.011027933500000003) (0.011205947500000007) (0.011345834999999999) (0.010905951000000011) (0.010832774999999989) (0.011008189500000001) (0.01104724650000001) (0.010969851000000017) (0.011060866000000003) (0.011066223) (0.011360297999999991) (0.011093753000000012) (0.011077267000000002) (0.01115513650000001) (0.011303578500000008) (0.011252687999999997) (0.011364285500000001) (0.011257512999999997) (0.011947878500000009) (0.010667426499999993) (0.010641882500000005) (0.011076208000000018) (0.010647429) (0.010554424500000006) (0.010634688500000003) (0.010612864500000013) (0.010744609000000002) (0.010748028000000007) (0.01083976099999999) (0.010994926499999988) (0.010869443000000006) (0.010870116999999985) (0.01088051399999998) (0.01108295949999999) (0.010934967000000004) (0.011024248) (0.010692105499999993) (0.01088223499999999) (0.010860070500000013) (0.010752284499999987) (0.010818628999999996) (0.011264416) (0.010602657500000001) (0.01100582) (0.010828367499999991) (0.011002974999999998) (0.010901135499999992) (0.011019611999999984) (0.010942849000000004) (0.010757236000000003) (0.011019799499999997) (0.0110961205) (0.010911506000000001) (0.011145433499999996) (0.011150947500000008) (0.011309841000000015) (0.010971364000000011) (0.010848341500000011) (0.0115016) (0.011203998499999993) (0.011083918999999998) (0.011451077500000004) (0.011077889499999993) (0.010985303999999987) (0.011007301000000011) (0.011136543499999998) (0.011025279500000013) (0.011242260000000004) (0.011008388500000008) (0.011086772000000009) (0.011147521999999993) (0.011174253999999995) (0.011126106999999996) (0.011045546999999989) (0.010799301999999997) (0.011330289999999993) (0.011092010499999985) (0.011123279999999985) (0.011248626999999997) (0.011029334500000001) (0.011419099500000002) (0.01133584650000001) (0.011107488999999998) (0.010707222000000016) (0.010616706000000004) (0.010663378500000015) (0.010513814999999996) (0.010736393999999996) (0.010656008000000008) (0.010641624000000002) (0.010666868499999996) (0.010956701) (0.010691700499999998) (0.0110167875) (0.010965217) (0.010904101499999999) (0.011166476499999994) (0.0110482675) (0.011017856000000006) (0.010900618) (0.010998347499999991) (0.011128006499999996) (0.010945305000000002) (0.010951126499999991) (0.0109652955) (0.011237011000000005) (0.011017971000000001) (0.01089317599999999) (0.010894454500000011) (0.010879031499999983) (0.010771174499999994) (0.010842986499999985) (0.011054068000000014) (0.010936286500000003) (0.010832539500000002) (0.010860529500000007) (0.011029265499999996) (0.010825210499999988) (0.011063119999999996) (0.011073386000000005) (0.011272627499999993) (0.010997438999999998) (0.010879980500000011) (0.011041478999999993) (0.011104362999999992) (0.011321648000000004) (0.011179890000000012) (0.011402949499999995) (0.011097143000000004) (0.01133195049999998) (0.011312107000000002) (0.010956959000000002) (0.01130358849999999) (0.011160377499999999) (0.011071355000000019) (0.011162750999999999) (0.011167032999999993) (0.011009974000000006) (0.011407015000000006) (0.011335227500000017) (0.011203921500000005) (0.011132892000000005) (0.010951865499999991) (0.011499075499999997) (0.011222814000000012) (0.011228615000000011) (0.011261176999999997) (0.010572033499999994) (0.01080825399999999) (0.010507646500000009) (0.010793745999999993) (0.010895201000000007) (0.010528706499999999) (0.0107290825) (0.010570361) (0.010739319999999997) (0.010874961500000002) (0.010858762499999994) (0.010953493500000008) (0.011085312500000014) (0.011160587500000013) (0.010848679) (0.011062612000000013) (0.010631598499999992) (0.0107240995) (0.0107154785) (0.010799811000000006) (0.0107726385) (0.010767009999999994) (0.010590639999999985) (0.011092673999999997) (0.010880958499999982) (0.0109586235) (0.010855199499999982) (0.011030350999999994) (0.011009789499999992) (0.010806950999999995) (0.010750008000000005) (0.011004450000000013) (0.010862434500000004) (0.01138169700000001) (0.010930683499999996) (0.0109875745) (0.011050643499999999) (0.010866609999999985) (0.010977297499999983) (0.010961309000000016) (0.011157962000000007) (0.011533179500000004) (0.011134151500000009) (0.011395729999999993) (0.011215029500000001) (0.011457289500000009) (0.011283558499999999) (0.011214375499999998) (0.011109977999999979) (0.011126696499999991) (0.011174888000000008) (0.01121097850000001) (0.01093764500000001) (0.011003371500000012) (0.011091248000000012) (0.011133900000000002) (0.011212004000000012) (0.011363201500000003) (0.011288125999999996) (0.01138545349999999) (0.01113259300000001) (0.011222547999999999) (0.01104124649999999) (0.011199061999999996) (0.010802971500000022) (0.010702216500000014) (0.0106404415) (0.010690994999999995) (0.010842066499999997) (0.010702358000000009) (0.010550100000000007) (0.010688105000000003) (0.010714248999999995) (0.010862427999999993) (0.010670510499999994) (0.010598462000000003) (0.010638201) (0.010865484499999994) (0.010669663499999996) (0.010607162500000003) (0.01057121400000001) (0.010621365499999993) (0.010740927499999997) (0.010824372499999999) (0.010421980999999997) (0.010726829999999993) (0.01060032100000001) (0.010576819000000001) (0.010740551499999987) (0.010786235500000019) (0.01126593749999999) (0.0110617415) (0.01110550099999999) (0.010791530499999993) (0.010687436499999994) (0.010893375999999996) (0.010907935000000007) (0.010806784499999986) (0.011131545499999992) (0.011074849499999997) (0.011045473000000014) (0.010942927500000005) (0.011149644) (0.010900020999999996) (0.011180217999999992) (0.011129769499999997) (0.011121122499999983) (0.011282046000000004) (0.011142457000000008) (0.011046621000000006) (0.011006524000000004) (0.01108419300000002) (0.011048981) (0.011205719500000016) (0.010960316499999997) (0.010919854500000006) (0.010940596499999983) (0.011284223499999996) (0.011205731999999996) (0.011102375999999997) (0.011386428000000004) (0.011325959499999996) (0.011095978999999992) (0.011036995500000008) (0.011267384499999991) (0.011344849500000004) (0.011193108500000007) (0.010853218999999997) (0.010679316000000008) (0.010785716) (0.010616254000000006) (0.011053300500000002) (0.010704143999999999) (0.010723745000000007) (0.010619269) (0.01090144400000001) (0.010949710000000001) (0.011007364999999991) (0.01088341150000001) (0.010970463999999985) (0.010826289000000003) (0.010673533999999998) (0.010878090000000007) (0.010978885000000008) (0.010682286500000013) (0.010783831499999993) (0.010624706999999997) (0.010724850499999994) (0.010648763500000005) (0.010673639999999998) (0.010656607499999998) (0.010701938499999994) (0.010734063000000016) (0.011026959500000003) (0.010679589500000003) (0.010988002999999996) (0.010754992000000005) (0.01099071900000001) (0.010880409000000008) (0.010669780500000003) (0.010836534499999995) (0.010822785000000001) (0.011054048999999996) (0.01115078550000001) (0.010833317500000009) (0.010969070999999997) (0.01100036850000001) (0.011060263500000014) (0.011203615) (0.011024506500000017) (0.011042040000000003) (0.010970029999999992) (0.011064031999999988) (0.011031604499999986) (0.0110989695) (0.011061731500000005) (0.01102998749999999) (0.01104985650000001) (0.011060287500000002) (0.011111417999999998) (0.010866033499999997) (0.011166743999999992) (0.011233435) (0.011107266500000004) (0.011169757500000016) (0.011348453500000008) (0.011005002500000013) (0.011079992999999996) (0.011001120499999989) (0.011059357499999992) (0.011014600999999985) (0.011173011499999996) (0.01074014849999999) (0.010882560999999999) (0.010608181999999994) (0.010598286499999998) (0.010883570500000009) (0.011084936500000003) (0.010849849500000008) (0.010599438499999989) (0.010831472499999995) (0.010905732500000001) (0.010738932000000007) (0.010966864499999993) (0.010858629000000022) (0.010697589500000007) (0.010881188500000014) (0.010824890000000004) (0.01076449950000001) (0.0106509635) (0.010817434500000014) (0.011023733499999994) (0.0107258945) (0.010650222500000014) (0.01081609850000001) (0.010598968) (0.010887931500000003) (0.01086082649999999) (0.010595718000000004) (0.011018455499999996) (0.010639003499999994) (0.010655505499999995) (0.010888653499999998) (0.0109573045) (0.0109739155) (0.010875922499999996) (0.0110325025) (0.01106602000000001) (0.011083724000000003) (0.010953105500000018) (0.011162750499999999) (0.010890631499999998) (0.011201464999999994) (0.0110751875) (0.011145540999999995) (0.011225871499999998) (0.010991622999999992) (0.011098282000000001) (0.011110599999999984) (0.01118375499999999) (0.01083183) (0.010968556000000004) (0.011058049000000014) (0.011258352000000013) (0.011058947) (0.010937570999999993) (0.011007349) (0.010956703999999984) (0.011183984999999994) (0.011213762500000002) (0.011146009000000012) (0.011169925499999997) (0.011038726499999998) (0.011297441000000005) (0.011073905500000009) (0.011347762999999997) (0.010861831500000002) (0.0106264165) (0.0109836975) (0.010884539000000013) (0.010830459500000014) (0.011033130500000002) (0.010824807999999991) (0.011092284500000008) (0.010834643500000005) (0.010704241000000017) (0.010898837500000008) (0.01075701250000001) (0.010875749500000004) (0.010769734999999989) (0.010809813499999987) (0.010755982499999997) (0.010726776999999993) (0.010624404000000004) (0.010886536000000002) (0.010578973000000005) (0.010846885) (0.010660649000000008) (0.010743740500000001) (0.010900760999999995) (0.010842666) (0.010942410499999985) (0.010668093500000003) (0.010917637499999994) (0.010928652499999997) (0.010890719500000007) (0.010772398000000016) (0.010777680000000012) (0.010973037500000005) (0.010995366500000006) (0.011308640499999995) (0.011051307499999996) (0.011012545499999998) (0.011087184) (0.010854800500000011) (0.010989020000000002) (0.011399219500000002) (0.01109129099999999) (0.011186378499999997) (0.010996388999999995) (0.011029350499999993) (0.011149262500000007) (0.011305416499999985) (0.011134537000000014) (0.010964441500000005) (0.011120841499999992) (0.010916014500000001) (0.010880427499999998) (0.010911619499999983) (0.010908635000000014) (0.011175355499999984) (0.010963997999999989) (0.011113440000000002) (0.01132945049999999) (0.01120518650000002) (0.011204582500000018) (0.011059607999999999) (0.011177642499999987) (0.011255676500000006) (0.011328076000000006) (0.010834376999999992) (0.010622788999999994) (0.010782190999999997) (0.010811633499999987) (0.010965874) (0.011048063999999996) (0.010784011499999982) (0.010623185999999993) (0.010898552000000006) (0.011220267500000006) (0.010902296999999991) (0.0109467085) (0.010515659499999996) (0.010700606000000001) (0.010677551500000007) (0.010751603499999998) (0.010669312) (0.010870295499999988) (0.010702671499999997) (0.010921467500000018) (0.010726771999999996) (0.010733604500000007) (0.010746181000000007) (0.010719347000000004) (0.010958528000000009) (0.010760331500000012) (0.010733211000000006) (0.010978691500000012) (0.010960638499999995) (0.01081356550000001) (0.010722875000000007) (0.010971406500000003) (0.010948780000000005) (0.010833898499999994) (0.010904762000000012) (0.010852871) (0.010784172999999994) (0.011153089500000005) (0.01077583650000001) (0.010772450999999988) (0.011079367999999992) (0.011238116500000006) (0.011070114499999992) (0.011071434000000005) (0.011267967000000004) (0.011247779999999999) (0.010930638500000006) (0.010941500000000007) (0.011146773499999985) (0.011065106000000005) (0.010796760500000002) (0.010861848000000007) (0.011142996500000002) (0.0108959805) (0.010866286000000003) (0.010879660500000013) (0.011132306000000008) (0.010963261000000002) (0.011068027500000008) (0.011373071499999984) (0.011119816000000005) (0.011025000500000007) (0.011251334999999987) (0.011273373999999989) (0.010618640500000012) (0.010546627999999988) (0.01056325000000001) (0.010716123499999994) (0.010806700499999988) (0.010837488000000006) (0.010588083499999998) (0.010914595499999999) (0.010926349999999987) (0.010879776500000007) (0.010710549500000013) (0.0108083395) (0.010660870000000003) (0.01077691850000001) (0.010837067500000006) (0.010889588499999991) (0.010510689500000003) (0.010833795999999993) (0.010520428500000012) (0.010613877000000008) (0.010673563999999983) (0.010697081000000011) (0.010635730999999995) (0.010942391999999981) (0.01090127249999999) (0.010988007000000008) (0.010666713499999994) (0.010797294999999998) (0.01086652049999999) (0.011085756499999988) (0.010829709500000007) (0.010950459999999995) (0.011145200499999994) (0.010805491) (0.011060683500000001) (0.010983852000000002) (0.010848245499999992) (0.010974487500000005) (0.01116461199999999) (0.011154662999999995) (0.010994370500000003) (0.011059351000000009) (0.011061427500000012) (0.011292492500000001) (0.011043220500000006) (0.011270304000000009) (0.011096584500000006) (0.011166698000000003) (0.010877608999999996) (0.011048056) (0.010824563500000009) (0.010951442999999991) (0.011230941999999994) (0.011035027999999988) (0.01122452950000001) (0.011195513000000004) (0.011271258500000006) (0.011172959499999996) (0.011180418500000011) (0.011051235000000006) (0.011389425999999994) (0.011103357499999994) (0.01127156) (0.01137892900000001) (0.010693702000000013) (0.010875746499999991) (0.010498792000000007) (0.010654101999999999) (0.010780133500000011) (0.010903389000000013) (0.010658411499999992) (0.010809103) (0.010757474999999989) (0.010920720500000008) (0.01063615100000001) (0.010915616500000003) (0.010935731500000004) (0.010582792499999993) (0.010888216500000006) (0.010647978000000002) (0.010882811000000006) (0.01063051550000002) (0.010859367499999995) (0.010972637000000007) (0.011019605500000015) (0.010926162000000003) (0.01076730649999999) (0.010638042) (0.010573013000000006) (0.01058496099999999) (0.01077571699999999) (0.011025091) (0.010740286000000016) (0.01088518699999999) (0.010889889) (0.010808431500000007) (0.011486751999999989) (0.011038075999999994) (0.011001199999999989) (0.011211266999999997) (0.010889231499999985) (0.011015969) (0.010927367500000007) (0.011038213000000005) (0.011064190500000015) (0.011225545000000003) (0.011024572499999996) (0.011054804499999987) (0.01109959599999999) (0.011074103500000002) (0.01114778999999999) (0.0111061395) (0.01122354099999999) (0.011190315000000006) (0.010919859000000004) (0.011053472499999994) (0.011110091500000002) (0.011066866999999994) (0.010956065999999987) (0.010933499999999999) (0.0110888975) (0.011030797000000009) (0.011214806499999994) (0.011075120000000008) (0.01125311200000001) (0.011291064000000017) (0.011028226000000002) (0.011100000999999998) (0.010820990500000002) (0.010526584500000005) (0.01060324750000001) (0.010718273) (0.010711615499999994) (0.010807664000000008) (0.010802271000000002) (0.010534856999999995) (0.01084954249999999) (0.010708212500000008) (0.011116560000000011) (0.011099576) (0.010978597499999992) (0.010824215499999998) (0.010842787500000006) (0.010897041499999996) (0.01085821549999999) (0.010674403499999999) (0.011143793999999985) (0.011194527499999996) (0.01086741799999999) (0.010804969999999997) (0.010757506) (0.01089522200000001) (0.011157682000000016) (0.010961503499999997) (0.01085533000000001) (0.010999172000000015) (0.010909379999999996) (0.011112141500000006) (0.011010162000000004) (0.010873407499999987) (0.010963122000000006) (0.010895330500000008) (0.010986511000000004) (0.011096376500000019) (0.011024090499999986) (0.011119279499999996) (0.011097542000000002) (0.010928086500000003) (0.010945205999999999) (0.011052134500000005) (0.011460378999999993) (0.011024233999999994) (0.01135965600000001) (0.011408263999999987) (0.0112871155) (0.011156831999999992) (0.011492824499999998) (0.011257390500000006) (0.010889555499999995) (0.011332090999999989) (0.01103941600000001) (0.011092857000000012) (0.01120600749999999) (0.011306875500000008) (0.01114867550000001) (0.011304633499999994) (0.011261293000000006) (0.011267065999999992) (0.011346639499999991) (0.011310863500000018) (0.011165592999999988) (0.011154744499999994) (0.010583212000000009) (0.01083555949999998) (0.01052107549999999) (0.01074417100000001) (0.010558875500000009) (0.0106181375) (0.010832671499999988) (0.010678973500000008) (0.010634460499999998) (0.010885101999999994) (0.010574009499999995) (0.010856101499999993) (0.010670795499999997) (0.010729219999999998) (0.010565710499999992) (0.0107068575) (0.010546859500000005) (0.010486791500000009) (0.01053953149999999) (0.010617363500000004) (0.010514881000000004) (0.010730555999999988) (0.010919036000000007) (0.0105240095) (0.010694674000000001) (0.010613340500000013) (0.010626423499999996) (0.010630105000000015) (0.010630664499999998) (0.010673272500000011) (0.010931815999999997) (0.010762696000000002) (0.011219925999999991) (0.011343792499999991) (0.011238611999999995) (0.010862006999999993) (0.011025103000000008) (0.011114775499999993) (0.011054370999999993) (0.010868626999999992) (0.011068494499999998) (0.010998087500000003) (0.011124603999999996) (0.010959545000000001) (0.010897598000000008) (0.010931769000000008) (0.010983603500000008) (0.010836910000000005) (0.01091020949999999) (0.010763558500000006) (0.010999606999999995) (0.010824781999999991) (0.010985518500000013) (0.010952492499999994) (0.01097694149999999) (0.010967600000000008) (0.011443357500000001) (0.01119990400000001) (0.010894576000000003) (0.01108419699999999) (0.011220095) (0.010969044999999997) (0.011226131500000014) (0.010837179999999988) (0.010734660500000007) (0.010501959500000005) (0.010516900999999995) (0.0106227755) (0.010644772999999996) (0.0106882435) (0.010813902499999986) (0.010751755499999988) (0.010588638999999997) (0.011122459499999987) (0.010945472500000011) (0.010823421500000013) (0.01102700949999999) (0.01083845800000001) (0.011080453000000004) (0.010992295999999999) (0.010524174999999997) (0.010897071500000008) (0.010884227999999996) (0.010607009499999986) (0.010497314499999993) (0.010708336999999998) (0.010579232999999993) (0.010612786999999999) (0.010616447000000001) (0.010669065000000005) (0.010883743500000001) (0.01066918750000001) (0.01074425000000001) (0.010817380500000001) (0.010883844000000004) (0.010901004500000006) (0.010951749999999996) (0.010972246500000005) (0.010905763499999999) (0.010968515999999998) (0.011038360999999997) (0.0109115615) (0.010774917000000009) (0.011012449000000007) (0.011233826499999988) (0.011081441499999997) (0.010971289000000009) (0.011036562) (0.010956400500000005) (0.011071682) (0.011097729999999986) (0.011201385499999994) (0.011010174000000011) (0.010975873999999997) (0.010935946500000002) (0.010814569999999996) (0.011199597500000005) (0.011274088500000015) (0.01111492750000001) (0.011020755999999993) (0.011564288999999991) (0.011210576999999985) (0.011028001499999981) (0.011050413000000023) (0.011147813499999992) (0.011177296499999989) (0.011309793999999998) (0.011097067000000002) (0.010710273500000006) (0.010588103500000001) (0.010903475499999996) (0.010937555500000001) (0.010564920000000005) (0.0107867195) (0.010710677000000002) (0.010468441999999994) (0.01081107249999999) (0.01066676200000001) (0.010799139499999999) (0.01079095749999999) (0.010690156000000006) (0.010938232499999992) (0.010635425000000018) (0.010769741) (0.010799580500000003) (0.010788314500000007) (0.010708898499999994) (0.010724011500000005) (0.010562156000000003) (0.01042340550000001) (0.010685402499999996) (0.010535249999999996) (0.010833305000000001) (0.010950287500000017) (0.01110693800000001) (0.010727947000000002) (0.010916723500000003) (0.010861065000000003) (0.010759242499999988) (0.01078323199999999) (0.010815400000000003) (0.010900312999999995) (0.0109733115) (0.010892950500000012) (0.011001674500000003) (0.01084702450000001) (0.01094518450000001) (0.010926574500000008) (0.01109017050000001) (0.011270771999999998) (0.01104008400000002) (0.011109908999999987) (0.010940934) (0.011225039000000006) (0.0111112035) (0.010948815999999986) (0.011057947999999998) (0.011049687500000016) (0.011000537000000005) (0.010887516000000014) (0.010834145999999989) (0.011008271) (0.011043910000000018) (0.011329615500000001) (0.011136116000000001) (0.011210569500000003) (0.011149684000000007) (0.011098730999999987) (0.011337097000000004) (0.011360651499999999) (0.011068226) (0.011053446999999994) (0.010779359499999988) (0.0106922495) (0.010569424499999994) (0.010573964500000019) (0.010836387999999988) (0.010693029500000006) (0.010737895000000011) (0.010545588000000009) (0.010702641999999998) (0.010769817000000001) (0.011110590000000004) (0.010840455499999999) (0.010761406999999987) (0.010712908000000007) (0.010785475500000002) (0.010833968999999999) (0.010645306500000007) (0.0106552345) (0.010818972499999996) (0.010602459499999994) (0.010569537500000004) (0.010821327499999991) (0.010778980499999993) (0.010681172499999989) (0.011108082500000005) (0.010743975500000003) (0.010643163999999997) (0.010935396000000014) (0.010735693500000004) (0.011030430499999994) (0.010654820500000023) (0.01065959100000001) (0.011016327499999992) (0.011153622000000002) (0.01107574750000001) (0.011229556500000001) (0.011137899499999993) (0.011308607499999998) (0.011053723000000001) (0.010804984000000004) (0.011121880000000015) (0.011067850500000004) (0.0111406025) (0.011244394500000005) (0.010948444500000001) (0.010930394999999996) (0.011027153500000011) (0.011165473499999995) (0.0109404055) (0.011134285999999993) (0.010988929000000008) (0.011041666000000006) (0.010880289500000001) (0.011073042000000005) (0.010893767500000012) (0.010983589999999988) (0.011106112500000001) (0.011313969000000007) (0.010907551000000001) (0.011066800500000001) (0.011367130500000003) (0.011036181500000006) (0.010949423499999986) (0.011308392000000028) (0.01084726200000001) (0.010774627500000009) (0.01087447350000001) (0.01053605099999999) (0.010788737000000007) (0.010689583000000016) (0.010820198000000003) (0.010620951500000003) (0.010842055999999989) (0.010697797499999995) (0.010754018500000004) (0.010872208999999994) (0.010925087) (0.011070759) (0.010874656999999996) (0.010847779500000002) (0.010543512000000005) (0.010672514499999994) (0.010685816500000014) (0.010523342500000005) (0.010742513500000009) (0.010730637000000015) (0.010436665499999997) (0.011053846000000006) (0.010791658499999995) (0.010772439000000009) (0.0110132005) (0.010677403000000002) (0.010996990000000012) (0.011282114999999995) (0.010883174999999995) (0.010734833500000013) (0.011118015999999994) (0.010914621500000013) (0.01092194199999999) (0.011170210500000013) (0.01089562400000002) (0.010909351499999997) (0.011163000999999992) (0.011322502499999998) (0.011250689499999994) (0.011301787000000008) (0.011041995999999998) (0.011296291000000014) (0.011259021499999994) (0.01115421400000001) (0.011056829000000004) (0.01108911700000001) (0.011048814000000004) (0.011446623500000003) (0.010927383499999999) (0.011077575999999992) (0.01091950450000001) (0.010943038500000002) (0.011085329500000005) (0.01121213900000001) (0.011045931499999995) (0.011179981999999991) (0.011226663500000011) (0.011244776499999998) (0.011395837000000006) (0.011442172999999986) (0.011358953000000005) (0.011066964999999984) (0.010736840500000011) (0.010741063500000009) (0.01058729650000001) (0.010568223000000002) (0.010649524499999993) (0.010884744000000002) (0.010894380499999995) (0.010705738500000006) (0.010866948000000001) (0.010661683499999991) (0.010908303499999994) (0.010845793000000006) (0.010636220000000002) (0.01123265250000001) (0.01086533000000002) (0.010777756999999985) (0.010841727999999995) (0.011273815999999992) (0.010614123500000003) (0.0107400535) (0.010832155999999996) (0.010856116999999998) (0.010754960499999994) (0.010855712000000003) (0.010761840500000008) (0.011030147000000004) (0.010975177500000002) (0.010687692000000013) (0.0109533785) (0.010997823000000004) (0.010976028499999999) (0.010800986000000012) (0.011018450499999999) (0.010916593500000002) (0.010998946999999995) (0.0111652275) (0.010937409999999995) (0.010906672999999992) (0.011208480499999993) (0.010978059999999998) (0.011106933500000013) (0.011171340000000002) (0.01115534800000001) (0.011158647500000007) (0.011744210500000005) (0.011133063999999998) (0.0112935215) (0.01132063450000001) (0.011010588500000001) (0.011004315) (0.011096905500000004) (0.010982854000000014) (0.010821810500000001) (0.010985724000000002) (0.011135657499999993) (0.011066018999999996) (0.011117501500000002) (0.011340572999999993) (0.011134918500000007) (0.0111972075) (0.011231296999999987) (0.011144875499999998) (0.011252787499999986) (0.011226551000000015) (0.010688634500000002) (0.010788023999999993) (0.010747725999999999) (0.010659753500000008) (0.010603797499999998) (0.010724408000000005) (0.011013551999999996) (0.010576478000000014) (0.01065397450000001) (0.010839254500000006) (0.011067394500000008) (0.010830078499999993) (0.010840139999999998) (0.010923758999999991) (0.010894691499999998) (0.01081762700000001) (0.010671961500000007) (0.010573969000000003) (0.011071648500000003) (0.011008034500000013) (0.01086303000000001) (0.010726538500000007) (0.010743968499999992) (0.011031010000000008) (0.011004713) (0.010796818000000014) (0.010785425500000001) (0.010598928500000007) (0.011090195999999997) (0.011315911999999997) (0.010806958499999991) (0.010768769499999997) (0.011004269499999997) (0.010975125499999988) (0.011249072999999984) (0.01115827300000001) (0.011104633000000003) (0.011017562499999994) (0.010846164999999991) (0.01104122249999999) (0.011109963) (0.011157326500000023) (0.011182981000000008) (0.011335412999999989) (0.011271196999999997) (0.0110829665) (0.011529358000000003) (0.011028057999999993) (0.011073891500000002) (0.010978322499999998) (0.010830684000000007) (0.010887574000000011) (0.011221120000000001) (0.011022331500000024) (0.011247811999999982) (0.010942719500000003) (0.011291531500000007) (0.011411929000000001) (0.011317905000000017) (0.010960127000000014) (0.011478086999999998) (0.011216912499999995) (0.011311611000000013) (0.0111454775) (0.010707724000000002) (0.010617619000000009) (0.010547122999999992) (0.010679113500000004) (0.010764405000000005) (0.01066353099999999) (0.010597252000000015) (0.010816586500000003) (0.0109553565) (0.010899882) (0.011009722999999999) (0.011167179499999999) (0.011025240500000005) (0.010782081999999998) (0.010759390000000008) (0.010777247000000004) (0.010698519500000003) (0.010844930500000002) (0.010818784000000012) (0.010738167999999992) (0.010994254500000009) (0.011041910999999988) (0.010707793000000007) (0.010669472) (0.010956888999999997) (0.01093253100000001) (0.011203329499999998) (0.0110773245) (0.010877791500000011) (0.010879927499999997) (0.010826244500000012) (0.01086667949999999) (0.010932318999999996) (0.011168328500000005) (0.01129883100000001) (0.010984732499999997) (0.011086959500000007) (0.011104765000000003) (0.010975256499999989) (0.011026694000000004) (0.011265737500000012) (0.011235348500000006) (0.011296525500000001) (0.011039566500000014) (0.011354526500000003) (0.011107352000000001) (0.011134233000000007) (0.011121829499999986) (0.011118481) (0.011053906999999988) (0.01128172899999999) (0.010907735500000001) (0.011143336000000004) (0.011006090499999982) (0.01111827800000001) (0.01101985350000001) (0.011641684999999999) (0.011192748500000002) (0.011056111499999993) (0.011088876500000011) (0.0112618295) (0.011277178999999998) (0.011438119999999996) (0.011100582499999997) (0.010699067000000007) (0.0106774335) (0.010622887000000011) (0.010706851999999989) (0.010804764000000008) (0.010738463000000018) (0.010755926500000013) (0.01080462950000001) (0.010675551000000005) (0.010779029499999995) (0.010750942999999999) (0.010934906999999994) (0.010729734500000004) (0.01094695300000001) (0.01063073049999999) (0.01065508350000001) (0.01071639399999999) (0.010503574000000002) (0.0107179315) (0.010815761000000007) (0.011162831000000012) (0.010854081000000015) (0.010901125499999997) (0.010503718500000009) (0.010814582500000003) (0.01111901400000001) (0.011053852500000003) (0.010624639499999991) (0.011065745000000002) (0.01078153150000001) (0.010674617000000011) (0.010786227999999995) (0.011145033499999998) (0.011072172499999991) (0.011052919999999994) (0.011107286999999993) (0.011107705500000009) (0.01099452799999999) (0.011070224000000004) (0.010888821500000007) (0.01126575199999999) (0.011237821999999995) (0.011248930000000018) (0.010971887999999999) (0.011268225999999992) (0.011117847500000014) (0.011427589000000002) (0.011111636500000022) (0.010931142500000018) (0.010983211500000006) (0.010811630500000002) (0.010993074000000005) (0.01113033699999999) (0.011876059999999994) (0.010968248500000014) (0.01119073000000001) (0.011404401499999994) (0.011091716500000001) (0.011007670499999997) (0.011035290499999975) (0.011215045500000007) (0.011590218499999999) (0.011017910000000006) (0.011150907499999987) (0.0106908525) (0.010811266) (0.010470245000000003) (0.010901422000000008) (0.010558276000000005) (0.010682914500000001) (0.010473384500000002) (0.010574142000000009) (0.010658850500000011) (0.010678896500000007) (0.010905733500000014) (0.010928691000000018) (0.011235778000000002) (0.010742864000000005) (0.010591650500000008) (0.010673158000000002) (0.010706373500000005) (0.0107110745) (0.01073073699999999) (0.010695624999999986) (0.01070156600000001) (0.010636922500000007) (0.010871204499999995) (0.010679802500000002) (0.010868061499999998) (0.010824791499999986) (0.010727684500000015) (0.010779763999999997) (0.010831342000000008) (0.010912124499999995) (0.010878779500000019) (0.010836104499999985) (0.010954024999999992) (0.010921635499999999) (0.010892186999999998) (0.011008885999999996) (0.010960944500000014) (0.010973261000000012) (0.011175279999999996) (0.010785928) (0.011169457000000022) (0.011257705000000007) (0.011133235999999977) (0.01107440500000001) (0.011142595499999991) (0.011072815500000027) (0.011339304000000008) (0.011246721500000015) (0.011129742499999998) (0.010808697000000006) (0.010905545000000003) (0.011119653500000007) (0.011004029499999998) (0.011026225000000014) (0.011182906500000006) (0.011305813000000012) (0.011308726000000005) (0.0110177085) (0.010913353499999986) (0.011088173500000006) (0.011247066500000014) (0.011298481999999999) (0.0109976985) (0.010964112500000026) (0.010863439000000003) (0.01084217500000001) (0.010704922000000006) (0.010568342499999994) (0.010586328500000006) (0.010800638000000001) (0.010648291500000004) (0.010738965500000003) (0.011218386999999982) (0.010947785499999987) (0.010557107999999996) (0.010743877500000013) (0.010811353499999996) (0.010859284999999996) (0.010634640000000015) (0.010947272499999994) (0.010613366999999999) (0.010818984500000003) (0.010942055000000006) (0.010763558499999992) (0.010786252999999996) (0.010510947499999992) (0.010508216) (0.01076299) (0.011068083000000006) (0.011126193000000006) (0.010904325500000006) (0.011019609499999986) (0.011008420500000005) (0.010942393499999994) (0.010824360500000005) (0.010827520000000007) (0.010942221000000016) (0.0112007135) (0.010937605500000003) (0.011095269000000005) (0.011155904500000008) (0.011066997500000009) (0.011139127999999998) (0.01113712650000001) (0.01106393500000001) (0.011120566499999998) (0.011030405500000007) (0.010955406999999986) (0.01117403850000001) (0.011348021) (0.011087064500000007) (0.011407938999999992) (0.010924150000000007) (0.011127250000000005) (0.011025496999999995) (0.011028023500000012) (0.011073745999999995) (0.01095196000000001) (0.011200208500000003) (0.011029079499999997) (0.011299952500000002) (0.011285799) (0.011287271499999973) (0.011162586500000016) (0.01127827000000002) (0.011053657000000022) (0.011081114999999989) (0.011418034000000007) (0.0109090575) (0.010667377499999992) (0.010672796499999998) (0.010634852) (0.010661043999999995) (0.010728786500000004) (0.0109163085) (0.010711446500000013) (0.011025575999999981) (0.011033412999999992) (0.010911683500000005) (0.010916830999999988) (0.010629397999999998) (0.0108872795) (0.010756705499999991) (0.010948126499999988) (0.010615655500000001) (0.010756473500000002) (0.010835119000000004) (0.011018876999999996) (0.011139095500000015) (0.010604070499999993) (0.010665780000000014) (0.01063497749999999) (0.010833759499999998) (0.010739123999999989) (0.010844641499999988) (0.01076018949999999) (0.010966842500000018) (0.01063240800000001) (0.010691533499999989) (0.01065255750000002) (0.01115039100000001) (0.011039787500000009) (0.011175721) (0.01111085349999999) (0.010800785999999993) (0.0110075845) (0.01095299000000001) (0.010959242500000008) (0.010979324999999998) (0.01114499599999999) (0.011277936499999988) (0.011236100499999985) (0.011204806499999997) (0.011167313000000012) (0.011210407000000006) (0.011218961) (0.010830420999999993) (0.010968032500000002) (0.011124611500000006) (0.011107682500000007) (0.011053298500000017) (0.011215129999999976) (0.011057350499999993) (0.011020010999999982) (0.011296445500000002) (0.011055735999999997) (0.011102199999999993) (0.011143687499999985) (0.011179052999999994) (0.011037930000000001) (0.011386368500000008) (0.011050212000000004) (0.012547429999999998) (0.012837278500000007) (0.0135959405) (0.013045189499999998) (0.012982672500000014) (0.012720542500000001) (0.013288288999999995) (0.012856129999999993) (0.013109396500000009) (0.013074236000000003) (0.012793350500000009) (0.013074050500000003) (0.013269634999999988) (0.012952718000000002) (0.013123332000000001) (0.012925429000000002) (0.012799053000000005) (0.012726585999999998) (0.013277815000000012) (0.012777859000000003) (0.012806940500000016) (0.013155232499999989) (0.013020516499999996) (0.013074964499999994) (0.013134439999999997) (0.013026322500000007) (0.012954694000000017) (0.013008342499999992) (0.013444942000000001) (0.013229246) (0.01301749449999999) (0.012957853000000005) (0.013254878499999997) (0.0136861375) (0.01314821699999999) (0.013197443000000017) (0.013571118000000007) (0.013302237499999994) (0.013107108999999992) (0.013402439000000002) (0.0132193575) (0.013117287499999991) (0.01332439349999999) (0.013175386999999997) (0.013640793499999984) (0.013289017) (0.013310452) (0.013141223500000007) (0.013259633000000007) (0.013245131999999993) (0.013461497500000003) (0.013332190500000021) (0.013589004999999987) (0.013324908499999996) (0.013017498500000002) (0.013208042000000003) (0.013357769500000005) (0.013442589000000005) (0.013545946499999989) (0.01369538050000002) (0.013149303000000001) (0.013661607000000006) (0.013628790999999987) (0.013526494500000014) (0.0128661615) (0.012965642) (0.013029548999999988) (0.013145174999999995) (0.012818931000000006) (0.012901936999999988) (0.013048615999999999) (0.013279820999999997) (0.013119083500000003) (0.012968329000000015) (0.0130428675) (0.013317364499999998) (0.013129084000000013) (0.013168907500000007) (0.013125005999999995) (0.013277109499999995) (0.012924887999999995) (0.012976129999999989) (0.013166786500000013) (0.0128082885) (0.013024302499999987) (0.013148227999999998) (0.013126504999999997) (0.012729739500000004) (0.013047191) (0.013239550999999988) (0.013268879999999997) (0.012914987000000003) (0.01330319349999999) (0.012908706500000006) (0.013277838999999986) (0.012966021499999994) (0.01318038249999999) (0.01368005600000001) (0.013301432500000002) (0.013322315000000001) (0.013230813999999994) (0.013404002999999998) (0.013160271000000001) (0.013222213999999996) (0.013521064499999999) (0.013265395) (0.013165059500000006) (0.013129179500000004) (0.013266628500000002) (0.013557099000000003) (0.013372269499999992) (0.013455871499999994) (0.0136370975) (0.013167953499999996) (0.013254738500000016) (0.0137555585) (0.013146534000000001) (0.013099864499999989) (0.013054655500000012) (0.013518296500000013) (0.013598132499999999) (0.013471307000000002) (0.0131754595) (0.013465019999999994) (0.013334488500000005) (0.013204418499999995) (0.013407483499999998) (0.013311063000000012) (0.012709296999999994) (0.012998468999999985) (0.013171994499999992) (0.013003614499999996) (0.012734026999999995) (0.01285520150000001) (0.012976481499999998) (0.012883969000000009) (0.013411474499999992) (0.012880452) (0.012837558500000013) (0.013339214499999988) (0.012776331500000015) (0.01287899549999999) (0.012958868499999998) (0.013201006500000001) (0.012939542499999998) (0.012824061999999997) (0.013084509999999994) (0.012982171) (0.012924039000000012) (0.012795007999999997) (0.01269982800000001) (0.013366054500000002) (0.013097574000000015) (0.013109176500000014) (0.013008154499999994) (0.013200916999999993) (0.013490703499999993) (0.012996112000000004) (0.013229537) (0.013235270000000007) (0.013099578) (0.013379778999999994) (0.013119058999999988) (0.013398477000000006) (0.013161581500000005) (0.013220494) (0.013385585000000005) (0.013146151499999995) (0.013567495999999984) (0.013231133500000006) (0.0130969435) (0.01324831700000001) (0.013481103999999994) (0.013486508500000008) (0.013259280999999998) (0.013298989999999997) (0.013137922499999996) (0.013275831499999988) (0.013360809500000001) (0.013130590999999997) (0.01359718) (0.013040767999999994) (0.013384219500000016) (0.013213045000000007) (0.0132956625) (0.013548446499999992) (0.013100122000000006) (0.013447319500000013) (0.013337660999999987) (0.013571639999999996) (0.013376419) (0.013439627999999995) (0.013216996500000022) (0.012879053500000015) (0.013354894499999992) (0.013071558000000011) (0.01282600099999999) (0.013170788500000002) (0.013320388500000002) (0.012990023999999989) (0.012834345999999996) (0.01332926000000001) (0.013225422) (0.01380659300000002) (0.013059913000000006) (0.012937400999999987) (0.013110680999999999) (0.013720396499999996) (0.012844182999999995) (0.012778767499999996) (0.013102548000000006) (0.013411253499999998) (0.012889101) (0.013555433500000005) (0.012833517500000002) (0.012946631499999986) (0.013242494500000021) (0.012986080999999997) (0.013027898499999996) (0.01347022099999999) (0.012904791499999999) (0.01332841600000001) (0.013088873000000015) (0.013121540999999987) (0.013482584000000006) (0.013221165000000007) (0.013146742500000003) (0.013319177999999987) (0.013101020000000005) (0.013381794500000002) (0.013429525499999997) (0.013265396499999998) (0.013640738) (0.013816602999999997) (0.013656757000000005) (0.013145897500000003) (0.013497636000000007) (0.013123924500000009) (0.013291869500000011) (0.013328978499999991) (0.014135100500000011) (0.013269686000000003) (0.013081734999999997) (0.013231265500000006) (0.013295510999999996) (0.013315940999999998) (0.01310240850000001) (0.013345330499999988) (0.013210585999999996) (0.013216970499999994) (0.013148709499999994) (0.013691401000000006) (0.013373724500000003) (0.013632171999999998) (0.013292317999999984) (0.013320182) (0.013397947999999993) (0.013191787999999996) (0.012950436499999982) (0.012958579500000011) (0.013628630000000003) (0.013060799999999997) (0.012975721999999995) (0.01297694299999999) (0.013109118499999989) (0.01313948899999999) (0.012977724999999996) (0.0130064825) (0.01301783899999999) (0.01303243300000001) (0.012882875000000002) (0.013257719000000001) (0.012702046999999994) (0.012930358000000003) (0.012768504999999986) (0.01293290300000001) (0.012913983500000004) (0.012926152499999982) (0.012936079000000003) (0.013201337500000007) (0.013362996000000002) (0.013294852499999996) (0.013108653499999998) (0.013019869000000003) (0.012889789499999985) (0.013092962500000013) (0.013255622499999994) (0.013306855500000006) (0.01331656199999999) (0.013294206499999989) (0.013300193500000002) (0.013493022999999993) (0.013214547999999993) (0.013432811999999988) (0.013119171999999998) (0.013395113) (0.013496150000000012) (0.013340764000000005) (0.013388567500000004) (0.013407054500000001) (0.013347347499999995) (0.013497734000000011) (0.013169745499999996) (0.013566944000000011) (0.013194362500000015) (0.013703407) (0.013311820000000002) (0.013360227500000002) (0.012959011500000006) (0.013006252500000023) (0.013068576500000012) (0.013374838500000014) (0.01344315950000001) (0.013144567999999995) (0.013607449499999993) (0.013288213999999993) (0.01328679449999999) (0.013449160000000002) (0.013334790499999999) (0.013444340999999999) (0.013262475499999996) (0.013054915500000014) (0.012923203500000008) (0.012959279500000004) (0.012770382499999997) (0.013101163000000013) (0.013078031500000004) (0.013066793499999993) (0.013029060999999995) (0.012784849000000001) (0.01305026799999999) (0.013099023500000001) (0.013233825500000004) (0.013325604500000005) (0.013338762000000004) (0.012747483500000004) (0.013027546000000001) (0.013235292999999995) (0.013239343) (0.013264796999999995) (0.012883592500000013) (0.012896016999999996) (0.013394290500000003) (0.013195507500000009) (0.013157270499999998) (0.013024135999999992) (0.013084777000000006) (0.01331070749999999) (0.012845251000000002) (0.013180109999999995) (0.013170314499999988) (0.013083325500000006) (0.013317809499999986) (0.013248910000000003) (0.013010617000000002) (0.013271340499999992) (0.013159837000000008) (0.013304019000000014) (0.013134041499999999) (0.0131851885) (0.013413704499999998) (0.013638218499999993) (0.013098413500000003) (0.013229151999999994) (0.013310292499999987) (0.013400979500000007) (0.013486174500000003) (0.013587695499999997) (0.013341825500000001) (0.0135278375) (0.013515539500000007) (0.013307529999999998) (0.013621671000000002) (0.013359984500000005) (0.013181673000000005) (0.013194949999999997) (0.013487060000000009) (0.013165641500000005) (0.013216639000000016) (0.013284108000000017) (0.01367864299999999) (0.013570667000000008) (0.013275718000000006) (0.013877734500000016) (0.012759702499999998) (0.012573909500000008) (0.013239583499999985) (0.012865561500000011) (0.01294379100000001) (0.012874862000000015) (0.012859396500000009) (0.013208204000000001) (0.013341407) (0.012960403499999995) (0.013174933999999985) (0.012946360000000004) (0.013371859000000014) (0.013135530500000006) (0.012942497500000011) (0.013109888) (0.0128737815) (0.012875494000000001) (0.013007801500000013) (0.012860770000000007) (0.012810844500000002) (0.012852867500000004) (0.012892467500000004) (0.01306277950000001) (0.01349131549999999) (0.013027400499999994) (0.013126901999999996) (0.012956270499999992) (0.012850399500000012) (0.013104171999999997) (0.013378852999999996) (0.013023155000000008) (0.013185884999999994) (0.013251434499999992) (0.013097337) (0.013481455500000003) (0.013609903000000007) (0.013443930499999993) (0.01309911200000001) (0.013265101000000001) (0.013135452999999991) (0.013290122000000001) (0.013340850000000015) (0.01351338149999999) (0.013176322500000004) (0.013188917999999994) (0.013006527500000004) (0.013501649000000004) (0.013238457500000009) (0.013119808999999996) (0.013330303999999987) (0.013478487500000011) (0.013403204500000002) (0.013499438500000002) (0.013188831499999998) (0.013948956999999998) (0.013277171000000004) (0.01346650349999999) (0.013354458999999999) (0.013316450999999993) (0.013218306999999999) (0.013498981499999993) (0.013553212500000009) (0.01335083649999999) (0.013236901500000009) (0.012802075499999996) (0.012867794499999988) (0.01315353050000001) (0.013074840000000018) (0.012848890500000001) (0.013290145999999989) (0.012987790999999999) (0.013083955500000008) (0.013308002499999999) (0.012965038999999998) (0.013235797999999993) (0.013183255500000005) (0.013020030000000016) (0.013003723000000009) (0.013450550500000005) (0.012869305499999997) (0.01297827650000001) (0.0128488395) (0.01334553749999999) (0.013085900999999997) (0.01310383150000001) (0.013086068500000006) (0.012905609999999998) (0.013033815000000004) (0.013105729499999996) (0.013308273499999995) (0.013022792500000005) (0.013568517499999988) (0.013153465499999989) (0.012920235000000002) (0.01312632750000002) (0.01340520349999999) (0.013179596000000002) (0.013341544499999997) (0.013546699999999995) (0.013619138999999988) (0.013144167999999998) (0.013174655999999993) (0.013333561500000007) (0.013458165499999994) (0.013261146499999987) (0.013280847999999998) (0.013846314999999984) (0.0133356065) (0.013870782499999998) (0.01346376199999999) (0.013417318499999997) (0.013024123000000012) (0.013142526500000001) (0.013173920500000005) (0.013253327999999995) (0.013416343999999997) (0.013490777500000009) (0.013337451) (0.013207005499999994) (0.013283739500000016) (0.013509973500000008) (0.013343252) (0.013555987500000005) (0.013572857000000008) (0.01388059749999998) (0.01338442200000002) (0.013431874500000024) (0.013005472000000004) (0.01292741900000001) (0.01290762849999999) (0.012801930500000003) (0.013084701000000004) (0.013210208000000015) (0.013035149499999996) (0.013023784499999996) (0.013241269499999986) (0.013215405999999999) (0.013111709) (0.013006364999999992) (0.013067374999999992) (0.013225166999999996) (0.013028068500000003) (0.013179877000000007) (0.013019237000000003) (0.012941433500000002) (0.013194911000000004) (0.013220065500000003) (0.012832936500000017) (0.013004716) (0.013062885499999982) (0.012973053999999998) (0.013161229499999996) (0.013117483999999985) (0.012991076000000004) (0.013109171000000003) (0.012925744999999988) (0.01326350400000001) (0.013051746500000003) (0.013049803999999998) (0.013400113500000005) (0.013629187000000001) (0.013060768499999986) (0.013130633500000002) (0.013428955500000006) (0.013587648999999993) (0.013692943499999999) (0.013353140999999999) (0.013441194000000004) (0.013411924999999991) (0.013324278000000009) (0.013251783000000017) (0.013344457500000004) (0.013275192000000005) (0.013459517000000004) (0.013740090999999996) (0.013323688500000014) (0.013264837500000001) (0.013141492000000005) (0.013406184500000015) (0.013317034500000005) (0.013300904000000016) (0.013174542499999997) (0.013344898000000008) (0.013774494000000012) (0.013306389000000002) (0.013332397499999996) (0.013122584999999992) (0.013544313500000002) (0.013290460000000004) (0.013208112999999994) (0.0130886645) (0.013148791500000007) (0.013081137000000007) (0.01307936350000001) (0.012861416000000014) (0.012835404499999994) (0.012987593500000005) (0.013286487) (0.012973809000000017) (0.01317768050000001) (0.013239892499999989) (0.012779234) (0.012845273000000004) (0.013247585500000006) (0.013057105999999999) (0.0128698525) (0.0128788695) (0.013111656999999999) (0.012889503999999996) (0.0130067965) (0.012964575500000006) (0.013357273499999989) (0.013164917500000012) (0.012827152000000008) (0.013123902500000006) (0.012755827499999997) (0.013398915499999997) (0.013118773) (0.013169563999999995) (0.013474048000000002) (0.01307681500000002) (0.013065790999999993) (0.013034753999999996) (0.013402129999999984) (0.013696634) (0.013300944000000009) (0.013116095499999994) (0.013535316500000005) (0.013374502499999996) (0.013513479000000009) (0.013425014499999999) (0.01302610999999998) (0.013585610999999997) (0.013275228) (0.013125879000000007) (0.013390753000000005) (0.013343240500000006) (0.013375104499999999) (0.013538241999999992) (0.013480164000000017) (0.013654742000000011) (0.013542845999999997) (0.013236027499999983) (0.013377401999999997) (0.013137239999999994) (0.01299422750000001) (0.01358129100000001) (0.013366440500000007) (0.013388349499999994) (0.013494746999999988) (0.01366484200000001) (0.013161586499999989) (0.013357642500000003) (0.013327942499999995) (0.013407827999999997) (0.013010936) (0.01300303650000001) (0.012991581500000016) (0.013183854000000009) (0.012951665000000001) (0.013082725000000003) (0.013118206000000007) (0.01305446049999999) (0.013134644000000001) (0.013448934999999995) (0.01366094000000001) (0.012783983499999999) (0.013094043000000014) (0.013732363499999997) (0.012894058) (0.013327287999999979) (0.013149316999999994) (0.012938344500000004) (0.013320087000000008) (0.01340071100000001) (0.013168101500000001) (0.013631003000000003) (0.013886839999999984) (0.013103728500000009) (0.013186324999999999) (0.013355833499999997) (0.012963024000000004) (0.012939112000000003) (0.01330885200000001) (0.013040677499999986) (0.013125256500000002) (0.013377677000000004) (0.013177797000000005) (0.013165491500000001) (0.013083744000000008) (0.013390888500000003) (0.013254979) (0.013072245999999996) (0.013459089999999993) (0.01380684) (0.013303987000000003) (0.013390680500000002) (0.013174513999999998) (0.013317285499999998) (0.013197978999999999) (0.01348318250000001) (0.01376525449999999) (0.013103154499999992) (0.013762368999999997) (0.01326100949999999) (0.013099733999999988) (0.013348135999999997) (0.013162794500000005) (0.013318305000000016) (0.013297564500000011) (0.013363182000000015) (0.013282642999999997) (0.0135445805) (0.013465219000000014) (0.01329371800000001) (0.013929217500000007) (0.01397422050000001) (0.013230312499999994) (0.013289082000000008) (0.013078869999999992) (0.013128504000000013) (0.013187464999999995) (0.013081207499999997) (0.0130976535) (0.012745167500000001) (0.013062445000000006) (0.013156075500000003) (0.013103781999999994) (0.013090864499999993) (0.012937005500000001) (0.01304735750000001) (0.012976543000000007) (0.013136952000000007) (0.01286050050000001) (0.013037598499999997) (0.0131647295) (0.013164475499999995) (0.013265257000000003) (0.01302246600000001) (0.012757223499999984) (0.013231757999999996) (0.013094535000000004) (0.013311364500000006) (0.013090841500000006) (0.013077004499999989) (0.013281146000000008) (0.013068843999999996) (0.013078951499999991) (0.012938129500000006) (0.012858835000000013) (0.013672061999999999) (0.013444047) (0.013186577000000005) (0.0130876345) (0.013269238500000002) (0.013409537000000013) (0.013614043500000006) (0.013340007500000015) (0.013371311999999996) (0.013328952500000005) (0.013715302499999998) (0.013524514000000015) (0.013315814999999995) (0.013351784000000005) (0.013488912000000006) (0.013307132999999999) (0.013208544500000002) (0.013319419999999998) (0.013308884000000007) (0.013618540999999998) (0.013258302999999999) (0.013125082499999996) (0.013537995499999997) (0.013277001999999996) (0.0131928605) (0.013591397500000005) (0.013458752500000004) (0.013270141499999999) (0.013414400499999993) (0.013654750000000007) (0.013622224499999988) (0.013747491499999973) (0.013190003500000005) (0.012945430999999993) (0.013296864499999991) (0.0127056205) (0.013108420999999995) (0.013186739000000003) (0.012882763500000019) (0.012833475999999996) (0.012784826499999999) (0.012954117000000001) (0.013129338500000004) (0.012912606999999993) (0.012921938500000008) (0.013134874500000004) (0.013171891000000005) (0.013084303500000005) (0.012894950499999988) (0.012945832500000004) (0.012840617500000012) (0.013144745499999999) (0.012895822499999987) (0.013368764500000005) (0.012784073499999993) (0.012922086499999999) (0.01289696550000001) (0.013166730500000001) (0.013025205499999998) (0.013128307999999991) (0.013379812000000005) (0.013094808999999999) (0.012978023500000005) (0.012890731000000002) (0.012934901999999998) (0.013338007999999985) (0.013400205499999998) (0.013559705499999991) (0.013175631999999993) (0.013194262999999998) (0.012992720999999999) (0.013410318500000004) (0.01339388300000001) (0.013469981500000006) (0.013233775000000003) (0.013665076000000012) (0.013274019999999997) (0.013528045000000016) (0.013479098999999994) (0.013476251999999994) (0.013386544) (0.01330843850000002) (0.013454605499999994) (0.013254893500000017) (0.013864262499999988) (0.013968019499999998) (0.013234613500000006) (0.013299405999999986) (0.013310823999999999) (0.01313805350000001) (0.013505467499999993) (0.013258014999999998) (0.013517226000000007) (0.013174171499999998) (0.013731913000000012) (0.013723189999999996) (0.013623602500000012) (0.012935892000000004) (0.012930926999999995) (0.012950320999999987) (0.012796065500000009) (0.012761940499999999) (0.012969659000000008) (0.012989955999999997) (0.012951794000000003) (0.012993400500000002) (0.012986621000000004) (0.013109999499999997) (0.013240539999999995) (0.013189271500000002) (0.012964818500000003) (0.012876574500000015) (0.01294483099999999) (0.013009888000000011) (0.013318821499999994) (0.013049932000000014) (0.013129132500000001) (0.012765028499999997) (0.01310058700000001) (0.012972261000000013) (0.01283848600000001) (0.013170921500000002) (0.013296907999999996) (0.013008427500000003) (0.013026424499999995) (0.012936894000000004) (0.013417348499999995) (0.012917676999999989) (0.013449230999999992) (0.013336448500000014) (0.013261739000000008) (0.013756613500000014) (0.013344292499999993) (0.013273797000000004) (0.013354662999999989) (0.013153206500000014) (0.013468997999999996) (0.013274144500000001) (0.013256932000000013) (0.0131689205) (0.013476844999999987) (0.013275436500000001) (0.013418494500000003) (0.013322640499999996) (0.013278148500000003) (0.01365055200000001) (0.013363137499999997) (0.013288915499999998) (0.01319782550000001) (0.013158377999999998) (0.013212467999999991) (0.013602180499999991) (0.013049047999999994) (0.013741032) (0.01381821200000001) (0.013252241999999997) (0.013772376000000003) (0.013558434499999994) (0.013583459999999992) (0.013506533500000015) (0.013642508499999997) (0.012908714999999987) (0.012868184000000005) (0.0129958045) (0.012828937999999998) (0.012950318499999988) (0.012986381499999991) (0.013341366500000007) (0.013175116) (0.013047181000000005) (0.013019167000000012) (0.013393388500000006) (0.013456119000000002) (0.013475166999999982) (0.013025195999999989) (0.013023297000000003) (0.012916319999999995) (0.01274304250000001) (0.012999871999999996) (0.013073922500000001) (0.01297451550000002) (0.013114355999999994) (0.013130402) (0.012886601999999983) (0.0131389425) (0.013057631) (0.013060789500000003) (0.012872469500000011) (0.013091399500000003) (0.013103870000000004) (0.013051095999999998) (0.013163786999999996) (0.012859239000000008) (0.013282912999999993) (0.013599701499999992) (0.013353891499999992) (0.013121409499999986) (0.013061613) (0.013553942) (0.013179733499999985) (0.013230840500000007) (0.013324393500000004) (0.013439909) (0.013366428999999999) (0.013288049999999996) (0.013274891999999996) (0.013091240500000004) (0.013280163999999997) (0.013402886000000003) (0.013217418499999994) (0.013062461999999997) (0.013491853999999998) (0.013217443499999995) (0.013225579000000001) (0.013383932499999987) (0.01303568899999999) (0.013189233999999994) (0.013951745000000002) (0.013471245999999992) (0.013363955000000025) (0.013633601999999995) (0.013309630000000003) (0.013187610499999988) (0.013434737499999988) (0.013628890000000018) (0.013258871000000005) (0.012969620500000001) (0.012935548500000005) (0.012985196500000004) (0.013379834000000007) (0.013063958000000014) (0.013113502500000013) (0.013302554000000008) (0.013335479500000011) (0.012953113499999988) (0.013096709500000012) (0.013148853499999988) (0.012886751000000002) (0.013274720500000003) (0.0131710565) (0.013022548000000009) (0.013335046500000003) (0.013006504500000002) (0.012977593999999995) (0.01325000250000001) (0.012909384999999995) (0.01281679450000002) (0.013553535999999991) (0.013151189499999993) (0.013153958000000007) (0.013068296500000007) (0.013199160000000015) (0.012975017500000005) (0.013114224999999993) (0.013074192000000012) (0.012912276999999986) (0.013108944500000025) (0.013075519999999993) (0.013274611499999991) (0.013454385) (0.013449307000000008) (0.013478273499999999) (0.013489387499999991) (0.013308143999999994) (0.01338478849999998) (0.013265973500000014) (0.013324892500000005) (0.013493929500000001) (0.013718542) (0.013114769999999998) (0.013497018500000013) (0.013272300999999986) (0.013570759500000001) (0.013170478499999999) (0.013468325499999989) (0.013498419999999997) (0.013415590000000005) (0.01317613749999999) (0.013509290000000007) (0.01350875) (0.013143191999999998) (0.013151805000000016) (0.01359184250000002) (0.013434537499999982) (0.013300920499999994) (0.013494955999999989) (0.013498300500000004) (0.013160606500000019) (0.013265001000000012) (0.013072252000000006) (0.013200317500000003) (0.013213191499999999) (0.013288359) (0.012925172499999998) (0.013260081999999992) (0.013168684) (0.012844036999999989) (0.013032739000000015) (0.013150484500000004) (0.01317545399999999) (0.012955771500000005) (0.013358764999999995) (0.013029316000000013) (0.013207724000000004) (0.012942291500000008) (0.013332820500000009) (0.013034798) (0.012860654999999985) (0.012770848500000001) (0.012830692000000005) (0.012897867500000007) (0.012966205499999994) (0.012756008499999999) (0.013548254999999995) (0.012863309500000017) (0.013337936999999994) (0.013051489999999985) (0.012993548500000007) (0.013064441499999996) (0.013005179500000005) (0.01304857000000001) (0.013057669500000008) (0.013346070500000001) (0.013601781499999993) (0.013162166000000003) (0.013367854000000012) (0.012956016) (0.013852332999999994) (0.013364478999999999) (0.013199632000000017) (0.013505786500000005) (0.013394279999999995) (0.013497174) (0.013638364500000014) (0.013333643499999992) (0.013546390500000005) (0.013721588000000007) (0.013652908000000005) (0.013256910499999996) (0.013053597499999986) (0.013504252000000008) (0.013324455499999999) (0.013343568) (0.013145011999999998) (0.013137552999999996) (0.013196861500000004) (0.013590287500000006) (0.013155772499999996) (0.013315696500000002) (0.013438874000000003) (0.013382996999999994) (0.013307564500000008) (0.013403998) (0.012865222999999995) (0.01275685800000001) (0.013259648500000012) (0.013082559000000007) (0.012854699499999997) (0.013238526) (0.012887269999999992) (0.013176411499999985) (0.012945061500000007) (0.012833082999999995) (0.0134589465) (0.01307045350000001) (0.012962947000000002) (0.013045381500000008) (0.013194161499999996) (0.012691305) (0.01305906250000001) (0.012900493499999999) (0.012913070499999985) (0.013141156999999987) (0.012979768500000002) (0.012904374499999996) (0.013086977999999999) (0.012992203999999993) (0.01296143999999999) (0.013482681499999996) (0.013055359999999988) (0.01301865399999999) (0.013098218500000008) (0.013092941999999996) (0.013254369000000016) (0.013222206500000014) (0.013068043500000001) (0.013309376999999997) (0.013100512999999994) (0.013412663000000005) (0.013521804999999998) (0.013365255500000006) (0.013385766000000007) (0.013175035000000002) (0.013147276) (0.013455171000000002) (0.013347728000000003) (0.01319369350000002) (0.013239725499999994) (0.013485181499999999) (0.01373194450000001) (0.013416817499999997) (0.01343105800000001) (0.013228053000000004) (0.01317646800000001) (0.012998864499999999) (0.013209210999999998) (0.013162508000000003) (0.013141796000000011) (0.012986363999999986) (0.0131201985) (0.013347870499999984) (0.013233688500000021) (0.013598922) (0.013801081500000006) (0.01356342449999999) (0.013214956000000014) (0.013232203999999997) (0.013111682) (0.012882854499999999) (0.012793238499999998) (0.013275352500000004) (0.012927281999999998) (0.012891811499999989) (0.013249051500000011) (0.013315411499999999) (0.01304479850000001) (0.012934120500000007) (0.013316967500000013) (0.013258976499999992) (0.013046533500000013) (0.012869137500000002) (0.013052145000000001) (0.012930441) (0.012945919999999986) (0.012827563) (0.012848961500000006) (0.0128426705) (0.012762692499999992) (0.012851779000000008) (0.012902338999999999) (0.013025308499999999) (0.013073306000000007) (0.012874318999999995) (0.013098032499999995) (0.013142003999999999) (0.012930324000000007) (0.01313862049999999) (0.01290145849999999) (0.013007396500000004) (0.013597643000000006) (0.012986456000000007) (0.013400259499999984) (0.01330096850000001) (0.013303146500000015) (0.013419706000000003) (0.013239232500000003) (0.013599295499999997) (0.01341216449999999) (0.013525228) (0.013283061499999999) (0.013723928499999996) (0.013512528999999995) (0.013500782000000017) (0.013643738000000016) (0.01317980399999999) (0.013295004999999999) (0.013475535499999997) (0.013047681000000005) (0.013205381999999988) (0.013426854500000002) (0.013401537499999991) (0.013418225000000006) (0.013334673500000005) (0.013187563999999999) (0.013639673000000005) (0.013311707000000006) (0.013301337499999996) (0.013628929499999998) (0.013657646999999995) (0.01334254850000001) (0.013188253000000011) (0.013117822000000015) (0.012683487000000007) (0.013016728000000005) (0.01312092699999999) (0.013267506499999998) (0.01298740100000001) (0.012888441) (0.0132372355) (0.013304686499999996) (0.012815224) (0.01326052400000001) (0.013040102499999998) (0.013273000000000007) (0.013291013500000018) (0.01300731949999999) (0.013031923) (0.013155284500000003) (0.012855557500000003) (0.012866707500000005) (0.012834099500000001) (0.013068839499999998) (0.01277436450000001) (0.013320419) (0.012822208499999987) (0.013144899499999987) (0.013284611500000001) (0.01296928550000001) (0.013351671500000009) (0.01280805950000001) (0.012924439499999996) (0.01300526149999999) (0.013080205999999997) (0.013379447500000002) (0.013236035499999993) (0.013381520500000008) (0.013398160499999992) (0.013260211500000008) (0.013427601999999997) (0.013436574500000006) (0.01313750100000001) (0.013269329499999996) (0.013428141500000004) (0.013371970999999996) (0.013407845000000015) (0.0133889975) (0.013304191500000007) (0.013291991500000003) (0.013240983500000011) (0.01352532049999998) (0.013162216000000004) (0.013473475999999998) (0.013550580000000007) (0.013431131999999985) (0.013196775499999994) (0.013164807) (0.01329102) (0.013524769999999992) (0.013266921000000001) (0.013595470500000012) (0.013532113999999984) (0.013365345999999986) (0.013469987000000003) (0.013563263000000006) (0.013446141000000009) (0.012932905500000008) (0.0128915) (0.012928155499999996) (0.0127834005) (0.013002434999999993) (0.012935594500000008) (0.012908453499999986) (0.013141540999999993) (0.012838506999999999) (0.013074863999999992) (0.013166323500000007) (0.012942514000000016) (0.013360259000000013) (0.01316341900000001) (0.013157477000000015) (0.01312511000000001) (0.012942964500000015) (0.013042548000000001) (0.013066440499999998) (0.013113027499999999) (0.012841451000000004) (0.013089631500000004) (0.012670160000000014) (0.012880711500000003) (0.013063200499999997) (0.01319236850000001) (0.0128099495) (0.012935442999999991) (0.013249403000000007) (0.013273063000000002) (0.013009542999999998) (0.012870145999999999) (0.013426779) (0.013378324999999996) (0.013317583999999993) (0.013202561999999987) (0.01315243549999999) (0.013635000500000008) (0.013617881000000012) (0.013424012500000013) (0.013380849999999986) (0.013425962999999985) (0.013149056000000006) (0.013414326000000004) (0.013499742499999995) (0.013228615999999999) (0.013227690999999986) (0.013497157499999995) (0.013279002999999984) (0.013863047999999989) (0.013149182999999995) (0.01356243900000001) (0.013347626500000001) (0.013443945499999999) (0.013671016000000008) (0.013266324499999996) (0.01347896350000001) (0.013704492499999998) (0.013279937999999991) (0.013382952999999989) (0.013653771500000009) (0.013102484000000011) (0.013381044000000022) (0.013524098000000012) (0.01337208799999999) (0.012743206000000007) (0.012944023499999999) (0.012962183499999988) (0.013401164499999993) (0.013270851999999986) (0.013036781499999997) (0.01291202100000001) (0.013214187499999988) (0.013162264500000007) (0.012980855999999999) (0.012916836000000001) (0.012926845999999992) (0.013243783499999995) (0.013109123) (0.012785924500000004) (0.013118268499999988) (0.013209304000000005) (0.013054165500000006) (0.01308121999999999) (0.012836668499999995) (0.012911559500000003) (0.013009330499999985) (0.013025797999999991) (0.012931089499999993) (0.013222358500000003) (0.01304722500000001) (0.013296880999999983) (0.01316581750000001) (0.013150436999999987) (0.013071711499999986) (0.013231180999999995) (0.013302070999999999) (0.0132554005) (0.013229473500000005) (0.013336166000000024) (0.013201433999999998) (0.013098825000000008) (0.013491256500000007) (0.013281848499999999) (0.013395736000000005) (0.013891945500000003) (0.013337331499999994) (0.01314716199999999) (0.013455801500000017) (0.013340762500000006) (0.013298099499999994) (0.013534027000000004) (0.013135394500000008) (0.013163767499999993) (0.013234740999999994) (0.013492556000000003) (0.013401656000000012) (0.013270310999999993) (0.013248133999999995) (0.013481331500000013) (0.013027252499999989) (0.013327472500000007) (0.013133689500000018) (0.013303889500000027) (0.013458591999999991) (0.013464774500000012) (0.013590084500000002) (0.01343382550000001) (0.013352445500000004) (0.012954872999999992) (0.012947851999999996) (0.01334923049999999) (0.012939228999999997) (0.012995734999999994) (0.013192960500000003) (0.012932472000000014) (0.012921067000000008) (0.012852351500000012) (0.013133454500000002) (0.013074098999999992) (0.013049233000000007) (0.013011609999999993) (0.013142646499999994) (0.013033054500000002) (0.013516707000000003) (0.013187669999999985) (0.012927341000000009) (0.013045794500000013) (0.013136964000000001) (0.012976263500000015) (0.013088559) (0.013022501999999991) (0.013203615500000002) (0.012896258500000007) (0.013097288000000012) (0.0129965665) (0.013283256499999993) (0.013302669000000003) (0.012845446999999996) (0.01321257499999999) (0.013223037500000007) (0.013048376000000014) (0.013014805000000004) (0.013244597999999996) (0.013597604999999999) (0.013307521000000003) (0.013390600000000003) (0.013353871500000003) (0.013218663499999991) (0.01338542899999999) (0.013389113499999994) (0.013326465499999995) (0.013343385) (0.013559204499999991) (0.01331861999999999) (0.013375326499999979) (0.013251502500000012) (0.013391974000000001) (0.013418501000000013) (0.013487447999999999) (0.013332765499999996) (0.013228018000000008) (0.013624568000000004) (0.013316506499999992) (0.013265858999999991) (0.013463251999999995) (0.013371370500000021) (0.013587800499999983) (0.013219496999999983) (0.013526896999999996) (0.013359221500000004) (0.013392290499999987) (0.013203315499999993) (0.013038622) (0.012769168000000011) (0.012880320000000015) (0.012999938999999988) (0.013196122500000004) (0.013257100000000008) (0.013394971500000005) (0.01306229199999999) (0.013330980499999992) (0.013064896499999992) (0.013116289000000003) (0.013036533500000003) (0.013011591000000003) (0.013221047499999986) (0.013144954000000014) (0.012916090500000005) (0.012843882000000001) (0.012922024500000004) (0.013098423499999998) (0.013074087500000012) (0.012952136500000003) (0.01298711000000001) (0.013251280500000004) (0.013148722500000015) (0.012754188999999999) (0.013193169499999977) (0.013421083500000014) (0.013246769999999991) (0.013319815500000012) (0.013124839999999985) (0.012928703500000027) (0.013185365500000004) (0.013071157500000014) (0.013184467499999991) (0.013268578500000003) (0.013330995999999998) (0.013717804000000014) (0.0135192695) (0.013311004500000001) (0.013155386000000019) (0.013374591000000005) (0.013739491499999992) (0.013534516499999982) (0.013218748499999974) (0.013337480499999999) (0.013399701500000027) (0.013354493999999995) (0.013636347000000007) (0.013209077999999985) (0.01320442500000002) (0.013350768999999985) (0.013526930499999992) (0.013472678500000002) (0.013387885000000002) (0.013055736999999998) (0.013282466499999993) (0.013556560999999995) (0.013243767500000003) (0.013399888499999998) (0.013332306000000002) (0.013521003499999976) (0.013148751) (0.013455327499999989) (0.012926353500000001) (0.013230066999999998) (0.013213737000000003) (0.013370945500000009) (0.012966604999999992) (0.013047762000000004) (0.013284608500000003) (0.013094546500000012) (0.012821202000000004) (0.012972988500000004) (0.013007380499999999) (0.013067317499999995) (0.013126852499999994) (0.013045838500000004) (0.013410269499999988) (0.013281532000000013) (0.01288236949999999) (0.013282450000000001) (0.013132864999999994) (0.013006532000000001) (0.012739728999999991) (0.013271799999999986) (0.01317994950000001) (0.012920138999999997) (0.012721850499999993) (0.013019970500000005) (0.0131847935) (0.013210315) (0.012789811999999998) (0.013108307) (0.013026151499999986) (0.013186731999999993) (0.013687269000000002) (0.01326462199999999) (0.013693808000000002) (0.013403233) (0.013314578500000007) (0.013389975999999998) (0.013501142000000008) (0.013762868999999997) (0.013493234500000006) (0.013324479999999986) (0.013561126499999993) (0.013204271000000004) (0.013623707499999985) (0.013225492999999991) (0.013325570500000009) (0.01333057) (0.013317394499999996) (0.013262323000000006) (0.013519166999999999) (0.013243883000000012) (0.013236379000000006) (0.013364965999999992) (0.0130545995) (0.013466844000000006) (0.013729955000000016) (0.013593835500000012) (0.013215587) (0.013422505500000015) (0.013628532500000012) (0.01323046650000001) (0.01370282149999999) (0.01310964050000002) (0.012921198999999994) (0.013182445499999987) (0.013085386500000004) (0.012825094499999995) (0.01305676750000001) (0.013112636499999997) (0.013339773) (0.012999251500000003) (0.013141620999999992) (0.013073674999999993) (0.013283837999999992) (0.013051260500000009) (0.012909256500000008) (0.012930431000000006) (0.012970904500000019) (0.013272938499999998) (0.013219519499999985) (0.013168361000000003) (0.012913609000000006) (0.013149992) (0.013014619499999991) (0.013307283500000003) (0.013202890500000009) (0.012924205500000008) (0.013208300999999992) (0.013302756999999998) (0.013282521500000005) (0.012977687500000001) (0.013252251500000006) (0.012951735499999992) (0.013223290000000013) (0.013214658000000018) (0.013197024500000015) (0.013262417499999998) (0.013049123499999996) (0.013178300000000004) (0.013268226500000008) (0.01335023299999999) (0.013654871999999998) (0.013867566000000012) (0.013423713000000004) (0.013435369999999988) (0.013381228500000009) (0.013658904000000013) (0.013303972499999997) (0.013799095999999997) (0.013376060499999995) (0.013482577999999995) (0.013202695500000014) (0.013140716499999996) (0.01330525149999999) (0.013156462499999994) (0.01347643400000001) (0.01314581799999999) (0.013337991499999993) (0.013386483000000005) (0.013410949500000019) (0.013434766) (0.013449383999999981) (0.013448816999999988) (0.013197276499999994) (0.013258297500000002) (0.013582266499999995) (0.013361178499999973) (0.013076691500000001) (0.013106836499999983) (0.013014817499999998) (0.013089328500000011) (0.013073452499999999) (0.013168253000000005) (0.013100827500000009) (0.01318997000000001) (0.01306283400000001) (0.012814664500000003) (0.012959781500000003) (0.012978532500000015) (0.013060723999999996) (0.013114567499999993) (0.013024093) (0.013028222000000006) (0.013080881499999988) (0.01283137999999999) (0.013388749000000005) (0.013031425) (0.013054355000000004) (0.013000464500000003) (0.01293335050000001) (0.013030886000000005) (0.013162087000000017) (0.013602161000000002) (0.013012976999999995) (0.013005826999999998) (0.013275480000000006) (0.013107342500000008) (0.013123068500000001) (0.0129160745) (0.01326148249999999) (0.013043925499999998) (0.013166907500000019) (0.01324497949999999) (0.013205973499999996) (0.01304673549999999) (0.013020107000000003) (0.013449939999999994) (0.013338945000000005) (0.013416634499999996) (0.013354233499999993) (0.013851334000000007) (0.013420161999999985) (0.01347316250000001) (0.013517914500000006) (0.013309591999999995) (0.013011897000000008) (0.013799276000000013) (0.013319703500000002) (0.013218385999999999) (0.013444263499999998) (0.013170059499999998) (0.013653846999999997) (0.013174434999999998) (0.013574352999999997) (0.013224001999999999) (0.013470882999999989) (0.0136595365) (0.013646598499999996) (0.01347536449999999) (0.013615694999999997) (0.013245770000000004) (0.01313011800000001) (0.013302168499999989) (0.013014093000000004) (0.013333582999999996) (0.013327181499999993) (0.013046433999999996) (0.013098624000000003) (0.013107868000000009) (0.013060559499999985) (0.013011995500000012) (0.013274282499999998) (0.012927138500000018) (0.013339078000000018) (0.013251312500000001) (0.0128421955) (0.0134239035) (0.012996661000000007) (0.012921917000000005) (0.012880454999999999) (0.013212712000000001) (0.012841800499999986) (0.013146310500000008) (0.012967225499999985) (0.01294571700000001) (0.013136906000000004) (0.013373126499999999) (0.012908240000000015) (0.012813452000000003) (0.013352375) (0.01326381950000001) (0.013315783500000011) (0.012933594000000007) (0.0132159845) (0.013354996999999993) (0.013286803) (0.013714882500000011) (0.0130964675) (0.013236914500000002) (0.01336623250000002) (0.013077942000000009) (0.013422815500000004) (0.013360267000000009) (0.013225056500000013) (0.013433632500000028) (0.013506858999999996) (0.013592489) (0.01373034749999999) (0.013427417999999997) (0.013615592999999995) (0.013425823000000003) (0.01333577200000001) (0.013385516000000014) (0.013411247500000015) (0.013241249999999982) (0.01324895700000002) (0.013253979499999985) (0.01343026999999998) (0.013446749000000022) (0.013402861000000016) (0.01381271100000002) (0.013378233499999989) (0.013315839499999996) (0.013244652499999995) (0.013562787999999992) (0.013032143999999996) (0.013056155) (0.013041035500000006) (0.012836237) (0.012839773999999998) (0.012891964499999992) (0.013054107499999995) (0.013045863000000005) (0.013143269499999999) (0.013064190999999989) (0.013187266000000017) (0.013775351000000005) (0.013260665500000005) (0.015125648999999991) (0.013012659999999995) (0.012808855000000008) (0.013030822499999997) (0.01315316300000001) (0.012715071000000008) (0.012989699999999993) (0.013386502000000008) (0.013018100000000005) (0.012965387000000009) (0.013233283499999998) (0.012820571999999988) (0.012947866499999988) (0.013042818999999983) (0.012922343000000003) (0.013021559500000002) (0.013305866000000013) (0.012970331000000015) (0.013073791500000001) (0.013164948999999995) (0.01341255949999999) (0.013601375999999998) (0.013403696499999992) (0.013290461500000003) (0.013297315500000004) (0.0134104595) (0.013302564000000003) (0.013054311499999985) (0.013397104499999993) (0.01306216100000003) (0.013423697499999998) (0.013267319999999985) (0.013698583500000014) (0.013265870500000013) (0.013423978499999989) (0.0132117915) (0.013389582499999997) (0.013146931) (0.0131280555) (0.013223663499999996) (0.013096753999999988) (0.013192114000000005) (0.013452857000000012) (0.013384832500000013) (0.013317965499999987) (0.013440587000000004) (0.013535772000000015) (0.013365896500000002) (0.013504835499999993) (0.013313726500000025) (0.013367603499999992) (0.01299464950000001) (0.013167500000000013) (0.013023720500000002) (0.013431033499999995) (0.012935701999999993) (0.012981165500000003) (0.012980973000000007) (0.013164076499999997) (0.012847338) (0.013028516000000004) (0.012975659) (0.013022844499999991) (0.0130893495) (0.012993921000000005) (0.013076152999999993) (0.012963780499999994) (0.013188577500000007) (0.013103714000000016) (0.012910626999999994) (0.013316779500000014) (0.01281093300000001) (0.013536401500000003) (0.013056378499999993) (0.012874887500000015) (0.013067654000000012) (0.013384591000000015) (0.01289759850000001) (0.013282480499999985) (0.012884923499999978) (0.01296320699999999) (0.013151398999999966) (0.013186288000000004) (0.013613493000000004) (0.013175130499999993) (0.013396495499999994) (0.013546687999999987) (0.013429805000000003) (0.013479195499999999) (0.013111495000000015) (0.013255896000000003) (0.013246781000000013) (0.013411298499999988) (0.013709619000000006) (0.014012934499999977) (0.0133895495) (0.01341766400000001) (0.01340659999999999) (0.013315736999999994) (0.013502267999999998) (0.013213681500000005) (0.013418372500000011) (0.013219397499999994) (0.013536832999999998) (0.013225073999999976) (0.013113727500000005) (0.013249306000000002) (0.013432623500000004) (0.013506003499999988) (0.013739169499999995) (0.013465663499999989) (0.013585235500000015) (0.013271521500000008) (0.013090159000000004) (0.013234206500000012) (0.01298099200000001) (0.013242508500000014) (0.013120513000000014) (0.013171713500000001) (0.012982015999999999) (0.013061544999999994) (0.013087037499999996) (0.013033090000000011) (0.013574046500000006) (0.013127815000000001) (0.01301400250000001) (0.013274616500000003) (0.013147152500000009) (0.013016539999999993) (0.013364227499999992) (0.013064657000000007) (0.012786453000000003) (0.013211849499999997) (0.013077692500000015) (0.013007985500000013) (0.012708219999999992) (0.012957952500000008) (0.012986598499999988) (0.013233862999999998) (0.013141641999999995) (0.012995491000000012) (0.013055042000000003) (0.012895796000000015) (0.013124816999999997) (0.012872842500000009) (0.013073182000000003) (0.013193601499999985) (0.013164564500000003) (0.013453536500000002) (0.01346668849999999) (0.013199785000000006) (0.01319382949999999) (0.013341377500000001) (0.013203720000000002) (0.013311280499999995) (0.013468459000000016) (0.013239042000000006) (0.013508496999999994) (0.01332950849999999) (0.017512419499999987) (0.013530101000000017) (0.013454609500000006) (0.013325763500000004) (0.013355491499999997) (0.013541967500000002) (0.013068168000000005) (0.013268216000000013) (0.013392250000000008) (0.013335852999999995) (0.013106876999999989) (0.013068165499999992) (0.013705095000000028) (0.013411963000000013) (0.013143359000000021) (0.013830022500000025) (0.013723077499999986) (0.013475895000000016) (0.013351363000000005) (0.013279777000000006) (0.013020940500000008) (0.013124567000000004) (0.012965955500000001) (0.01294530649999999) (0.012935806999999994) (0.013049168500000013) (0.0132535565) (0.013056655) (0.012858187000000007) (0.013029368999999985) (0.013213750000000024) (0.013416029499999996) (0.013022759499999995) (0.013635935499999988) (0.013219545999999999) (0.013122266999999993) (0.013064641500000015) (0.012909056000000016) (0.013387997999999984) (0.012953411499999984) (0.013110999999999998) (0.013032640500000012) (0.01289808150000002) (0.012863205000000016) (0.013117781999999995) (0.013020541499999996) (0.013188594000000012) (0.013171781000000007) (0.012993644999999998) (0.013430571000000002) (0.013329389000000011) (0.013005789000000018) (0.013115051500000002) (0.013583706000000015) (0.013564964999999998) (0.013347531499999996) (0.013508872500000005) (0.013428814500000011) (0.013339714000000003) (0.01345414049999999) (0.013500597500000003) (0.013516348500000011) (0.0135429985) (0.013373366999999997) (0.013896676499999983) (0.013150039500000002) (0.013379914500000006) (0.013381517999999981) (0.013312887499999995) (0.013529156500000014) (0.01345777749999999) (0.013264876000000009) (0.013573701000000007) (0.013798267999999975) (0.013120612000000004) (0.013369547500000009) (0.013248021000000013) (0.013665542499999989) (0.013284053999999976) (0.013486732500000001) (0.013525670500000003) (0.013884542000000014) (0.013388734999999999) (0.013634515500000013) (0.013090583000000003) (0.013106123500000011) (0.012723372499999996) (0.013457009500000006) (0.012895150500000008) (0.013278256000000002) (0.013032572999999992) (0.01337351199999999) (0.013118093999999997) (0.013120773500000002) (0.0137540845) (0.013023516500000012) (0.013105738499999978) (0.013333834000000003) (0.012809462999999993) (0.01314498) (0.013052866499999996) (0.012925742500000004) (0.012713425500000014) (0.013147898000000005) (0.012905018000000004) (0.013073356999999994) (0.0129542525) (0.013008443000000008) (0.012990790499999988) (0.012860742499999994) (0.013046033499999998) (0.013292575000000001) (0.013256654999999992) (0.012939625999999982) (0.013249546499999987) (0.013155346499999998) (0.013154391500000001) (0.013360793499999996) (0.013134979500000019) (0.013439202000000011) (0.013023587500000017) (0.013400497999999997) (0.013052711000000009) (0.01314491999999999) (0.01335926450000001) (0.013653985500000007) (0.015457058999999995) (0.013006053500000017) (0.01336588150000001) (0.01317012699999999) (0.013256056500000002) (0.013531804500000008) (0.013384882) (0.013388380499999991) (0.013518639499999985) (0.013518426) (0.01318915100000001) (0.013371345000000007) (0.013347345499999996) (0.013534590999999999) (0.013438587500000002) (0.013170807999999992) (0.013157766500000001) (0.01319775799999999) (0.013557156) (0.013180908500000005) (0.013123505999999993) (0.013547805499999982) (0.012893127500000018) (0.012912194500000002) (0.012939122999999997) (0.012956164999999992) (0.012860395999999996) (0.012792766000000011) (0.013020307499999995) (0.013095918499999998) (0.0131114715) (0.013467887499999998) (0.013291032499999994) (0.012813414499999995) (0.013094005500000006) (0.012973365999999986) (0.012874984500000006) (0.012886331000000001) (0.013168858000000006) (0.012952641999999986) (0.012954718000000004) (0.012890988000000006) (0.012989319000000013) (0.012762398499999994) (0.012969853000000003) (0.012912036500000015) (0.013025379000000004) (0.012963217499999999) (0.013140561499999995) (0.013306051999999999) (0.013450729000000008) (0.012787701500000012) (0.012986561999999993) (0.012955424499999993) (0.01362092749999999) (0.014040623000000002) (0.01317009000000001) (0.013736506999999995) (0.013589661000000003) (0.013083819499999982) (0.01353742749999999) (0.013111439500000002) (0.013230350500000002) (0.01334975749999999) (0.013306982000000009) (0.013544137499999997) (0.013491540999999996) (0.013205164000000005) (0.013189129500000007) (0.013606199499999999) (0.013117292000000016) (0.013185419500000004) (0.013062044500000008) (0.013342249499999986) (0.013147031000000003) (0.013203579500000007) (0.013249638500000008) (0.013634819999999992) (0.013442360500000014) (0.014132675499999997) (0.013123971999999998) (0.013438028000000005) (0.01323754399999999) (0.0131976345) (0.013592871500000006) (0.013523345999999992) (0.013020549000000006) (0.013110703000000015) (0.012867834000000009) (0.012777589000000006) (0.012786079000000006) (0.012842424000000005) (0.0127899655) (0.013185528000000002) (0.012981039000000014) (0.012880980000000014) (0.013338269) (0.012905276999999993) (0.013455229999999999) (0.012944194999999992) (0.013345296000000006) (0.013338253999999994) (0.012922588999999998) (0.013064547999999995) (0.012925923500000006) (0.013229766500000004) (0.013179430999999991) (0.012982678999999983) (0.013189082000000005) (0.012916631000000012) (0.012886092499999988) (0.013112573500000016) (0.013122988000000016) (0.013861887999999989) (0.013281366500000003) (0.012996876500000004) (0.013171507499999999) (0.013415166500000006) (0.013066908500000002) (0.013268471500000004) (0.013551001000000007) (0.013260196499999988) (0.01307647699999999) (0.013113745499999996) (0.013273006000000004) (0.013216601499999994) (0.013380376000000013) (0.013280618500000008) (0.013468301500000002) (0.013536014999999998) (0.013406013499999994) (0.013420514499999994) (0.013549578500000006) (0.013613650000000005) (0.013418037999999993) (0.0132001395) (0.013175595500000012) (0.013630976999999989) (0.012975627500000003) (0.01313728900000001) (0.013353784999999993) (0.013232781999999985) (0.013537564500000002) (0.013726801999999996) (0.013641127000000003) (0.013469407500000002) (0.013602534) (0.013481043500000012) (0.013293308500000003) (0.013228917000000007) (0.013128296999999997) (0.01282244049999999) (0.012866812000000005) (0.012967451000000005) (0.013208904500000007) (0.012866618999999996) (0.013063809999999995) (0.013134085500000003) (0.012932334500000017) (0.013177703000000013) (0.012988508499999996) (0.013018483500000011) (0.013039766000000008) (0.012938456000000015) (0.013062816500000005) (0.013014551500000013) (0.013186418500000005) (0.012831152999999998) (0.012964659999999989) (0.013073574500000004) (0.012748428999999992) (0.012794991000000006) (0.013050598999999996) (0.013179565000000004) (0.013415549999999998) (0.013229917999999993) (0.012926615500000016) (0.012868511000000013) (0.013038479000000006) (0.013174143) (0.013205311999999997) (0.013236911000000018) (0.013596729499999988) (0.013705969499999998) (0.01342406900000001) (0.013253960499999995) (0.013664417499999998) (0.013225948999999987) (0.013171510999999997) (0.013863763000000001) (0.013238658) (0.013855299000000015) (0.013248424000000009) (0.01365711750000001) (0.013494992499999997) (0.013461352499999996) (0.013521068499999997) (0.01372293749999999) (0.013532373) (0.013264094000000004) (0.013146309499999995) (0.013321226500000005) (0.013601964000000008) (0.013269639500000013) (0.013111954000000009) (0.013325318000000003) (0.013334231500000002) (0.0131947855) (0.013183008999999996) (0.013469347000000007) (0.013466662500000004) (0.013505819000000002) (0.013548878) (0.013049048499999993) (0.012724694499999994) (0.012696483499999994) (0.013268227499999993) (0.013189044499999997) (0.013068740500000009) (0.013063749999999985) (0.013006375500000014) (0.01340380549999999) (0.013297555000000003) (0.012997784500000012) (0.012933336000000017) (0.013018393000000003) (0.01275435200000001) (0.013062616999999999) (0.013220771999999992) (0.012972679) (0.01294063749999999) (0.0132195965) (0.013030037000000008) (0.0129485295) (0.013344847999999992) (0.013164697000000003) (0.013200146499999996) (0.013178690499999993) (0.012803302499999988) (0.013030849000000011) (0.013012302000000003) (0.01314186099999999) (0.012957414) (0.012812829000000012) (0.012942203999999999) (0.013056439500000017) (0.01320993400000002) (0.013153430500000007) (0.013150799500000004) (0.013120438999999998) (0.013453276499999986) (0.013509949999999993) (0.013245316999999993) (0.013674016999999997) (0.013638035499999993) (0.013149939999999999) (0.013151299499999991) (0.013353353499999998) (0.013549641000000001) (0.013683297999999997) (0.013372500499999995) (0.013371969499999997) (0.014038603999999996) (0.0132233925) (0.013484740999999995) (0.013283699499999996) (0.013858293000000008) (0.013156702999999992) (0.013852150499999993) (0.013345858500000002) (0.013529192500000009) (0.013106208999999994) (0.013299862999999995) (0.014201379) (0.013354075499999993) (0.013194741999999995) (0.013448512999999995) (0.01338392699999999) (0.013239124500000019) (0.013234611499999993) (0.0130173985) (0.012882825) (0.0129724425) (0.012821157500000013) (0.012952260499999993) (0.012801156499999994) (0.013254999999999989) (0.012956119000000002) (0.012750317999999997) (0.01308271200000001) (0.013007731999999994) (0.012861250000000005) (0.013349515499999992) (0.01306055099999999) (0.013122990999999987) (0.013283972000000005) (0.012887502499999995) (0.01295949099999999) (0.013105456500000001) (0.013081859000000001) (0.013054339999999984) (0.013055696000000006) (0.013101872500000014) (0.013228840500000005) (0.012991856499999996) (0.012897631000000007) (0.0131196685) (0.013406783499999991) (0.013546986499999997) (0.013122193000000018) (0.013114011999999994) (0.013589946000000006) (0.013139816999999998) (0.013450829999999997) (0.013200135000000002) (0.013386407500000003) (0.013225688999999999) (0.013244766500000005) (0.013192786500000012) (0.013565882000000001) (0.013133443500000008) (0.013208785) (0.013424527500000005) (0.013284111000000001) (0.013213621499999995) (0.013283316000000003) (0.0132216795) (0.013465261500000006) (0.013353454000000015) (0.013055121000000003) (0.013515345499999998) (0.0131377555) (0.013200028500000002) (0.013099352500000008) (0.013751352499999994) (0.013256350499999986) (0.013247748500000017) (0.013298455999999972) (0.013310984000000012) (0.013261403500000019) (0.013122643500000003) (0.013210463999999991) (0.013084212499999998) (0.012835127500000001) (0.012796290500000002) (0.013007369500000004) (0.012797053500000002) (0.013063222) (0.01318693650000001) (0.012912150999999997) (0.013029701000000005) (0.013428149500000014) (0.01302502450000001) (0.012849317999999998) (0.012936041499999995) (0.013368003000000003) (0.013082901000000008) (0.013011647500000015) (0.012909645999999997) (0.012996903500000004) (0.01302557) (0.012929687999999995) (0.012958200499999989) (0.012989997000000003) (0.012745380500000014) (0.013208647500000004) (0.013249894000000012) (0.013164607999999994) (0.012995249) (0.012814539500000013) (0.012976099000000005) (0.013130691) (0.012902112500000007) (0.013025366499999996) (0.013098148500000018) (0.01323683149999999) (0.01346251200000001) (0.013271975500000005) (0.013028306500000003) (0.013346476499999996) (0.0134406995) (0.013893206500000005) (0.01366907349999999) (0.013432315000000014) (0.013372061500000004) (0.013773042500000027) (0.013513906499999992) (0.0138630545) (0.01352935899999999) (0.013252013000000007) (0.013096956500000007) (0.0132987985) (0.0132526065) (0.013546142000000011) (0.013379556) (0.013181104999999999) (0.01348682050000001) (0.013472315000000012) (0.013323976000000001) (0.013770469499999993) (0.013784267499999989) (0.013507461000000012) (0.0134186315) (0.013611220999999993) (0.013281724999999994) (0.013679782500000015) (0.013497173999999987) (0.01324126199999999) (0.013192453500000006) (0.012880958999999997) (0.013187234500000006) (0.013157708500000004) (0.012814138000000003) (0.013263508000000007) (0.013455908500000002) (0.013261224000000016) (0.013220534500000006) (0.013040635500000008) (0.013282015500000008) (0.013184609499999986) (0.01324107549999999) (0.012877528999999999) (0.012995563999999987) (0.012797179499999992) (0.01335858799999999) (0.012780589999999994) (0.013411182499999993) (0.012892143999999994) (0.012873429500000005) (0.012966969500000008) (0.013341069499999983) (0.013213298499999984) (0.012930478999999995) (0.012936091499999997) (0.013263178) (0.012807322499999996) (0.013426736999999994) (0.012917256499999988) (0.013366892499999991) (0.013022852000000001) (0.013624934000000005) (0.013158565499999997) (0.013164891000000012) (0.013056683) (0.013705324000000005) (0.013424374499999989) (0.013298358999999996) (0.013251557999999997) (0.013753404499999997) (0.013301540499999986) (0.013288425999999992) (0.0131422665) (0.013637255000000001) (0.013788256000000013) (0.013086300499999995) (0.013341402000000002) (0.013470591000000004) (0.013344202) (0.013339666999999986) (0.013241253000000008) (0.013083291499999997) (0.013206231500000012) (0.013322023500000016) (0.013734278000000003) (0.01394594350000003) (0.013456582999999994) (0.013709903499999995) (0.013110869000000011) (0.01341465650000001) (0.0133503175) (0.013231139999999988) (0.012947138499999997) (0.012594853500000003) (0.013118263000000005) (0.013001680500000015) (0.012975648000000006) (0.013044822000000011) (0.013319438500000003) (0.013409152500000007) (0.012858875499999992) (0.013021377500000014) (0.012834170999999978) (0.013199811500000005) (0.013246298000000004) (0.012923818000000004) (0.013327855000000013) (0.012806528000000011) (0.013226368499999988) (0.012928742000000007) (0.01303761299999999) (0.012942189999999992) (0.012843138500000004) (0.012909187499999988) (0.012930129999999998) (0.012900994999999998) (0.012957295500000007) (0.012941943999999997) (0.013739614999999983) (0.012968399000000005) (0.0129811955) (0.013831179000000013) (0.01389088799999999) (0.013303148999999986) (0.01336873899999999) (0.013334227500000004) (0.013161413999999996) (0.013195983500000008) (0.013082029000000009) (0.0131983195) (0.013298910999999997) (0.013276240500000008) (0.013509376000000003) (0.013125485999999992) (0.013393371500000001) (0.013456066499999988) (0.013165245500000006) (0.0131187195) (0.013164296499999992) (0.013269476999999988) (0.013266496500000002) (0.013100129000000002) (0.013744920000000008) (0.013050355000000013) (0.013520999000000006) (0.013298294999999988) (0.013295500000000002) (0.01396845799999999) (0.013694532499999995) (0.013259538000000001) (0.013445929999999995) (0.0134722845) (0.013593695500000003) (0.015341338999999996) (0.013246423000000007) (0.012941241499999992) (0.013173218) (0.012841885999999997) (0.013091239000000005) (0.012922462999999995) (0.013073303999999994) (0.01340335350000002) (0.013562421500000019) (0.012955942999999998) (0.013040776000000004) (0.012873178000000013) (0.013022367499999993) (0.013108022999999996) (0.01288851399999999) (0.013070343999999998) (0.013510916000000012) (0.012653484000000007) (0.012893776499999995) (0.013017134) (0.013141405999999994) (0.013386612500000006) (0.013099800500000008) (0.013203866499999994) (0.013035606499999991) (0.013573791500000001) (0.013074643999999996) (0.013316771000000005) (0.012893606000000002) (0.013270857999999996) (0.012994111500000002) (0.012976637) (0.013102767499999987) (0.01316427249999999) (0.013332785) (0.013135498500000009) (0.013196145499999978) (0.013288790499999995) (0.013260074999999996) (0.013486918) (0.013411553500000006) (0.01324202549999999) (0.013625208) (0.013447752999999993) (0.013226199000000008) (0.013388414000000001) (0.013246750000000002) (0.013267296999999997) (0.013065766499999992) (0.013398261999999994) (0.013349977499999999) (0.013548393000000006) (0.013252262) (0.013307073000000003) (0.013372140500000004) (0.013038828500000002) (0.013611265499999997) (0.013878733000000004) (0.013440793499999978) (0.013467978000000005) (0.013733335499999985) (0.013269441500000007) (0.013635116000000017) (0.013503932499999996) (0.013160789999999992) (0.012864083000000012) (0.013046825499999998) (0.01273140049999999) (0.012887105499999996) (0.013012012000000003) (0.013091747500000014) (0.013035316000000005) (0.012995244999999989) (0.013060667999999998) (0.013150161000000007) (0.012994094499999997) (0.013015118499999992) (0.012827516000000011) (0.01302305199999998) (0.013104279499999996) (0.012935119999999994) (0.01300681649999999) (0.013114402999999983) (0.012796293) (0.012745978000000005) (0.013264630999999999) (0.013249001499999996) (0.01318016200000001) (0.013071673000000006) (0.01292816899999999) (0.013382762000000006) (0.015131573499999995) (0.013294266499999999) (0.0129615005) (0.013028294499999996) (0.012822735500000002) (0.013385335000000012) (0.013309287000000003) (0.013416905999999992) (0.013489972000000003) (0.013369382000000013) (0.013734009500000005) (0.013585494500000003) (0.013645842500000005) (0.013250676000000003) (0.013454547999999997) (0.013691154999999997) (0.013565441999999997) (0.013619971500000008) (0.013490139999999984) (0.013724209499999987) (0.013575932499999999) (0.013334891500000001) (0.013632834499999996) (0.013455625499999999) (0.013537249500000001) (0.0135897205) (0.013294821999999984) (0.013773935000000001) (0.013489081500000014) (0.013595365000000012) (0.01384775100000002) (0.013139907999999992) (0.013315311499999996) (0.013385561500000004) (0.013545065999999994) (0.013133817999999992) (0.013258775) (0.01331647950000002) (0.012883015499999997) (0.012985505499999994) (0.012994523000000008) (0.013118189500000002) (0.012851968000000005) (0.013079447000000008) (0.012796008500000011) (0.01305597) (0.012944426999999994) (0.013337637499999985) (0.01304514000000001) (0.013210117499999993) (0.013488942500000017) (0.013106807499999998) (0.013699486499999997) (0.012998287499999997) (0.012932902999999996) (0.013014797499999994) (0.012954173499999999) (0.012797667999999998) (0.013228565500000011) (0.012852836999999992) (0.013029616499999994) (0.012966874500000003) (0.013119741500000004) (0.013412661499999992) (0.012973524) (0.012988602000000016) (0.012996388999999997) (0.012848210000000013) (0.013011422000000009) (0.012946186999999998) (0.013365925500000014) (0.013173942500000008) (0.013234815499999997) (0.013209067000000005) (0.013343907000000002) (0.013225921000000002) (0.013431902999999995) (0.013281083999999999) (0.013319131500000012) (0.013420401999999998) (0.013647694000000002) (0.013439580000000007) (0.01320887400000001) (0.013725790500000001) (0.013230272500000015) (0.013337868000000003) (0.013361729000000003) (0.013258402000000002) (0.013375923999999997) (0.013400549999999997) (0.0133146435) (0.013380163) (0.013293019999999989) (0.013229730999999995) (0.013243926499999989) (0.013662160000000007) (0.013551241499999991) (0.013205132999999994) (0.013503989500000008) (0.013533060999999985) (0.013190164500000004) (0.013307943000000017) (0.013461025500000001) (0.01302092099999999) (0.012859790999999995) (0.013479860499999996) (0.012953863499999996) (0.012944507499999994) (0.012801866500000009) (0.012740266) (0.012937800000000013) (0.013600590999999995) (0.013120727000000013) (0.013078112000000003) (0.013249292499999996) (0.012902457000000006) (0.012909399999999988) (0.012929747499999991) (0.012854258000000007) (0.012914975499999995) (0.012788847500000006) (0.013038316500000008) (0.012779721500000008) (0.01298224249999999) (0.012902606000000011) (0.013043094000000005) (0.013118217500000001) (0.013032648999999993) (0.013084076) (0.012950785500000006) (0.01286494249999999) (0.013146218500000015) (0.012960774500000008) (0.013178207499999983) (0.013187266499999989) (0.01334212600000001) (0.0133423295) (0.013066345500000007) (0.013207752500000003) (0.013205190000000006) (0.013574110500000028) (0.013454848500000005) (0.013288258999999997) (0.013464906000000013) (0.013516907999999994) (0.013226244499999984) (0.013180137999999994) (0.013379145999999995) (0.013194728000000003) (0.013157259000000004) (0.013382493499999995) (0.013436362999999993) (0.013337915500000005) (0.01348869649999998) (0.013766219499999996) (0.01339818050000001) (0.013222775500000006) (0.013464718) (0.013460549000000002) (0.013279562999999994) (0.013686788999999991) (0.013334204999999974) (0.013145900000000002) (0.013440774499999988) (0.013127204500000003) (0.013462921500000016) (0.013209455000000009) (0.013413257500000011) (0.01310797700000002) (0.013363302500000007) (0.013303880000000004) (0.013231593500000013) (0.012901315999999996) (0.012914071) (0.012955969499999997) (0.012916917500000014) (0.013050072999999995) (0.013023872499999992) (0.0130005745) (0.013255918499999991) (0.013159824999999986) (0.012800495500000009) (0.013050774499999987) (0.013005747999999998) (0.012832909500000003) (0.013100065499999994) (0.013349358500000005) (0.012817820000000008) (0.013142129499999988) (0.012883434000000013) (0.013038614500000004) (0.013012391999999984) (0.01340805199999999) (0.013095161999999994) (0.013187691000000001) (0.01286356050000001) (0.013417910500000005) (0.012989242999999998) (0.01312421300000001) (0.013356346499999991) (0.013308685999999986) (0.013408608000000002) (0.013183627000000003) (0.013556827499999993) (0.01373036850000002) (0.013357690500000005) (0.013322908999999994) (0.013336721499999996) (0.013550868500000007) (0.013279399499999997) (0.013527701500000003) (0.013472854500000006) (0.013119097499999996) (0.013253516499999993) (0.01327110200000002) (0.013084481000000009) (0.013493746000000001) (0.013139791499999998) (0.013091125500000009) (0.013220699000000002) (0.013504307500000007) (0.013464884999999996) (0.013520409999999997) (0.013346386999999987) (0.013355089) (0.013149635500000006) (0.013359751500000003) (0.013347113500000007) (0.01326418800000001) (0.013328361499999983) (0.012896103999999992) (0.012694128499999999) (0.01317254000000001) (0.012959103999999999) (0.012993526500000019) (0.012977165499999985) (0.012919554) (0.01296477750000001) (0.013109407000000003) (0.013235399499999995) (0.012901166000000006) (0.013208769500000009) (0.01319803750000001) (0.012828736499999993) (0.012996134500000006) (0.012974267000000012) (0.012915659499999996) (0.012932724999999992) (0.012815455000000003) (0.012810763000000017) (0.013157529500000015) (0.01266352250000001) (0.013144125000000006) (0.013203371500000005) (0.013034985499999999) (0.013003197500000022) (0.012971928500000007) (0.01299853699999999) (0.01329037000000001) (0.013090708999999992) (0.012894688999999987) (0.01317081249999999) (0.013206958000000005) (0.01318320249999999) (0.013448370499999987) (0.013046917000000005) (0.012930478499999995) (0.013653153500000015) (0.013136031000000006) (0.013231371999999991) (0.013831089000000005) (0.013331750999999989) (0.013503145000000008) (0.013419864000000004) (0.013290757) (0.013583853999999992) (0.01350158700000001) (0.013196828000000008) (0.01360349100000001) (0.01327601049999999) (0.0134753965) (0.013377620499999993) (0.01349560900000002) (0.013692137500000007) (0.013271631999999992) (0.01340840950000001) (0.01349706149999999) (0.01381102699999999) (0.0130726865) (0.01325219499999998) (0.013431905999999993) (0.013351465999999992) (0.013285474499999991) (0.013272095500000011) (0.013281221499999996) (0.013206075499999997) (0.013559010999999996) (0.013189564500000014) (0.013207745000000007) (0.013166337999999986) (0.012873901999999993) (0.012846161999999994) (0.013006203500000008) (0.012870816999999993) (0.012911935000000013) (0.013471900000000009) (0.013189299500000001) (0.013047731999999992) (0.013410259500000007) (0.013169680999999975) (0.01314087500000001) (0.013543996000000003) (0.013122656999999996) (0.013226426) (0.013071401999999996) (0.013255509499999985) (0.013093737500000008) (0.013122665499999991) (0.013182191999999981) (0.013263971000000013) (0.013231292999999991) (0.013044691499999997) (0.013183992999999991) (0.013145058999999987) (0.013218498500000009) (0.012994346000000004) (0.013153186499999997) (0.013760414999999998) (0.013375422999999997) (0.013552478000000007) (0.013888306000000003) (0.013040024500000011) (0.013115858499999994) (0.013275559499999992) (0.013325964499999982) (0.013432700499999992) (0.01353355149999999) (0.013343426500000019) (0.013322189500000026) (0.013281708000000003) (0.01366456499999999) (0.013335085499999996) (0.013408688999999988) (0.013249624000000002) (0.013104443499999993) (0.01339003150000001) (0.013430549000000014) (0.013519896999999989) (0.013124876000000008) (0.01355809899999999) (0.013244298499999974) (0.013556022000000001) (0.013749429499999993) (0.013391245499999996) (0.013245844500000006) (0.013483815499999996) (0.013357644000000016) (0.013513776999999977) (0.013148289000000007) (0.012952112000000002) (0.013203069499999998) (0.012937368000000005) (0.012906454500000011) (0.013435257499999978) (0.012932037000000007) (0.01324901149999999) (0.013220555499999995) (0.012775636999999992) (0.012912511000000002) (0.013368383999999997) (0.013258593999999999) (0.013080486499999988) (0.0132140845) (0.013008433) (0.012977199999999994) (0.013076431000000013) (0.012988368000000014) (0.013082789499999997) (0.013037350500000003) (0.012948136499999985) (0.01300396899999999) (0.013099669499999994) (0.013091672999999998) (0.012960517500000004) (0.013155697000000008) (0.013085887000000004) (0.013329141000000003) (0.012827094499999997) (0.01301503200000001) (0.013472231499999987) (0.013536666000000003) (0.013285854999999985) (0.013346888999999987) (0.013342175500000011) (0.013346004500000008) (0.013077803999999998) (0.013359929500000006) (0.01312675599999999) (0.013466778500000012) (0.013318775000000019) (0.0134015475) (0.013380531000000001) (0.013236168500000006) (0.013144158000000003) (0.013282893500000018) (0.013196796499999996) (0.013496484500000003) (0.013427640000000005) (0.013174949000000005) (0.013099885999999991) (0.013031683500000002) (0.01353746850000001) (0.013058069500000019) (0.013386633999999994) (0.013519556500000002) (0.013436005) (0.013224115999999994) (0.013355240000000004) (0.01320070999999999) (0.013190622000000013) (0.013475048500000003) (0.013300704499999996) (0.012990154500000003) (0.013253809000000005) (0.01287406399999999) (0.012790128999999997) (0.013000376999999994) (0.01324765600000001) (0.012924512499999999) (0.012788144500000001) (0.013027464000000002) (0.013051114500000002) (0.012935085499999985) (0.0127937345) (0.013399335499999998) (0.013019692499999999) (0.013133810999999995) (0.013146156500000006) (0.013222978999999996) (0.012785875499999988) (0.012878273499999995) (0.012795628999999989) (0.013111079999999983) (0.012824528500000001) (0.012882625500000008) (0.013061988499999996) (0.013123450500000008) (0.0133669555) (0.013066091999999987) (0.013130524500000004) (0.013170852999999996) (0.013193168500000005) (0.012990784500000005) (0.013298784000000008) (0.013466181000000008) (0.013288557999999992) (0.013447720999999996) (0.013522557000000018) (0.013022039) (0.014016356500000007) (0.013098392) (0.013209318499999997) (0.013245834999999997) (0.013329367999999994) (0.013225119500000007) (0.013507585999999988) (0.013225577500000002) (0.013508401499999989) (0.01342760849999998) (0.013375167999999993) (0.013254769) (0.0131762785) (0.013407944500000005) (0.013401199999999988) (0.013273578999999994) (0.013445387500000017) (0.013380430499999998) (0.013195820499999983) (0.013835689000000012) (0.013339945499999992) (0.013071584000000011) (0.013398903500000003) (0.013204888499999998) (0.013499008499999993) (0.013218975499999994) (0.013646578499999992) (0.013074315999999989) (0.012941159500000007) (0.0130313695) (0.013066939999999999) (0.013046560500000012) (0.013036144999999999) (0.013074128500000004) (0.013141584499999998) (0.013278261999999999) (0.013559920000000017) (0.013762356500000003) (0.0132739625) (0.012905697999999993) (0.013041037999999991) (0.013248241999999993) (0.013302100000000011) (0.012865644999999995) (0.012957384000000002) (0.012945720999999993) (0.013083182500000012) (0.012910567999999997) (0.012941620000000001) (0.013090311500000007) (0.013118792000000018) (0.012970382500000002) (0.013137172500000002) (0.013649290499999994) (0.01294793950000002) (0.012950271) (0.01307443350000001) (0.012815294500000005) (0.013029701500000004) (0.013857514000000001) (0.013396859499999997) (0.0132119225) (0.013478729000000009) (0.013690859499999986) (0.013211658000000001) (0.013409352) (0.013713562000000012) (0.013297836499999993) (0.013514466000000003) (0.013272026999999992) (0.013219515000000015) (0.013508878000000002) (0.013248425500000008) (0.0133400885) (0.013198236500000002) (0.013311930999999999) (0.013234600499999999) (0.013827114499999987) (0.013268230500000006) (0.013341777000000013) (0.013384241500000005) (0.013297528000000003) (0.013980152999999995) (0.013409635500000003) (0.013281494500000018) (0.0133692225) (0.013323304500000008) (0.013362798500000009) (0.013161167000000015) (0.013143791000000016) (0.013340143999999998) (0.013307702000000005) (0.013028588499999993) (0.013076267999999988) (0.013137831500000002) (0.013083787500000013) (0.013207844499999996) (0.012962745999999997) (0.013115706500000004) (0.013131002500000002) (0.013020626000000007) (0.013435963499999995) (0.013860945500000013) (0.013176505000000005) (0.012919767499999998) (0.0130265445) (0.013557643499999994) (0.013141112499999996) (0.012981516499999998) (0.012993462499999997) (0.013144668999999998) (0.013162742000000005) (0.012990565499999995) (0.012788258499999997) (0.01288635249999999) (0.013126601500000015) (0.013076116999999998) (0.01300909850000001) (0.013022124999999996) (0.012944307000000002) (0.012989601000000003) (0.013442533999999992) (0.013369272499999987) (0.013169320999999998) (0.0130865275) (0.01321945699999999) (0.013466822000000003) (0.013432277500000006) (0.01316804499999999) (0.01309793849999999) (0.013389463000000004) (0.013264976999999997) (0.013494175999999997) (0.013539556000000008) (0.013587086499999984) (0.013405012499999994) (0.013317190500000006) (0.013238671500000007) (0.013059855000000009) (0.013361021999999986) (0.013498357499999988) (0.013569413000000002) (0.013417149499999989) (0.013329880500000002) (0.013457245999999992) (0.0131942865) (0.013372751500000002) (0.013183736499999987) (0.013809671999999995) (0.013436083999999973) (0.0132716935) (0.013483797499999992) (0.013278098499999974) (0.013202820500000004) (0.013314906000000001) (0.012953042499999998) (0.013283384499999995) (0.013223843499999999) (0.01302444400000001) (0.013029598500000017) (0.013082861499999987) (0.013144761500000018) (0.013220382500000002) (0.013418170499999993) (0.013248741499999994) (0.013003285500000003) (0.013025485999999989) (0.012871896000000008) (0.013331789999999996) (0.013226395500000002) (0.01295613549999998) (0.012997547499999998) (0.012864279500000006) (0.01274795049999998) (0.0130756915) (0.01331104050000001) (0.013247713500000008) (0.012902217499999993) (0.012869980499999989) (0.0129879465) (0.013019540999999996) (0.013123904000000006) (0.012927250000000015) (0.012855012000000013) (0.013159592999999983) (0.013204258499999968) (0.012822908499999994) (0.013524308000000013) (0.01370615650000001) (0.013232270000000004) (0.013616983999999985) (0.013295072500000019) (0.013207676000000015) (0.013109755000000015) (0.013278547999999987) (0.013290995) (0.013486321499999995) (0.013441226999999986) (0.013551229500000012) (0.013420582999999986) (0.013456055000000008) (0.01327145049999999) (0.013246731999999983) (0.013351482499999998) (0.013097075) (0.013676083000000006) (0.013928052999999996) (0.013570261) (0.013816847500000007) (0.013268715000000014) (0.013510917999999997) (0.013264061499999993) (0.013291340499999998) (0.013259328999999986) (0.01329496849999999) (0.013379920500000003) (0.013323055) (0.01320084249999999) (0.013674952500000004) (0.012840713500000003) (0.013071268999999996) (0.013152246999999992) (0.013119602000000008) (0.012805366999999998) (0.012965743500000002) (0.013451860499999996) (0.012942101500000011) (0.013116902500000013) (0.01307367899999999) (0.012919128000000002) (0.012765235000000014) (0.012898372000000019) (0.012930695000000006) (0.013174719999999987) (0.01305689950000001) (0.012954498499999995) (0.012934039500000008) (0.013012276499999989) (0.012999993500000015) (0.013178053499999995) (0.013072372500000012) (0.013048147500000024) (0.012711252999999992) (0.0131219095) (0.012990672999999994) (0.01288687400000002) (0.013478187499999988) (0.013252939500000005) (0.012874387500000015) (0.013071681000000016) (0.0131579535) (0.013144448500000003) (0.013484126999999999) (0.013387808999999987) (0.013395311999999993) (0.013602156000000004) (0.013222726000000004) (0.013865506499999986) (0.0131213575) (0.013230512000000028) (0.013225918500000003) (0.013194750000000005) (0.013233505999999992) (0.01330231900000002) (0.013583457500000007) (0.013178516999999987) (0.01342289399999999) (0.012976987999999995) (0.013293806000000005) (0.013387864) (0.013467039000000014) (0.013169796499999997) (0.013548202500000009) (0.013580092500000002) (0.013405550000000002) (0.013572897) (0.013328354500000028) (0.013582753000000003) (0.013241443499999991) (0.013374208000000012) (0.013569770500000009) (0.013578588000000016) (0.01341825549999999) (0.012843496499999996) (0.012700736000000004) (0.012909528000000003) (0.013114217499999997) (0.013100998000000003) (0.013122635499999993) (0.012740112000000012) (0.012867419000000005) (0.0131582955) (0.013092176999999997) (0.013089594499999996) (0.013561386000000009) (0.01305711200000001) (0.013184815500000016) (0.012882491999999995) (0.013070063999999992) (0.012834019999999988) (0.012953222) (0.012699856999999995) (0.0128586225) (0.012930161499999995) (0.013041676000000002) (0.013448332999999993) (0.013077524000000007) (0.013311808500000008) (0.012865607999999987) (0.013281384999999979) (0.013435807499999994) (0.013109509000000005) (0.012943469999999999) (0.012905489500000006) (0.013033251999999995) (0.01318278299999999) (0.013572024000000002) (0.013186448000000003) (0.013114751000000008) (0.013443029499999995) (0.013070397999999997) (0.013127450000000013) (0.01333746999999999) (0.013134118999999986) (0.013533818500000003) (0.013126862999999989) (0.01342558449999999) (0.013263820000000023) (0.013752015500000006) (0.013311030000000001) (0.013485226999999989) (0.0130991315) (0.013254839000000004) (0.013667810000000002) (0.013327935999999999) (0.013342673500000013) (0.013340956000000001) (0.013029799000000022) (0.013156031999999984) (0.013239721999999995) (0.013523859000000027) (0.013174036) (0.013471372499999995) (0.01351040299999999) (0.013334960999999979) (0.013561565499999997) (0.013435799499999984) (0.012905394) (0.013510875499999991) (0.012811071500000007) (0.013063927000000003) (0.013223763999999999) (0.012953431000000015) (0.013044744999999996) (0.013008728499999997) (0.013012717499999993) (0.012842558500000004) (0.013189443999999995) (0.012841918999999993) (0.013102878999999984) (0.013076739000000004) (0.013149349000000018) (0.013059153000000004) (0.013079631999999994) (0.013185996500000005) (0.013130103500000018) (0.01294287700000002) (0.013235142999999991) (0.012994552999999992) (0.013006673999999996) (0.012940284999999996) (0.012952381499999985) (0.013130934499999983) (0.012890827999999993) (0.013144534499999999) (0.013059870500000015) (0.013085518499999976) (0.012910559500000002) (0.012967043999999997) (0.013372145000000002) (0.013092225999999998) (0.013123870999999981) (0.013153666000000008) (0.013921424000000016) (0.013401942500000014) (0.01347811649999997) (0.013504238500000001) (0.013153641999999993) (0.013570917000000002) (0.0134211895) (0.013544636000000013) (0.013491800499999984) (0.01335415550000002) (0.013034469000000007) (0.013487930500000009) (0.013235760000000013) (0.013204050499999995) (0.01344110699999998) (0.013308142999999995) (0.013280090000000008) (0.012997879500000004) (0.013117377) (0.013352702499999994) (0.013205705999999984) (0.013245507500000003) (0.013612372500000011) (0.013360390500000013) (0.013179000999999996) (0.013440269000000005) (0.013360702000000002) (0.013706472999999997) (0.012918618999999992) (0.012703763499999993) (0.013441608499999994) (0.012897947499999993) (0.013096157999999997) (0.013144015500000009) (0.013338431000000012) (0.013210039000000007) (0.0130215115) (0.013299753500000011) (0.012997993000000013) (0.013184046500000005) (0.012931065000000005) (0.012949778500000009) (0.01339056550000002) (0.013346391499999999) (0.012996709000000009) (0.012693752000000003) (0.013146347500000002) (0.012921496000000005) (0.01310731250000001) (0.013484580999999995) (0.013109305000000002) (0.0131043515) (0.012848194499999993) (0.013281229000000006) (0.013270988000000011) (0.013107975000000008) (0.013077258999999994) (0.012857847000000006) (0.012918885500000005) (0.012855877000000002) (0.013428388) (0.013673300499999999) (0.013518864000000005) (0.01304051149999999) (0.013348916000000002) (0.013174314500000006) (0.013483140500000004) (0.013681697500000006) (0.013290076499999998) (0.013421901500000014) (0.013669882000000008) (0.013315519499999998) (0.013667973999999986) (0.013539886000000015) (0.01339063) (0.013168266499999998) (0.013645433999999998) (0.013101760500000004) (0.013356115499999988) (0.013717541999999985) (0.013150013000000002) (0.013109803500000003) (0.013675404000000002) (0.01351439950000001) (0.013385707000000024) (0.013571937999999992) (0.013201007999999972) (0.013143325499999983) (0.013343035000000003) (0.013327523999999993) (0.01335707400000001) (0.013717363499999996) (0.012984174000000001) (0.013447213499999985) (0.012889139999999993) (0.012976653000000005) (0.013379859999999993) (0.012824546500000006) (0.013095250499999989) (0.012799156999999992) (0.013147501499999992) (0.012957429000000006) (0.013356854999999987) (0.013488271999999968) (0.01286146199999999) (0.013600750499999995) (0.01302398049999999) (0.013095919000000011) (0.013205768000000007) (0.012888925999999981) (0.012928682999999982) (0.013000862000000002) (0.012893916500000005) (0.0133798485) (0.01301306250000002) (0.013135812499999996) (0.013514410500000004) (0.013103181499999991) (0.013127303499999993) (0.013035679000000008) (0.013057818500000026) (0.012964573000000007) (0.013028841499999999) (0.013014935499999991) (0.01301274899999999) (0.013596326499999992) (0.013596124999999987) (0.013185790999999988) (0.013228552500000004) (0.013588653999999992) (0.013149296000000005) (0.01322092850000002) (0.013721049499999985) (0.01350665899999999) (0.013621626999999997) (0.013147111000000003) (0.013229008) (0.013277238999999996) (0.013566281000000013) (0.013381470500000006) (0.013274892499999996) (0.013502348999999997) (0.013639248499999992) (0.013597685500000026) (0.013189438499999998) (0.013157155500000017) (0.013170601500000004) (0.013578129500000008) (0.013472122000000003) (0.013538780000000014) (0.013348148000000018) (0.013281545500000005) (0.013143115499999997) (0.013659011499999998) (0.01339789000000001) (0.013615283500000006) (0.012730909999999998) (0.013114123000000005) (0.012985281500000001) (0.012853845000000003) (0.012799460999999998) (0.013015054999999998) (0.013312634500000003) (0.012903391) (0.012915517000000015) (0.013173725999999997) (0.013118740000000004) (0.01328343400000001) (0.012959842499999999) (0.013232238999999993) (0.012979164500000015) (0.013183342999999986) (0.012763512000000005) (0.013044281500000018) (0.013030688500000012) (0.012967627499999995) (0.012945789499999999) (0.013028613500000008) (0.01302142249999999) (0.013168112499999995) (0.012956038499999989) (0.013146921499999992) (0.013328708500000008) (0.013013933500000005) (0.013240581000000001) (0.013326710499999991) (0.012900769999999978) (0.012985864500000013) (0.013202737500000006) (0.01334544) (0.013491275499999997) (0.013316574999999997) (0.013485579999999997) (0.013406674500000007) (0.013119036) (0.013456281) (0.013345450500000008) (0.013311121500000009) (0.019148604) (0.01327884) (0.013794270000000011) (0.013607348500000005) (0.013416156499999998) (0.013296795) (0.013548730999999994) (0.013469073499999998) (0.013094522500000011) (0.01320194999999999) (0.013587334999999992) (0.013158150000000021) (0.013109183499999996) (0.013410296500000016) (0.013706925500000022) (0.013387620000000003) (0.013493620999999983) (0.013198649000000007) (0.013153584500000023) (0.013436468000000007) (0.013274517500000013) (0.013365139500000012) (0.012878258500000003) (0.012962375000000012) (0.013239569999999992) (0.013376673500000005) (0.013024172) (0.013044960999999994) (0.012852791000000002) (0.013081925499999994) (0.013028223999999991) (0.012925477500000004) (0.01297700849999997) (0.013188633500000005) (0.012917810499999988) (0.013040013500000003) (0.013233976000000008) (0.013208701499999975) (0.013727563499999998) (0.013152487500000018) (0.0133337345) (0.013012424500000008) (0.013106756000000011) (0.013131338999999992) (0.0131228085) (0.013026863) (0.013007191500000015) (0.012996019500000011) (0.013428161000000008) (0.012913420499999995) (0.013116349999999985) (0.013171468500000005) (0.013126561000000009) (0.013096174999999988) (0.013079459500000001) (0.013467832999999999) (0.013553435500000002) (0.01328389349999999) (0.013307014499999992) (0.013283953000000015) (0.013384701499999985) (0.013176170000000001) (0.013438699500000012) (0.013295005499999998) (0.013139413500000002) (0.013374322500000008) (0.013232460499999973) (0.013408000500000003) (0.013324666500000013) (0.01323841399999999) (0.013533402500000014) (0.013471726000000017) (0.013727558499999987) (0.013269655500000005) (0.013181448499999984) (0.013229345999999989) (0.0132455665) (0.01315991150000001) (0.013684461499999995) (0.013491680999999991) (0.013737692499999982) (0.013658723999999997) (0.013426818500000007) (0.01334584400000001) (0.013163872000000007) (0.013797042999999995) (0.0129784805) (0.013069894500000012) (0.012870601999999995) (0.012984168000000004) (0.013285758499999994) (0.01305493050000002) (0.012832784) (0.012845176) (0.012983924999999993) (0.013253780999999992) (0.012832467500000014) (0.013154304499999991) (0.013282463999999994) (0.013222789500000012) (0.012966875500000016) (0.013343449500000007) (0.01274309400000001) (0.01285941950000001) (0.013020405999999984) (0.012913970999999982) (0.013181787499999986) (0.0131732445) (0.012980485999999986) (0.01305282050000002) (0.013253012000000008) (0.01300417600000002) (0.013407898999999987) (0.013253216999999984) (0.013057972500000015) (0.012981150499999997) (0.013135890500000025) (0.012951064500000012) (0.013285209999999992) (0.013286545499999997) (0.013454212500000007) (0.0135633285) (0.01323704199999999) (0.013420087999999997) (0.01339943049999999) (0.013208137499999995) (0.013285848500000003) (0.013612618500000007) (0.013463168499999997) (0.013364496999999989) (0.013470362499999985) (0.013415390500000013) (0.013163534500000004) (0.0132696645) (0.013129799500000011) (0.01340628349999999) (0.01320007749999999) (0.01366622900000003) (0.013771523999999993) (0.013273658000000008) (0.01338887350000001) (0.013234471000000012) (0.013387900500000008) (0.013234478999999993) (0.013525081000000008) (0.013506573500000021) (0.013195961999999992) (0.013427466500000013) (0.013493207499999993) (0.013155556500000026) (0.0129775315) (0.013069172000000004) (0.0128945045) (0.012899350000000018) (0.013001644500000006) (0.013233153499999997) (0.013007801999999999) (0.013055166500000007) (0.013203687499999991) (0.01306661100000002) (0.013339196499999983) (0.013223870499999998) (0.012863979999999983) (0.013011254) (0.013014343999999997) (0.013459794499999997) (0.013096462000000003) (0.013030059999999996) (0.013312189500000002) (0.013016344499999985) (0.012813945000000021) (0.012988886000000005) (0.013015994999999989) (0.013034891500000007) (0.01291925499999999) (0.013287165000000004) (0.013510382000000001) (0.013495037999999987) (0.013117341000000018) (0.013127660499999985) (0.013303082500000007) (0.013008893999999993) (0.0132154575) (0.013417492499999989) (0.013125936000000019) (0.013254823999999998) (0.013185236999999989) (0.013808216999999998) (0.013129805999999994) (0.013199037999999982) (0.013323518000000006) (0.013321025000000014) (0.013630700999999995) (0.01349330700000001) (0.013134004000000005) (0.013721016499999988) (0.01351603899999998) (0.013659631999999991) (0.01312981349999999) (0.013280822499999984) (0.013350425999999999) (0.013411935) (0.013462165499999998) (0.013343363999999996) (0.013241089500000011) (0.013351049500000003) (0.013747329999999988) (0.013428822500000007) (0.01337522649999999) (0.013341753999999997) (0.013147197) (0.013348643000000007) (0.013179785) (0.013340624500000009) (0.01359158349999999) (0.013068241500000008) (0.013124287999999998) (0.012921620500000008) (0.013086349499999983) (0.013081957500000019) (0.01303816499999999) (0.013190101499999995) (0.013001708000000015) (0.013191821999999992) (0.012976977500000014) (0.013203429500000002) (0.013015488500000005) (0.013149488) (0.013085556499999984) (0.013139090999999978) (0.013102120500000008) (0.01328051249999998) (0.013278598000000003) (0.012917062999999979) (0.013030160499999999) (0.013044725000000007) (0.01282014200000002) (0.013011125999999984) (0.013264861000000003) (0.013038400999999977) (0.013279335999999989) (0.013309032499999998) (0.013169329499999993) (0.013204472999999994) (0.012997543999999972) (0.012982225500000014) (0.013108393499999982) (0.013648985000000002) (0.013078773500000015) (0.013481775999999987) (0.013236329000000019) (0.0132903365) (0.013539595000000001) (0.013493339500000007) (0.013425331000000013) (0.013556140999999994) (0.013632911000000011) (0.013505522499999992) (0.013601702999999993) (0.013278406499999992) (0.01348767549999999) (0.013534959500000013) (0.013137590500000018) (0.013319601000000014) (0.013487406500000007) (0.013278599999999988) (0.013206427999999992) (0.01341724900000002) (0.013387849999999993) (0.013621104500000022) (0.013337498000000003) (0.01341146900000001) (0.013267967499999977) (0.013335514999999992) (0.01344332400000002) (0.013411215500000004) (0.013522863499999982) (0.013329175499999998) (0.01315736449999999) (0.013111650999999988) (0.01296428899999999) (0.01343447099999999) (0.012709496) (0.013150360499999986) (0.013073942000000005) (0.01315689049999999) (0.013022159499999991) (0.01293050350000001) (0.013388378499999992) (0.012890833500000004) (0.012902693999999978) (0.013050261999999993) (0.013072026500000014) (0.012941627000000011) (0.013025772000000005) (0.012838480999999985) (0.012818318499999995) (0.012950304999999995) (0.012878864500000003) (0.012854580000000004) (0.013282479000000014) (0.01304730200000001) (0.01280013449999999) (0.01284864400000002) (0.01325493250000001) (0.012809197999999994) (0.012980758499999995) (0.013220088000000005) (0.015335404499999983) (0.013119494500000023) (0.013057913000000004) (0.01336595900000001) (0.013220033499999992) (0.013218687500000006) (0.013183716499999998) (0.013955308000000013) (0.013689266500000005) (0.01338142249999999) (0.01318473000000002) (0.01344429350000001) (0.013423084999999987) (0.013280738) (0.013484117500000004) (0.013413108999999993) (0.013455906000000004) (0.013612361000000003) (0.013380835999999993) (0.0133676915) (0.013418936999999992) (0.013836714499999986) (0.013309226499999993) (0.013369618500000013) (0.013363972999999987) (0.013311035499999999) (0.013424726499999998) (0.01349127650000001) (0.013320921999999985) (0.013435071500000006) (0.013467352499999988) (0.013981931000000017) (0.013278618999999992) (0.013345784499999971) (0.012894729499999993) (0.01286042400000001) (0.012831667000000005) (0.013039594000000015) (0.012903983500000007) (0.013120452000000005) (0.013460050500000001) (0.013060939499999993) (0.012973343499999998) (0.01294373800000001) (0.013110391999999998) (0.012978425999999987) (0.013279774999999994) (0.01368766099999999) (0.013103723499999997) (0.012930901999999994) (0.013072957999999996) (0.012970450500000008) (0.013062415000000008) (0.013148842500000008) (0.013221374500000008) (0.0128204455) (0.012841533500000002) (0.012917533499999995) (0.013243463999999996) (0.013266761499999988) (0.013288542500000014) (0.012839493000000007) (0.012873935000000003) (0.013308918000000003) (0.013074854499999997) (0.013012560499999992) (0.013111695500000006) (0.013205379000000003) (0.012977708000000004) (0.013768580500000002) (0.013216806999999997) (0.013599455999999996) (0.01317499150000001) (0.013113047500000002) (0.013101878499999997) (0.01351332000000001) (0.013250803500000019) (0.0133505815) (0.013533318000000003) (0.013157754500000007) (0.0133762085) (0.0133524545) (0.013488266000000013) (0.013807774000000009) (0.013407710000000017) (0.013292186999999997) (0.013878304500000008) (0.012982655999999995) (0.013362482999999994) (0.01325931150000001) (0.013205753999999986) (0.013429756500000015) (0.01332565749999999) (0.01322612099999998) (0.013264987999999991) (0.013227977499999988) (0.013260440999999998) (0.013560389000000006) (0.013294345499999999) (0.013299912999999997) (0.012970417499999998) (0.01314559400000001) (0.012932450499999998) (0.013062316500000004) (0.013096510500000005) (0.013233256999999998) (0.013763740499999996) (0.013059558999999998) (0.013136541500000001) (0.013269248999999997) (0.013077226000000011) (0.013206711999999995) (0.012988534499999996) (0.013173939999999995) (0.013272990499999998) (0.013019142499999997) (0.013360162500000008) (0.013134212500000006) (0.013166514500000004) (0.012975884999999979) (0.01292157599999999) (0.0128889155) (0.013150574500000012) (0.012980719000000002) (0.013371866499999996) (0.012910902500000002) (0.0129522455) (0.01319413500000001) (0.013017861500000005) (0.013354210000000005) (0.013129852999999997) (0.013470696000000004) (0.013094892999999996) (0.013072114999999995) (0.013276371500000009) (0.013253523499999989) (0.013167407999999992) (0.01318728650000002) (0.013355752999999998) (0.013427614500000004) (0.013265642500000008) (0.013221994) (0.013355660500000005) (0.013162167999999988) (0.013219343500000008) (0.013217611000000004) (0.0131894875) (0.013312875500000002) (0.013175284500000009) (0.013439713000000006) (0.013516855499999994) (0.013325595499999995) (0.013207080999999996) (0.013425288500000007) (0.013297980500000015) (0.013450175000000023) (0.013163328500000002) (0.013403653500000001) (0.013290815499999997) (0.013667213499999983) (0.013409455) (0.013417007999999994) (0.012823100000000004) (0.012933196500000008) (0.012886029499999993) (0.01286216200000001) (0.012991041500000008) (0.013058209999999987) (0.013085141500000008) (0.0130870805) (0.012905445500000001) (0.012730791500000005) (0.01302861000000001) (0.013190733499999982) (0.012875643500000006) (0.013030176500000004) (0.012940080999999992) (0.013308717499999997) (0.012790294999999993) (0.01298054600000001) (0.012871209500000008) (0.012892803500000008) (0.012920181500000003) (0.012840354499999998) (0.01288479250000002) (0.012892945500000003) (0.0128241085) (0.013101348499999999) (0.0130369595) (0.013231372500000005) (0.013439096999999997) (0.013201195500000013) (0.013443765999999996) (0.013249273000000006) (0.013128656999999988) (0.01332779399999999) (0.013987242499999997) (0.013229451500000017) (0.01310715250000001) (0.013270265500000003) (0.013308816500000015) (0.013289079499999981) (0.0133946645) (0.013523569500000013) (0.013466541999999998) (0.013371386999999998) (0.013485219000000007) (0.013501151999999988) (0.01335708599999999) (0.013411346500000004) (0.013446426999999997) (0.013616079000000003) (0.01333493799999999) (0.013493121499999983) (0.01327792600000001) (0.013166742499999995) (0.013383673499999998) (0.013348278499999991) (0.013602786999999991) (0.013243783999999995) (0.013252806500000006) (0.013858702500000014) (0.013463435999999995) (0.013588215500000014) (0.0134010725) (0.01349826450000001) (0.013065332999999998) (0.012829513500000014) (0.01272049850000001) (0.013121161999999992) (0.013145680999999992) (0.013034351) (0.013118632500000005) (0.013119103500000007) (0.013072672499999993) (0.013195349499999995) (0.012986599000000001) (0.012982985500000002) (0.012930619500000004) (0.012958892999999999) (0.013059403499999983) (0.013068925499999995) (0.013102642499999997) (0.012800924500000005) (0.013089932999999998) (0.012824192999999998) (0.013258677499999996) (0.013004352999999996) (0.013086002499999999) (0.012753581) (0.013253833499999992) (0.013362964500000005) (0.0133526125) (0.0129922165) (0.013277380000000005) (0.013250740499999997) (0.013225531499999998) (0.012798232500000006) (0.013076393499999991) (0.013085002500000012) (0.013327880500000014) (0.013193956499999993) (0.013196899500000012) (0.01324484599999999) (0.013229618500000012) (0.013590784000000009) (0.01321628100000001) (0.013604488499999998) (0.01322002550000001) (0.013382234500000006) (0.013180238499999997) (0.013414494499999999) (0.013696412000000005) (0.013797137499999987) (0.013776101499999999) (0.013641543000000006) (0.013110104500000011) (0.013463354499999983) (0.01318577949999998) (0.013601378500000011) (0.013200606500000003) (0.013399356999999987) (0.013290744000000007) (0.013737271999999995) (0.013421316000000003) (0.013403641999999993) (0.013528954499999996) (0.013503368000000002) (0.013914709999999997) (0.013588481) (0.013304034999999978) (0.012823045000000005) (0.012802781999999999) (0.012926638000000004) (0.012960000499999999) (0.013555036499999992) (0.012817863499999999) (0.013123546) (0.0132267685) (0.01348888049999998) (0.012977485499999997) (0.013349466500000004) (0.012855986) (0.013094424499999993) (0.013103529499999989) (0.013056619500000005) (0.012871069499999999) (0.01298062500000001) (0.013434596999999993) (0.01310494449999998) (0.013252453499999997) (0.012850423500000013) (0.013268660000000002) (0.012875652500000015) (0.013332629999999998) (0.013122868499999996) (0.013154663000000011) (0.013251191500000009) (0.013342547999999996) (0.0130915385) (0.012945272500000021) (0.013242784499999993) (0.013280075999999988) (0.013160580000000005) (0.013209753000000005) (0.013126686999999998) (0.013285575000000008) (0.013243934499999999) (0.013316054999999993) (0.013520973500000005) (0.013621498499999982) (0.013461932999999981) (0.013557814000000001) (0.013579651499999998) (0.01318944050000001) (0.013899111500000005) (0.0132914175) (0.013119259000000008) (0.013346407500000004) (0.013322101500000003) (0.013371461500000001) (0.013357057499999991) (0.013831942499999986) (0.013469892499999997) (0.013008487000000013) (0.013233003999999993) (0.013248469500000012) (0.0135747955) (0.013431311000000001) (0.013596076499999998) (0.013364025500000001) (0.013456396500000009) (0.013708649000000003) (0.013035249999999998) (0.012806406500000006) (0.013136275499999989) (0.012761423000000008) (0.01311526049999999) (0.013123919000000012) (0.01291208449999999) (0.012907550500000003) (0.013241815500000004) (0.012990702000000007) (0.013313013000000012) (0.013282340000000004) (0.013323112499999998) (0.013086026) (0.013170158500000001) (0.013329089500000016) (0.0130977615) (0.012872970000000011) (0.012894746999999998) (0.01306320599999998) (0.013225879999999982) (0.013145325500000013) (0.01332718849999999) (0.013230169499999986) (0.013214774500000012) (0.013036097999999996) (0.013009092) (0.012941771500000004) (0.013334299500000008) (0.012984077499999996) (0.013057483999999994) (0.013000700500000004) (0.01280700500000001) (0.013215326500000013) (0.013765975) (0.013413091500000002) (0.013353101500000006) (0.013511842999999996) (0.0132377095) (0.013401279499999988) (0.013223947) (0.013597570999999989) (0.013506055999999989) (0.013429453500000008) (0.013567040000000016) (0.013466067499999998) (0.013365784499999991) (0.013569842499999998) (0.0134138055) (0.013190876000000004) (0.0132596725) (0.01323784900000001) (0.013127696499999994) (0.013405892500000002) (0.0131129715) (0.013482578499999995) (0.013442848000000007) (0.013572388000000019) (0.01320901499999999) (0.013321035000000009) (0.013471117000000005) (0.013390352500000008) (0.013347718999999994) (0.013496604999999995) (0.013342622999999998) (0.013002924999999999) (0.01294922350000001) (0.012845331500000015) (0.012814007000000002) (0.013038501000000022) (0.013314740999999991) (0.0128346025) (0.013026166000000006) (0.013042777500000005) (0.012939417999999994) (0.013036469500000009) (0.012793213999999997) (0.013096515000000003) (0.012988848999999997) (0.01297090749999999) (0.0133907095) (0.012879527500000001) (0.0127489405) (0.012945724500000005) (0.012809060999999997) (0.012997979499999993) (0.012936617499999997) (0.013216791000000006) (0.013052010000000003) (0.012857710500000008) (0.013070613999999994) (0.013144238499999988) (0.012986035999999992) (0.013199125499999992) (0.013078093499999985) (0.012883083000000004) (0.012932494000000003) (0.013638807500000003) (0.013679115999999991) (0.013352690500000014) (0.013192572) (0.013228854000000012) (0.013220769500000007) (0.013500727500000004) (0.013350833000000006) (0.013684715) (0.013696173500000006) (0.01363897800000001) (0.0132710885) (0.013344382500000002) (0.013228201499999995) (0.01350164999999999) (0.013708395499999998) (0.013247444000000011) (0.01351229449999998) (0.013294182499999987) (0.013221241999999994) (0.01334688299999999) (0.013183833000000006) (0.013461587000000011) (0.013351403500000011) (0.013355964499999998) (0.013280724500000007) (0.013528423499999997) (0.013171087499999984) (0.013228649499999981) (0.013164501499999995) (0.013385564500000002) (0.013495693000000003) (0.01289636949999999) (0.013342203999999996) (0.012975734000000003) (0.013162432500000015) (0.012995435999999999) (0.013120940999999997) (0.012963530500000015) (0.0130483515) (0.012946584999999997) (0.012879905000000011) (0.013121078500000008) (0.013052623) (0.013195197500000005) (0.013256565500000025) (0.013158026500000003) (0.01281605750000002) (0.012943201499999987) (0.013069984000000007) (0.012754917500000018) (0.013069242999999994) (0.012906510499999996) (0.01310318399999999) (0.012848645499999992) (0.012998073999999998) (0.012924588) (0.012853299999999998) (0.013285912999999996) (0.013180954000000009) (0.013161141500000001) (0.0136525495) (0.013147857500000026) (0.013450593000000025) (0.013347904500000021) (0.013462798499999998) (0.013384075999999995) (0.013492504500000002) (0.013387167500000005) (0.013265241499999997) (0.01336043449999999) (0.013278925499999997) (0.013233476500000008) (0.013433300999999995) (0.013628375500000012) (0.013462871999999973) (0.013345971500000012) (0.013864474500000001) (0.013439158999999978) (0.013258771499999988) (0.013310343000000016) (0.013337155999999989) (0.013311272999999998) (0.013194124500000001) (0.013258147499999998) (0.013154404500000008) (0.013202152999999994) (0.0135115975) (0.014007069999999996) (0.013451121000000024) (0.01327432549999999) (0.01340704799999999) (0.013259971499999995) (0.013661919999999994) (0.013291432499999992) (0.013468195499999988) (0.012992453500000015) (0.012828393500000007) (0.013105683499999993) (0.01295730099999999) (0.013221348999999993) (0.012779433999999992) (0.012813402500000001) (0.013327104000000006) (0.013151347000000008) (0.013255051500000017) (0.013126451999999997) (0.01312019099999999) (0.0133133785) (0.013011697000000016) (0.01312904550000002) (0.0134034195) (0.012932518500000004) (0.013140951000000012) (0.012737429500000008) (0.013283678500000007) (0.013121292499999992) (0.012991042500000008) (0.0131838985) (0.012928343499999995) (0.013053431000000004) (0.013454989999999986) (0.013487564499999993) (0.01327431400000001) (0.013136187000000007) (0.013216336000000009) (0.012994444000000008) (0.012993752999999997) (0.013365288500000003) (0.0132580915) (0.013332049499999998) (0.013179236999999983) (0.013343875500000005) (0.013433013999999993) (0.013191976000000008) (0.013641406499999995) (0.013428289999999996) (0.013599115999999994) (0.013369815499999993) (0.013397484000000015) (0.013249047) (0.013548639000000001) (0.013413376500000004) (0.013900415999999999) (0.013176216500000004) (0.01332084) (0.013534270499999987) (0.013249614000000007) (0.013079117499999987) (0.013158128000000005) (0.013514155) (0.013798972500000006) (0.013208137500000008) (0.013317191000000006) (0.013676522499999996) (0.013556146500000005) (0.013251900000000011) (0.013587775499999996) (0.013358279) (0.013200639) (0.013253120499999993) (0.0129914) (0.013503915499999991) (0.013133347500000003) (0.012755720499999984) (0.012940409) (0.012967061500000002) (0.013052712000000008) (0.013384075499999995) (0.0129765815) (0.013166649000000002) (0.013380097499999993) (0.013044341499999987) (0.013150183499999996) (0.012883170500000013) (0.013163099999999997) (0.013333416499999987) (0.0137193075) (0.012982981000000005) (0.013289479000000007) (0.013127583999999998) (0.01284457) (0.012993312000000007) (0.013287768500000005) (0.013142988999999994) (0.0132668685) (0.012895037499999998) (0.012950174500000008) (0.013392825999999997) (0.012952890000000009) (0.013135642000000003) (0.01305785550000002) (0.013261552500000023) (0.013204737500000008) (0.013409288500000005) (0.013296719500000012) (0.013477265499999988) (0.013395068999999996) (0.013166168500000006) (0.013684404000000011) (0.013770543499999996) (0.013357832000000014) (0.01338162150000001) (0.013478915500000008) (0.013277822999999994) (0.013442487500000003) (0.013296641499999998) (0.013561602999999992) (0.013268654000000005) (0.013144193999999998) (0.013578770000000004) (0.013444397499999997) (0.013422720000000013) (0.013251023) (0.013099644500000007) (0.013647607999999992) (0.01326604200000002) (0.013549301999999985) (0.0133249815) (0.013749016000000017) (0.013538012500000016) (0.013248090500000004) (0.01330922750000002) (0.013248828500000018) (0.013015286000000001) (0.013209369999999998) (0.012888364000000013) (0.013126119500000005) (0.012977273500000011) (0.0129617125) (0.013261083000000007) (0.013327331499999998) (0.013027741499999995) (0.013138077999999997) (0.013146746499999987) (0.013377312000000002) (0.013357306499999999) (0.01287972200000001) (0.013034984) (0.0129502435) (0.013125177499999988) (0.013224917000000003) (0.013025824000000005) (0.013250974500000012) (0.013310081500000001) (0.013216828) (0.012953815000000007) (0.013293420500000014) (0.013103830500000024) (0.012930261499999998) (0.013004330000000008) (0.013334992000000004) (0.01306446800000001) (0.013194960000000006) (0.013256355499999983) (0.01322065) (0.013168734500000001) (0.01333179000000001) (0.013486879499999993) (0.014140427999999997) (0.013387535999999992) (0.0133402995) (0.01320159450000001) (0.013155688499999998) (0.013378237000000001) (0.013637728000000002) (0.013234666499999992) (0.013353205000000007) (0.013397993999999996) (0.013292145499999991) (0.013436045500000007) (0.013437776500000012) (0.013456994) (0.013592783499999997) (0.013657805499999995) (0.013514495000000001) (0.013091690500000017) (0.013108982000000005) (0.013880866499999991) (0.013095924000000009) (0.0133555655) (0.013234805999999988) (0.013605800000000001) (0.013543745999999995) (0.013215145999999997) (0.01350003750000002) (0.013176305) (0.013444143500000005) (0.013203729999999997) (0.012896126500000007) (0.012885170499999987) (0.013161351000000002) (0.012928956500000005) (0.013079867500000009) (0.013024122499999999) (0.013063060000000001) (0.013045125500000004) (0.01372509000000001) (0.013489779500000007) (0.013404602500000001) (0.013461913999999991) (0.013204995999999997) (0.013080455000000005) (0.013106549000000009) (0.013029653500000002) (0.012939250499999999) (0.013147616) (0.01296728250000001) (0.012924909499999998) (0.013042285) (0.013040033000000006) (0.013096782999999987) (0.013170447000000002) (0.012997280500000014) (0.01341390599999999) (0.01287683349999999) (0.01365933300000001) (0.01319181400000001) (0.013205443999999997) (0.01341652900000001) (0.013573811000000005) (0.013406414499999991) (0.013096894499999984) (0.013175558500000004) (0.013579123999999998) (0.013257583000000003) (0.01335910799999998) (0.01325333799999999) (0.01340952799999999) (0.013933142999999995) (0.013472248500000006) (0.013307414500000003) (0.01323985250000001) (0.013347120500000004) (0.013388986499999991) (0.01321702050000001) (0.013081301000000004) (0.013550238500000006) (0.013292810500000002) (0.013566903500000005) (0.013239287000000002) (0.013320354499999992) (0.013173642499999999) (0.013200582499999988) (0.013458660499999983) (0.013238956999999996) (0.0136598) (0.013383377999999987) (0.013251901999999996) (0.013370172999999985) (0.013347806500000003) (0.013280549000000003) (0.013113396999999999) (0.013369103499999993) (0.01309722649999999) (0.01283662599999999) (0.012943891999999999) (0.01281201600000001) (0.013187669500000013) (0.012854365500000006) (0.013052380500000002) (0.013599883499999993) (0.013116268) (0.013186178500000006) (0.0131621725) (0.013535473499999992) (0.013015070500000003) (0.013021978000000003) (0.013329407499999987) (0.013317788999999997) (0.012975888000000005) (0.012942239500000008) (0.012916098500000014) (0.013040737499999996) (0.012692268000000007) (0.013129980500000013) (0.013691462000000001) (0.012959909999999991) (0.012974648499999991) (0.013161403499999988) (0.012690805000000013) (0.013114289500000015) (0.01311017049999999) (0.013366209000000004) (0.013525966) (0.013899003000000007) (0.013338896500000003) (0.013442330500000002) (0.013719071499999999) (0.013396085499999988) (0.013416227500000003) (0.013458272999999993) (0.013552672000000002) (0.013155366500000001) (0.013263787500000013) (0.013523920499999995) (0.013446014000000006) (0.013549019999999995) (0.013312939500000023) (0.013242105000000004) (0.013389482500000008) (0.013072527000000014) (0.01317067949999999) (0.013070608999999997) (0.013316653000000012) (0.013667680500000001) (0.013583569000000004) (0.013237903999999995) (0.01323745849999998) (0.0136031125) (0.01356531549999998) (0.013629605000000003) (0.013833837000000002) (0.0132233415) (0.013311501999999989) (0.013509201499999998) (0.012991377999999998) (0.012990190499999985) (0.0131501475) (0.012714273499999998) (0.012812147499999996) (0.012920484499999996) (0.013542917000000002) (0.012808877499999996) (0.01294107650000001) (0.012944263499999997) (0.012996309999999997) (0.013359065500000017) (0.013063987499999999) (0.013158217) (0.013031002) (0.0131059055) (0.013151218999999992) (0.012791112999999993) (0.01341276100000001) (0.013352200000000009) (0.013244124499999996) (0.012884068999999998) (0.013080824500000005) (0.012985032500000007) (0.01309948449999998) (0.013111412500000003) (0.013104634000000004) (0.013192841499999997) (0.013015907999999993) (0.012984973999999996) (0.013170564999999995) (0.012945116500000006) (0.01347697049999999) (0.013616261500000004) (0.013368771499999987) (0.013293814500000015) (0.013506572999999994) (0.013329453000000005) (0.013199687500000001) (0.013557856500000007) (0.013431625999999974) (0.013266563999999995) (0.013250566500000005) (0.013529043000000032) (0.013730166999999988) (0.013403505499999996) (0.01341057050000001) (0.014070953000000025) (0.013046446500000003) (0.0135336135) (0.013227450500000001) (0.013587677500000006) (0.013260176999999998) (0.013119592999999999) (0.013420828499999982) (0.013469439) (0.013447008499999982) (0.013410180500000021) (0.013891821000000013) (0.01344540449999998) (0.013652598500000002) (0.013174140499999987) (0.013530055499999999) (0.013453149499999997) (0.013292111999999995) (0.012872857000000015) (0.012742644000000011) (0.012846355500000003) (0.013541702500000002) (0.013194097500000002) (0.013407518500000007) (0.013131966500000022) (0.012912001500000006) (0.012991530500000001) (0.0129598665) (0.013049203999999981) (0.012977545999999993) (0.013302576499999996) (0.012850903999999996) (0.012851166000000011) (0.012885009000000017) (0.013011790999999995) (0.0133336035) (0.013007250499999998) (0.012905856499999993) (0.013136445999999996) (0.013379627500000005) (0.013187559000000001) (0.012861710999999998) (0.013020018500000008) (0.013239333500000006) (0.013238863000000003) (0.012832312499999998) (0.013199367500000017) (0.013094718000000005) (0.013818467000000001) (0.013284398000000003) (0.013791829499999991) (0.013358476999999994) (0.013096122000000016) (0.013810566999999996) (0.013295966000000006) (0.013297611500000014) (0.013195196000000006) (0.013644870000000003) (0.013206508000000006) (0.013265017500000004) (0.013469633999999994) (0.013338571000000007) (0.013397956999999988) (0.013073198000000008) (0.013555404500000007) (0.013420104000000002) (0.013528239499999997) (0.013697360500000005) (0.013293318499999998) (0.012974795499999997) (0.013283192) (0.013421080000000002) (0.013213504000000001) (0.013588505999999986) (0.013466562999999987) (0.013223411500000018) (0.013340126499999994) (0.013452118500000013) (0.013155112999999982) (0.013087935000000023) (0.013310172499999995) (0.012887657499999997) (0.013052020000000011) (0.013268717499999999) (0.012865850999999998) (0.012790285499999998) (0.013150835999999999) (0.012930105000000011) (0.012918975999999999) (0.0130198765) (0.012936371000000002) (0.013374125000000014) (0.013190294500000005) (0.013282322999999999) (0.013396651499999995) (0.012997846500000007) (0.012838153500000005) (0.013158743000000014) (0.013139678000000016) (0.012876879499999994) (0.012978605000000004) (0.013269765500000003) (0.012844179999999997) (0.012932943000000002) (0.013018076000000003) (0.013531912999999993) (0.01371844450000001) (0.013340059000000015) (0.013286290499999992) (0.013268984499999997) (0.013057209500000014) (0.012999745499999993) (0.013149911499999986) (0.013398937999999999) (0.01314869149999999) (0.013229920500000006) (0.013389850499999995) (0.013288744500000005) (0.013418004999999997) (0.013097852500000007) (0.013332171000000004) (0.01339398850000001) (0.013429493500000014) (0.013488926999999998) (0.013442947999999982) (0.013335919999999987) (0.013259287999999994) (0.013684143999999995) (0.013625928999999995) (0.013381026999999976) (0.013171845500000001) (0.013284245) (0.01330571500000001) (0.013392105999999987) (0.013227869499999989) (0.013488484000000009) (0.013307280500000004) (0.013213842500000003) (0.013209151500000002) (0.013436784999999993) (0.013339201499999995) (0.013325406499999998) (0.013539072500000013) (0.013468616999999988) (0.013178086500000019) (0.012977449000000002) (0.012717984000000002) (0.012891071500000004) (0.012955090500000002) (0.012986106499999997) (0.01288879200000001) (0.013118811500000008) (0.012696217499999995) (0.013018145000000009) (0.013359778500000002) (0.012956955000000006) (0.013004647999999994) (0.013178087000000005) (0.01313976) (0.013330594999999987) (0.013146759500000008) (0.012970603999999997) (0.0131865345) (0.012914169000000003) (0.013090410999999996) (0.01316094000000001) (0.013048070999999994) (0.013131185000000004) (0.012924450000000004) (0.013028056499999996) (0.013075519500000007) (0.012947061999999995) (0.012933816500000014) (0.01282464400000001) (0.012881463999999995) (0.013070926999999996) (0.012933783500000004) (0.013355999500000007) (0.0134791925) (0.013251707500000015) (0.01363474399999999) (0.013415118000000004) (0.013065452000000005) (0.013181689999999996) (0.013493573499999995) (0.013389052999999998) (0.013849095500000005) (0.013382040000000012) (0.013209113000000008) (0.013462332499999993) (0.013512817499999996) (0.013145490499999996) (0.013316126000000011) (0.013682441999999989) (0.013250332500000017) (0.013174099499999994) (0.013370762999999994) (0.013168964500000005) (0.013188654999999994) (0.013072527) (0.013145494500000007) (0.013712782500000006) (0.013336313500000002) (0.013244587500000002) (0.013314711000000007) (0.013644167499999998) (0.013340449000000004) (0.013412033000000018) (0.013056751000000005) (0.015093997999999997) (0.012926050999999994) (0.012785296500000001) (0.013030478500000012) (0.012908352499999998) (0.012795210999999987) (0.012953849500000003) (0.013242009500000013) (0.012916538500000005) (0.013065017999999998) (0.013015697500000006) (0.013319189499999995) (0.013121232499999996) (0.013040164499999993) (0.013356016499999998) (0.013195943500000015) (0.013027825999999992) (0.013111739500000011) (0.012882144000000012) (0.013064182500000007) (0.013055956500000007) (0.013130228000000008) (0.013227251500000009) (0.013070282500000002) (0.013014305000000004) (0.013662950999999993) (0.013086155000000002) (0.01308129299999998) (0.013088348) (0.01319492600000001) (0.013335128000000002) (0.013149249999999987) (0.013478867000000005) (0.013482573499999997) (0.013033677499999993) (0.013564581000000006) (0.013386533500000006) (0.013346401999999993) (0.0133867025) (0.0135516215) (0.013197038999999994) (0.013485637999999994) (0.013395541499999997) (0.013391171999999993) (0.013232468000000011) (0.0137627835) (0.01360640149999999) (0.013409269000000001) (0.013810852499999998) (0.01314459350000001) (0.01320974250000001) (0.013149319499999992) (0.013241697999999996) (0.0132715375) (0.013188188000000003) (0.013338266000000001) (0.013232905500000017) (0.01331984550000001) (0.013417031499999982) (0.013174054000000018) (0.013852758000000007) (0.013651363) (0.013324189999999986) (0.013128375499999997) (0.012911766499999991) (0.013574567999999995) (0.013189262499999993) (0.013292326500000007) (0.013335149000000018) (0.012811742000000001) (0.013076932499999985) (0.013108155499999982) (0.012829050499999994) (0.01333794100000002) (0.012860744499999993) (0.013280327000000008) (0.013181282000000002) (0.013250295499999995) (0.013332028999999995) (0.013069652999999987) (0.012794866500000002) (0.012922955) (0.012731426500000004) (0.012871943999999996) (0.01313239649999999) (0.012962346) (0.012744750999999999) (0.012978875500000014) (0.01298303399999999) (0.012866036499999997) (0.012860973499999998) (0.013158826499999998) (0.0130389375) (0.012796858999999994) (0.012982658000000008) (0.0133328645) (0.013263859500000003) (0.013386757499999999) (0.013340075000000007) (0.013064361499999996) (0.013496266999999992) (0.013603562) (0.0130601365) (0.013319548999999986) (0.01330184000000001) (0.013593673999999986) (0.013389481500000008) (0.013314259500000009) (0.013427934499999988) (0.013521632999999977) (0.013257539499999998) (0.013101860999999992) (0.013483959000000018) (0.013779340999999987) (0.013585679500000003) (0.013208305999999989) (0.013445980499999996) (0.013218715499999992) (0.01339135000000001) (0.01313662950000001) (0.013528820999999996) (0.013703609000000005) (0.013299829500000013) (0.013193928000000008) (0.013720110499999993) (0.013373315999999996) (0.0134108535) (0.013404250000000006) (0.012755254500000021) (0.013136768999999993) (0.012832625499999986) (0.013063949000000005) (0.012827117499999999) (0.013162047999999982) (0.01322433449999999) (0.013339191500000014) (0.012978012499999983) (0.013011382000000002) (0.0131371755) (0.012970900000000007) (0.013146763999999991) (0.012947510499999995) (0.013007150500000009) (0.013566307) (0.012951023500000006) (0.013066116500000002) (0.013238871000000013) (0.013006191) (0.0129044725) (0.012943459000000004) (0.013217383999999999) (0.013002856499999993) (0.012973166499999994) (0.013112279000000004) (0.012968469999999996) (0.01298911350000001) (0.012964842000000004) (0.013311316500000017) (0.013226166000000011) (0.013467580500000007) (0.013541332500000003) (0.013166959000000006) (0.01341617149999999) (0.01307575050000001) (0.013243040999999997) (0.013290562999999991) (0.013501468500000002) (0.012968854499999988) (0.01361158400000001) (0.013488591000000008) (0.013258775) (0.013340596500000024) (0.013258361999999982) (0.013426904500000003) (0.013279285000000002) (0.01345046749999998) (0.013491857999999995) (0.013557609499999984) (0.013301123500000012) (0.0136392065) (0.013161585500000017) (0.013344291999999994) (0.013479823500000002) (0.013216462499999998) (0.013775006500000006) (0.013296173499999994) (0.013172934000000011) (0.013250286) (0.013332391500000013) (0.013294260999999988) (0.013514716999999982) (0.013498794999999994) (0.013052447999999994) (0.012913744000000005) (0.013072681500000002) (0.013166375500000008) (0.013099511499999994) (0.012916821499999995) (0.013085571000000018) (0.01277041100000001) (0.012908760499999991) (0.013373697000000004) (0.013112004999999982) (0.013082233000000013) (0.013107853000000003) (0.012816902499999991) (0.01312013649999999) (0.01329794250000002) (0.012873292999999994) (0.013013656999999984) (0.01287411699999999) (0.012975933000000009) (0.012834044999999988) (0.012884911499999999) (0.013208266999999996) (0.013113361500000018) (0.013297368000000004) (0.013084408500000005) (0.013256563999999998) (0.013117123999999994) (0.012755616499999983) (0.013279768000000025) (0.013037098499999997) (0.012823108) (0.013542318499999997) (0.013155741499999998) (0.013092007500000002) (0.013259783499999997) (0.013427205999999997) (0.013452173999999997) (0.013387839000000012) (0.01313583900000001) (0.013260729000000013) (0.013213664) (0.013267952500000013) (0.01357040000000001) (0.013435526999999989) (0.013410593000000012) (0.0131673145) (0.013505000999999989) (0.013525248500000003) (0.013370803) (0.013402037499999991) (0.013332478499999995) (0.013596897499999996) (0.013427716499999992) (0.01324961949999999) (0.013927785999999998) (0.01336779249999999) (0.013523280499999984) (0.013210078500000028) (0.013201665500000001) (0.013471046999999986) (0.013233547500000026) (0.013606344000000006) (0.013090336500000022) (0.013036221999999986) (0.012756128999999991) (0.012961129000000002) (0.013064928500000003) (0.01305943050000001) (0.013049941999999995) (0.012826511999999998) (0.01319696749999999) (0.013340466499999995) (0.012962992999999992) (0.013294515500000006) (0.013152680999999986) (0.013291601500000014) (0.013272115000000029) (0.012917211499999998) (0.013089513499999997) (0.013350703000000005) (0.013061905999999998) (0.013058886500000005) (0.012811430499999998) (0.013816707499999983) (0.0127348875) (0.013032078000000002) (0.013067818499999995) (0.013096800499999992) (0.013201793999999989) (0.01316563300000001) (0.012889420499999998) (0.01306375949999998) (0.013062852000000014) (0.013020460500000011) (0.012996813499999996) (0.013157092000000009) (0.013490118500000009) (0.013049132000000005) (0.013234806000000016) (0.013695901499999996) (0.013457587500000007) (0.013513834500000002) (0.013426171000000015) (0.01333345000000001) (0.013815116000000002) (0.013356486999999986) (0.013157680000000005) (0.01345251750000001) (0.01336775599999998) (0.013289020999999984) (0.01340556250000001) (0.013219179999999983) (0.013237567500000005) (0.013198509000000011) (0.013041869500000011) (0.013243651999999995) (0.012997480500000005) (0.01318765899999999) (0.013330685500000009) (0.01365754249999998) (0.01341381899999998) (0.013487980000000024) (0.012968888500000011) (0.013328152499999982) (0.013247473499999982) (0.013245904499999989) (0.01349786900000001) (0.012890019500000002) (0.013222519500000002) (0.012983249500000002) (0.013266374999999997) (0.012969359500000013) (0.013103970500000006) (0.012827898500000004) (0.013253281500000005) (0.013236052500000012) (0.013276709999999997) (0.012883883999999998) (0.013045593999999994) (0.013052167500000003) (0.013043141999999994) (0.013154122500000004) (0.013052746000000018) (0.013151565500000004) (0.013144378499999998) (0.012790965000000001) (0.013266662499999998) (0.012897956500000002) (0.012845448499999995) (0.012778443) (0.01317829700000002) (0.014027994000000016) (0.013281889500000005) (0.013140792000000012) (0.012950377499999985) (0.013119101500000008) (0.013201778999999997) (0.012957786499999985) (0.013205079500000008) (0.013399604999999995) (0.013519504000000002) (0.013436733499999992) (0.013418521500000002) (0.013269244000000013) (0.013222955500000008) (0.013226332499999993) (0.013454189000000005) (0.013587090499999996) (0.013415759) (0.013279335499999975) (0.013152273999999992) (0.013825444500000006) (0.013676352000000003) (0.013286388500000024) (0.013315207499999981) (0.012876451999999997) (0.013155172999999992) (0.013187620499999997) (0.013224767499999998) (0.013381934499999998) (0.013634017999999998) (0.013391261500000015) (0.013468228000000013) (0.01340548100000001) (0.013172909999999982) (0.013504850500000012) (0.013543363000000003) (0.013293761999999987) (0.01353352549999999) (0.013280219999999981) (0.013204067) (0.012836248499999994) (0.013227723499999997) (0.0130735035) (0.012755810000000006) (0.012956006500000006) (0.012851542000000007) (0.01329818499999999) (0.012894170499999996) (0.012788546999999997) (0.01321177150000001) (0.013256846499999975) (0.012959828499999979) (0.013303603000000025) (0.012903708500000013) (0.013094482500000004) (0.013049609000000004) (0.012883231000000009) (0.013004269999999998) (0.013056133499999997) (0.013261999999999996) (0.01295809449999999) (0.013219797000000005) (0.012860231) (0.013124741499999995) (0.013150266999999993) (0.0130448695) (0.013138121000000003) (0.01300077999999999) (0.01354558950000001) (0.013328008000000002) (0.013153898000000011) (0.012968268500000019) (0.013513576999999999) (0.013775151500000013) (0.013191285000000011) (0.0136219895) (0.013297354999999983) (0.013530249500000008) (0.0131396565) (0.013179030999999994) (0.013340553500000005) (0.013159707499999992) (0.013379417500000004) (0.013327277999999998) (0.013522648999999998) (0.013288754999999985) (0.013140202000000004) (0.01318052800000001) (0.01332805450000002) (0.014134859500000013) (0.013167663999999996) (0.013481024999999994) (0.013226449500000001) (0.013356958000000002) (0.013180327000000006) (0.013258634499999977) (0.013173883500000011) (0.0134546995) (0.013321001000000027) (0.013264658999999998) (0.013231792000000006) (0.013121503499999992) (0.013434824999999997) (0.013142182999999988) (0.013179910500000003) (0.013279484500000008) (0.012945549500000014) (0.0130916165) (0.012902808000000002) (0.012928124999999999) (0.013000126) (0.013355701999999997) (0.013201176499999995) (0.013118388999999994) (0.013366536000000012) (0.0135301845) (0.013099168000000008) (0.012872101499999997) (0.013242335999999993) (0.013149956500000004) (0.012942679500000012) (0.012864268999999998) (0.013513587499999993) (0.01296443500000001) (0.013032248499999996) (0.012988198999999992) (0.012842103000000007) (0.013275643000000004) (0.013052334999999998) (0.01287260400000001) (0.013273006500000004) (0.013069597000000002) (0.013338412499999994) (0.012923876) (0.012847881500000005) (0.013162460999999986) (0.013196941500000003) (0.013613728500000005) (0.013175127000000009) (0.013193549499999999) (0.013339026500000004) (0.013060382500000009) (0.013420329500000008) (0.013258856999999999) (0.013654505999999997) (0.013561845500000003) (0.013495002000000006) (0.013414503499999994) (0.013266274999999994) (0.013119500499999992) (0.013444543499999989) (0.013241348) (0.013172007) (0.013289523499999997) (0.013171997000000005) (0.013103457499999985) (0.013258390499999995) (0.01317744600000001) (0.013108499499999995) (0.013211382999999993) (0.013311568499999996) (0.013386159500000008) (0.013533121500000023) (0.013348729500000017) (0.013646548000000008) (0.013858540500000002) (0.01366929900000001) (0.013190962000000014) (0.012949642000000011) (0.012949321499999986) (0.013023909000000014) (0.012979622499999996) (0.013057675000000005) (0.013205986500000003) (0.013018308500000006) (0.013012857999999988) (0.012817543) (0.013349512499999994) (0.013210671000000021) (0.013109627500000012) (0.012891176500000004) (0.01309717249999999) (0.013248741500000008) (0.013103272499999999) (0.013080152999999997) (0.0130956515) (0.013192581000000009) (0.013037170999999986) (0.012881471000000005) (0.012902621000000003) (0.013073202999999992) (0.012872146000000015) (0.013162700999999985) (0.012943408000000003) (0.0131384435) (0.0131396015) (0.013296353999999996) (0.013128109999999998) (0.013082417499999985) (0.01293258500000001) (0.013362701000000018) (0.013445731000000016) (0.013658188499999988) (0.013258371500000005) (0.013223467499999988) (0.01303417599999998) (0.013303829500000003) (0.01347493050000001) (0.013550529999999991) (0.013186803499999997) (0.013512311999999999) (0.0135851585) (0.013614351499999996) (0.01360563200000002) (0.013567311500000012) (0.013526502499999996) (0.013476526500000016) (0.013425408) (0.013290087000000006) (0.013240030500000027) (0.013328822500000004) (0.013321088000000009) (0.013693266999999981) (0.013195366500000014) (0.013471283000000028) (0.013562435999999997) (0.013396742000000003) (0.013586830000000008) (0.013664349500000006) (0.013153934000000006) (0.013153839499999986) (0.013309698500000008) (0.01280423850000001) (0.013021271499999987) (0.0131396545) (0.012952964500000011) (0.012749450499999995) (0.013429617000000005) (0.013100570499999992) (0.013029078499999985) (0.013438893999999993) (0.013006315500000004) (0.013179529500000009) (0.013286402000000017) (0.012762610500000007) (0.013143072000000006) (0.013182505999999983) (0.013269504500000001) (0.013015995500000002) (0.012930585500000008) (0.013420463999999993) (0.012981443499999995) (0.012816052499999994) (0.013067121500000015) (0.013106122500000011) (0.013035228499999996) (0.012955706499999997) (0.01318129400000001) (0.012984858499999988) (0.013191236999999995) (0.013483870500000009) (0.01309081749999999) (0.013214933999999998) (0.013291882500000005) (0.013342174000000012) (0.013033335999999993) (0.013039885999999987) (0.013234809499999986) (0.0135119675) (0.013300180999999994) (0.013431773999999994) (0.013483227) (0.013218964000000014) (0.013277420499999998) (0.01365520499999999) (0.013304069000000002) (0.013645200499999996) (0.013509334499999998) (0.013730533499999989) (0.013420856499999995) (0.0135325595) (0.01341155699999999) (0.013479065999999998) (0.013322878999999996) (0.013211025500000001) (0.013398158000000007) (0.013037619500000014) (0.01308964700000001) (0.013770693) (0.013307477500000012) (0.013400881500000017) (0.013165226000000002) (0.013518281499999993) (0.013408985999999984) (0.013346805499999989) (0.013497749500000017) (0.01321195700000001) (0.013076894499999991) (0.01281288350000001) (0.012953416999999995) (0.012865645499999995) (0.013056189499999996) (0.013126828000000021) (0.013376825499999995) (0.012958218499999993) (0.012953266000000005) (0.012957848499999994) (0.013088910499999995) (0.013031465000000006) (0.013276184999999982) (0.01297374150000001) (0.013056914000000017) (0.012839483499999998) (0.012801442999999996) (0.012950065499999996) (0.013079146) (0.013809907999999996) (0.012886634500000008) (0.012935063499999996) (0.013172313499999977) (0.013245682500000008) (0.013171425) (0.013004847500000014) (0.0131121835) (0.012989169500000008) (0.0131294795) (0.013091768500000003) (0.013002082500000026) (0.013268849999999999) (0.013379265000000001) (0.013118454000000002) (0.013339977500000003) (0.013368902500000016) (0.013169792) (0.013297642499999998) (0.013301664000000005) (0.013250128) (0.013680932000000007) (0.013628043500000006) (0.01344117050000003) (0.013474140999999995) (0.013412328000000001) (0.013315758999999983) (0.0133921855) (0.013413025500000009) (0.013322147499999992) (0.013202158000000005) (0.013237426999999996) (0.013448138499999998) (0.013092735000000008) (0.013448571000000006) (0.013132080000000004) (0.013629478999999986) (0.013791766999999983) (0.013165046000000027) (0.013987444500000001) (0.013511888500000013) (0.013168353000000008) (0.013449240500000001) (0.013414479000000007) (0.012848032499999995) (0.013114809500000005) (0.01279545550000001) (0.0129743155) (0.013339237000000004) (0.012933127999999988) (0.01288868600000001) (0.013136413499999985) (0.013028581999999997) (0.013083945999999999) (0.012912129499999994) (0.012931270000000009) (0.013293979500000011) (0.012882389000000008) (0.012891623500000018) (0.013271248500000013) (0.013317600999999998) (0.012903474499999984) (0.012749957499999992) (0.0131501765) (0.012982014500000014) (0.012996601499999996) (0.012980851000000015) (0.012845139500000019) (0.01326986249999998) (0.013330259000000011) (0.01283743950000002) (0.013265229500000017) (0.012952294500000003) (0.013364654000000004) (0.012988656999999987) (0.013134063000000001) (0.013039152500000012) (0.013264519000000016) (0.01347972700000001) (0.01349916100000001) (0.01311466) (0.013365714500000014) (0.01345568799999998) (0.013259733999999981) (0.013219420999999981) (0.013395920499999991) (0.013373144999999989) (0.013531272499999983) (0.013280164500000025) (0.013472659499999998) (0.0134940915) (0.013304351499999978) (0.013327021999999994) (0.013297719999999999) (0.013199862499999993) (0.013420600000000005) (0.020100003000000005) (0.013615427500000027) (0.013312230500000008) (0.013467684999999993) (0.013329948999999966) (0.013438883999999984) (0.013184027499999987) (0.013521159499999977) (0.013389566500000005) (0.013393606999999988) (0.013461666999999997) (0.013575055499999988) (0.012989087499999996) (0.013377169500000022) (0.01298816500000001) (0.012958074) (0.012867168000000012) (0.012841487499999998) (0.012894772499999985) (0.012695910500000018) (0.013095992499999987) (0.013278368000000013) (0.013004033499999984) (0.013279067999999977) (0.012957161500000008) (0.013230572999999982) (0.013140706500000002) (0.01313168449999999) (0.013080722000000017) (0.012960508999999995) (0.013013186499999996) (0.012904494499999988) (0.012970182999999996) (0.01291138650000001) (0.013089385999999995) (0.013098732500000002) (0.013048964499999996) (0.012955287499999996) (0.01295834400000001) (0.012906779000000007) (0.01345086849999999) (0.013527684499999998) (0.013553932499999977) (0.013452120499999984) (0.013441683999999982) (0.013442175) (0.013458899499999982) (0.013465904) (0.013444866500000013) (0.013866902) (0.01309423249999997) (0.013410244500000001) (0.013233930000000005) (0.013232423499999979) (0.01354975550000001) (0.01311672550000001) (0.01346647949999999) (0.013438709499999993) (0.013561027499999989) (0.013424183499999992) (0.013195923999999984) (0.013646548999999994) (0.013428648499999987) (0.013067728000000015) (0.013435641499999998) (0.013325378499999999) (0.01326719450000001) (0.013096468) (0.013591842500000006) (0.013367043000000009) (0.013435442500000006) (0.013130457999999984) (0.013348191500000009) (0.013811170999999983) (0.013146728499999996) (0.013246827000000003) (0.012937027000000004) (0.012929253500000015) (0.013090661500000003) (0.013221402000000007) (0.013023170999999986) (0.013800687500000006) (0.013057723000000007) (0.013092424499999991) (0.012909393500000005) (0.0131078305) (0.013035233499999993) (0.012949292999999987) (0.012936205499999978) (0.012825741000000002) (0.013465751000000012) (0.013043949499999999) (0.012836941500000004) (0.013007298) (0.013330053000000008) (0.013355920499999993) (0.013111921000000012) (0.013027614499999993) (0.012839042499999995) (0.01309234250000002) (0.013175442499999995) (0.013045528999999986) (0.012909716999999987) (0.012990943000000005) (0.013047411999999994) (0.013390122500000018) (0.013008276999999985) (0.013170559999999998) (0.013383421000000006) (0.013205704499999998) (0.013151729999999986) (0.013511765000000009) (0.013475353499999995) (0.013276327500000004) (0.013228640999999985) (0.013419788500000016) (0.013537505999999977) (0.01378293450000001) (0.013497984000000018) (0.013352390500000005) (0.013293511999999993) (0.01325968999999999) (0.013783610500000001) (0.013667946) (0.013442967499999972) (0.013543745999999995) (0.013256913999999995) (0.013615920000000017) (0.013858951499999994) (0.013445116499999993) (0.013436185000000003) (0.013263419500000012) (0.013116033) (0.013428684999999996) (0.013258364499999994) (0.013526969000000014) (0.013603864499999993) (0.013425007499999989) (0.013496096499999999) (0.013457181500000012) (0.013017095999999992) (0.013423711500000005) (0.013087828000000024) (0.012944730500000015) (0.012819985500000006) (0.0131837135) (0.01301475199999999) (0.013182673500000006) (0.013627647499999992) (0.013468181499999982) (0.013214592999999997) (0.013044229000000004) (0.013373046) (0.012972545000000016) (0.013272404499999987) (0.01293814549999997) (0.013431309500000016) (0.012909929000000028) (0.012950022499999991) (0.012962729999999992) (0.013036955499999989) (0.013081089500000004) (0.01319324799999999) (0.012867224499999996) (0.013286814000000022) (0.013337315000000016) (0.012905324999999981) (0.013321208500000015) (0.013197469000000003) (0.013579933499999988) (0.012906539500000008) (0.01326619050000001) (0.013336498000000002) (0.013335310000000003) (0.013840911499999997) (0.013438161500000004) (0.013324703499999993) (0.013304706000000013) (0.013192222000000017) (0.013488772499999996) (0.013464684000000018) (0.013835364499999989) (0.013440247000000002) (0.013077770499999988) (0.013655290000000014) (0.013277156500000012) (0.013059673500000007) (0.01313284449999999) (0.013423848500000016) (0.013220246500000005) (0.013430542000000004) (0.013319624000000002) (0.013235420499999997) (0.013375331500000004) (0.01333313249999997) (0.013290627499999999) (0.013595451000000022) (0.013559761999999975) (0.01325108899999998) (0.013325668500000012) (0.013508773500000001) (0.013771648999999997) (0.013429411500000002) (0.013477937500000009) (0.013197301500000008) (0.013245858999999999) (0.013041273999999992) (0.013108586999999991) (0.012936933999999997) (0.013416871499999997) (0.013099502999999998) (0.013299867999999992) (0.013051122999999998) (0.013234840499999997) (0.013249192999999992) (0.012872407000000002) (0.012924895000000006) (0.0129705195) (0.013184083500000013) (0.013218754000000013) (0.013201299) (0.012870084500000004) (0.013415906000000005) (0.012821396499999999) (0.012978629000000005) (0.013081714000000008) (0.013125510999999992) (0.013094043999999999) (0.013186935999999982) (0.013062892999999992) (0.01284302050000001) (0.013149461000000001) (0.013072812999999989) (0.013077494000000009) (0.013245695000000002) (0.012979675999999996) (0.013822417000000004) (0.013389313) (0.013077077000000006) (0.013648265999999992) (0.013534323499999987) (0.013640168500000008) (0.013185773499999998) (0.013435005500000013) (0.013318578499999997) (0.013572227999999992) (0.013225586999999997) (0.013301347000000005) (0.0137949245) (0.0131825785) (0.013255814500000004) (0.013437637000000002) (0.013392497500000003) (0.013609487500000003) (0.013517900499999999) (0.013272045499999996) (0.013148271000000003) (0.013267515500000007) (0.013432267000000012) (0.013078242000000004) (0.013387798500000006) (0.01391088900000001) (0.01365087949999999) (0.013387359999999987) (0.013253010999999995) (0.013376357000000005) (0.013850161) (0.013474194500000009) (0.013205835499999999) (0.013023132000000007) (0.012937741500000002) (0.012975503499999999) (0.012907390000000005) (0.0133615485) (0.013187910499999997) (0.013514986500000006) (0.013285621999999997) (0.013247549000000011) (0.013071408999999992) (0.013517283500000005) (0.013182250500000006) (0.01307309899999999) (0.012868355000000012) (0.012994605500000006) (0.013058400999999997) (0.012999767999999995) (0.013057466500000003) (0.0132339135) (0.01348662049999999) (0.01300517200000001) (0.013096547000000014) (0.012853989499999996) (0.012834420499999999) (0.013431383000000005) (0.013106481500000003) (0.013130857999999995) (0.013000573999999987) (0.01318357249999999) (0.013237580499999999) (0.01299207999999999) (0.013836687) (0.013255508) (0.013367883999999997) (0.0131999265) (0.013241406000000011) (0.013323032499999998) (0.013301321500000005) (0.013727063500000011) (0.013583332000000004) (0.013444371999999996) (0.013762977499999995) (0.013211855499999994) (0.013110162499999994) (0.013413014499999987) (0.013442665499999992) (0.013353584999999987) (0.013288887) (0.013557757500000003) (0.013176599000000011) (0.013413783000000012) (0.013424732500000022) (0.013089536500000012) (0.013078606999999992) (0.013348504499999997) (0.013643363000000006) (0.013221704000000015) (0.013373248500000004) (0.01325095300000001) (0.013565773500000003) (0.013600417500000003) (0.013256811000000007) (0.01342086399999999) (0.01311233399999999) (0.01312821850000001) (0.01348167950000001) (0.012894960999999983) (0.0130270985) (0.012862632499999999) (0.012880766500000015) (0.0134835975) (0.01295850450000001) (0.013677005500000006) (0.013255078999999989) (0.013231192000000003) (0.012802792500000007) (0.013327486999999999) (0.012990121499999993) (0.013359483000000005) (0.012846704) (0.013137776500000004) (0.01297861900000001) (0.012893216499999999) (0.012888990000000003) (0.013303556499999994) (0.013163761499999996) (0.0126973695) (0.013019130000000004) (0.012971441) (0.013220084499999993) (0.013114717500000012) (0.013287483500000002) (0.013114094499999993) (0.012867678500000007) (0.0131094665) (0.01330436800000001) (0.013673544999999995) (0.013141331500000006) (0.013282421000000016) (0.013112116999999993) (0.013348425999999997) (0.013503538500000009) (0.013459317999999998) (0.013455714000000008) (0.013368146999999997) (0.01320497200000001) (0.013023379500000001) (0.013079836499999997) (0.013617836000000022) (0.013225759500000003) (0.01337189100000001) (0.013403179000000015) (0.013118754499999996) (0.013157351500000011) (0.013639288000000013) (0.013428744999999992) (0.013451109999999988) (0.013277604999999998) (0.013374057000000009) (0.013549953500000003) (0.01337708500000001) (0.013174478000000003) (0.013079245000000017) (0.013672715000000002) (0.013720643000000005) (0.013502564999999994) (0.013439586000000003) (0.013050271500000002) (0.012907399500000014) (0.012776197500000003) (0.012848266499999997) (0.012690024500000008) (0.012878209999999987) (0.0132532115) (0.012932238499999998) (0.012999610499999995) (0.013312601500000007) (0.013168249499999993) (0.01317856249999999) (0.013252884499999992) (0.01314274750000001) (0.013197010000000009) (0.013182149500000004) (0.013168684000000014) (0.0129430455) (0.012971803000000004) (0.012940424499999992) (0.013566082500000007) (0.01312000449999999) (0.013024238500000007) (0.013080228999999999) (0.013177776500000002) (0.013592176499999997) (0.013005582500000001) (0.013455952000000007) (0.013104322000000002) (0.013119837499999995) (0.012845881999999989) (0.013345249999999989) (0.013324436000000009) (0.013229647499999997) (0.013159761000000006) (0.013069155000000013) (0.013324515999999995) (0.013248545) (0.014101116999999996) (0.013399032500000005) (0.013309044500000006) (0.013645863500000008) (0.013439856) (0.013140864999999988) (0.013264894500000013) (0.013286440999999996) (0.013455501999999994) (0.013635302000000002) (0.013360316000000011) (0.013439725999999999) (0.013334177499999988) (0.013214429) (0.013522813500000008) (0.013106056500000005) (0.013522164000000003) (0.013477570000000008) (0.013738791) (0.013339767500000002) (0.013691081499999994) (0.013219925000000007) (0.013264000999999997) (0.013238530999999998) (0.013514097500000016) (0.013651504499999995) (0.013029189999999996) (0.013028105499999998) (0.012818556499999995) (0.013309399500000013) (0.012794937999999992) (0.01296583450000001) (0.013130547000000006) (0.012746442999999996) (0.013247890000000012) (0.013000222000000006) (0.013183135999999998) (0.013244376500000002) (0.013090352999999999) (0.013013248499999991) (0.013125526499999998) (0.012913220000000003) (0.012863673500000006) (0.01276985550000001) (0.0129362705) (0.012847095000000017) (0.012990883499999994) (0.012933026000000014) (0.012958384999999989) (0.013108514500000001) (0.013331841000000011) (0.013003821500000012) (0.013476664999999999) (0.0130600305) (0.013228023999999991) (0.013133356999999998) (0.013218938499999985) (0.012996436000000014) (0.013165460500000004) (0.013421983499999998) (0.013421138000000013) (0.013220652) (0.013222285) (0.013283434999999996) (0.013547416999999992) (0.013432860500000005) (0.013408301000000011) (0.013303086500000005) (0.0133107965) (0.013368883000000012) (0.013323711000000016) (0.01404337899999998) (0.013580150499999999) (0.013922320000000016) (0.013362896999999999) (0.01314312949999999) (0.0132930525) (0.013013815000000012) (0.013497544) (0.013162701500000012) (0.013226161499999986) (0.01344588549999999) (0.013480006500000016) (0.013316546500000012) (0.01330469799999999) (0.013900639499999992) (0.013511267499999993) (0.013259052500000007) (0.01360053650000001) (0.013405354500000022) (0.012962801999999995) (0.012883515500000012) (0.01297511250000001) (0.012671005500000013) (0.01295439650000002) (0.012936200000000009) (0.012968685999999993) (0.012949376999999998) (0.013239293499999999) (0.012960173500000005) (0.012907764000000002) (0.013501008000000009) (0.01316093850000001) (0.013107360000000012) (0.013116316500000003) (0.013085881500000007) (0.012769442999999991) (0.01328552849999999) (0.013210638999999996) (0.013084504499999997) (0.01318801750000001) (0.012884593500000013) (0.012995014499999999) (0.012856623500000011) (0.013178463500000001) (0.013139587999999994) (0.013540337) (0.012985976999999982) (0.013316133000000008) (0.012970086500000005) (0.0129537225) (0.013058576500000016) (0.013459150500000003) (0.013231133999999992) (0.013196748999999994) (0.013810562000000012) (0.013422197499999997) (0.013476996000000005) (0.013060277500000009) (0.01323817649999999) (0.013673071500000009) (0.013489110499999998) (0.013475901500000012) (0.013797081500000002) (0.013796139999999985) (0.013278485999999978) (0.013553759000000012) (0.013327861999999982) (0.013095680999999998) (0.013197418000000016) (0.013310215) (0.013129971000000004) (0.013458992500000003) (0.013457277500000003) (0.013361111500000009) (0.013267607499999987) (0.013421061499999998) (0.013211717999999997) (0.013488440000000004) (0.013293211999999999) (0.013473008999999994) (0.013404160499999984) (0.013259568) (0.013506559499999987) (0.012926315499999994) (0.013164562000000005) (0.013062312999999992) (0.01281087950000001) (0.012959097499999989) (0.013092181000000008) (0.012931056999999996) (0.013214956) (0.013123581500000009) (0.012923045499999994) (0.013223242499999996) (0.013053638999999992) (0.01319157) (0.013193343499999996) (0.0134304705) (0.012913513500000015) (0.013046243500000013) (0.012897462499999998) (0.01286297850000001) (0.012909852000000013) (0.0128695905) (0.013136583500000007) (0.013115216499999999) (0.013038900499999992) (0.012943054999999995) (0.012893840500000003) (0.013322330500000007) (0.013367567999999996) (0.013048557500000002) (0.013189476999999991) (0.013149874500000006) (0.013169268499999998) (0.013458721500000007) (0.01332265149999999) (0.013346665500000007) (0.013153148000000003) (0.013284091499999998) (0.013143184000000016) (0.013361646500000005) (0.013292913999999989) (0.013111000999999997) (0.013245149999999997) (0.013672417499999992) (0.013411973000000008) (0.013480515499999998) (0.013412504000000006) (0.013308698500000007) (0.013211246999999995) (0.013194755500000002) (0.013072041500000006) (0.0136437155) (0.013315260500000009) (0.013450562) (0.013341655000000008) (0.013173722999999998) (0.013257026500000005) (0.013600590500000023) (0.0134912425) (0.013527932000000006) (0.013602829999999996) (0.01341808799999998) (0.013470376499999992) (0.013312965499999996) (0.013310193000000026) (0.013249467500000014) (0.013081985500000004) (0.013102818000000002) (0.013407279000000008) (0.013023622000000012) (0.013492557500000002) (0.012985030499999994) (0.013013627) (0.012895822000000015) (0.013329049999999995) (0.0135856865) (0.0131400505) (0.013179149999999987) (0.013054329500000003) (0.014175248999999987) (0.013253400000000012) (0.013077108500000004) (0.012952281499999996) (0.013256097499999994) (0.013181869500000012) (0.013029537999999993) (0.013207599999999986) (0.013212859499999993) (0.01279094700000001) (0.013263268500000008) (0.012988417500000002) (0.013060778500000009) (0.012916431000000006) (0.013691533999999991) (0.013107409) (0.013184566999999994) (0.013022351500000001) (0.01315581049999999) (0.013417418999999986) (0.013165777000000004) (0.013421419500000004) (0.013167926499999996) (0.013728938499999982) (0.013361825000000008) (0.013255248499999997) (0.013137379000000005) (0.013529701499999977) (0.013448549499999976) (0.01370077800000001) (0.013722376999999994) (0.01336523199999999) (0.013633693500000016) (0.013211682500000002) (0.013276510000000005) (0.013231954500000004) (0.013443002999999995) (0.013375267999999996) (0.013607487500000001) (0.013387257500000013) (0.013526753000000002) (0.013335791999999999) (0.013522287500000008) (0.013350676000000006) (0.013304744000000007) (0.013533748499999998) (0.013442764999999982) (0.01402073550000002) (0.013176303000000014) (0.01330284900000002) (0.012834341999999999) (0.013122065000000002) (0.012980255999999996) (0.012829700999999999) (0.012947230000000004) (0.012887365999999997) (0.013012967500000014) (0.012827771000000016) (0.013001304499999991) (0.013346950499999996) (0.012899580499999994) (0.01295213399999999) (0.013520656500000006) (0.013043295499999996) (0.013397915499999996) (0.013975610499999985) (0.012945377999999994) (0.012999403999999992) (0.012877390500000002) (0.013010835000000012) (0.013082847000000009) (0.013278073999999987) (0.012774962) (0.013292099500000001) (0.013154447500000013) (0.012898538000000001) (0.013140704000000003) (0.012995523499999995) (0.013111151500000001) (0.013000633499999997) (0.013436070500000008) (0.012936814500000005) (0.013200111500000014) (0.013470273000000005) (0.013484225500000002) (0.013430823999999994) (0.013447057499999998) (0.013087229500000006) (0.013379339000000004) (0.013335967500000004) (0.013115162) (0.013409875500000001) (0.013381486499999998) (0.013222878500000007) (0.013275812000000012) (0.0133593075) (0.013495283999999996) (0.013435765000000002) (0.013411711999999992) (0.013215528500000018) (0.013115788000000003) (0.013685100999999991) (0.013104109500000002) (0.01330471400000001) (0.013535778499999998) (0.013359701500000001) (0.013531594999999993) (0.01332411750000001) (0.013323400500000013) (0.013154617000000007) (0.013623213000000009) (0.013364831500000021) (0.01341379199999998) (0.013389850500000008) (0.013051574999999996) (0.013078547999999995) (0.013112610999999982) (0.013065485999999987) (0.013253341500000015) (0.013146541000000012) (0.0131137625) (0.012984540499999989) (0.013393428499999999) (0.012951336999999993) (0.012810186000000001) (0.01335704850000001) (0.01306320250000001) (0.012821342) (0.013259464000000012) (0.01304201549999999) (0.013040516000000002) (0.013289128000000011) (0.013212387000000006) (0.013458007999999994) (0.013177237999999994) (0.01285035100000001) (0.013009922499999993) (0.01297611600000001) (0.013142166999999996) (0.012994523500000008) (0.0129125925) (0.012927371500000007) (0.013277157000000012) (0.013505395500000003) (0.013065015) (0.013326120499999997) (0.013219176) (0.013307919500000015) (0.013209048000000015) (0.013156331000000007) (0.013381476500000003) (0.013947032000000012) (0.013042182999999999) (0.013367842500000005) (0.013485540000000004) (0.013782416500000005) (0.013432372999999997) (0.013263888500000001) (0.013230215500000017) (0.013192331500000001) (0.013365148999999993) (0.013598187999999997) (0.013627738) (0.013163282999999998) (0.013098166500000008) (0.013525789499999996) (0.013612087499999995) (0.013354854) (0.013494551500000007) (0.013182147500000005) (0.013643930000000012) (0.013257414000000009) (0.013480101999999994) (0.01342972800000003) (0.013444879499999993) (0.013454686499999993) (0.013366483500000012) (0.013157733500000005) (0.013037179499999996) (0.01296087650000001) (0.013087815499999988) (0.013019133000000002) (0.013029319000000011) (0.012820531499999996) (0.012881201499999995) (0.012817788499999996) (0.013247134000000008) (0.013200261500000005) (0.01309043750000001) (0.012857753999999999) (0.013112451999999997) (0.013243196499999998) (0.012849617500000007) (0.013266990000000006) (0.012804355500000003) (0.013205921999999995) (0.012833837) (0.01303364550000001) (0.013268871499999987) (0.013190770500000004) (0.012956987500000003) (0.012795235000000002) (0.01289095250000001) (0.012849605) (0.013118691499999988) (0.013762453999999993) (0.013134369500000007) (0.013428081499999994) (0.013146488000000012) (0.013310932999999997) (0.01313255549999999) (0.01343022399999999) (0.013228358499999995) (0.013573741) (0.013483128000000011) (0.013406797999999998) (0.01301691050000002) (0.013672205999999992) (0.013697386000000006) (0.013332983499999992) (0.013380106500000002) (0.013151379000000005) (0.013562275499999998) (0.013413412999999999) (0.01381172700000001) (0.013651476499999995) (0.013340778500000011) (0.013489209000000002) (0.013343626499999997) (0.013339421000000004) (0.013491282500000007) (0.013146259999999993) (0.013197427000000012) (0.013418743499999997) (0.013653077999999985) (0.013371373500000006) (0.0133030965) (0.013383830500000013) (0.013296325000000012) (0.013222329500000005) (0.013233126499999984) (0.01347765599999999) (0.012920528) (0.013103469000000006) (0.013063585000000016) (0.012732939000000013) (0.013194444000000013) (0.013279427999999996) (0.01296021700000001) (0.012997720000000004) (0.0129137015) (0.012846990499999988) (0.013258788000000007) (0.013146348000000016) (0.0138070005) (0.0136591405) (0.01299091949999999) (0.013059570000000006) (0.012874888500000015) (0.013210948499999986) (0.01335198600000001) (0.013109771000000006) (0.01299393) (0.013034164) (0.012950872499999988) (0.013022388999999995) (0.012972564500000006) (0.013047766999999988) (0.013182360500000004) (0.01308498150000001) (0.012926369500000007) (0.013424617) (0.012942520999999998) (0.013009002499999991) (0.0136364905) (0.013155787000000002) (0.013777460500000005) (0.013075956500000013) (0.013181093500000005) (0.013241534499999999) (0.01350001699999999) (0.013394044999999993) (0.013364690499999998) (0.01330248199999999) (0.013788874000000007) (0.013559225500000008) (0.013380265500000016) (0.013274484000000003) (0.013475988500000008) (0.01351878649999999) (0.013402377499999993) (0.013595337999999998) (0.013504522500000019) (0.013511431500000004) (0.013438976500000005) (0.013280278000000006) (0.013365654500000004) (0.013525654499999998) (0.013416456500000007) (0.0136647045) (0.013561167000000027) (0.013260423999999993) (0.014004292499999987) (0.013530413500000005) (0.01329222150000002) (0.013474687999999999) (0.013082112499999993) (0.012897919999999993) (0.012937755499999995) (0.012930738999999997) (0.012987893) (0.013273658000000008) (0.013111906500000006) (0.012838758499999992) (0.013105089500000014) (0.012944341000000012) (0.013028497499999986) (0.012981940000000011) (0.01300677900000001) (0.013073288000000002) (0.012952670999999999) (0.013292237000000012) (0.012838340500000003) (0.013224565500000007) (0.012736683499999998) (0.013367179499999993) (0.01331639100000001) (0.013156478999999999) (0.013207065500000004) (0.012891169000000008) (0.013431981500000023) (0.013136881500000003) (0.012954115500000002) (0.012960471999999987) (0.013001248000000007) (0.013239215499999984) (0.0130845505) (0.012821381499999993) (0.013148067) (0.013370440500000011) (0.013548102500000006) (0.013136504499999993) (0.013126532999999996) (0.0131071445) (0.013125700000000004) (0.013317125500000013) (0.013516419500000001) (0.01316614100000002) (0.013400637500000007) (0.013558864500000004) (0.013953264999999992) (0.013234214500000008) (0.013517566000000009) (0.013192343500000009) (0.013233719500000005) (0.013503452999999999) (0.013398868999999994) (0.01320351950000001) (0.01337865449999999) (0.013168494500000003) (0.013414760499999998) (0.01323237250000002) (0.013652018000000002) (0.013595843999999968) (0.013869242000000004) (0.013266776999999993) (0.013297308500000021) (0.013312252499999983) (0.01340126450000001) (0.013660927999999989) (0.012908221000000011) (0.012776206999999998) (0.013035777000000012) (0.013014247999999992) (0.013296753999999994) (0.012979413999999995) (0.013099336999999989) (0.012803180499999997) (0.012887180999999998) (0.013066926999999992) (0.013175280000000011) (0.012994542000000012) (0.013032303499999995) (0.013133932000000015) (0.013459724000000006) (0.013353484499999999) (0.013063555000000004) (0.012815918999999995) (0.012782544500000007) (0.01308322499999999) (0.0131105725) (0.013276015000000002) (0.013131247499999998) (0.01306070999999999) (0.013103316000000004) (0.012838245499999998) (0.013181250999999991) (0.012998530000000008) (0.013244508499999988) (0.013111112500000008) (0.013103989499999996) (0.013071861000000004) (0.013495777) (0.013331098000000013) (0.013432521500000003) (0.013249211999999996) (0.013299117999999999) (0.013231495999999995) (0.013377178500000003) (0.0132940795) (0.013640995999999989) (0.013227881999999982) (0.013247252499999973) (0.013452547499999995) (0.013160728999999996) (0.013223841499999986) (0.013538346000000007) (0.013271858000000025) (0.013565963) (0.013250341499999999) (0.01339908649999999) (0.01315802449999999) (0.013271565999999999) (0.013393834499999993) (0.013338059) (0.013362033999999995) (0.013302346500000006) (0.013391569499999992) (0.01351440100000001) (0.013607992) (0.013384642500000002) (0.013510646499999987) (0.013368054500000032) (0.014115994500000006) (0.012909105500000004) (0.013267093500000007) (0.0127994035) (0.01282771299999999) (0.012945587000000008) (0.013301863499999983) (0.013225421000000001) (0.013203852000000016) (0.012921171999999995) (0.013178226000000001) (0.012998146999999988) (0.013304635500000023) (0.013203679499999996) (0.012998734499999984) (0.012885854500000002) (0.013102923500000016) (0.012821161999999997) (0.01280334000000001) (0.012951538499999998) (0.012918219999999994) (0.012835197000000007) (0.013014130999999998) (0.013137675500000001) (0.013249162999999994) (0.013241051500000017) (0.01301578049999999) (0.013073688999999986) (0.013164591000000003) (0.013255601500000005) (0.012951795999999988) (0.013101171000000023) (0.013076195000000013) (0.013273245499999989) (0.013276234500000011) (0.013460279000000006) (0.013203049000000022) (0.013482257500000011) (0.013073087999999997) (0.013606678999999997) (0.013300463499999998) (0.013043551999999986) (0.013224598500000004) (0.013321528000000013) (0.013332578500000011) (0.013527137000000009) (0.01315196049999999) (0.013555347500000009) (0.013435537499999997) (0.013518227500000007) (0.013445451000000011) (0.013552942999999998) (0.013219061000000004) (0.013477543499999994) (0.013215575500000007) (0.013277774500000006) (0.013287190000000004) (0.013316542500000014) (0.01378528150000001) (0.013469610000000007) (0.013553559999999992) (0.013496595999999986) (0.013156894000000002) (0.01338966049999997) (0.013436493000000022) (0.012965674999999996) (0.013031976000000015) (0.013029404000000008) (0.013167034500000008) (0.0129438105) (0.012809841000000002) (0.013136593000000002) (0.012970737499999996) (0.012985697500000004) (0.012933194999999995) (0.012845701499999987) (0.012945500000000013) (0.013410425999999975) (0.01327341999999998) (0.012863347499999997) (0.013222814999999985) (0.01294081150000001) (0.012793489000000005) (0.01300739599999999) (0.013295085499999998) (0.012900997500000011) (0.013052724499999988) (0.013218404499999989) (0.012923469999999992) (0.013459115999999993) (0.013113196000000008) (0.013532932999999983) (0.013004192499999997) (0.013147809499999996) (0.012966362999999995) (0.013106248499999987) (0.013457173500000016) (0.013226516000000008) (0.01327820149999999) (0.013581232500000012) (0.013309724999999994) (0.013318861000000001) (0.013091738999999991) (0.013440418499999995) (0.01351783949999999) (0.013979508500000001) (0.013244013499999999) (0.013642207500000017) (0.013396509000000001) (0.013518247000000011) (0.013502029499999998) (0.01355044250000001) (0.013387412999999987) (0.013337290500000001) (0.0131612485) (0.013551143000000002) (0.013269558499999973) (0.013311239000000002) (0.013164369000000023) (0.013305459500000005) (0.013424697500000013) (0.0134468175) (0.013698046999999991) (0.013626880000000008) (0.013662017999999998) (0.01330685299999998) (0.01349718400000001) (0.013466841500000007) (0.013393329999999995) (0.013338514999999995) (0.012922667499999999) (0.012999677500000001) (0.012978176000000022) (0.012867565000000011) (0.013256583500000002) (0.012972085500000008) (0.01303244549999999) (0.012705097999999984) (0.0132120555) (0.012985950999999996) (0.01298008249999999) (0.013149607499999993) (0.012896897500000004) (0.013400433000000003) (0.012919434500000007) (0.013032094999999994) (0.012837593499999994) (0.013040363999999999) (0.012891640499999996) (0.013097334500000002) (0.013060778000000009) (0.012957340499999997) (0.013048377) (0.013076605500000005) (0.013216743500000003) (0.012945778500000005) (0.01321604550000001) (0.013063905000000015) (0.012946386500000004) (0.012926361000000011) (0.013038659499999994) (0.013402938500000003) (0.013505794500000001) (0.013055402999999993) (0.013239620500000007) (0.01300477350000001) (0.013051763999999993) (0.013132618500000012) (0.013325974500000004) (0.013142198500000007) (0.013332565500000004) (0.013332630499999998) (0.013378892999999989) (0.013267833000000007) (0.013503625000000005) (0.013122346500000007) (0.013459465000000004) (0.013537438000000013) (0.013205955500000005) (0.013174021000000008) (0.013195569000000018) (0.013535255999999996) (0.013754671999999996) (0.013548841000000006) (0.013295232000000004) (0.013137277499999989) (0.013356992500000012) (0.013522399000000004) (0.013387102500000012) (0.013254374499999999) (0.013319227000000003) (0.013198078500000002) (0.013313160500000004) (0.013032424) (0.012951195999999998) (0.013051322000000004) (0.013199688000000001) (0.012941009000000003) (0.013027360499999988) (0.013305343500000011) (0.013114384000000007) (0.013530416999999989) (0.012978599500000007) (0.013109529000000009) (0.013611045500000002) (0.013277826999999992) (0.013341937999999998) (0.013088358999999994) (0.013102703500000007) (0.013054093499999989) (0.0130086715) (0.012950235500000004) (0.013758777) (0.01308970700000002) (0.012895156500000005) (0.012821575999999987) (0.012844115999999989) (0.013080575499999997) (0.013060121500000008) (0.0131016885) (0.013244534999999974) (0.0132360495) (0.013222073) (0.013260946499999995) (0.0130304205) (0.013455081000000008) (0.013090553500000005) (0.013464630500000005) (0.01356204100000001) (0.013270015999999996) (0.013657266000000001) (0.013753965499999993) (0.013304725500000003) (0.01343048550000002) (0.01343185999999999) (0.013346392499999984) (0.013342471000000022) (0.013226749499999996) (0.01348084400000002) (0.01328617850000001) (0.013154199499999977) (0.013169012999999993) (0.01306140750000001) (0.013164002000000008) (0.01364115299999999) (0.013369708499999994) (0.013539746000000005) (0.012970942999999985) (0.013259870500000007) (0.013396548500000008) (0.013540794499999995) (0.013366950500000002) (0.013259740000000006) (0.013618096499999996) (0.013380443999999991) (0.013609898999999981) (0.013343191000000004) (0.012804265500000009) (0.013533467999999993) (0.013040939500000001) (0.013076632000000005) (0.012978819000000016) (0.012982931000000017) (0.012895740999999988) (0.012847208500000012) (0.013033324500000013) (0.01317009450000002) (0.013266353000000008) (0.013225749499999995) (0.013046463000000008) (0.013069170500000005) (0.013198983999999997) (0.01319928250000002) (0.0128162795) (0.013041260000000013) (0.012911268000000004) (0.012881880499999998) (0.01277028999999999) (0.012820637499999996) (0.013244487) (0.013465722) (0.01315389850000001) (0.012850898999999999) (0.013201447499999977) (0.01326007650000001) (0.013145736000000005) (0.013112167500000008) (0.013112866000000015) (0.013180665499999994) (0.013319113999999993) (0.013376304000000006) (0.013313550999999993) (0.013148222000000015) (0.013342727499999998) (0.013430236500000012) (0.013637592500000004) (0.013592718500000003) (0.013243644499999999) (0.013522558500000004) (0.01330569999999999) (0.013540382000000004) (0.013667166000000008) (0.013365655500000004) (0.013411500499999993) (0.01572992699999999) (0.013038566499999987) (0.013344732499999998) (0.013405129999999987) (0.013344782000000013) (0.013122185500000008) (0.013187730500000008) (0.0133779225) (0.013324604000000004) (0.013620610500000005) (0.013185371500000001) (0.013554745499999993) (0.013549025000000034) (0.01369391150000003) (0.013446671499999993) (0.013630202000000008) (0.013472669499999992) (0.013041076499999998) (0.0129745265) (0.012829351999999988) (0.01307014749999999) (0.013061199999999995) (0.013003749999999994) (0.013070879000000007) (0.012906517500000006) (0.012937394000000005) (0.0130844455) (0.013023770500000004) (0.013241689000000001) (0.013126602000000015) (0.012911694000000001) (0.013109889999999999) (0.013180413499999988) (0.013244133000000005) (0.012813642) (0.012996739999999993) (0.0131525485) (0.013055525499999984) (0.012790541000000002) (0.012810265000000015) (0.013317634999999994) (0.013321107000000013) (0.013022614000000016) (0.013274392499999982) (0.013123863) (0.013216630499999993) (0.013496168999999988) (0.0130794355) (0.0132215205) (0.013653819999999997) (0.01319173999999998) (0.013366941000000007) (0.013198328499999995) (0.013294882999999993) (0.013332906000000005) (0.01368452299999999) (0.013724030999999998) (0.013466304999999998) (0.013433029999999999) (0.013390184999999985) (0.013932012500000007) (0.013887179499999985) (0.013500062500000007) (0.013377717000000011) (0.013208397499999996) (0.013475887500000006) (0.013727794500000001) (0.013194262500000012) (0.013216003000000004) (0.013662105000000008) (0.013111085499999994) (0.013280318000000013) (0.013448013499999995) (0.013327039999999984) (0.01416651699999999) (0.01390529750000001) (0.013260835999999998) (0.01367444650000002) (0.013518015500000008) (0.013341442500000009) (0.013548507999999973) (0.01299341950000002) (0.012877798999999995) (0.013407913500000007) (0.013027806000000003) (0.012888785499999986) (0.012924719000000001) (0.01300230799999999) (0.012734414999999985) (0.0129339215) (0.01329375699999999) (0.013313577999999993) (0.012883942499999995) (0.012919212999999999) (0.012983545999999999) (0.013182804499999992) (0.013157733000000019) (0.01291779600000001) (0.012832872499999995) (0.012848577500000014) (0.013184165500000011) (0.012939189500000003) (0.013589413499999994) (0.013280906499999995) (0.012812322000000015) (0.012869758000000023) (0.013399251000000015) (0.013213747000000012) (0.012988961000000007) (0.01363850849999998) (0.012944013000000004) (0.013155965500000005) (0.013047847999999987) (0.013191564000000003) (0.013419287500000016) (0.013260688999999992) (0.013587245999999997) (0.013493721000000014) (0.013223001499999998) (0.013671259500000019) (0.013164427499999992) (0.013520369500000004) (0.013450582999999988) (0.013497282999999999) (0.013227362499999992) (0.013504149500000007) (0.013165206000000013) (0.013788949499999995) (0.013461320000000013) (0.013183906500000009) (0.013635096) (0.013298263500000004) (0.013113396500000013) (0.013322779000000007) (0.013139281000000003) (0.012860489499999989) (0.013227879499999998) (0.013274851000000004) (0.013347274000000006) (0.013393014500000008) (0.01324164450000001) (0.01323001) (0.013099798499999996) (0.013506128500000006) (0.013316451000000007) (0.013217456000000002) (0.013163517) (0.013660320000000017) (0.013005866000000005) (0.013275980500000006) (0.01306366299999999) (0.013601484000000011) (0.012689535000000002) (0.0127828455) (0.01307639699999999) (0.012922755000000008) (0.013261391999999997) (0.012962204000000019) (0.013240138500000012) (0.013077387999999995) (0.013046688) (0.012943065499999976) (0.013394802499999983) (0.012798209500000005) (0.012785089500000013) (0.012974766499999998) (0.013114208499999974) (0.012946079000000013) (0.01278885049999999) (0.013042835000000016) (0.01297522750000002) (0.013496419000000023) (0.013437311999999993) (0.013130893500000018) (0.012866147000000008) (0.012754210000000002) (0.013217978500000005) (0.013384642000000002) (0.013098997000000015) (0.013240448000000016) (0.013426778999999986) (0.013055426999999994) (0.013787091500000001) (0.013179542000000016) (0.013038258499999997) (0.013386184499999995) (0.013429483000000006) (0.013630364000000006) (0.014018325500000012) (0.013398288000000022) (0.01370041150000001) (0.01331940899999999) (0.013295631500000002) (0.013090152999999993) (0.013167518500000017) (0.013061782000000008) (0.013155329000000007) (0.013241006499999985) (0.013067678) (0.01334114950000001) (0.013421072999999992) (0.013327180000000008) (0.013320026499999998) (0.013247249999999988) (0.013345535999999991) (0.013195444) (0.013508865500000009) (0.013563687000000019) (0.013283329499999982) (0.012742901000000001) (0.013094318000000008) (0.0128606795) (0.012770760000000006) (0.013086929999999997) (0.013177092500000001) (0.012874047999999985) (0.013061687000000002) (0.012973589000000008) (0.012816913000000013) (0.012888100999999999) (0.012811915499999993) (0.013306834000000017) (0.01363824449999998) (0.013102991499999994) (0.013170636999999985) (0.01310827099999999) (0.012756799999999999) (0.013064447999999979) (0.013081592499999989) (0.013055524999999998) (0.012992416000000007) (0.012735056500000008) (0.013159961499999998) (0.013087328999999995) (0.013219550499999996) (0.013025535500000004) (0.013077045000000023) (0.01309381699999998) (0.012937540500000011) (0.012903648000000004) (0.013112811500000016) (0.01330513350000001) (0.013901735999999984) (0.013328087999999988) (0.013438894500000007) (0.013266067500000006) (0.013025375499999992) (0.013056797499999995) (0.01332114849999999) (0.013415153000000013) (0.013532309500000006) (0.013242648999999981) (0.013167986000000007) (0.013397616000000001) (0.013300049000000008) (0.013300397000000005) (0.013396874000000003) (0.013291163999999994) (0.013346251499999975) (0.013283437500000009) (0.013389123999999988) (0.013748576499999984) (0.013495685500000007) (0.013867572499999994) (0.013364163999999998) (0.013283542500000009) (0.013265119499999978) (0.013288254000000013) (0.013720752499999989) (0.013478361000000022) (0.013319975500000011) (0.013077116000000014) (0.013450049999999991) (0.013130874500000014) (0.013494765499999992) (0.013315393000000009) (0.01309184300000002) (0.012846885499999988) (0.013008480000000003) (0.013110714000000023) (0.013038616500000003) (0.013035703999999981) (0.013023966499999998) (0.013232450999999992) (0.013325238500000003) (0.013048982500000014) (0.013256328499999998) (0.013168182500000014) (0.01299525850000001) (0.012910722000000013) (0.01281046949999999) (0.012900650499999985) (0.013164277500000002) (0.012939290499999992) (0.013052128499999968) (0.012954291500000006) (0.012848451499999997) (0.013443950999999982) (0.013208999000000027) (0.013217372499999977) (0.013020079000000004) (0.012991036499999983) (0.013393106999999987) (0.012908557999999987) (0.01336151699999999) (0.01370951899999999) (0.013132709500000006) (0.013206074500000012) (0.013244189000000003) (0.013169473000000015) (0.013475241499999999) (0.013127417999999988) (0.013109157499999996) (0.013499930000000021) (0.013650728000000015) (0.013278373999999996) (0.013464971999999992) (0.013216055500000018) (0.013452507500000002) (0.013327980499999975) (0.013373531000000008) (0.013425067000000013) (0.013643264000000016) (0.013457206000000013) (0.01388436350000001) (0.013352142999999983) (0.013159248999999998) (0.013250617999999978) (0.013365401999999998) (0.013441919999999982) (0.013331673000000002) (0.013287551499999994) (0.01376450600000001) (0.014054285) (0.013634724) (0.01331405699999999) (0.013478182500000005) (0.013003184500000015) (0.013061634500000016) (0.013004545999999992) (0.012735595500000002) (0.0128639215) (0.013156256500000005) (0.012848949999999998) (0.012884740000000006) (0.013004967000000006) (0.012888288500000011) (0.013207718500000007) (0.013040173500000002) (0.012881704500000007) (0.012994134000000004) (0.012961842000000001) (0.013381559000000015) (0.013037473500000007) (0.012956476000000008) (0.013006628500000006) (0.01291799149999999) (0.013022454500000002) (0.012817092000000002) (0.012993056000000003) (0.012895709500000005) (0.013084033999999994) (0.012880188) (0.013086392999999988) (0.013539425500000021) (0.013084131999999998) (0.0133177305) (0.012918237499999999) (0.013383236500000006) (0.013177950000000008) (0.013206556499999994) (0.013044407499999994) (0.013447692999999997) (0.013322576500000002) (0.013478364499999992) (0.013308906500000009) (0.013220348500000006) (0.013673426500000016) (0.0131679465) (0.013272273000000015) (0.013552857500000001) (0.013491794000000001) (0.014211287500000003) (0.013395159000000018) (0.013352570500000022) (0.013458196500000005) (0.013269008499999999) (0.013242564499999998) (0.013485276000000004) (0.013354994500000009) (0.013123030499999994) (0.013318151999999986) (0.012987422999999984) (0.013679202500000001) (0.013402131500000011) (0.013670298499999997) (0.013185415500000006) (0.013269368000000004) (0.013490111000000013) (0.013497062999999976) (0.013480098999999995) (0.013175467499999996) (0.013319591500000005) (0.013015388999999988) (0.012843186999999992) (0.012906962999999994) (0.012905788999999987) (0.013133479000000017) (0.01327139649999999) (0.012923232499999993) (0.012958117500000005) (0.013402584500000009) (0.013001310500000016) (0.013309582499999986) (0.012989906999999995) (0.013419567000000007) (0.012950054500000016) (0.013210819999999998) (0.01345245099999999) (0.012884315000000007) (0.013165408500000003) (0.01287932650000001) (0.012834756499999989) (0.013100681500000003) (0.014126827000000008) (0.013443634999999995) (0.013081949499999995) (0.012918133500000012) (0.012996798500000004) (0.0133106645) (0.013106718500000003) (0.012834637499999982) (0.013196161499999998) (0.013527512000000005) (0.013415194000000005) (0.013654790500000014) (0.013310929999999999) (0.013216514499999998) (0.013313812999999994) (0.013147704999999982) (0.013059127000000004) (0.013659518999999995) (0.013066496999999996) (0.013475525499999974) (0.01403046749999999) (0.013338970499999991) (0.013337393999999989) (0.01331217450000001) (0.013216851499999974) (0.01330600500000001) (0.013426089500000002) (0.013346777500000018) (0.013631321000000016) (0.013386469999999998) (0.013303103499999983) (0.013446504499999998) (0.013622883499999988) (0.01329102800000001) (0.013565185999999993) (0.01363096350000001) (0.013353617500000012) (0.013591094500000012) (0.013304170000000004) (0.013356587000000003) (0.013453607999999992) (0.013609813499999998) (0.012998753999999987) (0.013192556000000008) (0.013035006000000016) (0.013216360499999996) (0.01299299000000001) (0.013063304500000011) (0.013054957499999992) (0.013283135000000015) (0.013032735500000017) (0.013094498499999982) (0.013036463999999984) (0.012959397000000011) (0.012723273499999993) (0.01319902249999999) (0.0132167745) (0.01279390050000001) (0.013575567999999996) (0.012974016000000005) (0.013041084999999994) (0.012912780500000012) (0.012929262999999996) (0.01300678700000002) (0.013271208500000006) (0.013451453500000002) (0.013335976499999999) (0.013384079999999993) (0.013318941499999973) (0.013145386500000009) (0.013024138500000004) (0.012950781500000008) (0.013049580499999991) (0.01344148349999999) (0.013344406500000003) (0.013655616999999995) (0.013039774000000004) (0.013397126499999995) (0.013055361500000001) (0.013153250499999991) (0.013162773999999988) (0.013289321000000007) (0.013679798999999992) (0.013192496499999998) (0.013273883999999986) (0.013398167499999988) (0.013339566000000011) (0.013807611000000011) (0.013336205000000004) (0.013175607000000006) (0.013095981499999992) (0.013386716499999993) (0.013263581000000024) (0.013517304000000008) (0.0134259075) (0.013241258500000005) (0.01355014699999997) (0.01367325200000001) (0.013680248499999978) (0.013415017000000001) (0.013361285000000014) (0.013232768500000006) (0.01346784799999999) (0.013163822000000006) (0.013481609000000006) (0.013117444000000006) (0.012922095999999994) (0.013069575500000014) (0.013195763) (0.012896794999999989) (0.012845007499999991) (0.01328219550000001) (0.013243040000000011) (0.013384001999999992) (0.013022892500000008) (0.013365007000000026) (0.013260805000000014) (0.01348262) (0.013171887000000007) (0.012991695499999997) (0.013070262999999999) (0.013028827499999993) (0.012845126500000012) (0.012902279500000002) (0.012912014499999985) (0.012851014999999993) (0.012876897500000012) (0.012917454500000022) (0.012965010499999985) (0.013151236999999996) (0.013231397499999978) (0.01327953400000001) (0.013000031500000009) (0.013419966000000005) (0.013175686500000006) (0.01314092800000001) (0.013115521500000005) (0.013708726500000004) (0.013321049500000001) (0.013378646499999994) (0.013236344499999997) (0.013310036000000011) (0.01330397350000001) (0.013102335500000006) (0.01327188) (0.013187033999999986) (0.013217093499999999) (0.013348744999999995) (0.013277475499999983) (0.01319957400000002) (0.013363419999999987) (0.013615578500000017) (0.013470421500000024) (0.013105411999999997) (0.01330890799999998) (0.013144833500000008) (0.01317766749999999) (0.013470562499999991) (0.013649019999999998) (0.013370065000000014) (0.013370572999999997) (0.013670457499999983) (0.013826204000000009) (0.013390681500000001) (0.013756222499999998) (0.013499073000000014) (0.013556562499999994) (0.013283203999999979) (0.013254555499999987) (0.013012501999999981) (0.013127996000000003) (0.012752192999999995) (0.013441997000000011) (0.013234288999999982) (0.013552971000000011) (0.013079321000000005) (0.012909472000000019) (0.012969222500000002) (0.013072858500000006) (0.013030309500000004) (0.013250948499999984) (0.013040557000000008) (0.013254288999999989) (0.01299969300000002) (0.013106641500000002) (0.013125084000000009) (0.013166451999999995) (0.012693986000000018) (0.012999143000000005) (0.013041197000000004) (0.0128742555) (0.01293516800000001) (0.013663213000000007) (0.012867718500000014) (0.013148669500000001) (0.013074954) (0.013022866500000022) (0.013211684000000001) (0.01302275) (0.013176001999999992) (0.013168126000000016) (0.013155464499999991) (0.013340416000000008) (0.01325444449999999) (0.01331159300000001) (0.013327231000000009) (0.013122481000000005) (0.01313199449999998) (0.013280719999999982) (0.013402765000000011) (0.013310073499999991) (0.013328120999999998) (0.013105060000000002) (0.013267126500000004) (0.013688222999999972) (0.013305887499999974) (0.013730289999999992) (0.013294989999999979) (0.01321826050000001) (0.013224011000000022) (0.0133937685) (0.013054914) (0.013278211499999998) (0.013207194000000005) (0.013341311500000022) (0.013428348000000007) (0.013367075000000006) (0.0136849525) (0.013585777999999993) (0.013338524500000004) (0.01376031899999998) (0.013372758000000012) (0.013443354500000004) (0.013064939499999997) (0.012894509499999998) (0.013036875999999989) (0.01344315850000001) (0.013301552500000008) (0.013103560999999986) (0.013188900999999989) (0.013171453500000027) (0.012816867499999995) (0.012867019500000021) (0.012828795000000004) (0.01320007550000002) (0.012942442999999998) (0.013284301499999998) (0.013083422499999997) (0.013129459499999996) (0.012991396500000002) (0.013034031999999987) (0.012809497000000003) (0.013433503) (0.012731151999999982) (0.012874915500000014) (0.013148191000000004) (0.012993969500000008) (0.012997849500000005) (0.013119528000000005) (0.013471774500000006) (0.012824672000000023) (0.01297430649999999) (0.0133068145) (0.012929724000000004) (0.012938891000000022) (0.013385565999999988) (0.013458969999999987) (0.013370137999999976) (0.013356977999999992) (0.013419557999999998) (0.013559362999999991) (0.013504582499999987) (0.013109023999999997) (0.013521697) (0.013370753000000013) (0.013260717999999977) (0.013706637999999993) (0.0132217835) (0.013473852999999994) (0.013483392499999997) (0.013388837500000014) (0.013188892500000007) (0.0132281125) (0.013707272500000006) (0.013296964499999994) (0.013446728500000005) (0.013196120000000006) (0.013135583499999992) (0.013685561499999985) (0.013478511499999998) (0.013880989999999996) (0.013452233500000021) (0.013213378500000011) (0.013989242000000013) (0.013620813500000009) (0.013298839499999993) (0.0133942695) (0.01304042200000001) (0.013053311499999998) (0.01321272100000001) (0.012896788499999992) (0.013068306499999988) (0.012884656499999994) (0.013049022000000007) (0.013312325999999985) (0.01299091500000002) (0.013236337999999986) (0.013165788000000012) (0.013258711499999992) (0.012958920999999998) (0.01305938700000002) (0.01341216900000003) (0.01307393749999998) (0.013099123000000004) (0.012949436500000008) (0.013028556500000024) (0.012897056000000004) (0.013170184999999987) (0.013033918999999977) (0.013438244000000002) (0.013002441000000017) (0.013096469) (0.012889072999999987) (0.0131069605) (0.013093792999999992) (0.01350743900000001) (0.013351884000000008) (0.013260824000000032) (0.013337345) (0.013199596500000008) (0.01348126949999999) (0.013109976499999981) (0.013246639000000004) (0.013201178499999994) (0.013302735499999982) (0.013113021000000002) (0.013327372000000018) (0.013466895999999978) (0.013742231500000007) (0.013480253999999997) (0.013774009500000003) (0.013352309500000006) (0.013440107999999992) (0.013493735500000006) (0.013323102500000017) (0.013284440000000022) (0.013274306999999999) (0.013651595000000002) (0.013416753500000003) (0.013563321000000003) (0.013384028999999978) (0.013258144999999999) (0.01371525250000001) (0.013681921500000013) (0.013803412500000015) (0.013343578500000008) (0.013530191999999983) (0.013529167499999994) (0.013323844000000015) (0.013173600499999993) (0.013359657000000011) (0.013310424500000001) (0.013219870999999994) (0.013037280499999998) (0.012858821499999978) (0.0130066925) (0.012794995999999975) (0.012958933500000006) (0.013101221999999996) (0.013393740500000015) (0.012829922499999993) (0.013191943999999997) (0.013211535000000024) (0.013150312000000011) (0.013054514000000003) (0.013580463000000015) (0.013023236000000007) (0.012931908999999991) (0.013242738500000004) (0.01318638799999998) (0.013274190000000005) (0.013015813999999987) (0.012922338499999977) (0.012942564500000003) (0.012901119999999988) (0.013390871999999984) (0.013051368000000008) (0.013315271000000004) (0.013211724500000008) (0.013078430999999988) (0.013119118500000013) (0.013027949000000011) (0.013359670500000018) (0.013317609999999994) (0.0133636315) (0.0130664105) (0.013498509499999992) (0.013393414499999992) (0.013609397500000009) (0.013644986500000025) (0.013695594999999977) (0.013295732000000018) (0.013398063999999987) (0.01312569450000002) (0.013173432000000027) (0.014046603500000004) (0.013325659499999976) (0.013453668000000002) (0.013258904500000002) (0.013226544000000007) (0.013302034500000004) (0.01320204899999998) (0.01336197) (0.013315437999999999) (0.013410373000000003) (0.013476602500000004) (0.013509579999999993) (0.01338163000000002) (0.013405036999999995) (0.013272147000000012) (0.013301161499999992) (0.01317881550000001) (0.013442256500000013) (0.013691220500000004) (0.013297549500000005) (0.010122066499999999) (0.009982287999999992) (0.009966679499999992) (0.01007464949999999) (0.010239643499999992) (0.010307614500000006) (0.009886362999999981) (0.010204277499999997) (0.010202727499999995) (0.010266962500000004) (0.010153081500000008) (0.010268744999999996) (0.010190025000000005) (0.009980231999999992) (0.010163873500000004) (0.009989899499999996) (0.009981938999999995) (0.009921027000000013) (0.010089789499999988) (0.009981151500000007) (0.010006875499999998) (0.010032653500000002) (0.010281181499999986) (0.01038428199999998) (0.010189337000000007) (0.010253416000000001) (0.010225902999999995) (0.010334972999999997) (0.010112599) (0.010443649500000013) (0.010237511000000005) (0.010298430999999997) (0.010405083999999995) (0.010475193999999993) (0.01024589749999999) (0.010468829999999998) (0.01036698300000001) (0.011072878500000008) (0.010420061000000022) (0.010382252999999994) (0.010310031499999997) (0.010588418499999988) (0.010545918500000001) (0.010451783499999992) (0.01065034699999999) (0.010240127500000001) (0.010413171000000013) (0.010715702500000007) (0.010370117499999984) (0.010383148000000009) (0.010587847499999997) (0.010367808000000006) (0.01045895899999999) (0.01035097850000001) (0.010226092999999992) (0.010451733000000005) (0.01037144949999999) (0.010578086999999986) (0.010295614999999994) (0.010485055000000007) (0.010440975000000005) (0.010422225000000007) (0.01048876) (0.010530603999999999) (0.009964034999999996) (0.010104935499999995) (0.010344922499999992) (0.010105316999999989) (0.010033060499999982) (0.010225298500000007) (0.010088547000000003) (0.010550435499999997) (0.01037051500000001) (0.01014254349999999) (0.010097076999999996) (0.01027260150000002) (0.010328103499999991) (0.010230214500000001) (0.010149551500000006) (0.01014799199999998) (0.010081786999999995) (0.009951686499999987) (0.009907747500000008) (0.010061292999999999) (0.009938677000000007) (0.010058150499999988) (0.010053774999999987) (0.010031080500000011) (0.010054758499999997) (0.010138025500000022) (0.010038681499999993) (0.010190717500000002) (0.0100338165) (0.010329831999999997) (0.010188336000000006) (0.010214519500000005) (0.010580211499999992) (0.010403618999999989) (0.0102134205) (0.010278313999999997) (0.010534581500000001) (0.010581953500000005) (0.010343161000000003) (0.010428484500000001) (0.010575847999999999) (0.010490707500000002) (0.01053643600000001) (0.010634566999999998) (0.010577246999999998) (0.010809477500000012) (0.010388242499999992) (0.010566953500000004) (0.010482313999999993) (0.010332119) (0.010599730500000001) (0.010320233499999998) (0.010475246000000007) (0.010274216499999989) (0.010320320000000008) (0.0105231935) (0.010672759500000004) (0.010621745000000002) (0.010519265999999985) (0.0105538055) (0.010612970499999999) (0.010455860999999997) (0.010491719999999996) (0.010408328499999994) (0.010173487499999995) (0.010005799999999995) (0.010001304000000003) (0.010026524499999995) (0.010070731) (0.009963041499999992) (0.009899502500000004) (0.0101785655) (0.010105419000000004) (0.010207565499999988) (0.01007761950000001) (0.010166161000000007) (0.010256111499999998) (0.010453758999999993) (0.010401898000000007) (0.010252528499999997) (0.010064272999999999) (0.010195530000000008) (0.010003784000000002) (0.010237539000000004) (0.010325763500000001) (0.009992052500000001) (0.010127335000000015) (0.010123961) (0.010160791500000016) (0.0102024795) (0.0100799595) (0.010228307499999992) (0.010398575500000007) (0.010208475499999994) (0.010020598500000005) (0.010218550499999993) (0.010462276500000006) (0.010385076999999993) (0.01045795699999999) (0.010489435499999991) (0.010465881999999996) (0.010302180999999994) (0.010424755500000008) (0.010584944499999985) (0.010493218499999998) (0.0105850735) (0.010533431499999996) (0.01066756399999999) (0.010438374999999986) (0.010311756500000005) (0.010545403499999995) (0.01053021500000001) (0.010221190500000005) (0.010345790499999993) (0.010446252500000003) (0.010446925499999982) (0.010307158499999997) (0.010430764999999995) (0.010306381500000003) (0.010438942999999992) (0.010273973500000005) (0.010675973499999991) (0.010396152499999978) (0.010677540499999999) (0.010803497999999995) (0.010669566000000005) (0.01042332650000001) (0.010376013999999989) (0.0101221705) (0.010060149500000004) (0.009968703500000009) (0.010197214999999996) (0.010148736499999991) (0.010132547499999991) (0.010088583999999998) (0.010359431000000002) (0.01032483599999999) (0.010351923999999985) (0.010097046000000012) (0.010202464500000008) (0.010302100000000008) (0.0101696265) (0.010236738000000009) (0.010399551500000007) (0.010101279500000004) (0.010066962000000013) (0.010181048999999998) (0.010144240999999998) (0.010268685999999999) (0.010180371500000007) (0.010318424499999992) (0.009919041000000003) (0.010277915999999998) (0.01004390949999999) (0.010191803) (0.010314114999999985) (0.010220373500000005) (0.010286832499999995) (0.010014978999999993) (0.009979400000000013) (0.010303657500000007) (0.010369765000000003) (0.010456991999999998) (0.010493850499999999) (0.010333293500000007) (0.010622322999999989) (0.010491385500000006) (0.010259988999999997) (0.010692938999999985) (0.010744221499999998) (0.010371172500000012) (0.010491713500000013) (0.010584755999999987) (0.010449899999999998) (0.010439088999999985) (0.010707950999999993) (0.010568713000000007) (0.010477865500000003) (0.010522804999999996) (0.010630414500000004) (0.010418314000000012) (0.010588013999999993) (0.0104545355) (0.015368940500000011) (0.010382946000000004) (0.010412615) (0.010457094500000014) (0.010399459) (0.01065750950000001) (0.010391347999999995) (0.010383294000000001) (0.010460695500000006) (0.009958454500000005) (0.010303983000000017) (0.010052611000000003) (0.010128442000000001) (0.009931719999999991) (0.009905983500000007) (0.010082185499999993) (0.009999782499999998) (0.010060810000000017) (0.010405332500000003) (0.010355038499999997) (0.010217742000000002) (0.010432627999999985) (0.010480377999999999) (0.010246137000000002) (0.010217909999999997) (0.009902534500000004) (0.010099224500000017) (0.010324027000000013) (0.009967651999999994) (0.009998301000000001) (0.009904111499999993) (0.009823116999999992) (0.010216123500000007) (0.010084701500000015) (0.010070963500000002) (0.010455372500000004) (0.01033708500000001) (0.010201737500000016) (0.010290211499999993) (0.010071214499999995) (0.010118307499999993) (0.010424692000000013) (0.010337040499999992) (0.010302833500000011) (0.010496627500000008) (0.010213541000000007) (0.010405385000000003) (0.010337707999999987) (0.010157087999999995) (0.010527613000000005) (0.010361294499999993) (0.010496369000000005) (0.010519410499999993) (0.010448032499999996) (0.010536044000000008) (0.010225983999999994) (0.010394944999999989) (0.010560055500000012) (0.010378000499999998) (0.010408305500000006) (0.010561916000000005) (0.010481656500000006) (0.01025815799999999) (0.010298576500000003) (0.010246162999999989) (0.010639003000000022) (0.010451173999999994) (0.010576754500000007) (0.010720932000000002) (0.0104791625) (0.010717705000000008) (0.010563758500000006) (0.010537910999999997) (0.010149152500000008) (0.010149039000000012) (0.010242439000000006) (0.010044906000000006) (0.010206363499999996) (0.009912018000000009) (0.010317110000000004) (0.010166573999999998) (0.010145199500000007) (0.010125008500000005) (0.010160128500000004) (0.010175644999999997) (0.010113810499999987) (0.010319253499999986) (0.0100631885) (0.010075055499999985) (0.010091793499999988) (0.01004430349999999) (0.010285431000000012) (0.009960069000000002) (0.010116129500000015) (0.0100687275) (0.010180539000000002) (0.009899378) (0.0104452545) (0.010410010999999997) (0.010237104499999983) (0.009994806999999994) (0.01019982400000001) (0.010268162000000011) (0.01015676800000001) (0.01012159750000001) (0.010642467499999989) (0.01058182249999999) (0.01034966200000001) (0.010747889999999996) (0.010353014999999993) (0.010507890500000006) (0.010471656499999996) (0.010410375) (0.010592836500000008) (0.010392553999999998) (0.01064885850000001) (0.010474933000000006) (0.0103971655) (0.010303372000000005) (0.010648643999999999) (0.010478691999999998) (0.010362630999999997) (0.010244267500000015) (0.010393276000000007) (0.010520434000000009) (0.010323620999999991) (0.010492314000000003) (0.010403118500000003) (0.010347866999999997) (0.010521384499999994) (0.010469044499999997) (0.010578871000000017) (0.010445480500000007) (0.010580245000000002) (0.010738281000000002) (0.010512184499999994) (0.010596141000000017) (0.010074788500000001) (0.010023815999999991) (0.010106030000000002) (0.010183282500000002) (0.01012437549999999) (0.010104737000000003) (0.01023621249999998) (0.010151034500000003) (0.010199572000000004) (0.01007233099999999) (0.010165121000000013) (0.01057936000000001) (0.010174857500000009) (0.010531240499999997) (0.010367805500000007) (0.010118732500000005) (0.010103939000000006) (0.009934547500000002) (0.010028626999999998) (0.010011293500000004) (0.010282496500000016) (0.010019347500000012) (0.010018960500000007) (0.010174827500000011) (0.010315441500000008) (0.010108513) (0.010034373500000013) (0.010325948500000015) (0.010331607499999992) (0.010170886500000004) (0.010303292000000006) (0.01037631550000001) (0.010333167500000004) (0.010457173) (0.010538035999999987) (0.0103177775) (0.010419191999999994) (0.010465334500000006) (0.010495847500000002) (0.010627358999999989) (0.010371076500000007) (0.010746686000000005) (0.010395578500000002) (0.010301087) (0.010520103500000003) (0.010587241000000011) (0.010326942000000006) (0.010492046000000005) (0.010407815999999986) (0.010393227500000005) (0.010415766500000007) (0.010248874499999991) (0.010272407499999997) (0.010531607999999998) (0.010340620499999995) (0.010653337999999998) (0.01069387699999999) (0.010400237000000007) (0.010549353000000011) (0.011143807999999991) (0.010577550500000005) (0.010541373000000007) (0.010486002999999994) (0.010479814500000004) (0.010206212000000006) (0.010415827499999988) (0.010065195999999998) (0.010053312999999994) (0.010102457000000009) (0.009955198999999998) (0.010051669499999999) (0.01014826449999999) (0.010051693) (0.010270428999999998) (0.010009623999999995) (0.01017137700000001) (0.010093153000000021) (0.010349747000000006) (0.010192372000000005) (0.010329018500000009) (0.010145942000000005) (0.010156574000000002) (0.010069718999999991) (0.010065117499999984) (0.009936029999999998) (0.010125791000000009) (0.01008856150000001) (0.010163901500000003) (0.010232662500000003) (0.010113411500000002) (0.010427917000000009) (0.01038620250000001) (0.010362951499999981) (0.01040754649999999) (0.010222893499999983) (0.010114476999999997) (0.010354840000000004) (0.010345657999999994) (0.010413748000000014) (0.010369864000000006) (0.010591580500000003) (0.010444368499999995) (0.010430371500000007) (0.010323321999999996) (0.010519868500000001) (0.010359554499999993) (0.010615275499999993) (0.010651491999999999) (0.010509203999999994) (0.010328043499999995) (0.010345421499999993) (0.010687343500000002) (0.010472170000000017) (0.010389742499999993) (0.01030995500000001) (0.010364082999999982) (0.010340231499999991) (0.010426275499999998) (0.010364966500000003) (0.010516932999999992) (0.010649114500000015) (0.010380491000000006) (0.010634548000000008) (0.010582377000000004) (0.010842371500000003) (0.010487238999999982) (0.0107478555) (0.010612738499999996) (0.010115442500000002) (0.01005002449999999) (0.010227422) (0.0100835955) (0.010246902500000002) (0.009992935500000008) (0.009979646000000009) (0.010087326500000007) (0.010032008499999995) (0.009950216500000011) (0.0102121045) (0.010088864500000003) (0.01008645050000001) (0.010066892499999994) (0.010251398999999994) (0.010180095000000014) (0.010237760499999998) (0.01007093349999999) (0.010180071500000012) (0.010508333000000009) (0.010251305000000002) (0.009919090000000005) (0.010087315) (0.010038074499999994) (0.01028329800000001) (0.0103113715) (0.010474421499999997) (0.01011403000000001) (0.0101696015) (0.009966846000000015) (0.010066139000000016) (0.010179236000000008) (0.01049343450000001) (0.010433324500000007) (0.010456694000000016) (0.010314208500000005) (0.010264055500000008) (0.01038882499999999) (0.010460951999999996) (0.010495841000000006) (0.0105532255) (0.010548542499999994) (0.010550291000000003) (0.010726967000000004) (0.010330714000000005) (0.010465281500000007) (0.010475092999999991) (0.01039962450000001) (0.0108396895) (0.010507352499999997) (0.0104392695) (0.010458137500000006) (0.010540687000000007) (0.010249555000000007) (0.010328702000000009) (0.010296780499999991) (0.010699187500000013) (0.010549296) (0.01036783849999999) (0.010658306500000006) (0.010490866999999987) (0.010376055999999995) (0.010552546499999996) (0.010634678499999994) (0.010234958000000002) (0.010333818000000008) (0.010255604500000001) (0.010381565500000009) (0.010147266000000002) (0.010048751500000008) (0.010013345000000007) (0.010097698999999988) (0.01022403400000002) (0.010239697499999992) (0.010328027000000004) (0.010329697999999984) (0.010258544999999994) (0.010146874000000014) (0.010359801000000016) (0.010067349000000003) (0.010328888500000008) (0.010389181499999997) (0.010072697999999991) (0.010317308499999997) (0.010192438499999998) (0.010136777) (0.010101087499999994) (0.010320030000000008) (0.010190958) (0.010183415500000001) (0.010098496500000012) (0.010200982999999997) (0.010228730999999991) (0.010057437000000016) (0.010235405500000003) (0.010440653000000022) (0.01039096249999999) (0.010398713500000004) (0.010593290000000005) (0.010416851000000005) (0.010430999999999996) (0.010634848500000002) (0.010511866499999994) (0.010528154999999997) (0.010629684999999986) (0.01057204199999999) (0.010458590500000003) (0.010443984000000017) (0.010445541000000003) (0.010564551999999991) (0.010494473000000004) (0.010512264000000007) (0.010303722999999987) (0.010410682000000004) (0.010670854999999993) (0.010279226999999988) (0.010361115500000018) (0.010549188000000001) (0.010468762000000006) (0.010493345000000001) (0.010504724999999993) (0.010392526000000013) (0.010556244499999992) (0.010646977000000002) (0.01064237250000001) (0.010591566499999996) (0.010636862999999996) (0.010581211000000007) (0.010120453499999987) (0.010015894000000011) (0.010026168500000002) (0.010045011000000006) (0.010086638499999995) (0.0103439865) (0.010019058499999997) (0.010177930000000002) (0.01037197799999999) (0.010601035500000008) (0.010230245499999999) (0.010212196000000007) (0.0102128155) (0.010194707999999997) (0.010223311499999999) (0.01048958350000001) (0.009989036999999992) (0.010058979999999995) (0.010115783000000003) (0.010098032999999978) (0.009990108999999997) (0.010174009499999997) (0.01006472450000001) (0.010115977999999998) (0.010276882000000015) (0.010166468999999997) (0.010220871500000006) (0.010156641999999994) (0.010241313000000002) (0.010230806499999995) (0.010393785500000002) (0.010119269999999986) (0.010686196499999995) (0.010433866) (0.010710816999999984) (0.010832813999999996) (0.01043066699999999) (0.010395308000000006) (0.010558603500000013) (0.010347255) (0.010665302000000002) (0.010638918499999997) (0.010576815500000003) (0.010558677000000002) (0.01079824700000001) (0.010567356000000014) (0.010573997500000001) (0.010478153500000004) (0.010581501999999979) (0.010478282000000005) (0.010357208999999992) (0.010557722500000005) (0.010944359000000015) (0.010288041500000011) (0.010323581999999998) (0.010394565999999994) (0.010693097999999998) (0.010568861999999998) (0.010487213999999995) (0.010574155000000002) (0.010381439500000006) (0.010486942999999999) (0.010674499500000004) (0.01042166550000001) (0.010143608499999984) (0.010006308500000005) (0.010273160500000003) (0.010032823499999996) (0.009998806500000013) (0.009974946499999998) (0.010089595999999992) (0.01011391049999999) (0.010425213500000002) (0.01009727199999999) (0.010044773500000007) (0.010108802499999986) (0.01033422099999999) (0.010214932499999996) (0.010365642000000008) (0.010202948000000003) (0.010593852) (0.010286713999999988) (0.010278126999999984) (0.010137998500000009) (0.010296912999999991) (0.010292318500000008) (0.010071262500000011) (0.010457132000000008) (0.010283916000000004) (0.010269039499999993) (0.010469963999999998) (0.010182084000000008) (0.010350600000000015) (0.010285884500000009) (0.010675507000000015) (0.010283096500000005) (0.010390594000000003) (0.010452412999999994) (0.010516965500000003) (0.010264050499999997) (0.010614134499999997) (0.01048525950000001) (0.010565761000000007) (0.0106968385) (0.010601651000000004) (0.0104367395) (0.01048681700000001) (0.01047509449999999) (0.010561344) (0.010782514500000007) (0.010510669) (0.010582503499999993) (0.01085014949999999) (0.010459245499999992) (0.010337995500000002) (0.010851072000000003) (0.010548176999999992) (0.010973149500000001) (0.010338752999999992) (0.01050755149999999) (0.010332385499999985) (0.010507025000000003) (0.010706070000000012) (0.010556208500000011) (0.010789115500000016) (0.010777295000000006) (0.010543937499999989) (0.010468105500000019) (0.01021721199999999) (0.010373997999999995) (0.010180819499999993) (0.009954603000000006) (0.010044005000000009) (0.010111725500000002) (0.01035236099999999) (0.010091993499999993) (0.010352077500000001) (0.010324410000000006) (0.010190879) (0.010089831499999993) (0.015286067000000014) (0.010118612000000013) (0.010172913499999992) (0.010168115999999991) (0.009958643000000003) (0.010129633499999999) (0.0102359895) (0.010000933000000004) (0.010138528499999994) (0.009942169999999986) (0.01017304899999999) (0.010252663000000009) (0.010050196499999983) (0.010198489499999991) (0.010052558000000003) (0.010216087499999998) (0.010130512499999994) (0.01004095449999999) (0.010057039500000003) (0.010142511499999993) (0.010431718000000006) (0.010319117000000003) (0.010581950500000006) (0.01025121150000001) (0.010366106999999986) (0.0104200515) (0.010454130999999992) (0.010702001000000003) (0.010617680500000004) (0.010431460000000004) (0.010468934999999999) (0.010916292499999994) (0.010569969499999998) (0.010411498000000005) (0.01046070049999999) (0.010477687499999985) (0.010335292999999995) (0.010390467500000014) (0.01019088600000001) (0.01028392950000001) (0.010350260499999986) (0.010270927499999999) (0.010278936000000002) (0.010642882499999992) (0.010759703499999995) (0.010513580999999994) (0.010354239500000001) (0.01050221250000001) (0.010266978999999996) (0.010469489499999998) (0.010499528999999994) (0.010458101499999983) (0.010146481000000013) (0.010310090499999994) (0.010002182500000012) (0.010013697000000002) (0.009945345499999994) (0.010059223999999992) (0.010157313000000001) (0.010126944999999998) (0.010180168000000003) (0.010067127499999995) (0.010204039999999998) (0.010138397000000007) (0.010158284999999989) (0.010215048000000004) (0.010143148500000018) (0.01020776100000001) (0.010044868499999998) (0.010290708499999995) (0.010132057) (0.010027469499999983) (0.010128114000000007) (0.010141622000000003) (0.01006812600000001) (0.010117435500000008) (0.010278294000000007) (0.010475149500000003) (0.0102435825) (0.010118250999999995) (0.010106738000000004) (0.010415133499999993) (0.010007940999999992) (0.010289885999999998) (0.010423993500000006) (0.010431179499999998) (0.010373485500000001) (0.010497314000000008) (0.010550750500000011) (0.010379473999999986) (0.010480383999999995) (0.010338497000000002) (0.010539790499999993) (0.010327128000000005) (0.010561249999999994) (0.010557783000000001) (0.010370487999999983) (0.010395880499999996) (0.010618702499999993) (0.010457007500000004) (0.010263551499999995) (0.010414213000000005) (0.010288403000000002) (0.010563274500000011) (0.010709883500000003) (0.0104231355) (0.010617505499999985) (0.010559592500000006) (0.011082658499999995) (0.010698066500000006) (0.010494068500000009) (0.010337662500000011) (0.010401411) (0.010426208000000006) (0.010422104000000001) (0.010418641999999992) (0.010141294999999995) (0.010004784500000002) (0.010347874000000007) (0.010234512999999987) (0.0101832575) (0.010387900000000005) (0.009883664) (0.010189511500000012) (0.010171953500000011) (0.0100589185) (0.010153482000000005) (0.010321305500000003) (0.010120021999999979) (0.010043897999999996) (0.01025334650000001) (0.010117059999999983) (0.010247859499999998) (0.009988466000000001) (0.010022970000000006) (0.009955855) (0.010214001) (0.010093866500000007) (0.010366180000000003) (0.010143505499999997) (0.010215974500000016) (0.01045111550000001) (0.010670525000000014) (0.010434951499999998) (0.010163538) (0.010360619000000001) (0.010066582500000004) (0.010020788000000003) (0.010586288999999999) (0.01075226700000001) (0.01056555699999999) (0.01053382500000001) (0.010512853000000016) (0.010454302499999998) (0.010254983499999995) (0.010780272999999993) (0.010676410999999997) (0.010656526999999999) (0.010427166000000002) (0.01041794700000001) (0.010515293499999995) (0.010731925999999989) (0.010612740499999981) (0.010422838500000003) (0.010454083500000003) (0.01030347450000002) (0.010490122000000004) (0.010444912) (0.010403296999999992) (0.010531629000000015) (0.010438729499999994) (0.010604196499999996) (0.010736013000000003) (0.010478214000000013) (0.010614790000000013) (0.010552524999999993) (0.0104957715) (0.010593532999999988) (0.01073188450000001) (0.010285332499999994) (0.0102207255) (0.010471486500000002) (0.010165569499999999) (0.010132017500000007) (0.010116311999999988) (0.0102497275) (0.010243250499999995) (0.010080715500000004) (0.010211874999999995) (0.010148642499999999) (0.010391674500000003) (0.010095788000000008) (0.010170026000000013) (0.010120927500000002) (0.010161264500000003) (0.010294140499999993) (0.010289411499999998) (0.010152551499999996) (0.0100927965) (0.010215324999999997) (0.0102581375) (0.010196528999999996) (0.010105519999999993) (0.01011116649999999) (0.010466636999999987) (0.0103521305) (0.0101974705) (0.010167080500000009) (0.010250391500000011) (0.010156130000000013) (0.010288236499999992) (0.010222366999999996) (0.010570595999999988) (0.010880358499999992) (0.010391508000000008) (0.010476633500000013) (0.010681226500000002) (0.010450648499999993) (0.010201980999999999) (0.010324383499999992) (0.010428049499999995) (0.010554679500000011) (0.010613461000000005) (0.0105404885) (0.010632118999999995) (0.010369842000000004) (0.010382723999999996) (0.010600510999999993) (0.010454146999999997) (0.010345843499999993) (0.0103379735) (0.010324693999999995) (0.010412679500000008) (0.010520927) (0.010677538) (0.010287425500000003) (0.010586532999999995) (0.010586512500000006) (0.010498302000000001) (0.010476099500000002) (0.010480995999999992) (0.010489337000000001) (0.010442900000000005) (0.010807217499999994) (0.009924035499999997) (0.010172537500000009) (0.01012731) (0.010008069500000008) (0.010058411000000003) (0.010637375500000004) (0.010243773000000012) (0.010051407000000012) (0.010309526500000013) (0.010155261999999998) (0.010118780999999993) (0.010034839000000004) (0.010146931000000012) (0.009954979500000002) (0.010007032000000013) (0.0100640855) (0.009991044000000004) (0.010198184499999999) (0.01006584150000002) (0.010079636499999989) (0.010061944500000003) (0.010264048499999998) (0.010016742499999995) (0.010270755500000006) (0.01025197700000001) (0.01013011849999998) (0.010106503500000003) (0.010443040500000014) (0.009942764499999993) (0.010036868500000004) (0.01023454900000001) (0.01019236350000001) (0.010402013500000001) (0.010267510000000007) (0.010383969000000007) (0.010149646000000012) (0.010590046500000005) (0.010297726999999993) (0.010596270000000005) (0.010366341000000001) (0.01053278249999999) (0.010463540500000007) (0.010455207500000008) (0.010377283000000001) (0.010513823499999991) (0.010612783) (0.010455558500000003) (0.010665438000000013) (0.010505888000000005) (0.010240361500000003) (0.010475821499999996) (0.010356047499999993) (0.010262344500000006) (0.01029550700000001) (0.010473629999999998) (0.010328934500000012) (0.010563010500000011) (0.010671282000000018) (0.010504634999999998) (0.010551563500000014) (0.010432315499999997) (0.010445331000000002) (0.010647062499999999) (0.01061615249999999) (0.010121672999999998) (0.010082064499999988) (0.010243036000000011) (0.010097040999999987) (0.010016400500000008) (0.010194249500000002) (0.010262328000000001) (0.009976868000000014) (0.010258404999999998) (0.010130026) (0.01005611449999999) (0.010111731499999999) (0.01024252199999999) (0.01021868799999999) (0.0101593195) (0.010208932000000004) (0.010256110000000013) (0.010056347000000007) (0.010103395000000001) (0.010256373499999999) (0.01004759600000002) (0.010177654999999994) (0.009994335499999993) (0.010127517500000002) (0.010116660000000013) (0.010151975500000007) (0.01001329500000002) (0.010270558499999999) (0.0104586775) (0.01045739000000001) (0.010170085499999995) (0.010070321500000007) (0.010387607000000007) (0.010637692500000018) (0.010272523499999991) (0.010486596) (0.010351147500000005) (0.0103432735) (0.010436172000000007) (0.010276249000000001) (0.010388723000000002) (0.010338553) (0.010466214500000001) (0.010525136500000004) (0.010487345500000009) (0.010565895500000005) (0.010564363500000007) (0.01031156250000001) (0.010424985499999997) (0.010331462500000013) (0.010517223999999992) (0.010350566000000005) (0.010495188000000003) (0.010417198500000002) (0.010398537000000013) (0.010441639999999988) (0.010522016499999995) (0.010567328000000015) (0.010527410499999987) (0.010619071499999994) (0.010562124000000006) (0.010394647000000007) (0.01034418849999999) (0.010527888500000013) (0.010360835499999999) (0.010239808500000003) (0.010205704499999996) (0.009977476499999999) (0.0102370715) (0.010092538000000012) (0.01023742150000001) (0.009996525499999992) (0.01007200300000001) (0.010288470999999993) (0.0103691395) (0.010207380500000002) (0.010176571999999995) (0.010149157500000006) (0.010244730000000007) (0.010420684) (0.009982785999999993) (0.010384967999999994) (0.009925288500000004) (0.010028545) (0.010009783000000008) (0.009987811499999999) (0.010405216999999994) (0.00986612249999999) (0.010566022000000008) (0.010325815000000002) (0.010205201999999997) (0.010387011500000001) (0.010080199499999998) (0.01047932800000001) (0.010226440999999989) (0.010187541500000008) (0.010569610000000007) (0.010362913500000001) (0.010308291499999997) (0.010588722499999995) (0.010567844999999992) (0.010400621999999998) (0.010247368500000006) (0.010280979999999995) (0.010367072000000005) (0.0104395865) (0.010683578499999999) (0.010533943000000004) (0.010491837500000004) (0.010564188500000016) (0.010587610499999983) (0.0105341605) (0.010418170500000004) (0.010543358500000002) (0.010351778499999992) (0.010238931499999993) (0.010381678000000005) (0.01028507499999999) (0.010558800999999979) (0.010405014000000004) (0.01068231900000001) (0.010763316000000009) (0.010501126) (0.010758485999999998) (0.010565288000000006) (0.010935099000000004) (0.010311408000000008) (0.01072939399999999) (0.01001261199999999) (0.010367923500000015) (0.010119237500000003) (0.010189596000000009) (0.010374512500000002) (0.010132272999999997) (0.010021538499999996) (0.010004482999999995) (0.010227898) (0.0103912575) (0.010201156499999989) (0.010205927000000004) (0.010180151499999998) (0.010182902000000008) (0.010384129999999991) (0.010217317000000017) (0.010158753500000006) (0.010120681000000006) (0.010338683000000015) (0.009993770999999999) (0.010060931499999995) (0.010048138500000012) (0.010015556999999994) (0.010625329999999988) (0.010575340499999988) (0.010244342500000003) (0.01035614700000001) (0.010413042499999997) (0.010376319999999994) (0.01039051249999999) (0.0102276595) (0.010329197500000012) (0.010467509499999986) (0.010449806500000006) (0.010752379499999992) (0.0105446275) (0.010501874499999994) (0.0105873425) (0.010285943999999991) (0.01035733350000001) (0.010463371999999999) (0.010414133999999992) (0.010636191000000003) (0.010437543499999993) (0.010392415500000002) (0.010581663000000005) (0.010731089500000013) (0.010602333500000005) (0.010500307500000014) (0.010476132000000013) (0.010531075000000015) (0.010565722500000013) (0.010360118000000001) (0.010510630999999993) (0.01048689400000001) (0.010343088000000014) (0.010853127000000004) (0.01098908300000001) (0.01052654800000001) (0.010571875499999994) (0.010599707499999986) (0.010750245000000005) (0.010527013999999987) (0.010585243999999994) (0.010230191000000013) (0.010121205500000008) (0.010066437499999997) (0.01042405149999999) (0.009872313000000008) (0.010060033999999995) (0.009940771000000001) (0.01007567500000002) (0.01014483250000002) (0.010274981000000016) (0.010310471500000001) (0.010115022500000001) (0.010148300499999999) (0.010274506500000002) (0.010102194000000009) (0.010049000500000002) (0.010107890999999994) (0.01001636950000001) (0.010157410500000005) (0.010069787999999996) (0.010127159999999996) (0.010346175499999999) (0.010316234000000007) (0.010023340500000005) (0.01024850799999999) (0.010468052999999991) (0.010118374500000013) (0.009992015000000007) (0.010375394499999996) (0.010191147000000012) (0.010305507499999991) (0.01030668500000001) (0.010242603999999988) (0.010436195999999995) (0.010336732000000001) (0.010527548000000012) (0.010410139000000013) (0.010403083500000007) (0.010381720999999997) (0.010840678500000006) (0.010352048500000002) (0.010404045) (0.010421867500000001) (0.010447046000000001) (0.010344015000000012) (0.010754754499999991) (0.010614585499999996) (0.010421561499999996) (0.010327555000000002) (0.01045354200000001) (0.010758007) (0.010328847999999988) (0.010415136499999991) (0.010361011000000003) (0.010461503000000011) (0.010364191500000008) (0.010363677500000001) (0.0107936005) (0.010495168500000013) (0.010664263000000007) (0.010659596499999993) (0.010325392500000002) (0.010238372999999995) (0.010409097500000006) (0.009917006500000006) (0.010156953499999996) (0.01015184000000001) (0.010179577999999995) (0.01021667350000001) (0.010176248999999998) (0.010075767) (0.010102029499999998) (0.010315057999999988) (0.010298500000000016) (0.010311770499999998) (0.010462775000000007) (0.010235834499999999) (0.010326736000000003) (0.010363836000000015) (0.010044056000000023) (0.010052513499999999) (0.010250793500000008) (0.010266588499999993) (0.010063236500000003) (0.010151075999999995) (0.010164630000000008) (0.010030870499999997) (0.010162387000000009) (0.010442548499999996) (0.010430513999999988) (0.0102794935) (0.010263719000000004) (0.010115533999999995) (0.0103890695) (0.010194073999999997) (0.010339157999999987) (0.0104565145) (0.010491073000000004) (0.010228815999999988) (0.010506790999999988) (0.010717999000000006) (0.010346784499999997) (0.010454279499999983) (0.01054488399999999) (0.0104285675) (0.010597994) (0.010696942499999987) (0.010565091499999998) (0.010284786000000004) (0.010410879999999997) (0.01037782000000001) (0.010458261499999996) (0.010487743999999993) (0.010598151499999986) (0.010356465999999995) (0.010582025000000009) (0.010328182000000005) (0.010279073) (0.010381478) (0.010368122499999993) (0.010657252499999992) (0.010651729499999998) (0.010596446500000009) (0.010355688000000016) (0.010477853499999995) (0.010534620500000022) (0.010463204500000017) (0.01060738700000001) (0.010079301499999999) (0.010213653500000003) (0.0100650335) (0.010137478000000005) (0.010437147999999993) (0.010284205500000004) (0.0102906735) (0.009940287000000006) (0.010511670000000015) (0.009960285) (0.01025181700000001) (0.010082736499999995) (0.010093752499999997) (0.010052103499999993) (0.010189876) (0.010006667499999997) (0.010026413499999998) (0.010114524500000013) (0.010092688500000002) (0.010275207500000008) (0.010147842000000018) (0.010195645000000003) (0.010092969499999993) (0.0100795085) (0.010324246999999995) (0.010403229) (0.0102602995) (0.0100992825) (0.010204657500000006) (0.010334257) (0.01031876050000001) (0.01004176200000001) (0.010501299500000005) (0.010383676000000008) (0.010385728999999996) (0.010408371) (0.010453842000000005) (0.010272422499999989) (0.010465810000000006) (0.01042634100000002) (0.010425621499999996) (0.010484353000000002) (0.010528928000000007) (0.010514459000000004) (0.010353455499999997) (0.010433101) (0.010535354499999997) (0.010542358000000002) (0.010422372) (0.010455638499999989) (0.010299313500000004) (0.010329883999999998) (0.010630689500000012) (0.010325974500000001) (0.0103305645) (0.010459738999999996) (0.01057796749999998) (0.010799435499999996) (0.010377087500000007) (0.010395031499999999) (0.010462991500000005) (0.010601899999999997) (0.010472084500000006) (0.01032200450000001) (0.009955453500000003) (0.01003953299999999) (0.0103595145) (0.0101619835) (0.01009750899999999) (0.01013310549999999) (0.0100336055) (0.009935805999999991) (0.010341931999999984) (0.010383260000000005) (0.010208190500000006) (0.010176376) (0.0101944395) (0.010094852500000001) (0.010149010000000014) (0.010354471000000004) (0.010052163999999988) (0.010148926999999988) (0.010014438) (0.010340286000000018) (0.0101247255) (0.010289384999999998) (0.010084811999999985) (0.010154896999999996) (0.010419286499999986) (0.010182754999999988) (0.010144043499999991) (0.010270759500000004) (0.010396929) (0.010211668499999993) (0.010474025999999997) (0.010093552500000005) (0.010695530499999995) (0.010647205999999992) (0.010399700499999998) (0.010348838999999999) (0.010430178999999998) (0.010584661499999995) (0.010382125000000006) (0.01043500999999998) (0.010640180499999985) (0.010789266000000006) (0.010345762999999994) (0.010530343999999997) (0.010560750000000008) (0.010310504999999998) (0.010846493999999998) (0.010572555999999997) (0.010581624499999998) (0.010523243500000015) (0.0105159685) (0.010361619500000016) (0.010337230500000003) (0.01035953399999999) (0.010472778000000002) (0.010427515499999998) (0.010610578500000009) (0.010596975000000008) (0.01041062899999999) (0.01040632700000002) (0.010595187000000006) (0.01078710699999999) (0.010393279000000005) (0.011607249) (0.010098801000000004) (0.010131764500000015) (0.010062338500000004) (0.010423121499999993) (0.010127808500000002) (0.010284256500000005) (0.009978697500000008) (0.010459702999999987) (0.010029801000000005) (0.010144312500000002) (0.010269354500000008) (0.010234433999999987) (0.010301100000000007) (0.010304525499999995) (0.01032835700000001) (0.010182947999999997) (0.009899542499999997) (0.010130310500000003) (0.01014395400000001) (0.010317066) (0.010066937999999997) (0.0101163685) (0.010192208500000008) (0.010002007999999993) (0.010053336499999996) (0.010002444999999999) (0.010065427499999988) (0.010306273500000004) (0.0100944315) (0.010494515999999995) (0.010362725500000003) (0.009999721000000003) (0.010317493499999997) (0.010384917000000007) (0.010474883000000004) (0.010287705000000008) (0.01073121299999999) (0.010386327000000015) (0.010370233999999992) (0.010574398000000013) (0.010393691499999996) (0.010394298499999996) (0.0105122525) (0.010344010999999986) (0.010720633500000007) (0.01065848250000001) (0.010562338000000004) (0.010372242500000017) (0.010322431999999993) (0.010721605500000009) (0.010884656999999992) (0.01027381899999999) (0.010501083499999994) (0.010319395499999995) (0.010629631500000014) (0.010406843500000013) (0.010734322000000004) (0.010448415500000002) (0.010427456499999987) (0.010562857000000009) (0.010581033500000003) (0.010514878499999991) (0.010522868000000005) (0.010498187499999992) (0.010030279000000003) (0.010134134999999989) (0.010485891999999997) (0.010234525999999994) (0.009984520499999996) (0.010084728499999987) (0.010183633000000011) (0.010220937999999999) (0.010129938500000005) (0.010161414000000007) (0.010197172500000004) (0.010493809500000006) (0.010195577500000011) (0.010187917000000005) (0.010339320499999999) (0.010289056500000004) (0.010293438000000002) (0.010408624000000005) (0.010233952000000004) (0.010396772999999998) (0.010330139000000002) (0.009998331499999999) (0.010379756000000004) (0.010099096500000002) (0.01024866449999999) (0.010367303500000008) (0.010105025000000004) (0.010142491999999989) (0.010420537500000007) (0.010336311000000015) (0.010351899999999997) (0.010147333500000008) (0.010404663999999994) (0.010439261499999991) (0.010563281500000007) (0.010262710499999994) (0.010357426999999989) (0.010297476500000013) (0.010390301500000004) (0.010399554000000005) (0.010565599500000009) (0.010388749000000003) (0.010830468999999995) (0.010344034000000002) (0.010523911999999996) (0.010525896000000007) (0.010467565499999998) (0.010414990499999999) (0.010339937499999993) (0.010399640500000001) (0.010522091499999997) (0.010370948000000005) (0.010390460000000004) (0.010496698999999998) (0.010330096999999996) (0.010275088500000001) (0.010565351) (0.010615779500000005) (0.010450447000000002) (0.010907391999999988) (0.010560570500000019) (0.010537715500000003) (0.010407222000000008) (0.010466187500000002) (0.009916497499999996) (0.010247050499999993) (0.010208336999999998) (0.010055347000000006) (0.01028381149999999) (0.01017850549999999) (0.01005804099999999) (0.010317708499999995) (0.010260435499999984) (0.0104596775) (0.01014140999999999) (0.010155093500000004) (0.010487974499999997) (0.010059706000000002) (0.010058939000000003) (0.010351803999999992) (0.010284823999999998) (0.010070363000000013) (0.01011256399999999) (0.010171418000000002) (0.009948190499999995) (0.010102412499999991) (0.010145425) (0.009900015500000012) (0.010422808500000005) (0.010215772500000012) (0.0101586065) (0.01025049800000001) (0.010373730999999983) (0.010354455999999998) (0.010360204500000011) (0.01035470849999999) (0.010438386499999994) (0.01027967049999999) (0.010787813000000007) (0.010517254000000004) (0.010377200500000003) (0.010613945999999999) (0.010336104999999984) (0.010419642499999993) (0.010706419000000009) (0.010570564000000005) (0.010804155499999996) (0.010625223999999989) (0.010576254500000007) (0.01035106849999999) (0.010777903000000005) (0.0104315445) (0.010564782499999995) (0.010338912500000005) (0.010331070499999997) (0.0104951935) (0.01033335249999999) (0.010437199000000008) (0.010693224500000001) (0.010452954999999986) (0.010562436000000008) (0.010577587) (0.0102927815) (0.010533508999999996) (0.0106294225) (0.010601312500000015) (0.010470320000000005) (0.010555507500000005) (0.01025266200000001) (0.010070348500000006) (0.010528433500000003) (0.01004127049999999) (0.01027626949999999) (0.010519672999999993) (0.010323325000000008) (0.010127754500000002) (0.010318149499999998) (0.010372236999999992) (0.010038348999999988) (0.010224990500000003) (0.010119243) (0.010147737500000004) (0.010335345999999995) (0.010451243499999999) (0.010150928000000004) (0.010289705499999996) (0.010220277499999986) (0.010118630000000017) (0.010169295000000009) (0.010237827500000019) (0.010081429000000003) (0.010202695500000011) (0.010293531499999994) (0.010310963500000006) (0.010031151000000016) (0.010286098000000007) (0.010307049499999998) (0.010180374500000006) (0.010114817499999998) (0.01020225050000001) (0.010527859500000014) (0.010433754000000003) (0.010410967000000007) (0.010272425000000002) (0.010448409999999991) (0.010607192500000001) (0.010531344499999998) (0.010708885500000001) (0.010452477499999988) (0.010434353499999993) (0.0105910865) (0.01068856700000001) (0.010554584499999992) (0.010584426999999993) (0.010636259000000009) (0.0104267745) (0.010397050500000019) (0.010578445000000006) (0.010396385999999994) (0.010273989999999997) (0.010411165999999986) (0.010325991500000006) (0.010491612999999997) (0.010546622000000005) (0.010642746499999994) (0.010690953500000003) (0.01606605150000001) (0.010400428000000003) (0.010629220499999995) (0.010534851999999997) (0.010555490500000014) (0.010427621999999998) (0.010226590500000007) (0.010262222000000001) (0.01009367450000001) (0.010013126499999997) (0.010105869999999989) (0.010105666) (0.010034808499999992) (0.009989466000000002) (0.010075022500000003) (0.00995719049999999) (0.010065145499999997) (0.009990535499999995) (0.010306731) (0.010163750999999999) (0.010017920999999999) (0.0103983765) (0.010061019000000004) (0.010003854500000006) (0.01015047049999998) (0.0100321305) (0.01470027950000001) (0.010210437000000003) (0.01005093500000001) (0.009955903500000002) (0.010031924500000011) (0.010169050000000013) (0.010078011999999997) (0.010097132499999995) (0.010059613500000009) (0.010163279499999997) (0.010131418500000003) (0.010109964500000013) (0.010706712499999993) (0.010472166500000005) (0.010414051000000007) (0.010535625000000007) (0.010541899000000007) (0.01029432000000001) (0.010661509999999999) (0.010406032499999995) (0.010390772499999992) (0.010505710500000001) (0.010562620500000008) (0.010415476999999992) (0.010471436000000015) (0.010405564000000006) (0.010528801000000004) (0.010462097500000003) (0.010419264999999997) (0.01036144650000001) (0.010587407999999993) (0.010327973500000004) (0.010444765000000009) (0.010413922500000006) (0.010256482999999997) (0.010287016499999996) (0.010640759999999999) (0.010531304000000005) (0.010384462999999997) (0.010413791500000005) (0.010404233999999998) (0.010592571500000009) (0.010375224000000002) (0.010579999999999992) (0.010071699500000003) (0.010183124499999988) (0.010063553000000003) (0.01013180200000001) (0.009897159500000016) (0.010019585499999997) (0.010162154500000006) (0.010379536499999995) (0.010338550500000016) (0.010044923499999997) (0.010258345000000016) (0.010064210500000004) (0.010218448500000019) (0.010090426999999999) (0.010150672499999985) (0.010307774000000006) (0.010122182999999993) (0.009987188999999994) (0.010121729499999996) (0.01032153249999998) (0.01029047449999998) (0.010031100000000001) (0.01006385550000001) (0.010065467999999994) (0.010605004000000015) (0.010392949000000012) (0.010107941999999995) (0.010190842999999991) (0.010188138499999999) (0.010242339999999989) (0.0102099925) (0.010362070000000001) (0.010527951500000007) (0.010359155499999995) (0.01032457099999999) (0.010459736000000011) (0.010318004499999991) (0.010648038500000012) (0.010353936000000008) (0.010518284500000002) (0.010442440499999997) (0.010538719000000002) (0.01056671449999999) (0.010854137) (0.010717214499999989) (0.010835837499999987) (0.010587065999999992) (0.01061116899999999) (0.01036180049999999) (0.010266459999999991) (0.010399024000000007) (0.010287777499999998) (0.010426025500000005) (0.010360311499999997) (0.010301879500000014) (0.010328305499999996) (0.010628015500000004) (0.010489519500000002) (0.010433788999999999) (0.010461943500000015) (0.010741820999999999) (0.010659856499999995) (0.010579354500000013) (0.010580929000000017) (0.010234699000000014) (0.010167270000000006) (0.010219735999999993) (0.010138987500000002) (0.010138179999999997) (0.010101059999999995) (0.010148502000000004) (0.010165712500000007) (0.010532326499999994) (0.010130514499999993) (0.010472777500000002) (0.010192534500000003) (0.01073087049999999) (0.010226181999999986) (0.01037031849999999) (0.010173917000000005) (0.010251382500000017) (0.009966560499999999) (0.010108977000000005) (0.00998946050000002) (0.010286375499999986) (0.009908863500000004) (0.010082283999999997) (0.010020447499999988) (0.010240705499999989) (0.010315385499999996) (0.010170296999999995) (0.010103884999999993) (0.010199374999999997) (0.010063035500000012) (0.010053781499999997) (0.010084717500000007) (0.010569693500000005) (0.010328013499999997) (0.010681659999999996) (0.010940743500000003) (0.010664435000000014) (0.010561628500000003) (0.01045947600000001) (0.010345671) (0.010521027999999988) (0.010654404999999992) (0.010486943999999998) (0.010630411500000006) (0.010600729500000003) (0.01069358899999999) (0.010558726000000004) (0.010473357000000003) (0.010609357) (0.010373536500000002) (0.010388751000000016) (0.010448317000000013) (0.010493623999999993) (0.010394051500000015) (0.010467335999999994) (0.010546775000000008) (0.010842987000000012) (0.010693818499999994) (0.010436980999999998) (0.010499126999999997) (0.010357911999999997) (0.010562563499999997) (0.010547172499999993) (0.010435341) (0.0101205345) (0.010187595499999993) (0.010209907000000018) (0.010155588499999993) (0.009965805999999994) (0.010002103499999984) (0.010117361500000005) (0.015120901000000006) (0.01010167749999999) (0.010230583500000001) (0.01046042500000001) (0.010299260000000005) (0.0105658795) (0.010318569999999985) (0.010184842) (0.010294733) (0.009945374000000007) (0.010144531499999998) (0.010085449999999996) (0.010298131999999988) (0.010145407500000009) (0.010093647499999997) (0.010029031499999994) (0.010139523000000011) (0.010597649) (0.010513058000000006) (0.01036271200000001) (0.010455654999999994) (0.010219006000000003) (0.010749736999999981) (0.010345946500000022) (0.010039615000000002) (0.01085581599999999) (0.010796656500000001) (0.0103551645) (0.010344514499999999) (0.010558421999999998) (0.010511333999999997) (0.010456961) (0.0106325595) (0.010556157499999982) (0.010546514500000007) (0.010539173000000013) (0.010653999999999997) (0.01057262199999999) (0.01040472299999999) (0.010404427000000008) (0.01059573450000001) (0.010519843999999987) (0.010467868499999991) (0.010361968) (0.010381387500000006) (0.010448857500000006) (0.01029576900000001) (0.010625932500000004) (0.010392048000000001) (0.010808133499999997) (0.010504044000000004) (0.010563297999999985) (0.010569944999999997) (0.010694124999999999) (0.010638902500000005) (0.010671784000000017) (0.010475460000000006) (0.009883655499999991) (0.010217512500000012) (0.009842852499999999) (0.010193965999999999) (0.010105050500000004) (0.010104791500000015) (0.010199723499999994) (0.010267600500000015) (0.010263547499999998) (0.010457556499999993) (0.010377262499999998) (0.010308406999999992) (0.010359568999999999) (0.010283055500000013) (0.010367376500000011) (0.010237675499999987) (0.010710393499999998) (0.010216257500000006) (0.010144118999999993) (0.010427006000000003) (0.010081987) (0.010145389500000004) (0.010191857499999998) (0.009913264500000005) (0.010291906500000003) (0.010091047499999992) (0.0102965795) (0.010110782999999998) (0.010511608999999991) (0.010053781999999997) (0.010666513500000002) (0.010205947999999992) (0.010222106500000008) (0.010219915999999996) (0.010385981000000002) (0.010504646000000006) (0.010353833500000006) (0.010442527000000007) (0.0103816095) (0.010304314499999995) (0.010543121499999988) (0.010249841499999995) (0.010574870000000014) (0.01060266850000001) (0.010559857000000006) (0.0106572375) (0.010449836000000004) (0.010494667) (0.010314820499999988) (0.010344891000000009) (0.010354903499999998) (0.010397360499999994) (0.010349197000000004) (0.01031741400000001) (0.010330548499999995) (0.010258125000000007) (0.010589637999999998) (0.0106274705) (0.010341101999999991) (0.010426620499999997) (0.010517467500000002) (0.0105082715) (0.010370600999999993) (0.010467218500000014) (0.010061909000000008) (0.0100911115) (0.01015827250000001) (0.010178930000000003) (0.010053484000000015) (0.009914319500000018) (0.010175557500000001) (0.01011527299999998) (0.010114446999999999) (0.010102775500000008) (0.010187371499999986) (0.010139847000000007) (0.010446210999999997) (0.010020014500000007) (0.010201071500000006) (0.010159826999999996) (0.010168068000000002) (0.010289660999999992) (0.010108589500000015) (0.009863184999999997) (0.010211313) (0.010116207000000002) (0.010288306499999997) (0.010361144499999989) (0.01016983249999999) (0.010353435499999994) (0.010350806500000004) (0.010298894500000016) (0.010222969499999998) (0.01032768199999999) (0.010246567999999998) (0.010357723) (0.010483931000000002) (0.010330622499999997) (0.010373453500000004) (0.010308982499999994) (0.010574962500000007) (0.010402455000000005) (0.01049116750000001) (0.010707126499999997) (0.010423112999999998) (0.010560051000000015) (0.010588663000000012) (0.010359373000000005) (0.010420275000000007) (0.010574066500000007) (0.01067339299999999) (0.010444043499999986) (0.010414873499999991) (0.010230890999999992) (0.010488540000000005) (0.010425421500000004) (0.010571942500000014) (0.010409305500000007) (0.01048931900000001) (0.010339084999999998) (0.010599515000000004) (0.010429180499999996) (0.010453959500000012) (0.010534031) (0.010386279999999998) (0.010401026999999993) (0.010368728999999993) (0.010492097000000006) (0.010197898999999996) (0.010380671500000008) (0.01008030700000001) (0.010191402500000002) (0.0101574475) (0.010205330500000012) (0.010225073000000001) (0.010209366999999997) (0.010514633999999995) (0.010140521999999999) (0.010051809999999994) (0.010153568500000001) (0.010326845999999987) (0.010231317000000004) (0.010139066500000016) (0.010111778499999988) (0.010364924000000011) (0.010040407999999987) (0.01018878899999999) (0.010165428500000004) (0.010114612999999995) (0.010135522999999994) (0.010052072500000009) (0.009985065500000001) (0.010088347499999997) (0.010218652499999994) (0.010301682000000006) (0.0100507185) (0.010130867499999988) (0.010399009999999986) (0.010293938500000002) (0.010804202999999998) (0.0103921545) (0.010476741999999997) (0.01031361) (0.010595531000000005) (0.010319712000000009) (0.010265385500000002) (0.01054280149999999) (0.010554246000000003) (0.010536858999999996) (0.010433293999999996) (0.010688369499999989) (0.010315258000000008) (0.010678413999999997) (0.010643265500000013) (0.010474473999999998) (0.01082595950000001) (0.010253738499999998) (0.010287663499999988) (0.010545146000000005) (0.010305970499999997) (0.0104453605) (0.010627758000000001) (0.01054802099999999) (0.010443935500000015) (0.0106998975) (0.010570391000000012) (0.010583836499999999) (0.010662886499999996) (0.010453905999999985) (0.010648700000000011) (0.010370382499999997) (0.010504008499999995) (0.010143950499999999) (0.010180165000000005) (0.01009372700000001) (0.010121481000000002) (0.0101249645) (0.010161694500000013) (0.010287063000000013) (0.010160257500000006) (0.009995816000000005) (0.010230879999999998) (0.010134967000000022) (0.01016125100000001) (0.01014303250000001) (0.010301326) (0.010211000999999997) (0.010097865500000011) (0.010022111) (0.010167376999999991) (0.010046761500000015) (0.010314342500000018) (0.0100371135) (0.010131551999999988) (0.010192849000000018) (0.010227063500000008) (0.010252685000000011) (0.010461640000000008) (0.010222990500000001) (0.010159289000000002) (0.010111047500000012) (0.010291556999999993) (0.010187220999999996) (0.010203563500000012) (0.010573547000000003) (0.010669527500000012) (0.010472025999999995) (0.010460710999999998) (0.0102754085) (0.010334032000000007) (0.010505710000000001) (0.010298549500000004) (0.010487905500000005) (0.010695092000000003) (0.0105735245) (0.010810835000000005) (0.010558237999999998) (0.010628107500000011) (0.010522727999999995) (0.01049871699999999) (0.010276013000000014) (0.010225362000000002) (0.010596652500000012) (0.0104774215) (0.010399340499999993) (0.010341481) (0.010380020500000003) (0.010338280000000005) (0.010418354000000005) (0.010506351499999997) (0.01053191149999999) (0.010728105500000001) (0.010693475000000008) (0.010622578000000008) (0.01072670449999999) (0.010489849499999995) (0.010165971999999995) (0.010093124500000009) (0.009992604999999988) (0.010159043500000006) (0.010061793) (0.010024183500000006) (0.010025043999999997) (0.010063565999999996) (0.010326827499999996) (0.010143491000000004) (0.01016254450000001) (0.010066949000000006) (0.010025083000000004) (0.010086103499999999) (0.010365192999999995) (0.010140421999999996) (0.010087467499999989) (0.010156651000000003) (0.010063795) (0.010021895500000003) (0.010124888500000012) (0.010090878499999997) (0.010160164000000013) (0.010189013499999997) (0.010116443500000002) (0.010390354000000004) (0.010134471500000006) (0.010305979000000007) (0.009998647999999999) (0.010336217999999994) (0.010307158499999997) (0.010264463499999987) (0.010597769999999992) (0.010272299499999984) (0.010692039499999986) (0.010304535500000003) (0.010248334499999998) (0.010329457) (0.010157260000000001) (0.010484055000000006) (0.010551074499999993) (0.010645232500000004) (0.011049144999999996) (0.010474016500000016) (0.010673966500000007) (0.010381173000000007) (0.010788667500000002) (0.010489230500000002) (0.010314760999999992) (0.01039354399999999) (0.010468760500000021) (0.010270528000000015) (0.010339118000000008) (0.010386110500000004) (0.010417798500000006) (0.010434240999999997) (0.0105097715) (0.010488961000000005) (0.010430124499999999) (0.01043622100000001) (0.010791643500000003) (0.010422840499999989) (0.01049948149999999) (0.010430107000000008) (0.010440034) (0.010177625999999995) (0.010132638) (0.010047685) (0.009998568) (0.009998562500000002) (0.010203228000000009) (0.010072130000000012) (0.010307886999999988) (0.010281377499999994) (0.009945647500000002) (0.0101432095) (0.010261691500000003) (0.010095727999999984) (0.010135856499999998) (0.010572552499999999) (0.010036113999999999) (0.0101486135) (0.010090912499999993) (0.010253272500000007) (0.010108715500000004) (0.010055697999999988) (0.010198738500000012) (0.010158466000000005) (0.010289155499999994) (0.010325598999999991) (0.010117488000000008) (0.010317813500000009) (0.010157716000000011) (0.010183289999999998) (0.010273104499999991) (0.01011923699999999) (0.010485544) (0.010280201000000003) (0.010441518499999997) (0.01055354600000001) (0.010315138500000001) (0.010310273499999995) (0.010571991500000016) (0.010256418000000003) (0.010592637499999988) (0.010930727499999987) (0.010387834499999998) (0.010633791500000003) (0.010585413999999987) (0.010378099500000015) (0.010388095) (0.010505164499999997) (0.010400262500000007) (0.010502173000000004) (0.010446710999999997) (0.010454225499999997) (0.010619106000000003) (0.01052559850000001) (0.01039390150000001) (0.010532605) (0.010592502500000003) (0.010642334000000003) (0.01051119049999999) (0.010553961) (0.010557870999999996) (0.010652993999999999) (0.01032907550000002) (0.01045649400000001) (0.010007964500000008) (0.01005108049999999) (0.010201613500000012) (0.009931057000000007) (0.010221781500000013) (0.01009865750000001) (0.010088051) (0.0102358065) (0.010176682500000006) (0.01012363999999999) (0.010043851500000006) (0.010280167000000007) (0.010226687999999998) (0.010133992499999994) (0.010307084000000008) (0.010208891500000011) (0.010279630999999997) (0.010050803000000011) (0.01013219949999998) (0.010326290500000002) (0.010050801499999998) (0.010243363000000005) (0.010231736500000005) (0.010106830000000011) (0.01017435350000001) (0.01032485150000001) (0.010110531499999992) (0.010177443500000008) (0.010247224) (0.010162940499999995) (0.010419852499999993) (0.010243893500000018) (0.010316320500000004) (0.010422537999999995) (0.010595483000000003) (0.010197973500000013) (0.010430018) (0.010669431000000007) (0.010380857500000007) (0.010447740499999997) (0.010287636000000003) (0.010554127499999996) (0.010405625000000002) (0.010702381999999996) (0.010525758999999996) (0.0105861815) (0.010541345000000008) (0.010629708999999987) (0.010362999000000012) (0.010493375999999999) (0.010980322) (0.010570787499999998) (0.010766149000000003) (0.010513331499999987) (0.010502166000000007) (0.010387044499999998) (0.010525266999999991) (0.010400068499999998) (0.010734371000000006) (0.010820983500000006) (0.010431240000000008) (0.0104263005) (0.0106806495) (0.010338237) (0.010046148000000005) (0.010254421000000014) (0.010100255500000002) (0.010399535000000015) (0.010127719000000007) (0.010239977999999997) (0.010046458500000008) (0.010410308499999993) (0.010254694999999994) (0.010270075000000004) (0.0101773) (0.01021245300000001) (0.010186558499999984) (0.010165389999999996) (0.010082367999999994) (0.010264100999999998) (0.010050868000000004) (0.010051677999999994) (0.010215372500000014) (0.010116591499999994) (0.01037015799999999) (0.009931659999999995) (0.010306046499999999) (0.010130130500000015) (0.010409011499999996) (0.010415743000000005) (0.010122231999999995) (0.010129052999999999) (0.01033153449999999) (0.010123883) (0.0100103535) (0.01014163650000001) (0.010390720500000006) (0.010242946000000003) (0.010684186999999998) (0.0103505225) (0.01036657399999999) (0.0103351525) (0.010306765500000009) (0.010350292000000011) (0.010635058999999988) (0.010304353999999988) (0.010654118500000004) (0.010507978500000015) (0.010611651999999985) (0.010593647499999997) (0.010594846500000005) (0.010613372999999995) (0.010388559500000005) (0.010383299500000012) (0.010482252499999997) (0.010423928499999999) (0.010498897999999993) (0.010714026000000001) (0.01029344900000001) (0.010359386999999998) (0.010753889500000002) (0.010513059000000005) (0.010477954499999997) (0.010584775000000005) (0.010488828499999991) (0.010502729000000016) (0.010441196500000013) (0.0102785705) (0.0102049835) (0.010340737499999988) (0.010156224000000005) (0.010103154000000003) (0.010115851000000009) (0.009953749999999997) (0.010112755500000015) (0.010033065999999993) (0.009999053999999993) (0.010093049000000007) (0.009940505000000002) (0.010323465000000004) (0.010166136999999992) (0.01011906849999998) (0.010018583999999997) (0.010188104500000003) (0.010128432000000007) (0.01009615550000001) (0.009967977000000003) (0.010027751000000001) (0.010149682999999993) (0.010009126000000007) (0.010137606999999993) (0.00996680350000001) (0.010333224500000002) (0.01018202750000001) (0.010297060999999996) (0.010359592) (0.010113370999999996) (0.010168009000000006) (0.010113470999999985) (0.010176348499999988) (0.010406740500000011) (0.010388272000000004) (0.0106000765) (0.010546091999999993) (0.010493697499999996) (0.010473050999999997) (0.010496275500000013) (0.010530551999999999) (0.010508169999999997) (0.01066341550000001) (0.010607202499999996) (0.010519298000000024) (0.010691333999999997) (0.010459939000000001) (0.010631263500000002) (0.010515613000000007) (0.010357579000000006) (0.010546300500000008) (0.010266048) (0.010302145000000013) (0.010568420500000009) (0.010377877999999993) (0.010394874500000012) (0.010281336000000002) (0.010633403) (0.010966213000000002) (0.010624802500000002) (0.010783949000000015) (0.010399182000000007) (0.010787831999999997) (0.010369811999999992) (0.01065680849999999) (0.01029223700000001) (0.009930691499999991) (0.010171944500000002) (0.010209751000000003) (0.010029243999999993) (0.01006992050000001) (0.010066694499999987) (0.010099992499999988) (0.010262244500000003) (0.009975167999999993) (0.010237591000000004) (0.010391287999999985) (0.01027204100000001) (0.010105916000000006) (0.010236607499999995) (0.010285164000000013) (0.010148222499999998) (0.010141141500000006) (0.010099672500000004) (0.010102634499999999) (0.010183025499999998) (0.0102684725) (0.010177285000000008) (0.010240475499999999) (0.01030234449999999) (0.010137421499999993) (0.010279951500000009) (0.01031649350000001) (0.010231337000000007) (0.010208883499999988) (0.010549180500000005) (0.010296713999999998) (0.010339955499999984) (0.01035344449999999) (0.010329083500000003) (0.010731722499999985) (0.010385843500000005) (0.010601996500000002) (0.010387364999999996) (0.010290590500000016) (0.010586119500000005) (0.01055833099999999) (0.010576237999999988) (0.010495289500000005) (0.010470983000000003) (0.010570732499999985) (0.01048208199999999) (0.010500227499999987) (0.010778253000000002) (0.010385813999999993) (0.010445615000000005) (0.010320077999999983) (0.01054213850000002) (0.01042187650000001) (0.010370683499999991) (0.010317164000000004) (0.010820732000000013) (0.010539367500000008) (0.010561808499999992) (0.010507313500000004) (0.010631803000000023) (0.010504539999999993) (0.010611410000000002) (0.010574754999999991) (0.010099508000000007) (0.010002846999999995) (0.010277118500000015) (0.010064403999999999) (0.010181433000000004) (0.010144529999999999) (0.010143891999999988) (0.010031269999999995) (0.010032670499999993) (0.010283490500000006) (0.010407672500000006) (0.010481845000000004) (0.01025318700000001) (0.010217258499999993) (0.010068729999999998) (0.010165421499999994) (0.010248610000000005) (0.009970236999999993) (0.010098568999999988) (0.009949484000000008) (0.010204843500000005) (0.010056295000000007) (0.0099321785) (0.010116180500000002) (0.010314624499999994) (0.010211369999999997) (0.010353565000000009) (0.010113227000000002) (0.010201651000000006) (0.010360154499999996) (0.010346783500000012) (0.010279480500000007) (0.010474092500000004) (0.010441719000000002) (0.010233209000000007) (0.01037384000000001) (0.01033275950000001) (0.010398980500000002) (0.010662667) (0.01057117099999999) (0.010508769000000001) (0.010426864499999994) (0.010912823000000002) (0.010590160000000001) (0.010405573500000001) (0.010513354500000002) (0.010764067000000002) (0.010531033500000009) (0.010387754999999999) (0.010925529500000003) (0.010282345000000012) (0.010335167500000006) (0.010375081999999994) (0.010392559499999982) (0.010429063500000002) (0.010557840499999999) (0.010749374500000006) (0.010596807500000013) (0.010499693000000004) (0.010406275000000006) (0.010563933499999997) (0.010960334000000002) (0.010422994000000005) (0.010387527999999993) (0.010204088000000014) (0.010145754500000007) (0.010283874999999998) (0.010174695500000011) (0.01015968149999999) (0.010165147499999999) (0.010343548499999994) (0.009999177999999997) (0.0102637545) (0.010125825500000005) (0.010335358500000003) (0.010289677999999997) (0.0101511705) (0.010333668000000018) (0.010205714000000005) (0.010140097) (0.010144187499999985) (0.010233453500000003) (0.010366000500000014) (0.010278941999999985) (0.010040959000000016) (0.009915014500000013) (0.010099218500000007) (0.010016860500000002) (0.010360710000000009) (0.010370668999999999) (0.010241655000000016) (0.010429917999999996) (0.01038008600000001) (0.010266670499999991) (0.010235491) (0.01031527850000001) (0.010468707000000008) (0.010416578499999996) (0.010472239500000008) (0.011953695500000014) (0.010469574999999995) (0.010472995499999985) (0.010503940500000003) (0.0104048645) (0.01051964150000001) (0.010418419000000012) (0.010450553499999987) (0.010500556499999994) (0.010463103000000001) (0.010353185999999986) (0.010657533999999996) (0.010374196000000002) (0.010366661999999999) (0.01066871649999998) (0.010473261000000011) (0.010456923500000007) (0.010382336500000006) (0.010665609000000006) (0.010508721499999998) (0.010547030499999999) (0.010901573999999997) (0.010573730000000003) (0.011150922999999993) (0.010585722500000005) (0.010664354000000001) (0.010623009500000002) (0.010509776499999998) (0.010558676000000003) (0.010200326499999995) (0.010022669999999997) (0.009883086999999999) (0.010173094500000007) (0.010227008499999996) (0.010048496000000004) (0.010250208499999997) (0.010156548500000001) (0.010139960000000003) (0.010013017999999985) (0.010221095500000013) (0.01014775250000001) (0.010218000500000005) (0.010247301499999986) (0.010287662500000017) (0.010185278000000006) (0.009988787499999999) (0.0100974105) (0.010250380000000003) (0.010296491000000019) (0.010113957499999993) (0.01007027150000002) (0.01020467500000001) (0.010324346499999998) (0.010129676500000004) (0.010050810000000007) (0.010155754000000003) (0.010318413999999984) (0.010096305) (0.010129923499999999) (0.010226362999999988) (0.01038688850000001) (0.010356968499999994) (0.0103300115) (0.010302042499999983) (0.010386176499999997) (0.010471127999999996) (0.010428422000000007) (0.010281323499999995) (0.010241160499999999) (0.010716588999999999) (0.010519217999999997) (0.010500758999999998) (0.01039569650000001) (0.010445584499999994) (0.010631863000000005) (0.010436603499999988) (0.010351148000000004) (0.010444852000000004) (0.010437981500000013) (0.010421788500000001) (0.010369443000000006) (0.010348659999999996) (0.010390050500000012) (0.010263880000000003) (0.010621780999999997) (0.010587957499999995) (0.010599999999999998) (0.010388732999999997) (0.010762869500000008) (0.010520532499999999) (0.010637796000000005) (0.010511215000000004) (0.010358297999999988) (0.010038312500000007) (0.010291843499999995) (0.010013408000000001) (0.010256030999999999) (0.010185054999999998) (0.010045802499999992) (0.010033487500000007) (0.010057869999999997) (0.010219919000000008) (0.010178350000000017) (0.010099755000000002) (0.010298885000000008) (0.010076654500000004) (0.010320969500000013) (0.0105108025) (0.010113518999999987) (0.010242425999999999) (0.010116987499999994) (0.010090283999999991) (0.010147978000000002) (0.010170413000000003) (0.0100723895) (0.010444213500000007) (0.010293936500000003) (0.010645135) (0.010462306500000004) (0.010426330999999997) (0.010206935000000014) (0.010257674500000008) (0.010214109499999999) (0.010097441500000012) (0.010077615999999998) (0.01045877299999999) (0.010493251000000009) (0.010313379999999997) (0.010719954500000003) (0.010316524500000007) (0.01044990350000001) (0.010398102500000006) (0.010372538999999986) (0.010531477000000011) (0.010509198999999997) (0.010517410500000005) (0.010422498000000002) (0.010748652999999997) (0.011125918499999984) (0.010483239000000005) (0.010439912499999995) (0.0107210155) (0.010274596999999996) (0.010337580499999999) (0.010386430000000002) (0.010540356999999986) (0.010455517499999997) (0.01039701400000001) (0.010325925499999986) (0.010850952999999983) (0.010625540000000003) (0.01078931150000001) (0.010546328000000008) (0.010319224500000015) (0.010626518000000001) (0.010438887499999994) (0.010315958500000014) (0.0100988345) (0.010068321500000005) (0.010076962499999995) (0.010259446999999991) (0.010138390000000011) (0.010137241499999991) (0.010099310500000014) (0.010087948499999999) (0.010371441999999995) (0.010174409999999995) (0.010401648999999985) (0.010161735500000005) (0.010336769499999995) (0.009996427499999988) (0.010204135999999989) (0.0103414815) (0.010390263499999997) (0.009988790999999997) (0.010176551000000006) (0.010256420500000016) (0.009998752500000013) (0.009972003500000007) (0.010106154499999992) (0.010081014999999999) (0.010414628499999995) (0.01059718350000001) (0.010236458500000004) (0.010240423999999998) (0.01029724600000001) (0.010124334499999998) (0.010195091500000003) (0.0104355795) (0.010258679000000007) (0.010439544999999995) (0.010414973500000008) (0.010411548000000007) (0.010457717500000005) (0.010407141000000009) (0.010259533000000001) (0.010464779500000007) (0.010395728500000007) (0.010554514000000001) (0.010501131499999997) (0.010527303500000001) (0.010412646499999983) (0.010474625000000015) (0.010538436999999998) (0.010331525499999994) (0.010325828000000009) (0.010510031999999989) (0.010399196) (0.010306496500000012) (0.010434817499999999) (0.010429141500000003) (0.010464473000000016) (0.01039027699999999) (0.010488731000000001) (0.010621647499999998) (0.010792148000000001) (0.010732284500000008) (0.010595337999999996) (0.010372156000000007) (0.010615942999999989) (0.010602775499999995) (0.010126636000000008) (0.0101058495) (0.0102499375) (0.010281930499999994) (0.010039616500000001) (0.010178348500000003) (0.010133300000000012) (0.01021647299999999) (0.010158172500000007) (0.010266853999999992) (0.010332383500000014) (0.010044688499999996) (0.010261359499999997) (0.010154540500000003) (0.010255075500000016) (0.010042224999999988) (0.010382915499999992) (0.010109385499999998) (0.010218686000000005) (0.00997538349999999) (0.010247686500000006) (0.010219490999999997) (0.010223246500000005) (0.010114703500000002) (0.010699315500000015) (0.010256265500000014) (0.010332733499999996) (0.01035199349999999) (0.01014675299999998) (0.010379183999999986) (0.010071375000000021) (0.010174888999999993) (0.010573153500000002) (0.010498896500000007) (0.010349568500000017) (0.01045360549999999) (0.010685427500000011) (0.01040743899999999) (0.010808859500000004) (0.010420070500000017) (0.010584348000000007) (0.010373679499999997) (0.010595064500000001) (0.010518695000000008) (0.010473597500000001) (0.010417057999999993) (0.010443640500000004) (0.0107568985) (0.010318585500000005) (0.010713524500000002) (0.010442734999999995) (0.010542920999999997) (0.010610610500000006) (0.010404287499999998) (0.010412348000000002) (0.010472303500000002) (0.010676841500000006) (0.010397588499999999) (0.010535407499999982) (0.010617896000000002) (0.010617255000000006) (0.010480239500000002) (0.010423323999999998) (0.010593515000000012) (0.010000946999999996) (0.010159052500000015) (0.0099136955) (0.010018665999999996) (0.009963576999999987) (0.010145092500000008) (0.009951072000000019) (0.010042266000000008) (0.010070607500000009) (0.010242840000000017) (0.010067083000000004) (0.01004226300000001) (0.01020547099999998) (0.010267556499999997) (0.010255738) (0.010144462499999993) (0.010076411000000007) (0.0099517135) (0.010058934999999991) (0.010175827999999998) (0.010102329499999993) (0.010007002999999987) (0.01006116750000001) (0.010131701499999993) (0.010261664500000003) (0.010194769000000006) (0.010157967000000004) (0.010325323999999997) (0.01006232) (0.010213740999999998) (0.010144262000000001) (0.01024217849999999) (0.010339196499999995) (0.010472590500000004) (0.010461780000000004) (0.010358893999999993) (0.010601784500000003) (0.010439223000000011) (0.010343247500000013) (0.010280352000000006) (0.010309913500000004) (0.01052581950000002) (0.01048726300000001) (0.01038799800000001) (0.010651707999999996) (0.010469577999999993) (0.010597043000000014) (0.010450662999999999) (0.01030626350000001) (0.010433889000000002) (0.010402185999999994) (0.010466985999999998) (0.010397391999999991) (0.010296306500000005) (0.010385946000000007) (0.010256348999999998) (0.010265960500000004) (0.010556007500000006) (0.010311439000000006) (0.010437101000000004) (0.010776038999999987) (0.010644904499999996) (0.01054653350000001) (0.010581594) (0.0100396975) (0.010021884499999995) (0.010117613999999997) (0.010282122000000005) (0.010276211500000007) (0.010041031500000006) (0.010077577000000004) (0.010228041499999993) (0.010311267999999998) (0.010051100500000007) (0.010267227000000004) (0.010328284999999993) (0.01003005450000001) (0.010154913500000001) (0.010056354999999989) (0.01002125399999998) (0.010132711000000016) (0.009999064000000002) (0.010056190500000006) (0.010129552) (0.009929182499999994) (0.009961755500000002) (0.00997816650000001) (0.010097602000000011) (0.010212945000000015) (0.010391236499999998) (0.010329453500000002) (0.010022528000000003) (0.010400544499999997) (0.010226459500000007) (0.010233733000000009) (0.010289183000000007) (0.010619948500000018) (0.010442370999999992) (0.010231002500000003) (0.010328566499999997) (0.010494814499999991) (0.010295831499999991) (0.010503125000000002) (0.010329152999999994) (0.010400182000000008) (0.01059201400000001) (0.010410378999999997) (0.010607473500000006) (0.010440683000000006) (0.010342386500000009) (0.010603976000000001) (0.010543250000000004) (0.010413763000000006) (0.010442991999999998) (0.010493351499999998) (0.01037010599999999) (0.010414841500000008) (0.010458091999999988) (0.010343328499999999) (0.010257212499999988) (0.010882987999999996) (0.010732607000000005) (0.010551310499999994) (0.010796989999999992) (0.010432781000000002) (0.010681143000000004) (0.010330749) (0.010364932500000007) (0.01031384199999999) (0.010177356999999984) (0.01009244799999999) (0.010147235500000004) (0.010175837000000007) (0.010294895999999998) (0.010140858000000003) (0.009985344000000007) (0.010288311999999994) (0.010102886500000005) (0.01017175549999999) (0.010289970499999995) (0.010418015499999989) (0.010133653500000006) (0.0101429725) (0.010258771500000013) (0.0102189045) (0.010096087000000004) (0.010029779500000002) (0.010046819500000012) (0.009985099500000011) (0.010367779999999993) (0.010208125999999998) (0.010005698500000021) (0.010096481500000004) (0.010251984000000006) (0.010094697499999986) (0.010467527000000004) (0.010335247500000005) (0.010335629499999999) (0.01025689099999999) (0.010081628500000009) (0.010664513) (0.010284105500000001) (0.010530036500000006) (0.010287919499999992) (0.010211721500000007) (0.010390122500000001) (0.010331777500000014) (0.011067839499999996) (0.010893312500000002) (0.010563693500000013) (0.010949762000000016) (0.010612392000000012) (0.010606765500000004) (0.010636156999999993) (0.010634696999999999) (0.010528322999999992) (0.010280070500000002) (0.010341926000000001) (0.010404953999999994) (0.010342227500000009) (0.010187479999999999) (0.010312235000000017) (0.010401801000000002) (0.010458196999999989) (0.010390997000000013) (0.010678968999999996) (0.01051316649999999) (0.010408168500000009) (0.010446663500000009) (0.010622092500000013) (0.010398187500000003) (0.010583023999999996) (0.010215224499999995) (0.010075064499999994) (0.010131904499999983) (0.01011732500000001) (0.010377841500000012) (0.010041236500000009) (0.010011525500000007) (0.010125803500000002) (0.0100358745) (0.010239031000000023) (0.010362224999999989) (0.010139016) (0.010251119999999989) (0.010080955999999988) (0.010092249999999997) (0.010215232500000004) (0.010358969500000023) (0.010039233499999994) (0.01002151900000002) (0.010108311500000008) (0.010092016500000009) (0.010201017000000007) (0.010112514000000003) (0.010017408499999991) (0.010224017500000002) (0.010418352499999992) (0.010064706999999992) (0.010174607000000002) (0.01025174000000001) (0.010363532500000008) (0.010550618500000011) (0.010125272000000005) (0.010643445000000001) (0.010464069499999992) (0.010563122500000008) (0.010360266000000007) (0.010449935000000007) (0.010225848499999995) (0.010447216499999995) (0.01068138149999999) (0.010556838499999999) (0.010504799000000009) (0.010457323000000004) (0.010445138500000006) (0.010486758499999999) (0.010637155500000009) (0.010490970000000002) (0.010762683500000009) (0.010453526500000004) (0.010491408000000008) (0.010443055000000007) (0.010362526499999997) (0.010411260500000005) (0.010260068999999997) (0.010725844500000012) (0.01046843750000001) (0.010708507500000006) (0.010568426999999991) (0.010533620499999993) (0.010519305999999992) (0.010902539000000003) (0.010742270999999998) (0.010439892499999992) (0.0105938275) (0.010103613999999983) (0.009975167000000007) (0.01014190249999998) (0.009985076500000009) (0.010063729499999993) (0.009912393000000005) (0.010144382999999993) (0.009881414500000005) (0.010138383) (0.010301009) (0.010259105500000004) (0.010092845000000003) (0.01027893449999999) (0.010247754499999998) (0.010290069999999998) (0.010101001499999998) (0.010222049999999996) (0.0099273275) (0.010252093500000004) (0.010246180500000007) (0.009944147000000014) (0.010102202000000005) (0.010208846500000007) (0.010183152000000015) (0.010201578000000003) (0.010264569500000015) (0.010323115500000007) (0.010179026499999994) (0.010109356) (0.010347918499999997) (0.01042950799999999) (0.010238303500000004) (0.010290289999999994) (0.010535966999999993) (0.010484186000000006) (0.010349195499999991) (0.010531666000000009) (0.010406603) (0.010341511999999997) (0.010369709500000004) (0.01030771300000001) (0.010408481000000011) (0.010491947500000015) (0.010551540999999998) (0.010593715000000004) (0.010452440000000007) (0.010366083000000012) (0.010446251500000003) (0.010299269) (0.010170835499999989) (0.0105638485) (0.010286185499999989) (0.010445396499999995) (0.010516819499999996) (0.010624828500000016) (0.010381159000000001) (0.010611415499999999) (0.010482425500000003) (0.010467612500000015) (0.010361884499999988) (0.010559199500000005) (0.010517418) (0.010493917500000005) (0.010570521499999999) (0.010222860500000014) (0.010224120499999989) (0.010260000499999991) (0.010063397500000001) (0.010333154999999997) (0.009988946000000012) (0.010340439500000007) (0.010106040499999996) (0.010150299500000001) (0.009994864000000006) (0.010061481999999997) (0.010273925499999989) (0.010179169500000002) (0.010248275500000001) (0.010170946499999986) (0.010296973499999987) (0.010144034999999996) (0.010059394000000013) (0.009913296499999988) (0.010131433499999995) (0.010192506500000004) (0.010151449000000007) (0.010110970499999997) (0.010269804999999993) (0.010236609499999993) (0.010242756999999991) (0.010233463999999998) (0.010281165500000009) (0.01011716700000001) (0.010339513000000009) (0.010242813000000003) (0.010198842999999999) (0.0102957885) (0.010249310499999997) (0.010242328500000009) (0.01032999350000001) (0.010232423500000018) (0.010361266500000008) (0.010509856499999998) (0.010440626999999994) (0.010536226499999995) (0.010414534999999989) (0.010462592000000007) (0.010540921000000009) (0.01052313249999999) (0.01066935300000002) (0.010301484500000013) (0.010683600000000015) (0.010304464499999999) (0.010482134500000004) (0.01061462199999999) (0.010381966500000006) (0.010617013000000008) (0.010356417000000007) (0.010426043999999995) (0.010239350999999994) (0.010720868499999994) (0.0105250905) (0.010558697499999992) (0.010697147000000004) (0.01050632500000001) (0.010598586999999993) (0.010420017500000003) (0.0105032595) (0.009984074499999995) (0.009936645500000008) (0.010071391999999985) (0.010151063000000016) (0.010094976000000006) (0.010033808000000005) (0.010013184499999994) (0.010177496500000008) (0.010141758) (0.010149848000000003) (0.010109446499999994) (0.010186703499999991) (0.010166444499999983) (0.01012732949999999) (0.010282470000000002) (0.010142784499999988) (0.010031484500000007) (0.010086993500000002) (0.010193062500000002) (0.01013821799999999) (0.010286446000000005) (0.010207748500000016) (0.010269532000000012) (0.010135710500000006) (0.010179781999999998) (0.010239551) (0.010403133999999994) (0.010089005499999998) (0.010416980499999992) (0.010355061999999998) (0.010138225499999987) (0.010368524000000004) (0.010263887499999999) (0.010574524500000002) (0.010510889500000009) (0.010311889000000005) (0.010343767000000004) (0.010272685500000003) (0.010625346500000007) (0.010174941000000007) (0.010579291500000004) (0.01077865750000001) (0.01056927449999999) (0.010602117500000008) (0.010516312500000013) (0.010518798499999996) (0.01048848949999999) (0.010597895999999996) (0.010549160000000002) (0.0107163505) (0.010516055999999996) (0.010342978000000003) (0.0103453285) (0.010366562999999995) (0.010260067000000012) (0.010331159499999992) (0.010648119499999997) (0.01075097500000001) (0.01040308999999999) (0.010506999000000003) (0.01050892199999999) (0.010534945000000004) (0.01045152349999999) (0.010666437000000015) (0.010094484) (0.010116843) (0.010120780999999981) (0.009980878499999998) (0.010116372999999998) (0.010037182499999991) (0.010139158499999995) (0.010196589000000006) (0.010250828999999989) (0.01033481700000001) (0.010099152999999986) (0.010148265999999989) (0.010441089999999986) (0.010077209000000004) (0.010166211000000008) (0.010117215499999999) (0.010290009500000016) (0.010364614499999994) (0.009975966500000003) (0.010180270000000005) (0.010259215500000002) (0.010175433999999997) (0.010240944000000016) (0.010175605000000004) (0.010354703000000007) (0.010234880500000001) (0.0102277915) (0.01009773750000001) (0.010398112000000015) (0.010129928499999996) (0.010225525) (0.010109501499999993) (0.010339584999999998) (0.010371942999999995) (0.010634521000000008) (0.010359722499999988) (0.010448259000000001) (0.010334480499999993) (0.010343928000000002) (0.010448467000000003) (0.010291582999999993) (0.010559785500000002) (0.011077125499999993) (0.010544978499999996) (0.010517839000000001) (0.010573484000000008) (0.010847701500000001) (0.010362747499999991) (0.010375915499999985) (0.010382634500000001) (0.010249557999999992) (0.010381219999999997) (0.010600888000000017) (0.010531060000000009) (0.010544821499999982) (0.010406973000000014) (0.010881670999999982) (0.010613686999999983) (0.010768154000000002) (0.010514313499999997) (0.010460785) (0.010500468999999998) (0.010350427999999995) (0.010427781499999997) (0.010007904999999997) (0.010249912) (0.0101036065) (0.010098001499999981) (0.010299454500000013) (0.010179912) (0.009886943499999995) (0.00997338099999999) (0.010103228000000006) (0.010199080999999999) (0.010148899999999988) (0.010014213499999994) (0.010107356999999997) (0.010143600500000002) (0.010158107) (0.0101283935) (0.010396296999999999) (0.009948154999999986) (0.010316521499999995) (0.010144902499999997) (0.009965705000000005) (0.010153463999999987) (0.010263442500000011) (0.00999757350000001) (0.010193601499999996) (0.010346362499999998) (0.010089223499999994) (0.010242762999999988) (0.010257913000000007) (0.01086277649999999) (0.010189621499999996) (0.01073499999999998) (0.010434704000000003) (0.010573512999999993) (0.010543950499999996) (0.010341298499999999) (0.010195689000000008) (0.010347636499999993) (0.010287842000000005) (0.010439075999999992) (0.010540973000000009) (0.010698429499999995) (0.010452472500000004) (0.010378532999999995) (0.010566376000000002) (0.010494283500000007) (0.010538754499999997) (0.01037999249999999) (0.010481826000000014) (0.010367104999999988) (0.0103008495) (0.0104418005) (0.010382929499999999) (0.010509290500000004) (0.010837644000000007) (0.010254584999999997) (0.010648471500000006) (0.010511702499999998) (0.010542163499999993) (0.0105442335) (0.010397838999999992) (0.010753569500000018) (0.010417188999999993) (0.010378000500000012) (0.00990103149999999) (0.010255732000000004) (0.010043927999999994) (0.010076279000000007) (0.010188207500000004) (0.009983753500000012) (0.010127203000000001) (0.010007816999999988) (0.010331937999999999) (0.01018445300000001) (0.010086005499999995) (0.010096373500000005) (0.010133019000000007) (0.010189567499999996) (0.010238651500000001) (0.010231180499999992) (0.010086871500000011) (0.010074862000000018) (0.010025485999999986) (0.010087042500000018) (0.010054134500000006) (0.010003720499999993) (0.010173620999999994) (0.010073962500000005) (0.010334157999999996) (0.010132824999999998) (0.01032769750000001) (0.010226754500000004) (0.010304586500000004) (0.010308823500000008) (0.010408750000000008) (0.010220315499999993) (0.010448115499999994) (0.010513327500000003) (0.01031720450000001) (0.010541230999999998) (0.010506292) (0.010462048000000002) (0.010596482500000004) (0.010458583499999993) (0.010522661000000003) (0.010455260000000008) (0.010405575) (0.0105882625) (0.01064490350000001) (0.010550715500000002) (0.010501628499999985) (0.0105329215) (0.010515194999999991) (0.010418094500000002) (0.0104290685) (0.010515441999999986) (0.0103981145) (0.010371711999999991) (0.010430839000000011) (0.010690217000000002) (0.010574821999999984) (0.010596537000000003) (0.010858163000000004) (0.010533412500000006) (0.010697850499999995) (0.010510850499999988) (0.01050593150000001) (0.010612056000000009) (0.010251548) (0.010112488999999988) (0.010051041999999996) (0.010066084000000003) (0.010040024499999994) (0.010091325999999998) (0.010455980000000004) (0.01009060399999999) (0.010274464499999997) (0.010212623000000018) (0.010349598000000002) (0.010382204499999992) (0.010269949000000014) (0.010183419999999999) (0.010183825499999993) (0.010217021500000006) (0.010162948500000005) (0.01010737199999999) (0.010137145) (0.010083545) (0.01026782100000001) (0.010045256500000002) (0.010070690500000007) (0.010104763500000002) (0.010378152500000015) (0.010482207999999993) (0.010350572000000016) (0.010234237000000007) (0.010257603500000004) (0.010180318999999993) (0.010259559499999987) (0.010187356500000008) (0.010372090499999986) (0.010383703499999994) (0.010490099499999989) (0.010463375999999996) (0.010275806500000012) (0.010506422500000001) (0.010451871000000001) (0.01029968299999999) (0.01044292249999998) (0.010469576999999994) (0.010566917500000009) (0.010465845000000001) (0.010696223000000005) (0.010461253000000004) (0.010781925499999997) (0.010709214999999994) (0.010306938999999987) (0.010270799499999997) (0.010309911000000005) (0.010233777) (0.01042978750000001) (0.010477592499999994) (0.010460272999999992) (0.010420437500000004) (0.010553970499999996) (0.010664521499999996) (0.010595910500000014) (0.010658332500000006) (0.010856514499999997) (0.010484282999999997) (0.010585119500000004) (0.010457219500000003) (0.01024531649999999) (0.010187372000000014) (0.010011403999999988) (0.010163023499999993) (0.010183983500000007) (0.010095046499999996) (0.010268700499999991) (0.010237207499999998) (0.010274511) (0.011429732999999997) (0.010239539500000006) (0.010233210499999992) (0.010376622500000002) (0.010210879999999992) (0.010565421500000005) (0.010308104999999984) (0.0099995955) (0.010181300500000004) (0.010082740499999993) (0.010088750000000007) (0.010219977500000005) (0.010261376000000003) (0.01014019549999999) (0.010177421500000006) (0.010469335499999982) (0.010434617999999993) (0.010425668999999999) (0.010247113500000016) (0.010302957000000001) (0.010247245000000002) (0.010118859000000008) (0.010232527500000005) (0.010569540000000002) (0.010563717) (0.01047663) (0.010470420499999994) (0.010393915000000017) (0.010539363499999996) (0.010369258000000006) (0.01033034549999999) (0.010716201000000009) (0.010583439499999986) (0.010608630999999993) (0.010630277999999993) (0.010712152500000002) (0.010461094500000004) (0.010622937499999999) (0.010503814) (0.010380859499999992) (0.0104736) (0.010424234500000004) (0.010465844500000002) (0.010532819000000013) (0.010361489000000015) (0.010332000000000008) (0.010277060000000005) (0.010658587999999997) (0.010728910500000008) (0.011227413000000006) (0.010560462999999992) (0.010660603000000005) (0.01077823850000001) (0.010664292499999992) (0.010659941999999992) (0.010113342499999997) (0.010149614000000001) (0.010061853499999995) (0.01013269) (0.010198129) (0.0102363585) (0.010193074999999996) (0.010145018000000006) (0.010021368000000017) (0.010231656500000005) (0.010084199000000002) (0.0102343825) (0.010029113499999992) (0.010061206000000003) (0.010163120999999997) (0.0101640135) (0.010040782500000012) (0.010098250499999989) (0.01018685300000001) (0.010103309500000004) (0.009992498500000002) (0.010006188999999999) (0.009928630999999993) (0.010027776500000002) (0.010164992500000011) (0.0101822825) (0.010051053500000004) (0.010284389500000005) (0.010166856000000002) (0.010171633499999999) (0.010082226) (0.010174616499999997) (0.010325866500000003) (0.010389796499999993) (0.010513521999999997) (0.010486759999999998) (0.010320519500000014) (0.01048802800000001) (0.01030230750000001) (0.010435021499999989) (0.010511955500000003) (0.010400268500000004) (0.010664439999999997) (0.010459504499999994) (0.010309255000000003) (0.010764192500000005) (0.010281136499999996) (0.010448666499999995) (0.010375157999999995) (0.010507595499999994) (0.010447895499999998) (0.010514056000000008) (0.010501052499999997) (0.010753981499999996) (0.010499023499999996) (0.010330591500000014) (0.010392235) (0.010410315000000003) (0.010447735499999986) (0.010712463500000005) (0.010604188) (0.01042178399999999) (0.010434182999999986) (0.010494732500000006) (0.010119842000000004) (0.009947555499999997) (0.010197575000000014) (0.010124063500000002) (0.010086848999999995) (0.010314074999999992) (0.01039485200000001) (0.010322683999999999) (0.010354483500000011) (0.010181891999999998) (0.010288427499999989) (0.010098356500000003) (0.010193778) (0.01025155550000001) (0.010230804999999996) (0.010102562500000009) (0.010064663000000001) (0.009996613000000001) (0.01007709000000001) (0.01008215500000001) (0.010010309500000009) (0.010106466500000008) (0.010276882000000001) (0.010293607499999996) (0.0100916125) (0.010270838500000004) (0.010092076000000005) (0.010387917999999996) (0.010259609000000003) (0.010339673000000008) (0.010248003999999991) (0.010114712999999997) (0.010499808499999999) (0.010473111999999993) (0.010303775499999987) (0.010674255000000007) (0.0104765265) (0.010381632000000002) (0.010309962499999992) (0.010522134500000016) (0.010576904499999998) (0.011249363999999984) (0.010576172000000009) (0.010493690999999986) (0.010692101499999995) (0.010373288000000008) (0.010443051000000009) (0.01054658600000001) (0.010411229999999994) (0.010383159500000003) (0.010626480499999993) (0.010521419500000004) (0.010510823999999988) (0.01048622149999999) (0.010294333500000002) (0.01035153400000001) (0.010651705999999997) (0.01061043049999999) (0.010524245500000015) (0.01042290500000001) (0.010642105999999998) (0.010329141) (0.010398189500000002) (0.010479918500000018) (0.010068879000000003) (0.010156035999999993) (0.010429386500000012) (0.009975043499999989) (0.009921686499999999) (0.010081711999999993) (0.010073266499999997) (0.010105691) (0.010283822999999997) (0.010174688500000001) (0.01036140599999999) (0.010293567000000003) (0.010209132999999995) (0.010168223500000004) (0.010295635500000011) (0.010591298499999999) (0.009992749499999995) (0.010306215999999993) (0.009969765500000005) (0.010315469500000007) (0.010259597999999995) (0.010125619500000002) (0.010368731000000006) (0.010368491500000007) (0.010212549999999987) (0.010347259500000011) (0.010134940499999995) (0.009998601999999995) (0.010275083000000004) (0.010702327499999997) (0.010151095499999999) (0.010262809500000011) (0.010552816499999992) (0.010581902500000018) (0.010278942500000013) (0.010266063499999992) (0.010339516499999993) (0.010541274499999989) (0.010360872499999993) (0.010453476499999989) (0.010430697000000003) (0.010508330999999996) (0.0111083045) (0.010925077000000005) (0.010545346999999997) (0.011013306500000014) (0.010630557999999998) (0.010407388500000003) (0.01045513449999999) (0.010339201500000006) (0.010563557500000001) (0.01031823300000001) (0.010477788499999988) (0.01048297699999999) (0.010495818000000004) (0.010304576499999996) (0.010635626499999995) (0.0105718635) (0.010666505000000007) (0.010613876000000008) (0.01066847650000001) (0.010442974000000008) (0.0104690385) (0.010440182500000006) (0.010121399500000017) (0.012161150999999995) (0.010233141500000001) (0.010019296999999996) (0.010026344500000006) (0.010269552000000001) (0.010042198499999988) (0.01036981649999999) (0.010081232499999981) (0.010348164499999993) (0.010099379999999991) (0.010264937499999988) (0.01005781700000001) (0.010260442000000009) (0.012076194000000012) (0.01029281700000001) (0.010147053000000003) (0.010277648) (0.010115045500000003) (0.010427804999999998) (0.010129085499999996) (0.010209309499999986) (0.0102467465) (0.010180232999999997) (0.010283436000000007) (0.010190493500000009) (0.010149603499999993) (0.01051379500000002) (0.010098295000000021) (0.010251281000000001) (0.010322068500000003) (0.010326976000000002) (0.010365539500000007) (0.010421617500000008) (0.010339589499999996) (0.01066631550000001) (0.01053974249999999) (0.010376303500000003) (0.010699091000000008) (0.010419511999999992) (0.010791696999999989) (0.010728243499999998) (0.010520508000000012) (0.010526011000000002) (0.010597162499999993) (0.010529664500000008) (0.010559118499999992) (0.010494356499999996) (0.010415320500000005) (0.010457544999999999) (0.010483877500000002) (0.010450515499999993) (0.010573365000000015) (0.010379663499999997) (0.010668584500000008) (0.010411249499999997) (0.010467191499999987) (0.010676922999999991) (0.0104651345) (0.010709355000000018) (0.010651190500000005) (0.010657910999999992) (0.010690566999999984) (0.01051994199999999) (0.009990460499999992) (0.010129448500000013) (0.010180035500000004) (0.010200157000000001) (0.01012281000000001) (0.00998254400000001) (0.010106801499999984) (0.01007843) (0.010098943500000013) (0.010087933499999993) (0.010130498000000016) (0.010307798499999993) (0.010103739) (0.010016630000000012) (0.010207454000000005) (0.010267804000000005) (0.010286791000000003) (0.010080388500000023) (0.010089728999999992) (0.010329481500000015) (0.009963029499999998) (0.010062793) (0.010057177499999986) (0.010011750999999985) (0.01021464150000001) (0.009972721500000004) (0.010104379999999996) (0.010307613999999993) (0.010115561500000009) (0.010052530500000004) (0.0103361555) (0.010120226499999996) (0.010397200999999981) (0.010556608000000009) (0.010365410500000005) (0.010515210000000011) (0.010367380499999995) (0.010405036500000006) (0.010639425000000008) (0.010365971500000015) (0.010375381499999989) (0.010562967500000006) (0.010525629499999994) (0.010323461500000006) (0.010357685000000005) (0.010597211999999995) (0.010531067499999991) (0.010845739499999993) (0.0103811355) (0.0103909145) (0.010337574500000002) (0.010490696999999993) (0.010695550999999998) (0.01061735150000001) (0.010392466000000003) (0.010571481500000007) (0.01046337600000001) (0.010494999000000005) (0.010458552499999996) (0.010562185500000015) (0.010360607500000008) (0.010538821000000004) (0.010326947500000003) (0.010406693500000022) (0.010521772499999998) (0.010071239499999995) (0.010009043999999995) (0.010328694) (0.010108738500000006) (0.010000488000000016) (0.010205359999999997) (0.010190756999999995) (0.010253900999999996) (0.010216464000000008) (0.010320689999999993) (0.010199002499999998) (0.010415153499999982) (0.01018020700000001) (0.010111552999999995) (0.010297379999999995) (0.010098461000000003) (0.010117136999999998) (0.009909819999999986) (0.010271853999999997) (0.010145758000000005) (0.010333280499999986) (0.010034831000000008) (0.010225520000000002) (0.010033125500000004) (0.010380028) (0.010241071000000004) (0.010109754000000012) (0.010467354500000012) (0.010280592500000005) (0.010463504999999998) (0.010308380500000006) (0.010575742999999999) (0.010436039499999994) (0.010808524000000014) (0.010457175499999999) (0.010445255000000014) (0.010286484499999998) (0.010492947500000002) (0.010351657) (0.010399401500000002) (0.010562596999999993) (0.010653681499999998) (0.01096662100000001) (0.010531802499999993) (0.0104217645) (0.010560940500000005) (0.01083189000000001) (0.010603881999999995) (0.010566702999999997) (0.010387757000000011) (0.01039337500000001) (0.010505854499999995) (0.010252252500000003) (0.010424313000000004) (0.010248973500000008) (0.010517865499999987) (0.010356282500000008) (0.010620127000000007) (0.010391844999999997) (0.01044236400000001) (0.010641368499999998) (0.010506498000000003) (0.010504510999999994) (0.010171967000000004) (0.010044806999999989) (0.010087229000000003) (0.010564873000000002) (0.010235635500000007) (0.009984324500000002) (0.009951632999999988) (0.0101079065) (0.010118114999999997) (0.010065766000000004) (0.010371659000000005) (0.010089224999999993) (0.01028567200000001) (0.010118959999999996) (0.010133389499999992) (0.010179452500000005) (0.010096285999999996) (0.010010429500000001) (0.009883877999999999) (0.010076270500000012) (0.010251494500000013) (0.009995740499999989) (0.010100739999999997) (0.00993477999999999) (0.010276127499999996) (0.010334619500000003) (0.010027358) (0.010756451000000014) (0.010201329999999995) (0.00997662249999999) (0.010233330999999998) (0.009963086499999996) (0.010320248500000004) (0.010375925999999994) (0.010355450000000002) (0.010422804000000008) (0.010450552499999988) (0.010236370999999994) (0.0104734945) (0.010670748000000008) (0.010669955999999994) (0.010429355000000001) (0.010509618000000012) (0.010623652499999983) (0.010356755499999995) (0.010454303500000012) (0.010413538500000014) (0.010462127500000001) (0.010231660500000003) (0.010454974000000006) (0.01019440599999999) (0.010499571999999985) (0.010321447499999997) (0.010380064000000008) (0.010511010000000001) (0.010335543499999988) (0.010617744999999998) (0.010564340499999991) (0.010740025500000014) (0.010389361) (0.010462145999999992) (0.010517298000000008) (0.010355461999999996) (0.010627752500000004) (0.010057945499999998) (0.010295644000000007) (0.009976179500000015) (0.010194076999999996) (0.009948500500000013) (0.010210167499999992) (0.010059679500000002) (0.010029826999999991) (0.0106321905) (0.0106851045) (0.010160281500000007) (0.010540868499999995) (0.010138944999999996) (0.010184560500000009) (0.010451863000000006) (0.010173590999999996) (0.01012755500000001) (0.010177724499999999) (0.01017135050000001) (0.010044678500000001) (0.010051774000000013) (0.010224892999999999) (0.01005060150000002) (0.010056019) (0.010411736500000005) (0.010201079000000016) (0.01040527899999999) (0.010410307999999993) (0.01046142400000001) (0.010492552000000002) (0.010281120500000004) (0.01025942199999999) (0.010632447000000003) (0.010507267499999987) (0.010460079999999997) (0.010437184500000002) (0.010462964500000005) (0.010418481999999993) (0.010432927999999994) (0.010234142000000002) (0.010420826500000008) (0.010517196500000006) (0.010444509000000005) (0.010819814499999997) (0.010742362999999991) (0.010706008999999989) (0.010618350999999998) (0.010564330999999996) (0.010504215500000011) (0.010527181499999996) (0.010374997499999997) (0.010590422499999988) (0.010536832999999995) (0.010293108999999995) (0.010378717499999995) (0.01048486600000001) (0.010269897) (0.010611549499999998) (0.010491085999999997) (0.010536427999999987) (0.01074253700000001) (0.010485150999999998) (0.01069124049999999) (0.010520701499999993) (0.010031895500000013) (0.01020262949999999) (0.010216812999999991) (0.009964682500000002) (0.010103908999999994) (0.009991772499999996) (0.010015964000000002) (0.01032179150000001) (0.010054564000000002) (0.010153833000000001) (0.010129125000000017) (0.010233745500000002) (0.010099377500000006) (0.010097682999999996) (0.010177212500000005) (0.010050669499999984) (0.01007523099999999) (0.009986786500000011) (0.00999430200000001) (0.010058782500000002) (0.010020084999999998) (0.010019306500000005) (0.009974181500000012) (0.010217641500000013) (0.010211658499999998) (0.010261202999999997) (0.009976503999999997) (0.010164370499999992) (0.01019049449999998) (0.010132122999999993) (0.009950957499999996) (0.010346994500000012) (0.010305184000000009) (0.010399675000000011) (0.010297173500000006) (0.010335008999999992) (0.010360861000000013) (0.010561025999999987) (0.010421057000000011) (0.010563309500000007) (0.010776459000000002) (0.010587171000000006) (0.010473965000000002) (0.010683475999999997) (0.010475316499999998) (0.01063006150000001) (0.010569616500000004) (0.010617704999999991) (0.010442145) (0.010378577) (0.01033199700000001) (0.010466232500000006) (0.01038559750000001) (0.010315496000000007) (0.010277869499999995) (0.010170646000000005) (0.010538551000000007) (0.010524968499999995) (0.0105025485) (0.010673777999999995) (0.010362333499999987) (0.010514992999999986) (0.010577144999999996) (0.010371462499999998) (0.010070726500000002) (0.009934744500000009) (0.010001101499999984) (0.010108499999999992) (0.01016734200000001) (0.010234579000000008) (0.010362510999999991) (0.010620847000000003) (0.010103601500000017) (0.010366410000000006) (0.010279604999999997) (0.010365934999999993) (0.010114987500000006) (0.010429503999999992) (0.010130144000000008) (0.010254934999999993) (0.009940868499999991) (0.010265222000000004) (0.010140009000000005) (0.009977621000000006) (0.010219449000000005) (0.010053363999999995) (0.010213253999999991) (0.010150708999999994) (0.01019904399999999) (0.010329923000000005) (0.010181777000000003) (0.010294611999999995) (0.010173981499999998) (0.010259488499999997) (0.010103426499999998) (0.010091254999999993) (0.010318714000000007) (0.010756684500000002) (0.010399338499999994) (0.010462669500000008) (0.010446925000000024) (0.010276185000000007) (0.010448460500000006) (0.010366257500000017) (0.010823723500000021) (0.010545127499999987) (0.010360419500000023) (0.010481055999999989) (0.010429703499999984) (0.010507529500000001) (0.010652889000000013) (0.0103525275) (0.010911160500000003) (0.01025561400000001) (0.010375307000000014) (0.010351449499999998) (0.010314153000000006) (0.010402770500000005) (0.010368992499999993) (0.010271106500000016) (0.010606115000000013) (0.010465579500000002) (0.010507932000000011) (0.010424528500000002) (0.010512136000000005) (0.010363833000000003) (0.010579436499999997) (0.010376552499999997) (0.01018267199999999) (0.00999560649999999) (0.010019086499999996) (0.009995702499999995) (0.010138145000000001) (0.010162196999999998) (0.010114940500000003) (0.010130243499999997) (0.010250712999999995) (0.010480587999999999) (0.010287552499999991) (0.010264282000000013) (0.010165099999999996) (0.0101239875) (0.010272951499999988) (0.010142581999999997) (0.010322931500000007) (0.010219849999999989) (0.0102105755) (0.010022538000000011) (0.010183143000000006) (0.010117358999999992) (0.010084681000000012) (0.010059099000000002) (0.010289616000000015) (0.010168416999999999) (0.010225609999999996) (0.010207658999999994) (0.010297590999999995) (0.010191896000000006) (0.010176326999999999) (0.01036645650000001) (0.010510249) (0.010433746999999993) (0.010435385999999991) (0.01027488) (0.010428041500000013) (0.010310090499999994) (0.010479612) (0.010263617499999989) (0.010407638999999996) (0.010435315) (0.010489431000000007) (0.010616808499999991) (0.01073225350000001) (0.010591814500000005) (0.010539704999999996) (0.010415077000000009) (0.010707665499999991) (0.010230653499999992) (0.010183478999999981) (0.010370314000000005) (0.010695517500000001) (0.010329572499999995) (0.010524994499999996) (0.010395452000000013) (0.01113526849999999) (0.010377738500000011) (0.0105642195) (0.010441873500000004) (0.010648636000000003) (0.010474902499999994) (0.0105040255) (0.010545080499999984) (0.010073996000000002) (0.010151835999999997) (0.01013760250000001) (0.010161004500000001) (0.010050312500000005) (0.010118197999999995) (0.010210636999999995) (0.010069134999999993) (0.010232056999999989) (0.010250102499999997) (0.010025934) (0.010273115) (0.010113115000000006) (0.010126046999999999) (0.0101996055) (0.010118380999999996) (0.010199054999999999) (0.010002942) (0.010149015999999997) (0.010032179000000016) (0.009991067999999992) (0.010435617999999994) (0.010139663000000007) (0.010096118999999987) (0.010365641500000009) (0.010036759499999992) (0.010167866500000011) (0.010170364000000001) (0.010140523999999998) (0.010236051999999995) (0.010100104000000013) (0.010303287499999994) (0.010342595499999996) (0.010430629999999996) (0.010463764) (0.010609372500000006) (0.010329136500000002) (0.010739495500000001) (0.010405868999999998) (0.010461530499999996) (0.010536767000000002) (0.010517643999999993) (0.010393110999999997) (0.010404869499999997) (0.010319133000000008) (0.010604661500000001) (0.010485619000000015) (0.0104443345) (0.010287099000000008) (0.010448895999999985) (0.0104558275) (0.010447881500000006) (0.010510385000000011) (0.010456818500000006) (0.010352108999999984) (0.010493777999999981) (0.010727426499999998) (0.010480658000000004) (0.010582962000000001) (0.010589494000000005) (0.010459319500000008) (0.010492123000000006) (0.010504175500000004) (0.011081417499999996) (0.01007168500000001) (0.010024575000000008) (0.009960558500000008) (0.010129743499999982) (0.010287491999999995) (0.0101777755) (0.010193492499999998) (0.01001618800000001) (0.010244494499999993) (0.010197194499999993) (0.01017071800000001) (0.010593179499999994) (0.010312945500000018) (0.009987679000000013) (0.010396540499999996) (0.010104518999999992) (0.010097321000000006) (0.010010443500000007) (0.01009693099999999) (0.010009429999999986) (0.010191984500000015) (0.01004480449999999) (0.010545962000000006) (0.010088419999999987) (0.010148690500000002) (0.010139180499999997) (0.010384038499999998) (0.010006591500000009) (0.010107985) (0.0102500685) (0.010131340000000003) (0.010263173499999986) (0.010459373000000008) (0.010383906499999998) (0.010320774500000005) (0.010312357000000008) (0.010357177500000009) (0.01036790750000001) (0.010570634500000009) (0.010646068499999994) (0.010591761500000005) (0.010324092000000007) (0.010501604000000012) (0.0106601375) (0.010501040499999989) (0.010412296000000001) (0.0105284405) (0.010580474500000006) (0.010395760500000004) (0.010363818499999997) (0.010354290500000002) (0.010336795499999996) (0.010463713499999985) (0.010642194499999993) (0.010482963500000012) (0.01040061049999999) (0.010527596999999986) (0.010708454999999992) (0.01052803649999999) (0.010561387000000005) (0.01063990649999999) (0.010489776500000006) (0.010637022499999996) (0.010629013500000006) (0.009954064999999998) (0.010162365000000007) (0.010192943499999996) (0.010200700999999993) (0.010179158999999993) (0.010251137500000007) (0.010070487500000017) (0.010191834999999996) (0.010190819000000004) (0.010280100500000014) (0.01015772899999999) (0.010128428000000009) (0.010040474499999993) (0.010262680999999996) (0.010204252999999996) (0.010161604000000005) (0.010078012500000011) (0.010147477500000002) (0.010296617999999993) (0.010190848499999988) (0.010067492499999997) (0.0100433875) (0.010135508500000015) (0.010105938500000008) (0.010097762999999996) (0.010472824000000006) (0.010738027999999997) (0.010532121500000005) (0.010342704999999994) (0.010188007000000013) (0.010116305499999992) (0.010388685499999994) (0.010389908000000003) (0.010624271000000005) (0.010578995499999994) (0.010679058500000005) (0.010421667999999995) (0.01048320300000001) (0.010293590500000005) (0.010421195500000008) (0.010594087500000002) (0.010468443000000008) (0.010502781500000002) (0.010694281000000014) (0.010487318500000009) (0.0107285295) (0.010551276999999998) (0.010504432499999994) (0.010414998000000009) (0.010237023499999998) (0.0103253185) (0.010344466999999996) (0.010539131999999993) (0.01043616) (0.01048573350000001) (0.010351831499999992) (0.010482650499999996) (0.010768716499999997) (0.010742163499999999) (0.0107905435) (0.010730038499999997) (0.010516847999999995) (0.010603531000000013) (0.01069851899999999) (0.010072096499999988) (0.010304294000000006) (0.010058317000000011) (0.009996380499999999) (0.010016445499999999) (0.010023529000000003) (0.009989701000000004) (0.010407109999999997) (0.010187778499999994) (0.010281521000000002) (0.010487697000000018) (0.010197334999999988) (0.010361638000000006) (0.010227254500000005) (0.010166937500000015) (0.010047963999999993) (0.010001255) (0.010070334000000014) (0.010021334499999993) (0.010322376500000008) (0.010066184000000006) (0.010233589000000001) (0.010079997000000007) (0.010097171499999988) (0.010078614999999999) (0.010262802500000001) (0.010307998000000013) (0.010450769999999998) (0.010364435500000005) (0.010193529499999993) (0.010192265500000006) (0.010605724999999996) (0.010498940999999984) (0.010466232999999991) (0.010462834000000004) (0.010400671) (0.010465504499999986) (0.01060705399999999) (0.010512026999999993) (0.010285114500000012) (0.010359575499999982) (0.010380454000000011) (0.010489999500000013) (0.010425963499999996) (0.010642282000000003) (0.0107201985) (0.010964231500000005) (0.010501676000000001) (0.010522320500000001) (0.010378541000000005) (0.010370531999999988) (0.010352335500000004) (0.010470422500000007) (0.010587148500000004) (0.0102866925) (0.010312057) (0.010539276999999986) (0.010740340499999987) (0.010436439500000005) (0.01067831100000001) (0.010594955999999989) (0.010685028499999999) (0.010801818500000004) (0.010787110500000002) (0.010011032000000003) (0.010089287500000016) (0.01006389299999999) (0.010271002500000001) (0.010569845500000008) (0.010103927499999998) (0.010295479999999996) (0.010110219500000003) (0.01040292050000001) (0.0103067815) (0.010258665) (0.010135386999999996) (0.010296459000000008) (0.010201349499999998) (0.010100069500000003) (0.010623751) (0.010215346) (0.01010307499999999) (0.010250073999999984) (0.010220742000000005) (0.010187781499999993) (0.010025065) (0.010175037999999997) (0.010291880499999989) (0.010508681499999992) (0.010394549500000003) (0.010232611500000002) (0.010521494000000006) (0.010290388499999997) (0.010460757000000001) (0.010258998499999991) (0.010228491000000006) (0.010394095500000006) (0.010342757500000008) (0.010608281999999997) (0.010597770000000006) (0.010524375000000016) (0.010625644500000003) (0.010461069000000003) (0.010352453999999997) (0.010481794000000003) (0.010560987499999994) (0.010393923000000013) (0.010475774000000007) (0.010822959499999993) (0.010485458500000003) (0.010425509) (0.011045496500000002) (0.010385469999999994) (0.010309405999999993) (0.010415430500000003) (0.0103325175) (0.010566517500000011) (0.010398900999999988) (0.010366149499999991) (0.010543009999999992) (0.010837712499999999) (0.010721171500000001) (0.010696295500000022) (0.010840395500000016) (0.010569477999999993) (0.010814179499999993) (0.010345150499999997) (0.01060805849999999) (0.009938800999999997) (0.010168044000000001) (0.00990409099999999) (0.010139967000000014) (0.010212642500000008) (0.009987508000000006) (0.01011927800000001) (0.010116767499999985) (0.010040800000000003) (0.010046381499999993) (0.010113773500000006) (0.010214451499999999) (0.010091806999999994) (0.010057993500000001) (0.01004429350000001) (0.0100463935) (0.010144650500000005) (0.010193474499999994) (0.009985851000000004) (0.010133936999999996) (0.010067932999999987) (0.010011087000000002) (0.010250519999999999) (0.010207039000000001) (0.010060777000000007) (0.010159377000000011) (0.010049508499999998) (0.010344414499999996) (0.0100549625) (0.010225344999999997) (0.010263963000000001) (0.010126839999999998) (0.010419137000000009) (0.010270622499999993) (0.010325080499999986) (0.010369825000000013) (0.010394491999999991) (0.01047865399999999) (0.010261338000000009) (0.010433542500000004) (0.01043135299999999) (0.010481231000000008) (0.010414163500000004) (0.010421683000000001) (0.010417054000000009) (0.010430365499999997) (0.010387338500000023) (0.010501573) (0.010605256999999993) (0.010543760499999999) (0.010428755499999998) (0.010492745499999998) (0.01031766299999999) (0.010317054500000006) (0.010339038999999994) (0.01025358500000001) (0.010774869999999992) (0.010628909000000006) (0.010584703500000014) (0.010863965500000003) (0.010715166999999998) (0.01042043500000002) (0.010669262000000013) (0.01031375050000001) (0.010303485999999987) (0.010257854999999996) (0.010040228000000012) (0.010160504500000014) (0.010035400500000013) (0.010181463999999987) (0.010072870499999997) (0.01010373199999999) (0.010235924999999993) (0.010223231499999999) (0.010332770500000005) (0.010287110999999988) (0.010139977000000008) (0.010221872999999992) (0.010024046499999995) (0.010020877999999997) (0.009905227499999988) (0.010058252000000004) (0.0099379785) (0.009953414999999993) (0.010084971499999998) (0.01017736150000001) (0.010069006500000005) (0.010206316999999993) (0.010463562999999995) (0.01010963550000002) (0.010097940000000014) (0.010335069500000002) (0.010349296000000008) (0.010181248500000004) (0.010144706000000003) (0.009974843000000011) (0.010429131000000008) (0.010447867000000013) (0.010455449500000005) (0.010379295499999996) (0.010196658499999983) (0.010373902500000004) (0.010359205499999996) (0.010290590500000016) (0.010598010500000005) (0.0107193025) (0.010408888500000005) (0.010356068999999996) (0.010507792999999988) (0.010464182000000016) (0.010584613000000007) (0.010441901999999989) (0.010498399500000005) (0.010469377999999988) (0.010426573500000008) (0.010460517999999988) (0.010397219499999999) (0.010437065500000009) (0.010376838000000013) (0.010657233000000002) (0.010461368500000012) (0.010359106499999993) (0.01065636049999999) (0.010515789499999997) (0.01064597199999999) (0.010741042500000006) (0.010656742499999997) (0.010577229999999993) (0.010357712500000005) (0.010128882499999992) (0.010142514500000005) (0.010138434000000002) (0.010036640500000013) (0.009925702000000008) (0.010146487999999995) (0.010200122500000006) (0.010144258500000003) (0.010209937500000002) (0.010166922000000009) (0.01019478800000001) (0.01033163899999999) (0.010152346499999992) (0.010333152499999998) (0.01004809999999999) (0.010319483000000004) (0.010103409999999993) (0.010041687000000007) (0.010095254999999997) (0.010071018000000001) (0.010146634999999987) (0.010216265500000016) (0.010142736500000013) (0.010301162500000002) (0.010144592000000008) (0.010483503499999991) (0.010060774499999994) (0.010239785500000001) (0.010645905999999997) (0.009988717999999994) (0.010357187500000004) (0.010300532500000015) (0.010297099500000018) (0.010488449499999997) (0.010327436500000009) (0.010491429499999996) (0.010475113000000008) (0.010469007999999988) (0.01055423450000001) (0.010680575000000012) (0.0108291435) (0.010690250499999984) (0.010491066500000007) (0.010456817000000007) (0.01064662949999999) (0.010520007500000012) (0.010586513500000005) (0.010507943500000005) (0.010307523499999985) (0.010379475000000013) (0.010420615499999994) (0.010404451499999995) (0.010632511000000011) (0.010479541500000009) (0.010321656499999984) (0.010679485999999988) (0.010643099499999989) (0.010438832999999995) (0.011043682499999985) (0.010428599999999996) (0.010509515000000011) (0.01051916700000001) (0.010727970999999989) (0.010123649500000012) (0.009982234500000006) (0.010288851500000001) (0.010183172000000004) (0.010022468500000006) (0.010291634000000008) (0.010099639499999993) (0.010180585500000006) (0.010153825499999991) (0.010156980499999996) (0.01034676000000001) (0.010180094) (0.010196234499999998) (0.010565303999999998) (0.010179848000000005) (0.010088159500000013) (0.01010435649999998) (0.010082769999999991) (0.010381488499999994) (0.010436165000000011) (0.010019693999999996) (0.010161752999999996) (0.010003797000000009) (0.010318395499999994) (0.010194033500000005) (0.01046050150000001) (0.010463469499999989) (0.010277586499999991) (0.010042980500000007) (0.01027148650000001) (0.010123998000000009) (0.010411776999999983) (0.010591652000000007) (0.010514754500000001) (0.010431584499999993) (0.010462592000000007) (0.01041270000000001) (0.010508335499999993) (0.010384105500000004) (0.010459906500000005) (0.010361244500000005) (0.010531801499999993) (0.010589293) (0.010559839500000015) (0.010510865499999994) (0.010427733499999994) (0.010583939500000014) (0.010759310500000008) (0.010364958500000007) (0.010286957000000013) (0.010747721500000015) (0.0104945595) (0.010648090499999985) (0.010665067) (0.010491296499999997) (0.010426195999999999) (0.010558126499999987) (0.01061584900000001) (0.010530993500000002) (0.010487974499999997) (0.010515769000000008) (0.010720555999999992) (0.010478832999999993) (0.010750983499999991) (0.010330634499999991) (0.010078424500000002) (0.010057601) (0.010267994000000003) (0.010089058999999997) (0.009908898) (0.01021180549999999) (0.009997132500000006) (0.010401792500000007) (0.010154998999999998) (0.010028992) (0.0101073515) (0.010282409500000006) (0.010322843500000012) (0.010128226000000004) (0.010020358500000007) (0.010053637000000004) (0.010227818999999999) (0.0102533405) (0.010100387500000002) (0.010069976499999994) (0.010014108499999994) (0.010066127000000008) (0.010053836499999996) (0.010554678500000012) (0.010296603000000001) (0.0102386545) (0.010064457500000012) (0.010285214999999986) (0.010273703500000009) (0.010191245000000002) (0.010104999000000003) (0.010302577499999993) (0.010365904500000009) (0.010227840999999988) (0.010215517499999993) (0.010454088) (0.010405256000000002) (0.010241606000000014) (0.010439650000000009) (0.01056791700000001) (0.01041652450000001) (0.010262380500000001) (0.010406921500000013) (0.010428967499999997) (0.010449276000000007) (0.010458671000000003) (0.010348526499999997) (0.010405685000000012) (0.010500100999999998) (0.010505828500000008) (0.010302282999999995) (0.010365031499999997) (0.010334153999999998) (0.010485778000000001) (0.010770347999999999) (0.010456830500000014) (0.010519434000000008) (0.010297955499999997) (0.010413381499999999) (0.010655871499999997) (0.010520703000000006) (0.010557568000000003) (0.010456036000000016) (0.010217172499999996) (0.010110346000000006) (0.009996368500000005) (0.010064571499999994) (0.010081423999999992) (0.010295106999999998) (0.010109209500000008) (0.009977021500000016) (0.010073480499999996) (0.010135571499999996) (0.010230089999999997) (0.010454508500000015) (0.01035721349999999) (0.010067247000000001) (0.010219953000000004) (0.01017749749999998) (0.010064051500000018) (0.010025762500000007) (0.010184663999999996) (0.010205781499999997) (0.010057373499999994) (0.009946009000000006) (0.009994851499999999) (0.010026324000000003) (0.010302021500000008) (0.010074884499999992) (0.010293235999999997) (0.010201377999999997) (0.01051877200000001) (0.010348280500000015) (0.010218692000000001) (0.010329027500000004) (0.010308323999999994) (0.010362824500000006) (0.010353384000000007) (0.010254775500000007) (0.010693398499999993) (0.010512585000000005) (0.010255603499999988) (0.010491621999999992) (0.010344828500000014) (0.010711170499999992) (0.010525992499999998) (0.010498184500000007) (0.010746247) (0.010646806499999995) (0.010797911500000007) (0.010416447999999995) (0.010255770499999997) (0.01060006999999999) (0.01040133800000001) (0.010401167500000003) (0.011800558000000003) (0.010461350500000008) (0.010491984499999996) (0.010334768000000008) (0.010672507999999983) (0.010551815000000006) (0.010714957499999997) (0.010375811000000013) (0.010598745999999992) (0.0106772495) (0.010589385500000006) (0.0106223015) (0.010101264999999998) (0.010260866500000007) (0.010094832499999998) (0.010430338000000011) (0.010078048500000006) (0.010061073000000004) (0.009850333999999988) (0.010193925500000006) (0.010107187500000003) (0.010316515000000012) (0.010252590000000006) (0.010031448999999998) (0.010053796500000003) (0.0101972335) (0.010125416999999998) (0.010119181500000005) (0.01023294100000001) (0.010057203499999987) (0.010387004000000005) (0.010321623000000002) (0.010023145499999997) (0.010050861499999994) (0.010113913000000002) (0.010028196500000003) (0.010309210999999999) (0.010206679999999996) (0.010326345) (0.010080067999999998) (0.010241153000000003) (0.01033556799999999) (0.01047920649999999) (0.010091877999999999) (0.010552522999999994) (0.01050643200000001) (0.010430828500000003) (0.010346430000000018) (0.010329004000000003) (0.010288747) (0.010329043499999996) (0.01029846650000002) (0.010421293499999998) (0.010489179999999987) (0.010587435500000006) (0.010681204500000013) (0.010469054500000005) (0.010488945999999999) (0.010491814999999988) (0.010420916500000002) (0.010512171000000015) (0.010375753499999987) (0.010295445500000014) (0.010360805000000015) (0.010355709000000005) (0.010284877999999997) (0.010455944000000023) (0.010651429500000018) (0.010640941000000001) (0.010502852000000007) (0.010371755999999982) (0.010417540999999989) (0.010728227499999993) (0.010566210500000006) (0.010497541000000013) (0.010761492499999997) (0.01019758950000002) (0.009939432500000012) (0.010091570499999994) (0.010188397500000015) (0.01008444700000001) (0.01002523800000002) (0.010053326000000001) (0.010169049999999999) (0.010057164000000007) (0.010143173499999991) (0.010314092999999996) (0.01034252899999999) (0.010236627500000012) (0.010269222000000008) (0.010209864000000013) (0.01024265499999999) (0.010029952499999994) (0.010528996999999998) (0.010276869499999994) (0.010171864000000003) (0.010125147499999987) (0.0100992855) (0.010262091000000001) (0.010485335499999998) (0.010489402999999994) (0.010204697499999998) (0.010159656500000003) (0.010321342499999997) (0.010285675999999994) (0.010357050999999992) (0.010165293499999992) (0.010226949999999985) (0.01036882800000001) (0.010857902500000002) (0.0105163385) (0.010501261499999998) (0.010332236499999994) (0.010388403500000004) (0.010458394999999995) (0.010264308500000013) (0.010407787500000001) (0.010617260500000003) (0.010682102000000013) (0.010525851499999989) (0.010640489000000003) (0.010444232999999997) (0.010575126500000018) (0.010469719999999988) (0.010520959999999996) (0.010350796499999981) (0.010336407000000006) (0.010449561999999996) (0.010621117499999999) (0.010556769000000008) (0.010488405000000006) (0.010469139500000016) (0.010640824000000007) (0.01072127349999999) (0.010604351500000012) (0.010530181999999999) (0.010533560000000011) (0.01061910449999999) (0.010355724999999982) (0.010532574500000003) (0.01008951050000001) (0.010215779000000008) (0.010209560499999992) (0.010217096500000009) (0.010063690499999986) (0.010375956499999991) (0.010293517500000002) (0.009956246500000002) (0.010117901499999998) (0.010340998500000004) (0.010096564000000002) (0.01016189549999999) (0.010303349500000017) (0.010358795500000004) (0.010209539500000003) (0.010329419500000006) (0.00993990900000001) (0.010101202500000003) (0.010204675499999996) (0.010015734999999998) (0.009911423499999988) (0.010094159500000019) (0.010209078999999996) (0.010083993000000013) (0.010295881000000007) (0.010442092) (0.010408737499999987) (0.010376695500000005) (0.010296691999999996) (0.009965269499999999) (0.010264242500000006) (0.010059738500000012) (0.010393685) (0.010626435000000004) (0.010343056000000003) (0.010354640499999998) (0.010285920500000018) (0.010287746) (0.010257114500000011) (0.010227901999999997) (0.010508584500000001) (0.010428434500000014) (0.010795496500000015) (0.010560889000000004) (0.010458525999999996) (0.010398474000000005) (0.010575164500000012) (0.010463261000000001) (0.010233258000000009) (0.010627750000000005) (0.010330843499999992) (0.010391243000000008) (0.010771365000000005) (0.010499859) (0.010298665999999984) (0.010267191500000009) (0.010632342500000017) (0.01076363700000002) (0.011096815999999995) (0.010629234999999987) (0.010729001499999988) (0.010549478499999987) (0.010553493999999997) (0.010456388000000011) (0.010291656999999996) (0.010099947500000012) (0.0102701075) (0.009987878499999991) (0.010315541999999997) (0.010091413499999993) (0.010023919500000006) (0.010064387499999994) (0.010043535500000006) (0.010398304999999997) (0.010071048999999985) (0.010108574500000009) (0.010496828500000013) (0.010124452000000006) (0.010171119000000006) (0.010277416499999983) (0.010048780999999993) (0.010068971499999996) (0.010056091500000017) (0.010333019499999999) (0.010406205000000002) (0.010010296000000002) (0.009996514999999997) (0.010155585499999994) (0.010281649500000004) (0.010256065500000008) (0.01043040399999999) (0.010088863000000003) (0.010237774500000005) (0.010121239000000004) (0.010345404999999988) (0.010093397500000018) (0.010631942999999991) (0.0105517215) (0.010666597) (0.010355111) (0.01065202400000001) (0.010346176000000012) (0.01052040700000001) (0.010475115499999993) (0.010815564000000014) (0.010288660499999991) (0.010569762499999996) (0.010375561500000005) (0.010491377499999996) (0.010375346999999993) (0.010470489) (0.010658469500000003) (0.010361469499999998) (0.010348677) (0.010483525000000007) (0.010290033500000004) (0.010453260000000006) (0.01034785349999999) (0.010403397999999994) (0.010272168499999998) (0.010575399499999999) (0.010666306) (0.010545533999999995) (0.010529549) (0.010732780999999983) (0.010597731499999985) (0.010606501500000004) (0.010439426000000002) (0.009975762999999999) (0.010043644000000004) (0.010083953000000007) (0.010137885499999999) (0.010030368000000012) (0.010310149500000004) (0.010065055000000003) (0.01010565799999999) (0.010045688499999997) (0.010227714499999999) (0.010088870500000013) (0.010128635999999996) (0.010183887500000002) (0.010261338499999995) (0.010280571500000002) (0.010127368000000012) (0.010117225999999993) (0.00996409899999999) (0.010062830999999994) (0.0101250175) (0.009996924000000004) (0.010066456500000001) (0.010076532499999999) (0.01006373649999999) (0.010166730499999985) (0.01034115649999999) (0.010057586500000007) (0.01020226099999999) (0.0102294265) (0.010228802999999995) (0.010057712499999996) (0.010261015999999998) (0.010494695999999998) (0.010392812499999987) (0.010360608499999993) (0.010519523999999988) (0.01032711850000001) (0.010342404999999999) (0.010400388999999996) (0.010585367000000012) (0.010569936500000002) (0.010427169) (0.010387975500000007) (0.010541098499999998) (0.010646066999999995) (0.010491808000000005) (0.010536779499999996) (0.010603537499999996) (0.010266384000000003) (0.010546373000000012) (0.010532121500000019) (0.010371408999999998) (0.010344140999999987) (0.010497141500000001) (0.0106426025) (0.010416529499999994) (0.010591186000000002) (0.010651366499999995) (0.010438950500000002) (0.010597363499999998) (0.010648949000000005) (0.010679720000000004) (0.01039119949999999) (0.010711527499999998) (0.010096061000000003) (0.010029774000000005) (0.010338146000000006) (0.010406895000000013) (0.009979245999999997) (0.010155587499999993) (0.01003936300000001) (0.010156890499999988) (0.010184389000000002) (0.010040969499999997) (0.010339446000000002) (0.010431241000000008) (0.010322331000000004) (0.010082828000000002) (0.010240379499999994) (0.010018548500000016) (0.010039677999999996) (0.010195189999999993) (0.010031309499999988) (0.00995960400000001) (0.010186471500000002) (0.010087569500000004) (0.010197944500000014) (0.010204775999999999) (0.010198222000000007) (0.010317551999999994) (0.010145557999999999) (0.01015012400000001) (0.01033121049999998) (0.010240342) (0.010223598) (0.010419946) (0.010448031499999996) (0.0103874885) (0.010485923499999994) (0.010401848000000005) (0.010599886500000003) (0.01041064550000001) (0.010361306) (0.010495935999999997) (0.010561780000000007) (0.0103867755) (0.010651051000000009) (0.010529762999999998) (0.010353276999999994) (0.010743396500000016) (0.010469095000000012) (0.01033581950000001) (0.010199668999999995) (0.010397569999999981) (0.010832460500000016) (0.010446048999999999) (0.010369398500000002) (0.010550333500000009) (0.0103710875) (0.010342361999999994) (0.010641198000000004) (0.010725302500000006) (0.010432214999999995) (0.010340076500000003) (0.010588246499999995) (0.010618106999999988) (0.010550280499999995) (0.010626031499999994) (0.009935192999999995) (0.00999928550000001) (0.009934488500000005) (0.010282821499999997) (0.010046505000000011) (0.010003792999999983) (0.010015888) (0.009994505) (0.010209374499999993) (0.010183776499999991) (0.0103720105) (0.010423278000000008) (0.01014064499999999) (0.01014037050000001) (0.010007914500000006) (0.010223573) (0.010190033999999987) (0.010111951999999994) (0.009995368000000004) (0.009970151999999996) (0.009929709499999995) (0.010111833) (0.010287187000000003) (0.010116834500000005) (0.010120953500000002) (0.010462507999999995) (0.010195075499999998) (0.010527784499999998) (0.010280141000000007) (0.010702396499999989) (0.01013325150000001) (0.01040679550000001) (0.010507178500000006) (0.010393264499999999) (0.010447438000000003) (0.011071942000000001) (0.01041409800000001) (0.010554342499999994) (0.010468434499999998) (0.010778086000000006) (0.0105124375) (0.010511131000000007) (0.010737489000000003) (0.010763758499999998) (0.010750493) (0.010444041999999987) (0.01061073600000001) (0.010424567499999995) (0.0103487825) (0.010704491499999996) (0.010562343499999988) (0.010670398999999997) (0.010694333500000014) (0.010509572500000008) (0.01039361150000001) (0.010371514499999998) (0.010642479499999996) (0.010706686499999993) (0.010335494) (0.010393949999999999) (0.010651626499999997) (0.011000247000000005) (0.010595898000000006) (0.010336773499999993) (0.010007928000000013) (0.010065924000000004) (0.010045487999999977) (0.010006637999999998) (0.010311649500000006) (0.010128155499999986) (0.010114614999999993) (0.010108382499999999) (0.010124597499999999) (0.010172444500000002) (0.010593338499999994) (0.010059440500000003) (0.010133165) (0.010297167499999996) (0.01010722) (0.010341441000000007) (0.010291592500000002) (0.010142943499999987) (0.010071333000000002) (0.0100778745) (0.010230450500000016) (0.010168430999999992) (0.0103062285) (0.010307578499999998) (0.010375131999999995) (0.0102385755) (0.01020553049999999) (0.010049614499999998) (0.010993914499999993) (0.010164678999999996) (0.010201819) (0.010265154000000012) (0.010597090000000003) (0.010434504999999983) (0.01056773150000001) (0.010444490999999986) (0.010440649499999996) (0.010455846500000004) (0.010317717000000004) (0.010335348000000008) (0.01065804749999999) (0.010570941) (0.010524467499999995) (0.010644098500000004) (0.010529824999999993) (0.010527029000000007) (0.010496501000000005) (0.010530533500000008) (0.010298586999999998) (0.010538561500000002) (0.010404765499999996) (0.010449946499999987) (0.01031071) (0.010552975500000006) (0.010379843) (0.010607801499999986) (0.01045811349999999) (0.010466677999999993) (0.010515717999999993) (0.010413410999999997) (0.010434783499999989) (0.010547836000000005) (0.010717567000000011) (0.010679982500000004) (0.010054273000000002) (0.010363252500000003) (0.010067254999999997) (0.00999556900000001) (0.010153723000000003) (0.010191491999999996) (0.010250904499999991) (0.010079899499999989) (0.010172341000000001) (0.010213756000000004) (0.010322420999999998) (0.01002136649999999) (0.010227022499999988) (0.010382831000000009) (0.010204532499999988) (0.0102300585) (0.009914781499999997) (0.010085971999999999) (0.010155322000000008) (0.009992184500000001) (0.010056925500000008) (0.010159919000000017) (0.010031700000000005) (0.010027970499999997) (0.010305546999999998) (0.010120241000000002) (0.010258192000000013) (0.010188279000000008) (0.010490320500000011) (0.010382361499999992) (0.010140650000000001) (0.01031389399999999) (0.010401670500000001) (0.01038866649999999) (0.010593037999999985) (0.010514513499999989) (0.010559067999999991) (0.010569192500000005) (0.010602816000000001) (0.010337144999999992) (0.010350407000000006) (0.01046736949999999) (0.010548152500000005) (0.010543768999999995) (0.0103752825) (0.0103844035) (0.010494922500000017) (0.010311407500000008) (0.010488826500000006) (0.010456799999999988) (0.010442529000000006) (0.010419587999999994) (0.010441975000000006) (0.010453700999999982) (0.010490840499999987) (0.010435638000000011) (0.01098150399999999) (0.010772852) (0.010571332499999989) (0.01056294549999999) (0.010620323500000015) (0.01070367400000001) (0.010848842499999997) (0.010504617499999994) (0.0101765365) (0.010068131500000008) (0.010223416999999999) (0.010644334000000005) (0.010475923499999984) (0.01005663000000001) (0.010294084499999995) (0.010263350500000004) (0.010219830499999999) (0.010219816499999992) (0.010159495500000004) (0.010053930000000003) (0.010168649000000002) (0.01028677750000001) (0.010236475000000009) (0.010320170999999989) (0.010299835499999993) (0.010098108499999994) (0.01013427) (0.010124970000000011) (0.010304267000000006) (0.010395203500000005) (0.009946793999999995) (0.010070652) (0.010397055500000002) (0.010512716500000005) (0.010383143499999997) (0.010442469999999995) (0.010480800999999998) (0.010324285500000002) (0.010204300500000013) (0.010282946000000015) (0.010525711999999993) (0.010392220500000007) (0.010480662500000015) (0.010303164500000003) (0.010492349499999998) (0.01057076550000001) (0.010550323999999986) (0.010585596000000017) (0.010633756000000008) (0.010410598499999979) (0.010597408000000003) (0.010775024500000008) (0.01063344599999999) (0.010490148500000004) (0.010435531000000012) (0.010551270000000015) (0.010296536499999995) (0.010661622999999995) (0.010464261000000002) (0.010443276500000001) (0.010302418999999993) (0.01033227149999999) (0.010538415999999995) (0.01039328049999999) (0.010495098999999994) (0.010713544500000005) (0.01047352650000001) (0.01042601500000001) (0.010602571000000005) (0.010506565499999995) (0.010499504999999992) (0.010562658999999988) (0.010039875500000003) (0.010026913999999998) (0.010056887) (0.009927435499999998) (0.010030095000000003) (0.010229468000000005) (0.010202854000000011) (0.010110744500000005) (0.01011746500000002) (0.010400650999999997) (0.010093268999999988) (0.010210892499999999) (0.010320569500000001) (0.010543313999999998) (0.010218307499999996) (0.010366123000000005) (0.010232305000000011) (0.010137995999999996) (0.009997534000000002) (0.01026121649999999) (0.01030726350000001) (0.010044722500000006) (0.010202933499999997) (0.010339909000000008) (0.0100948295) (0.010207093) (0.01004111449999999) (0.010491187000000013) (0.010295517000000004) (0.010251746999999992) (0.010092342500000004) (0.010329606499999991) (0.010281354500000006) (0.010411734999999991) (0.010272203000000008) (0.010352090499999994) (0.010514250499999989) (0.010374254500000013) (0.010374942999999998) (0.010356915500000022) (0.010488151000000001) (0.01045861150000002) (0.010446034000000007) (0.010698688999999983) (0.010506180500000004) (0.0103505755) (0.010426000500000004) (0.01050906700000001) (0.010634571499999995) (0.010366141999999995) (0.010671512499999994) (0.010489661499999997) (0.010491052) (0.0103168795) (0.010273183500000005) (0.010405534000000008) (0.010502059500000008) (0.01076410400000001) (0.010500306000000001) (0.0103437215) (0.010600603500000014) (0.010568949000000008) (0.010436851499999997) (0.010715603000000004) (0.010131217499999984) (0.010177905000000015) (0.010119669000000012) (0.010121411499999997) (0.00997989199999999) (0.010368866000000004) (0.010022164500000014) (0.010272456999999985) (0.010113663999999994) (0.010247274) (0.010112056499999994) (0.010129743499999996) (0.010347135500000007) (0.01024522750000001) (0.010265773499999992) (0.010259484999999999) (0.0102255235) (0.010119432499999997) (0.01007015750000001) (0.010166910000000001) (0.010165484000000002) (0.010143097500000003) (0.010122205500000009) (0.009918596000000002) (0.010086243499999994) (0.010551748) (0.010080779499999998) (0.010112692000000006) (0.010141245500000007) (0.010366966500000005) (0.010210353000000005) (0.010055395000000009) (0.010360635000000007) (0.010491321499999998) (0.010303331999999998) (0.010322459999999992) (0.010460440500000001) (0.010449138999999996) (0.01043193449999999) (0.010412915499999995) (0.010371021499999994) (0.010456819000000006) (0.010623215500000005) (0.010371647499999997) (0.010495100999999993) (0.010444073499999998) (0.0107516015) (0.01056310399999999) (0.010544148500000017) (0.010440353999999999) (0.010392565999999992) (0.010453170999999997) (0.010387899499999992) (0.010497529499999991) (0.010483655499999994) (0.010380673000000007) (0.010640628) (0.010694653000000012) (0.010635747999999987) (0.01055534200000001) (0.010520602500000004) (0.010545107999999997) (0.010721273000000017) (0.010396261000000004) (0.010181885000000002) (0.010143007999999995) (0.009957957000000003) (0.010048439000000006) (0.01006185300000001) (0.010100722000000006) (0.010132479500000013) (0.010406391000000001) (0.01054440899999999) (0.01008838649999999) (0.010499723500000002) (0.010216480500000014) (0.010062305000000007) (0.010196189499999994) (0.010081869500000007) (0.010266500999999997) (0.01020372700000001) (0.010008156500000004) (0.010113509999999992) (0.009880110499999997) (0.009928465999999997) (0.010133739499999989) (0.010089689999999998) (0.010225578499999999) (0.0104158065) (0.010392810999999988) (0.010298923000000001) (0.010105943499999992) (0.010331061500000002) (0.010023610999999988) (0.010225581999999983) (0.010271818500000002) (0.010364792000000012) (0.010410313500000004) (0.010572733000000015) (0.010281685999999998) (0.010209692999999992) (0.010499768499999992) (0.010267985000000007) (0.0104149095) (0.010670206500000001) (0.010666119500000001) (0.010734828499999988) (0.010473937000000016) (0.010488453999999994) (0.010609814499999995) (0.010656667999999994) (0.010413342000000006) (0.010607430000000015) (0.010340663999999986) (0.010588215499999998) (0.010377775500000005) (0.0105718645) (0.010344840999999994) (0.010320571) (0.010718527499999991) (0.010645307000000007) (0.010546354000000008) (0.0103369455) (0.010387953999999991) (0.010477248500000008) (0.010488691999999994) (0.0103446455) (0.010467764000000018) (0.0103224955) (0.009993189999999999) (0.010419691999999994) (0.010086050499999999) (0.010211051999999998) (0.010038482999999987) (0.010174795499999986) (0.01028806900000001) (0.0103410835) (0.010347294000000007) (0.010145334500000006) (0.01040344750000001) (0.010104581500000001) (0.010481980500000002) (0.01010509050000001) (0.010445462500000002) (0.010165051500000008) (0.010284091499999995) (0.010124166000000018) (0.0101813885) (0.009981096499999995) (0.010153601499999998) (0.010011242500000003) (0.0101849985) (0.010346896499999994) (0.010422783000000005) (0.010078576999999991) (0.010196294999999994) (0.010278073500000012) (0.010233533500000003) (0.010178010499999987) (0.010534239) (0.010547420000000002) (0.010590128500000004) (0.010345572500000011) (0.010406525) (0.0103995655) (0.010532832500000006) (0.010493130000000003) (0.010432015499999989) (0.010544793499999996) (0.010632087500000012) (0.0105624005) (0.010473562499999992) (0.010438609000000001) (0.010572037499999992) (0.010549349000000013) (0.010227114499999995) (0.010624520000000012) (0.010283374499999998) (0.010536342000000004) (0.010515460000000004) (0.010480595500000009) (0.010350063999999992) (0.010383282999999993) (0.010267265999999997) (0.010632005) (0.010528732999999998) (0.01051038800000001) (0.010504808500000004) (0.010664749000000001) (0.01040629600000001) (0.010494088999999998) (0.01038600499999999) (0.01011682350000001) (0.010071232999999999) (0.00994122900000001) (0.010038167) (0.010012766999999992) (0.009957498999999995) (0.0100918235) (0.01021420399999999) (0.010124417499999996) (0.009984444999999995) (0.010234573499999997) (0.010214547500000004) (0.010203321500000001) (0.01019917400000002) (0.010204634000000018) (0.010061674000000007) (0.010112642000000005) (0.010028015000000015) (0.010250799000000005) (0.010373248499999987) (0.010055168500000003) (0.010240494500000002) (0.010098465500000015) (0.010064350500000013) (0.010305902000000006) (0.01017079650000001) (0.010349381500000004) (0.010185691499999996) (0.010144055499999999) (0.010168446499999997) (0.010065212000000018) (0.010177312500000008) (0.010199750999999993) (0.010427263000000006) (0.010235242500000005) (0.010539567) (0.010395140499999997) (0.010374618000000002) (0.01035915150000001) (0.010454139500000001) (0.010368516499999994) (0.010493443499999991) (0.010597847499999993) (0.010355161000000002) (0.010467042999999995) (0.010670382500000006) (0.010424507999999999) (0.010383028500000002) (0.010405361500000002) (0.010550422000000004) (0.010430951499999994) (0.010551427000000002) (0.010519769499999998) (0.010454056500000003) (0.010386684999999993) (0.010278109500000007) (0.010455047500000009) (0.010547863500000004) (0.010511310999999982) (0.010586280999999989) (0.010501674000000003) (0.01053235050000001) (0.010480712499999989) (0.010465418000000004) (0.010031819499999997) (0.01018210949999998) (0.01023843150000002) (0.009939871500000003) (0.010114698500000005) (0.010052704499999995) (0.010000398000000008) (0.010101984999999994) (0.010138962000000001) (0.010359683499999994) (0.010170556500000011) (0.01009326449999999) (0.010246330000000012) (0.010402458999999989) (0.010126541500000003) (0.010368455499999998) (0.010149337499999994) (0.010183465999999988) (0.010111745000000005) (0.010058974999999998) (0.010038989499999998) (0.009999628999999982) (0.010009484999999999) (0.010161173999999995) (0.010084813499999998) (0.010150929500000003) (0.010341352500000012) (0.010198404499999994) (0.010202513999999996) (0.010333966000000014) (0.010248457000000002) (0.0105285705) (0.010448967000000003) (0.010415733499999996) (0.010607232999999994) (0.010656178499999988) (0.010330113500000015) (0.010441200999999997) (0.010488504999999995) (0.01054201049999999) (0.010530218500000008) (0.010482882499999985) (0.010734592000000001) (0.010437289000000002) (0.010517949999999998) (0.010418391999999985) (0.010410878499999998) (0.010366745999999996) (0.010469575000000009) (0.010288709000000007) (0.010387718000000004) (0.0104730735) (0.010653401000000007) (0.010487754500000002) (0.010360834499999999) (0.010317502000000006) (0.010450666999999997) (0.010455721500000001) (0.01051468550000001) (0.010671766499999999) (0.010377332000000003) (0.010548296000000013) (0.010602519000000005) (0.010910281999999993) (0.010009756500000008) (0.010187600500000019) (0.0100377735) (0.010182199500000003) (0.010156040000000005) (0.010150164500000003) (0.010123361999999997) (0.0099874915) (0.010175011999999983) (0.010166220000000004) (0.010158990000000007) (0.010647397500000003) (0.010145570000000007) (0.010101187500000011) (0.010232754499999983) (0.010191645499999985) (0.010235357) (0.00998937100000001) (0.010087943000000002) (0.010176796500000015) (0.010380923) (0.010219392000000022) (0.010371410499999997) (0.010064893500000005) (0.010285733500000005) (0.010130094999999992) (0.010219652999999995) (0.010482245000000001) (0.010303788499999994) (0.010368404999999997) (0.010432606000000011) (0.010121135500000003) (0.010520419500000003) (0.010323914500000003) (0.010448818499999984) (0.01030329549999999) (0.010289444000000009) (0.010163395999999991) (0.010751333500000002) (0.010578973500000005) (0.010487882000000004) (0.010558323500000008) (0.01045637100000002) (0.010513915500000012) (0.010758591499999998) (0.010354315500000003) (0.010467775000000012) (0.010725323499999995) (0.010418264499999996) (0.010484406999999987) (0.010286072500000007) (0.010475535499999994) (0.010320982499999992) (0.010573580500000013) (0.010491332000000006) (0.01045526899999999) (0.010519656500000002) (0.010572946000000014) (0.01058435349999999) (0.010489302499999992) (0.010664146499999999) (0.010508495500000006) (0.010577601000000006) (0.010559544000000004) (0.010150488499999999) (0.0100891345) (0.010039486) (0.010079502500000004) (0.010154874999999994) (0.010316257500000009) (0.010267267999999996) (0.010174292499999987) (0.010156043999999989) (0.0101564975) (0.010332469499999997) (0.010256629499999989) (0.010303388999999996) (0.010439415499999993) (0.0103348095) (0.010509415500000008) (0.010253068500000018) (0.010101870499999999) (0.009985507500000004) (0.010072120000000004) (0.010163052500000005) (0.010205912500000011) (0.010103227000000006) (0.010066143000000013) (0.010392017999999989) (0.010431283999999999) (0.010278418000000011) (0.01043311899999999) (0.010293689000000009) (0.0103677145) (0.010708004499999993) (0.010421876999999996) (0.010463600000000003) (0.010391050999999998) (0.010440197000000012) (0.010331867000000008) (0.010333819499999994) (0.010515571000000001) (0.010232043999999996) (0.01040953) (0.01042897199999998) (0.0105530135) (0.010490617000000008) (0.010799557000000001) (0.010402449499999994) (0.010581151499999997) (0.010808081499999997) (0.010639058500000007) (0.010333706499999998) (0.010527656499999982) (0.01036890900000001) (0.010412177000000009) (0.01051770049999999) (0.010464998500000003) (0.010456222499999987) (0.010441762500000007) (0.010479022500000018) (0.010456744000000004) (0.010613491999999988) (0.010802357999999998) (0.010559153000000016) (0.010682791499999997) (0.011368073500000006) (0.010760482000000002) (0.010130533000000011) (0.010117709500000002) (0.010051559000000002) (0.010017246000000007) (0.010184831500000005) (0.010056273000000004) (0.010248637500000018) (0.010119052500000003) (0.010215410000000008) (0.010048200000000007) (0.0100594465) (0.01020412300000001) (0.010110164500000005) (0.010205997000000008) (0.01022216799999999) (0.010204364499999993) (0.010098266499999994) (0.010075797999999997) (0.010094876000000003) (0.010152429000000004) (0.010257763499999989) (0.010239428000000009) (0.010156994000000016) (0.010136138000000003) (0.010608977499999991) (0.010259915500000008) (0.010251763999999997) (0.010154411500000002) (0.010416532500000006) (0.010150876500000017) (0.010239835500000002) (0.01046708049999999) (0.010326859500000007) (0.010493595999999994) (0.010452610500000015) (0.010299591999999996) (0.010255023999999988) (0.010373108000000006) (0.010427613000000016) (0.010509278499999997) (0.010726374999999996) (0.010319240499999993) (0.010450474500000015) (0.010563714000000002) (0.010444466) (0.0106145755) (0.010382212500000002) (0.010506728000000007) (0.01082752749999999) (0.010273212000000018) (0.010267443000000001) (0.010389534500000006) (0.010222447000000023) (0.010592005000000015) (0.01030719450000002) (0.010487398000000009) (0.010547406500000009) (0.010550668500000013) (0.010540882500000001) (0.010593205500000008) (0.010405668000000007) (0.010647816999999976) (0.010608200499999998) (0.010492782000000006) (0.01002454300000001) (0.010046467500000003) (0.010165802000000002) (0.010058545999999988) (0.012238699999999991) (0.010134426000000002) (0.010290820000000006) (0.01005455750000002) (0.010631046499999991) (0.010162168499999999) (0.01032852799999999) (0.010453705000000008) (0.010488828000000006) (0.010285587500000012) (0.010332044499999998) (0.010359547999999996) (0.010043321499999994) (0.010140796499999993) (0.010012129499999994) (0.010049484999999997) (0.010201016999999993) (0.010222978500000007) (0.010194202) (0.00996548400000001) (0.01011363600000001) (0.01013417849999998) (0.010163206000000008) (0.010143433499999993) (0.010186073000000004) (0.010493335000000006) (0.010341256000000007) (0.010384070499999995) (0.010457194999999989) (0.010287073999999993) (0.010485783999999998) (0.01029226850000002) (0.010344648500000012) (0.010458884000000002) (0.01041701049999999) (0.010527450500000007) (0.010414088499999988) (0.010460142000000006) (0.010463969000000004) (0.010528077999999996) (0.010701515999999994) (0.01054318600000001) (0.010309020500000002) (0.010452905499999998) (0.010338136999999997) (0.010338918000000002) (0.010496416999999994) (0.0102927575) (0.010349421499999997) (0.010364732000000001) (0.010478953499999999) (0.010181105499999996) (0.010834741999999994) (0.010642125999999988) (0.010812317500000002) (0.010837813499999988) (0.010775070499999997) (0.011372314000000008) (0.010628083499999996) (0.01042766099999999) (0.010137569500000013) (0.01035113800000001) (0.01019900850000001) (0.010260310499999994) (0.009963429999999995) (0.009996636000000003) (0.010006914000000006) (0.010136258999999995) (0.01007846300000001) (0.010129047500000002) (0.010264711499999996) (0.010468956499999987) (0.0103460685) (0.01003211050000001) (0.010181056000000008) (0.01017033249999999) (0.010113466500000001) (0.009970972500000008) (0.010086094000000018) (0.010125994499999999) (0.010088778499999992) (0.010263528000000008) (0.010234552499999994) (0.010095130000000008) (0.010490209499999986) (0.010358648999999998) (0.010368172000000009) (0.010385367999999992) (0.010399725999999998) (0.010417610999999993) (0.010341254499999994) (0.010596688500000007) (0.010408404499999996) (0.010429042999999999) (0.010409491499999993) (0.010337253500000004) (0.010352168999999994) (0.010558429999999994) (0.010235442999999997) (0.01039439049999999) (0.01061124849999999) (0.010403506000000007) (0.010418177) (0.01049771649999999) (0.01038489749999999) (0.010483639000000003) (0.010545100999999987) (0.010592567499999997) (0.010607787999999993) (0.01049915500000001) (0.010557302500000004) (0.010424037000000011) (0.01029042899999999) (0.010296417999999988) (0.010400236000000007) (0.010590604000000003) (0.010718403000000001) (0.010777463499999987) (0.010644040000000007) (0.010604779000000009) (0.01045080100000001) (0.010541308999999999) (0.010415456000000017) (0.010471212499999993) (0.010339074500000003) (0.010149176499999996) (0.010085786) (0.0101408095) (0.010282723999999993) (0.010034724499999995) (0.010054859500000013) (0.0100807225) (0.010209251499999988) (0.010189133000000003) (0.010607085999999988) (0.010550705500000007) (0.010071788000000012) (0.010331028999999992) (0.010262710500000022) (0.010284613500000012) (0.010148545500000009) (0.01040131200000001) (0.010145939000000007) (0.010158678500000004) (0.009927931000000001) (0.010308063499999992) (0.010132098499999992) (0.010152614000000004) (0.010528012499999989) (0.010451091499999995) (0.010467921499999991) (0.01055303049999999) (0.010565278500000011) (0.010565856999999998) (0.01061099800000001) (0.010222617000000003) (0.010662455500000001) (0.010275602000000009) (0.010326709000000003) (0.010359619499999986) (0.010363449999999996) (0.010405017499999988) (0.010533) (0.010385904000000015) (0.01050511950000002) (0.01048573999999998) (0.010515165000000007) (0.010514784999999999) (0.01057836799999999) (0.01049237800000001) (0.010819098499999999) (0.010531723499999993) (0.010660991999999994) (0.010541534000000019) (0.010476170500000007) (0.010352547500000003) (0.010469172999999998) (0.010326134500000014) (0.010527146000000001) (0.010461366500000013) (0.010921029999999998) (0.01063112649999999) (0.010496337500000008) (0.010605485499999998) (0.010855947500000004) (0.010467771000000015) (0.01059882799999999) (0.010473839000000013) (0.009907633499999999) (0.010024426500000003) (0.009973839999999984) (0.010145864000000004) (0.010088349999999996) (0.010181377500000005) (0.010004830000000006) (0.010440033500000001) (0.010283123499999991) (0.0103383165) (0.010195184999999996) (0.010306645000000003) (0.010166579000000009) (0.010025398000000005) (0.01061166949999999) (0.01028050450000001) (0.01001478950000001) (0.009851113500000008) (0.010039096999999997) (0.009936955999999997) (0.010127913500000002) (0.010153943999999998) (0.010028618500000003) (0.010143580000000013) (0.010210271500000007) (0.010209849000000007) (0.010341617500000011) (0.010460666000000007) (0.010121795499999989) (0.010268971000000002) (0.010222294000000007) (0.010393570500000004) (0.010303767999999991) (0.010468505000000003) (0.0103485465) (0.010355252499999995) (0.010354141500000011) (0.01046841250000001) (0.010591555500000002) (0.010282343999999999) (0.010436826999999996) (0.010420906499999993) (0.010312213500000014) (0.010474289000000012) (0.010480491499999994) (0.010505749499999995) (0.010304957000000017) (0.010630935499999994) (0.010497446000000007) (0.01045907750000001) (0.010396181500000004) (0.010395311500000004) (0.010541358) (0.010705483500000001) (0.010442241000000005) (0.010241386500000005) (0.010478839000000004) (0.010659780500000007) (0.010684865000000002) (0.010604116999999996) (0.010495328499999998) (0.010589628500000003) (0.010478911999999993) (0.010505386999999991) (0.010085141999999978) (0.01030698749999999) (0.010051439499999995) (0.0100532485) (0.010188970500000005) (0.010144730500000004) (0.010027989500000015) (0.010062789500000002) (0.01016394150000001) (0.010258739500000003) (0.010389153500000012) (0.010156720500000008) (0.010305292500000007) (0.010269126000000003) (0.010027891499999997) (0.0101694185) (0.010078757999999993) (0.010354197499999995) (0.009906265999999997) (0.010070002499999994) (0.010012322000000004) (0.009998169999999987) (0.010181840499999997) (0.010033072000000004) (0.010137067) (0.010142177500000002) (0.010170970000000001) (0.01029389700000001) (0.010329572499999995) (0.010275843500000006) (0.01040952349999999) (0.010356896000000004) (0.010669658999999998) (0.010330516999999997) (0.010335740999999982) (0.010476287) (0.010417155999999997) (0.010406745500000009) (0.010258783500000007) (0.010467231500000007) (0.010812747999999997) (0.010484078999999993) (0.010603756000000006) (0.011021758000000006) (0.010535715000000001) (0.01068532400000001) (0.010692201499999998) (0.010447285500000014) (0.010425841000000005) (0.010543425500000009) (0.01041036549999999) (0.010562597000000007) (0.010423482499999998) (0.010592069499999995) (0.010199410500000006) (0.010267597999999989) (0.010387413499999998) (0.010417076000000011) (0.010948847499999997) (0.010452296) (0.010468629500000007) (0.010567458000000002) (0.010575253999999992) (0.010696869499999997) (0.010095711999999993) (0.010020683500000002) (0.010155558499999995) (0.010193028499999993) (0.0101919085) (0.010081341500000007) (0.01022133) (0.010148455) (0.010296635500000012) (0.010293921499999997) (0.010466614499999999) (0.010293778500000003) (0.010312245000000012) (0.01008523700000001) (0.010604226999999994) (0.01043559799999999) (0.010158134000000013) (0.010090217999999998) (0.0102442945) (0.010002886499999988) (0.010483015999999998) (0.010199172500000006) (0.010234643000000002) (0.010203795500000001) (0.010305744999999991) (0.01052588850000001) (0.010306443500000012) (0.010299201000000008) (0.010337259000000001) (0.010333271500000005) (0.010159646500000008) (0.010275808999999997) (0.010466838999999992) (0.010649643) (0.010337582499999998) (0.01031533400000001) (0.010438061999999998) (0.010377314499999984) (0.010363242999999994) (0.010605259500000006) (0.010478974000000016) (0.010412592000000012) (0.010513138000000005) (0.01052169850000001) (0.010704542499999997) (0.010344107500000019) (0.010573586999999995) (0.010470110500000004) (0.0104498175) (0.010458966500000014) (0.010374856000000016) (0.010543726999999989) (0.010568213500000007) (0.010239791499999998) (0.01045923850000001) (0.01024398750000001) (0.010753403999999994) (0.010625325000000005) (0.010786862499999994) (0.010649147499999997) (0.010672901499999998) (0.010615590500000008) (0.010798712999999988) (0.010784510999999997) (0.010167251999999988) (0.010170628500000015) (0.010022007500000013) (0.010111338999999997) (0.01021006699999999) (0.010041268499999992) (0.010153440000000014) (0.010239777999999991) (0.010248687500000006) (0.010119509000000013) (0.010313863499999992) (0.010207628999999996) (0.010088593000000007) (0.010359273500000016) (0.010472134500000008) (0.010486520999999985) (0.010160561000000012) (0.010283487000000008) (0.010010537) (0.010112186000000009) (0.010486605499999996) (0.010195927999999993) (0.010134385999999995) (0.010098836499999986) (0.0104298585) (0.010297582999999999) (0.010264442999999998) (0.010436112999999997) (0.010343427500000002) (0.010332228500000012) (0.010433694999999993) (0.010399630000000007) (0.010603737499999988) (0.010622706499999995) (0.010559169499999993) (0.010522123000000008) (0.010499566500000002) (0.010493815500000017) (0.010317346500000005) (0.010646305000000009) (0.010549328999999996) (0.010697690999999995) (0.010728335000000006) (0.010529317499999996) (0.010541106499999994) (0.010447418) (0.0107871425) (0.010465448500000002) (0.011141512999999992) (0.0103421905) (0.010378692500000009) (0.010414975999999992) (0.010546145000000007) (0.010455049000000008) (0.010599258000000014) (0.010419569000000004) (0.0106355645) (0.010608901500000004) (0.010805600999999998) (0.0105847315) (0.010855466999999994) (0.010660293000000015) (0.010528681499999998) (0.010638892999999996) (0.010115925499999998) (0.01037948750000002) (0.010162798499999987) (0.010115964000000005) (0.010157563499999994) (0.010064064999999997) (0.01002769349999999) (0.010196864500000014) (0.01012073949999999) (0.010065260000000006) (0.010115386000000004) (0.010282751500000006) (0.0101478495) (0.010171358000000005) (0.010042296499999992) (0.010117121500000006) (0.010343847000000003) (0.010004731000000003) (0.010010212000000004) (0.009979536999999997) (0.010430823499999992) (0.010146949000000002) (0.010060856999999993) (0.010215531) (0.010127139000000007) (0.010089960500000009) (0.010093332499999996) (0.010112239000000009) (0.01021058250000001) (0.010391564000000006) (0.010169421999999997) (0.010091086500000013) (0.010665318499999993) (0.010385964999999997) (0.010302332499999997) (0.01042778950000002) (0.010292660500000009) (0.010279419000000012) (0.010229421500000002) (0.010522598000000008) (0.010384710500000005) (0.010576561499999998) (0.010467031000000002) (0.010554721999999989) (0.010309051999999999) (0.010452430499999998) (0.010497880999999987) (0.0105321315) (0.010457729999999998) (0.010429048999999982) (0.01032185599999999) (0.010344807999999997) (0.01042931300000001) (0.010394929499999997) (0.010676193499999986) (0.010499193000000004) (0.010778408499999989) (0.010663431499999987) (0.010414383) (0.010445599500000013) (0.010614018000000003) (0.010603861999999992) (0.0103860635) (0.010442952000000005) (0.010156011999999992) (0.010191431500000014) (0.010172261999999987) (0.01006356600000001) (0.010127419999999998) (0.010038941999999995) (0.010388642500000003) (0.010247514999999999) (0.010023503500000003) (0.010074199500000006) (0.010205490999999997) (0.010049884500000009) (0.010080997000000008) (0.010452965999999994) (0.010113726000000003) (0.010067400500000004) (0.010329100000000008) (0.010055698999999987) (0.0100678295) (0.010109338499999995) (0.010095804) (0.010132094500000008) (0.010330979000000004) (0.010118844499999988) (0.010420615000000008) (0.01048290049999999) (0.010240626000000017) (0.010370633500000004) (0.010447081499999997) (0.010353121999999992) (0.010101389500000002) (0.010176340999999992) (0.010423255500000006) (0.010433993999999988) (0.01035251999999999) (0.010408125500000004) (0.010366187499999999) (0.010282433500000007) (0.0104018595) (0.010694716500000007) (0.010675170500000011) (0.010577931000000013) (0.010537203000000009) (0.010544483499999993) (0.010311862000000005) (0.010561036999999995) (0.010544842500000012) (0.010425605000000004) (0.010324299499999995) (0.010703470499999992) (0.010324182500000001) (0.010399246000000001) (0.010423588999999997) (0.010426970000000021) (0.010579128999999993) (0.010642168999999979) (0.010489252500000004) (0.010899937999999998) (0.010796522000000003) (0.010522361000000008) (0.010382570499999993) (0.010562762000000003) (0.010369661500000002) (0.01070572950000001) (0.009972515499999987) (0.009909727500000007) (0.010144202000000005) (0.010054140000000003) (0.010090315000000002) (0.010100396000000011) (0.01041662850000001) (0.010230054000000002) (0.010282501) (0.010213873999999998) (0.010121580499999991) (0.010408369000000015) (0.010190419999999992) (0.010237709499999983) (0.010321387500000015) (0.010788882) (0.010160319499999987) (0.010231611000000002) (0.010168492999999987) (0.010108817500000006) (0.010336901499999995) (0.0104218955) (0.009961878499999993) (0.010305847499999993) (0.010274126000000008) (0.010243102500000004) (0.010237343999999995) (0.010083701) (0.010021981499999999) (0.010342714000000003) (0.010435433999999993) (0.010246696000000013) (0.01044848000000001) (0.010555831500000001) (0.010325069000000006) (0.010412227499999996) (0.010538094499999998) (0.010533575500000003) (0.010611918000000012) (0.010343205500000008) (0.010961186499999998) (0.01055463899999999) (0.01040365800000001) (0.010664015999999998) (0.010667933000000004) (0.010584240999999994) (0.010588371499999999) (0.010743263000000017) (0.010675669999999984) (0.010285749499999997) (0.010553706999999996) (0.010483538) (0.010875235999999996) (0.010299157000000003) (0.01066702550000001) (0.010390923999999982) (0.010685517000000005) (0.010519867499999988) (0.010444954000000006) (0.010474257999999986) (0.010776010000000003) (0.010458768499999993) (0.010468876000000002) (0.010534172500000008) (0.010175495500000006) (0.010224209500000012) (0.01016084049999999) (0.010196565000000005) (0.010222878000000005) (0.010036954) (0.010402713500000008) (0.010178379500000015) (0.010176497500000006) (0.010483324000000002) (0.010242519500000005) (0.010223727499999988) (0.010203923000000004) (0.010230574499999992) (0.010118805999999994) (0.010315470000000007) (0.010128602000000014) (0.010185478999999997) (0.009987161000000008) (0.009910169999999996) (0.010119927) (0.010266490000000017) (0.010300450500000002) (0.009992533499999998) (0.010208158499999995) (0.010126618000000004) (0.010522538999999997) (0.010219183499999993) (0.010393064500000007) (0.010219919500000008) (0.010381594999999993) (0.010257737000000003) (0.010340022000000004) (0.01048204450000001) (0.010550971500000006) (0.010320941) (0.010242488499999994) (0.010413877000000016) (0.010296231000000003) (0.01025993) (0.010500093000000002) (0.01032688050000001) (0.010466471500000005) (0.010524152000000009) (0.010519478499999999) (0.010512787999999981) (0.010776706499999997) (0.010780801999999992) (0.010515288499999997) (0.010594646499999999) (0.010585880500000006) (0.0104877045) (0.01051761499999998) (0.010457925500000007) (0.010222598) (0.010501467500000014) (0.010810249000000008) (0.010423937500000008) (0.010563800500000012) (0.010412757000000009) (0.010504899999999998) (0.010778522999999998) (0.010527939) (0.010494608000000016) (0.0102237585) (0.010075801500000009) (0.01001495400000002) (0.010212143499999979) (0.01014625999999999) (0.010100662999999996) (0.010172638499999984) (0.009944231499999998) (0.01018483100000002) (0.010076848999999999) (0.010068113500000003) (0.009939398499999988) (0.010271811500000005) (0.010362785499999999) (0.010221563500000003) (0.010241597000000005) (0.010569563000000004) (0.010185889000000017) (0.010921382999999993) (0.010005100000000003) (0.009980594500000009) (0.010190374000000002) (0.0102522575) (0.010027871000000008) (0.010136344999999991) (0.010206519499999997) (0.010128469000000001) (0.010266280000000003) (0.010909090499999996) (0.010342614499999986) (0.01015295699999999) (0.010097918499999997) (0.010520931999999997) (0.010528796000000007) (0.010478948500000002) (0.010362946500000011) (0.010489591999999992) (0.010365972000000001) (0.010434756000000003) (0.010398698499999998) (0.010583323000000006) (0.01086343549999999) (0.010505381999999994) (0.010611392499999997) (0.010511509000000002) (0.010975423499999998) (0.010603965999999992) (0.01062565850000001) (0.010506902500000012) (0.010412498500000006) (0.01030985199999998) (0.010233203999999996) (0.010438627000000006) (0.010495407999999998) (0.010319142000000003) (0.010323406999999979) (0.010607511) (0.010814090499999998) (0.010533359500000006) (0.010499707999999996) (0.010640854000000005) (0.01048404900000001) (0.010649054499999991) (0.010740742499999997) (0.00989137100000001) (0.010106620999999996) (0.010040926499999991) (0.010189742999999987) (0.010316991499999997) (0.010253137499999995) (0.010456215500000005) (0.010230801499999997) (0.010349389500000014) (0.010130884500000006) (0.010254159499999999) (0.010253736500000013) (0.01022895850000001) (0.010152720000000004) (0.0102643615) (0.010347325500000004) (0.010010018999999995) (0.01002507050000001) (0.01007058550000002) (0.010261060000000002) (0.010151923500000007) (0.010048548000000004) (0.010281013999999991) (0.010066459499999986) (0.010288005499999989) (0.010187352999999982) (0.010314879999999998) (0.010419551999999999) (0.01046089900000001) (0.010198183) (0.010215823999999998) (0.010320368999999996) (0.010503097500000003) (0.01037521000000001) (0.010444531499999993) (0.010376254000000001) (0.010338010499999994) (0.010444277499999988) (0.010367370500000014) (0.010366985000000009) (0.01050867450000001) (0.010457248499999988) (0.010779994500000015) (0.010291073000000026) (0.010469604499999993) (0.010791708000000011) (0.01049091000000002) (0.010419843999999998) (0.010433809999999988) (0.010513451499999993) (0.010313844000000003) (0.010529246999999992) (0.010339693499999997) (0.010230407999999996) (0.010305174999999986) (0.010383009499999998) (0.010861879500000005) (0.010687795500000014) (0.010765422499999996) (0.010723689499999994) (0.010669946) (0.010761970999999981) (0.010754344999999998) (0.010562100000000005) (0.010102815499999987) (0.010031415500000002) (0.010148063499999999) (0.0102791515) (0.010044824000000008) (0.010147702499999994) (0.010264865499999998) (0.010080618500000013) (0.010239882999999991) (0.010075805999999993) (0.010208011500000003) (0.010361346500000007) (0.010169869000000012) (0.010002944999999985) (0.010168753000000003) (0.010201436499999994) (0.01000424350000001) (0.010129614499999995) (0.010019976000000014) (0.010055149499999999) (0.010348343999999995) (0.009996131500000005) (0.010086053499999997) (0.009963280000000005) (0.010577847500000001) (0.010364908000000006) (0.010231872999999989) (0.010072924000000011) (0.010159376500000011) (0.010610967999999998) (0.010151950999999992) (0.010270016000000007) (0.010625505500000007) (0.010642684) (0.010477358500000006) (0.01037789900000001) (0.010271496000000005) (0.01050630150000001) (0.010505004999999998) (0.010377721000000006) (0.010682003999999995) (0.010816751) (0.010367273499999996) (0.01047757299999999) (0.010458282500000013) (0.010460475499999983) (0.01058318300000001) (0.010591326499999998) (0.011136726500000013) (0.010418985499999991) (0.01030529799999999) (0.010465937499999994) (0.011131314500000003) (0.010465906999999997) (0.0106503825) (0.010471242500000005) (0.010559816999999999) (0.01075420149999999) (0.010729631500000003) (0.010720939999999998) (0.010675074999999992) (0.010592452500000002) (0.010601358500000005) (0.010824981999999997) (0.010202390500000005) (0.00994444650000001) (0.010202570499999994) (0.010003174500000003) (0.01025480699999999) (0.010200777499999994) (0.010134767000000003) (0.010164550500000008) (0.010202889000000007) (0.010213258499999989) (0.010253082999999982) (0.0102068815) (0.0103375) (0.010232543999999996) (0.010488099499999987) (0.010358713999999991) (0.010210203000000001) (0.0102613025) (0.010252229000000002) (0.010069256999999998) (0.009934594000000005) (0.010074847999999997) (0.01001792600000001) (0.010139986000000004) (0.010278411500000001) (0.01026685450000002) (0.0102292675) (0.010349835500000001) (0.010602454999999997) (0.010395502000000001) (0.010347759500000012) (0.010473431500000005) (0.010316562500000001) (0.010367536999999996) (0.010285916000000006) (0.010486056999999993) (0.010485611499999992) (0.010522776499999997) (0.010371247) (0.010371859999999997) (0.010554870999999993) (0.01063239399999999) (0.010456087000000003) (0.010546128500000002) (0.010652029499999993) (0.010482577000000007) (0.010483587000000003) (0.010380235500000015) (0.010380296999999997) (0.01028300750000001) (0.01034204100000001) (0.010438539499999996) (0.010323650000000004) (0.010532683000000015) (0.010453062500000013) (0.010460536500000006) (0.010627564500000006) (0.010652633999999994) (0.010557284499999986) (0.010564611500000001) (0.010728992999999992) (0.010678874000000005) (0.010637993999999984) (0.01056646) (0.010007889999999992) (0.009895877499999983) (0.009995522499999993) (0.010071920000000012) (0.010152380499999988) (0.010031747000000008) (0.010044226500000003) (0.009986090499999989) (0.010034876999999998) (0.010490214000000012) (0.010012251) (0.0101423665) (0.010236757499999999) (0.010240986500000007) (0.01015658300000001) (0.010052878499999987) (0.009987275000000004) (0.01011324949999999) (0.010091274000000011) (0.009966032500000013) (0.009933164000000008) (0.010020634) (0.00986982900000001) (0.010037941999999994) (0.010141424999999996) (0.010142473999999999) (0.010084046999999985) (0.010020884499999994) (0.010091059999999999) (0.010410166999999998) (0.010168881500000004) (0.010201720500000011) (0.01037051) (0.01032822400000001) (0.010508610500000001) (0.01044767399999999) (0.010284857000000008) (0.010572756000000003) (0.01028623799999999) (0.010372950500000006) (0.010326494999999991) (0.010438747499999998) (0.010428844500000006) (0.010469461499999985) (0.01087821) (0.010310153500000002) (0.010436296499999984) (0.010683736499999985) (0.010210681999999999) (0.010337464500000004) (0.010456854500000001) (0.010435751000000007) (0.010414567) (0.010494598999999993) (0.010361119000000002) (0.010368014999999994) (0.01052214600000001) (0.010451319999999986) (0.010325606999999987) (0.010494865500000006) (0.010334959000000005) (0.010327243) (0.0104202605) (0.010557425999999995) (0.0101983405) (0.010075056499999999) (0.010268503999999984) (0.01031008550000001) (0.0100314975) (0.010196742499999994) (0.010034449500000014) (0.010220250999999986) (0.010220142500000015) (0.010204296500000001) (0.010461101) (0.010098897000000023) (0.0100119605) (0.01036003349999999) (0.01010129650000001) (0.010529230999999986) (0.010217798499999986) (0.010192790000000021) (0.010107013999999984) (0.01024308950000001) (0.01031563150000002) (0.010132758000000006) (0.010260309499999995) (0.010211416000000015) (0.010254588999999995) (0.01060506600000001) (0.010313181000000005) (0.010449758500000003) (0.0102268165) (0.010294275000000006) (0.010278909499999989) (0.010497421500000007) (0.010483842000000007) (0.010284333499999992) (0.0103055965) (0.010379294999999997) (0.010297172000000007) (0.01052380850000001) (0.010274348499999988) (0.010516972500000013) (0.010589456999999997) (0.010345833000000013) (0.010476088499999994) (0.010531461999999991) (0.0104864125) (0.010401050500000009) (0.010474754500000003) (0.010503719499999994) (0.010195758499999985) (0.01041114700000001) (0.010553022500000009) (0.010314382999999996) (0.010414795000000004) (0.010371858499999984) (0.010528813999999984) (0.010561363000000004) (0.010515058000000008) (0.010665358499999986) (0.010729243000000013) (0.010368630500000003) (0.010601831000000006) (0.010817528500000007) (0.010570917499999999) (0.010563229500000007) (0.01016267400000001) (0.010072234) (0.010099786) (0.010009234500000005) (0.010431875999999993) (0.009947388500000015) (0.010621225499999984) (0.01004128) (0.010448889499999989) (0.010101631) (0.01029447850000001) (0.010274775) (0.010043990000000003) (0.010260737500000006) (0.010278321499999993) (0.010010235500000006) (0.010219313499999993) (0.010039459) (0.010282946500000001) (0.010145621000000007) (0.010175522500000006) (0.010219636000000004) (0.010188256999999992) (0.010249580499999994) (0.010203898000000003) (0.010188731499999992) (0.010242609) (0.010290806499999985) (0.010206832999999998) (0.010272523000000006) (0.010225351999999993) (0.010171488999999992) (0.010203214999999988) (0.010216113999999998) (0.010479162) (0.010376548000000013) (0.0106098045) (0.010506541999999994) (0.010605778999999996) (0.010345477500000005) (0.010507481999999999) (0.010614017500000003) (0.010496495000000008) (0.010474322000000008) (0.010694286999999997) (0.010492104999999988) (0.010598906499999991) (0.010568861999999998) (0.0104078415) (0.010248541) (0.010537503000000004) (0.010505384999999992) (0.010499996499999997) (0.010417319500000008) (0.01042336499999999) (0.010470194000000002) (0.010494901000000001) (0.010362909000000003) (0.010576478) (0.010519332999999992) (0.010595301500000015) (0.010369645499999997) (0.010651777000000001) (0.01044985000000001) (0.010250527500000009) (0.010132928499999985) (0.010204600999999994) (0.010061061499999996) (0.010078017499999994) (0.0099462565) (0.010243225999999994) (0.010119142999999997) (0.0104422245) (0.010202242) (0.010230254499999994) (0.010316927500000003) (0.010460007500000007) (0.010443664999999991) (0.010293703500000015) (0.010074223499999993) (0.010040314499999994) (0.009986285000000011) (0.0101861065) (0.010246837000000009) (0.01021676399999999) (0.010356009499999999) (0.010165474499999994) (0.010162529500000003) (0.010142037500000006) (0.010478871) (0.010200687999999986) (0.010351643500000007) (0.01031085150000001) (0.010638025999999995) (0.010068452999999991) (0.010059148500000004) (0.010820068500000002) (0.010441793000000005) (0.010380866000000002) (0.01048283799999998) (0.010408155500000002) (0.010204385499999996) (0.010253923499999998) (0.010653683499999997) (0.010531517500000004) (0.010451560499999998) (0.010396546999999992) (0.010435620499999992) (0.010410486999999996) (0.0106634605) (0.01080403299999999) (0.010785614000000013) (0.010661008999999999) (0.010450598500000019) (0.010569670000000003) (0.010569612500000006) (0.010535563499999998) (0.010486330000000002) (0.010493370000000002) (0.010439489499999996) (0.010550409999999996) (0.01059773700000001) (0.010553034000000003) (0.010410470500000019) (0.010607224000000012) (0.010688677000000008) (0.010473935500000003) (0.010545859500000004) (0.01002247349999999) (0.010035219999999997) (0.009971650499999998) (0.010136702999999997) (0.01010511800000001) (0.010040565000000001) (0.010213269499999997) (0.010260217999999988) (0.010219455500000002) (0.010266904499999993) (0.010198742499999996) (0.010321319999999995) (0.010397944499999992) (0.010280964000000004) (0.0102379945) (0.010169588000000021) (0.010179824000000004) (0.009953602499999992) (0.009972993000000013) (0.010031238999999983) (0.010045069500000003) (0.010101900999999996) (0.01005403149999999) (0.010158365500000002) (0.010280549999999986) (0.010265917999999999) (0.010323680500000001) (0.010428116499999987) (0.010258600500000006) (0.010209095500000001) (0.010259287000000006) (0.010209551999999997) (0.010472704) (0.010215749499999996) (0.010390483999999992) (0.010403509000000005) (0.010290846499999992) (0.010587934500000007) (0.010428150499999997) (0.010460824500000007) (0.010524532499999989) (0.010748832000000014) (0.010661682500000005) (0.010608758499999982) (0.010701079500000002) (0.010490813500000015) (0.010494781500000008) (0.010585698000000004) (0.010317332999999998) (0.010355243499999986) (0.010325909499999994) (0.010200371999999985) (0.010461029499999996) (0.010340247499999997) (0.010599702499999988) (0.010477942000000004) (0.010568833) (0.010599786500000014) (0.010803113000000003) (0.010605211000000003) (0.010547162999999998) (0.010421468999999989) (0.010675684000000005) (0.010372621499999998) (0.010015791999999982) (0.01016005099999999) (0.010050186000000003) (0.0102818935) (0.010226590500000007) (0.010200948500000001) (0.010201418000000004) (0.010071174000000002) (0.010149513999999998) (0.01046437950000001) (0.010084311499999998) (0.010454859499999997) (0.010467412999999995) (0.010419337999999986) (0.010310844999999999) (0.010099126000000014) (0.010044694500000007) (0.010003647000000004) (0.010049836500000006) (0.010175658500000004) (0.010163975999999991) (0.010047843) (0.009978646000000008) (0.010352801500000008) (0.010448637499999996) (0.010263966500000013) (0.010225323500000008) (0.010157784999999989) (0.010763281) (0.010257779500000008) (0.010234446500000008) (0.010464843500000001) (0.0103251855) (0.010536607500000003) (0.010557424499999996) (0.010400752000000013) (0.01023721050000001) (0.01044093950000001) (0.010333515000000015) (0.010658130499999988) (0.010466920500000018) (0.010686121000000007) (0.010556071) (0.010377248000000006) (0.010696737499999998) (0.010712192499999995) (0.015501583) (0.010457940999999998) (0.010647474000000004) (0.010750995499999999) (0.010648854499999999) (0.010399166000000015) (0.010491006999999997) (0.010513498999999996) (0.010368555000000002) (0.010381794) (0.010646178999999992) (0.010684134999999997) (0.010559041500000019) (0.010811800999999982) (0.010567216500000004) (0.010595467499999997) (0.01059328100000001) (0.010484878500000003) (0.010027005500000005) (0.010061673500000007) (0.010178243000000003) (0.010267150500000016) (0.01019197749999999) (0.010099307000000002) (0.009974998499999999) (0.0100685945) (0.010312268) (0.010110550999999995) (0.010237156999999997) (0.010122520999999995) (0.010418811000000014) (0.010146839500000004) (0.010229969000000005) (0.010173163500000013) (0.010271633500000016) (0.010009224499999997) (0.010315329999999998) (0.010087759000000002) (0.010144300999999994) (0.010123122499999998) (0.01000463) (0.010027377500000004) (0.010263344999999993) (0.010215240999999986) (0.010180302000000002) (0.010187186) (0.01026700450000001) (0.01027653549999999) (0.010442563999999988) (0.010201810000000006) (0.010347393999999996) (0.010571944499999986) (0.0103747025) (0.010414907000000001) (0.010434633499999998) (0.010390272000000006) (0.010443259499999996) (0.010488834500000002) (0.010564987000000012) (0.010633061499999999) (0.010609448999999993) (0.010478105000000001) (0.010585325499999992) (0.010604830499999995) (0.010556205999999985) (0.010360044999999998) (0.010339420499999988) (0.010394454000000011) (0.010493436500000008) (0.010329165000000001) (0.010406419000000014) (0.010356804999999997) (0.010728040499999994) (0.01047735000000001) (0.010630878999999996) (0.010540637499999991) (0.010333642000000004) (0.010471820500000006) (0.010565096499999996) (0.010628667499999994) (0.010583489500000001) (0.010635600500000009) (0.010097968000000013) (0.010273930000000014) (0.010041912) (0.010150405000000001) (0.010336248000000006) (0.010028861500000014) (0.010200679500000004) (0.010104826999999997) (0.010399715000000004) (0.01025696949999999) (0.01045666599999999) (0.010316703499999996) (0.010252741499999996) (0.010452661500000002) (0.010148765500000018) (0.010142567499999991) (0.010161754000000009) (0.010334814000000012) (0.010198499) (0.010285867000000004) (0.00999962950000001) (0.010255095499999992) (0.009993327499999996) (0.010024757999999995) (0.010608488) (0.010369827000000012) (0.010166117500000016) (0.010168219500000006) (0.010198066500000005) (0.010298026000000002) (0.010159889999999991) (0.010329107500000004) (0.010653769999999993) (0.010426572999999995) (0.010450173499999993) (0.010465079000000002) (0.010416041000000001) (0.010524376000000002) (0.010578049000000006) (0.010611882000000003) (0.01070589449999998) (0.010648130499999992) (0.010517411000000004) (0.010571731000000001) (0.010700367500000002) (0.010561560499999997) (0.010475652000000002) (0.01052189249999999) (0.01030009250000001) (0.010569412) (0.010697205000000001) (0.010515099000000014) (0.0105175765) (0.010575106) (0.010327117999999996) (0.010341730000000007) (0.0113829295) (0.01070082600000001) (0.010456786999999995) (0.010466944999999991) (0.010590861999999993) (0.010728205500000004) (0.010631070999999992) (0.010555402499999991) (0.010028103499999996) (0.01020325800000002) (0.010113744500000008) (0.010139462499999988) (0.010085269499999994) (0.009995231000000007) (0.009980422000000003) (0.010280562499999993) (0.010137062500000016) (0.009971001000000007) (0.01003905400000002) (0.010544777499999991) (0.010119136500000014) (0.01002890300000002) (0.010147554000000003) (0.010339374499999998) (0.00997017700000001) (0.010084099999999999) (0.010273753999999996) (0.009925044999999993) (0.010032129) (0.010177509000000001) (0.010051521500000007) (0.010217024000000005) (0.010431401500000007) (0.010244028500000002) (0.010134908500000012) (0.010164141499999987) (0.010234416999999996) (0.010508809499999994) (0.010145472000000016) (0.010182372000000009) (0.010277603999999996) (0.010531370999999998) (0.010376626) (0.010326606500000002) (0.01052267400000001) (0.010448684999999985) (0.010461558999999995) (0.010499200000000014) (0.010643825499999995) (0.010633173499999996) (0.010519287500000002) (0.010417488500000002) (0.010643095500000005) (0.010815690500000003) (0.010350918) (0.010353966999999992) (0.010789930500000003) (0.010464066500000008) (0.010457257500000011) (0.010312506500000013) (0.0104945855) (0.01075599449999999) (0.010512543999999999) (0.010446249500000004) (0.010706238000000007) (0.0107036925) (0.010786223000000011) (0.010430265999999994) (0.010782123000000005) (0.010800010499999999) (0.010557157000000011) (0.010367901499999999) (0.010373748000000002) (0.01037054549999998) (0.010108495000000009) (0.010174790500000003) (0.010297415500000004) (0.010276019999999997) (0.010052468000000009) (0.010184034499999994) (0.010122312000000008) (0.010326977499999987) (0.010252306000000003) (0.010292358000000015) (0.010069440999999998) (0.010011691500000017) (0.010297516000000007) (0.010152976499999994) (0.01026060949999999) (0.00998603499999999) (0.010209022499999998) (0.010062100000000004) (0.010194285499999997) (0.010204301999999985) (0.010253278500000018) (0.010293301000000019) (0.010425998999999991) (0.010302834499999997) (0.010383339000000005) (0.010378598000000003) (0.010252712499999997) (0.010320122000000001) (0.010071227000000002) (0.010173304000000022) (0.010298958999999996) (0.010358810999999996) (0.010355513999999996) (0.010527288499999982) (0.010420645000000006) (0.010239399499999996) (0.010587396499999999) (0.010749100000000011) (0.010498403999999989) (0.010407619000000007) (0.010494565499999997) (0.010719561499999988) (0.010446338) (0.010399577499999993) (0.01037557) (0.010329886499999982) (0.01046786949999999) (0.010512930000000004) (0.010878725000000006) (0.010250365000000011) (0.010578760000000006) (0.010427397000000019) (0.010454772000000015) (0.010467974500000005) (0.01048784300000001) (0.01062679549999998) (0.0106051365) (0.010588105) (0.010477382499999993) (0.01053308750000001) (0.010728693499999997) (0.010539652499999982) (0.010222531499999993) (0.010073601000000001) (0.010133909999999996) (0.010109377000000003) (0.010240560499999982) (0.01022603300000001) (0.010020675499999993) (0.010111187499999993) (0.010317405500000001) (0.010272284500000006) (0.010145201500000006) (0.010215929999999998) (0.010193900499999992) (0.0101181085) (0.010097427500000006) (0.01006628050000001) (0.010313329999999996) (0.010030472999999984) (0.010137473499999994) (0.01001990350000001) (0.010223206500000012) (0.010022110499999987) (0.0100503495) (0.010167649) (0.010368398000000001) (0.010193201499999999) (0.01025595600000001) (0.010320442500000013) (0.010334656000000011) (0.010436090499999995) (0.010526640000000018) (0.01033125650000001) (0.010410098500000006) (0.010579851500000015) (0.010477913999999991) (0.01043727600000001) (0.01040799499999999) (0.010316811500000009) (0.01042773000000001) (0.010330864499999995) (0.010406990500000005) (0.010383184500000003) (0.0105321305) (0.010522470500000006) (0.010692717000000004) (0.010584813499999998) (0.01069843099999998) (0.010592477499999989) (0.010584989000000017) (0.010597890500000012) (0.010442659000000007) (0.010358518499999997) (0.010484765499999993) (0.010395601000000004) (0.010431635999999994) (0.010460356500000004) (0.010808124500000016) (0.011047826499999996) (0.0103979815) (0.010714977) (0.01099507000000001) (0.0108793675) (0.01066977899999999) (0.010744769000000015) (0.010144932499999995) (0.010375830499999988) (0.010015976499999996) (0.01037930649999999) (0.010118383500000008) (0.010127849499999994) (0.010176528500000004) (0.010090377000000011) (0.0102628325) (0.010243913999999993) (0.010203949500000004) (0.010075859500000006) (0.010356766500000003) (0.01034123499999999) (0.010516438000000003) (0.010335481499999993) (0.010065813999999992) (0.010085178) (0.010198853999999993) (0.010104934999999995) (0.0102869025) (0.010075708000000003) (0.010044158500000011) (0.010037931) (0.010387537499999988) (0.010421869500000014) (0.010271905500000011) (0.009983001499999991) (0.010350941500000016) (0.010262178499999997) (0.010132157500000002) (0.010479880999999996) (0.010456960499999987) (0.010446063500000005) (0.010606475000000004) (0.010487539000000004) (0.010409650499999992) (0.010788865499999994) (0.010261994499999996) (0.010370222499999998) (0.010702536999999998) (0.010724453000000009) (0.010485718000000005) (0.0104975405) (0.010879196500000007) (0.010700565499999995) (0.010683446500000013) (0.010649085000000016) (0.01046694899999999) (0.010441564) (0.010331878000000003) (0.010355710000000004) (0.010837891000000002) (0.010257421500000002) (0.010460215499999995) (0.010479610999999986) (0.010595509999999989) (0.010497629000000008) (0.010557056499999995) (0.0103868295) (0.010704360999999996) (0.01066305300000002) (0.010626996499999986) (0.010669591499999992) (0.01242001899999999) (0.012415237999999995) (0.012267371) (0.012454333999999997) (0.012490817500000015) (0.012367299999999998) (0.012382276500000011) (0.012443120999999988) (0.01241640849999999) (0.012770582000000003) (0.012429378500000005) (0.012357391999999995) (0.012468550500000009) (0.012588186500000001) (0.012259877500000002) (0.012272506500000002) (0.012604128500000006) (0.012220908000000003) (0.012320768999999995) (0.012374181500000012) (0.012728430499999999) (0.012762608000000009) (0.0124298885) (0.012581336499999998) (0.01260699450000001) (0.012475688499999998) (0.01262037499999999) (0.012868273000000013) (0.01251885450000001) (0.012355649499999996) (0.012338422500000001) (0.012586819000000013) (0.012588884000000009) (0.012792582999999996) (0.012758262500000006) (0.012843149499999984) (0.012718094499999999) (0.012527010500000005) (0.012884164000000004) (0.012794657000000015) (0.012670575000000017) (0.012870987999999986) (0.012863000000000013) (0.013161622499999998) (0.012677327499999988) (0.012820172000000019) (0.012829226000000013) (0.0128489985) (0.012464877499999999) (0.012514251000000004) (0.012724144999999992) (0.013055585500000008) (0.012498794000000008) (0.012825081500000002) (0.012687176999999994) (0.012653142000000006) (0.012750751000000018) (0.012740754000000007) (0.012898790000000007) (0.012929921000000011) (0.01271204699999999) (0.012607587500000003) (0.01266601399999999) (0.012954185499999993) (0.012261134999999992) (0.012344094) (0.012323225000000007) (0.012310365000000004) (0.012594888999999998) (0.012489330500000007) (0.012583394499999997) (0.012689114000000015) (0.012358571999999998) (0.012449876999999998) (0.012507176500000008) (0.012363898000000012) (0.012306804500000004) (0.012698887499999992) (0.012533742000000014) (0.012404465000000003) (0.012334908000000006) (0.012590206499999992) (0.012516342499999986) (0.012502079999999999) (0.012518154500000003) (0.012267749500000008) (0.012585406999999993) (0.012445410000000004) (0.012544996999999988) (0.012755288000000004) (0.01251711250000001) (0.012414359) (0.012347328500000004) (0.012712945500000003) (0.012395534500000013) (0.01252606199999999) (0.012574453499999999) (0.012763458500000019) (0.012605808499999996) (0.012914272500000004) (0.012849232000000002) (0.012930026499999997) (0.01273654099999999) (0.0128638165) (0.012674736999999991) (0.0127485195) (0.012861743000000009) (0.012804986500000004) (0.012528194500000006) (0.01274131399999999) (0.012541360000000001) (0.012956527499999995) (0.012707813500000012) (0.012820668499999993) (0.01289228399999999) (0.012556904499999993) (0.012456117499999989) (0.013405864000000003) (0.0129061845) (0.013130922000000003) (0.012836412000000005) (0.012816934000000002) (0.012891015000000006) (0.012643876999999998) (0.012960603000000015) (0.012663163500000005) (0.012988015000000006) (0.012875879500000006) (0.012407987499999995) (0.012556051499999998) (0.012493638500000015) (0.012721469499999999) (0.012299009) (0.012559862000000005) (0.012237792999999983) (0.012291585999999993) (0.012483071000000012) (0.012487881999999992) (0.0123878595) (0.01262347150000001) (0.012334592499999991) (0.012648066000000013) (0.012689934) (0.012614294999999998) (0.012834953499999996) (0.012346657999999983) (0.012463409500000008) (0.012342379000000014) (0.012653561500000007) (0.012602041000000008) (0.012952312999999993) (0.01264341649999999) (0.012496684999999993) (0.012331399000000007) (0.012371982000000004) (0.013237642000000008) (0.012484751000000002) (0.012428588000000004) (0.012899408000000001) (0.012348696000000006) (0.012750641000000007) (0.012521221499999985) (0.013318410000000003) (0.012636606000000009) (0.012925276999999999) (0.01297962300000001) (0.012617395000000003) (0.01266394600000001) (0.012619637500000003) (0.012700371999999988) (0.013004015499999994) (0.012621939499999998) (0.012810932499999997) (0.013020574499999993) (0.012707506999999993) (0.012755364499999991) (0.013030883500000007) (0.012844243500000005) (0.012875673000000004) (0.0124273315) (0.012746228499999998) (0.012739324999999996) (0.012701588) (0.012894430000000012) (0.012993840999999992) (0.012620385500000011) (0.01272478099999999) (0.012679167000000005) (0.012592248) (0.012724390500000016) (0.012649115000000002) (0.0127470425) (0.012423923000000017) (0.012425438999999996) (0.01259209) (0.012319142000000005) (0.01237832300000001) (0.012676202500000011) (0.012802193500000003) (0.012478309000000007) (0.0129030225) (0.012783428) (0.012595626499999998) (0.012620331000000012) (0.012516211) (0.012631252999999995) (0.012508477500000004) (0.012479689000000002) (0.012357014999999999) (0.012543490000000004) (0.012612728000000004) (0.0124838605) (0.012432361500000003) (0.01255099200000001) (0.012201195499999984) (0.012369239500000004) (0.0127636) (0.012411389499999995) (0.012692519999999999) (0.012555134999999995) (0.012370840500000008) (0.012766551999999987) (0.012882886499999996) (0.012507828999999998) (0.012796605500000002) (0.012957320000000008) (0.01304284750000001) (0.012945179000000001) (0.012646221000000013) (0.012937449000000004) (0.012841194) (0.012980749) (0.012809172000000008) (0.012731051000000007) (0.012981653499999996) (0.013037352500000002) (0.012736132999999997) (0.012994725499999998) (0.012833074) (0.012587804000000008) (0.012923407499999998) (0.012970385499999987) (0.012581161499999993) (0.012592177499999996) (0.012865725999999994) (0.012879515000000008) (0.012790586500000006) (0.012752396) (0.012689309499999996) (0.012948731000000005) (0.012688528000000004) (0.013045436500000007) (0.012638591500000004) (0.01270815900000001) (0.013137424999999994) (0.0124824625) (0.012366564499999996) (0.01240130099999999) (0.012199410499999994) (0.012229347500000015) (0.012398551999999993) (0.012304889999999999) (0.012232471500000008) (0.012543861500000003) (0.012387086499999991) (0.012659336000000007) (0.012641467000000003) (0.012427615000000003) (0.012530206000000002) (0.012990600500000005) (0.0126883) (0.01250712100000001) (0.012423459499999998) (0.012497119500000015) (0.012526204499999999) (0.012531877499999997) (0.0123990655) (0.012294251499999992) (0.012642178500000004) (0.0122793135) (0.012315777999999986) (0.012372088000000003) (0.012487878500000008) (0.012675673999999998) (0.012323892000000003) (0.012432778000000005) (0.012272211000000005) (0.012485246999999991) (0.0127383675) (0.012744504000000018) (0.012715735000000006) (0.01278434399999999) (0.012461122000000019) (0.013628621000000007) (0.012796648000000008) (0.01273594950000001) (0.012756980000000001) (0.012794769999999997) (0.01297567550000002) (0.012754719499999984) (0.012977810999999992) (0.012671508499999998) (0.012650190999999991) (0.012693833000000002) (0.012597287000000013) (0.0125492445) (0.012891937000000006) (0.012403521) (0.012626872999999997) (0.0128718325) (0.012961238) (0.012662253499999984) (0.012805818499999996) (0.01272280549999999) (0.012679522000000013) (0.01291010350000002) (0.012628337000000003) (0.012934479499999998) (0.012670318) (0.012700993499999993) (0.012619056000000003) (0.012591613000000015) (0.012518443500000004) (0.012515599999999988) (0.012378358000000006) (0.012503918000000003) (0.012287095499999998) (0.012556783000000002) (0.012301810999999996) (0.012619591999999999) (0.012436266500000001) (0.0125607425) (0.012455174) (0.0122798675) (0.012662828000000001) (0.012806135499999996) (0.012264573) (0.012519234000000018) (0.012489128000000002) (0.012511495499999997) (0.012791969499999986) (0.012259565500000014) (0.012480945999999993) (0.012445510000000007) (0.012574823999999998) (0.0123146425) (0.012550471999999993) (0.012576074500000006) (0.012409698999999982) (0.012324602500000004) (0.012364871999999999) (0.012594346499999978) (0.012728113999999999) (0.013165222500000004) (0.012518025500000002) (0.013024355500000001) (0.012693572000000014) (0.012705051999999994) (0.013109257499999999) (0.012811414500000007) (0.012747071999999998) (0.012713031) (0.012819585000000008) (0.01262448599999999) (0.012804945999999984) (0.012907941500000006) (0.012803707500000011) (0.0128789235) (0.012753770000000011) (0.012632056000000003) (0.012442772000000005) (0.012582943500000013) (0.012549403) (0.012606251499999999) (0.012771268000000002) (0.012672614499999998) (0.012788589500000003) (0.012913474500000008) (0.012784258500000006) (0.012614281500000005) (0.012867409999999996) (0.012956294500000007) (0.012781585999999998) (0.013039115000000018) (0.012256238500000002) (0.012485470000000012) (0.012500258499999986) (0.0122511025) (0.013069590500000006) (0.012979672999999997) (0.012366023500000003) (0.012247348500000005) (0.012424319499999989) (0.012311982999999999) (0.012877774500000008) (0.012619926000000004) (0.012302875000000005) (0.012463294500000013) (0.012566807499999999) (0.012200282500000006) (0.012284984499999999) (0.01261324400000001) (0.012491401999999999) (0.012342530000000004) (0.012460611999999996) (0.012481722) (0.012436620500000009) (0.012319086499999993) (0.012712398000000014) (0.012371512499999987) (0.012747180999999996) (0.012564856999999999) (0.012920221499999995) (0.012615391500000003) (0.012444117000000005) (0.012364041500000006) (0.012635350000000004) (0.012947028999999999) (0.012527135999999994) (0.012681168999999992) (0.012948915499999991) (0.012525436000000001) (0.012492143499999997) (0.012646309999999994) (0.012736345499999996) (0.012904195000000007) (0.012760743000000005) (0.012855012999999998) (0.012765175000000004) (0.012629684000000002) (0.012678495499999984) (0.013106554999999992) (0.012534993999999994) (0.012766816499999986) (0.012608436) (0.012911859499999984) (0.01283156499999999) (0.012930175000000016) (0.01272343149999998) (0.012485684999999996) (0.012983462000000001) (0.012684315000000002) (0.012643883999999994) (0.01283595350000001) (0.012798021000000007) (0.01297609050000001) (0.012633268500000017) (0.012838968499999992) (0.012354549000000006) (0.012375614000000007) (0.012468904000000003) (0.012462474000000001) (0.012494544999999982) (0.012230621499999997) (0.012499497500000012) (0.012664407000000003) (0.012514677000000002) (0.012545846000000013) (0.012470813499999997) (0.012522306499999997) (0.013038241500000006) (0.012527135499999995) (0.012638827499999991) (0.012363777499999992) (0.012928117500000003) (0.012384645) (0.0127318815) (0.012523977500000005) (0.012480885499999997) (0.012322103000000001) (0.0122497315) (0.012386347000000006) (0.012465146999999996) (0.012146758500000007) (0.0125309215) (0.01243996800000001) (0.0130918005) (0.012763563000000006) (0.012978036999999998) (0.012678835499999985) (0.012473627000000001) (0.012934184500000001) (0.012757023500000006) (0.012818953999999994) (0.012567385) (0.012742848000000015) (0.012855246) (0.012925786000000009) (0.01282416800000001) (0.012871227999999998) (0.0132836645) (0.012803110500000006) (0.013050079000000006) (0.012757494000000008) (0.013050748000000015) (0.012620791999999992) (0.012647784500000009) (0.012927821500000006) (0.012512125499999999) (0.012678273000000004) (0.012863675000000005) (0.012555365499999999) (0.01258140050000002) (0.012901053999999995) (0.012806776000000006) (0.012941901500000005) (0.012611801000000006) (0.012798034) (0.012723226000000004) (0.012597369499999997) (0.012716521000000008) (0.012632017999999995) (0.012326942500000007) (0.012388872000000009) (0.012383248500000013) (0.012393774499999982) (0.012496496499999996) (0.012178823499999991) (0.012431677999999988) (0.012391133999999998) (0.01235464750000001) (0.012382950000000004) (0.012246368499999993) (0.012718521499999996) (0.012471711999999996) (0.012344776000000002) (0.012482489) (0.012742001500000003) (0.012315533000000004) (0.012623792499999995) (0.012272422500000005) (0.012282128000000003) (0.012251004999999995) (0.012239605499999986) (0.01231367500000001) (0.01264809800000001) (0.012431999999999999) (0.012358051499999995) (0.01270868800000001) (0.012244197999999998) (0.012547581499999988) (0.012667438499999989) (0.012567522499999997) (0.012379045499999991) (0.012536830999999998) (0.012528008499999993) (0.012603266000000002) (0.012728547500000006) (0.01266292149999998) (0.012801459500000015) (0.012708169000000005) (0.012830281999999998) (0.012728808000000008) (0.012878691499999997) (0.012859139500000005) (0.0129544625) (0.01308577200000001) (0.01263325400000001) (0.012822351999999995) (0.012599519000000017) (0.012429609499999994) (0.012628427499999997) (0.012836626000000004) (0.012534303499999983) (0.012460272499999994) (0.012919275000000008) (0.012925886500000011) (0.012817480000000006) (0.012847001999999982) (0.012877974500000014) (0.012955325000000004) (0.012684750500000008) (0.012699841500000003) (0.012702605499999992) (0.012659201000000009) (0.01274795649999999) (0.01222571750000001) (0.012250958499999992) (0.012635395999999993) (0.012694241000000009) (0.012450532500000014) (0.012669009499999995) (0.012473105500000012) (0.012284223499999997) (0.012495853500000001) (0.012792559999999994) (0.012551444500000009) (0.013097665999999994) (0.012756745999999985) (0.01243814850000001) (0.012271927000000002) (0.012336318500000013) (0.01251403899999999) (0.012453029500000018) (0.012231210500000006) (0.012339016499999994) (0.012473867000000013) (0.012638249000000004) (0.012479425000000002) (0.012207863499999999) (0.012733857500000001) (0.012431688499999996) (0.012293044999999989) (0.012755406999999996) (0.012271811999999993) (0.01249815550000001) (0.01259690699999999) (0.01245652450000001) (0.012515610999999996) (0.01273030750000001) (0.013032730499999992) (0.012758338000000008) (0.013033043500000008) (0.012741990999999994) (0.012921613499999998) (0.012731834500000011) (0.012780287999999987) (0.012927323500000004) (0.012766695499999994) (0.012710628500000001) (0.01271378599999999) (0.012743270000000001) (0.012787498999999994) (0.012728720499999985) (0.012747872499999993) (0.012607389999999996) (0.012683133) (0.012599945500000015) (0.012708769499999995) (0.012650227999999986) (0.013022142) (0.012606005000000003) (0.012665215499999993) (0.012962053500000001) (0.012670095000000006) (0.012803519000000013) (0.012970476000000009) (0.013078984000000002) (0.0127690825) (0.012815735000000009) (0.0123353935) (0.012259052000000006) (0.012428323000000005) (0.012600762000000001) (0.012383951000000004) (0.012495406) (0.012224751499999992) (0.012702530000000004) (0.012408781999999993) (0.012389124000000015) (0.01255626750000001) (0.012474667499999995) (0.012391585999999996) (0.0126082795) (0.012603493000000007) (0.012747811999999997) (0.012437748499999998) (0.012643753999999993) (0.012620820000000005) (0.012533230000000006) (0.012307998) (0.012399714500000006) (0.012142118999999993) (0.012601621500000007) (0.01244358650000002) (0.012572003000000012) (0.012478032) (0.012836075000000002) (0.012723673500000005) (0.012564841999999993) (0.012481585500000003) (0.01293216250000001) (0.012735054999999995) (0.012918459499999979) (0.012795542499999993) (0.0126989775) (0.012976618999999995) (0.012636581500000008) (0.012856022999999994) (0.013127136499999997) (0.012887613500000006) (0.012894945000000005) (0.012742612499999986) (0.012650963500000001) (0.012571469000000002) (0.0129270685) (0.012758229999999995) (0.012702254999999996) (0.012713369500000002) (0.012614833000000006) (0.012705978000000007) (0.012715283500000008) (0.012758032000000016) (0.012552923500000007) (0.012836181500000002) (0.012742452000000015) (0.012772055000000004) (0.012898420999999993) (0.012992487000000011) (0.012729014499999997) (0.013128877999999997) (0.01299112500000002) (0.012780849999999996) (0.013414663999999993) (0.012497505500000006) (0.012381476000000002) (0.012263719999999992) (0.012588929499999998) (0.012321161499999997) (0.012935561500000012) (0.012394580499999988) (0.012736405999999992) (0.012647897000000005) (0.012707321000000008) (0.012471037000000004) (0.012533600999999991) (0.012517753000000006) (0.012411716500000003) (0.012294876999999996) (0.012827317500000004) (0.012733309999999998) (0.012284334000000008) (0.012510386999999998) (0.012491582000000001) (0.01265389950000001) (0.01224031199999999) (0.012388560500000007) (0.012473086000000008) (0.012631285999999992) (0.012400750500000002) (0.012497572999999998) (0.01236227049999998) (0.01276381) (0.012530545000000004) (0.012889243999999994) (0.01268909650000001) (0.012681868499999999) (0.01264467950000002) (0.012580723000000002) (0.012770361999999993) (0.012810875) (0.012967166500000002) (0.012654631999999999) (0.012811802999999997) (0.012940829000000001) (0.013146582000000004) (0.012894726999999995) (0.013199858500000008) (0.013042487000000005) (0.01301402900000001) (0.0129848075) (0.012799857999999997) (0.012777833000000002) (0.012715004500000002) (0.012661809999999996) (0.012631992000000009) (0.012624068000000002) (0.012914440999999999) (0.012789765000000008) (0.012557993000000003) (0.012726742499999999) (0.013095661000000008) (0.0130664895) (0.012820948999999998) (0.013455640500000005) (0.012619611000000017) (0.013243511999999999) (0.013052958500000003) (0.012413660000000007) (0.012736774999999992) (0.012211111999999996) (0.012442978500000007) (0.012612270499999995) (0.012611751500000004) (0.012442319500000007) (0.012670808000000006) (0.012524459500000001) (0.012545875999999997) (0.012516158999999999) (0.012852559) (0.012679629999999997) (0.012992325999999998) (0.012550835999999996) (0.01233867349999998) (0.01258012850000001) (0.012451555500000003) (0.012576620999999996) (0.012233092000000001) (0.012342997999999994) (0.012269920000000004) (0.012267364000000003) (0.012210008500000008) (0.012661277500000012) (0.012400545999999998) (0.012597532000000009) (0.012837287499999989) (0.012456445499999996) (0.012803312499999997) (0.012815134999999991) (0.012552778499999986) (0.012896742500000002) (0.012904396999999998) (0.012551483000000002) (0.012642433000000008) (0.01248173100000001) (0.012552459499999988) (0.012607186999999992) (0.012712073500000004) (0.012636301500000016) (0.012811494500000006) (0.012624689499999994) (0.012525332) (0.013170980499999999) (0.012657029) (0.013044417999999988) (0.012748025999999996) (0.012497901500000005) (0.012626086500000008) (0.012831868499999996) (0.012977532499999986) (0.012609760499999997) (0.012529236000000013) (0.01263032750000001) (0.013205895999999995) (0.012816922000000008) (0.012892491000000006) (0.01290710299999999) (0.012912330999999999) (0.012856525999999993) (0.01297087999999999) (0.012681705500000001) (0.012842746000000002) (0.012374383500000002) (0.012647625999999995) (0.012472304500000003) (0.012404449499999998) (0.012497646000000015) (0.012184562499999996) (0.012645152999999992) (0.012441716499999991) (0.012312833999999995) (0.012248326000000004) (0.012493418500000006) (0.012620096500000011) (0.012269583000000014) (0.012593395999999993) (0.012559255500000005) (0.012385276) (0.012347030500000009) (0.012301048000000009) (0.012578194499999987) (0.012313598000000009) (0.012413225999999986) (0.01241391850000001) (0.012507646499999997) (0.012513515500000003) (0.012674441500000008) (0.012349902999999995) (0.012339900000000015) (0.012958837000000015) (0.012491545500000006) (0.012756226499999995) (0.012329358499999998) (0.012397699500000012) (0.012776772500000005) (0.012677230499999984) (0.012547642999999997) (0.01246630650000001) (0.012725024000000015) (0.012670319000000013) (0.012688690500000002) (0.012587762499999988) (0.013102534999999998) (0.012730697) (0.012648687499999992) (0.01298411649999999) (0.012683221999999994) (0.012903573999999987) (0.0129851785) (0.013042554000000012) (0.012825443500000006) (0.012707317999999995) (0.012568635500000008) (0.012581841499999996) (0.012539272500000018) (0.012900959000000004) (0.012564905000000001) (0.012993162000000003) (0.012698087999999982) (0.013351303500000009) (0.012679731999999999) (0.012989884999999993) (0.013045183500000015) (0.0129106165) (0.012884542999999998) (0.012932032499999982) (0.012250440500000001) (0.012360182499999983) (0.012234571500000013) (0.012294771999999995) (0.012699146999999994) (0.012373304500000001) (0.012682171500000006) (0.012625428000000008) (0.012754736000000003) (0.012738345499999998) (0.012503833999999991) (0.012375735999999998) (0.012256423499999988) (0.012320514000000005) (0.012950478999999987) (0.012721096000000001) (0.012614352500000009) (0.0124161505) (0.012462410499999993) (0.012461341999999986) (0.012419935500000007) (0.012520387000000008) (0.012942643500000003) (0.012498574499999984) (0.012400047999999997) (0.012588504499999986) (0.012473389000000001) (0.012433051499999986) (0.012736895500000012) (0.012595661499999994) (0.012262431500000004) (0.012331061000000004) (0.012892598500000005) (0.012637536500000018) (0.012636507500000005) (0.012785969000000008) (0.012702811000000008) (0.012672058) (0.012834793999999983) (0.012879114999999997) (0.012821602500000001) (0.012748161500000008) (0.012721369999999996) (0.013043460499999993) (0.012736247000000006) (0.01254939649999999) (0.012832772999999992) (0.012858238999999994) (0.012706876999999991) (0.012462975000000001) (0.012926822000000004) (0.012607367499999994) (0.012570623500000003) (0.012818830500000003) (0.012725110999999997) (0.012496958500000002) (0.012605093999999997) (0.012566974500000008) (0.012916405999999991) (0.012811703499999993) (0.012769521999999991) (0.012676420500000007) (0.013257928000000002) (0.012827041999999983) (0.012463378999999997) (0.012491719499999998) (0.012590900500000002) (0.012536746000000001) (0.012747424500000007) (0.012270430999999998) (0.012333568500000003) (0.012353060499999999) (0.012738291499999999) (0.01246204749999999) (0.012476021000000004) (0.012593286000000009) (0.01258986899999999) (0.012480842000000006) (0.012325027500000016) (0.012341036) (0.012652911500000016) (0.01271257399999999) (0.012405615000000009) (0.012446168499999993) (0.012292161999999995) (0.012473113500000008) (0.012435493000000006) (0.012502280000000005) (0.01239047850000001) (0.0124021255) (0.012386249500000002) (0.012579684500000007) (0.012514052500000025) (0.012390247500000007) (0.012723087499999994) (0.012566133500000007) (0.012851441500000005) (0.012917332000000017) (0.012791023500000012) (0.012712571499999992) (0.012454948499999993) (0.0128344435) (0.0128140105) (0.01319392300000001) (0.012894935499999996) (0.012904940000000004) (0.012796705000000005) (0.012865405499999982) (0.012805744999999993) (0.013059747999999996) (0.012640450999999997) (0.01272862100000001) (0.012580762999999995) (0.012556242500000009) (0.012784352999999998) (0.01269049650000001) (0.012580512500000002) (0.012760967499999998) (0.012805404000000006) (0.012777295499999994) (0.012927162000000006) (0.013180201000000002) (0.012604041499999996) (0.012846868500000011) (0.012772005999999989) (0.012806536499999993) (0.012832029000000009) (0.012734767500000022) (0.012240264500000014) (0.012437513499999997) (0.012239407000000008) (0.012398113000000002) (0.012383663500000003) (0.01217232700000001) (0.012445216000000009) (0.012380839000000005) (0.012622530499999993) (0.012392624500000005) (0.012151562000000005) (0.012259601000000009) (0.012701099500000007) (0.012815245999999988) (0.0127551105) (0.012399458000000002) (0.012272550999999993) (0.012264894999999998) (0.012379856499999994) (0.012604379999999998) (0.012776707000000012) (0.012266107500000012) (0.01229557499999999) (0.012281365000000002) (0.012676732499999996) (0.012577415000000008) (0.012277754500000015) (0.012420670499999995) (0.012419635499999998) (0.012512288999999996) (0.012511495999999997) (0.012500060500000007) (0.012783394500000003) (0.013019301499999997) (0.012631948000000004) (0.012525969499999998) (0.0125203485) (0.01263154100000001) (0.01282725550000001) (0.012632493000000009) (0.012760845999999992) (0.012854480500000015) (0.012905880000000008) (0.012573264499999987) (0.012691807499999999) (0.012690879000000002) (0.01273311249999999) (0.012885509500000003) (0.012848412000000003) (0.012855325) (0.012495232000000009) (0.012632977000000004) (0.012893313500000003) (0.0128756295) (0.012639638999999994) (0.012798376500000014) (0.013096380500000004) (0.012482615999999988) (0.012601435500000008) (0.012613008500000009) (0.012706400000000007) (0.013056236499999999) (0.012884251) (0.012587109499999999) (0.012220306000000014) (0.01251746949999999) (0.012434521500000004) (0.012098995499999987) (0.012185037499999996) (0.012487224500000005) (0.012657172499999994) (0.012361033500000007) (0.012544703500000004) (0.012283954) (0.013008885999999997) (0.012266412000000004) (0.012670848499999998) (0.012246276500000014) (0.012465669499999998) (0.012356840500000008) (0.0124910035) (0.012276060000000005) (0.012795487999999994) (0.0124499275) (0.012350589499999995) (0.012440619000000014) (0.012678190999999991) (0.012226482999999996) (0.012678356999999987) (0.012238105499999999) (0.012911728999999997) (0.012788728999999985) (0.012647621499999998) (0.012532999500000003) (0.012268884000000008) (0.012801661000000006) (0.012653553999999997) (0.01273518550000001) (0.012553936500000001) (0.012655108499999998) (0.012697818) (0.012803967999999999) (0.012826110500000001) (0.012796215000000014) (0.013314920499999994) (0.012816227500000013) (0.013165487500000003) (0.012628176000000005) (0.013115592499999995) (0.012817428499999992) (0.012759723999999986) (0.013025178499999998) (0.012763469) (0.012861167000000007) (0.012668074500000001) (0.012718306499999998) (0.012784655000000006) (0.012677082500000006) (0.013116003000000001) (0.012681695000000007) (0.012884210000000007) (0.012924320000000003) (0.012822230500000004) (0.012777852000000006) (0.013006069499999995) (0.013213475000000002) (0.012724747000000008) (0.012830881000000002) (0.012402176) (0.012239043000000005) (0.012666436500000003) (0.01261664300000001) (0.012567483000000004) (0.012538724000000001) (0.012303111999999991) (0.012604593499999983) (0.0124677225) (0.012561385000000008) (0.012534089499999998) (0.012528806000000003) (0.012468888499999997) (0.012346479500000007) (0.012476882000000009) (0.012613238499999985) (0.012359931500000018) (0.012973341499999999) (0.012688467499999995) (0.012687100000000007) (0.012216207000000007) (0.012413879000000003) (0.01223783299999999) (0.012625361000000002) (0.012440037000000001) (0.01238992350000001) (0.012542441500000001) (0.012385859999999999) (0.012593340500000008) (0.012482269000000004) (0.012365421500000001) (0.012435399000000014) (0.013087801999999996) (0.012630892500000004) (0.012584194000000007) (0.012973237000000012) (0.012677722500000002) (0.012772521999999994) (0.012582190000000007) (0.012529783500000002) (0.013063857500000012) (0.013524565499999988) (0.012713183000000003) (0.013344212500000008) (0.013231280499999998) (0.013061271500000013) (0.012597687499999996) (0.01292039049999999) (0.012850227499999992) (0.012726598999999991) (0.012629642499999996) (0.012605871000000018) (0.013112819499999998) (0.012704654499999996) (0.012659377999999999) (0.012549049999999992) (0.012714824) (0.01275052850000001) (0.012777444499999999) (0.012528057999999995) (0.01264875650000001) (0.012995614500000002) (0.012589584000000001) (0.01295278300000001) (0.012470264500000008) (0.012305717500000021) (0.012354166500000013) (0.012305670000000005) (0.01241026050000002) (0.012598183999999998) (0.013012009000000005) (0.012476971000000003) (0.012355862000000009) (0.012604458499999999) (0.01250120149999999) (0.012560034000000012) (0.012541409000000003) (0.012651381500000003) (0.012491238500000001) (0.012325798000000013) (0.012710043000000004) (0.012571531999999996) (0.012589973500000004) (0.012382637500000016) (0.012644635500000001) (0.012573690499999998) (0.012417961500000005) (0.012395150500000007) (0.012592483000000002) (0.012563247999999999) (0.012300571999999996) (0.012731343000000006) (0.012787141500000002) (0.012275205000000011) (0.012659591499999998) (0.012486775500000005) (0.012854617999999998) (0.012600673000000007) (0.01262930150000001) (0.012889124500000002) (0.012788115000000003) (0.012898905500000002) (0.013047050000000004) (0.012685359500000007) (0.012742346000000002) (0.012676082500000005) (0.01293438899999999) (0.013039811499999998) (0.013178444999999997) (0.012719288499999995) (0.012984708999999997) (0.0126611145) (0.012721272500000005) (0.012923365500000006) (0.012728298499999999) (0.012970877500000005) (0.012609901499999993) (0.013000825999999993) (0.012655135999999997) (0.012660979999999988) (0.012832158499999996) (0.012899832) (0.012895713500000003) (0.012775669500000003) (0.013215765000000004) (0.013304436000000003) (0.01276988900000002) (0.012772675999999983) (0.012257779499999996) (0.012385175999999998) (0.012378214999999998) (0.01240836499999999) (0.012390297000000008) (0.012577325000000014) (0.012090534999999986) (0.012260238000000007) (0.012213441000000005) (0.012546799500000011) (0.012601631000000002) (0.012345663500000006) (0.012973486000000006) (0.012438762999999992) (0.012407442000000005) (0.012494265500000004) (0.012702408499999998) (0.012219634500000007) (0.012418467500000002) (0.012477866000000018) (0.012584569000000004) (0.012223957500000007) (0.012816862499999984) (0.012340055000000003) (0.012676745500000003) (0.01256252749999999) (0.012610444499999984) (0.012442016999999986) (0.01233042099999998) (0.012486649000000002) (0.012693030000000022) (0.012527269500000007) (0.012678915499999999) (0.01263496900000001) (0.012433614999999995) (0.012628413000000005) (0.012576769000000002) (0.012852804999999995) (0.012469097500000012) (0.012829327500000001) (0.012839956000000013) (0.012872210000000009) (0.01301082349999999) (0.012583461500000004) (0.012860961000000004) (0.012905820000000012) (0.012914487000000002) (0.012762175) (0.012705468999999997) (0.012519874) (0.012765775999999993) (0.012940797000000004) (0.012776244000000006) (0.01289805300000002) (0.012560065499999995) (0.012659874500000001) (0.012667614500000007) (0.012765349499999995) (0.012856269000000003) (0.012880981499999986) (0.013166153499999986) (0.01315471650000001) (0.012635895499999994) (0.012597899499999995) (0.01245002549999999) (0.012685539999999995) (0.012220206499999997) (0.01211574700000001) (0.012586194499999995) (0.012175754499999997) (0.012638340999999997) (0.012426751000000014) (0.0124654015) (0.012441195499999988) (0.012860320500000008) (0.012213543000000007) (0.012472005999999994) (0.0124460495) (0.012661614000000002) (0.012432921999999999) (0.012262251000000002) (0.012244190000000002) (0.0123028045) (0.012321481499999995) (0.01284249500000001) (0.01239618449999999) (0.012471301000000018) (0.012518505999999985) (0.012316100999999996) (0.012437102499999991) (0.012325918499999991) (0.01266937500000001) (0.012322182000000001) (0.012583432499999991) (0.012435040000000008) (0.012605399500000017) (0.012707650499999987) (0.012699219999999997) (0.012832332500000002) (0.0125902975) (0.0133921345) (0.012703736999999993) (0.012590116000000012) (0.012543976499999998) (0.013337021000000004) (0.012884833499999998) (0.012512638999999992) (0.012693721000000005) (0.012890742999999996) (0.013015358500000004) (0.012893971000000018) (0.012898931999999988) (0.012577502000000004) (0.012706083999999992) (0.0128445965) (0.013051767999999991) (0.012554862) (0.012714134500000002) (0.012644731000000006) (0.012557866) (0.012937970999999993) (0.012831429500000005) (0.01276738999999999) (0.012870984500000002) (0.013302544999999985) (0.012675568500000012) (0.012461189000000025) (0.012823197999999994) (0.012377580499999985) (0.012168866000000014) (0.012165696500000003) (0.0125531225) (0.012420786500000003) (0.012255571500000007) (0.012284035999999998) (0.012358107499999993) (0.0124925335) (0.012524122000000013) (0.012357150500000011) (0.012445684499999998) (0.012429905000000005) (0.012297740000000001) (0.01253870850000001) (0.012577168) (0.012405464500000005) (0.012327867000000006) (0.012833963500000004) (0.012663597500000012) (0.012645497499999991) (0.012703027500000005) (0.012672865999999991) (0.012371675499999985) (0.012512700000000002) (0.012562882000000011) (0.012350247499999994) (0.012434198000000007) (0.012519305499999994) (0.012386658000000009) (0.012396972500000006) (0.012572486000000008) (0.012509054500000005) (0.012848742999999996) (0.012497052000000008) (0.012744021499999994) (0.012996874000000005) (0.012565725) (0.012977044499999993) (0.012461415500000003) (0.01277515600000001) (0.012615259000000004) (0.012747358999999986) (0.012870730999999996) (0.012879011999999995) (0.012707061499999991) (0.012987658) (0.012575605500000003) (0.012822078) (0.012704331) (0.012555859000000003) (0.012689095499999997) (0.013122147) (0.012525282999999998) (0.012800275500000013) (0.012591870499999977) (0.013018849999999998) (0.012889376499999994) (0.012791967000000001) (0.012956347999999993) (0.01261519500000001) (0.012735692500000007) (0.012780948) (0.012546491000000007) (0.012322384999999991) (0.012236332000000003) (0.012323219499999996) (0.012457584999999993) (0.012364778500000007) (0.012288715500000005) (0.01236892249999999) (0.012230332499999996) (0.012521522500000007) (0.012524971499999996) (0.012362056499999996) (0.012546931499999997) (0.012482850500000017) (0.012866939000000008) (0.012278617500000005) (0.012711516000000006) (0.012487326000000007) (0.012272152000000008) (0.012803286999999997) (0.012321370500000026) (0.0126571345) (0.012584393) (0.012537582500000005) (0.012419417000000016) (0.012756670999999997) (0.012631631500000004) (0.012668758000000002) (0.012764610999999995) (0.012620670500000014) (0.012650124999999998) (0.012586618999999993) (0.013124576999999998) (0.012630280999999993) (0.012559072000000018) (0.012663220500000003) (0.01282227100000001) (0.013061315500000004) (0.01274639200000001) (0.012855912000000011) (0.012572591500000008) (0.012859514499999988) (0.013083270499999994) (0.012708579999999983) (0.012860739999999996) (0.012952457500000014) (0.012644098500000006) (0.012856847000000005) (0.012794053000000014) (0.012874557499999995) (0.013170065999999994) (0.012801320000000005) (0.012551086000000003) (0.012708625000000001) (0.0126203815) (0.012963403999999998) (0.01269683499999999) (0.012915003499999994) (0.01270738149999999) (0.012603621499999995) (0.012819477499999996) (0.012722834500000002) (0.01292338300000001) (0.012841038499999985) (0.012673144500000011) (0.012723652000000002) (0.012634439999999997) (0.0124381405) (0.012559433000000009) (0.012562628999999992) (0.012347984000000006) (0.012618682499999992) (0.012506663000000015) (0.012274529499999978) (0.012598947999999985) (0.012582068000000002) (0.012652020000000014) (0.012673514499999983) (0.012297730000000007) (0.012671743) (0.012557282500000017) (0.012615639500000012) (0.012634783499999996) (0.012486910000000004) (0.01255653850000002) (0.012598351000000008) (0.012417863000000001) (0.01214757200000001) (0.012387067000000002) (0.012540347000000007) (0.012358280499999999) (0.01275190250000001) (0.012524358) (0.012782702500000007) (0.012607435) (0.012689550000000008) (0.0127599345) (0.012707265999999995) (0.012672609499999987) (0.012744601500000008) (0.012667544500000003) (0.01283988300000001) (0.013042841999999985) (0.012653403000000008) (0.013135750499999987) (0.012885469499999996) (0.012892102500000002) (0.01267275150000001) (0.012994206500000008) (0.012940714500000006) (0.012888131499999983) (0.012607674499999985) (0.013044079000000014) (0.012904695500000007) (0.012612820999999996) (0.012862283999999988) (0.012501422999999998) (0.012639061499999993) (0.01252642150000001) (0.012747330500000015) (0.012561894500000004) (0.012903164000000009) (0.012613230499999989) (0.012615547500000004) (0.012797997000000005) (0.012689926500000004) (0.01251616550000001) (0.012772475499999991) (0.012635262500000008) (0.012528152999999986) (0.01240657249999999) (0.01259034249999999) (0.012285763000000005) (0.012824689000000014) (0.012447214000000012) (0.012324702500000007) (0.012326697000000011) (0.0124770845) (0.012401730000000014) (0.012535014999999983) (0.01242175899999999) (0.0123920795) (0.01263782649999999) (0.012506366500000005) (0.012328836999999995) (0.012570433500000006) (0.01273392000000001) (0.012406462000000007) (0.012378766999999999) (0.012460056499999997) (0.012418205500000015) (0.012297202499999993) (0.012533572499999993) (0.01258923549999999) (0.01266508450000002) (0.012448202000000005) (0.0122863805) (0.012640295999999995) (0.012503044000000019) (0.012488203499999989) (0.012586322000000011) (0.012906907499999995) (0.012886487999999988) (0.01273513350000001) (0.012894733500000005) (0.012900323000000005) (0.012737262000000013) (0.012871740500000006) (0.012633580499999991) (0.012732182500000008) (0.012839371000000002) (0.012559442500000004) (0.012920846000000014) (0.012952906) (0.013284032999999987) (0.01268714500000001) (0.012768172000000008) (0.01289863799999999) (0.012657167999999996) (0.012564743499999989) (0.012792956500000022) (0.012985854500000005) (0.012666901500000008) (0.012556026499999998) (0.012577360499999996) (0.013137290499999996) (0.012540085999999992) (0.012805730500000001) (0.012732565499999987) (0.01272475250000002) (0.012656123499999991) (0.012915417999999998) (0.012657796499999999) (0.01247127349999999) (0.012614984999999995) (0.0125736335) (0.012545055500000013) (0.012469591500000016) (0.012424684999999991) (0.01259621150000001) (0.012278128999999999) (0.01273710850000001) (0.012450647500000009) (0.01243699799999999) (0.012520959999999998) (0.012490101500000003) (0.012356949999999992) (0.013003158499999987) (0.01244663) (0.012813269500000002) (0.012465234499999991) (0.012655771999999996) (0.012464235000000018) (0.012539535000000004) (0.012437265000000003) (0.012494528500000004) (0.012437712500000003) (0.012237893) (0.013080971999999996) (0.012434453000000012) (0.012571996000000002) (0.012837143999999995) (0.013190364499999996) (0.01277970249999999) (0.012795150499999991) (0.012784094499999996) (0.012753418999999988) (0.012642644500000008) (0.012631269) (0.012801662500000005) (0.012474860000000018) (0.012431222500000005) (0.012819801499999992) (0.012546181500000003) (0.013191046499999998) (0.013022883000000013) (0.012740255500000006) (0.012874160499999981) (0.012736911000000004) (0.012815791499999993) (0.012769659000000003) (0.012636412500000013) (0.012906807000000006) (0.012815233499999995) (0.012601309500000005) (0.012657367500000002) (0.012726336500000004) (0.012971297499999992) (0.012641112999999995) (0.012762754000000001) (0.012991465499999993) (0.01264761099999999) (0.012828247000000001) (0.012803644500000003) (0.012812530499999988) (0.012633726500000012) (0.012717774499999987) (0.012745478000000005) (0.012533356499999995) (0.012664805000000001) (0.012747835999999999) (0.01220430950000001) (0.012598279500000004) (0.012244923500000005) (0.012332238500000009) (0.01237983999999999) (0.012455838999999982) (0.012314023500000007) (0.012505996500000005) (0.012522459) (0.012688847500000003) (0.0123316225) (0.012554577500000011) (0.012945292999999997) (0.012902909000000004) (0.012382035500000013) (0.012350235999999987) (0.012173141000000012) (0.012459445) (0.012366074500000004) (0.012648054000000006) (0.012460519499999989) (0.013098875999999995) (0.012524294500000005) (0.012490543499999993) (0.012346206999999998) (0.012603591000000011) (0.0127216795) (0.012456006499999991) (0.012629762999999988) (0.012646778499999997) (0.012695206499999986) (0.012893611) (0.013099528500000013) (0.012907954) (0.012766374000000011) (0.012805732000000014) (0.01271202049999999) (0.013303687499999994) (0.012642942000000004) (0.013287291000000007) (0.013005751999999995) (0.012875757000000002) (0.013021427000000002) (0.012707283000000014) (0.012727659500000002) (0.013761160499999994) (0.012946368999999985) (0.013047460999999996) (0.012763423999999995) (0.012940344999999992) (0.012967072999999996) (0.012759763999999993) (0.013187926499999988) (0.012916881500000005) (0.013301214999999991) (0.013343949500000007) (0.012673062999999998) (0.012800828) (0.012823190999999984) (0.012968308499999998) (0.01290701150000001) (0.012156028499999999) (0.012399911999999999) (0.012295021999999989) (0.0124150955) (0.012439761499999993) (0.012301276499999986) (0.012450659500000016) (0.012478984499999984) (0.012361561999999993) (0.01242256600000001) (0.012279694499999994) (0.012487481499999994) (0.012226988999999994) (0.0126147915) (0.012695594000000004) (0.012421871499999987) (0.012694546999999987) (0.012582063500000004) (0.012445193499999993) (0.012500055499999996) (0.012400871999999993) (0.012604956) (0.012624947999999997) (0.012757258500000007) (0.012609713999999994) (0.012658393500000004) (0.012672329499999996) (0.012535805499999997) (0.012372110499999991) (0.01255940500000001) (0.012319897999999996) (0.012277781500000001) (0.012901930499999992) (0.012641097500000004) (0.012658493500000007) (0.012718168000000002) (0.012430863) (0.012685744499999999) (0.012611463500000003) (0.01286060800000001) (0.012731501000000006) (0.01277735449999999) (0.012827806499999997) (0.012543122500000017) (0.012791298000000006) (0.012882961499999998) (0.012828853500000015) (0.012676809000000011) (0.012842999999999993) (0.012775486000000003) (0.013031438500000006) (0.012700014499999995) (0.012561218499999999) (0.012574242000000013) (0.012661050000000021) (0.012616771499999999) (0.012763060499999992) (0.012989262000000015) (0.01266568400000001) (0.012952773) (0.01290909350000001) (0.012876158999999998) (0.012955273999999989) (0.0131831835) (0.012447644500000007) (0.012324394500000002) (0.012419078000000014) (0.0128957185) (0.012280269999999996) (0.012285777500000011) (0.01280423600000001) (0.012562535) (0.0127665275) (0.012286924000000005) (0.012455196499999988) (0.012417467000000015) (0.012590867999999991) (0.012631614999999999) (0.012248072499999998) (0.012402127999999984) (0.012626473499999999) (0.012495133500000005) (0.012452067999999997) (0.012409477000000016) (0.012483684000000009) (0.012438804000000012) (0.0124229525) (0.01261060750000001) (0.012300907499999986) (0.01230708450000001) (0.012600173499999992) (0.012434986000000009) (0.012344857) (0.012324227999999993) (0.012727445500000004) (0.012401494499999999) (0.013087979) (0.012630405000000011) (0.012566159999999993) (0.0129833585) (0.012697559000000011) (0.01255208549999999) (0.012838521500000005) (0.012899608500000007) (0.012748133999999994) (0.013139159999999983) (0.01306133999999999) (0.012866847) (0.012685843999999988) (0.01283157700000001) (0.012906296499999997) (0.01272822699999998) (0.012895483499999985) (0.012800006499999989) (0.012644455999999998) (0.01288017050000001) (0.01291716100000001) (0.013045055) (0.01250712000000001) (0.012652885000000016) (0.012661946999999993) (0.012845764499999995) (0.012985763499999997) (0.012816379500000016) (0.012957984000000006) (0.012924524500000006) (0.013069123499999988) (0.012604671499999998) (0.012330448499999994) (0.012467396500000005) (0.012677763500000008) (0.012547027500000002) (0.01261456150000001) (0.012725655000000002) (0.012861449000000011) (0.0126063025) (0.012721004999999994) (0.012561217999999985) (0.012763042500000002) (0.012509341999999993) (0.012661736000000007) (0.012167745999999993) (0.012421396500000001) (0.012506436999999995) (0.012396610000000002) (0.012301199999999998) (0.012427315000000008) (0.012452098000000009) (0.012331441000000012) (0.0126986865) (0.012557825499999994) (0.012356824000000002) (0.012664338999999997) (0.012550893999999993) (0.012338537499999996) (0.012397804000000012) (0.012447139500000023) (0.0124007025) (0.012157288499999988) (0.012232828500000015) (0.012561690500000014) (0.013402115499999992) (0.012747522999999997) (0.01267808749999999) (0.012539659000000022) (0.012935401000000013) (0.012926222500000015) (0.012935703499999993) (0.012830590000000003) (0.01255980000000001) (0.013004274499999996) (0.012786704999999995) (0.012793383500000005) (0.012763827000000005) (0.012770079000000004) (0.012787770000000004) (0.012812077500000005) (0.012738020500000002) (0.012635879500000016) (0.012638053499999996) (0.013217758499999996) (0.013095252500000001) (0.012640798999999994) (0.012834024999999999) (0.012808144000000007) (0.013258563000000015) (0.01286596199999998) (0.013346085999999993) (0.01276382700000002) (0.012887746500000005) (0.012984027999999995) (0.01271325500000002) (0.012347297500000007) (0.01230742) (0.012785387500000009) (0.012549776999999998) (0.012316361499999998) (0.013093210500000008) (0.012330004000000006) (0.0125569195) (0.012454552500000007) (0.012396009000000013) (0.012363943500000016) (0.012706049000000011) (0.012385676499999984) (0.012501205499999987) (0.013105262000000006) (0.01264410349999999) (0.012929456499999992) (0.012447547999999989) (0.012578337000000009) (0.012360248500000018) (0.012346781000000001) (0.012412878000000002) (0.013207267499999994) (0.012540676500000014) (0.012641766999999998) (0.012439349000000002) (0.012586701500000005) (0.012602227000000021) (0.012698644499999995) (0.012527182499999984) (0.012607779499999985) (0.012791044500000001) (0.013074280000000021) (0.012552757499999997) (0.012819095499999988) (0.012976421500000015) (0.01259901799999999) (0.012981882) (0.012785453500000002) (0.013043311000000016) (0.012798059) (0.012717747500000015) (0.012720079000000009) (0.012848756000000017) (0.013043238499999985) (0.01265877850000001) (0.0129793765) (0.013164413) (0.012535639000000001) (0.012496887999999998) (0.012801136500000018) (0.01277537899999999) (0.012704983000000003) (0.012942133999999994) (0.012713806500000008) (0.012614121500000006) (0.012834975999999998) (0.012684351999999996) (0.01263865900000001) (0.012882478999999988) (0.012807181) (0.013064236000000007) (0.01292597999999999) (0.012581802499999989) (0.012221494000000013) (0.012400397499999993) (0.012188655500000006) (0.01224879600000002) (0.012520721000000012) (0.012221103000000011) (0.0122854295) (0.0124907945) (0.012452664000000002) (0.012412546499999982) (0.012665531500000007) (0.012376112499999994) (0.012476731500000005) (0.012354980500000001) (0.012392841000000016) (0.012672542499999995) (0.012368265500000003) (0.012648172999999999) (0.01247264250000002) (0.012504974499999988) (0.012306923499999997) (0.012208686499999996) (0.013057701000000019) (0.012546683000000003) (0.012450932499999998) (0.012408319500000015) (0.012691926000000006) (0.012406687500000013) (0.012822733500000003) (0.012608706000000011) (0.012786075499999994) (0.012569849999999994) (0.012714235500000004) (0.012823934499999995) (0.012476328499999995) (0.012593002999999992) (0.012909775999999998) (0.012928624) (0.012599239499999998) (0.01305488099999999) (0.013127929499999996) (0.012961671999999994) (0.012624225499999989) (0.012747205499999997) (0.012704562000000003) (0.01321119350000001) (0.012933607) (0.012891483499999995) (0.0125619005) (0.012676850500000003) (0.0128659795) (0.012405872499999984) (0.01289097950000001) (0.012605402000000002) (0.01252970099999999) (0.0127586695) (0.012825755500000008) (0.012835893499999987) (0.012867094999999995) (0.012714192500000013) (0.012929159999999995) (0.012814997000000009) (0.013158905500000012) (0.012921204999999991) (0.012585714500000011) (0.012451080000000003) (0.012378153500000003) (0.01280100499999999) (0.012949423000000002) (0.012835385000000019) (0.012543219499999994) (0.013015029999999997) (0.012609703500000013) (0.012416514500000003) (0.01271533050000001) (0.012621703500000012) (0.012786932) (0.012359133000000008) (0.012780169500000008) (0.012363742499999997) (0.01238578500000001) (0.012849565999999993) (0.012287450500000005) (0.0128723845) (0.012432754500000004) (0.012965335499999994) (0.0126287915) (0.012298361499999994) (0.0122777035) (0.012576718) (0.012542139499999994) (0.012311679500000006) (0.012574798500000012) (0.012799300999999999) (0.012609501499999995) (0.012528049) (0.0129689615) (0.012903638499999995) (0.013001952999999997) (0.012804488499999989) (0.012673971500000006) (0.012577103500000006) (0.012714007) (0.012702912499999996) (0.012982598500000012) (0.012724261999999986) (0.012617602500000005) (0.012921208500000003) (0.012806858500000004) (0.012662464499999998) (0.013053557000000007) (0.012966843500000005) (0.01273687100000001) (0.012582157499999996) (0.012692165000000005) (0.013077671000000013) (0.012469019499999998) (0.012923265499999989) (0.012679809) (0.012677230499999997) (0.012682139500000009) (0.012788512000000002) (0.012835498) (0.01268375549999999) (0.012756961499999983) (0.013031438500000006) (0.012810533500000013) (0.012847237000000011) (0.012461977499999999) (0.012330263499999994) (0.01230774200000001) (0.012390276499999991) (0.012433688999999998) (0.012445245000000008) (0.012486573) (0.0123640015) (0.01230673950000001) (0.012334126) (0.012639968500000015) (0.012483749000000016) (0.012771825) (0.01238581300000001) (0.01240335799999999) (0.012681017500000002) (0.012466452000000003) (0.012540938999999987) (0.01294938000000001) (0.01254964750000001) (0.012247306999999999) (0.0123367635) (0.012288082500000005) (0.012414434499999988) (0.012395444500000005) (0.012500172000000004) (0.012468925000000006) (0.01262539850000001) (0.012512843499999982) (0.012440208000000008) (0.012914297000000005) (0.012599030000000011) (0.012794388500000003) (0.012780115499999994) (0.012632857499999997) (0.012785138000000001) (0.012537254500000011) (0.013140829499999993) (0.012737442499999987) (0.013068623500000001) (0.012928599499999999) (0.012827104500000006) (0.0128930835) (0.013271266500000004) (0.013086918499999989) (0.012542019500000001) (0.012800565) (0.012691708999999995) (0.012845165500000005) (0.012573138499999983) (0.012897956500000002) (0.01303484299999999) (0.012866745499999999) (0.012944458500000006) (0.012875913000000003) (0.012987143499999992) (0.013145022000000006) (0.0127146115) (0.012657362999999991) (0.012731594999999998) (0.012658651999999992) (0.012934103999999988) (0.012917666500000008) (0.01284681800000001) (0.012294908000000007) (0.012307443999999987) (0.01244373800000001) (0.012326127999999992) (0.012382796000000001) (0.012427758000000011) (0.012179697999999989) (0.0123571975) (0.012389640000000007) (0.012457860500000001) (0.012974085999999996) (0.012403493000000002) (0.012492747499999998) (0.012678776000000003) (0.012602353499999996) (0.012803356000000016) (0.012493847000000016) (0.012268395000000001) (0.012463765500000001) (0.012333477500000009) (0.01238927649999999) (0.012339879999999984) (0.012290682499999997) (0.012489948500000014) (0.012492873000000002) (0.012507425000000003) (0.01290110650000001) (0.012732978499999992) (0.012586467000000004) (0.012626124500000002) (0.012559372499999999) (0.012226649499999992) (0.0128864655) (0.012777756500000001) (0.012721602500000012) (0.012675866499999994) (0.012599278499999991) (0.013155529999999985) (0.012886793499999993) (0.012971029000000009) (0.012707619500000003) (0.012959732000000002) (0.012860852499999992) (0.013010866499999996) (0.012730027000000005) (0.012809263000000001) (0.0128454655) (0.012760536000000003) (0.012768976500000015) (0.012720584000000007) (0.012605206500000007) (0.012961142500000009) (0.012663187500000006) (0.012663269500000005) (0.013020905000000013) (0.012745849000000004) (0.012731658000000007) (0.012824344999999987) (0.013028847999999982) (0.012604815499999991) (0.01259367850000001) (0.012749155999999998) (0.012672062500000011) (0.012926767000000006) (0.012332109000000008) (0.012455623499999999) (0.012751377500000022) (0.012280182) (0.012200064999999996) (0.012435360499999992) (0.012625761499999999) (0.012580672000000015) (0.012573600000000004) (0.012629299999999996) (0.012319601999999999) (0.012810560999999998) (0.012614743499999997) (0.012578750500000013) (0.012417504999999995) (0.012498997500000011) (0.012828016999999997) (0.012621049499999995) (0.012078367999999992) (0.012524656999999995) (0.012409845000000003) (0.01216445549999999) (0.012129465999999992) (0.012490165499999997) (0.012495559999999989) (0.01230749049999999) (0.012821239999999998) (0.01224900050000001) (0.012372354500000002) (0.012374070000000001) (0.012447060499999996) (0.012463338000000004) (0.012867549499999992) (0.012919024500000001) (0.012648232499999995) (0.013157797999999984) (0.012615179500000004) (0.012827409000000012) (0.01281329199999999) (0.012637418999999983) (0.013044423999999985) (0.012622074499999997) (0.012778955500000008) (0.01285240850000001) (0.012883079500000005) (0.012975528) (0.012560784499999991) (0.01292233050000001) (0.012918485499999993) (0.012807590000000021) (0.012626439500000003) (0.012662507999999989) (0.01253421149999999) (0.013020062499999999) (0.012876283000000002) (0.012724777000000007) (0.013092790999999993) (0.012884749000000001) (0.013308646500000007) (0.012639972999999999) (0.012741511999999997) (0.012733012500000002) (0.012687908500000011) (0.012932064999999993) (0.012435648000000007) (0.012381096499999994) (0.012517070499999991) (0.01260513499999999) (0.01239233599999999) (0.01228852900000002) (0.012513444999999984) (0.012286941999999995) (0.012651159999999995) (0.012303918499999997) (0.012495272499999988) (0.012436534999999999) (0.01234910950000001) (0.012551746500000002) (0.012670739) (0.012322001500000013) (0.012506312500000005) (0.012349065499999992) (0.012184856499999994) (0.012195804500000004) (0.012567863499999998) (0.012256660500000002) (0.012484173500000001) (0.012595670500000003) (0.012537763000000007) (0.012668547000000002) (0.012585924000000012) (0.012520871000000017) (0.012259229999999996) (0.012254874499999999) (0.012446910999999991) (0.012386736999999995) (0.012609839499999997) (0.012880612999999999) (0.012743745) (0.01304678749999999) (0.013113786999999988) (0.01282717500000001) (0.012656509999999996) (0.012648720500000002) (0.012967088499999987) (0.01270009900000002) (0.013236950499999997) (0.012722791000000011) (0.012549414499999995) (0.013113042999999991) (0.012829312499999981) (0.013195279000000004) (0.012671400500000013) (0.01271096649999999) (0.012867880499999998) (0.01280928499999999) (0.012989662500000013) (0.012604600999999993) (0.012641707000000002) (0.01262610950000001) (0.012719952000000007) (0.012843392000000009) (0.012755930999999998) (0.013508610500000004) (0.012760566000000001) (0.012567245000000005) (0.012669222000000008) (0.013292913500000003) (0.012588405000000025) (0.01273734) (0.012438497499999993) (0.012424970999999993) (0.013073724000000009) (0.012341249999999998) (0.012578234000000008) (0.012300802499999985) (0.01269736149999999) (0.012412006500000003) (0.012263529000000009) (0.012678697500000002) (0.01228061250000001) (0.012558753999999991) (0.012425766000000005) (0.012682601500000001) (0.012823256500000005) (0.012721739499999996) (0.01247504649999999) (0.012431306499999989) (0.012580272999999989) (0.012256785499999992) (0.01252222) (0.012340615499999985) (0.012671584) (0.012413001999999992) (0.012394230500000006) (0.012734964500000015) (0.012364880999999994) (0.012758674499999997) (0.012534775999999997) (0.012583778500000004) (0.012690503499999992) (0.012910351) (0.012688037500000013) (0.012861654) (0.01263218499999999) (0.012937238000000004) (0.01283620349999999) (0.013041886500000002) (0.012965677000000009) (0.012858037999999988) (0.012947952500000012) (0.013807846499999998) (0.013032495000000005) (0.012658720999999998) (0.012720385) (0.012707378500000005) (0.012473197000000005) (0.012704466499999997) (0.012781402499999983) (0.012677860499999999) (0.012862349500000009) (0.012619497500000021) (0.01275042400000001) (0.012753274999999994) (0.013140269499999996) (0.012752813500000015) (0.012760643500000016) (0.012803952000000007) (0.0128232405) (0.01273244200000001) (0.013003179500000017) (0.013061973500000004) (0.012287624499999997) (0.012360083499999994) (0.012474590999999993) (0.012364459499999994) (0.012371453000000004) (0.01246431549999999) (0.012407125500000005) (0.012436834000000008) (0.012583525500000012) (0.012683616499999995) (0.01266501049999999) (0.012586239999999999) (0.012533659500000016) (0.012362435500000005) (0.0125379075) (0.012276257499999998) (0.012790782500000014) (0.01268029200000001) (0.012171797000000012) (0.012210875999999996) (0.012654820499999997) (0.012229338499999992) (0.0124900035) (0.012519600000000006) (0.012685871500000001) (0.012585964500000005) (0.012449900999999985) (0.01234064700000001) (0.012469027499999993) (0.012445530999999996) (0.012651708499999997) (0.012717475999999978) (0.012671780999999993) (0.012572643500000008) (0.0126804415) (0.012626405000000007) (0.012573410500000007) (0.012867735000000005) (0.012789876000000006) (0.012781079) (0.013332604999999983) (0.013370858000000013) (0.013060547000000006) (0.013151440499999986) (0.012691500999999994) (0.013128585999999998) (0.01268894050000001) (0.01255608200000001) (0.013004210500000002) (0.01271198200000001) (0.012618902499999987) (0.012926346000000005) (0.012656652500000004) (0.012831451999999993) (0.0127203605) (0.012809525000000002) (0.012753259999999988) (0.012704213000000006) (0.013444164000000008) (0.012733367000000023) (0.012657875499999999) (0.012752019000000003) (0.012744298000000001) (0.0126669175) (0.012358494999999983) (0.012313626999999994) (0.012542613500000008) (0.01213420300000001) (0.012566900499999992) (0.012209019500000001) (0.01223386) (0.01238621749999999) (0.012509827000000001) (0.012263146000000003) (0.012286479500000003) (0.01238167200000001) (0.012508892499999993) (0.012302367500000008) (0.01266142050000002) (0.013713847000000015) (0.012304045) (0.012407197000000009) (0.012605437999999997) (0.012563200499999996) (0.012761990000000015) (0.012482415499999996) (0.012471284) (0.012270847000000001) (0.012850417500000016) (0.012422231000000006) (0.012171457999999996) (0.012756036500000012) (0.012579210500000007) (0.012342032500000003) (0.01228164150000001) (0.012452435000000012) (0.012792789999999998) (0.012590187500000002) (0.012588889500000006) (0.012788867499999995) (0.012510231999999996) (0.012686333499999994) (0.012755713000000002) (0.012778041500000004) (0.012975292499999985) (0.012928225500000015) (0.012872910000000001) (0.01290532749999998) (0.012791190499999994) (0.012950999500000004) (0.012795439499999992) (0.0130675695) (0.01261395450000001) (0.012708852999999992) (0.012739773499999996) (0.012551024500000008) (0.012571953499999997) (0.012801158000000007) (0.013070513500000006) (0.012572769000000011) (0.012996116500000002) (0.012656696000000009) (0.013172543000000009) (0.012529144499999992) (0.012765055999999997) (0.012973790999999998) (0.012860763500000011) (0.013021813499999993) (0.012298360499999994) (0.012349371499999998) (0.013370350500000003) (0.012412317500000006) (0.012167498499999999) (0.012327323000000001) (0.0123954015) (0.012441023999999995) (0.01285106350000001) (0.012244651999999981) (0.012457331500000002) (0.012708138499999994) (0.012383790500000005) (0.01243156899999999) (0.012550707500000022) (0.012491947999999989) (0.012436611000000014) (0.01237421200000001) (0.012577205000000008) (0.012353471500000004) (0.012472119000000004) (0.012174911499999996) (0.012482742500000005) (0.012631592999999997) (0.012667242499999995) (0.012575372500000015) (0.012344717500000005) (0.012389641999999992) (0.01255907349999999) (0.012405535999999995) (0.012726955499999984) (0.012691665500000004) (0.012506221000000012) (0.012871533000000004) (0.012684028999999986) (0.012828013999999999) (0.01283600750000001) (0.012727866500000004) (0.0132069415) (0.01280866800000001) (0.013086656000000002) (0.01266652950000001) (0.012937993500000008) (0.0131150025) (0.012723293499999996) (0.013020235500000005) (0.012968735499999995) (0.012509016999999997) (0.012521216500000001) (0.012916087999999992) (0.012727466000000007) (0.013086491999999991) (0.012942183499999996) (0.012814817999999992) (0.012899416499999997) (0.0126489095) (0.01304780699999998) (0.012636370999999993) (0.012741338500000005) (0.012728543500000009) (0.012698737500000001) (0.012653659999999997) (0.012854563499999985) (0.012532000500000001) (0.012422186500000001) (0.012466224999999997) (0.012168416000000001) (0.012339385499999994) (0.012744646000000012) (0.012413782500000012) (0.012299915499999994) (0.012504645500000008) (0.012377608999999998) (0.012573175000000006) (0.012683395) (0.012245575499999994) (0.012543615500000008) (0.012718848499999977) (0.012604998999999992) (0.012381969000000007) (0.012221565500000003) (0.012368287500000005) (0.012288626499999997) (0.012470595000000001) (0.012393189999999998) (0.012221646000000003) (0.012436209000000004) (0.012278863000000001) (0.012844079000000008) (0.012751497500000014) (0.012511988500000001) (0.012815905000000002) (0.012539356000000002) (0.012796431000000011) (0.01246689749999999) (0.013359609500000008) (0.012944137000000008) (0.01260913399999998) (0.012813482000000015) (0.012891887500000004) (0.012497606000000008) (0.012893078000000002) (0.012738823499999996) (0.012708638500000008) (0.013392216499999998) (0.012851548000000004) (0.012800246500000001) (0.012816289000000008) (0.0128896555) (0.013256872000000003) (0.013176969999999996) (0.012679759999999998) (0.013052326999999989) (0.012624267999999994) (0.012871888999999997) (0.012672790500000003) (0.013083248999999991) (0.012969090000000003) (0.01315429450000001) (0.012952063999999985) (0.012835) (0.012716708499999993) (0.012662552499999993) (0.012787846500000005) (0.012649924999999992) (0.012596625) (0.013021379) (0.013079703000000012) (0.012689197499999985) (0.012361942500000014) (0.012552062000000003) (0.012485715500000008) (0.012611934500000005) (0.012183820000000012) (0.012597795500000009) (0.012624340999999997) (0.01255420950000001) (0.012471065000000003) (0.012478551500000004) (0.012398231499999995) (0.012402069500000001) (0.012538155999999995) (0.012589829499999983) (0.01265691799999999) (0.012390653500000001) (0.012386333) (0.012329199499999999) (0.012222830500000004) (0.01235658449999999) (0.012774820000000006) (0.012514000999999997) (0.012671883000000009) (0.012542116000000006) (0.012600766499999999) (0.012609950500000008) (0.012403924999999996) (0.012466548499999994) (0.012341308499999995) (0.012466712500000018) (0.012377562999999994) (0.0130700235) (0.01254546799999999) (0.013074136500000014) (0.012509687000000005) (0.012691998999999995) (0.012775685999999994) (0.012749466499999987) (0.012771698499999998) (0.012812893500000005) (0.013032999000000003) (0.01286756850000001) (0.012788632499999994) (0.01279369900000002) (0.012970186500000008) (0.012727028000000001) (0.012972878000000007) (0.012543507999999995) (0.012581754) (0.012744226500000011) (0.012474135500000011) (0.012784948500000004) (0.013031956500000011) (0.012443720500000005) (0.01279603650000001) (0.012633733499999994) (0.012853681000000006) (0.012751996000000002) (0.013338231499999992) (0.013031489499999993) (0.012779708) (0.01260976300000001) (0.012777262499999997) (0.012301129500000008) (0.012335377000000008) (0.012445245499999993) (0.01245513899999999) (0.012504263500000015) (0.012381563499999998) (0.012713054500000001) (0.0126806015) (0.01254299099999999) (0.012529217499999995) (0.01240223750000001) (0.012716515500000011) (0.012559388000000019) (0.012536905000000001) (0.012742342500000003) (0.0125678065) (0.012365686) (0.012178379000000003) (0.012352755500000007) (0.012334278500000018) (0.012515576) (0.012278250000000004) (0.01221430850000002) (0.012569715500000009) (0.012670636999999998) (0.012698377499999997) (0.012369746000000001) (0.012444099) (0.012552819499999993) (0.01240915749999999) (0.012480393000000006) (0.012726318) (0.012654978500000011) (0.012850173999999992) (0.012759626499999982) (0.012485570500000001) (0.012752859999999991) (0.012764925999999982) (0.012914777000000002) (0.012433787500000001) (0.012668952499999997) (0.012691866499999996) (0.012835372499999984) (0.013047215000000001) (0.012702967999999995) (0.012721992500000001) (0.012958754999999988) (0.012800610000000004) (0.012664277500000001) (0.012852683500000003) (0.012985967000000001) (0.012930268999999994) (0.012707036000000005) (0.012836682000000002) (0.012565609999999991) (0.012759539) (0.01320171149999999) (0.012903697000000006) (0.013267916500000004) (0.01291545149999998) (0.012796780500000007) (0.012515066000000005) (0.012788161499999978) (0.012877724499999993) (0.0127280595) (0.012179444999999997) (0.012355609000000004) (0.012379868500000002) (0.018684816999999992) (0.012779951499999984) (0.012551898000000006) (0.012416597500000001) (0.012841815500000006) (0.012385934500000001) (0.0122714035) (0.012723990000000004) (0.012570750999999991) (0.01252872649999999) (0.012352662) (0.012482489499999999) (0.012535526500000005) (0.012400557499999992) (0.013409467499999994) (0.012418760000000001) (0.012631454999999986) (0.012351858000000007) (0.012398833999999997) (0.012554487500000003) (0.012621753999999999) (0.01242805999999999) (0.012360074999999998) (0.012780166499999995) (0.012513192500000006) (0.012291646500000003) (0.012534705999999993) (0.012352658000000002) (0.012726243499999998) (0.012668221500000021) (0.012922801999999997) (0.012542350499999994) (0.012723526499999985) (0.012567947499999996) (0.012833688999999981) (0.012503955000000011) (0.013121288999999994) (0.012710908000000007) (0.013042257500000029) (0.012712201000000006) (0.012680103500000026) (0.012741925000000001) (0.012656111999999983) (0.012618981000000001) (0.012691728999999985) (0.012870201500000011) (0.012643664499999999) (0.012733001000000008) (0.012601127500000017) (0.012635921999999994) (0.012904515000000005) (0.013452433) (0.012699320499999986) (0.012812810000000008) (0.01263581200000001) (0.012641356499999992) (0.012879357000000008) (0.012881438000000009) (0.012686985999999983) (0.012729521000000008) (0.012255533499999999) (0.012545753499999993) (0.012529756000000003) (0.01238897450000001) (0.012416638000000008) (0.012584828500000006) (0.012337814499999988) (0.012301886499999998) (0.012621144) (0.013024456000000004) (0.01248407800000001) (0.01239056849999999) (0.012328034000000015) (0.012350197000000007) (0.012526899499999994) (0.012661965999999997) (0.012188865499999993) (0.012479417000000007) (0.01245088350000001) (0.012216825) (0.012265061499999994) (0.012475424500000012) (0.01224547300000002) (0.012281244499999996) (0.012404842499999999) (0.012617837500000006) (0.01284099000000001) (0.0126927015) (0.012254193499999996) (0.01270951649999999) (0.01271562900000002) (0.012657931000000011) (0.012821341) (0.012881710000000005) (0.01291956100000001) (0.012911609000000004) (0.012823823499999998) (0.012579219500000002) (0.012952499499999992) (0.012609891999999998) (0.012925559000000003) (0.012847087999999979) (0.012576151499999993) (0.012631745) (0.012756721999999984) (0.013086312500000016) (0.012728409999999982) (0.012866687999999987) (0.012911283499999995) (0.012535960500000012) (0.012995070499999983) (0.012600808000000005) (0.012618579000000005) (0.012611911500000003) (0.012591548999999994) (0.012670529500000013) (0.013137157999999982) (0.01308810299999999) (0.012989650499999991) (0.012695263500000012) (0.012801695500000002) (0.012852732999999991) (0.012712823499999998) (0.012909742499999988) (0.012410846999999989) (0.012558574000000003) (0.012515507499999995) (0.012308226999999991) (0.012217805000000012) (0.012321805500000005) (0.012515239000000011) (0.01260202449999999) (0.012690860499999998) (0.012554826499999991) (0.012651664499999993) (0.012435597999999978) (0.0124183915) (0.012553105000000009) (0.012585397000000012) (0.012339078000000017) (0.012437025000000018) (0.012626765999999998) (0.01227806649999999) (0.01245703849999999) (0.012278178500000014) (0.01260484549999999) (0.012337548500000017) (0.012346859000000002) (0.012755334500000007) (0.012726309000000005) (0.012257728499999967) (0.012439048000000008) (0.012605376499999987) (0.012360943499999999) (0.012815312500000009) (0.012718085000000004) (0.012849093000000006) (0.012801937500000013) (0.012801971999999995) (0.012438562000000014) (0.012633586000000002) (0.012651213500000008) (0.012851487500000008) (0.012591394500000005) (0.012744161500000004) (0.012866864500000005) (0.012959872499999997) (0.012915626000000013) (0.012780197500000007) (0.012795007999999983) (0.012842136500000004) (0.012765223000000006) (0.012748117500000017) (0.013243422000000005) (0.012701338500000006) (0.012587897499999987) (0.012484278500000001) (0.012687895000000005) (0.012883621999999997) (0.012756777999999996) (0.012771315999999991) (0.012964886499999995) (0.012814621999999998) (0.012667436000000004) (0.013041429999999993) (0.012686587999999999) (0.012998735500000011) (0.013367452999999987) (0.012387391999999997) (0.012529590500000007) (0.0122079145) (0.012387691000000006) (0.01264548950000001) (0.012490565499999995) (0.012564106499999991) (0.012315898500000005) (0.012649998999999995) (0.012512069) (0.012597135500000009) (0.012937044500000008) (0.012824759999999977) (0.012635485500000002) (0.012418168000000007) (0.012561866500000005) (0.012360075999999998) (0.012599107499999984) (0.012411923500000005) (0.01245019650000001) (0.012517037499999994) (0.012287928500000003) (0.012505376999999998) (0.012452793000000004) (0.012348772500000008) (0.012666849000000008) (0.012309057499999998) (0.012403818999999996) (0.012466368999999991) (0.012413037500000002) (0.012281755500000005) (0.012486762999999998) (0.012522354999999999) (0.012626765999999998) (0.012344884500000014) (0.012460948999999999) (0.012562512999999997) (0.012655545500000004) (0.01279266400000001) (0.012571090499999993) (0.012799309499999995) (0.012861731500000001) (0.013162352500000002) (0.012781786000000003) (0.013090888499999995) (0.012765375500000009) (0.012834924500000011) (0.012745483000000002) (0.013094806000000014) (0.012719402500000004) (0.012687330999999996) (0.012910972500000006) (0.012616347) (0.012791366999999998) (0.012749011500000004) (0.0125281805) (0.012608643000000017) (0.0132630205) (0.012941575499999997) (0.012722361500000001) (0.012952497999999993) (0.013024735999999995) (0.012753048000000003) (0.012932442500000002) (0.012305718000000007) (0.012813831999999997) (0.012536178999999995) (0.012465233999999992) (0.012724369500000013) (0.012243465000000009) (0.01253341099999998) (0.012197620000000006) (0.012441240500000006) (0.012672612) (0.012797290000000003) (0.012447865499999988) (0.012350087999999995) (0.012704067999999999) (0.012999390500000013) (0.012335934999999992) (0.012461470500000002) (0.01250489099999999) (0.012443147999999987) (0.012561049500000004) (0.012664022999999996) (0.012308432499999994) (0.012267107) (0.012655201500000005) (0.012355941500000009) (0.01256840599999999) (0.01225079200000001) (0.012528084000000009) (0.012302614000000003) (0.012386298500000004) (0.012411750999999999) (0.01246166) (0.0126834755) (0.012599523499999987) (0.012996581499999993) (0.012762857000000002) (0.012691241000000006) (0.012669288) (0.013380164) (0.012589045499999993) (0.012918303500000006) (0.012816981500000005) (0.01284108099999999) (0.012711414000000004) (0.01252091000000001) (0.012799647999999983) (0.01264254400000002) (0.012793407000000007) (0.012567066000000002) (0.012489585499999997) (0.012690462000000013) (0.01261772899999998) (0.012550828500000014) (0.012766583000000012) (0.012752265000000013) (0.0129612655) (0.012836827999999995) (0.012670712000000015) (0.012884066) (0.013120605499999993) (0.012911853500000015) (0.012676917499999996) (0.012626375499999995) (0.013119191499999988) (0.012371497999999995) (0.012196865500000001) (0.01233579500000001) (0.012674407999999998) (0.012146619499999997) (0.012325424000000001) (0.012370868500000007) (0.012828101999999994) (0.012465334999999994) (0.012439270499999988) (0.012441678000000012) (0.01268659200000001) (0.012423047000000007) (0.012309254000000006) (0.012372821499999992) (0.012604039499999997) (0.012227987499999995) (0.01243677) (0.012326082000000002) (0.012849111999999996) (0.012568622000000002) (0.012544648999999991) (0.012545109499999998) (0.012297714500000015) (0.012301537500000001) (0.012297916000000006) (0.0127863795) (0.012691005000000005) (0.012669273000000009) (0.012436360000000007) (0.012630332499999994) (0.012347939500000002) (0.012813764000000005) (0.01269969500000001) (0.012775942500000012) (0.012592951000000005) (0.012760185500000007) (0.012577819500000018) (0.012827080000000018) (0.01283788000000001) (0.013010232499999996) (0.012832024499999983) (0.01270060399999999) (0.012968774500000002) (0.013036669499999987) (0.013029076999999986) (0.012843757999999997) (0.012757189500000002) (0.013481628500000009) (0.012816134499999993) (0.012613824999999995) (0.01260090400000001) (0.012792052499999998) (0.012909830999999997) (0.012720435999999988) (0.012635368500000008) (0.012720173500000001) (0.012977750999999996) (0.012890045999999988) (0.012852080500000002) (0.01271730950000001) (0.013090379) (0.012547344000000002) (0.012987501999999998) (0.01229308450000001) (0.012330372500000006) (0.012322156) (0.012813432) (0.012255494500000005) (0.01233915649999999) (0.012295200500000006) (0.012620133999999991) (0.012355907000000013) (0.01253897349999998) (0.012410715000000003) (0.012382219000000014) (0.0129194225) (0.012631706500000006) (0.012320218000000008) (0.012899204499999997) (0.012614663999999998) (0.012231654500000008) (0.012445972999999999) (0.012436877999999998) (0.012335382000000006) (0.012518373) (0.012620094499999998) (0.012279539000000006) (0.012316446500000008) (0.012439967499999996) (0.012440151999999996) (0.012815168000000002) (0.012426774500000001) (0.012870550000000008) (0.012325618999999996) (0.012592641500000001) (0.012982077500000008) (0.01267146700000002) (0.012885512000000002) (0.012780706499999989) (0.012670635999999999) (0.012655259500000002) (0.01263715650000001) (0.012728756000000022) (0.013044754000000006) (0.012719989999999987) (0.012723103) (0.0128330995) (0.01313479499999999) (0.012952920999999992) (0.012817911000000001) (0.012866813500000004) (0.012600899999999984) (0.012732239500000006) (0.012680203000000001) (0.01282025149999999) (0.012488301499999993) (0.012748055499999994) (0.0127048555) (0.012681001999999997) (0.012588709999999989) (0.012889785) (0.012569500499999997) (0.012697445000000016) (0.013164115500000018) (0.012714756500000007) (0.012808342000000014) (0.012679802000000018) (0.012327336500000008) (0.012259058499999989) (0.012359479999999992) (0.01219445899999999) (0.012696038999999992) (0.012245875000000003) (0.012386247000000003) (0.012238461999999992) (0.012812465999999995) (0.012238462500000005) (0.012691675) (0.012504807999999992) (0.012515486000000006) (0.012806974500000012) (0.012924993999999995) (0.01258777350000001) (0.012380882499999996) (0.012160352499999999) (0.012473897999999997) (0.012247161000000006) (0.012461921) (0.012691268500000005) (0.013111450999999996) (0.0122479645) (0.012225415500000003) (0.0126992665) (0.012286860499999996) (0.012622381000000016) (0.012277664999999993) (0.012655746999999995) (0.012533904999999998) (0.012245494499999995) (0.012766023000000001) (0.012556950499999997) (0.0124778725) (0.012870140999999988) (0.012733109999999992) (0.012681616999999992) (0.012528949499999997) (0.013041101) (0.012939499500000007) (0.012611917999999986) (0.012944244499999993) (0.013140469999999987) (0.012698984499999996) (0.012920318000000014) (0.01273935200000001) (0.012738036000000008) (0.012891889500000003) (0.012596184999999996) (0.01269568) (0.0125814925) (0.012726751500000008) (0.01256710450000001) (0.012707245999999991) (0.012691972999999981) (0.012917776500000006) (0.012685298499999997) (0.012824548000000005) (0.013022162000000004) (0.012795443000000004) (0.012616346500000014) (0.012798072000000008) (0.012914775999999989) (0.012344084500000005) (0.012385911499999985) (0.012634515999999998) (0.012268630500000016) (0.0123579085) (0.012856462499999999) (0.012306967000000002) (0.01263131499999999) (0.012511544499999985) (0.012663332) (0.012844144000000002) (0.012329652499999996) (0.012274065499999987) (0.012824647999999994) (0.012697406999999994) (0.012440317000000006) (0.012392433999999994) (0.012297254500000007) (0.012464951500000002) (0.01232917900000001) (0.01230510500000001) (0.012334236500000012) (0.01241946649999999) (0.012253384999999992) (0.012302963500000028) (0.012307705500000016) (0.012352764999999988) (0.012583829000000019) (0.012635050000000009) (0.012759490999999998) (0.012375006000000008) (0.01242349149999998) (0.012777670000000005) (0.012657402499999998) (0.012649147) (0.012675198000000013) (0.01262732200000001) (0.013054237499999996) (0.012753747499999996) (0.012704463499999999) (0.012706746000000005) (0.01300359999999999) (0.012672061999999984) (0.01298907149999999) (0.012620492000000011) (0.012748695500000004) (0.012734374000000007) (0.012547104000000003) (0.012502458999999994) (0.012787795500000004) (0.012653146500000004) (0.012522105499999991) (0.01287347350000001) (0.014824366500000005) (0.012455854999999988) (0.013079763499999994) (0.012853654000000006) (0.013264041500000018) (0.01280771800000001) (0.012929806000000016) (0.012907439000000007) (0.012938841500000006) (0.012855439999999996) (0.012987275999999978) (0.012502695499999994) (0.012330354000000002) (0.01242580750000001) (0.0124813815) (0.01245007649999999) (0.01259896349999999) (0.012484413) (0.012484702000000014) (0.012375066500000004) (0.012370956000000016) (0.012358237000000008) (0.01243503550000001) (0.012570889999999987) (0.012370684000000007) (0.012955931500000004) (0.012433553500000014) (0.012199513500000009) (0.012419817000000014) (0.012487021000000001) (0.012445203000000002) (0.012294015500000005) (0.01230263849999999) (0.0122601185) (0.012370359499999997) (0.012475773499999995) (0.012613055999999997) (0.012683062500000009) (0.012577103000000006) (0.012342011) (0.01244880249999998) (0.012257627000000007) (0.012688813499999993) (0.012824969500000005) (0.012613421000000014) (0.012719506000000005) (0.012837343000000001) (0.012807028500000012) (0.013296664500000013) (0.012466401000000002) (0.012935169499999996) (0.013035516499999997) (0.013319896499999997) (0.012889115000000007) (0.013286481500000002) (0.013213774499999997) (0.012714145999999996) (0.013105801500000014) (0.013010272500000003) (0.01270569349999999) (0.01261838500000001) (0.012689927000000017) (0.012785244999999987) (0.012768326499999996) (0.012470627000000012) (0.012987528999999998) (0.012869223000000013) (0.012716648000000011) (0.012616146999999994) (0.01281272550000001) (0.012881542499999996) (0.012770664000000001) (0.013161797999999988) (0.012929637500000007) (0.012830992) (0.01228607050000001) (0.012579527000000007) (0.012518108000000014) (0.012679766000000009) (0.012575105000000003) (0.012310821) (0.012443260500000011) (0.012598930999999994) (0.012409363500000006) (0.012342065999999985) (0.012666273500000005) (0.013246104000000009) (0.012556736499999999) (0.01240470099999999) (0.012482396499999993) (0.012625545000000002) (0.012200460999999996) (0.012650330000000015) (0.012263488500000003) (0.012394896500000002) (0.012207676) (0.0127672385) (0.012345040500000001) (0.012245418999999994) (0.012662559000000018) (0.012392718499999997) (0.012324243999999984) (0.012678805499999987) (0.012537259999999995) (0.012803874500000006) (0.012344016) (0.012538836500000025) (0.01295201) (0.012599591499999993) (0.012817283999999998) (0.012749935500000018) (0.0128814295) (0.012637016500000015) (0.01283862849999999) (0.012834412500000003) (0.0130833105) (0.012760441499999983) (0.012743734000000007) (0.012698628500000017) (0.01293901850000001) (0.012948919000000017) (0.01266141400000001) (0.012745995499999996) (0.01251351399999999) (0.012633338499999994) (0.012711804499999993) (0.012854444999999992) (0.012528552000000012) (0.01285190750000001) (0.012670293999999985) (0.01289549449999998) (0.012992022500000006) (0.012830639499999977) (0.01295307850000002) (0.012803886500000014) (0.012744348500000002) (0.01257081900000001) (0.01297904850000002) (0.0129796415) (0.012211567000000006) (0.012513713999999995) (0.012923961999999997) (0.012617972000000005) (0.012467092999999999) (0.012439760999999994) (0.012514835500000002) (0.012469494500000011) (0.012354969500000007) (0.012524545000000012) (0.012617836500000007) (0.012657150000000006) (0.012497257500000011) (0.012391325499999994) (0.01233371150000001) (0.012421583500000014) (0.012568018) (0.012530573000000003) (0.012423457999999984) (0.012279537500000007) (0.012740058999999998) (0.013152426499999995) (0.012628837500000004) (0.012438337499999993) (0.012262885500000001) (0.012260589000000002) (0.012279747500000007) (0.012593105500000007) (0.012582880500000004) (0.012632664000000002) (0.012475317999999999) (0.012358949500000008) (0.012873505000000007) (0.012660063499999999) (0.012678918999999997) (0.012668093000000005) (0.012592522999999994) (0.01286259749999999) (0.012961617499999994) (0.01260791600000001) (0.012901928999999993) (0.012595695000000004) (0.013000613999999994) (0.012553272000000004) (0.012918258999999988) (0.01332072749999999) (0.012821152000000002) (0.012681466000000002) (0.012613880999999993) (0.012638703000000015) (0.012651505500000007) (0.012562229500000008) (0.012669442000000003) (0.012943007499999992) (0.012734399000000007) (0.012967070499999997) (0.012997190000000006) (0.012734206499999998) (0.012611429499999993) (0.012915140500000005) (0.012668174500000004) (0.0130302355) (0.012746817000000008) (0.012751455999999994) (0.01244580599999999) (0.012386600499999997) (0.012419489999999991) (0.012798140999999985) (0.012504511499999996) (0.013068147000000002) (0.012606131000000007) (0.012247947999999995) (0.012551919500000008) (0.012722479000000009) (0.012469443999999982) (0.012601818000000015) (0.01307309000000001) (0.012418714499999997) (0.012643195999999995) (0.012669886000000005) (0.012801368999999993) (0.012198105000000015) (0.012606914499999983) (0.012179029000000008) (0.012628088499999995) (0.012745936) (0.012478167999999998) (0.012330860499999999) (0.012412206499999995) (0.01280311349999999) (0.012581208499999996) (0.012666562999999992) (0.012778710500000012) (0.012447977999999998) (0.012783268000000014) (0.012509516499999998) (0.012754226000000007) (0.012557223999999992) (0.012664719500000005) (0.012716416500000008) (0.012569429500000007) (0.01291600000000001) (0.01266190099999999) (0.012573183500000001) (0.012714413500000007) (0.012830829500000002) (0.013066427499999991) (0.012987908000000006) (0.012627224499999992) (0.013341060499999988) (0.012974676000000018) (0.013046070999999979) (0.012589105000000003) (0.012668515000000005) (0.013101475500000001) (0.012471726500000002) (0.012496411999999998) (0.012687532999999987) (0.01296417449999998) (0.013120673999999999) (0.012817645999999988) (0.012979123499999995) (0.013221074499999999) (0.012537757499999996) (0.012640901499999996) (0.012906137999999998) (0.012690352500000002) (0.012838018000000007) (0.012441354500000001) (0.01270454) (0.012695666499999994) (0.012256580500000003) (0.012310737499999988) (0.01252645849999999) (0.01261994499999998) (0.01246448750000001) (0.012404766499999997) (0.01278341849999999) (0.012466345000000004) (0.012566721499999989) (0.0126690795) (0.012506403499999985) (0.012337674500000007) (0.012377095000000005) (0.012405854000000008) (0.012324975500000002) (0.012675102000000008) (0.012081761999999996) (0.0126257075) (0.012385274500000001) (0.012508245500000001) (0.01211297750000001) (0.012614590000000009) (0.012870263499999993) (0.012571723500000007) (0.01232192700000001) (0.012632176999999994) (0.012660068999999996) (0.012422359999999993) (0.012451307000000009) (0.012651977499999995) (0.012859421999999995) (0.012479153000000007) (0.013151002499999995) (0.0128461785) (0.012622782499999999) (0.012783509499999998) (0.012776026499999996) (0.012619225499999998) (0.01273764799999999) (0.012832794500000008) (0.012905691499999983) (0.012685554000000002) (0.01293356000000001) (0.012769613499999999) (0.01285609700000001) (0.012803211500000009) (0.012752139499999995) (0.012434741) (0.012681695000000007) (0.012652407500000004) (0.012737261000000014) (0.012712435999999994) (0.013024639000000005) (0.0133313885) (0.012813217000000002) (0.013123559499999993) (0.012989060999999996) (0.01315690700000001) (0.012615997000000018) (0.012691763500000008) (0.013002888000000004) (0.012478378000000012) (0.012707970000000013) (0.012137239499999994) (0.012435830499999995) (0.012570699000000005) (0.012571687499999998) (0.012289486500000002) (0.012136784499999997) (0.0125178715) (0.012527676500000001) (0.012601392500000003) (0.012409768000000015) (0.012610181000000012) (0.012631061000000013) (0.01250029050000001) (0.012346821000000008) (0.012625960000000006) (0.012599233000000001) (0.012702757499999995) (0.01232978749999998) (0.012390236999999998) (0.012380318500000001) (0.012473922999999998) (0.012504708000000003) (0.012887444499999998) (0.012462001499999986) (0.012557496999999987) (0.01249004149999998) (0.012660099499999994) (0.012507201999999995) (0.012640108499999997) (0.012441617999999988) (0.012560453499999985) (0.013247207999999996) (0.012756251499999982) (0.012738322999999996) (0.012687330499999983) (0.012922032) (0.012587435000000008) (0.012985571500000015) (0.012699804500000009) (0.012742478000000002) (0.01284759299999999) (0.012648261500000008) (0.013099817500000013) (0.013020541499999982) (0.01301861600000001) (0.012725854999999994) (0.012719468999999997) (0.01274714149999999) (0.012932474999999999) (0.012599536499999994) (0.012676772500000003) (0.012798104000000018) (0.01251210500000001) (0.01280832899999998) (0.01283635150000001) (0.012716215500000003) (0.012836515499999993) (0.012724761499999987) (0.012830650999999998) (0.012790728999999987) (0.012871904000000003) (0.012975812000000017) (0.01223287449999999) (0.012306006500000008) (0.012739990500000006) (0.012715697999999998) (0.013118013999999997) (0.012261890999999997) (0.012320674500000003) (0.0125319755) (0.012482590499999988) (0.012254957999999996) (0.012653850499999994) (0.012474318499999998) (0.0125614805) (0.012310026000000002) (0.012540401500000006) (0.01247550449999997) (0.012593621999999999) (0.012612811500000001) (0.012749073) (0.012359314499999996) (0.012174416500000007) (0.012521885999999996) (0.012570235999999999) (0.012556509500000007) (0.012630889499999992) (0.012506477500000002) (0.012515824500000008) (0.012267200000000006) (0.012585421) (0.012618189000000002) (0.012298970999999992) (0.012642499500000001) (0.012569316499999997) (0.012693850000000007) (0.012710363500000016) (0.012896751999999984) (0.013138573) (0.012884559500000003) (0.012601673500000007) (0.012866040499999981) (0.012904863500000002) (0.012887751499999989) (0.012844634500000007) (0.012928354000000003) (0.012667870999999997) (0.013032156000000017) (0.013168656500000014) (0.012921239999999987) (0.01279185649999999) (0.012659446000000019) (0.012934513499999994) (0.012569550499999985) (0.012782753999999993) (0.01287755950000001) (0.013040791999999982) (0.013056107999999997) (0.01267307350000002) (0.012843599499999997) (0.012587138999999983) (0.013002381500000021) (0.012659905500000013) (0.012711484000000023) (0.013132745499999987) (0.012624355500000004) (0.012403597500000016) (0.012237253500000003) (0.012457833500000001) (0.012299475500000018) (0.012606179000000009) (0.012347847500000009) (0.012581267499999993) (0.012342122499999997) (0.012538305) (0.012643924) (0.012566592999999987) (0.012662181999999994) (0.01265628399999999) (0.012425565999999999) (0.0127172225) (0.01257511850000001) (0.012283088499999997) (0.012283776999999996) (0.012403418) (0.012216104999999991) (0.012233485000000002) (0.012516899499999998) (0.012348688499999996) (0.01254672100000001) (0.012463902499999985) (0.012425125499999995) (0.012512990000000015) (0.012734773000000019) (0.01264884849999999) (0.012774622) (0.01233823449999999) (0.01255123150000001) (0.013045143500000009) (0.012675241500000003) (0.012628269500000011) (0.012691235999999995) (0.012739831500000007) (0.012606227499999997) (0.012610582499999981) (0.012743842000000005) (0.012767714499999971) (0.013274361999999998) (0.012892087499999982) (0.01282026750000001) (0.013034462999999982) (0.013151312000000012) (0.012911297000000002) (0.012562023500000019) (0.012810139500000012) (0.012500399499999995) (0.012724202500000018) (0.012804419999999983) (0.012698527499999987) (0.01258500700000001) (0.012913968499999984) (0.013156522500000004) (0.012973186999999983) (0.012858974500000009) (0.01299505649999999) (0.012767688999999999) (0.012565093999999999) (0.01283762849999999) (0.012614642999999995) (0.012452209000000006) (0.012460221999999993) (0.01234826600000001) (0.012780714000000012) (0.012437220999999998) (0.012602502500000001) (0.012400076999999995) (0.012954989500000014) (0.01269187599999999) (0.01240938699999998) (0.012500116000000006) (0.012559203000000033) (0.01234808850000002) (0.012376288500000013) (0.012366634999999987) (0.012466586499999988) (0.012566113500000003) (0.012495022000000008) (0.012370542500000012) (0.012517680999999989) (0.012487325500000007) (0.012481316500000006) (0.01276079799999999) (0.012754545499999992) (0.012582746999999991) (0.012522002000000004) (0.012441075499999996) (0.012561550999999976) (0.012520879000000013) (0.013057168499999994) (0.012434163999999998) (0.012380686000000002) (0.01244616950000002) (0.012677001999999993) (0.013037740999999992) (0.012692943500000012) (0.012705157999999994) (0.012806564500000006) (0.012710606999999999) (0.01244693099999998) (0.012763846999999995) (0.012682616500000021) (0.012945341499999999) (0.012691230000000026) (0.0127831625) (0.012708813500000013) (0.012734453499999993) (0.013102201499999994) (0.012861133999999996) (0.01303352399999999) (0.012603932499999998) (0.01264550049999999) (0.012520937999999995) (0.012777888000000001) (0.012605108500000003) (0.012762970500000012) (0.012908958999999998) (0.013240686999999987) (0.012830861500000013) (0.012873688500000008) (0.012837613000000012) (0.012903288000000027) (0.012750283499999987) (0.012618339999999992) (0.013015970000000016) (0.012245635000000005) (0.012337998999999988) (0.012471401500000007) (0.012709318000000011) (0.012274825000000003) (0.012910846000000004) (0.012338237500000016) (0.012483673500000014) (0.012631212000000017) (0.012715458499999985) (0.012482206499999995) (0.012419900499999983) (0.012584263500000012) (0.012455061500000003) (0.012526897000000009) (0.012414297500000004) (0.012592646000000013) (0.012482129499999994) (0.012375225000000017) (0.012473488500000005) (0.012577609500000003) (0.012991123000000007) (0.012710389000000002) (0.012447417499999988) (0.012481622499999998) (0.012436890499999978) (0.012570808999999974) (0.013096470000000013) (0.012531848999999984) (0.012859733500000012) (0.012636871500000021) (0.012629353499999982) (0.012813088000000014) (0.012450166000000013) (0.012858603999999996) (0.01280313800000002) (0.012888717499999994) (0.012659311999999992) (0.012579027500000006) (0.012523261000000008) (0.012759985499999973) (0.012673284499999979) (0.012801717500000004) (0.01294414549999999) (0.012544146500000006) (0.012661119999999998) (0.012812004499999988) (0.013487427499999996) (0.013129813000000004) (0.012893751999999994) (0.012706497000000011) (0.012844544) (0.012876742499999969) (0.012750958999999978) (0.012892689500000012) (0.012673433999999997) (0.012703291500000005) (0.012909840999999991) (0.012782364500000018) (0.012884081500000005) (0.012522129500000007) (0.01293633449999998) (0.012786081500000018) (0.012688714500000003) (0.012511424999999993) (0.012462174999999992) (0.012426699999999985) (0.012584283500000001) (0.012327059500000001) (0.012430758) (0.012288820500000006) (0.012471317999999995) (0.012506033) (0.012213957000000011) (0.012488935499999992) (0.012330322500000004) (0.012289503499999993) (0.012599397499999984) (0.012351982999999997) (0.012523080000000006) (0.012396090999999998) (0.012605499000000006) (0.012883482000000002) (0.012470144500000002) (0.012522685000000006) (0.012436070999999993) (0.012358846000000007) (0.012161627999999994) (0.012858589000000004) (0.012354196499999984) (0.012233336499999997) (0.012594829999999987) (0.0124939035) (0.012450894500000004) (0.012337648499999992) (0.012635737499999994) (0.012824427999999999) (0.01267119550000001) (0.012724309999999989) (0.012603788500000004) (0.01300060800000001) (0.013048370500000003) (0.012889046000000001) (0.012565486500000014) (0.01285902400000001) (0.012619981500000016) (0.012538619) (0.012782811500000005) (0.012590135500000002) (0.013232345999999992) (0.012677946499999995) (0.0125115415) (0.012675254499999997) (0.012648359000000012) (0.012539361499999999) (0.012551465499999984) (0.0126143945) (0.012690590000000015) (0.012567296500000005) (0.012720989000000002) (0.013018079999999987) (0.012810485999999996) (0.013125538000000006) (0.013170862500000005) (0.012802536499999989) (0.012566429500000004) (0.012614247999999995) (0.012631697499999997) (0.012441958000000003) (0.012570403000000008) (0.012398297499999988) (0.013077333999999996) (0.012732873499999992) (0.012588959999999996) (0.012438962499999998) (0.012907783499999992) (0.01244221849999999) (0.012265407499999992) (0.012524583500000006) (0.012223151000000015) (0.012591881) (0.012835456000000009) (0.012389357500000003) (0.012374319000000009) (0.012411762000000007) (0.012415234999999997) (0.012164324500000004) (0.012400109999999992) (0.012299204500000008) (0.0123124015) (0.012405303999999992) (0.012513006000000007) (0.012401637499999993) (0.012386811499999997) (0.012190488500000013) (0.012808426499999997) (0.012540547500000013) (0.012308064499999993) (0.012625296999999994) (0.012545858500000007) (0.012703637500000003) (0.013001900499999997) (0.012761519499999985) (0.012767045500000004) (0.012764918) (0.01281956549999999) (0.012854824) (0.012631411000000009) (0.01267926350000001) (0.013034216000000001) (0.012804140999999991) (0.012906724500000008) (0.012725997500000003) (0.012882652999999994) (0.012589526500000003) (0.012775571) (0.012550240000000018) (0.012700925500000002) (0.012663157499999994) (0.012537385499999998) (0.012588541000000009) (0.012749794499999995) (0.012926031500000004) (0.012706836499999999) (0.013002726500000006) (0.012959398999999996) (0.013029165499999995) (0.012810475500000001) (0.01264829649999999) (0.012931328499999992) (0.01276077299999999) (0.012937523499999992) (0.012265424999999996) (0.012200621999999994) (0.012866470500000005) (0.012362461000000005) (0.012563321000000002) (0.012254839500000003) (0.012784642499999999) (0.01214062199999999) (0.01279177749999999) (0.012726785000000004) (0.012679365000000012) (0.012895352499999999) (0.01261466700000001) (0.012582269999999993) (0.012918099499999988) (0.012430556999999995) (0.012666149000000002) (0.012440816499999993) (0.0124577555) (0.01227056850000001) (0.012837517499999979) (0.012266686000000013) (0.01224261800000001) (0.012315093) (0.0125517765) (0.012561317999999988) (0.012283781499999993) (0.012549083000000003) (0.012523289500000007) (0.012497210499999994) (0.012407499000000002) (0.012282627000000004) (0.01277681) (0.012730077500000006) (0.012951123000000009) (0.01288607700000001) (0.012617623999999994) (0.012621584500000005) (0.0127182505) (0.012867836000000021) (0.013003389500000004) (0.012996762000000009) (0.01270317) (0.012931711999999998) (0.013168944500000002) (0.012638912000000002) (0.012805415) (0.012674249499999998) (0.012500646000000004) (0.01260916949999999) (0.01280890250000001) (0.012778855500000005) (0.0127193845) (0.01286835950000001) (0.012640079000000012) (0.013106889999999996) (0.012638693500000006) (0.013425227499999998) (0.012998593000000003) (0.012782617499999996) (0.01285373799999999) (0.01262012350000001) (0.013268163999999985) (0.012810620000000009) (0.012241251499999994) (0.012443876500000006) (0.0122130305) (0.01237355100000001) (0.01251974900000001) (0.012368320999999988) (0.012792631000000013) (0.012576669000000013) (0.012453247999999986) (0.012490331499999993) (0.012611300499999992) (0.012657980000000013) (0.012354696500000012) (0.012540022500000012) (0.012523065) (0.01262487050000001) (0.012330877000000004) (0.012495159999999991) (0.012331110499999992) (0.012396737500000005) (0.012465205000000007) (0.012306682500000013) (0.012185642499999996) (0.01237671500000001) (0.012358216000000019) (0.012382694499999986) (0.012362031999999995) (0.012395842000000004) (0.012579283499999996) (0.012744803000000013) (0.012516826499999995) (0.012519286000000004) (0.012635565500000001) (0.012757742500000002) (0.012574389499999991) (0.012730105500000005) (0.012667733) (0.012510681999999995) (0.012730798999999987) (0.012900109500000007) (0.013560014999999995) (0.01312328900000001) (0.0128014355) (0.012660787500000006) (0.012983218500000004) (0.013200026500000003) (0.012711932999999995) (0.013038414999999984) (0.013007155499999992) (0.01290243499999999) (0.012686456499999998) (0.012783071000000007) (0.012512846499999994) (0.012815027499999992) (0.012943768499999994) (0.012514097500000002) (0.012811041000000009) (0.012578318000000005) (0.012647385499999997) (0.012741232499999991) (0.01252030450000001) (0.012754433499999995) (0.012736461000000004) (0.012923988499999997) (0.012167022) (0.012287781500000011) (0.0125633) (0.012342047999999994) (0.012384841000000021) (0.012220027499999994) (0.01237005549999999) (0.01223254850000001) (0.012534153500000006) (0.012442208499999996) (0.012553245000000005) (0.012384634500000005) (0.01243270349999999) (0.012535811499999994) (0.012718686000000007) (0.012324211500000001) (0.012156272499999995) (0.012269587499999998) (0.012477139499999998) (0.012431971) (0.012306150999999987) (0.012342374499999989) (0.012258468499999994) (0.012240150000000005) (0.012326602499999992) (0.012382435999999997) (0.012454935) (0.012720370499999994) (0.012363204000000003) (0.012583350999999993) (0.012467498500000007) (0.012561368000000017) (0.012598497000000014) (0.012557538000000007) (0.012487052499999998) (0.012616903499999998) (0.012929094499999988) (0.012784669999999998) (0.012883314500000007) (0.012806336000000001) (0.012853743500000014) (0.012793155500000014) (0.012762989000000002) (0.012536366500000007) (0.012740436499999994) (0.012951382000000011) (0.012862192999999994) (0.013283331999999995) (0.012506503500000002) (0.013049490999999996) (0.012869182999999992) (0.012975661999999999) (0.012667685499999998) (0.012800214000000004) (0.012761107000000022) (0.01262632100000001) (0.012663919499999995) (0.01308709050000001) (0.013190861999999998) (0.012783692999999999) (0.012803878000000005) (0.012686502499999988) (0.012925909999999999) (0.012913004500000005) (0.012340919999999991) (0.012295832500000006) (0.012268968000000005) (0.012334000500000011) (0.012552140000000003) (0.012466856999999998) (0.012437343000000003) (0.012574486499999996) (0.012261803999999987) (0.012360818499999995) (0.012833870000000011) (0.012588000000000002) (0.012578831499999998) (0.012268855000000009) (0.012573775500000009) (0.012395442999999992) (0.012327182499999992) (0.012336669500000008) (0.012364623000000005) (0.012409736000000005) (0.012602120000000008) (0.012280827000000008) (0.012354775000000012) (0.012668133499999998) (0.0125533865) (0.012504518499999978) (0.012273083500000018) (0.012695747499999993) (0.01289547449999999) (0.012359406500000003) (0.01232253450000001) (0.012690481500000003) (0.012373106500000008) (0.012477882999999995) (0.01270840899999999) (0.012761119500000015) (0.013032821000000014) (0.012741624999999993) (0.012980377000000001) (0.0125632985) (0.01264325999999999) (0.012754935499999995) (0.012775641000000004) (0.01254358350000001) (0.012648930500000002) (0.012898301999999987) (0.012867069499999995) (0.012698041499999993) (0.012648601499999981) (0.012697392500000002) (0.01264242900000001) (0.012773554999999992) (0.012510697999999987) (0.012667175500000002) (0.012682047500000002) (0.012752079) (0.01276253849999999) (0.012630437500000008) (0.012886438999999986) (0.012749069000000016) (0.012887249000000003) (0.012833911000000003) (0.012859624999999986) (0.01302150399999999) (0.012237648500000003) (0.012348747499999993) (0.012268473000000016) (0.0122577455) (0.012540151499999999) (0.012943353000000005) (0.01237008399999999) (0.012512873500000021) (0.012437792500000017) (0.012373646000000002) (0.01245231450000002) (0.012904882500000006) (0.012695193000000007) (0.012599813000000001) (0.012627925500000012) (0.01256082950000001) (0.0125111465) (0.012250405000000006) (0.012498273000000004) (0.012400810499999984) (0.012344000999999993) (0.012297531500000014) (0.012340788499999991) (0.012842140500000002) (0.01229321650000001) (0.0125014705) (0.012434055999999999) (0.01252611699999999) (0.01271243950000002) (0.012584051499999985) (0.012483634999999993) (0.01242146999999999) (0.012613422999999999) (0.012931739999999983) (0.012704924500000006) (0.012674914500000009) (0.012764738499999997) (0.013042329999999991) (0.012904559499999996) (0.012591696500000013) (0.012988445500000001) (0.012746483000000003) (0.01299494200000001) (0.012687639) (0.012828994499999996) (0.012721957999999992) (0.012887623) (0.012733623499999985) (0.012838552500000003) (0.012780614499999995) (0.012599687999999998) (0.012782089499999996) (0.012816635500000007) (0.012715769000000016) (0.01282366) (0.012570112499999994) (0.012814493999999996) (0.012995704999999996) (0.012730836499999995) (0.01261806700000001) (0.012795324999999996) (0.013036591000000014) (0.012574895499999988) (0.012963392000000004) (0.012404634500000011) (0.012873410000000002) (0.012636938500000014) (0.01241035800000001) (0.012411653000000009) (0.012502765500000013) (0.012423103500000005) (0.012670435000000008) (0.012828402000000003) (0.012312344500000003) (0.012310946500000003) (0.012754528000000001) (0.012644060999999998) (0.012435304500000008) (0.012363113499999995) (0.012230813000000007) (0.012248174500000014) (0.012733593500000001) (0.012397152499999994) (0.012523247500000001) (0.012696800999999994) (0.012745113500000002) (0.01232670999999999) (0.0123610215) (0.012380886499999993) (0.012951407500000012) (0.012383536000000014) (0.012250343999999996) (0.012692388000000013) (0.012411429500000015) (0.012525730999999998) (0.0124777425) (0.01276464699999999) (0.0126546295) (0.01266405850000002) (0.012815314999999994) (0.0125883195) (0.0127392395) (0.012666691500000007) (0.012792635999999982) (0.01277671150000001) (0.012808335500000004) (0.012803921999999995) (0.013191304999999987) (0.012843132999999993) (0.01297741899999999) (0.013193272500000006) (0.0126085955) (0.01291233750000001) (0.012965345000000003) (0.013179912500000002) (0.012986720000000007) (0.012870079500000006) (0.012625161999999981) (0.012904167500000008) (0.012960088999999994) (0.012984916500000013) (0.013049828500000013) (0.012926500000000007) (0.012954512000000015) (0.012802692000000004) (0.012690631500000008) (0.012624764999999982) (0.012687284499999993) (0.012391913000000004) (0.012351749999999995) (0.012339669000000011) (0.0124493735) (0.012409505999999987) (0.012381789000000004) (0.012276979500000007) (0.012499051999999983) (0.012555993000000001) (0.012765062000000008) (0.012419557499999997) (0.012391034999999995) (0.012540873000000008) (0.012756075500000005) (0.012428944499999997) (0.012612814499999986) (0.012906473000000002) (0.0124951155) (0.012355575000000008) (0.012641871999999998) (0.012282927999999999) (0.012404220500000007) (0.0124055515) (0.012314324500000015) (0.012821949500000013) (0.012829097999999997) (0.01255405150000001) (0.012583059000000008) (0.01226389) (0.012448169500000009) (0.01255893050000001) (0.01270296750000001) (0.012809782000000006) (0.012960328500000007) (0.012638848000000008) (0.012941249000000002) (0.01297245000000001) (0.012626123500000003) (0.013033600000000006) (0.012772743000000003) (0.0127477815) (0.012954423500000006) (0.012763683500000012) (0.0128476285) (0.013063687500000004) (0.012979010499999999) (0.012660826500000014) (0.012633270999999988) (0.012768676500000006) (0.012896380000000013) (0.01261348000000001) (0.012599589999999994) (0.012715770000000001) (0.012616812499999991) (0.012978049499999991) (0.012899773499999989) (0.012799786499999993) (0.013407665000000013) (0.012552636000000006) (0.013048738500000004) (0.012687766000000003) (0.012973512000000006) (0.0125447105) (0.012910387499999995) (0.012395645499999997) (0.01248303499999999) (0.012493380000000012) (0.012818654499999999) (0.012498030500000007) (0.012409782999999994) (0.012849590500000008) (0.012273489000000012) (0.012363713500000012) (0.012708966499999988) (0.012304040499999988) (0.012466198500000011) (0.012449254000000007) (0.012748839499999984) (0.012269170499999996) (0.012754511499999996) (0.012363980499999982) (0.012372050999999995) (0.012482522499999996) (0.012469783999999998) (0.012228805500000009) (0.012414883000000002) (0.012313690500000002) (0.01243216350000001) (0.012526621000000002) (0.012757182000000006) (0.012677222500000002) (0.012645942999999993) (0.0126232545) (0.012893688499999986) (0.012627834000000004) (0.012571455499999995) (0.013056922500000012) (0.012504692500000011) (0.012677178999999997) (0.012897058499999989) (0.012832701000000016) (0.012595571) (0.012879421499999988) (0.012840708499999992) (0.012622679999999997) (0.012791287499999998) (0.012878871000000014) (0.012734180499999997) (0.012663452000000006) (0.012606594499999998) (0.012751301000000007) (0.012651402999999992) (0.01298655750000001) (0.012919294000000026) (0.012569564499999991) (0.01266676700000001) (0.012796869000000002) (0.012927281000000013) (0.012694786999999999) (0.012656713500000014) (0.012654704500000002) (0.012890884500000005) (0.012786793500000004) (0.012869057500000003) (0.012871087000000003) (0.012656200999999992) (0.012687394000000005) (0.012586031499999983) (0.01240184250000001) (0.012320731500000001) (0.012701303499999997) (0.01222810249999999) (0.012559485000000009) (0.012791200500000002) (0.012457695500000004) (0.012705228999999998) (0.012279338000000015) (0.012483901499999991) (0.012230092999999984) (0.012346441) (0.012552038000000001) (0.012724220000000008) (0.01240562349999999) (0.012671732500000005) (0.012503688499999999) (0.012639696500000006) (0.012243115499999985) (0.012208543000000002) (0.012506439499999994) (0.012647289499999992) (0.012378319000000013) (0.012551383499999999) (0.012946395999999999) (0.012762974999999996) (0.012394570500000007) (0.012449431499999997) (0.012364647500000006) (0.012541832999999988) (0.012753324499999996) (0.012690825500000003) (0.012847032499999994) (0.012683981999999996) (0.012884432000000015) (0.012651997999999998) (0.012889568000000004) (0.012604856999999997) (0.012817999499999982) (0.012808378500000009) (0.012974699500000006) (0.012554195000000004) (0.012827924000000004) (0.013111223499999991) (0.012663985500000016) (0.012884868000000008) (0.012769969499999992) (0.013185111500000013) (0.012856854999999986) (0.012843659499999993) (0.012671838000000005) (0.012522883999999998) (0.012928296000000006) (0.012739945499999988) (0.013172099500000006) (0.012848679499999988) (0.012930624000000002) (0.012648171000000014) (0.013012700000000002) (0.012830548499999997) (0.012841987499999999) (0.012968746499999989) (0.012716517999999996) (0.012771270000000001) (0.012167535500000007) (0.01238417) (0.012436043500000007) (0.012444301000000005) (0.012507683999999991) (0.012428527499999995) (0.012358941499999998) (0.012523183000000007) (0.01232050500000001) (0.012608861499999999) (0.012766848500000011) (0.01238818849999998) (0.012610186500000009) (0.01260882549999999) (0.012798081500000003) (0.012559439500000005) (0.012651474999999995) (0.01254885750000001) (0.012385457000000002) (0.01245954199999999) (0.012369651999999995) (0.012541261499999998) (0.012326709500000005) (0.012349531499999997) (0.01259275) (0.012259760499999994) (0.012626978499999997) (0.012633193499999987) (0.012426298499999988) (0.012501372499999996) (0.012424248999999998) (0.012406465000000005) (0.0128438045) (0.012742512499999997) (0.01263591900000001) (0.013034555000000003) (0.012611167000000006) (0.012559859499999992) (0.01285712550000001) (0.012534029999999988) (0.01277490499999999) (0.012698876499999984) (0.012953726999999998) (0.012692602500000011) (0.012900912499999986) (0.012551419000000008) (0.012848048000000015) (0.013096131999999996) (0.01272723449999999) (0.012761241500000006) (0.012955592500000015) (0.013078661000000005) (0.012583756500000001) (0.012751939000000004) (0.012811626000000007) (0.012665840499999997) (0.012815968999999997) (0.012895008999999999) (0.012792441499999987) (0.012715344500000003) (0.013166979999999995) (0.012713539499999996) (0.013026655499999998) (0.012747585499999992) (0.012813073499999994) (0.012244993499999995) (0.012287023999999994) (0.012189060500000015) (0.012672777499999982) (0.01221824399999999) (0.0123180985) (0.012419246499999995) (0.012320133499999997) (0.012415910500000016) (0.01281636550000001) (0.012355956000000001) (0.01223502450000001) (0.012535167999999985) (0.012526891999999998) (0.012385474000000007) (0.012321254500000003) (0.012531197000000008) (0.012488517500000004) (0.012297384500000008) (0.012597038500000005) (0.012886913500000013) (0.012469379000000003) (0.012644433499999996) (0.01264003100000001) (0.012416931000000006) (0.0124226625) (0.012475388500000018) (0.012547891500000005) (0.012466383499999983) (0.012837423) (0.012639431500000006) (0.012992334000000008) (0.012435659000000002) (0.012781018499999991) (0.012595073500000012) (0.012693510500000019) (0.012828770000000003) (0.012743682999999978) (0.012485664499999993) (0.012870278000000013) (0.012856431500000001) (0.012958987500000005) (0.013271047499999994) (0.012760178999999996) (0.012878976) (0.012793612499999982) (0.012882466999999995) (0.012803689500000007) (0.012546224499999994) (0.012598160499999997) (0.012615949999999987) (0.012644794) (0.01276577999999999) (0.012596492499999987) (0.012692607999999994) (0.01332924299999999) (0.012959681) (0.013019404500000012) (0.012737104499999999) (0.012939902500000017) (0.012755277500000009) (0.012536955500000002) (0.012993371500000003) (0.012282207500000003) (0.012588974499999989) (0.012523619) (0.012916025000000012) (0.012504865500000004) (0.012365085499999998) (0.012643197500000009) (0.012320686499999997) (0.012756252999999995) (0.012779673500000005) (0.012555341500000011) (0.012400647500000014) (0.012216423500000018) (0.012417536499999993) (0.012443190500000006) (0.012773512999999986) (0.012206179999999997) (0.012881209000000005) (0.012555153) (0.012484525999999996) (0.0126629885) (0.012452512999999985) (0.012295998000000002) (0.012521230999999994) (0.012807719499999995) (0.01254509400000002) (0.012375476499999996) (0.012327176499999995) (0.0125866575) (0.012860808000000015) (0.012572888000000004) (0.0127291675) (0.012739364500000003) (0.012617646999999996) (0.012482598499999997) (0.012996078000000008) (0.01291416899999999) (0.012651568999999988) (0.012539892499999997) (0.012899103999999995) (0.012786343999999991) (0.012677552499999994) (0.012692263499999995) (0.012785812000000008) (0.013094839499999997) (0.012665074000000012) (0.01281553149999999) (0.012944364500000013) (0.012943959000000005) (0.01272295050000001) (0.0129188145) (0.012823494000000005) (0.01282380399999998) (0.01256453199999999) (0.01301913049999999) (0.012765432999999993) (0.013065934499999987) (0.013064899500000005) (0.01284405999999999) (0.012830359499999985) (0.013008305500000025) (0.012584453499999981) (0.012954447500000008) (0.0134710215) (0.012261613500000004) (0.012371686000000007) (0.012188475500000018) (0.012467566499999999) (0.012434267000000013) (0.01233752099999999) (0.012682396499999998) (0.012417560999999994) (0.012466005000000002) (0.012543240999999997) (0.012496115500000002) (0.012442113000000005) (0.012809007499999997) (0.012202207499999992) (0.012562758000000007) (0.0124632405) (0.012306836000000015) (0.012262279000000001) (0.012182401999999995) (0.012563321499999988) (0.012724411000000005) (0.012321986499999993) (0.012836592500000008) (0.012579239500000006) (0.012883528000000005) (0.012351339500000003) (0.012483995999999997) (0.01274675850000001) (0.012305074999999999) (0.012445270000000008) (0.0127408725) (0.012587750000000009) (0.012894683000000004) (0.012538043999999998) (0.012830126000000011) (0.012851018500000005) (0.01272053749999999) (0.013139266999999996) (0.012769708000000005) (0.012672093999999995) (0.012663950999999993) (0.01272251599999999) (0.013015324499999995) (0.013181323000000009) (0.013216585500000017) (0.012636802999999988) (0.01276226699999998) (0.012809997500000017) (0.012626314999999999) (0.013937132500000005) (0.012592171999999999) (0.012758872500000004) (0.012719433500000002) (0.012970106500000009) (0.012590952000000002) (0.012770620499999996) (0.012930325499999992) (0.012711769499999984) (0.012751138000000009) (0.01284996849999999) (0.013119211499999991) (0.012781055) (0.012750374999999994) (0.012740456999999997) (0.012246557500000005) (0.012171274999999995) (0.012476742999999998) (0.012437450000000003) (0.012469034500000004) (0.012738906999999994) (0.0125615845) (0.012408938999999994) (0.012517645499999994) (0.012773418499999994) (0.012514245499999993) (0.012649662500000006) (0.012538131500000008) (0.012641643499999994) (0.012583313999999998) (0.012583604500000012) (0.012502403999999995) (0.012375253500000002) (0.01273862349999999) (0.012451836000000008) (0.012437234499999991) (0.0124017825) (0.012215919999999991) (0.012550200499999997) (0.012534625500000007) (0.012437215500000001) (0.012685443500000004) (0.012487997499999987) (0.013048670000000012) (0.012586464999999991) (0.012611084999999994) (0.012785975500000005) (0.012732971999999981) (0.018989079499999978) (0.012750651500000001) (0.012761267999999992) (0.012461574000000003) (0.012897924000000005) (0.012561645999999996) (0.013354479000000002) (0.012885354999999987) (0.012822673499999993) (0.012793300999999993) (0.012688075499999993) (0.013073814000000003) (0.012670382499999994) (0.0128788695) (0.013044998000000002) (0.01274778) (0.012806316499999998) (0.013028279500000017) (0.012707356000000003) (0.012884991499999998) (0.013054590500000005) (0.012895968500000007) (0.013252363999999989) (0.013337716) (0.013037287999999994) (0.01283993650000001) (0.012913507000000005) (0.013004694499999997) (0.012763736000000012) (0.012861440500000001) (0.013040707999999998) (0.012187629500000005) (0.012387383000000002) (0.012337796500000012) (0.012434172499999993) (0.012688376000000001) (0.01248633099999999) (0.012392942000000018) (0.012631272500000013) (0.012525559000000006) (0.012263145000000003) (0.012412273500000001) (0.01243843800000001) (0.012643567999999994) (0.012213174000000007) (0.01250216400000001) (0.01223980999999999) (0.012248417000000011) (0.012351805500000007) (0.012320731000000001) (0.012541362) (0.012451822000000001) (0.012187220999999998) (0.012341850000000001) (0.0122903615) (0.012490856000000009) (0.01231056300000001) (0.01262300999999999) (0.012244711999999991) (0.012275528000000008) (0.012879867000000003) (0.012548987499999997) (0.012318616500000004) (0.012513298499999992) (0.012529612999999995) (0.012670570500000006) (0.012687145999999996) (0.012648893499999994) (0.012568824000000006) (0.012674720999999986) (0.012573819) (0.013360285499999985) (0.013058312500000002) (0.012851165500000011) (0.012692702) (0.012803743499999992) (0.012847590499999992) (0.01272358500000001) (0.013029306000000004) (0.013068465500000001) (0.01288140950000001) (0.01272529) (0.012774179499999996) (0.012466154000000007) (0.012738494000000003) (0.012715823000000001) (0.012691543499999985) (0.012911695499999987) (0.012839965499999995) (0.012784982) (0.012785775499999999) (0.012845066499999988) (0.01251475299999999) (0.01294359199999999) (0.012653693500000007) (0.012112658999999998) (0.012225031500000011) (0.012391847999999997) (0.012576960999999998) (0.01247372649999999) (0.012242733500000005) (0.012325026000000003) (0.012255894500000017) (0.01226634800000001) (0.012598401999999995) (0.012522830500000012) (0.012408849999999999) (0.012374722000000005) (0.012382753499999982) (0.012477510499999997) (0.012750794499999996) (0.012239574000000003) (0.012392858999999992) (0.012663564000000002) (0.012341468499999994) (0.012420983999999982) (0.012236279000000003) (0.012297890500000005) (0.012366828499999996) (0.012345715000000021) (0.012510289999999993) (0.012493897000000018) (0.01253646750000001) (0.012314744999999988) (0.012907752000000008) (0.012456487999999988) (0.012459176000000002) (0.012614898999999999) (0.012787894500000008) (0.012785117000000012) (0.012849633) (0.012613572500000003) (0.0127511025) (0.012780140500000009) (0.012693980499999993) (0.012934515500000007) (0.012616214999999986) (0.012755596500000008) (0.0126558415) (0.012683345999999998) (0.012648958500000002) (0.012630007499999998) (0.012682941000000003) (0.012490869500000001) (0.01274379299999999) (0.01302725049999999) (0.01296158) (0.012461011499999994) (0.012747794999999992) (0.012880891000000005) (0.012813153500000007) (0.012771122999999995) (0.012912675500000012) (0.0128429075) (0.012644781499999994) (0.012890025000000013) (0.012836373499999998) (0.012517635999999999) (0.012652950999999996) (0.012383086000000015) (0.012578315999999992) (0.01238642899999999) (0.012350512999999994) (0.012288071500000011) (0.012365993500000005) (0.01266895250000001) (0.012276212499999994) (0.012489195499999994) (0.012469811499999997) (0.012471792999999995) (0.01234858200000001) (0.012671226499999994) (0.012408708000000004) (0.012585975) (0.01265649399999999) (0.012169337000000002) (0.012456393499999996) (0.012433766999999998) (0.01286926549999999) (0.012666439499999987) (0.012474503500000012) (0.012383029500000003) (0.012558268499999997) (0.012532237500000001) (0.012340335000000008) (0.012746109000000005) (0.012566374500000005) (0.012722240999999981) (0.012745550499999994) (0.0128338915) (0.012780878499999995) (0.012664804000000002) (0.012755685999999988) (0.01274958000000001) (0.012623291499999995) (0.012838944500000005) (0.012928422999999994) (0.012733143000000002) (0.012672662500000015) (0.012575372999999987) (0.012998796499999993) (0.012760448000000008) (0.013210217999999996) (0.01276221000000001) (0.012763770499999993) (0.012655795499999997) (0.012637121499999987) (0.013012665499999992) (0.01307879449999999) (0.012621228499999998) (0.012927337499999997) (0.012881045499999993) (0.012815612500000004) (0.01278456900000001) (0.013167386000000003) (0.012583490000000003) (0.012522908000000013) (0.013004423499999987) (0.012776674500000001) (0.012753640499999996) (0.01307296749999999) (0.012832627000000013) (0.012739833500000006) (0.012563969000000008) (0.012958402499999994) (0.012481706500000009) (0.012318684999999996) (0.012276542000000001) (0.012520957499999985) (0.012689073500000009) (0.012627251500000006) (0.012492639) (0.012519212500000002) (0.012664739500000008) (0.012565118) (0.01254293699999999) (0.01272753800000001) (0.012626871500000011) (0.01256587399999999) (0.012563056000000003) (0.012860851500000006) (0.012504079999999987) (0.012435058500000012) (0.012862710999999999) (0.012309917500000003) (0.012383852) (0.012275254999999999) (0.012566200000000013) (0.012725084500000011) (0.012692290000000009) (0.012513542500000002) (0.012443082000000008) (0.012623007000000006) (0.012673760500000006) (0.012280091000000007) (0.012699443000000005) (0.012773436500000013) (0.0127644175) (0.012583681499999999) (0.01265607299999999) (0.012603498000000005) (0.012646514999999997) (0.012721803500000017) (0.012748819999999994) (0.012972944) (0.012687366499999991) (0.01285725700000001) (0.012720141500000004) (0.012743440000000009) (0.013172443999999991) (0.012876338499999987) (0.012582115000000005) (0.012758571999999996) (0.012430700500000003) (0.012527225500000003) (0.012530827499999994) (0.013196755500000004) (0.012733305500000014) (0.012694092500000004) (0.012882503000000003) (0.013444699500000004) (0.012897170000000013) (0.01308012800000001) (0.012936784499999993) (0.012698048000000017) (0.012756223999999997) (0.013103244499999986) (0.012386906000000003) (0.012699525499999989) (0.012357719500000003) (0.012710683) (0.012363741000000011) (0.012452283000000008) (0.01244509299999999) (0.012604594999999996) (0.012238653000000002) (0.012473445) (0.012714139499999999) (0.012423088999999998) (0.0125227235) (0.012416250500000017) (0.012413869999999994) (0.012379325999999996) (0.012676267000000005) (0.012216210499999991) (0.012435967999999992) (0.012305330500000003) (0.012355905999999986) (0.01274460949999999) (0.012218211500000006) (0.01252076349999999) (0.012363244500000009) (0.012669708000000002) (0.012462173500000007) (0.012712499500000002) (0.012426439499999997) (0.012411404000000001) (0.012667596500000017) (0.012496481000000004) (0.012612202000000003) (0.012779675500000004) (0.012637911000000002) (0.012897893500000007) (0.012615208000000017) (0.01262993250000001) (0.012721557499999994) (0.012997755000000014) (0.012832700500000002) (0.013052503500000007) (0.012928329499999988) (0.0127910475) (0.012637365500000011) (0.012777253000000002) (0.012737603000000014) (0.012824203500000006) (0.0129314965) (0.012908735500000004) (0.012657047000000005) (0.013005655500000005) (0.012834741499999996) (0.012732434) (0.012691933500000002) (0.013146811999999994) (0.012805377000000007) (0.012961129500000002) (0.012613615999999994) (0.012793805000000005) (0.01275870649999998) (0.012779203999999988) (0.012690422000000007) (0.012757820499999989) (0.012439840499999993) (0.01231636600000001) (0.012476124000000005) (0.012431186499999997) (0.012337847999999998) (0.0123863845) (0.012632268000000002) (0.012429897499999995) (0.012423619999999996) (0.012364621500000006) (0.012641953499999997) (0.012327944499999993) (0.012490804500000008) (0.012257729000000009) (0.012506032999999986) (0.012644928500000013) (0.01240137849999999) (0.012254816500000001) (0.012259615500000001) (0.01232395800000001) (0.012447775999999994) (0.01230582949999999) (0.012456677499999999) (0.012494750999999998) (0.01276711300000001) (0.0126974995) (0.012716779999999997) (0.012428385) (0.012607768000000005) (0.012546232500000004) (0.012566476500000007) (0.012801869000000007) (0.012529819499999997) (0.012679162500000007) (0.012792956499999994) (0.012776992000000001) (0.012804626499999985) (0.0127278465) (0.012982300000000016) (0.012710424999999997) (0.01297224100000001) (0.013181057499999996) (0.013171154000000004) (0.012695783999999988) (0.01339182350000001) (0.012753925999999985) (0.012564491499999983) (0.012792943499999973) (0.01303456) (0.012630472500000017) (0.012489497000000002) (0.01272103699999999) (0.012940590000000016) (0.012864208000000002) (0.012789995500000012) (0.01253030899999999) (0.012646293000000003) (0.012804156000000011) (0.012738075499999987) (0.012890056999999996) (0.01340404449999999) (0.012681076499999985) (0.012582726000000002) (0.012967277999999985) (0.012620034999999988) (0.012971915) (0.012370482500000002) (0.012560645499999995) (0.01265222299999999) (0.01281979250000001) (0.012140900499999996) (0.012387099500000012) (0.012381774000000012) (0.012538800999999988) (0.012480589999999986) (0.012710985000000008) (0.012428934000000003) (0.012298293500000002) (0.0122053565) (0.012752775999999993) (0.012217522500000008) (0.01233084999999999) (0.012222865) (0.012488380999999993) (0.012156752500000007) (0.012535874000000002) (0.012614682000000002) (0.01230237449999999) (0.012353321499999986) (0.012558991499999991) (0.01261831849999999) (0.012427459000000002) (0.01227428400000001) (0.012310754500000007) (0.012783233500000005) (0.0124075025) (0.012490533500000012) (0.012558701999999991) (0.01266980899999999) (0.012503028) (0.01280443349999999) (0.012703844999999991) (0.013046370999999987) (0.012745779999999998) (0.012772654499999994) (0.012948988500000008) (0.012867319500000002) (0.0129998645) (0.012955516500000014) (0.012536629000000007) (0.01264248849999998) (0.012818537999999977) (0.012746319500000006) (0.012621458000000002) (0.012661749500000014) (0.012840228499999995) (0.012899722500000002) (0.013094432500000017) (0.012847594500000017) (0.013134903500000003) (0.013266488500000007) (0.012873993) (0.01297337799999998) (0.012633153999999994) (0.012981698500000013) (0.012758075500000007) (0.012880577000000018) (0.012834432500000006) (0.012284649000000009) (0.012521456499999986) (0.012667704500000002) (0.012486767499999996) (0.012478914000000008) (0.012374094500000016) (0.012310495500000004) (0.012467585500000003) (0.012502740499999998) (0.012493591999999998) (0.012469844999999993) (0.012397398500000004) (0.012426187500000005) (0.012396232000000007) (0.012541453999999994) (0.012679246500000019) (0.012427117000000001) (0.012633806499999997) (0.01251745949999998) (0.012188159000000004) (0.012397271000000015) (0.012554051499999996) (0.012464121000000009) (0.01262836399999999) (0.0122600135) (0.012457387000000014) (0.012557033000000009) (0.012462748499999995) (0.012737352000000007) (0.0125656985) (0.012559217000000011) (0.012565836499999983) (0.012842956500000002) (0.01271431349999999) (0.012666526500000011) (0.012617319500000002) (0.012962053500000001) (0.013058676499999991) (0.012952297000000002) (0.012848929999999995) (0.01278638700000001) (0.012615900999999999) (0.012932301500000007) (0.013028937000000018) (0.012872304500000015) (0.013097869499999984) (0.013157173499999994) (0.01275789749999999) (0.01288404) (0.012741210499999989) (0.012663864499999997) (0.012747494999999984) (0.012847255999999987) (0.012807728500000018) (0.012634392000000008) (0.013617481999999986) (0.01299130250000001) (0.012816223500000015) (0.012741633500000002) (0.013199643499999997) (0.012931341000000013) (0.012854694999999985) (0.013077269500000002) (0.012578200999999997) (0.012590589999999999) (0.012262411) (0.012523956999999988) (0.012572182500000001) (0.012260873500000019) (0.012314412999999982) (0.012702332999999996) (0.012470710499999996) (0.01231470250000001) (0.012952337000000008) (0.013121057000000005) (0.012334110500000009) (0.012325553500000003) (0.012236996) (0.012509268500000004) (0.012423343000000003) (0.012310422500000015) (0.012453089) (0.012759866999999994) (0.012317384000000015) (0.012502526999999986) (0.012524585000000005) (0.012430811500000014) (0.012500172500000004) (0.012255297000000012) (0.012463419500000003) (0.012448923000000015) (0.012480077000000006) (0.012750428000000008) (0.013033250499999982) (0.012624974499999997) (0.012681960000000006) (0.012641742999999997) (0.01286642049999999) (0.013130640499999999) (0.012849945500000001) (0.012746867999999995) (0.012653081999999996) (0.012574037499999996) (0.012843915999999997) (0.012862984500000008) (0.012821865000000002) (0.012768501500000001) (0.012822096500000005) (0.012659256000000008) (0.012801344999999992) (0.012871222500000001) (0.012919198999999992) (0.01273368300000001) (0.012498855500000003) (0.012538882500000001) (0.012425035000000015) (0.012937292499999989) (0.012718332499999999) (0.012725916500000004) (0.012439141) (0.012738347499999997) (0.012993529000000018) (0.012740461000000008) (0.012847472499999998) (0.012890827500000007) (0.012694864499999986) (0.012767623500000005) (0.012763884000000017) (0.0122807365) (0.013013682499999998) (0.012366493000000006) (0.012852869500000003) (0.012445768499999996) (0.0127782055) (0.01235059899999999) (0.012614895999999987) (0.012562395500000004) (0.012658937499999995) (0.012520636500000015) (0.012802273500000003) (0.012467508000000002) (0.012343083500000004) (0.012532735500000017) (0.01260583400000001) (0.013208866) (0.012658434999999996) (0.012497451000000007) (0.012728654999999992) (0.012336282500000004) (0.01256525700000001) (0.012276478000000007) (0.012374013000000003) (0.012419377999999995) (0.012289634999999993) (0.012284644000000025) (0.012840541999999996) (0.012497933000000003) (0.012534275500000011) (0.012577121499999996) (0.012287313500000008) (0.012758832999999997) (0.012799412999999996) (0.012722872999999996) (0.01270840999999999) (0.012519853500000011) (0.012959732499999987) (0.012608475999999993) (0.013100566999999994) (0.012771405999999999) (0.01295594600000001) (0.012686966499999994) (0.012752738999999999) (0.012810236500000002) (0.013679171500000004) (0.013055068500000017) (0.0127706645) (0.012540845999999994) (0.012785203499999995) (0.0126884055) (0.012706804499999988) (0.012585045000000003) (0.012782939999999993) (0.012802671000000002) (0.012612557999999996) (0.012849282500000003) (0.013106477500000005) (0.012849128499999987) (0.012881469499999978) (0.012894079000000003) (0.012776073000000013) (0.012897649499999983) (0.012636519000000013) (0.012670923500000014) (0.012507073000000021) (0.012410294500000002) (0.012367675500000008) (0.012333668999999992) (0.012390512000000006) (0.012623102000000011) (0.012412984500000002) (0.012729695499999999) (0.012447531999999997) (0.012612885500000018) (0.012548077500000004) (0.012637480500000006) (0.012447567000000007) (0.012363352000000008) (0.01227478949999998) (0.012526687999999994) (0.012267496000000017) (0.012244262500000005) (0.012117372500000001) (0.012590456000000014) (0.012274915499999997) (0.012767974000000001) (0.012345781000000014) (0.012571348499999982) (0.01281075999999999) (0.012548372500000002) (0.012368260499999992) (0.012532919999999989) (0.012558691999999996) (0.012442104999999995) (0.012670623000000006) (0.012814614500000002) (0.012675755999999996) (0.012515764999999998) (0.013025277000000002) (0.012706928500000006) (0.012582909499999989) (0.012563614) (0.012681959499999992) (0.01261797449999999) (0.01288405749999999) (0.013030944999999988) (0.012785691000000002) (0.012761872999999993) (0.012666591000000005) (0.012831030500000007) (0.012893565499999995) (0.012791474499999997) (0.012641009500000008) (0.01277835599999999) (0.012793172500000005) (0.012703113500000002) (0.012988504999999997) (0.012536683000000007) (0.013118432499999999) (0.012814190999999989) (0.012947223499999994) (0.01297918499999999) (0.012778424999999996) (0.013049009499999986) (0.013107195500000016) (0.013038815999999995) (0.013243160000000004) (0.012733758500000011) (0.012652465999999987) (0.01232491749999999) (0.012629868500000002) (0.012299732000000008) (0.012652169500000005) (0.012304022999999997) (0.012531691499999997) (0.0124733125) (0.012491183000000003) (0.012410671500000012) (0.012731579499999979) (0.012405460999999993) (0.012548572499999994) (0.01263679949999999) (0.012307063499999993) (0.012421929499999998) (0.012408760500000005) (0.012570965999999989) (0.012557955000000023) (0.012291566000000004) (0.012473375499999995) (0.012449090999999995) (0.012678032000000006) (0.0124268825) (0.012558851999999995) (0.012483715999999992) (0.0125412565) (0.012434938000000006) (0.012548457499999999) (0.012581375000000006) (0.012512505999999993) (0.012730946500000007) (0.012723740999999997) (0.012732116500000001) (0.012722078499999998) (0.012641799999999995) (0.01269902299999999) (0.012875182999999998) (0.012642910499999993) (0.012814014999999998) (0.012691483000000003) (0.012649946000000009) (0.012620385000000012) (0.012777203) (0.013038771500000018) (0.012697833499999991) (0.012745013999999999) (0.012658734000000005) (0.012796581500000015) (0.012662935) (0.012543078) (0.012976941000000006) (0.012581743000000006) (0.012767353499999995) (0.012928582000000008) (0.013389787499999986) (0.01306316099999999) (0.012772516000000012) (0.012903611999999995) (0.01267428050000001) (0.012961613499999983) (0.012650552500000009) (0.012713212500000001) (0.012518568499999994) (0.012565950000000006) (0.01249452949999999) (0.012433847499999998) (0.012453107500000005) (0.012574984999999997) (0.012581363000000012) (0.012371901000000005) (0.012414934000000002) (0.012846057999999994) (0.012639686000000011) (0.012539709999999996) (0.012400349000000005) (0.012507085000000015) (0.012443883500000003) (0.012468060499999989) (0.012237824500000008) (0.012807617499999993) (0.012403856500000005) (0.012580521499999997) (0.01235272200000001) (0.0124763455) (0.012257535) (0.012707138000000007) (0.012404122000000004) (0.012699112500000012) (0.012973408500000005) (0.012438725500000011) (0.012550501000000006) (0.012561544500000008) (0.012499797500000007) (0.012506459500000011) (0.012602344500000015) (0.01269123250000001) (0.0125464765) (0.01252814749999999) (0.012709220500000007) (0.012620568999999998) (0.012871333499999998) (0.012704166999999988) (0.012847819999999996) (0.012630379499999997) (0.013132356999999997) (0.012735446999999997) (0.01286298449999998) (0.013006759500000006) (0.012774267000000006) (0.012767451999999999) (0.012661552000000006) (0.012500418499999999) (0.012891860500000005) (0.012723801000000007) (0.012709291499999997) (0.012723581500000011) (0.012791784) (0.012577402000000001) (0.013084707000000001) (0.013060537499999997) (0.012787938499999998) (0.012996557999999991) (0.01287706650000002) (0.013157503000000001) (0.013093820000000006) (0.01265508500000001) (0.012355292500000004) (0.012595592999999988) (0.012307178000000002) (0.012530427999999996) (0.012440487500000014) (0.012296203499999991) (0.012117260000000019) (0.012298674999999995) (0.012682797999999995) (0.012779024500000014) (0.012362551499999985) (0.012548243999999986) (0.012599972499999987) (0.012389215499999995) (0.012639788499999985) (0.012465089000000013) (0.012384591) (0.01262769150000001) (0.012404298000000022) (0.012281654000000003) (0.012351226000000007) (0.012407729999999992) (0.012311677500000007) (0.012523718000000003) (0.012369375499999988) (0.012394905500000025) (0.012597368999999983) (0.012427193500000003) (0.012539334499999999) (0.01258289600000001) (0.012631244) (0.012544700499999992) (0.013091694000000001) (0.012836712) (0.012881225000000024) (0.012857448999999993) (0.01304625949999999) (0.0128920815) (0.012626565500000006) (0.012841074999999993) (0.012821645000000007) (0.012674182499999992) (0.013008930999999987) (0.0127948435) (0.013223661499999984) (0.012842276500000013) (0.012951062) (0.012860731500000014) (0.012845920499999997) (0.012675866500000008) (0.012789486000000017) (0.012398265499999991) (0.012688134500000031) (0.012821902499999996) (0.012791558499999994) (0.012889001499999997) (0.012861426499999995) (0.0129324975) (0.01306397350000002) (0.013034809499999994) (0.012732252500000013) (0.012811222499999983) (0.012802890000000011) (0.012687889500000007) (0.012376637499999996) (0.012528170500000005) (0.012411946499999993) (0.012395246500000012) (0.012374666000000006) (0.012485707500000012) (0.012481422500000006) (0.012527111000000007) (0.012373984500000004) (0.012475746000000024) (0.012942075999999997) (0.01248602850000001) (0.012780252999999991) (0.013024593500000015) (0.012416629499999998) (0.012364030499999998) (0.012205270500000004) (0.012658924499999988) (0.012319852999999992) (0.012304517500000015) (0.012219994499999998) (0.012622294999999992) (0.012510858999999985) (0.01229667000000001) (0.012683255500000004) (0.012528431499999992) (0.01288934500000001) (0.012601188499999999) (0.0124630815) (0.012801351499999988) (0.012643879499999996) (0.012359946999999996) (0.012696781000000004) (0.01273150399999999) (0.012859567500000002) (0.012608349500000005) (0.012861875499999995) (0.012851427499999998) (0.01285346250000001) (0.012568104499999996) (0.01306234249999999) (0.012619098500000009) (0.012717497999999994) (0.012700340000000018) (0.013138468500000014) (0.012895489499999996) (0.013163341000000023) (0.012794767999999998) (0.012487284999999987) (0.012628896) (0.012526857999999988) (0.012755064500000024) (0.012627366500000015) (0.012817136000000007) (0.012634510000000002) (0.013130130000000004) (0.013000018000000002) (0.012862687499999984) (0.012777012500000018) (0.012882085000000001) (0.012598659500000012) (0.013051925000000006) (0.012994963499999984) (0.012721143000000018) (0.012358547499999997) (0.012271279499999996) (0.012771734999999992) (0.012263595999999988) (0.012315069500000012) (0.012565722000000001) (0.012681588999999993) (0.012303719500000004) (0.012475997499999988) (0.012633744500000002) (0.012444393999999998) (0.012411706500000022) (0.012322900999999997) (0.012614393000000002) (0.012663201000000013) (0.012507964999999996) (0.012430191999999993) (0.01229028850000001) (0.012486997) (0.0124888405) (0.012488033000000023) (0.012701928500000001) (0.012216600999999994) (0.012714537999999997) (0.012920660000000014) (0.012269649999999993) (0.013143685500000016) (0.012420041499999993) (0.012615794999999999) (0.01235502799999999) (0.012484335) (0.012501893500000014) (0.012963061499999998) (0.012671242) (0.0129534615) (0.01283841699999999) (0.012905518500000004) (0.012795725500000008) (0.012946222000000021) (0.012913787999999995) (0.012937364000000007) (0.012909500000000004) (0.012945098499999988) (0.012764528999999997) (0.013153759499999987) (0.01269935300000001) (0.012911247000000015) (0.012624086999999992) (0.012764220999999978) (0.012621686499999993) (0.013169557999999998) (0.012688479500000002) (0.01294413450000001) (0.012783076500000004) (0.012999961000000004) (0.012526040000000002) (0.012791387000000029) (0.012527927499999994) (0.012951683499999991) (0.013039523499999997) (0.013033877499999999) (0.01274505599999999) (0.01264689899999999) (0.01279846049999997) (0.012384928500000003) (0.012314898500000018) (0.012519727500000008) (0.012257312000000006) (0.012421325999999996) (0.012501829000000006) (0.012341311499999993) (0.012497644000000002) (0.012387835999999985) (0.012464829999999996) (0.012417300499999992) (0.012484565500000017) (0.01240187999999999) (0.012542695999999992) (0.012664662000000021) (0.012550031999999989) (0.012388515500000002) (0.012283089499999997) (0.01235545149999999) (0.012321160499999984) (0.0125084585) (0.012273158000000006) (0.012369127500000007) (0.012434183000000001) (0.012645475500000003) (0.012467587000000002) (0.012389939000000003) (0.012453893000000008) (0.012292950999999996) (0.012338659500000002) (0.012559891500000003) (0.012825161000000002) (0.012708306000000003) (0.01267981650000001) (0.0127130035) (0.012687066499999997) (0.012740967999999991) (0.012550077499999979) (0.012724666999999995) (0.012838800999999997) (0.012880933499999997) (0.012851388000000019) (0.012966726999999997) (0.012843436500000013) (0.012945338) (0.012665461500000003) (0.012789134499999993) (0.013147833999999997) (0.012587164499999998) (0.012542746499999993) (0.012752291000000013) (0.012685202500000006) (0.013004059499999998) (0.01287587200000001) (0.012986832500000003) (0.012579818000000006) (0.012727756000000007) (0.013163463500000014) (0.012957298500000006) (0.013345135000000008) (0.013048177499999994) (0.012946055500000012) (0.012792793499999996) (0.012854257500000008) (0.012468093999999999) (0.01223954749999999) (0.012631284999999992) (0.012521417999999992) (0.012506946500000005) (0.012331459500000003) (0.012386832500000014) (0.012505019000000006) (0.012676387499999997) (0.012551571499999997) (0.012360735500000011) (0.012484390999999997) (0.012539159000000008) (0.012306207999999999) (0.012565053000000007) (0.012408140499999998) (0.012530776499999993) (0.0124640315) (0.012553026999999994) (0.012526949999999995) (0.013039349000000006) (0.012466890500000008) (0.012247105500000008) (0.01253252249999999) (0.012631992000000009) (0.012515729500000003) (0.01251223500000001) (0.012510426499999991) (0.012829397999999992) (0.012656630500000016) (0.012366268) (0.012599120999999991) (0.013090469000000007) (0.012947018000000005) (0.012859322500000006) (0.012660924000000018) (0.012922435999999995) (0.01293356100000001) (0.012761964499999986) (0.012659444999999991) (0.01284935949999999) (0.012840635500000003) (0.013337483000000011) (0.013041100999999986) (0.013077760999999993) (0.012926618) (0.013027316499999997) (0.012951914499999995) (0.012659478000000002) (0.013567089500000018) (0.012867983500000013) (0.012836096500000005) (0.012877796999999996) (0.013008299000000001) (0.012669104) (0.012549001500000004) (0.012740429999999983) (0.012705614000000004) (0.01274992400000001) (0.012700635000000016) (0.013174319000000004) (0.012690130500000008) (0.012834605999999998) (0.012793019500000016) (0.012284942499999993) (0.012396511999999998) (0.012690719000000017) (0.012427819499999992) (0.012285282499999994) (0.012428952499999993) (0.01266938649999999) (0.012375319499999995) (0.012887179000000012) (0.012341411499999996) (0.012343653999999996) (0.012338426999999999) (0.012554971499999998) (0.012512301000000003) (0.012411097499999996) (0.012398887999999997) (0.012483516) (0.012393805499999994) (0.012383177999999995) (0.01243172499999999) (0.012294441999999989) (0.012381967000000008) (0.012329892500000009) (0.012833412000000002) (0.012586009499999995) (0.012295400500000012) (0.012666966000000002) (0.012878682500000002) (0.012657027500000001) (0.012678150499999985) (0.012411952500000004) (0.012436257499999992) (0.012940082500000005) (0.012826102500000006) (0.012870248) (0.012631438000000009) (0.012634482500000002) (0.012776701000000001) (0.012901783) (0.012756402) (0.012705305000000014) (0.012801293499999991) (0.012644385999999994) (0.012930208499999998) (0.012625758500000014) (0.012960444000000002) (0.012788107499999993) (0.012915068000000002) (0.012503216499999997) (0.013102771499999999) (0.012917335000000002) (0.012579465999999997) (0.012907493000000006) (0.013104667) (0.012726497500000003) (0.012926403000000003) (0.012625351000000007) (0.012687329999999983) (0.012808503999999998) (0.012846714999999995) (0.012717956500000002) (0.012905098500000003) (0.012814002000000005) (0.012915136000000008) (0.012775494999999998) (0.012425869500000006) (0.012238933499999993) (0.012294234000000001) (0.012220871499999994) (0.012476044499999991) (0.012409973000000005) (0.012265989000000005) (0.012648085000000003) (0.012530882999999993) (0.012394187000000015) (0.012706940000000014) (0.012504323499999997) (0.013042717999999995) (0.012622394499999995) (0.01235463149999999) (0.012318611499999993) (0.012569144500000004) (0.012301323000000003) (0.01253907) (0.012308694999999995) (0.012581850499999991) (0.012509799000000016) (0.012529862500000002) (0.012492273999999998) (0.012647627500000008) (0.012534613) (0.012521828999999998) (0.012708997) (0.012695117000000006) (0.012512307000000014) (0.012358807999999999) (0.012663142499999988) (0.012515767999999997) (0.012575685500000003) (0.012496467499999997) (0.012622189000000006) (0.012670162999999998) (0.012541323500000007) (0.012716441000000009) (0.0132733575) (0.012745544999999997) (0.012871715000000006) (0.01259403499999999) (0.012772584000000003) (0.012737091999999992) (0.0130344565) (0.012908908999999996) (0.012539457500000004) (0.012959844499999998) (0.013085275499999993) (0.012684942000000005) (0.012668317000000012) (0.012591875999999988) (0.012909432500000012) (0.012847389999999986) (0.012773122499999998) (0.012919812500000002) (0.012870918999999995) (0.013045957999999996) (0.013383147999999997) (0.013038057500000005) (0.01291542200000001) (0.012700377999999998) (0.012739272499999996) (0.012362525500000013) (0.012210064000000007) (0.012433338000000002) (0.01244283950000001) (0.012535802499999998) (0.012282048000000004) (0.012488247499999994) (0.012661515500000012) (0.012832243000000007) (0.012493445500000006) (0.012526998000000011) (0.012422690499999986) (0.012655490500000005) (0.013054851500000006) (0.012604662499999988) (0.012188589) (0.012411352) (0.012400511499999989) (0.012435967999999992) (0.012214468500000006) (0.012338476499999987) (0.012288122999999998) (0.012187703000000008) (0.01227415900000002) (0.012657597999999992) (0.012505565499999996) (0.012319748499999991) (0.013018964500000008) (0.012504303000000008) (0.01245123849999999) (0.012566718500000004) (0.012488295999999996) (0.012493062499999999) (0.013027829500000004) (0.012500058499999994) (0.012756061999999999) (0.013055904499999993) (0.012746451000000006) (0.012470765499999995) (0.012574833500000007) (0.012817628500000011) (0.012563803499999998) (0.012779211500000012) (0.012935847500000014) (0.01270967599999999) (0.012873554500000009) (0.012841875500000002) (0.012980266000000004) (0.012556366999999999) (0.013078867000000008) (0.012795952) (0.012836107000000013) (0.012978672999999982) (0.012754109999999985) (0.0129374565) (0.012872161000000007) (0.012681772999999993) (0.012830988000000002) (0.013330652999999984) (0.012953849000000003) (0.012936705000000007) (0.012807845999999998) (0.012684467500000005) (0.012374946999999997) (0.012241567000000009) (0.012649038499999987) (0.012232883) (0.012185662000000014) (0.012314255999999996) (0.012505924500000001) (0.012259548500000009) (0.012397966999999996) (0.012275353500000002) (0.012262514499999988) (0.012654867) (0.012974891500000016) (0.01290606000000001) (0.012546490999999993) (0.012752968500000003) (0.012472165500000007) (0.012107410999999998) (0.012846476499999995) (0.012802255999999998) (0.012222114500000006) (0.012414915499999998) (0.0122365735) (0.012528157000000012) (0.012487214999999996) (0.012496181000000009) (0.012706555000000008) (0.012660720500000014) (0.012494243000000002) (0.012611451999999995) (0.012760847500000005) (0.01254047400000001) (0.012657913000000007) (0.012872291999999994) (0.012877573500000003) (0.012944762499999998) (0.012490076500000002) (0.012705454500000005) (0.012699622999999993) (0.01279804100000001) (0.012660110499999988) (0.012825461499999996) (0.013105690500000003) (0.012853113999999999) (0.013200541999999996) (0.012934497999999975) (0.012959135999999996) (0.012512559000000006) (0.013203579999999993) (0.01274271149999999) (0.012554642500000018) (0.012983371500000007) (0.012698001) (0.012688328499999998) (0.01294997299999999) (0.01283587550000001) (0.012728745500000013) (0.012899293000000006) (0.012676462) (0.012792789499999985) (0.0127125285) (0.013250452999999995) (0.013081718999999992) (0.012696554999999984) (0.012437763000000004) (0.012246498500000008) (0.012557999) (0.012284143499999997) (0.012396036) (0.012285912499999996) (0.012192014000000001) (0.012289795999999992) (0.012386504499999992) (0.012344649500000013) (0.01272163150000001) (0.012594095999999985) (0.012212933999999995) (0.012260198) (0.012568665000000007) (0.012399390499999996) (0.012447947000000015) (0.012253177000000004) (0.01240965849999999) (0.01291444700000001) (0.012258090500000013) (0.012690082999999991) (0.012383683500000006) (0.012782130999999988) (0.012486045500000001) (0.012718331499999999) (0.012382058500000001) (0.012803661499999994) (0.012339780999999994) (0.012279027999999997) (0.012516167500000008) (0.012284072500000007) (0.012735338500000012) (0.012685010499999996) (0.012639287999999999) (0.012684302000000008) (0.012586806499999992) (0.012866333499999993) (0.012671984999999997) (0.012584008000000008) (0.01263650799999999) (0.012830430500000004) (0.013118534000000001) (0.012662920499999994) (0.013054830500000003) (0.012911051000000007) (0.013027472500000012) (0.012773430500000002) (0.0128251635) (0.012727598500000006) (0.012550275) (0.013145035499999999) (0.012800799499999987) (0.012605842500000006) (0.012831839499999997) (0.012508114) (0.012896381000000012) (0.01307234950000001) (0.0128862265) (0.012805296500000007) (0.013144259999999991) (0.012834733999999987) (0.012663088500000003) (0.013255227499999994) (0.012808154500000002) (0.01238516499999999) (0.012470201) (0.012407272999999996) (0.012679663499999994) (0.01242244449999999) (0.012500235999999984) (0.012465840499999992) (0.012273699999999999) (0.012366368999999988) (0.012617690499999987) (0.012378930999999996) (0.012530679499999989) (0.01258408350000001) (0.01242568899999999) (0.012471513000000004) (0.012706183999999995) (0.012417285) (0.012640303499999991) (0.012519546000000006) (0.012590496999999992) (0.012867893500000019) (0.012476025499999988) (0.012386254999999999) (0.012374668499999991) (0.012332275500000003) (0.012466389000000008) (0.012901463499999988) (0.01226165500000001) (0.012767461000000008) (0.012524521999999982) (0.01238014350000001) (0.013032070499999993) (0.012684744999999997) (0.012873152999999998) (0.012761160999999993) (0.012896604999999992) (0.01281235650000001) (0.012491756500000006) (0.012944687999999982) (0.012603549999999991) (0.012711763500000015) (0.012919026000000014) (0.012701717500000001) (0.012908929999999999) (0.012878468500000004) (0.012695532499999995) (0.012744199000000012) (0.012738245500000009) (0.013047600500000006) (0.012881644499999997) (0.012795105000000001) (0.0125408875) (0.012755823999999999) (0.012857827500000016) (0.012775564000000017) (0.012885798500000004) (0.012654337000000002) (0.013057411000000005) (0.012830731499999998) (0.01287864449999998) (0.013045737500000015) (0.012728662000000016) (0.012953076000000008) (0.012386719000000004) (0.012215600999999993) (0.012441783999999997) (0.012357339999999994) (0.012666143500000004) (0.012662598999999997) (0.01227682849999999) (0.012275562000000018) (0.012385671000000001) (0.012537600999999995) (0.012347408500000004) (0.012711967000000005) (0.01258519050000001) (0.012331353500000003) (0.012550780499999997) (0.012231116) (0.012739162999999998) (0.01237146800000001) (0.012574526000000003) (0.012664532500000006) (0.01240348049999998) (0.012319727500000002) (0.012279534499999994) (0.012446549000000001) (0.012317974000000023) (0.012502987999999993) (0.012312784500000007) (0.012381674500000009) (0.012408467500000006) (0.012461708000000002) (0.012549260500000006) (0.012616123999999992) (0.012720633000000009) (0.012510833499999999) (0.0128792945) (0.012718524499999995) (0.012788583000000006) (0.013183460500000008) (0.012791306999999988) (0.013012867999999997) (0.012955092500000001) (0.01268270299999999) (0.012873916) (0.012605367000000006) (0.012570442000000001) (0.012749389) (0.012864596000000006) (0.012678032999999991) (0.0128595965) (0.012684010499999995) (0.012834089500000007) (0.012861158999999983) (0.012720437000000001) (0.012685890500000005) (0.012513266500000009) (0.012656814499999988) (0.012999103500000012) (0.01298700300000001) (0.012902373999999994) (0.012891463000000006) (0.0126713195) (0.012605271000000001) (0.013134149999999997) (0.013057030499999997) (0.012583482499999993) (0.0124864945) (0.01259386350000001) (0.012195759499999986) (0.0123849615) (0.012497237499999994) (0.012535389500000008) (0.012642426500000012) (0.012655543500000005) (0.012328126499999995) (0.0124470275) (0.012388215500000008) (0.012896770000000002) (0.012548078500000004) (0.012588290000000002) (0.012510472500000008) (0.012280491500000018) (0.012443295500000007) (0.012731277500000013) (0.012802297000000004) (0.012265382000000005) (0.012428571) (0.012305284500000013) (0.012248963000000002) (0.012463156500000003) (0.012311578000000004) (0.012446494500000016) (0.012562423500000003) (0.012329287500000008) (0.012558512000000008) (0.012270962499999996) (0.012432857499999991) (0.012606251999999998) (0.01288336599999998) (0.012561344500000002) (0.012552102999999995) (0.012811992999999994) (0.012847408000000005) (0.012508021499999994) (0.0126953915) (0.012499373499999994) (0.012745334000000011) (0.0126215135) (0.012832123000000015) (0.012665831500000002) (0.012472771499999993) (0.0126828165) (0.012668167000000008) (0.012799070499999995) (0.012701324) (0.012679187999999994) (0.013171315000000003) (0.012920531499999999) (0.012945130999999985) (0.013272719499999988) (0.012822939500000005) (0.012592819000000005) (0.012674683500000006) (0.012690445499999994) (0.013140673000000005) (0.012718445999999994) (0.012784554500000017) (0.013149007500000004) (0.01304211750000002) (0.012595803999999988) (0.012315809000000011) (0.012284562499999999) (0.012303708499999996) (0.012460201500000004) (0.012565449000000006) (0.01237779700000001) (0.012376363000000001) (0.012564993999999982) (0.01265474450000001) (0.013102250499999996) (0.012745729499999997) (0.012395601500000006) (0.012626476500000011) (0.0125620605) (0.012512329999999988) (0.012502343000000013) (0.012311063499999997) (0.012680184499999997) (0.012686984999999998) (0.012363627499999988) (0.012212438500000006) (0.012643575000000004) (0.012439963999999998) (0.012698749999999995) (0.012535617499999999) (0.012580072999999997) (0.012499541500000003) (0.012517754499999992) (0.01260692649999999) (0.012563690500000002) (0.01252639500000001) (0.012581296499999992) (0.012691505500000005) (0.012866224499999995) (0.013022753499999998) (0.012648173999999998) (0.012737295499999995) (0.012498830000000002) (0.012459151500000015) (0.0126814975) (0.013150647500000001) (0.012642056999999998) (0.012776900500000007) (0.012672720999999998) (0.013207588500000006) (0.013298490499999996) (0.012880612999999999) (0.012681367000000013) (0.012832499999999997) (0.012714116500000011) (0.013276409500000003) (0.0126635405) (0.012564456500000001) (0.012940106999999992) (0.012650211499999994) (0.013038223500000001) (0.012711567000000007) (0.012776374499999979) (0.012923257499999993) (0.012681816499999998) (0.012813802) (0.012772985000000014) (0.01306541650000001) (0.012517218999999996) (0.018326211500000023) (0.012607147000000013) (0.01245520750000001) (0.012493947500000005) (0.012667600999999987) (0.012486566500000004) (0.012569754500000002) (0.012474319499999997) (0.012436561499999998) (0.01248917599999999) (0.012637118999999988) (0.012627004499999997) (0.012645319500000002) (0.012825803999999996) (0.012747856500000015) (0.012262892999999997) (0.012282609500000014) (0.0122777305) (0.012712700999999993) (0.012358845000000007) (0.012395410499999995) (0.012410618999999984) (0.012354656999999991) (0.012810619500000009) (0.012506840499999991) (0.012857713999999992) (0.012948894500000002) (0.01891014750000003) (0.01261192550000001) (0.012757030000000003) (0.012626882499999992) (0.013052847499999992) (0.01267058) (0.012638700500000002) (0.012863771999999996) (0.012805980999999994) (0.012714050000000005) (0.012656958999999995) (0.012889778000000005) (0.012756642499999984) (0.012918978499999997) (0.012732962) (0.012682666999999995) (0.013081768000000008) (0.012543274999999993) (0.012620077500000007) (0.012749724500000004) (0.012600636500000012) (0.012502211) (0.012618154999999992) (0.01263560150000001) (0.012829115500000002) (0.012817750500000002) (0.012916479000000008) (0.012758206000000008) (0.013010274500000002) (0.012875242500000009) (0.012880769) (0.012735770000000007) (0.013081480000000006) (0.012772244000000002) (0.013173463499999996) (0.012842628999999994) (0.01210647649999999) (0.012245593999999999) (0.012318659999999995) (0.012440020499999996) (0.012576090500000012) (0.012419308000000004) (0.012143341500000002) (0.01226806350000001) (0.012574594500000008) (0.0125039505) (0.012287115999999987) (0.012340136500000001) (0.012891390500000002) (0.012664034000000018) (0.012419232000000002) (0.012533552000000003) (0.012434354000000009) (0.012522694000000001) (0.012816835000000013) (0.012401950500000009) (0.012722116500000005) (0.012754937499999994) (0.012635980000000005) (0.012357847500000005) (0.012683170999999993) (0.012867929000000014) (0.012655936000000007) (0.012644561999999998) (0.01237704499999999) (0.012374437500000002) (0.0124778745) (0.0126644395) (0.012702645000000012) (0.012516039999999992) (0.012655758499999989) (0.012669292999999998) (0.012447833499999991) (0.01295771250000001) (0.012702369000000005) (0.012935000500000002) (0.012779211500000012) (0.012943101000000012) (0.01320468800000002) (0.01338703849999999) (0.013110848000000008) (0.012975563499999995) (0.012689689000000018) (0.013025679000000012) (0.012506849499999986) (0.012656815000000002) (0.012732184999999993) (0.012636888999999998) (0.012696882999999992) (0.012654449000000012) (0.012695588000000008) (0.012916595999999989) (0.012940088500000016) (0.012601067000000007) (0.013117928000000001) (0.012578425000000018) (0.013190067500000027) (0.013008256999999995) (0.012744329499999998) (0.01295486600000001) (0.012534486999999997) (0.012413261999999994) (0.01231352899999999) (0.012364037499999994) (0.012401524499999997) (0.0126727705) (0.012799946000000006) (0.01247347850000001) (0.012387710999999996) (0.012310368499999988) (0.012500821500000009) (0.01243052900000001) (0.012417586500000008) (0.012794852999999995) (0.012409403000000013) (0.012603036499999998) (0.012473433499999992) (0.01250146399999999) (0.012357633500000006) (0.012537883) (0.012213072999999991) (0.012524475499999993) (0.012535407499999998) (0.012650842999999995) (0.012409874500000001) (0.013193970499999999) (0.012676655000000009) (0.01258561200000001) (0.012512031500000007) (0.012479607500000003) (0.012745754999999998) (0.012615030499999985) (0.012518029) (0.012806477999999996) (0.012551324000000003) (0.012846018) (0.012649407000000001) (0.013285326500000014) (0.012944569999999989) (0.012641114499999995) (0.012884186500000006) (0.013230619499999999) (0.01297622250000001) (0.013042503999999983) (0.012942228) (0.012765478999999996) (0.012625322499999994) (0.0128531125) (0.012923227999999995) (0.012822056499999984) (0.013149126000000011) (0.012863756000000004) (0.013064884999999984) (0.012663816499999994) (0.012728252999999981) (0.012557262000000013) (0.01273131949999999) (0.012754536999999996) (0.012836197500000007) (0.012646916000000008) (0.012791042999999988) (0.012718085500000018) (0.012796883499999995) (0.012720125999999998) (0.0125275195) (0.012410523999999992) (0.012292029499999996) (0.01227528500000001) (0.012615604000000002) (0.012582141000000005) (0.012455585000000005) (0.012420204000000004) (0.012770292500000002) (0.012377388499999989) (0.012617399000000001) (0.012282234999999989) (0.012851834000000006) (0.012539719000000005) (0.01242544549999998) (0.012500529999999996) (0.012476480999999998) (0.012320298500000007) (0.012345443499999997) (0.012580081499999979) (0.012485093499999989) (0.012513104499999997) (0.012587341000000002) (0.012400935000000016) (0.012475903499999982) (0.012681904000000008) (0.012436948500000017) (0.01263397899999999) (0.012301213999999991) (0.013034865499999992) (0.012339467000000007) (0.012472652999999986) (0.012868399499999988) (0.0126394685) (0.01267908600000002) (0.012756027500000003) (0.01277093850000001) (0.012592400500000003) (0.012836050000000002) (0.012689208000000021) (0.012631366000000005) (0.013490279499999994) (0.012717673000000013) (0.012837514500000008) (0.012780956499999996) (0.012733961999999988) (0.012982612000000004) (0.01277565800000001) (0.012979334499999995) (0.01250808249999999) (0.012857096999999998) (0.012901893000000011) (0.01253170499999999) (0.012595582499999994) (0.012986621000000004) (0.012726392500000003) (0.012705205000000011) (0.0127613865) (0.012756730499999994) (0.013048531000000016) (0.012823123500000005) (0.012697409000000007) (0.013302951500000007) (0.012681080000000025) (0.012387895999999995) (0.012555052499999997) (0.012716171499999984) (0.012259590000000015) (0.012379788000000003) (0.012703632499999992) (0.012240341000000016) (0.012560351999999997) (0.012634561500000002) (0.012535971499999993) (0.012702136500000002) (0.012454075500000023) (0.012428543000000014) (0.012578005999999989) (0.012668757500000002) (0.012429377499999991) (0.012724441500000003) (0.012719170500000002) (0.012209755000000003) (0.013177222000000002) (0.012227059499999998) (0.012652801000000005) (0.012558395499999986) (0.012389225000000004) (0.012829774999999988) (0.01237150150000002) (0.012571823500000023) (0.012486547) (0.012800556500000004) (0.012496000000000007) (0.012657922499999988) (0.01234138550000001) (0.012552293000000006) (0.012888234999999998) (0.012718480500000004) (0.013049679499999994) (0.01262730699999999) (0.013042887999999989) (0.013041482000000007) (0.012744119500000012) (0.012771753000000025) (0.012846943999999999) (0.01293719499999997) (0.013167450999999997) (0.012662614000000003) (0.01276007450000001) (0.012863082999999984) (0.01276309149999999) (0.01261900399999999) (0.012746530000000006) (0.013058812999999989) (0.013078754999999997) (0.012873721000000005) (0.01309374599999999) (0.012876931500000008) (0.012684462500000007) (0.012896115000000014) (0.012798865999999992) (0.012979477000000003) (0.012715896500000018) (0.013143483999999997) (0.012833033499999993) (0.012910202999999995) (0.012896323499999987) (0.01245331849999999) (0.012161786000000008) (0.012383025499999992) (0.012445161499999996) (0.012722560000000008) (0.012372555499999993) (0.0123856715) (0.012217000999999991) (0.01245220250000001) (0.012767789000000002) (0.012870969999999995) (0.012823463500000007) (0.012465539999999997) (0.012619394000000006) (0.012326083500000015) (0.012595216999999992) (0.012351525000000016) (0.012577208500000006) (0.013296008499999984) (0.012431948500000012) (0.012322572000000004) (0.012345893499999996) (0.012799245000000015) (0.013063605000000006) (0.012552238000000007) (0.012495621999999998) (0.012825944500000006) (0.012365427499999998) (0.012921648000000022) (0.012464832999999995) (0.0126540485) (0.012421974000000002) (0.012626952999999996) (0.012687753499999996) (0.012971177) (0.012808316499999986) (0.012559129500000002) (0.012539251500000001) (0.013036471999999993) (0.013055809500000001) (0.013194455999999993) (0.01298094499999998) (0.012951693) (0.012812923500000004) (0.012774374000000005) (0.012557111999999995) (0.01256505949999999) (0.012972212999999996) (0.012530685499999986) (0.012648149999999997) (0.012604536999999999) (0.012812665500000014) (0.012528834500000016) (0.012700018000000007) (0.01287703400000001) (0.012592832499999998) (0.01273969200000001) (0.012949319500000014) (0.012894216500000014) (0.012711540000000007) (0.013013473500000011) (0.013090770500000001) (0.012830078499999995) (0.012648632500000007) (0.012323764000000001) (0.012583091500000004) (0.012568364000000012) (0.01246667650000001) (0.012758939999999996) (0.012391384500000005) (0.012709963000000005) (0.01258421500000001) (0.012352035999999983) (0.012813108000000004) (0.012537946499999994) (0.01238394999999999) (0.012292465000000002) (0.012344070999999998) (0.012357693000000003) (0.012380550500000004) (0.012355368499999991) (0.012341864499999994) (0.012293479499999996) (0.012508622000000011) (0.01240774900000001) (0.012364920000000001) (0.012376759000000001) (0.012356864499999995) (0.012455291999999993) (0.012305648000000002) (0.012289149999999999) (0.012538855500000001) (0.012634742000000004) (0.012756074500000006) (0.012612510000000007) (0.012578655500000008) (0.012793776000000007) (0.012577409499999997) (0.012994458) (0.012654445) (0.012623966999999986) (0.012661104499999992) (0.012598257499999987) (0.012527332500000002) (0.013106216500000004) (0.012808847500000012) (0.012846067999999988) (0.012619752499999984) (0.013636230999999999) (0.013162940500000012) (0.0126895635) (0.012840945999999992) (0.012714475000000003) (0.013101386500000006) (0.012839972499999991) (0.013012978499999994) (0.013017690500000012) (0.012995337499999995) (0.012809235500000016) (0.01269832550000001) (0.012592842500000007) (0.012855020500000008) (0.012846905999999991) (0.012765775499999979) (0.012869621999999997) (0.01281065399999999) (0.012797218000000013) (0.012734841499999996) (0.012213396000000001) (0.012332039000000003) (0.012215334000000008) (0.012459716499999995) (0.012264572500000001) (0.012685119000000009) (0.01237573950000001) (0.012471445999999997) (0.012297413999999993) (0.012384721000000001) (0.012323054) (0.012578173999999998) (0.012532421499999988) (0.012673026000000018) (0.012621644500000015) (0.012333748500000005) (0.012330206499999996) (0.012247765500000007) (0.012510686499999993) (0.01258164099999999) (0.012290317000000009) (0.012763620999999989) (0.012508215500000003) (0.012234645500000002) (0.01260324900000001) (0.01263550599999999) (0.012307440500000003) (0.013210241999999997) (0.012723933000000007) (0.012589676500000022) (0.012861677000000002) (0.01242536000000001) (0.012863645500000007) (0.012760620500000014) (0.01281188450000001) (0.012603154999999991) (0.013113265499999999) (0.012752945500000001) (0.012748488000000016) (0.01261457249999999) (0.01350733500000001) (0.013025448999999995) (0.012568815999999997) (0.012793268499999996) (0.012920903999999997) (0.012928493) (0.013036683999999979) (0.013067136999999993) (0.012630656000000004) (0.012571117000000007) (0.012974238999999999) (0.012964167999999998) (0.012795994500000005) (0.012843528999999992) (0.012571989999999991) (0.012505985499999997) (0.012994952000000004) (0.012622912999999986) (0.01296386749999999) (0.012801725) (0.012563484499999986) (0.012713327499999982) (0.012853909499999996) (0.01268407349999999) (0.012321026999999998) (0.012833112499999993) (0.012523963999999999) (0.012446672500000006) (0.01275679049999999) (0.012296251000000008) (0.012223481499999994) (0.01219793000000001) (0.012311074499999991) (0.01265827650000001) (0.012380108) (0.01232644899999999) (0.012643286000000017) (0.012635858000000014) (0.01266696299999999) (0.01255822899999999) (0.012283133500000001) (0.012215258499999992) (0.012657689) (0.012218352500000002) (0.013242529500000003) (0.012636960500000002) (0.012217416499999995) (0.012722963500000004) (0.012435507000000012) (0.012431212000000011) (0.012228313000000005) (0.012674837500000022) (0.012329586000000003) (0.012333791500000024) (0.012509054500000005) (0.012659966499999994) (0.01268512799999999) (0.0125368545) (0.012959452999999996) (0.012923840499999992) (0.013104099500000008) (0.012607010500000002) (0.012758892999999993) (0.01275054149999999) (0.012889973499999999) (0.012951513499999998) (0.013076405000000013) (0.012633472999999992) (0.01293367949999999) (0.0129488205) (0.012860074999999985) (0.013007241999999988) (0.012790001999999995) (0.013065851500000003) (0.012629988000000009) (0.012904567500000005) (0.012940768500000005) (0.012873036000000018) (0.012707839499999998) (0.012741071999999992) (0.013142778500000007) (0.01317667000000003) (0.013133554000000006) (0.012777953000000009) (0.012945914000000017) (0.012852157000000017) (0.012590919500000006) (0.012957987500000004) (0.012271527500000004) (0.012626228500000003) (0.012305347499999994) (0.012308808500000004) (0.012279176500000002) (0.012692138000000006) (0.012682195500000007) (0.01233972400000001) (0.012291741500000009) (0.012563056500000017) (0.012373272000000005) (0.012455086000000004) (0.012377824499999995) (0.01272756600000001) (0.01265521800000001) (0.012384603500000008) (0.012410041499999996) (0.012430960500000005) (0.012646178500000008) (0.012539334499999985) (0.012173781499999994) (0.01258103599999999) (0.012824237500000002) (0.012339682500000004) (0.012420952500000013) (0.01262105249999998) (0.012675524999999993) (0.012597478499999995) (0.012625675000000003) (0.012428362000000012) (0.012506617500000011) (0.0124190265) (0.012676075500000009) (0.012472087500000006) (0.0124527215) (0.013007582500000003) (0.012553193000000004) (0.012497505500000006) (0.012887167500000005) (0.012994599999999995) (0.01318949350000001) (0.012897194999999986) (0.013035171999999998) (0.012580862000000012) (0.012902603999999998) (0.012652954500000008) (0.012589668999999984) (0.012604264500000004) (0.013277907500000005) (0.012805181499999999) (0.012880511999999997) (0.013235861999999987) (0.01265694249999999) (0.012790939999999987) (0.012653539000000005) (0.012933586999999983) (0.012882535000000014) (0.012814651999999968) (0.013026503499999995) (0.012986296999999994) (0.012824036499999997) (0.012712513999999994) (0.013080825000000004) (0.01268370750000003) (0.01261150450000001) (0.012403617999999991) (0.012337037500000009) (0.012781344) (0.012598204499999988) (0.01239026800000001) (0.012393981499999998) (0.012643435500000008) (0.012608355999999987) (0.012638312499999999) (0.012405093500000006) (0.012576606500000018) (0.012877926500000011) (0.012493509) (0.012441415000000011) (0.012324145499999994) (0.012501470999999986) (0.012380905999999997) (0.012658193499999998) (0.01224837799999999) (0.012577299) (0.012324675499999993) (0.012660609000000003) (0.012673398999999988) (0.012310638500000012) (0.012287476500000005) (0.01250356200000001) (0.012423817500000017) (0.012515885500000004) (0.012516746499999995) (0.012514555499999996) (0.012480544499999982) (0.013134323000000003) (0.0130095925) (0.01262906100000001) (0.012885713500000007) (0.012549277999999997) (0.013536641500000002) (0.012482892999999981) (0.012822635499999999) (0.012706763499999996) (0.012921166499999984) (0.012958339000000027) (0.01299471599999999) (0.013161411999999997) (0.012732516499999985) (0.012903203999999988) (0.012889502000000011) (0.012741647000000009) (0.013021421000000005) (0.01261776449999999) (0.012504890500000004) (0.013167238500000011) (0.0127186215) (0.012595203000000013) (0.01245341400000001) (0.012680076500000026) (0.012868571999999981) (0.012837943000000018) (0.012702645499999984) (0.012778435999999976) (0.01288583800000001) (0.013184609499999986) (0.012918726499999977) (0.012427835999999998) (0.0123409035) (0.012578321000000003) (0.012390890000000002) (0.012359057000000007) (0.012443819000000009) (0.0125210355) (0.012548260499999991) (0.012284860999999994) (0.012625466500000002) (0.012594305) (0.012398761499999994) (0.012435668999999996) (0.012273403500000002) (0.012492487999999996) (0.012465739500000017) (0.01247615249999999) (0.012436938499999994) (0.012559004499999998) (0.012543249000000006) (0.012557976499999998) (0.012607394999999993) (0.012435558) (0.012412337499999995) (0.012338536000000011) (0.012452724999999998) (0.01251559100000002) (0.012617773999999998) (0.012538873000000006) (0.012541010000000005) (0.012376616999999993) (0.013097866500000013) (0.012616162) (0.012478494000000007) (0.0125839975) (0.012587280000000006) (0.012736747500000006) (0.013074047499999991) (0.012790118999999989) (0.013031839999999989) (0.012877974999999986) (0.012826917999999993) (0.01310800749999999) (0.012670107500000014) (0.012561358500000008) (0.012924725499999998) (0.012828651499999996) (0.01276756100000001) (0.01271091349999999) (0.012630388499999992) (0.012980303499999998) (0.013176073999999982) (0.01292433450000001) (0.013439071999999996) (0.012609985000000004) (0.012931321499999995) (0.012725396000000014) (0.012783937000000009) (0.012570327499999992) (0.012645239499999988) (0.012636247999999975) (0.013048892999999978) (0.012884897500000006) (0.012680954999999994) (0.012591640500000001) (0.0124242995) (0.01240679850000001) (0.012242536999999998) (0.012472200500000002) (0.012191117500000001) (0.012467252500000012) (0.012199410500000007) (0.012488938500000005) (0.012673163999999987) (0.0126216215) (0.012674659000000019) (0.012755128500000018) (0.012711476) (0.01265707549999999) (0.012678381500000016) (0.012379215999999998) (0.01263454600000001) (0.012389151500000015) (0.012442079500000008) (0.012553084000000006) (0.012526034499999991) (0.0123357875) (0.012259378000000001) (0.012652069000000002) (0.012912608999999992) (0.012581666000000005) (0.01247152650000001) (0.012669410999999992) (0.012427421000000008) (0.012450199500000023) (0.012415099500000026) (0.012785216000000016) (0.01251638799999999) (0.012898455499999989) (0.012767708000000016) (0.012802022499999996) (0.012901573) (0.012529895499999999) (0.01243316999999998) (0.012633045499999995) (0.013226795499999985) (0.012953401000000017) (0.013054744499999993) (0.012814702000000011) (0.01279718249999999) (0.012730449500000005) (0.012897800000000015) (0.012581712500000009) (0.012905361500000004) (0.012730517999999982) (0.012904681500000001) (0.012785752000000011) (0.012630569000000008) (0.012692932500000004) (0.012751514500000005) (0.012938181999999993) (0.013002739500000013) (0.013016254500000005) (0.012507931000000014) (0.01275554050000001) (0.012629196500000009) (0.012780350499999996) (0.012602706000000005) (0.012271597999999995) (0.012603521499999992) (0.012374838999999999) (0.012636667500000004) (0.012502263) (0.012331291499999994) (0.012942009000000004) (0.012377785500000002) (0.012804527999999996) (0.012833567000000004) (0.012363237999999999) (0.012580037500000002) (0.0125037385) (0.012461114999999995) (0.012465299999999999) (0.012700208500000004) (0.012278305500000003) (0.012420330499999993) (0.012565467999999996) (0.012540924000000009) (0.012439324000000002) (0.012636290500000008) (0.012160109000000002) (0.012579699000000014) (0.012399633999999993) (0.012621964500000013) (0.012551671500000014) (0.012408719999999998) (0.012193180999999997) (0.012430290499999996) (0.012689251999999998) (0.01236180349999999) (0.012547389500000006) (0.013150282499999999) (0.012607431999999988) (0.01262792) (0.012690210999999993) (0.012590067999999982) (0.012684866499999989) (0.012865174000000007) (0.012690225000000013) (0.012767636000000013) (0.012773150000000011) (0.012919889500000004) (0.012773457999999988) (0.012713852999999997) (0.013149924500000021) (0.012688572000000009) (0.013349685500000014) (0.012564692000000002) (0.012569332500000002) (0.012673756500000008) (0.012645705999999993) (0.012731056500000018) (0.012616362499999992) (0.013070329499999978) (0.012743962999999997) (0.012886782500000013) (0.012905731000000004) (0.012886823999999991) (0.012719424499999993) (0.012888172500000003) (0.013058354499999994) (0.012703352000000001) (0.012546338500000004) (0.012489620999999992) (0.012483466000000012) (0.012337807999999992) (0.012324510999999996) (0.01224439799999999) (0.012746035500000016) (0.012520240500000002) (0.012333434500000004) (0.012304759500000012) (0.012552173) (0.012347307000000016) (0.012595276000000002) (0.012533105000000003) (0.012548721499999999) (0.01231119249999997) (0.012499913999999987) (0.013001566500000006) (0.012595898500000008) (0.013006067999999982) (0.012545651500000005) (0.012591531000000003) (0.012394121499999994) (0.012501565500000006) (0.013081064999999989) (0.012948123500000006) (0.012644774500000011) (0.012494814000000007) (0.012548335999999993) (0.013033112999999985) (0.012335267999999996) (0.01299322600000001) (0.012681051500000012) (0.012861114999999992) (0.012924088000000014) (0.012708711499999997) (0.013139441999999987) (0.012844304999999986) (0.0125118075) (0.012578576499999994) (0.012758517999999996) (0.012971684999999997) (0.012954379000000016) (0.012762489000000016) (0.012810917500000005) (0.012882400500000002) (0.012669382000000007) (0.013008030500000003) (0.012693045499999986) (0.013169161499999998) (0.012763004500000008) (0.013033564999999997) (0.012642382500000007) (0.01256075899999999) (0.0127500225) (0.012783049499999977) (0.012862460499999992) (0.013120633500000006) (0.013084483500000021) (0.012716790500000033) (0.013207443999999999) (0.01296248550000001) (0.013336687999999985) (0.0131704235) (0.012309481999999997) (0.012524938) (0.01251380299999999) (0.012608931000000018) (0.012240147499999993) (0.012583935000000004) (0.012463284500000005) (0.012359831500000001) (0.012426884) (0.012426075999999994) (0.012358680499999997) (0.012595572499999999) (0.012612766000000011) (0.012630989499999995) (0.012459580000000012) (0.012629258500000018) (0.012470236999999995) (0.012299932999999985) (0.012853241500000001) (0.012468448500000007) (0.012332349500000006) (0.012549555500000004) (0.012271134000000003) (0.012458470000000013) (0.01258234200000001) (0.012789564499999989) (0.01257287800000001) (0.012488727500000005) (0.012494449500000004) (0.01264322100000001) (0.01260710150000001) (0.014838872000000017) (0.01258084999999999) (0.012902081999999995) (0.012774060000000004) (0.012700092999999996) (0.012832851500000006) (0.012819701999999988) (0.012622219500000018) (0.012642749999999994) (0.012824061999999997) (0.012710697500000007) (0.012930551499999998) (0.013207066000000003) (0.012962609000000014) (0.01287915299999999) (0.012915299000000005) (0.012869155000000007) (0.013030742499999998) (0.012843991999999999) (0.012790083500000007) (0.0126498325) (0.012886153999999997) (0.012999218999999992) (0.012924752999999983) (0.012886725500000001) (0.012967249499999986) (0.012873529000000009) (0.013029783999999989) (0.01287481700000001) (0.012796309500000005) (0.012951293500000002) (0.012686094999999994) (0.013226539499999995) (0.012568969499999985) (0.012683233999999988) (0.01238343900000001) (0.012241477999999986) (0.012489240499999998) (0.012654291999999998) (0.012312581000000003) (0.0122907545) (0.012716714500000004) (0.012693928999999993) (0.012418606500000012) (0.012227148999999993) (0.0123023295) (0.012499140000000006) (0.012906722499999995) (0.012807836999999989) (0.012757064999999984) (0.012499299000000005) (0.01222144700000001) (0.0124803255) (0.01272723299999999) (0.0122955025) (0.012504433999999995) (0.012753957499999996) (0.012487495000000015) (0.012288669999999988) (0.012385188500000005) (0.012519646999999995) (0.012970888) (0.012574935999999995) (0.01250844349999998) (0.012649873999999992) (0.012724211999999985) (0.01303008650000001) (0.012712355499999994) (0.012896663500000002) (0.012995405500000001) (0.012728550499999991) (0.012514703500000002) (0.012793958000000008) (0.013113012000000021) (0.012827433499999999) (0.012931200000000004) (0.012776784500000013) (0.013111775000000006) (0.0126143685) (0.013000498499999985) (0.01291221300000002) (0.012678413) (0.012870106999999992) (0.012563487499999998) (0.012525806500000014) (0.012726902499999998) (0.01289636600000002) (0.012959138499999995) (0.012743183499999991) (0.012855417500000008) (0.012982396000000021) (0.01286543150000001) (0.012714403000000013) (0.012893926499999986) (0.01307579049999999) (0.01286185450000002) (0.012721920999999997) (0.012306673500000004) (0.012294789000000014) (0.012469434500000015) (0.012898952499999991) (0.012610360000000001) (0.0124890785) (0.012640951000000011) (0.012271915999999994) (0.012596266500000008) (0.012634194500000001) (0.012733275500000002) (0.012579398999999991) (0.012530318000000013) (0.01267230250000001) (0.012685422499999988) (0.012480021499999994) (0.012476083499999999) (0.012292987500000005) (0.012761811499999984) (0.012401022999999997) (0.012749013500000003) (0.012452963499999983) (0.012542117500000005) (0.012273085499999989) (0.012337434500000022) (0.012493902000000001) (0.012781308500000019) (0.012322846999999998) (0.012598737500000012) (0.012141148000000004) (0.012430362999999986) (0.012815144) (0.012874031999999994) (0.012584625500000002) (0.012804098500000013) (0.0126223595) (0.012883091) (0.013176293500000005) (0.013035751999999998) (0.0127119755) (0.012746951000000006) (0.013045952500000027) (0.012769692499999985) (0.012602242) (0.01285391800000002) (0.012684466499999977) (0.01277307200000001) (0.012781517999999992) (0.012783295499999986) (0.012446330999999991) (0.012538411) (0.01279205600000001) (0.012988160999999998) (0.012689517000000011) (0.01252983249999999) (0.012681501499999998) (0.012776513500000003) (0.012975947500000001) (0.013066714499999979) (0.01285626799999999) (0.012870640500000002) (0.01308731049999999) (0.012750150000000016) (0.012828347500000004) (0.012611234999999998) (0.012322404500000009) (0.012444604999999997) (0.012490563000000024) (0.012735316999999996) (0.012829341499999994) (0.012520554000000003) (0.012500142000000006) (0.012704707999999995) (0.012558496500000002) (0.012452640000000015) (0.012522180499999994) (0.012846731000000014) (0.012371484000000016) (0.012479292999999989) (0.012644938500000008) (0.012463355499999995) (0.012625067500000003) (0.01232523050000002) (0.012731241500000004) (0.012292854500000006) (0.012260352500000002) (0.012302155499999981) (0.012457206999999998) (0.012525624999999999) (0.012566685999999994) (0.012763748500000005) (0.012348168500000006) (0.01263006849999998) (0.012404903500000009) (0.012488152499999974) (0.012844993000000013) (0.01295832899999999) (0.012710863000000017) (0.012689212500000019) (0.012713818999999987) (0.012632499999999991) (0.012635001499999993) (0.0126713195) (0.01242803349999999) (0.013119964500000011) (0.012836238) (0.012902479500000022) (0.013064470000000009) (0.01287535649999999) (0.012667870499999997) (0.012787793999999977) (0.013197634500000013) (0.012564507499999988) (0.013331346500000021) (0.012825271999999985) (0.01286992150000002) (0.012816939999999985) (0.012726953000000013) (0.012636858) (0.01306645799999999) (0.013006887999999994) (0.012793580499999999) (0.012785630999999978) (0.01291711949999999) (0.012691156499999981) (0.012990491499999965) (0.012907147500000007) (0.012709204499999974) (0.012244368499999991) (0.012821048500000001) (0.012626522500000001) (0.01229643150000001) (0.012538289999999994) (0.0122854825) (0.012760328000000015) (0.012325534999999999) (0.013245315000000007) (0.012425037) (0.01242977100000002) (0.012934043000000034) (0.012353551500000004) (0.012498733500000012) (0.012519114000000026) (0.012811322499999986) (0.012635322000000004) (0.012247525499999995) (0.01242116950000001) (0.012508947500000006) (0.012431985499999992) (0.012530109000000011) (0.012678373499999993) (0.012329010500000001) (0.012464668999999998) (0.01240499149999999) (0.012358649999999971) (0.012796227999999993) (0.012468802000000001) (0.012499879000000005) (0.012312772999999999) (0.01279044700000001) (0.012667859500000003) (0.01272967400000001) (0.012850556000000013) (0.01281896149999999) (0.012865408999999994) (0.012702053500000005) (0.012932917000000002) (0.012692358000000015) (0.012966646999999998) (0.013009568500000013) (0.012922534000000013) (0.012875647000000004) (0.012867050000000005) (0.012848250000000005) (0.012770433000000025) (0.01279240750000002) (0.012600546500000004) (0.012717654999999994) (0.013029652500000002) (0.012632930000000014) (0.012888077500000011) (0.012987850500000009) (0.01282833400000001) (0.013047204500000006) (0.01296915849999998) (0.012646766500000031) (0.01268199099999999) (0.012929638999999993) (0.013065966000000012) (0.012808571500000018) (0.012682050999999972) (0.013113416999999988) (0.012350256000000004) (0.012407505500000013) (0.012589834500000008) (0.012609625999999999) (0.012419269499999996) (0.012572924999999999) (0.012324279500000021) (0.012254188999999999) (0.01238545599999999) (0.012514508999999993) (0.012390533499999995) (0.012544287499999987) (0.0127619375) (0.0123931605) (0.01247375449999999) (0.012388252500000002) (0.012573744499999984) (0.012467903000000002) (0.01225957400000001) (0.01239662449999998) (0.012346918500000012) (0.0124801405) (0.012702194999999986) (0.01229553600000001) (0.012404950000000026) (0.012329019499999996) (0.012743011999999998) (0.012547373999999986) (0.012319921999999983) (0.012934242500000026) (0.012727023500000004) (0.01265632799999998) (0.012593596999999998) (0.012741827999999997) (0.012880342500000003) (0.013180761499999971) (0.012686933499999997) (0.012904843499999999) (0.01262506649999999) (0.012453877000000002) (0.012643794) (0.01272130049999999) (0.012831772500000005) (0.012784491500000009) (0.012922145499999996) (0.012796772500000025) (0.012649352000000003) (0.012726815000000002) (0.012971915499999986) (0.012612302999999991) (0.012890687999999997) (0.012738006500000024) (0.012582119000000003) (0.012674867000000006) (0.012984069999999986) (0.012836597000000005) (0.012885762500000009) (0.012801288000000008) (0.012889173500000017) (0.012702540999999998) (0.012752073499999989) (0.01273312850000001) (0.013351194499999997) (0.013021631500000005) (0.010667969) (0.010497373500000018) (0.010658682500000016) (0.010445371999999994) (0.01052676150000001) (0.010662684000000006) (0.01067378599999999) (0.010818730499999998) (0.010724749000000006) (0.010736531000000007) (0.010567367000000008) (0.010716464500000009) (0.010738148500000003) (0.01097847099999999) (0.011063217500000014) (0.010663988499999999) (0.010637703999999998) (0.01057080199999999) (0.010810146000000007) (0.010804493999999998) (0.010731748499999985) (0.010597988999999988) (0.01084418799999999) (0.01079888050000001) (0.010877709499999999) (0.010710430499999993) (0.010918936500000004) (0.010883481) (0.010585356500000018) (0.011781462000000006) (0.010787488000000012) (0.01087933499999999) (0.010863798999999993) (0.01114111999999999) (0.010931286500000012) (0.0111637515) (0.011038581999999991) (0.010853385500000007) (0.011030114499999993) (0.010881126500000018) (0.01125962400000001) (0.011234260999999995) (0.010986879500000005) (0.011449998500000003) (0.011120358999999996) (0.011291716000000007) (0.010914515) (0.010955136500000004) (0.010953346000000003) (0.011050646999999997) (0.010959390499999985) (0.011280224500000005) (0.011097856000000003) (0.011076429499999998) (0.010858261999999994) (0.011100107499999984) (0.011071106000000011) (0.011040309499999998) (0.010841158500000003) (0.011072255500000003) (0.010975098000000003) (0.011183052999999998) (0.011004421) (0.011188031000000001) (0.010822835500000003) (0.010742738500000001) (0.010565920999999992) (0.010785218) (0.010625509000000005) (0.010658564500000009) (0.010594849500000003) (0.0105286525) (0.010607890000000009) (0.010631079500000001) (0.010906988999999992) (0.010753629) (0.010786420000000005) (0.010847195500000004) (0.01069930199999998) (0.010847062000000005) (0.010492584) (0.010741316999999986) (0.01069484350000001) (0.0106346135) (0.010657179000000003) (0.010678987499999987) (0.010857557000000004) (0.0107807595) (0.010776809500000012) (0.010724392) (0.010859300000000002) (0.010818337500000011) (0.010707291500000007) (0.010908333000000006) (0.010949382500000007) (0.010971257999999998) (0.011189072499999994) (0.010877902999999994) (0.011212424499999984) (0.010896053999999988) (0.011100974999999999) (0.010886472000000008) (0.011156636999999997) (0.011036515999999996) (0.011243444000000005) (0.010997876500000003) (0.01123579000000001) (0.011178190000000005) (0.010979331999999994) (0.010937469500000005) (0.011085608999999996) (0.011256207000000004) (0.011080589000000016) (0.011000614000000006) (0.010907912499999992) (0.0111001815) (0.010845962) (0.010998156000000009) (0.011084061999999992) (0.011042905000000006) (0.011255989000000008) (0.010910227000000008) (0.011553705999999997) (0.011746596000000012) (0.011219392500000008) (0.011369621499999996) (0.010986728500000001) (0.010929934999999988) (0.01062251900000001) (0.010910645999999996) (0.010773959499999985) (0.010649750999999999) (0.010830337999999995) (0.010634214500000017) (0.011023587500000015) (0.010619956) (0.010636839999999995) (0.01064670149999998) (0.010620055500000003) (0.010852299499999996) (0.0105798795) (0.010854388000000006) (0.010865862000000004) (0.010750629499999997) (0.010782212999999999) (0.010694362999999998) (0.01067978700000001) (0.010701951500000001) (0.01068683699999999) (0.010555686000000009) (0.010630444499999989) (0.0105940375) (0.010782136999999997) (0.0107902785) (0.01070483450000001) (0.010798010999999996) (0.011094773000000002) (0.0106369625) (0.010855963999999996) (0.010831078499999994) (0.011183431500000007) (0.011062396499999988) (0.011199642499999996) (0.011010806500000012) (0.011041509500000005) (0.011100975999999999) (0.01108755900000001) (0.011080332499999998) (0.010988209499999999) (0.011127220499999993) (0.010995215499999988) (0.0111021845) (0.011188554500000003) (0.011079101500000008) (0.010950264000000001) (0.011072688499999997) (0.011179114000000004) (0.010879678000000004) (0.010854984000000012) (0.010944982000000006) (0.010929142500000016) (0.010991859000000007) (0.010999508500000005) (0.010878416500000015) (0.011161155999999992) (0.01110307499999999) (0.010877586499999994) (0.010981070999999995) (0.011045751999999992) (0.010815512999999985) (0.011159440499999992) (0.011211839500000001) (0.010657100499999989) (0.01084324049999999) (0.010745388000000008) (0.010714834500000006) (0.010561324999999996) (0.010520848999999999) (0.01111347650000001) (0.0108382905) (0.011090075500000005) (0.011173334499999979) (0.010789182500000008) (0.010942872000000006) (0.011063846000000002) (0.010760777999999999) (0.010623110000000005) (0.010858438499999998) (0.010976899499999998) (0.010637385499999999) (0.010527930000000005) (0.010758009499999999) (0.01071402099999999) (0.011349468000000001) (0.01059215749999999) (0.010977976500000014) (0.01094465) (0.010701943500000005) (0.010709591500000004) (0.010840868000000004) (0.011165685500000008) (0.010788276999999999) (0.010894632999999987) (0.010722228000000014) (0.011011862499999997) (0.010833575999999998) (0.011257994500000007) (0.011153994000000014) (0.011579631500000007) (0.011098060000000007) (0.010933749999999992) (0.010829840999999993) (0.010914071999999997) (0.011057804500000004) (0.011269954999999998) (0.0112768845) (0.010855444499999992) (0.010972091000000003) (0.011077219499999985) (0.011125765499999996) (0.011229666) (0.010941295500000003) (0.010904946499999998) (0.010835212499999997) (0.01107823999999999) (0.011104786999999991) (0.011053867999999994) (0.011054859499999986) (0.0111010275) (0.011153347499999994) (0.011323925999999998) (0.011314718000000001) (0.010863165500000008) (0.011144420999999988) (0.011033363000000004) (0.011395710000000017) (0.010573242999999996) (0.010686859999999992) (0.010554571999999998) (0.010425667000000013) (0.010771724999999996) (0.01057168800000001) (0.010720099499999997) (0.010890419499999984) (0.011133467999999994) (0.010704469499999994) (0.011087003500000012) (0.010996251499999998) (0.010692538500000015) (0.010739293999999996) (0.010641144000000005) (0.010564972499999992) (0.010702877999999999) (0.010663779499999998) (0.010637002999999992) (0.010482364499999994) (0.010871754999999997) (0.010676557000000003) (0.010826168999999997) (0.010707207999999996) (0.010744431499999998) (0.010621832999999997) (0.010873646000000015) (0.010903050499999997) (0.010669705000000002) (0.010902875000000006) (0.010703330999999996) (0.010683407000000006) (0.011076400999999986) (0.010903476499999981) (0.01112572399999999) (0.010869012000000011) (0.010992502500000001) (0.010834082500000008) (0.010959108499999995) (0.010812063499999996) (0.01099670450000001) (0.011251484000000006) (0.011114395499999999) (0.011104796) (0.010944044) (0.01109943499999999) (0.01098943999999999) (0.011322089500000007) (0.010859675999999999) (0.010729644999999996) (0.011252808499999989) (0.01114076650000001) (0.010878139000000009) (0.010918030500000009) (0.011362256999999987) (0.011138096) (0.011094868000000008) (0.01110884550000002) (0.01103431299999999) (0.010882643999999997) (0.010992930500000012) (0.010925225999999996) (0.011022928000000001) (0.01112065050000001) (0.010692722000000002) (0.010610679500000011) (0.010661311000000007) (0.010609510500000002) (0.010659651500000006) (0.010872323500000003) (0.010566498000000007) (0.010640235499999998) (0.010875668500000005) (0.010849633999999997) (0.010783735000000003) (0.010639349999999992) (0.010896503999999987) (0.01081338400000001) (0.010777194500000004) (0.010631279999999993) (0.010926136000000017) (0.0104888915) (0.010700312500000003) (0.010703685000000004) (0.010813528000000003) (0.010919572499999988) (0.01070547899999999) (0.010871626999999995) (0.010632312000000005) (0.010717619499999997) (0.010859016499999999) (0.011001254000000016) (0.010824714) (0.010666613500000005) (0.0107110745) (0.0107842945) (0.01124154849999999) (0.010926231499999994) (0.011182988500000005) (0.011086840500000014) (0.011123169500000016) (0.011035757999999993) (0.011156650500000004) (0.010821639000000008) (0.011240238999999999) (0.0110629525) (0.011211155500000014) (0.011017445000000015) (0.010890645500000004) (0.011339631500000003) (0.011307711000000012) (0.011430389500000013) (0.010955608999999991) (0.010872767000000005) (0.011129060999999996) (0.011146082000000002) (0.0109037825) (0.01083453899999999) (0.011018516999999992) (0.011059205500000002) (0.0109599415) (0.011080672999999985) (0.011080863499999996) (0.011093047999999994) (0.011124187500000007) (0.0112461155) (0.011144461999999994) (0.011082175) (0.011020025000000003) (0.010564477499999989) (0.010729154500000004) (0.010730752999999996) (0.010667292999999994) (0.010861530500000008) (0.01052024650000001) (0.010762485500000016) (0.010917800500000005) (0.010910102500000005) (0.010772362999999993) (0.010846130499999995) (0.010973894499999998) (0.010707501500000008) (0.011115631) (0.010857216000000003) (0.010925557000000002) (0.010762247500000002) (0.010683916500000001) (0.010570867999999997) (0.010858780500000012) (0.010639568000000002) (0.010529157500000011) (0.010638591500000003) (0.010715156000000003) (0.010760700500000012) (0.010764654999999998) (0.0106952035) (0.010952017999999994) (0.011054969999999997) (0.010871974000000006) (0.0108798955) (0.010821954499999994) (0.010827443500000006) (0.010870236500000005) (0.010842673999999997) (0.010935298499999996) (0.010877551500000013) (0.011001247500000005) (0.0110737645) (0.011086976500000012) (0.011265882500000005) (0.011142238000000013) (0.011796960500000009) (0.010982147500000011) (0.011393182500000001) (0.011064150999999994) (0.011030490000000004) (0.010966482999999999) (0.011053324000000003) (0.010803533000000018) (0.011131153000000005) (0.010991990500000007) (0.010916094999999987) (0.010916812499999998) (0.010974796000000009) (0.011166779500000001) (0.01111859300000001) (0.011104459999999997) (0.011033235999999988) (0.011222378000000005) (0.011142675000000005) (0.01109404650000001) (0.011041514000000002) (0.01068214549999999) (0.010794834500000003) (0.010738300499999992) (0.010832195999999988) (0.010618007500000012) (0.010738967499999988) (0.0105817245) (0.010780317500000011) (0.010921038500000008) (0.010738290500000011) (0.010790869499999994) (0.010976940000000004) (0.010852990999999992) (0.010710782500000016) (0.010805330500000002) (0.010975248000000007) (0.010704448500000019) (0.010838459499999994) (0.010679419999999995) (0.010667051000000025) (0.010778056999999994) (0.010724299499999992) (0.010594655499999994) (0.010835736999999998) (0.010787784500000008) (0.010809499500000014) (0.010788721000000015) (0.010973064000000005) (0.010729523000000005) (0.010814846999999989) (0.010772225499999996) (0.011192520500000011) (0.010951497000000004) (0.011002238499999997) (0.01129801250000001) (0.011109020999999997) (0.011004630500000001) (0.011204665500000002) (0.010972752499999988) (0.010965472000000004) (0.011213087499999996) (0.01088665350000001) (0.011450083) (0.011021482499999999) (0.011018028999999999) (0.011382758500000006) (0.011127138499999994) (0.011155035500000007) (0.011022623999999995) (0.011115053) (0.010974029499999996) (0.010930765500000009) (0.011125421999999996) (0.010831916999999996) (0.011073067500000006) (0.011247939999999998) (0.01115137799999999) (0.011035176999999993) (0.011130567000000008) (0.010953571500000009) (0.01104904299999998) (0.011310328499999994) (0.011238074) (0.011110869499999995) (0.010760107500000005) (0.010645556500000014) (0.010750710499999996) (0.010615224500000006) (0.010622543499999998) (0.010976835500000004) (0.010630642499999982) (0.0107114715) (0.011003368500000013) (0.010685040499999993) (0.010534483499999997) (0.010786847500000002) (0.010523703500000009) (0.011063962499999996) (0.010904540500000004) (0.010674172499999995) (0.010701228000000007) (0.010773025500000005) (0.010848762500000012) (0.010526041000000014) (0.01050052450000001) (0.01083579250000001) (0.010928917999999996) (0.010593128999999993) (0.010895369500000002) (0.010586151500000016) (0.010628020500000002) (0.010825927499999985) (0.010790756499999984) (0.010942751) (0.010925172499999997) (0.011147860999999995) (0.011147959000000013) (0.010855417500000006) (0.010928644500000001) (0.010797156500000002) (0.010983787999999994) (0.010887541) (0.010870275999999998) (0.010798321999999999) (0.011008458999999998) (0.010926235000000006) (0.011062813500000004) (0.011179280500000013) (0.011270874999999986) (0.011020395500000002) (0.010985932500000004) (0.010944492000000014) (0.011274961999999986) (0.010933452499999996) (0.011219603499999994) (0.011036485999999998) (0.011240834499999991) (0.010829365499999993) (0.010995109500000017) (0.010846316999999994) (0.01109748449999999) (0.010988560500000008) (0.011181277500000003) (0.011025052999999993) (0.011351925500000012) (0.011442176499999998) (0.011304480499999991) (0.011248542500000014) (0.010732436499999998) (0.010907808500000005) (0.010920275500000007) (0.01060612549999998) (0.010681583499999994) (0.010905113500000008) (0.011011276) (0.010448866000000001) (0.0106933575) (0.010777835999999999) (0.010716981) (0.010966616999999998) (0.011175817000000005) (0.01103686899999999) (0.010967498499999992) (0.011035162000000001) (0.010683692000000009) (0.010742288000000003) (0.010711794999999996) (0.011053025500000008) (0.010584781500000015) (0.010822973) (0.010661023499999991) (0.010558681) (0.010674896000000003) (0.010753837500000002) (0.01090149550000001) (0.0115718925) (0.010911953500000002) (0.010995245000000015) (0.011072585999999995) (0.010869033500000014) (0.011034745499999998) (0.010896022499999991) (0.011069996999999998) (0.010976463500000005) (0.010907681500000016) (0.011233933500000001) (0.010933355000000006) (0.011251396499999997) (0.011087897999999999) (0.011146072500000007) (0.011205365000000009) (0.010938375) (0.011008320000000002) (0.011083763499999996) (0.011303457500000003) (0.01101112) (0.0112026145) (0.010999765499999994) (0.011100213000000012) (0.011032524500000002) (0.010909955999999998) (0.010820681499999998) (0.011167766499999995) (0.011033171500000008) (0.01105967849999999) (0.011354187500000001) (0.011257220000000012) (0.011148331499999997) (0.0110571265) (0.011335080499999997) (0.010946163500000008) (0.011486028999999995) (0.010746857499999998) (0.010807686499999997) (0.010621742500000003) (0.010605448000000003) (0.010623042499999999) (0.010555607499999994) (0.010991698499999994) (0.011000296499999992) (0.010703958499999985) (0.010760242500000003) (0.010984174) (0.010635092999999998) (0.010735271500000004) (0.010920320999999997) (0.010771511499999997) (0.0110902165) (0.010648945999999992) (0.01073160649999999) (0.010747358499999998) (0.011004122000000005) (0.0105867615) (0.0106575785) (0.010511847000000005) (0.010769302500000008) (0.010813494500000007) (0.010954521999999994) (0.010807232999999986) (0.010995164500000001) (0.010809134999999984) (0.010955716500000004) (0.010722995499999999) (0.010983457500000002) (0.010958552499999996) (0.011013048499999997) (0.010942049499999995) (0.011093896000000006) (0.011274322000000003) (0.01096372399999998) (0.010849479999999995) (0.011067256999999997) (0.011008759999999992) (0.011187441999999992) (0.011163680500000009) (0.011044291500000011) (0.011141724499999991) (0.011216758500000007) (0.011255873999999999) (0.010965706000000006) (0.011136156500000008) (0.011009173499999997) (0.01130076449999999) (0.011133784499999994) (0.011004496500000002) (0.011160060999999999) (0.010916983500000005) (0.0110679885) (0.011261174500000012) (0.011192571999999998) (0.011205298500000002) (0.011139985500000005) (0.011060763500000001) (0.011184585999999996) (0.011151872500000007) (0.010987083500000008) (0.010879849000000011) (0.010523092000000012) (0.011124767500000007) (0.010890417999999999) (0.010730124000000008) (0.01091147549999999) (0.01078491749999999) (0.010890353999999991) (0.010653715999999994) (0.010810725999999993) (0.010781853500000008) (0.010745394500000005) (0.010694018) (0.010593336000000009) (0.010961283000000002) (0.010875547000000013) (0.010646832999999994) (0.010788772000000016) (0.010780890000000001) (0.010822856999999991) (0.010699427999999997) (0.010623886000000013) (0.010769008499999996) (0.010910233500000005) (0.010902199500000001) (0.01068013050000001) (0.010772316500000004) (0.01097263250000001) (0.010867369500000001) (0.011006067000000008) (0.01080010599999999) (0.010744347000000001) (0.011013820999999993) (0.011155179499999987) (0.011113923499999998) (0.011179811500000011) (0.01109114750000001) (0.011129799499999996) (0.011154365000000013) (0.010842797500000001) (0.0109326805) (0.011244680999999992) (0.011322535000000009) (0.011236236999999996) (0.011063821500000001) (0.011029338) (0.011175919000000006) (0.010975454499999995) (0.011033906999999996) (0.011116289000000001) (0.010866733500000003) (0.010999087000000005) (0.011178606499999993) (0.011153729499999987) (0.010978290000000016) (0.010992827999999996) (0.0109544315) (0.011149006499999989) (0.01096871649999999) (0.011313675500000009) (0.011052233999999994) (0.01113291100000001) (0.011340370499999988) (0.011089644499999995) (0.010817522999999996) (0.010452780499999995) (0.010779747500000006) (0.010656766999999998) (0.010679115000000017) (0.010564411499999996) (0.010544195500000006) (0.010827649999999994) (0.010823238999999998) (0.010939117500000012) (0.011038022499999994) (0.010624799000000004) (0.010708925499999994) (0.010819523000000011) (0.01085771349999999) (0.010861998499999997) (0.01089140050000001) (0.010555952999999993) (0.010526769500000005) (0.010899002500000005) (0.010495681999999992) (0.010714368500000002) (0.010771006999999985) (0.010660273499999984) (0.010794939500000003) (0.010726634499999999) (0.010698435500000006) (0.010753474499999999) (0.010878897999999998) (0.010570254500000001) (0.010709615000000006) (0.010818563000000003) (0.010928269000000004) (0.010890835499999987) (0.011053114500000003) (0.010974600000000001) (0.010874098500000012) (0.011299481000000014) (0.011039546499999997) (0.011024352000000001) (0.01147377699999999) (0.011256238500000001) (0.011010600499999995) (0.011328943499999994) (0.011109234499999995) (0.010905187999999982) (0.011038368500000006) (0.011206379000000002) (0.011239688500000011) (0.010978586499999998) (0.010935794500000012) (0.010970585500000019) (0.011130170499999995) (0.010895532999999999) (0.011138004000000007) (0.010960891000000014) (0.011144434499999994) (0.010994889499999994) (0.011104370000000016) (0.011128950499999998) (0.011021195999999997) (0.011157873999999998) (0.011090755500000007) (0.011017997500000001) (0.010721202499999999) (0.010656338000000001) (0.010896338000000005) (0.010696009999999992) (0.010548778499999995) (0.010805124500000013) (0.011287059999999988) (0.010852683000000002) (0.010832795500000006) (0.010649945499999994) (0.01081053500000001) (0.010964367999999988) (0.010856758500000008) (0.010908717999999998) (0.010665923500000007) (0.010948098500000003) (0.010716583999999987) (0.010632223499999996) (0.010818979500000006) (0.010565423500000004) (0.010675531500000002) (0.01078890149999999) (0.010856469500000007) (0.010764110000000007) (0.010601083999999997) (0.010851789000000014) (0.010649055500000004) (0.010776577999999995) (0.010771164) (0.010764287999999983) (0.010732938999999997) (0.010772566499999997) (0.011074640999999996) (0.011413526000000007) (0.011568906500000004) (0.011212128000000002) (0.010919718000000009) (0.011077142499999998) (0.01096265099999999) (0.010939589999999999) (0.011011725) (0.011006438999999993) (0.01111550900000001) (0.010936452999999999) (0.011302604999999993) (0.011066808999999997) (0.011254232000000003) (0.01128741300000001) (0.010973845499999996) (0.010766671499999991) (0.011238388500000002) (0.010832626500000012) (0.010910924500000002) (0.011055478999999993) (0.010983964499999985) (0.011070722500000005) (0.01112209800000001) (0.011332500499999995) (0.011012699499999987) (0.011038597499999997) (0.010858741000000005) (0.011043566000000005) (0.01103091099999999) (0.011269948000000002) (0.010781967500000003) (0.01070325400000001) (0.010704382999999984) (0.010636688500000005) (0.010999635000000008) (0.010909027999999987) (0.010706730499999997) (0.01085716049999999) (0.010976022999999988) (0.011112888000000001) (0.010740998500000001) (0.010944051999999996) (0.010634467000000009) (0.011089020000000005) (0.010792451999999994) (0.010959816999999997) (0.010543683499999998) (0.010684096500000004) (0.010644854499999981) (0.010837944000000016) (0.010776704999999998) (0.0107939435) (0.010714465500000006) (0.010695890999999999) (0.010952271999999999) (0.01087290049999999) (0.010699038000000008) (0.0106216695) (0.010752721999999992) (0.010702127500000005) (0.010845214499999992) (0.010641705000000015) (0.011126749500000005) (0.010951681000000005) (0.011369924999999989) (0.010818539000000002) (0.011023415499999994) (0.010985742499999993) (0.011141326999999993) (0.011012425499999992) (0.01092538400000001) (0.011034613999999984) (0.011144706000000018) (0.011077980000000001) (0.011202149000000008) (0.011040177999999998) (0.011105560500000014) (0.011199798499999997) (0.011264808000000001) (0.010809619499999992) (0.010990992500000005) (0.010881006499999998) (0.010951047000000005) (0.011220520499999997) (0.01086268700000001) (0.011061244999999997) (0.011142751000000006) (0.011318747000000004) (0.0112175105) (0.011048886999999993) (0.011235320499999993) (0.011202938499999981) (0.01093213749999998) (0.01110591250000001) (0.010663513999999999) (0.010487657500000011) (0.010763544500000014) (0.010695020999999999) (0.010707249000000002) (0.010913831999999998) (0.010814268500000002) (0.010582892499999996) (0.010694664000000006) (0.01060074100000001) (0.01088293550000001) (0.010967532000000002) (0.010839745499999998) (0.010903664499999993) (0.010768616500000008) (0.010683292999999996) (0.010569338499999983) (0.010630709000000002) (0.010577012499999996) (0.010764532500000007) (0.010937265500000001) (0.010781245500000008) (0.01056195700000001) (0.010859132000000007) (0.010842379000000013) (0.010772547000000007) (0.010805199999999987) (0.011003594500000005) (0.010903270000000007) (0.010921998500000002) (0.010983342499999993) (0.010787169999999999) (0.01112809599999999) (0.011028114499999991) (0.011075711500000002) (0.011210355500000005) (0.010897621499999996) (0.01116175350000001) (0.011127325999999993) (0.010999764499999995) (0.010986529500000008) (0.010965051000000003) (0.011504925000000013) (0.011214314500000003) (0.011201125000000006) (0.011245779499999997) (0.01112692400000001) (0.011251517000000003) (0.010926270500000002) (0.011067223000000001) (0.010991269499999998) (0.010975518000000004) (0.011064115500000013) (0.010956050500000022) (0.010960142500000006) (0.010941751000000013) (0.011267812500000002) (0.01118187150000001) (0.011278386000000001) (0.011302720500000016) (0.010957441499999998) (0.010993701999999994) (0.011158531) (0.01087486) (0.010921540999999979) (0.010766255500000002) (0.01072114099999999) (0.010690482000000015) (0.010818488000000015) (0.010753958500000008) (0.010757617999999997) (0.010545903499999995) (0.010611674500000001) (0.010950520000000005) (0.010659803500000009) (0.010610488500000001) (0.010659964499999994) (0.010720558000000019) (0.010617606500000015) (0.010658215499999998) (0.01088472900000001) (0.010537044500000009) (0.010552159499999991) (0.010783135) (0.010629417500000002) (0.01061630500000002) (0.010624580500000008) (0.010866264000000014) (0.010699909500000007) (0.010614288999999999) (0.010878393) (0.010993947000000004) (0.01066888399999999) (0.010719001500000006) (0.010664445000000009) (0.010754837500000003) (0.010861252500000002) (0.01111123750000001) (0.010903745999999992) (0.01097896050000001) (0.011149069000000011) (0.010955226999999984) (0.011012398500000006) (0.011484906500000003) (0.011011269000000004) (0.01122137949999999) (0.01087039699999999) (0.011047412500000006) (0.01099378849999999) (0.010775734499999995) (0.011067926000000006) (0.011103187999999986) (0.010844813500000008) (0.010919171499999991) (0.011089268999999999) (0.011059713999999998) (0.0108905485) (0.011054084499999992) (0.010862842500000011) (0.010754536500000009) (0.011212375999999996) (0.011124013500000016) (0.010983304499999999) (0.010968829499999999) (0.010887942999999997) (0.010971747000000004) (0.01115135199999999) (0.011127418) (0.010787302499999998) (0.0104910015) (0.010597877500000005) (0.010717552499999991) (0.010579671999999998) (0.010711224500000005) (0.010945876499999993) (0.010708259499999997) (0.010619500000000004) (0.010773454500000001) (0.01067473549999999) (0.010939708000000006) (0.010760196000000014) (0.010600842) (0.010696992000000002) (0.010861693999999991) (0.010577600000000006) (0.011109946999999995) (0.010774548499999995) (0.010814855499999998) (0.0106304745) (0.01082253250000001) (0.010767256000000003) (0.010657718999999996) (0.010771825499999998) (0.010941884999999998) (0.010661496500000006) (0.011023525500000006) (0.01081818100000001) (0.010642598500000017) (0.010825519499999992) (0.010955577500000008) (0.010874268000000006) (0.010841517000000009) (0.01091130400000001) (0.01098877949999999) (0.01104817999999999) (0.011134473500000006) (0.011037452000000003) (0.010855641999999999) (0.011258512999999998) (0.011073012499999993) (0.011208385000000001) (0.011174894000000005) (0.011002028000000011) (0.011385879000000015) (0.011044729499999989) (0.010948313999999987) (0.010825949500000001) (0.011437530000000015) (0.011183296500000009) (0.010974268999999995) (0.011328079500000005) (0.010924814000000005) (0.010911672000000011) (0.011243890500000006) (0.010880271499999997) (0.011040977999999993) (0.0109869135) (0.011078047999999993) (0.011200975500000002) (0.011581978499999993) (0.011007700500000009) (0.011025843999999993) (0.010474541500000004) (0.010550536999999999) (0.010863575) (0.010656701000000005) (0.010704520999999995) (0.010566739999999991) (0.010534914000000006) (0.010723396499999996) (0.010842338000000007) (0.010842723499999998) (0.010700757000000005) (0.011170596500000005) (0.010975330500000005) (0.010766302500000005) (0.011112366999999998) (0.010705495999999995) (0.010663846500000004) (0.01072650999999998) (0.010828153000000007) (0.010645571000000006) (0.010734638500000004) (0.010967758499999994) (0.010850312) (0.010538864499999995) (0.010697381499999992) (0.010584726000000003) (0.010732020500000009) (0.010815705000000009) (0.010707596) (0.010675804000000011) (0.010808838000000001) (0.010691107500000005) (0.011178968499999997) (0.010962885000000006) (0.010901477499999992) (0.011017301500000007) (0.011115766) (0.011013555499999994) (0.011085756999999988) (0.01130476150000001) (0.011062613999999998) (0.011232183499999993) (0.011193518000000013) (0.011086654000000001) (0.011031558999999996) (0.011119960500000012) (0.011132160000000002) (0.011073335500000003) (0.011077149500000008) (0.01118411150000001) (0.011323009500000009) (0.011308010500000007) (0.010960753500000003) (0.010989899999999997) (0.011142875499999996) (0.0109686445) (0.011321026499999998) (0.011074326499999995) (0.011091280499999995) (0.011055758999999984) (0.011336878499999994) (0.0111475345) (0.011171421) (0.010982396000000005) (0.010521765500000016) (0.01065087599999999) (0.010851673000000006) (0.010598598) (0.01063041399999999) (0.010716942000000007) (0.010641822999999995) (0.01608641949999999) (0.010862080499999996) (0.010853791499999987) (0.010744739499999989) (0.010789002500000006) (0.01089829249999999) (0.010654462999999989) (0.011080471999999994) (0.010795913500000004) (0.010544329000000005) (0.010701151500000006) (0.01079113549999998) (0.011230142499999998) (0.010752932000000007) (0.010881244999999998) (0.010619400000000001) (0.010905557999999996) (0.010684270999999995) (0.010896750499999996) (0.010649160500000004) (0.011024576500000008) (0.010678568999999999) (0.010796019000000004) (0.010778704500000014) (0.011124054499999994) (0.01108619050000001) (0.010809046999999988) (0.011264035499999991) (0.010964875500000013) (0.011020228999999979) (0.011311612499999998) (0.0114448625) (0.010981417000000007) (0.0109308075) (0.01108466150000001) (0.011167075500000012) (0.01098432349999999) (0.01114620899999999) (0.011117617999999996) (0.011299550000000005) (0.011098040500000003) (0.011379549499999989) (0.01081943199999999) (0.011210595000000004) (0.011042934500000004) (0.011089740499999987) (0.010962075500000001) (0.011061904500000011) (0.011481942000000009) (0.011371963999999998) (0.011069094500000001) (0.011121435000000013) (0.011242890500000019) (0.011126514000000004) (0.011462919500000002) (0.011285713000000017) (0.010928726500000013) (0.010600335000000002) (0.010538567999999998) (0.010658559499999998) (0.010613502999999996) (0.010636123000000011) (0.010617226000000007) (0.010646259500000019) (0.010715289000000003) (0.010666098499999985) (0.010670034000000009) (0.0109580455) (0.010790102499999996) (0.010708702999999986) (0.010689257000000008) (0.010713235000000002) (0.010653332000000001) (0.01084138150000001) (0.010666817999999995) (0.010523223000000012) (0.010453189000000002) (0.010643852499999995) (0.010620328000000012) (0.010875711499999996) (0.010919658499999998) (0.010703215500000002) (0.010896583499999987) (0.01076432649999999) (0.010906655000000001) (0.010725870999999998) (0.010700382500000008) (0.010616139999999996) (0.010532040000000006) (0.010908123500000005) (0.010915073500000011) (0.011083596000000001) (0.010935293499999985) (0.011097917499999999) (0.010985052000000009) (0.011153732499999985) (0.010868534000000013) (0.010915757500000012) (0.011255446500000002) (0.011276987500000002) (0.011129631000000001) (0.011141789) (0.011323850499999996) (0.010931711999999996) (0.011046667499999996) (0.011046921500000015) (0.011071327499999992) (0.010888352000000004) (0.010916013000000002) (0.011000698000000003) (0.010915817000000008) (0.010877480000000009) (0.010665289499999994) (0.010996563) (0.011028331500000002) (0.011124073000000012) (0.011013768000000007) (0.011133860999999995) (0.011326335500000007) (0.010967580500000004) (0.0109400885) (0.010755242999999998) (0.010772294499999988) (0.010603533499999998) (0.010746045999999995) (0.010893392499999988) (0.010631359999999992) (0.010580001499999991) (0.010748704499999998) (0.01077233050000001) (0.010864281999999989) (0.010866883499999994) (0.010824698499999993) (0.010787041999999997) (0.01080666500000002) (0.010661526000000004) (0.010912356499999984) (0.010667089000000005) (0.010854885000000009) (0.010712224499999992) (0.010653168500000004) (0.010588479999999997) (0.010765752999999989) (0.010544116999999992) (0.010803854000000002) (0.01065622899999999) (0.010733259499999995) (0.010584348499999993) (0.010608013) (0.010919969499999987) (0.010602548500000017) (0.010659627000000005) (0.0109483155) (0.010916099999999998) (0.011156522000000002) (0.010994409499999983) (0.01111393899999999) (0.011024774000000001) (0.010919640500000008) (0.011022856000000011) (0.011305051999999982) (0.011050216000000002) (0.011235941500000013) (0.011123818499999993) (0.011050034999999986) (0.0109036795) (0.01123254450000001) (0.011296221499999995) (0.011258810999999994) (0.011020098500000006) (0.011093006500000002) (0.011220801000000002) (0.011269885000000007) (0.011090022000000019) (0.010849596500000003) (0.0109889975) (0.011049902) (0.011040291999999993) (0.010927060500000002) (0.011023751499999998) (0.011095885) (0.011431076999999998) (0.011053227999999984) (0.011179694500000018) (0.011143516499999992) (0.010840893500000004) (0.010607762999999992) (0.010752365499999986) (0.010821154499999985) (0.0105080055) (0.010640395999999996) (0.0106158415) (0.010640489000000003) (0.010791470999999997) (0.010788585500000003) (0.010840799500000012) (0.011024501999999992) (0.010924677999999993) (0.010775312000000009) (0.010553953999999977) (0.010664322500000004) (0.010819338999999997) (0.010643982999999996) (0.0105277025) (0.010665573499999997) (0.010620786500000007) (0.010636761500000008) (0.010839120500000007) (0.010835771500000008) (0.010804017499999999) (0.010876003000000009) (0.010799412499999994) (0.010719831500000013) (0.011054554499999994) (0.010809145000000006) (0.010904421999999997) (0.010737412500000001) (0.011008394000000019) (0.011008780499999996) (0.011259637000000003) (0.011018128000000002) (0.010978184000000002) (0.01106494000000001) (0.011224253000000003) (0.011019025000000002) (0.011015701500000002) (0.011108324500000016) (0.011102467500000004) (0.010990048000000002) (0.011118898500000016) (0.011102601500000003) (0.011102971000000003) (0.010875954000000007) (0.010950290000000001) (0.011002512000000006) (0.011156437499999991) (0.011332830000000002) (0.011247507500000004) (0.011054046999999997) (0.010997647499999999) (0.011128852000000009) (0.011204680499999994) (0.011285468000000007) (0.011041836999999985) (0.011252860500000003) (0.0111094645) (0.011084627000000014) (0.011113167999999993) (0.011025905999999988) (0.010784910000000009) (0.010793779500000003) (0.010540641000000003) (0.010960158500000011) (0.0107118415) (0.010885717000000003) (0.010885148499999997) (0.010624950000000008) (0.010923426) (0.010882364000000005) (0.0107709005) (0.01083344) (0.010877286) (0.011050240999999988) (0.010767798500000009) (0.010704921999999992) (0.010626671500000004) (0.010685659) (0.010574564499999994) (0.010771247499999997) (0.0107230985) (0.010604729000000007) (0.010928424999999992) (0.01061471999999998) (0.010866770500000011) (0.01095086699999999) (0.010593575999999993) (0.010878690499999996) (0.010879478000000012) (0.010760465499999997) (0.011165759500000011) (0.011030618000000006) (0.010995475500000004) (0.010965338000000019) (0.011103053500000001) (0.010855296) (0.01105645899999999) (0.01102343750000001) (0.010935923) (0.0111761145) (0.0110454215) (0.011735722500000018) (0.010845636499999992) (0.011046924999999999) (0.011050796499999987) (0.011521783499999994) (0.0113305655) (0.011043506500000008) (0.0113086035) (0.011158911500000007) (0.010980004500000001) (0.011205164500000017) (0.011046082499999998) (0.010874320000000007) (0.011254037499999994) (0.01110910000000001) (0.011148811999999994) (0.01098273499999998) (0.011196299000000007) (0.01106943249999999) (0.011105568999999996) (0.011589771999999998) (0.0110287295) (0.011189619000000012) (0.01058403699999999) (0.010999876499999992) (0.01065466150000001) (0.01068057850000001) (0.010642413500000003) (0.010581796500000004) (0.010609404500000003) (0.01082540500000001) (0.010788362499999996) (0.010608237999999992) (0.010743798499999985) (0.010707212000000008) (0.010730229000000008) (0.010683925999999996) (0.010703283999999993) (0.011210158499999998) (0.010897996500000007) (0.010728042000000007) (0.01089820000000001) (0.010721971999999982) (0.01074591300000001) (0.010883311999999992) (0.010628020999999988) (0.010918940000000002) (0.010764927000000007) (0.010724579500000012) (0.011028693999999992) (0.010817899500000006) (0.010679709499999995) (0.010827614999999985) (0.010912542999999997) (0.0107581135) (0.011119234499999991) (0.011075775999999996) (0.011135841999999993) (0.011003062500000008) (0.011035493500000007) (0.0110147045) (0.011011361500000011) (0.011179977499999993) (0.011135864999999995) (0.011423204499999992) (0.011058759500000001) (0.011205707500000009) (0.011002884000000004) (0.010954163499999989) (0.011053961499999987) (0.011105509999999999) (0.010880891500000003) (0.011292736999999997) (0.011060329500000007) (0.011324927499999998) (0.010775141000000002) (0.010757132500000002) (0.011152547999999998) (0.0110103535) (0.01114619700000001) (0.011343855) (0.01096635) (0.011244768000000002) (0.011135659000000006) (0.011407296500000011) (0.010994184000000018) (0.011429177499999998) (0.01053735850000001) (0.010672820999999999) (0.01081855100000001) (0.010965728500000008) (0.010797349000000012) (0.010679943999999997) (0.010837733500000002) (0.010867672500000009) (0.01098801549999999) (0.010890590500000005) (0.011031833000000005) (0.0107956295) (0.010932637499999995) (0.010620531500000002) (0.010809575500000002) (0.011024982499999988) (0.010561657000000002) (0.010906214499999997) (0.010664826500000002) (0.010735336499999998) (0.010705286000000008) (0.010691275) (0.010808071000000002) (0.01066178000000001) (0.010807489000000003) (0.010709304000000003) (0.01117999) (0.010632309000000006) (0.010697910000000019) (0.010861726000000002) (0.01099278749999999) (0.010746251499999998) (0.010864548500000001) (0.01101785000000001) (0.011016221999999992) (0.010908289500000001) (0.011100276500000006) (0.01130043700000001) (0.01104335649999999) (0.011142146000000006) (0.011012315500000008) (0.01110191599999999) (0.010938272499999999) (0.0112265265) (0.011016770500000009) (0.011102352999999995) (0.0109364505) (0.0114535355) (0.010967788500000006) (0.011091608500000003) (0.011141531499999982) (0.011201256000000007) (0.010822628) (0.011125629999999997) (0.0110978365) (0.011046167499999995) (0.011255683500000002) (0.011351097500000004) (0.011269571999999992) (0.011036874999999988) (0.011043399499999995) (0.011054504000000007) (0.01107016999999999) (0.010940238000000005) (0.010884751999999998) (0.01051529200000001) (0.01077207749999999) (0.010656862000000017) (0.010508479000000015) (0.010782233000000002) (0.010885669) (0.010598327500000004) (0.010695786499999999) (0.0106845515) (0.011093753999999997) (0.010735124499999985) (0.011039692500000003) (0.010701657000000003) (0.010861400499999993) (0.011223781000000002) (0.010823463500000005) (0.010813833500000009) (0.01128644899999999) (0.010858288499999993) (0.010705701999999984) (0.010801186000000004) (0.010780131999999998) (0.010788054500000005) (0.010793112999999993) (0.010874804500000002) (0.011280721500000007) (0.010763741500000007) (0.011028665000000007) (0.010812065999999995) (0.010806487500000003) (0.010734616000000002) (0.010964847) (0.011075924500000014) (0.011142592500000006) (0.011091874500000015) (0.010832179999999997) (0.011492194999999997) (0.010934265999999998) (0.011276838499999997) (0.011551490499999997) (0.011304808) (0.011079990999999997) (0.01104698400000001) (0.010962746999999995) (0.011185936500000007) (0.011126022499999999) (0.010946148500000003) (0.010830817999999992) (0.011179769000000006) (0.010845132999999993) (0.011086898999999997) (0.010911041499999996) (0.01105115050000001) (0.01105987600000001) (0.010836399999999996) (0.011106001500000004) (0.011096975000000009) (0.011505689) (0.010908507500000011) (0.011401334500000013) (0.011156334000000018) (0.010853697999999995) (0.010904840999999998) (0.0106795685) (0.010876332000000016) (0.010890643000000005) (0.010967097499999995) (0.0108872) (0.010737642000000006) (0.010909010499999997) (0.010886171500000014) (0.010866116500000009) (0.010724919999999999) (0.01094792650000001) (0.010743728499999994) (0.010837170999999993) (0.010819813499999997) (0.010810778500000007) (0.010812340000000004) (0.010641172500000018) (0.010622502500000006) (0.010970082000000006) (0.010817846499999992) (0.010779843499999983) (0.010755750500000008) (0.010697663999999996) (0.010842519000000023) (0.010740453999999997) (0.010895871000000015) (0.010774498999999993) (0.0107371765) (0.010880957999999996) (0.01092514850000001) (0.011189655999999978) (0.010780293999999996) (0.011096093000000001) (0.010932084999999994) (0.011015690999999994) (0.011050300999999998) (0.01093274200000001) (0.010862424999999995) (0.011069892999999997) (0.010751413999999987) (0.011171083000000012) (0.011020311500000005) (0.011073898999999998) (0.011064659000000004) (0.011014009500000005) (0.010978064999999995) (0.011205238499999992) (0.011114356500000006) (0.011368983999999985) (0.010869403500000013) (0.011002848499999995) (0.011318368500000009) (0.011014952499999994) (0.011089797999999998) (0.010881292) (0.010899498000000007) (0.011142187499999998) (0.011295091000000007) (0.011345974500000008) (0.010957521499999998) (0.011114388000000003) (0.011451715000000015) (0.011383523499999992) (0.011022017000000009) (0.010660901) (0.010632239500000001) (0.010762558999999991) (0.010592981500000001) (0.010618120000000009) (0.010558390999999986) (0.010874108500000007) (0.010645377999999997) (0.010693741500000006) (0.010624625999999998) (0.010755511999999995) (0.011876651500000002) (0.01079915599999999) (0.011081582500000006) (0.010631112499999998) (0.011191438999999997) (0.011161912499999996) (0.010663322500000016) (0.01080251900000001) (0.010673241999999986) (0.010578470999999992) (0.010584378000000005) (0.010818033500000004) (0.010703139499999986) (0.010741610000000013) (0.01088894) (0.011187446500000003) (0.01090294750000001) (0.011001440000000001) (0.010972664500000007) (0.010829153000000008) (0.011078809999999994) (0.011133486499999998) (0.010989767500000011) (0.011105861000000009) (0.010826373500000014) (0.011188445500000005) (0.010847965000000001) (0.0110036045) (0.01089772650000001) (0.011117938000000008) (0.010969649999999997) (0.011216471000000006) (0.0111820205) (0.011164945999999995) (0.011000752500000002) (0.01116549) (0.011057554499999997) (0.010990550000000002) (0.010824286000000002) (0.011064818500000004) (0.010960175499999988) (0.011010481500000002) (0.0108937895) (0.011101104500000014) (0.011057904500000007) (0.0111543655) (0.010875482500000005) (0.010942590500000016) (0.010991145500000007) (0.011307411000000003) (0.011117361000000006) (0.01119640999999999) (0.011229727999999994) (0.010672146999999993) (0.01072683549999999) (0.01077313299999999) (0.010486779000000002) (0.010761114000000002) (0.010521425000000001) (0.010651702499999985) (0.010794341499999999) (0.010826500500000003) (0.010787065499999998) (0.010819041000000001) (0.011157267999999998) (0.01085528350000002) (0.010937185499999988) (0.010732459) (0.010951270999999999) (0.011016351000000008) (0.010757638) (0.010694990500000001) (0.010580191000000003) (0.010596706500000011) (0.0110671475) (0.010753845000000012) (0.010676337500000008) (0.011012367000000009) (0.010999511000000003) (0.010774949499999992) (0.010653546000000014) (0.010829531000000003) (0.010779770500000008) (0.0109354495) (0.010986838499999985) (0.010804905500000003) (0.010943974000000009) (0.010928317999999992) (0.010969002500000005) (0.010990733500000002) (0.01093244950000001) (0.010957733999999997) (0.010851106000000013) (0.011211809499999989) (0.010922176000000006) (0.011643154500000003) (0.011137021500000024) (0.010861021500000012) (0.011112413500000015) (0.011474360000000003) (0.011097519000000014) (0.010939318500000003) (0.0108929995) (0.011005351999999982) (0.011708891499999999) (0.01081000850000001) (0.010913908) (0.011080802500000014) (0.011260693000000002) (0.010945994) (0.011190777500000013) (0.01108993400000001) (0.011100698999999978) (0.011260667000000016) (0.011291152000000013) (0.011074360999999977) (0.010829052000000033) (0.010771644999999996) (0.01059270150000001) (0.011009763000000006) (0.010560827499999995) (0.0106418645) (0.010633017500000022) (0.011061999000000003) (0.010676804999999998) (0.010799346500000001) (0.010762450000000007) (0.010776720999999989) (0.010879040499999992) (0.010705929500000017) (0.010815864500000008) (0.011034755499999993) (0.01081262249999998) (0.010630383500000007) (0.01078108450000001) (0.010725262499999985) (0.010584616000000005) (0.011112790499999997) (0.01079933100000001) (0.010508994000000008) (0.010597494499999999) (0.010777785000000012) (0.010977198499999993) (0.010792000499999996) (0.010840958000000012) (0.010728209499999988) (0.010951680999999991) (0.010683273999999993) (0.01081464650000001) (0.011210794499999982) (0.01107429800000001) (0.011018845499999999) (0.010990313499999987) (0.011028390500000013) (0.011061548500000004) (0.011152989500000002) (0.0109318905) (0.01177710400000001) (0.011203244000000001) (0.011264043500000001) (0.011121848000000004) (0.011407180500000016) (0.011355956999999986) (0.011305483000000005) (0.010894469000000004) (0.010833581999999994) (0.011034160500000015) (0.011284260000000004) (0.01117713799999999) (0.011057266499999996) (0.010924192999999985) (0.011100961000000006) (0.010876582499999995) (0.011187948500000003) (0.011181338999999998) (0.010886021499999995) (0.011312201499999994) (0.010944640000000005) (0.011070750000000018) (0.011257354999999997) (0.01083503000000001) (0.010919698000000005) (0.010859419499999995) (0.010999463000000001) (0.010536707999999992) (0.010847514500000002) (0.010610712999999994) (0.010785714500000015) (0.010753115999999993) (0.011006297999999984) (0.010746970499999994) (0.010862603999999998) (0.01103096449999999) (0.010680234499999997) (0.01066078099999998) (0.010674717000000014) (0.010869298000000013) (0.010707314999999995) (0.010710714499999996) (0.0107133425) (0.01070027450000001) (0.010727501) (0.010828260999999992) (0.010657872499999999) (0.010808511999999992) (0.010837328499999993) (0.01067230000000001) (0.010612924499999996) (0.010759077999999991) (0.01069311499999999) (0.010898282999999995) (0.011026141000000003) (0.010933308000000003) (0.011260023999999993) (0.01121556700000001) (0.011141079499999998) (0.010989975499999999) (0.011249840499999997) (0.010921269499999997) (0.011150866999999995) (0.010941623499999997) (0.010946399499999995) (0.011057980500000009) (0.011290198500000015) (0.011272652000000008) (0.011088257000000018) (0.011001396999999996) (0.011216621999999982) (0.0109405095) (0.0110024185) (0.01083189000000001) (0.011312442499999992) (0.010980827499999984) (0.011066229999999996) (0.010935906000000009) (0.011229424499999988) (0.011130761000000017) (0.011087515499999978) (0.011648060000000002) (0.011105929499999986) (0.011263490500000015) (0.011309110999999983) (0.0110231925) (0.01127669349999999) (0.011114395499999985) (0.010880699999999993) (0.010667871499999995) (0.010587355500000006) (0.0104396655) (0.010655598500000016) (0.010714367499999988) (0.010759359499999996) (0.010502080499999997) (0.010805234499999997) (0.010817077500000008) (0.01082949150000001) (0.010921102000000002) (0.010744793000000002) (0.010868805499999995) (0.01059359650000001) (0.010893413500000018) (0.010760075000000008) (0.010924026000000003) (0.01053129400000001) (0.010560273999999994) (0.010621250999999998) (0.01062050099999999) (0.010671363999999989) (0.010830936999999999) (0.01056559550000001) (0.010585754000000003) (0.010773120999999997) (0.010678685499999993) (0.010762323000000004) (0.010768392499999987) (0.010569656499999996) (0.010729443500000005) (0.011170118500000006) (0.010710668499999992) (0.010939276999999997) (0.011068878500000004) (0.010864493500000003) (0.010804707499999996) (0.010835284) (0.01111069599999999) (0.0111501725) (0.0109966165) (0.0110871835) (0.011240647000000006) (0.01110578949999999) (0.011144114999999996) (0.010945542000000003) (0.010899840000000008) (0.011379288000000001) (0.010819388999999999) (0.010998214999999992) (0.010906782500000003) (0.011019084499999998) (0.011329458) (0.01084044699999999) (0.01100801550000001) (0.011236740999999995) (0.011255578500000002) (0.011310064500000008) (0.011162173999999997) (0.011002338999999986) (0.011182955000000008) (0.011019914500000005) (0.011057826999999992) (0.010757936999999995) (0.010750024999999996) (0.010835336000000001) (0.010720971499999996) (0.010671422499999986) (0.010529727000000003) (0.010617098999999991) (0.010678514) (0.010726632) (0.010714904000000011) (0.01085831299999998) (0.010845329) (0.01068722250000001) (0.010767867) (0.010751514500000003) (0.011053620499999986) (0.010879207999999987) (0.010990117000000008) (0.01064868649999999) (0.010896051000000004) (0.010526201999999998) (0.010887631500000008) (0.010955167000000002) (0.010836562500000008) (0.01059830099999999) (0.010619979500000001) (0.010602134) (0.01091449600000001) (0.010647118499999997) (0.010607543499999997) (0.010835032500000008) (0.011079207499999993) (0.010804275000000002) (0.010878956999999995) (0.010879537000000009) (0.010964932999999996) (0.011057274999999991) (0.010856116500000013) (0.010926504500000017) (0.011070412500000015) (0.010950968999999991) (0.011097974499999982) (0.011036050999999991) (0.010974280000000003) (0.01107415049999999) (0.011167009999999991) (0.011184946500000001) (0.011135991499999984) (0.01078026650000001) (0.010847739499999995) (0.01089293400000002) (0.01090670199999999) (0.010884436999999997) (0.011338913499999992) (0.0109852545) (0.010849932500000006) (0.010992475000000002) (0.011042849000000007) (0.011188346000000002) (0.01113707450000001) (0.011014509500000005) (0.01099921000000001) (0.011098015000000003) (0.010895234000000018) (0.010583494999999998) (0.0107686065) (0.010615050000000001) (0.010637663000000006) (0.01062138) (0.010740110499999983) (0.010883081000000003) (0.010843575500000008) (0.0107385485) (0.010657191499999996) (0.011104002999999987) (0.010703783499999994) (0.011166773500000005) (0.010587278999999991) (0.010709428000000007) (0.010707925500000007) (0.010484194499999988) (0.010669902500000009) (0.010794860000000003) (0.01054446299999999) (0.010717162499999988) (0.01069153299999999) (0.010467282999999994) (0.010536511500000012) (0.010854546000000007) (0.010653804000000003) (0.010756688) (0.010965966999999993) (0.011144956999999997) (0.010905493500000002) (0.011084335500000014) (0.010731999499999992) (0.011184162500000011) (0.011232089999999986) (0.01098655250000001) (0.011103071000000006) (0.01081850749999999) (0.011203144499999998) (0.01096759700000001) (0.011001640999999993) (0.01112391850000001) (0.011071227499999989) (0.011101217999999996) (0.011248552500000009) (0.01137223100000001) (0.011140949000000011) (0.010991803000000008) (0.01092124550000001) (0.011034797999999985) (0.0109469975) (0.010993501000000003) (0.010783164499999998) (0.011086195500000007) (0.011058372999999996) (0.010801734499999993) (0.011058634999999997) (0.011375647500000002) (0.011123017499999999) (0.011034035999999997) (0.011141073500000001) (0.010958701000000001) (0.011086580499999998) (0.011352840499999989) (0.010922409500000008) (0.010783946000000016) (0.010720511000000002) (0.010526755499999998) (0.010799966000000008) (0.010702867000000005) (0.010753325000000008) (0.01072778449999999) (0.011327174500000009) (0.010870453500000002) (0.010864921499999985) (0.010839376499999998) (0.010935359499999991) (0.010761652999999996) (0.010692166000000003) (0.010890303000000018) (0.010834164499999993) (0.010843042999999997) (0.010590648499999994) (0.010668999999999998) (0.010873766499999993) (0.010515664999999993) (0.010971620999999987) (0.010716099500000006) (0.010658750499999994) (0.01076656699999999) (0.010773615500000014) (0.010681788500000011) (0.010710912500000003) (0.011133921500000005) (0.011011928500000004) (0.01079073350000001) (0.010985303999999987) (0.011000427500000007) (0.010838590499999995) (0.011050907999999998) (0.011084340499999998) (0.011347466500000014) (0.010920766999999998) (0.011612949999999997) (0.011060517999999991) (0.011255789500000002) (0.011554246500000004) (0.011063506999999986) (0.010986358000000016) (0.011305520999999999) (0.011063264500000003) (0.011246300000000015) (0.011138712000000009) (0.010864400999999996) (0.010855225999999996) (0.010924549000000006) (0.010985249000000002) (0.010995072999999994) (0.01091482199999999) (0.010966933999999998) (0.011369098499999994) (0.011141317499999984) (0.011118461999999996) (0.010986518499999987) (0.011078147999999982) (0.011256626999999991) (0.010921995000000004) (0.011076068500000008) (0.011293867999999999) (0.010643481500000024) (0.010849645500000005) (0.010826740000000001) (0.010619861500000022) (0.01083969450000001) (0.010670243999999995) (0.010507383500000009) (0.010527704999999998) (0.010853557999999985) (0.010829282999999995) (0.010646097500000007) (0.010864934499999993) (0.010938542999999995) (0.010741785500000003) (0.010692928500000004) (0.010749364999999997) (0.010644428499999997) (0.010609807499999999) (0.010559335500000003) (0.010948310000000017) (0.010714100500000004) (0.010587599000000003) (0.010778692000000006) (0.010662120999999983) (0.010737121000000002) (0.010943145500000001) (0.010638140000000004) (0.010761363999999995) (0.010673939499999993) (0.010881046500000005) (0.01078710450000002) (0.010880387500000005) (0.011006085499999999) (0.011070400000000008) (0.010855932999999998) (0.011031755000000004) (0.011200337500000004) (0.011202497500000005) (0.010955015499999998) (0.01129152650000001) (0.011090531999999986) (0.011087720999999995) (0.011090410999999994) (0.010960104999999984) (0.011060602500000002) (0.010962525999999986) (0.011017219999999994) (0.010927103000000007) (0.010996250999999999) (0.01112982450000001) (0.010802209499999993) (0.010843791999999991) (0.01093005100000001) (0.011046182000000002) (0.010972236499999996) (0.011047753999999993) (0.011093437999999997) (0.010987805499999989) (0.011269298999999997) (0.01095537399999999) (0.0109331015) (0.011093979000000004) (0.011233328) (0.011192498000000009) (0.010684746500000009) (0.010647293500000002) (0.010531551500000014) (0.01099262999999999) (0.01068343400000002) (0.010783015999999992) (0.010777935500000002) (0.010775337499999996) (0.010905940000000003) (0.010925836500000008) (0.010747820500000005) (0.010861514500000002) (0.01075951750000001) (0.010645978000000014) (0.010763750500000002) (0.010621593999999998) (0.010553494499999996) (0.01059011) (0.010668490500000016) (0.010675796499999987) (0.011210445999999999) (0.010529136500000008) (0.010623738999999993) (0.010540498500000009) (0.010849806500000003) (0.010716364500000006) (0.011017378500000008) (0.010778678) (0.010965458500000011) (0.0107109955) (0.010812164499999999) (0.01081304999999999) (0.011025655499999995) (0.011081102499999995) (0.01103293000000001) (0.011144362500000005) (0.011017862500000003) (0.010931570500000001) (0.010991303500000008) (0.010957398500000007) (0.011014233000000012) (0.011020704000000006) (0.010964724000000009) (0.01102900300000001) (0.01140230099999999) (0.011175190500000001) (0.010990878999999995) (0.011368294000000001) (0.011126213999999995) (0.010828281000000009) (0.010796170999999993) (0.011030405000000007) (0.010973542500000003) (0.011297788500000003) (0.010955472499999994) (0.011484425500000006) (0.011197801500000007) (0.011126147000000003) (0.011154845499999996) (0.011050925499999989) (0.011252548500000015) (0.0110803275) (0.011128527499999999) (0.010946345499999996) (0.010826170999999996) (0.010979674499999995) (0.011174774499999998) (0.010563513999999996) (0.010866876999999997) (0.010964807499999993) (0.010788013499999999) (0.010856712500000004) (0.010743645999999996) (0.010962845500000012) (0.010721961999999988) (0.010946095999999989) (0.010726555499999998) (0.01078341499999999) (0.010902206499999997) (0.01079379200000001) (0.010572080999999997) (0.010619247499999998) (0.010740268999999997) (0.010724406500000006) (0.01058614899999999) (0.0107992435) (0.010815864499999994) (0.010702760999999991) (0.010656123500000003) (0.010808964500000004) (0.010745949500000004) (0.010866465999999991) (0.011016697500000006) (0.010786965499999981) (0.011124527499999995) (0.010881956499999998) (0.010876188000000009) (0.010861539500000003) (0.010863912000000003) (0.010827010999999997) (0.01145732000000002) (0.011080221500000001) (0.011025990500000013) (0.011059342) (0.011107880500000014) (0.011073349999999996) (0.011471875499999978) (0.011362766999999996) (0.011181557000000009) (0.01128027849999999) (0.011019946000000003) (0.011375225500000002) (0.01084257999999999) (0.010934056499999997) (0.010745581000000004) (0.011321697499999991) (0.011006685500000002) (0.010940409499999984) (0.010886760500000009) (0.011085091000000005) (0.011164900500000005) (0.010976456999999995) (0.011261887999999984) (0.011403128499999998) (0.011017327500000007) (0.011182526999999998) (0.011033118000000008) (0.011163696500000014) (0.010730913999999994) (0.01058250849999999) (0.010683273999999993) (0.010578820000000017) (0.010814576000000006) (0.010658816499999987) (0.010780523000000014) (0.011128479499999996) (0.010813995500000007) (0.010755556000000013) (0.010787732000000008) (0.01074369850000001) (0.010845355000000001) (0.010713222500000008) (0.010889996499999999) (0.010609273000000002) (0.010835580499999997) (0.010560175500000005) (0.010708726999999987) (0.010926594000000012) (0.010539725) (0.010797903499999997) (0.010713591500000008) (0.010775768000000005) (0.010972455999999992) (0.010784964000000008) (0.010775081500000006) (0.010799654999999991) (0.01092236349999999) (0.011901879500000018) (0.010666494999999998) (0.011361373500000022) (0.010966973500000005) (0.011018973499999987) (0.011095214499999992) (0.011062158500000002) (0.011050547999999993) (0.010999811999999998) (0.011297737500000002) (0.01087107200000001) (0.011229535999999998) (0.0111117315) (0.011126925499999996) (0.010975500500000013) (0.011136087500000003) (0.011115770999999997) (0.011047629499999989) (0.01101116299999999) (0.010846354500000002) (0.011019812500000004) (0.010969175000000012) (0.011268996000000003) (0.010950114999999996) (0.011049113499999999) (0.010925077499999991) (0.011143244499999996) (0.010909864500000005) (0.011101686999999999) (0.01109386250000001) (0.011271364000000006) (0.011193639500000019) (0.011201140999999998) (0.01134063199999999) (0.01109510050000001) (0.010850266500000011) (0.010671564499999994) (0.010593192000000001) (0.010568946499999995) (0.010786101999999992) (0.010674554500000002) (0.010858319000000005) (0.010623746999999989) (0.01111619450000001) (0.010644938499999979) (0.010655063999999992) (0.010626601500000013) (0.010835943499999987) (0.010761318500000006) (0.010688299000000012) (0.010891505499999996) (0.010636175500000011) (0.010529475499999996) (0.010919489000000004) (0.010626295500000008) (0.010725627500000001) (0.010705121999999997) (0.010688636500000001) (0.01050814450000001) (0.010754525499999987) (0.010571095999999988) (0.010694205499999998) (0.010845824000000004) (0.010707216500000005) (0.010694293000000007) (0.010739470000000001) (0.011011392000000009) (0.011027252999999987) (0.011137382000000001) (0.010916410000000001) (0.010947370499999998) (0.010861699500000002) (0.011084475999999996) (0.011052269500000003) (0.011025337999999996) (0.01106752200000001) (0.011048210000000003) (0.0111954695) (0.010902238000000009) (0.010996410999999998) (0.01112226899999999) (0.011568223000000002) (0.011250119500000003) (0.01110605599999999) (0.011000975499999996) (0.010800298500000013) (0.01129949650000002) (0.010807086999999993) (0.010902342500000009) (0.011070848999999994) (0.010839464000000007) (0.010915723500000002) (0.011118389000000006) (0.011240407500000008) (0.010860948500000009) (0.0111998195) (0.01121766099999999) (0.011037033000000002) (0.010974137499999995) (0.010683137999999995) (0.010996798000000002) (0.010540122499999999) (0.010804063500000002) (0.011241224000000008) (0.010558856999999991) (0.010638493500000012) (0.010505248499999995) (0.010680080000000008) (0.010855800999999998) (0.010845474500000007) (0.010936035499999996) (0.010877221499999992) (0.011705196500000015) (0.010674357499999995) (0.01065621949999998) (0.010696572500000001) (0.010720692000000004) (0.0106254675) (0.010615921) (0.010585642500000006) (0.010530164999999994) (0.010722629499999983) (0.010739183000000013) (0.010724723499999977) (0.01069679150000001) (0.01085191499999999) (0.010784968499999992) (0.010855035000000013) (0.010883468000000007) (0.010900133500000006) (0.010784592999999995) (0.010925521500000007) (0.011000926999999994) (0.011060152000000004) (0.01098230850000001) (0.0107541855) (0.011053478500000005) (0.011050216000000002) (0.011041124499999985) (0.010956896500000007) (0.011040462000000001) (0.011064818000000004) (0.011168033499999994) (0.011295944999999988) (0.011150870500000007) (0.011158255500000006) (0.011080513500000014) (0.010753848499999996) (0.010956953000000005) (0.010985611500000006) (0.011245469499999994) (0.011030942500000002) (0.011076577000000004) (0.011261553500000007) (0.010952520500000007) (0.011165250000000002) (0.011139929000000007) (0.011434288) (0.011212030500000011) (0.011012099000000011) (0.010987764499999983) (0.011334728999999988) (0.011082303999999987) (0.010671993500000004) (0.010728967999999992) (0.010791864999999998) (0.010766820999999996) (0.010541674000000001) (0.010619283999999993) (0.010827485499999998) (0.010692934500000001) (0.010958882499999989) (0.01080913800000001) (0.010853085500000012) (0.010761848000000004) (0.010620138500000001) (0.010623263000000008) (0.010693353000000017) (0.010958927499999993) (0.010725815) (0.010808660999999997) (0.010723744500000007) (0.010674319500000001) (0.010685642999999995) (0.010810519500000018) (0.010718405) (0.01081130750000002) (0.011215086499999999) (0.0109722825) (0.011363643500000006) (0.010768104999999986) (0.010666391500000011) (0.01108576800000001) (0.010672203499999991) (0.010852190999999997) (0.011025286999999995) (0.011024329999999985) (0.011291597500000014) (0.01101307700000001) (0.010778820999999994) (0.01123752) (0.01087987) (0.010871803499999999) (0.011130121000000007) (0.010928023000000009) (0.011142030499999983) (0.011148700000000011) (0.011024738500000006) (0.011108604999999994) (0.012544583000000012) (0.010979582500000001) (0.010998233499999996) (0.01099650399999999) (0.010965332499999994) (0.010938744999999986) (0.011011287499999994) (0.010810942500000018) (0.011184975499999986) (0.010914658999999993) (0.010944384499999987) (0.011112468999999986) (0.011330070000000012) (0.011046891000000003) (0.011328516499999997) (0.010980344999999989) (0.010896120000000009) (0.011106786999999993) (0.010734674000000013) (0.010935875499999997) (0.010806264999999995) (0.010756817000000002) (0.010630123500000005) (0.010539148999999984) (0.010536169000000012) (0.010795174500000004) (0.010695672000000003) (0.011100570500000004) (0.010687281000000007) (0.010926923000000005) (0.010980163500000015) (0.010706181999999995) (0.011021938999999994) (0.011110647999999987) (0.01081531749999999) (0.010653284999999998) (0.010519119500000007) (0.010851053499999999) (0.01072556949999999) (0.010782408000000007) (0.010710822000000009) (0.010678279999999984) (0.010792365999999998) (0.010689012999999983) (0.011033791000000015) (0.011009274500000013) (0.011112892999999999) (0.010699149499999991) (0.010796672000000007) (0.01103174550000001) (0.011277883000000002) (0.011049767000000016) (0.010837050999999986) (0.011412204999999995) (0.011019188) (0.0109828535) (0.011085253500000003) (0.011001647000000003) (0.011519716) (0.011289059000000004) (0.011014984500000005) (0.011013026000000009) (0.011092035) (0.011514710499999997) (0.010971934000000003) (0.011040683999999995) (0.010881863500000005) (0.011004788999999987) (0.011010073999999995) (0.011054334499999999) (0.010974834500000002) (0.011241833500000006) (0.010898760000000007) (0.011243477499999988) (0.011073535499999995) (0.011374906000000004) (0.011161352499999999) (0.01121588350000001) (0.011287851500000001) (0.011202404499999999) (0.011212255000000004) (0.011146163) (0.010879278499999992) (0.01062987550000001) (0.01055477149999999) (0.010921638000000011) (0.010781590499999993) (0.010685455999999996) (0.0105256445) (0.010772049500000005) (0.011169790999999998) (0.011036095999999995) (0.010693624499999999) (0.010779558499999994) (0.010904905000000006) (0.010884690000000002) (0.010844961000000014) (0.010882656000000004) (0.010622981000000004) (0.010598375000000007) (0.0107269995) (0.010970918499999996) (0.010732710500000006) (0.010532645499999993) (0.010674456999999998) (0.01058587200000001) (0.010735812499999997) (0.010676771000000015) (0.010870243000000002) (0.010471833999999985) (0.010792617000000004) (0.010878056500000025) (0.01080253199999999) (0.010927437499999998) (0.01108677050000001) (0.010968918500000008) (0.011405140500000008) (0.011013645500000002) (0.011269504) (0.010870380499999985) (0.011046650000000005) (0.011023605000000006) (0.011175865500000007) (0.010953106500000004) (0.011115576000000002) (0.010988018499999988) (0.01125168850000001) (0.011150753) (0.011019261000000002) (0.01096799150000001) (0.011227511999999995) (0.011119313500000005) (0.011033754500000006) (0.01105904399999999) (0.011484591500000002) (0.010786363499999993) (0.011075844500000001) (0.011098351500000006) (0.010890512000000005) (0.01106129850000001) (0.01107221400000001) (0.011318011000000003) (0.011136055999999991) (0.011021724499999996) (0.011264216500000007) (0.0110434175) (0.01065580449999999) (0.010724613999999993) (0.010926810499999995) (0.010671881000000008) (0.010585206000000014) (0.010646509999999998) (0.010613778000000004) (0.010769048000000003) (0.010708046500000012) (0.010608435999999999) (0.01105041250000001) (0.010709267500000008) (0.01094291) (0.010826237000000002) (0.010950986499999996) (0.010951089000000011) (0.010638907000000003) (0.010588525500000001) (0.01085227100000001) (0.011040380000000002) (0.010693315499999995) (0.010472882000000003) (0.010475555499999997) (0.010873504499999992) (0.010809987500000007) (0.010847781500000014) (0.010824823000000011) (0.010787472500000006) (0.0109029405) (0.010987295500000008) (0.010759360499999995) (0.010901790000000008) (0.0110147045) (0.011238678000000002) (0.010783100000000004) (0.011014751500000003) (0.011057994000000002) (0.011110816999999995) (0.010947667499999994) (0.010943652999999998) (0.011279528499999997) (0.010944785000000012) (0.011481322499999988) (0.010908216499999998) (0.010986323499999992) (0.011016907500000006) (0.011191683499999994) (0.011106337499999994) (0.011154160499999996) (0.010944117500000003) (0.011018608) (0.011090006999999999) (0.010956357) (0.011063644999999997) (0.010979834999999993) (0.010944039999999988) (0.010990803000000007) (0.0111549455) (0.011138572999999999) (0.011276744000000005) (0.011083978999999994) (0.011143450499999999) (0.010898865000000008) (0.011159963999999994) (0.010607193000000001) (0.010633362500000007) (0.010779929000000008) (0.010635257499999995) (0.010644762499999988) (0.01063114200000001) (0.010903102999999997) (0.010819584999999993) (0.010740533999999996) (0.010787941000000023) (0.011061838000000004) (0.01078091299999999) (0.010580517499999997) (0.010849166500000007) (0.011097267999999993) (0.010917333500000001) (0.010678093999999999) (0.010815008999999987) (0.010826267000000014) (0.010843395000000006) (0.01074311750000001) (0.01074214050000001) (0.010655787) (0.010719126499999995) (0.010820038500000004) (0.0110533045) (0.010702121999999994) (0.010790762999999995) (0.010693135500000006) (0.010773236499999991) (0.010929759499999997) (0.010989680500000001) (0.010924036999999998) (0.011058455999999994) (0.011396723499999997) (0.011058096500000003) (0.011112842999999997) (0.010925536999999999) (0.011184873999999997) (0.011056628499999999) (0.011209531999999994) (0.011225646500000006) (0.011169400499999996) (0.011163299500000001) (0.011633620999999983) (0.011299856999999996) (0.011341335499999994) (0.011295275499999993) (0.010970689000000006) (0.011131105500000002) (0.011131389000000005) (0.011010475999999991) (0.01150707350000002) (0.01101965349999999) (0.011335055499999996) (0.011087238499999985) (0.011030681000000014) (0.011043103500000012) (0.01099224950000001) (0.01111951450000001) (0.01107190999999999) (0.011353522000000005) (0.011092597499999995) (0.011028689999999994) (0.010826624000000007) (0.010566761999999993) (0.011041629499999997) (0.011000967) (0.010902536500000004) (0.010825165499999997) (0.010919372999999996) (0.01074231349999999) (0.010715907999999996) (0.010676178000000008) (0.010768966500000005) (0.010995035999999986) (0.010753750000000006) (0.010941364000000009) (0.010783345000000014) (0.010869447000000004) (0.010659209999999988) (0.010737662500000009) (0.010927616000000001) (0.010682250000000004) (0.010837853000000008) (0.010554072500000011) (0.010867444000000018) (0.010656531499999997) (0.010988272499999993) (0.010872102499999994) (0.010669976999999997) (0.010822739999999997) (0.010958903999999992) (0.010853068999999993) (0.011183616500000007) (0.010767712999999984) (0.0109326025) (0.01113884300000001) (0.010947126500000001) (0.010843901499999989) (0.011122144500000014) (0.010909589999999997) (0.010963694499999996) (0.011038339500000008) (0.01104848500000001) (0.01125668099999999) (0.011158460000000009) (0.011045069000000005) (0.01103823999999999) (0.0111161085) (0.011179699500000001) (0.01107393700000002) (0.011020294) (0.010961851499999994) (0.011126963000000004) (0.010963931999999996) (0.010975174500000004) (0.011101763) (0.010843895000000006) (0.010906299999999994) (0.011131030999999986) (0.011009798500000001) (0.011063004500000001) (0.011285979500000015) (0.011098238499999982) (0.011145335500000006) (0.011132053500000003) (0.011075559000000013) (0.010857192500000001) (0.010622528999999992) (0.010825400000000013) (0.010673192499999998) (0.010568886999999999) (0.010727282000000005) (0.010693336000000012) (0.010728593499999994) (0.010784035499999997) (0.01075711750000001) (0.010802095500000011) (0.010807746000000007) (0.01071076) (0.01077730099999999) (0.010695570500000001) (0.010620372500000017) (0.010859851000000004) (0.010703032500000001) (0.010750300500000018) (0.010590391500000004) (0.010789584000000005) (0.010709280500000001) (0.010545681000000001) (0.010622421000000007) (0.010709811999999999) (0.010718184000000006) (0.010710189499999995) (0.010842878000000014) (0.010596070999999985) (0.01061716900000001) (0.01083979950000001) (0.010837091499999993) (0.011061795999999999) (0.011089062999999996) (0.010920941500000003) (0.010855961499999997) (0.010920758000000003) (0.011069122) (0.010913354999999986) (0.011197344000000012) (0.011255628000000004) (0.010980836000000008) (0.011298981) (0.011131050999999989) (0.011038909499999985) (0.011292493999999986) (0.01101139999999999) (0.011013055999999993) (0.0107750385) (0.01092729349999999) (0.0113194385) (0.011006008499999997) (0.011381585999999985) (0.011169600500000015) (0.010998081499999993) (0.010963522999999989) (0.011008173999999996) (0.011156776999999993) (0.011093269500000003) (0.011255488999999994) (0.010940666499999988) (0.011327607000000003) (0.011237394999999983) (0.011375564000000005) (0.010635200499999997) (0.010869105500000018) (0.010812333999999993) (0.01058606799999999) (0.010977990999999993) (0.01074183799999999) (0.0110831225) (0.010656553499999999) (0.0109727835) (0.010939595999999996) (0.010786827499999999) (0.010854766000000002) (0.010847731999999999) (0.010913318999999977) (0.010738606499999984) (0.010693122) (0.010839489999999993) (0.010460402000000008) (0.010618166999999998) (0.010741739) (0.01067431499999999) (0.010796884500000006) (0.010619569999999995) (0.010523945500000007) (0.010674364499999991) (0.010746166500000001) (0.01072526) (0.010902606499999995) (0.010679061500000003) (0.011268273500000009) (0.01068823549999999) (0.010937715999999986) (0.011438707499999992) (0.010932647000000004) (0.011057934000000005) (0.010831735500000009) (0.010969143) (0.01094468550000001) (0.011119073999999993) (0.010775481000000003) (0.01103940149999999) (0.010838772999999982) (0.010878063500000007) (0.011207415000000012) (0.011343951500000005) (0.011426593500000012) (0.010980396500000003) (0.011313928000000001) (0.011147673999999996) (0.011027658499999995) (0.010943030499999992) (0.011005987499999995) (0.011070373500000008) (0.010808429500000008) (0.010999896000000009) (0.011153573) (0.011122469999999982) (0.011068762999999995) (0.011186777500000009) (0.011311890500000005) (0.011040955499999991) (0.011097782) (0.011010578999999993) (0.011540791499999994) (0.010566717500000003) (0.010619008999999985) (0.010645150499999992) (0.010746263500000006) (0.010587167999999994) (0.0106848415) (0.011090977500000002) (0.010934792999999998) (0.010986737999999996) (0.010957335500000012) (0.010748608500000006) (0.010852916000000004) (0.010776938500000013) (0.010788799500000001) (0.010712178999999988) (0.01081471249999999) (0.010736111500000006) (0.010712944000000002) (0.0107564765) (0.010570771000000007) (0.010735352000000017) (0.010556748500000004) (0.010514792000000009) (0.010448340000000014) (0.010708728500000014) (0.010735706999999997) (0.010729674000000008) (0.010817873500000005) (0.010730138500000014) (0.010822308000000003) (0.010763592000000002) (0.010948002499999998) (0.010843632500000006) (0.011119601500000006) (0.010918700500000003) (0.011091744500000014) (0.010957419999999995) (0.011217196499999998) (0.010857511500000014) (0.010854861999999993) (0.011086383499999991) (0.0112944715) (0.010988074500000014) (0.011003090999999993) (0.01106428000000001) (0.0109408805) (0.010947623000000004) (0.011315787000000008) (0.01076649099999999) (0.011331967999999998) (0.011141079500000012) (0.010812731000000006) (0.01096016050000001) (0.011279057999999995) (0.010970291499999993) (0.011127149499999989) (0.011149018999999996) (0.011278525000000011) (0.011210182499999999) (0.011006859500000007) (0.011065338500000022) (0.01113256) (0.011314551999999992) (0.011000692499999992) (0.010660193499999998) (0.010768947000000001) (0.010745778499999997) (0.010700486999999995) (0.010614269999999995) (0.010851268999999997) (0.010813446000000004) (0.010951252999999994) (0.010879714999999998) (0.010596335999999984) (0.011040567999999987) (0.010675336499999993) (0.010601016500000018) (0.011302944500000009) (0.010944849499999992) (0.010990052) (0.010750740000000009) (0.010826998500000004) (0.010900431500000002) (0.010598676500000001) (0.010943373000000006) (0.010515940500000001) (0.010522257499999993) (0.010698847499999983) (0.010864504499999983) (0.010793191000000008) (0.011136201999999998) (0.010910594499999995) (0.010806620499999989) (0.010729059000000013) (0.010954814499999993) (0.010802203499999996) (0.010966556000000002) (0.011083685999999995) (0.011237244500000007) (0.011322713000000012) (0.011066322000000003) (0.011097170500000003) (0.011414345499999992) (0.011248090499999988) (0.011093339499999993) (0.011464551500000003) (0.011122966000000012) (0.011271391499999991) (0.010949446000000002) (0.011167903500000007) (0.010962636999999997) (0.01115965649999999) (0.01093962050000001) (0.011018521500000017) (0.010949023999999988) (0.011017396499999998) (0.0110159685) (0.010761507500000003) (0.01099227350000001) (0.011317673500000014) (0.011264720499999992) (0.011033366000000003) (0.011420632) (0.011053540999999986) (0.01112494800000001) (0.010893669500000008) (0.011473260499999999) (0.011021760500000005) (0.010541649999999986) (0.010679236500000008) (0.010606143000000012) (0.01094031849999999) (0.0107698985) (0.010627528999999997) (0.010572737499999998) (0.010528382499999989) (0.010624117499999988) (0.01069231900000002) (0.010712045999999989) (0.010769773499999996) (0.010761997499999995) (0.010765338499999999) (0.010607169) (0.0109498185) (0.010795696000000007) (0.010486395999999995) (0.01057880600000001) (0.010666813499999997) (0.010456824500000003) (0.010571997999999985) (0.010757644999999996) (0.010527607000000008) (0.010579953000000003) (0.010689220499999999) (0.010766949499999998) (0.01066752) (0.010634443500000007) (0.010631604500000003) (0.010735332) (0.010920262000000014) (0.011006503) (0.010905892) (0.011373897999999993) (0.01116626250000001) (0.011036296000000001) (0.010875219499999991) (0.011086328500000006) (0.0109541695) (0.011196200500000003) (0.011579039999999999) (0.01086730050000001) (0.011406037500000007) (0.011217000500000004) (0.011087379999999994) (0.0112349905) (0.011220203000000012) (0.011117456499999998) (0.011093118999999999) (0.010882881000000011) (0.010953132000000018) (0.010971296500000005) (0.01080626250000001) (0.010926204999999994) (0.01103452299999999) (0.011048933499999997) (0.010891127) (0.010891230500000001) (0.010971332) (0.01089298649999998) (0.011176210999999991) (0.011099409500000004) (0.011067116000000016) (0.010745749999999998) (0.010989707000000001) (0.010811719499999997) (0.010538442999999995) (0.010675990999999996) (0.010551682000000007) (0.010795215499999997) (0.010737605500000011) (0.010963592500000008) (0.010996610500000017) (0.010909833500000007) (0.011076537000000011) (0.010726537000000008) (0.010920627500000002) (0.010648492499999995) (0.010783945500000003) (0.010710655500000013) (0.010726932999999994) (0.010469634500000005) (0.010930692500000005) (0.010753073000000002) (0.010831948999999993) (0.010789525999999994) (0.010847239999999994) (0.010835227000000003) (0.010773496999999993) (0.011083990500000016) (0.010737447000000011) (0.010697722500000006) (0.0106727415) (0.010803724) (0.010636044499999997) (0.011937147500000009) (0.010979473000000003) (0.011419283500000016) (0.011378773999999994) (0.011189841499999992) (0.011523369000000006) (0.011082002499999993) (0.011057779500000003) (0.011310332999999992) (0.011060783499999977) (0.011185268000000012) (0.01125697249999999) (0.011206471499999995) (0.011250296499999979) (0.011113398999999996) (0.01108684850000001) (0.010853004999999999) (0.010878600999999988) (0.011083068000000001) (0.011058210499999999) (0.0111429755) (0.010973258) (0.011229295499999986) (0.011034312000000004) (0.01119067750000001) (0.011131296999999998) (0.011349560000000009) (0.010940839000000008) (0.011099422999999997) (0.011078988499999998) (0.011020572000000006) (0.011024920999999993) (0.010799247499999998) (0.010887969499999997) (0.010924617499999997) (0.010681023000000012) (0.010753406500000007) (0.010772942000000008) (0.010737709499999998) (0.010590836500000006) (0.010746283499999995) (0.010829995999999995) (0.010773878) (0.010860237000000009) (0.010641070000000002) (0.0109061815) (0.010654803500000004) (0.010614880999999993) (0.010815477500000004) (0.010626691500000007) (0.010833697000000003) (0.010807649000000003) (0.011139309) (0.010776093499999986) (0.010691126499999995) (0.010637443499999996) (0.010856785000000008) (0.010860107499999994) (0.010750248000000018) (0.010886597999999997) (0.011095928000000005) (0.01062780599999999) (0.010756825500000011) (0.010752519999999988) (0.011125369999999996) (0.011089264500000001) (0.0113491805) (0.011245143499999999) (0.010911168999999998) (0.011134276999999984) (0.011080236500000007) (0.011026818499999994) (0.010897514000000011) (0.011319607999999995) (0.011180606499999995) (0.011288704999999996) (0.01107009149999999) (0.011143144499999993) (0.010984493999999997) (0.011045479999999996) (0.011001366000000012) (0.011119879499999985) (0.010833604999999996) (0.010971310500000012) (0.010985098999999998) (0.010890531000000009) (0.010925981500000001) (0.010939022999999992) (0.011032700000000006) (0.011118905999999998) (0.011553470499999996) (0.011451017500000008) (0.01098262450000001) (0.0111169505) (0.011261099500000024) (0.011186889499999991) (0.010955666500000003) (0.010951498500000004) (0.010542903500000006) (0.01066850350000001) (0.010893428499999996) (0.010959776500000018) (0.01074812600000001) (0.011074172999999993) (0.01170421549999999) (0.010861161000000008) (0.010919344999999997) (0.011489934499999993) (0.01085042650000001) (0.010807522) (0.010833710999999996) (0.010672809499999991) (0.010561314500000002) (0.010841651500000007) (0.010705104499999993) (0.0107744065) (0.010600424499999997) (0.010772975000000004) (0.010805053500000009) (0.010557249000000005) (0.011025681999999995) (0.010902228500000014) (0.01073278850000002) (0.010779664000000008) (0.010850714499999997) (0.010696299500000006) (0.010903475499999982) (0.01079420099999999) (0.011356574000000008) (0.010854332999999994) (0.011201956499999999) (0.010857652499999995) (0.011189933499999999) (0.011124785000000012) (0.011162407000000013) (0.011026009999999989) (0.010991942500000004) (0.011424849000000015) (0.011035158499999989) (0.011103753499999994) (0.011028749500000004) (0.010970857000000014) (0.01146217099999998) (0.011003484000000008) (0.011058729500000003) (0.010872899499999991) (0.011008136499999988) (0.011011402500000003) (0.011318977500000008) (0.011022698999999983) (0.011001516000000003) (0.010991084999999998) (0.011176290000000005) (0.011034983499999998) (0.011011580000000007) (0.011216400999999987) (0.011118355499999996) (0.011373930500000004) (0.011078955500000015) (0.011068917999999997) (0.010923492500000007) (0.010801360999999995) (0.010736462500000002) (0.01092423649999999) (0.011043508000000007) (0.010967907000000013) (0.010850424999999997) (0.010615223500000007) (0.011001403000000007) (0.010683456499999994) (0.011006407499999996) (0.010539368000000007) (0.010771808499999994) (0.010624444499999997) (0.010766509499999993) (0.010552743500000003) (0.01065358999999999) (0.0107795995) (0.010783328999999994) (0.010827309999999993) (0.010645295499999999) (0.010629742000000011) (0.010891305500000004) (0.010671042999999991) (0.010778635999999994) (0.010678536500000002) (0.010766454000000009) (0.01079247300000001) (0.0106585275) (0.010840580500000002) (0.010745337000000008) (0.010854037999999996) (0.010942938500000013) (0.010979771) (0.01127227900000001) (0.010998427499999991) (0.011106389499999994) (0.010819352000000004) (0.011031480999999996) (0.011094853000000016) (0.011189320999999988) (0.011503966500000004) (0.011372456000000003) (0.010990289) (0.01092563449999999) (0.011054023999999996) (0.011239971500000001) (0.011095676000000013) (0.010886866000000009) (0.010974642499999993) (0.010926056999999989) (0.011102162499999998) (0.010887294499999992) (0.011263890999999998) (0.010963480999999997) (0.011067324000000003) (0.011078373000000002) (0.010844853499999987) (0.011355957) (0.01089626299999999) (0.010983908499999986) (0.010902737999999995) (0.01105868950000001) (0.010950379499999996) (0.010679889499999998) (0.010788600999999995) (0.01088044349999999) (0.010973563499999991) (0.010507607500000016) (0.010569515500000015) (0.01071380050000001) (0.010674529000000002) (0.010725921499999999) (0.010869676499999995) (0.01086246149999999) (0.011087565999999993) (0.010727689999999998) (0.010808408000000005) (0.010869625000000008) (0.010839344) (0.010731436999999996) (0.010690752999999997) (0.010450824500000011) (0.010828457499999986) (0.010984203999999997) (0.010727524500000002) (0.010829806499999997) (0.010568547499999997) (0.01097329000000001) (0.010818036499999989) (0.01081641550000001) (0.011038446999999993) (0.010756868000000003) (0.010892273000000008) (0.010646816000000003) (0.010974738499999998) (0.010985116500000003) (0.011160186000000002) (0.010785352499999998) (0.010844867500000008) (0.011132828499999997) (0.01120112600000002) (0.011084235999999997) (0.011152350500000005) (0.011278772999999992) (0.011290874999999992) (0.011178602999999995) (0.0111848695) (0.011124751499999988) (0.011144841500000002) (0.011302349499999989) (0.011339585499999999) (0.01117541100000001) (0.01097220850000001) (0.011354376) (0.010998003499999992) (0.010998571500000012) (0.01102700899999999) (0.010831699) (0.011016976499999984) (0.011067351500000003) (0.011107270000000002) (0.011275780499999999) (0.011174055500000016) (0.011055793499999994) (0.011019948000000016) (0.011050564999999998) (0.011192868499999994) (0.010907466000000005) (0.01089313900000001) (0.01084081299999999) (0.010724807500000003) (0.010793938000000003) (0.010647779999999996) (0.010709393999999997) (0.010703628999999992) (0.01095115649999999) (0.010707260999999996) (0.010956128000000023) (0.010919560999999994) (0.010841219999999999) (0.01073877600000002) (0.010752771000000008) (0.01079479350000001) (0.010519993000000005) (0.010728272999999997) (0.010805633499999995) (0.01061285499999999) (0.010578974500000005) (0.010936360499999992) (0.010594171999999999) (0.01074621549999999) (0.011981643999999986) (0.01106412700000002) (0.010808473499999999) (0.0108782615) (0.010706908499999987) (0.010893095000000005) (0.01068864450000001) (0.011036382999999997) (0.01097361749999999) (0.011097636500000008) (0.011059155500000015) (0.0111132075) (0.011172907999999995) (0.0111262845) (0.01115960299999999) (0.010967944000000007) (0.011364965000000005) (0.011138641500000004) (0.011251703500000002) (0.010952586) (0.011212854499999994) (0.011112241999999994) (0.011283121999999979) (0.011056394999999997) (0.011137352500000017) (0.011198582999999998) (0.011011768499999991) (0.010901130999999994) (0.011397288000000005) (0.011207163500000006) (0.010892511999999993) (0.011038227000000012) (0.011113448499999998) (0.011026736999999995) (0.01115738799999999) (0.011115098000000004) (0.01109239649999999) (0.011045742499999997) (0.011185275999999994) (0.010966390999999978) (0.010846063000000003) (0.010973429500000006) (0.010784626500000019) (0.010717031500000002) (0.010686402999999997) (0.010833801500000004) (0.010623149000000012) (0.010611994499999985) (0.010805127999999997) (0.010744912999999981) (0.010826633000000002) (0.011001207499999999) (0.011014627999999999) (0.01081979999999999) (0.010827653000000007) (0.010831624999999998) (0.010733052500000007) (0.010763400000000006) (0.010909409499999995) (0.010855665) (0.010763136999999992) (0.010608153000000009) (0.010654898999999995) (0.010863540500000005) (0.010744813000000006) (0.010817088500000002) (0.011078254499999995) (0.011096693000000005) (0.011052304499999999) (0.010688199500000009) (0.011064705999999994) (0.010888798500000019) (0.011237795000000009) (0.011097939000000001) (0.010995443499999993) (0.011095089500000002) (0.011009107500000004) (0.011005128500000003) (0.010848102499999984) (0.01137568550000001) (0.011040356500000001) (0.011012642500000017) (0.011043629500000013) (0.011313695499999998) (0.011117317000000015) (0.010939719) (0.011202551499999991) (0.011275497999999995) (0.010931607499999996) (0.011333677999999986) (0.010964375500000012) (0.010950083999999999) (0.010990118499999993) (0.011139660499999982) (0.010963556) (0.010961812000000001) (0.011110861) (0.011185824999999996) (0.011121918999999994) (0.010904477499999995) (0.01135876899999999) (0.011436999499999989) (0.010999280999999986) (0.011114573500000016) (0.010890813) (0.010446804500000004) (0.011254171999999993) (0.010654099500000014) (0.010759564500000013) (0.010994840999999991) (0.010682048999999999) (0.01075641699999999) (0.011006614500000012) (0.0105758455) (0.010974474999999997) (0.01064681599999999) (0.010700833499999993) (0.010803090500000001) (0.010710721500000006) (0.01070401650000001) (0.010942033000000004) (0.01050585050000001) (0.01076630200000002) (0.0106460585) (0.010675609500000002) (0.010727131) (0.01069660800000001) (0.010635068500000011) (0.010761138000000003) (0.010750858500000002) (0.010554156999999995) (0.010944329499999975) (0.010827912499999995) (0.010666644499999989) (0.010774916500000009) (0.011294605500000013) (0.010977737500000001) (0.011012236500000008) (0.011214873) (0.010904954499999994) (0.011035543000000009) (0.010922048500000017) (0.011003587999999995) (0.011243135000000001) (0.0111283425) (0.01111702349999999) (0.01186084250000001) (0.011208152499999999) (0.011139322499999993) (0.011019808500000006) (0.01104620449999999) (0.011205104499999993) (0.011272253999999995) (0.010943740000000007) (0.010835056499999995) (0.011126472999999998) (0.011160253000000009) (0.011308090999999992) (0.011101031000000011) (0.010999392499999996) (0.01105121600000003) (0.011025979000000005) (0.011147981000000001) (0.011100685000000027) (0.011275034000000017) (0.011092345500000017) (0.011221768500000007) (0.011122299999999988) (0.010820341999999997) (0.010524602500000008) (0.011009415500000008) (0.010651975500000008) (0.010705529000000005) (0.010699498000000002) (0.010615816499999986) (0.011033837500000004) (0.010747028999999991) (0.010634331999999982) (0.010993525500000004) (0.010642671999999992) (0.011023227499999996) (0.010796585499999997) (0.011174429999999985) (0.010738108999999996) (0.01068806750000001) (0.010950822499999999) (0.010629894500000014) (0.010651341999999994) (0.010506584) (0.010658496500000003) (0.010858880500000015) (0.010956893999999981) (0.010905295500000009) (0.010791116000000003) (0.010692834499999998) (0.01067418349999999) (0.010796511000000009) (0.010716223999999996) (0.010705356499999999) (0.01073760850000001) (0.010860189499999992) (0.010718357499999998) (0.011023418499999993) (0.010829480500000016) (0.011362722499999992) (0.011023735500000006) (0.011240547000000004) (0.0110668835) (0.011165573499999998) (0.011132959500000011) (0.011018995000000004) (0.011066551999999993) (0.011121764999999992) (0.010984843499999994) (0.011207437999999986) (0.011048571000000007) (0.010853012999999995) (0.011129065499999993) (0.010949308000000005) (0.0110839155) (0.01103787249999999) (0.010833810499999999) (0.010925335499999994) (0.011167237999999982) (0.011094176999999983) (0.011126715999999995) (0.011101512000000008) (0.0111801775) (0.010903688500000008) (0.011358700999999999) (0.011129771999999996) (0.011001813999999971) (0.010832484000000003) (0.010658762500000002) (0.010776171000000015) (0.01067899450000001) (0.010846406000000003) (0.010652098999999998) (0.010982125500000009) (0.01084204350000001) (0.010900571499999998) (0.010702187000000002) (0.010799500000000004) (0.010699101000000003) (0.010952261500000005) (0.010723398999999995) (0.0109130895) (0.010777454500000005) (0.010625584499999993) (0.010910561500000013) (0.010635428500000002) (0.010720476000000007) (0.01084813250000001) (0.010883024499999991) (0.010872755000000012) (0.010764798499999992) (0.010655485500000006) (0.010714603500000003) (0.010655291500000025) (0.010874218000000005) (0.010876170500000004) (0.010719417999999994) (0.01077164949999998) (0.010928350000000003) (0.011283809000000006) (0.011124395499999995) (0.011052581999999991) (0.011256318000000001) (0.010897671999999997) (0.011005826499999996) (0.010979539999999996) (0.011699031499999998) (0.01125859500000001) (0.01106162649999999) (0.011355171999999997) (0.011119642000000013) (0.010933278000000005) (0.011081905999999989) (0.01145351750000001) (0.011023715500000003) (0.010961717499999996) (0.010876819999999995) (0.010985212000000022) (0.010840440499999979) (0.010964698999999994) (0.011016986000000006) (0.0110665925) (0.011077215500000015) (0.010985601999999983) (0.011218517499999997) (0.011166058000000006) (0.011285685500000003) (0.011124131500000009) (0.010954189500000003) (0.010996745500000016) (0.012716225499999997) (0.010815953000000017) (0.01081618799999999) (0.010623541) (0.010805171000000002) (0.011248100499999997) (0.010763395000000009) (0.010771848) (0.010814718500000015) (0.01078419999999998) (0.010813858999999995) (0.010815414500000009) (0.010724894500000012) (0.011093401500000002) (0.010755720999999996) (0.01074496350000001) (0.01086785999999998) (0.010870389499999994) (0.010830261999999993) (0.010797947499999988) (0.010534884999999994) (0.010698204499999989) (0.010979580000000003) (0.01107860649999999) (0.010572763499999999) (0.010881407000000023) (0.010857526999999992) (0.010758524500000005) (0.010652721000000018) (0.010774809499999982) (0.010901316500000022) (0.010947411000000004) (0.010909033499999998) (0.011069358500000001) (0.011135685500000006) (0.011202100500000006) (0.010869478000000016) (0.01092781850000002) (0.011123547499999997) (0.011160712000000003) (0.011148126000000008) (0.01124062200000002) (0.011432040500000004) (0.0110710755) (0.011108430000000002) (0.010951589500000011) (0.011104355499999996) (0.011289339499999995) (0.011136999499999994) (0.011354615999999998) (0.010927964000000012) (0.010957526500000009) (0.011377783500000002) (0.010973350500000006) (0.011152847500000007) (0.011320892999999999) (0.011031149500000018) (0.011100312000000001) (0.01109202199999998) (0.011386970499999996) (0.011132903500000013) (0.010967413500000009) (0.011093428999999988) (0.011392954999999982) (0.011017362499999989) (0.010764269499999993) (0.010598582499999995) (0.01054032499999999) (0.01040764050000001) (0.010643279500000005) (0.011087479000000011) (0.010727464000000006) (0.0106643035) (0.010731650999999995) (0.010794586499999995) (0.010620350000000015) (0.010877735000000013) (0.010658903500000011) (0.010808961000000006) (0.01078655499999999) (0.01092388200000001) (0.010712846499999998) (0.010735557499999993) (0.01055253049999999) (0.010796623500000005) (0.010516560499999994) (0.010659757500000006) (0.010800725499999997) (0.010905298999999993) (0.010871496000000008) (0.01094527499999999) (0.010695988500000003) (0.0108757025) (0.010984479499999991) (0.010695780500000002) (0.010767855000000007) (0.010745048500000007) (0.0110736045) (0.010939757999999994) (0.011113132499999998) (0.011072362500000002) (0.010998758999999997) (0.011134568000000011) (0.011165732999999983) (0.010965214999999987) (0.010940763500000006) (0.011031064999999993) (0.011174087499999999) (0.011648799000000001) (0.011103426) (0.011080395999999992) (0.011114838500000002) (0.01110042949999998) (0.011223535999999992) (0.011181336) (0.010872534000000003) (0.010928348000000004) (0.010779212499999996) (0.011046186) (0.010856397000000004) (0.01084905700000001) (0.011076289000000003) (0.011020772500000012) (0.01105324399999999) (0.011017180000000001) (0.010934387500000003) (0.010900529000000006) (0.010861150999999986) (0.010958595000000002) (0.010607232499999994) (0.010790393999999995) (0.01064235849999999) (0.010739600999999988) (0.010567356500000014) (0.01053358) (0.0106358795) (0.010860579499999981) (0.011052758499999996) (0.010703137499999987) (0.010598036500000005) (0.010957783500000012) (0.010620156000000006) (0.01084729949999999) (0.010711831500000005) (0.01053377250000001) (0.010805720000000005) (0.010799671999999982) (0.010788693999999988) (0.010814584000000002) (0.010438086) (0.011170246500000008) (0.010755120999999992) (0.010745565999999998) (0.010760775000000014) (0.011009026500000005) (0.0106602155) (0.010638347000000006) (0.010781397500000012) (0.011072443000000001) (0.010882938999999994) (0.01070168349999999) (0.010877055499999996) (0.011350298499999995) (0.011247978499999992) (0.011510309499999996) (0.011262448499999994) (0.01113842150000001) (0.010922568000000007) (0.0110741075) (0.0109426985) (0.011385080000000006) (0.011068110999999992) (0.011215947500000004) (0.01116333700000001) (0.010988518000000003) (0.011149155000000008) (0.010993124499999993) (0.010993290999999988) (0.011008177999999993) (0.010968902500000016) (0.011013380500000003) (0.010995374500000002) (0.011161785999999993) (0.0108960335) (0.010916135999999993) (0.010895918000000004) (0.011065865000000008) (0.011208680499999998) (0.011002378500000007) (0.010999767000000008) (0.011187849499999986) (0.0111727925) (0.011180725000000002) (0.010648505000000003) (0.01071995000000002) (0.010659388500000005) (0.010529818499999996) (0.010895008499999997) (0.010855229499999994) (0.010637138500000004) (0.010760728999999997) (0.010707059500000005) (0.010801115000000014) (0.011009292500000004) (0.010801426499999989) (0.010890271999999993) (0.011123996000000011) (0.010726282500000003) (0.010885698000000013) (0.010621858500000012) (0.010627196500000005) (0.010859651499999998) (0.010654561000000007) (0.010553179999999995) (0.010633844000000003) (0.010502318499999996) (0.010543290999999996) (0.010824490500000006) (0.010920150000000003) (0.010659253000000007) (0.010538731499999995) (0.010687576500000004) (0.010825332999999993) (0.010679544499999999) (0.010618619999999995) (0.011164995499999983) (0.011165896499999994) (0.010897258499999993) (0.011101189499999997) (0.010896781500000008) (0.010826912999999994) (0.010923721999999997) (0.011043149499999988) (0.011028727500000016) (0.011036909499999997) (0.011077049500000005) (0.010966002000000002) (0.011127597499999989) (0.011439316000000005) (0.010978483000000011) (0.011042996) (0.011116032999999997) (0.01109537599999999) (0.011231869500000005) (0.011303105500000007) (0.0110656965) (0.011377427999999995) (0.010976395500000014) (0.010993768000000001) (0.011303871499999993) (0.011268630000000016) (0.011008310000000007) (0.011368224999999996) (0.011076623500000007) (0.010974262499999998) (0.011223825999999992) (0.011078760000000007) (0.010894732000000004) (0.010846751999999987) (0.01061947399999999) (0.010879927999999997) (0.010780061499999993) (0.010696112000000008) (0.010793190499999994) (0.010595941999999983) (0.010823770999999996) (0.010874641000000004) (0.010840931000000012) (0.010914220500000002) (0.010762819500000007) (0.010702286000000005) (0.010799212000000002) (0.010878084999999996) (0.010757248999999997) (0.01077984650000001) (0.010457240499999992) (0.01054880250000001) (0.010907841000000001) (0.010567897000000007) (0.010940713500000004) (0.010754380000000008) (0.011020682000000004) (0.010874840499999996) (0.010927585500000003) (0.01071612050000001) (0.01083886249999999) (0.010698672499999992) (0.010914444999999995) (0.010845280999999984) (0.010891781500000003) (0.010960184500000011) (0.010930523499999997) (0.011043483500000006) (0.011065337999999994) (0.011019804999999994) (0.011137374999999991) (0.011079845000000005) (0.011003105) (0.011102480000000012) (0.011171793499999999) (0.011276109000000006) (0.011202728499999995) (0.010912936499999998) (0.011118299500000012) (0.011454773500000001) (0.010988604500000013) (0.011036212000000004) (0.011102812500000003) (0.010830321000000004) (0.0109522445) (0.010845926500000005) (0.010966673499999996) (0.011468744000000003) (0.011033095000000007) (0.011086615000000008) (0.010981768500000003) (0.0111000505) (0.011461780500000004) (0.010972914500000014) (0.011388571500000014) (0.010955989999999999) (0.010768511000000008) (0.011017033999999995) (0.010536233000000006) (0.010678004500000005) (0.010639138500000006) (0.010711116000000007) (0.010533841499999988) (0.010716032) (0.010759991499999996) (0.010778248000000004) (0.010752984000000007) (0.010833601999999998) (0.010909591999999996) (0.010682070999999987) (0.010857703499999996) (0.010752976499999997) (0.010748769000000005) (0.010816377000000002) (0.010686026999999987) (0.010908621499999993) (0.010920172500000005) (0.010973883500000003) (0.011009794500000003) (0.010750773500000005) (0.0109561465) (0.010672899999999999) (0.010703758000000008) (0.010961789999999999) (0.010726876499999996) (0.010716432499999984) (0.010909189) (0.01099096699999999) (0.010989654000000001) (0.01096379900000001) (0.010947812000000001) (0.011076032) (0.01083922050000001) (0.010827942999999993) (0.010984042500000013) (0.011132680500000006) (0.011046164000000011) (0.011103138499999998) (0.011071738500000011) (0.01099191749999999) (0.010855988999999996) (0.0109586245) (0.011131972500000004) (0.011086721499999994) (0.011023429000000001) (0.010856773) (0.011102665999999997) (0.010889311499999998) (0.010908689) (0.011277341999999982) (0.010955869999999993) (0.0109103235) (0.011267759000000016) (0.011227851999999997) (0.011077950000000003) (0.01117805249999998) (0.011099994500000002) (0.011144369000000001) (0.010904814499999999) (0.010938708499999991) (0.011040812000000011) (0.010682811500000014) (0.010562205000000005) (0.010649441499999995) (0.010654041500000003) (0.010748871999999993) (0.010655772499999994) (0.010648617999999999) (0.010759883500000011) (0.0107007395) (0.010722153999999984) (0.010665007500000004) (0.010714033499999998) (0.010997080999999992) (0.010644767999999999) (0.010639245999999991) (0.01075206699999999) (0.010586481999999994) (0.010711137499999995) (0.010739204500000002) (0.0106236215) (0.010777354500000003) (0.010681653) (0.010537978000000003) (0.01128671399999999) (0.011485320499999993) (0.01076399800000001) (0.011059795000000011) (0.010862467) (0.011260197999999999) (0.010853042499999993) (0.010798774499999997) (0.010912296999999987) (0.010891101000000014) (0.011109694000000003) (0.011054264499999994) (0.010926971999999993) (0.010968563999999986) (0.011283932999999996) (0.011021529000000002) (0.011056885500000002) (0.011107671) (0.011033428999999997) (0.01119453949999999) (0.011059043500000018) (0.011215095500000008) (0.011090454999999999) (0.010973824999999993) (0.010844880000000015) (0.011420491000000005) (0.010981644999999984) (0.0110909265) (0.011239179500000002) (0.011133035999999999) (0.011115499499999987) (0.011036589999999999) (0.011121340000000007) (0.01109570650000001) (0.011173661000000001) (0.010971419499999996) (0.010982310999999995) (0.011099457500000007) (0.011076877999999998) (0.01108001900000001) (0.010836390000000001) (0.010776666500000004) (0.010797605000000016) (0.010892725500000006) (0.010800960999999998) (0.010709383999999988) (0.010648521500000008) (0.010637970999999996) (0.010979673499999995) (0.010646682000000005) (0.01060345750000001) (0.010860096999999985) (0.01101608350000001) (0.010734424500000006) (0.010761997999999995) (0.010843362499999995) (0.010825427499999998) (0.0106502505) (0.010862994) (0.01092915600000001) (0.0107986895) (0.010944968999999999) (0.010907923000000014) (0.01062580199999999) (0.010862143500000004) (0.010755691500000011) (0.010840476000000002) (0.011197403499999994) (0.010744506000000001) (0.01086891899999999) (0.0108127175) (0.010882622000000008) (0.010765576999999998) (0.010743822) (0.010985796500000006) (0.011143503999999999) (0.011228692499999998) (0.011221915000000013) (0.010917487500000003) (0.010973308000000001) (0.011058245499999994) (0.0109992525) (0.0111371745) (0.01095103800000001) (0.011010066499999999) (0.011204038000000013) (0.01091159500000001) (0.011241305999999993) (0.011212529000000013) (0.011073689499999997) (0.011053640500000003) (0.011034082) (0.011215898000000016) (0.011242707000000005) (0.010856948000000005) (0.011051298000000001) (0.011141356499999991) (0.011114882000000006) (0.011099315000000012) (0.01090875849999999) (0.011224424999999996) (0.01095454350000001) (0.011096511500000003) (0.01105755750000001) (0.010687974500000003) (0.01063124700000001) (0.010732958500000014) (0.01059375500000001) (0.010742773499999997) (0.010705251500000013) (0.01084147399999999) (0.010635397000000005) (0.010821563000000006) (0.010622145) (0.010594701999999998) (0.010700764999999987) (0.010962491000000005) (0.010763749000000003) (0.010893568500000006) (0.010666768000000007) (0.010634486999999998) (0.010815103499999992) (0.0106896665) (0.010675046999999993) (0.010709430500000006) (0.0108790785) (0.010860105000000009) (0.010819155499999997) (0.010854011499999996) (0.010720787500000009) (0.01070159250000001) (0.010777890499999998) (0.01070209300000001) (0.011031396499999999) (0.010866992999999991) (0.011062761500000004) (0.011140396499999997) (0.010980364000000006) (0.010843084500000003) (0.011170573000000003) (0.011148182500000006) (0.010988614000000008) (0.010907733500000003) (0.011123766000000007) (0.011117949999999988) (0.01112905950000001) (0.011026976000000008) (0.011009678000000009) (0.011005658000000001) (0.011112557500000009) (0.011181621500000002) (0.011074344) (0.011056772000000006) (0.011095828000000016) (0.010985481499999991) (0.011056163499999994) (0.0111192445) (0.010929916999999983) (0.011093166000000002) (0.011288098499999996) (0.011270998500000004) (0.011221013500000016) (0.010983860499999998) (0.010991123500000005) (0.010939293000000003) (0.01112560650000001) (0.011215115999999983) (0.0110550425) (0.010605184500000003) (0.0105690975) (0.010800524499999992) (0.010755447499999987) (0.010889545) (0.010718641000000001) (0.010996889999999995) (0.010695410000000002) (0.0107570575) (0.010998991000000014) (0.010869782500000008) (0.010540088500000003) (0.010709253000000002) (0.010697437000000004) (0.011091298000000013) (0.010718084000000017) (0.01054764300000001) (0.01086442) (0.010672732000000004) (0.010664370000000006) (0.010832596) (0.010720982000000004) (0.010518958499999995) (0.01087777149999998) (0.010581941499999997) (0.010620756999999995) (0.010900492500000011) (0.010726620499999992) (0.010925802499999998) (0.010888501999999994) (0.010948501999999999) (0.011226123000000005) (0.011043186499999996) (0.011235357500000001) (0.010812503000000001) (0.01094336550000001) (0.010938477500000002) (0.011371481000000003) (0.010907289) (0.011079713000000005) (0.01101598849999999) (0.011158525499999988) (0.010946940500000002) (0.0110774545) (0.011261503500000006) (0.011136303500000014) (0.011103702999999993) (0.011247089999999987) (0.011111742000000008) (0.011204043999999996) (0.0110178145) (0.011038525000000007) (0.010941416500000009) (0.010881736500000003) (0.010827021499999992) (0.010939014999999996) (0.011103237000000002) (0.010991327999999995) (0.0111527565) (0.010999458500000003) (0.010982129500000007) (0.010985226) (0.011172309499999991) (0.011307132499999997) (0.010684037499999993) (0.010776413499999998) (0.010979813000000005) (0.010835716500000009) (0.010758714500000002) (0.010450900999999999) (0.010788352000000015) (0.011210352000000007) (0.010807821000000009) (0.011014590500000004) (0.01085235250000001) (0.010735110999999992) (0.010768399499999984) (0.010648048999999993) (0.010765530999999995) (0.010793925499999996) (0.010742161) (0.011010251999999998) (0.010700013999999994) (0.010649883999999998) (0.010905889500000002) (0.010475565000000006) (0.01067844250000001) (0.010752669000000006) (0.010633344499999989) (0.010665621499999986) (0.010763821499999993) (0.010783572500000019) (0.010994051500000004) (0.010609829000000001) (0.010845467999999997) (0.010957609000000007) (0.011194830500000003) (0.010941640500000002) (0.011109579500000008) (0.011339619999999995) (0.011285974000000018) (0.011231104500000005) (0.011050149000000009) (0.010957438) (0.011047448500000001) (0.011103416500000018) (0.01116186050000001) (0.011096756499999999) (0.011111880000000005) (0.011317095999999999) (0.011161847000000003) (0.011168617999999991) (0.010771587499999999) (0.01119872999999999) (0.011077165) (0.01116194299999998) (0.011053906500000002) (0.010968042499999997) (0.01110473749999999) (0.011196809500000002) (0.011097768999999993) (0.011198046000000003) (0.010896746499999985) (0.011148076000000007) (0.011212920000000015) (0.01142567550000001) (0.0115819365) (0.012068506999999992) (0.0106321905) (0.01075121200000001) (0.010769340000000002) (0.01078838650000001) (0.010560192999999996) (0.010690753999999997) (0.010708239499999994) (0.010735827500000017) (0.010716887000000008) (0.010673998000000004) (0.010806532000000008) (0.010744557000000002) (0.011076928500000013) (0.010903947000000011) (0.01098950750000001) (0.010895396500000001) (0.010758240000000002) (0.010725112000000009) (0.011184330499999992) (0.010980563999999984) (0.010859215000000005) (0.010598991999999988) (0.010542848000000007) (0.010660197499999996) (0.010754654000000002) (0.010715753500000008) (0.010913748999999986) (0.010824225500000006) (0.010819629999999997) (0.010929236999999994) (0.010658752500000007) (0.0108279295) (0.011023593499999998) (0.011119848500000001) (0.011215458000000011) (0.0110573365) (0.011224106999999997) (0.011259200499999997) (0.010915193000000004) (0.0111708945) (0.011100110499999996) (0.011221432500000017) (0.010988678500000001) (0.011046013000000007) (0.01102248800000001) (0.0113027785) (0.011185382000000008) (0.011068697500000002) (0.011120130500000006) (0.01100544249999999) (0.011072274500000007) (0.011076002500000001) (0.010953258000000007) (0.0110807245) (0.0111781445) (0.010988778500000004) (0.011020295999999999) (0.010953715499999989) (0.011139042500000002) (0.011038950000000006) (0.01122140349999999) (0.011343171999999999) (0.011278652499999986) (0.011265163499999994) (0.010777439) (0.010798788500000003) (0.010925757999999994) (0.01063499300000001) (0.010932905499999993) (0.010888795500000006) (0.010704589000000014) (0.010892321999999996) (0.010814446000000005) (0.011052703499999997) (0.01094634600000001) (0.010806253000000002) (0.010760986500000014) (0.010969456500000016) (0.010776312499999996) (0.010818952499999993) (0.01066473250000001) (0.010577353000000012) (0.010630840500000002) (0.010706143500000001) (0.010744780999999995) (0.010715568000000009) (0.010761329000000014) (0.010762644499999988) (0.010879886500000005) (0.010608817999999992) (0.010961910500000005) (0.010759849500000015) (0.01082195200000001) (0.010821468000000015) (0.010932825500000007) (0.010892986500000007) (0.010946157499999998) (0.011075744999999998) (0.010973496999999999) (0.011168652500000001) (0.011058583499999997) (0.011003200500000018) (0.010958239499999994) (0.010935855000000008) (0.011337472000000001) (0.011040206499999997) (0.011186209999999988) (0.011199837500000018) (0.011931244000000008) (0.01092898049999999) (0.01101756000000001) (0.011058170000000006) (0.011201718500000013) (0.010960377000000007) (0.0110519315) (0.011195830000000004) (0.010945009999999991) (0.010977960500000009) (0.011010559000000003) (0.011033347999999985) (0.011135338999999994) (0.011060437000000006) (0.01114321950000001) (0.0113438035) (0.010909910000000009) (0.010944685999999995) (0.011025379500000002) (0.010935182000000016) (0.010916369500000009) (0.010524687500000005) (0.010594224) (0.010672064499999995) (0.010591001000000017) (0.010461730000000002) (0.010927332500000012) (0.010594322500000003) (0.010926215500000003) (0.010829812500000008) (0.010659578000000003) (0.010864499) (0.010841136499999987) (0.010821701000000003) (0.010983810999999996) (0.010659362500000005) (0.010984658000000008) (0.010567114500000002) (0.01064610349999999) (0.01071403700000001) (0.0106136025) (0.010795021500000002) (0.010779515999999989) (0.01075398200000001) (0.010814518999999995) (0.010849617500000006) (0.010839681500000004) (0.010592884499999997) (0.010765522999999999) (0.010806454999999993) (0.010725232499999987) (0.010869943000000007) (0.010765813499999999) (0.010923716999999986) (0.011067690500000005) (0.011432675500000003) (0.01086832950000001) (0.010970113000000017) (0.011330688999999991) (0.011014252500000002) (0.010950775499999996) (0.011253515000000006) (0.011003917500000016) (0.010991118500000022) (0.011047051999999988) (0.010801455500000001) (0.01113928900000001) (0.011027952500000007) (0.010913207999999994) (0.011121106999999991) (0.011186242000000013) (0.011400766000000007) (0.010995545999999995) (0.010921394999999987) (0.011027240999999993) (0.01112906100000001) (0.011147053000000004) (0.011306093499999989) (0.011166663500000007) (0.010976028999999998) (0.0110032865) (0.011152549500000011) (0.011356709500000006) (0.011143511999999994) (0.010727606) (0.010589974500000002) (0.011041924500000008) (0.010508098499999993) (0.010509715500000003) (0.010959256) (0.010600294499999996) (0.010645716999999999) (0.01074480350000001) (0.010840744499999985) (0.010597424999999994) (0.011000417999999998) (0.010709471000000012) (0.010710432000000006) (0.010965970499999991) (0.0106958095) (0.010593772000000001) (0.010973760500000013) (0.01058489700000001) (0.010689805999999996) (0.010672514000000008) (0.010600288499999999) (0.012074345499999986) (0.010726444500000001) (0.011090041500000009) (0.010899592999999999) (0.010759847499999989) (0.01105882200000001) (0.010884153999999993) (0.010744122999999994) (0.010813716500000015) (0.010738017000000002) (0.011195436499999989) (0.011230197499999997) (0.010811701500000007) (0.011016168499999993) (0.010953785000000008) (0.011589401000000013) (0.011158309000000005) (0.011305823499999992) (0.011178922500000008) (0.011030709500000013) (0.010957722000000003) (0.010996491999999997) (0.010945337) (0.011268181000000016) (0.011274528500000006) (0.011546859500000006) (0.010817483500000002) (0.010908426500000012) (0.011021530000000002) (0.011162225500000011) (0.011100879499999994) (0.010877339500000013) (0.011149330999999998) (0.011106593499999998) (0.011293095500000017) (0.011349023) (0.011200296000000012) (0.0110860225) (0.010900497500000009) (0.011524251) (0.011135249500000013) (0.011535140000000013) (0.0107886425) (0.01082607449999999) (0.010756014500000008) (0.011028886500000001) (0.013671656500000004) (0.010504101500000015) (0.010542833500000001) (0.010797759500000004) (0.010797672000000008) (0.010846862999999998) (0.010918663500000009) (0.011114367000000014) (0.010948669500000008) (0.010669903499999994) (0.010809963499999992) (0.010840750499999996) (0.010809092500000006) (0.010823501) (0.010747719500000003) (0.010921024500000015) (0.010691081500000005) (0.010953775499999999) (0.010606524999999992) (0.010701969499999991) (0.010768103499999987) (0.010909180000000004) (0.01072969900000001) (0.010958619000000003) (0.011298710500000003) (0.010723805500000003) (0.010981072499999994) (0.010807302000000005) (0.01100868499999999) (0.011136885499999985) (0.011104521499999992) (0.0109315205) (0.010948952999999997) (0.011018558499999997) (0.011172420499999988) (0.011285713500000003) (0.011224920999999999) (0.0110045015) (0.010779206) (0.01112224399999999) (0.01103698950000001) (0.011122105000000007) (0.010974448500000011) (0.0112882745) (0.01103560649999999) (0.011337940000000005) (0.010916656999999996) (0.010768223499999993) (0.011073563500000008) (0.010972348499999993) (0.01113427950000001) (0.011098625999999986) (0.011091598000000008) (0.011186181500000003) (0.011200887500000006) (0.01096862400000001) (0.010839940500000006) (0.011075324499999997) (0.011077592000000025) (0.011192185500000007) (0.010601199999999991) (0.010853744999999998) (0.010986149) (0.010593134500000004) (0.010857612500000002) (0.010591588000000013) (0.010829544499999996) (0.010753699999999991) (0.010792177500000014) (0.010870846000000003) (0.010701996500000005) (0.010597806000000001) (0.011097947499999997) (0.010734315999999994) (0.010655292499999997) (0.010980410499999982) (0.010559592499999992) (0.010668263999999997) (0.010717441500000008) (0.010696720999999992) (0.010572603) (0.010754889000000004) (0.01096119050000001) (0.010674921500000017) (0.010856354000000012) (0.011164269000000004) (0.010742185500000001) (0.010870021499999993) (0.0108398475) (0.010876628) (0.011088671000000008) (0.010718855) (0.011043795999999995) (0.011188056000000016) (0.011073117500000007) (0.010870976000000004) (0.011047477) (0.010860058000000006) (0.01110391849999999) (0.011233131500000007) (0.011305056499999994) (0.011252789) (0.010962969500000003) (0.010920333500000004) (0.011214466999999992) (0.011048692500000012) (0.011061417000000004) (0.011162873500000003) (0.010840742) (0.011137272500000003) (0.01097302999999998) (0.011192685500000008) (0.011185546500000004) (0.011159455500000012) (0.010923711000000016) (0.011004852999999995) (0.011143441000000004) (0.011213474999999987) (0.01149124750000001) (0.011386423999999992) (0.011139250000000017) (0.011081570999999998) (0.011045423499999985) (0.011166019499999999) (0.010638617999999989) (0.010629884500000006) (0.010598495) (0.010566921500000007) (0.010745075500000006) (0.010719883499999985) (0.01082051349999999) (0.010497535499999988) (0.01101957299999999) (0.010718140000000001) (0.010735968500000012) (0.010615276000000007) (0.010773595999999996) (0.010509680000000007) (0.010798805500000008) (0.010903041000000002) (0.01070695649999999) (0.010587599999999989) (0.01059539150000001) (0.010679411) (0.010622447500000007) (0.010861372499999994) (0.010602181000000002) (0.010775470499999995) (0.010964698000000009) (0.010858866499999995) (0.010575018500000019) (0.010728157500000002) (0.010727489000000007) (0.0106441595) (0.010936059999999997) (0.010814119999999983) (0.010897996000000007) (0.011101348999999996) (0.010855978499999988) (0.010912605999999991) (0.010870339000000007) (0.010980909999999997) (0.011199927999999984) (0.011041399500000007) (0.0109734145) (0.011118863000000007) (0.010999008500000004) (0.011111930000000006) (0.0112922035) (0.011243167000000012) (0.011120729999999995) (0.0110778495) (0.011028318499999995) (0.011070604000000012) (0.010927179499999995) (0.011176493999999995) (0.01097316999999999) (0.011421359000000006) (0.01079664150000001) (0.011049143000000011) (0.0109977235) (0.011355156500000005) (0.011378082499999997) (0.011336380500000007) (0.011147880999999984) (0.011285905999999998) (0.011054152500000011) (0.011065347499999989) (0.010797247999999995) (0.010588171000000007) (0.010675030500000002) (0.010827018500000007) (0.010999783000000013) (0.010773610500000003) (0.010596716000000006) (0.01071174300000001) (0.010892670499999993) (0.010971584999999992) (0.010780293999999996) (0.010881774499999997) (0.010983387999999997) (0.010801979500000003) (0.010994273999999984) (0.010743149000000007) (0.010712747000000009) (0.010519621000000007) (0.010720611500000005) (0.010570416999999999) (0.010848805999999989) (0.010743267) (0.010798225500000008) (0.0105737625) (0.010601201500000004) (0.01064387800000001) (0.010668195499999991) (0.0109142515) (0.010636899499999991) (0.010661036500000012) (0.010901476000000007) (0.011170841999999986) (0.011109797000000005) (0.011037466999999995) (0.010942321000000005) (0.011124147000000001) (0.011384278500000011) (0.011095306) (0.010967682499999992) (0.011308566999999992) (0.011164048999999981) (0.01145110349999999) (0.011196806000000004) (0.011177947999999993) (0.011188321499999987) (0.011351401999999997) (0.011155966500000003) (0.011145708000000004) (0.011004711999999986) (0.010977390999999989) (0.010974788) (0.010931726999999988) (0.01084381899999999) (0.011186718500000012) (0.011082243999999991) (0.011113229500000002) (0.010889005500000007) (0.011273705000000009) (0.011009222499999999) (0.011084712999999996) (0.011076533) (0.011133619000000011) (0.011246715500000004) (0.011361017000000001) (0.01073293900000001) (0.01058982800000001) (0.010845018500000012) (0.010817368999999993) (0.0107927555) (0.010744340000000005) (0.010993148000000008) (0.010998895000000009) (0.010690693500000015) (0.010824645500000007) (0.010711095000000004) (0.010827511500000012) (0.010772898500000003) (0.010782438500000005) (0.01091800150000001) (0.0111212755) (0.010760363000000009) (0.010584982499999993) (0.010848655999999984) (0.010674345500000001) (0.010563174499999994) (0.010990776500000007) (0.010677566) (0.010533772999999996) (0.010767003499999997) (0.010676453999999988) (0.010853169499999996) (0.0108864345) (0.010944817999999995) (0.010983957000000003) (0.01055681) (0.010844959500000001) (0.011077271) (0.010950364000000004) (0.011321299000000007) (0.011239922999999999) (0.010996290500000006) (0.011074802999999994) (0.01149766599999999) (0.010942856500000014) (0.0112967665) (0.01103979799999999) (0.011473794499999995) (0.011284633500000002) (0.011184820499999984) (0.010987802000000005) (0.010981394499999991) (0.011244857999999996) (0.011100983000000009) (0.010874440499999999) (0.011084658999999997) (0.010865443000000002) (0.01127140950000001) (0.010925424000000003) (0.010911973500000019) (0.01101007499999998) (0.010979628000000005) (0.011235918500000011) (0.011194099499999999) (0.0111814145) (0.01100954250000001) (0.011041846000000008) (0.011177695000000001) (0.011019393000000002) (0.010983391999999995) (0.01066718450000001) (0.01061272499999999) (0.010766888000000002) (0.011171607500000014) (0.010782231500000017) (0.010765602500000013) (0.010664114000000002) (0.010824789500000001) (0.010937001000000002) (0.010865403999999995) (0.010795576499999987) (0.010814916999999993) (0.011148853) (0.010758189999999987) (0.010790342499999994) (0.010709365500000012) (0.010832151499999998) (0.010759601000000008) (0.010517724499999992) (0.010852430499999996) (0.010650639000000017) (0.010614428999999995) (0.010583055000000022) (0.010857198999999998) (0.010772476500000003) (0.010752870499999997) (0.01074986) (0.010636649999999984) (0.01096693) (0.010785748500000011) (0.010902626999999998) (0.011030234) (0.010915564000000003) (0.011108578000000008) (0.010973655499999999) (0.011185533499999997) (0.011188591500000011) (0.011017508499999995) (0.010916453000000007) (0.011121683999999993) (0.011119358499999996) (0.010988066000000005) (0.011249310999999998) (0.010966053500000017) (0.011013661999999994) (0.011178875500000005) (0.011010890999999995) (0.010911277000000011) (0.010923707000000005) (0.010920678500000003) (0.011369770500000001) (0.010968990999999997) (0.011028549499999998) (0.0108884925) (0.010898363499999994) (0.011159277500000009) (0.011235525999999982) (0.011185236500000001) (0.011266376000000008) (0.010993628499999991) (0.011254951999999999) (0.011024074000000009) (0.011173125500000006) (0.010552910000000013) (0.010467667000000014) (0.010723208999999997) (0.010679323500000004) (0.01088597799999999) (0.010733022499999995) (0.011158208499999989) (0.0105409635) (0.010634741000000003) (0.010801848000000003) (0.010792247000000005) (0.011025000499999993) (0.01059813150000001) (0.010796666499999996) (0.010734625000000012) (0.010935054999999999) (0.010535769000000014) (0.010795295499999996) (0.010683606499999998) (0.011389483499999992) (0.010634818500000004) (0.01097190599999999) (0.010607879) (0.010759759500000007) (0.010741559499999997) (0.010675071000000008) (0.010717817000000004) (0.010734816999999994) (0.010673756499999992) (0.010735648) (0.010807990999999989) (0.010605036500000012) (0.011138662999999993) (0.011005877499999997) (0.011422858999999994) (0.011011485500000001) (0.010990035999999995) (0.011086687500000011) (0.011053222500000015) (0.01089036900000001) (0.011334851999999992) (0.011058519000000003) (0.011216525500000005) (0.011017898000000012) (0.011049162000000001) (0.011010896000000006) (0.011295049500000001) (0.011128224000000006) (0.01127193) (0.010912248) (0.010939538999999998) (0.010990823999999996) (0.01108369649999999) (0.010930146000000002) (0.011019920499999988) (0.010932453499999994) (0.011841320999999988) (0.011097612000000007) (0.01105632999999999) (0.011090441999999992) (0.011100326000000008) (0.011143831500000007) (0.011413421999999993) (0.011136113000000017) (0.010700443000000004) (0.010911994500000008) (0.010587343500000013) (0.010720232999999996) (0.010737605000000011) (0.010762921500000008) (0.010688698499999996) (0.011050061) (0.010895520000000006) (0.010761700499999999) (0.010984220000000003) (0.010853773999999997) (0.01080500849999999) (0.010776609000000006) (0.011234669000000003) (0.010733251500000013) (0.010750188000000008) (0.010849266999999996) (0.010665209000000009) (0.010813166499999999) (0.010889101000000012) (0.010518332500000005) (0.010872872499999992) (0.010677041500000012) (0.010777866000000011) (0.010855968999999993) (0.010969386499999997) (0.010656352500000008) (0.010873838499999997) (0.010740817) (0.010753939000000004) (0.010955755500000011) (0.011113465000000003) (0.011046054) (0.011073800000000009) (0.010891454999999994) (0.01103188849999999) (0.0109491855) (0.011021279499999995) (0.011071444) (0.011067466500000012) (0.011177197500000013) (0.011208256500000013) (0.011292229) (0.011146803999999996) (0.011096327000000003) (0.011245244000000015) (0.011140192000000007) (0.010954479500000017) (0.011016142500000006) (0.010901753999999986) (0.010787459000000013) (0.011197625500000002) (0.011202043000000009) (0.01102052299999999) (0.011158788499999989) (0.011013665499999992) (0.010872304500000013) (0.011036735000000006) (0.011034042499999994) (0.010960419999999985) (0.011691353499999987) (0.011077928499999987) (0.011148144499999998) (0.010525551500000008) (0.010986896499999996) (0.010731619000000012) (0.010831707999999995) (0.0108883585) (0.010628812000000001) (0.010635463499999998) (0.01098718450000001) (0.010651538499999988) (0.010752553000000012) (0.010783797999999983) (0.0105747385) (0.010767475999999998) (0.010751972999999998) (0.010755332000000006) (0.011030015000000018) (0.010752336500000001) (0.010723568000000017) (0.010814582999999989) (0.010744660000000003) (0.010942923999999993) (0.010780776000000006) (0.010643372999999998) (0.010663113499999988) (0.011054221000000017) (0.010788482000000002) (0.01084850100000001) (0.010669608499999997) (0.010960925499999996) (0.010770797000000012) (0.010764722000000004) (0.010933993499999989) (0.010979545999999993) (0.01118974099999999) (0.01073982300000001) (0.011226733999999988) (0.0109338925) (0.011016999499999985) (0.011142122500000004) (0.011130584499999999) (0.010932365999999999) (0.011187056) (0.011189910499999997) (0.011064172000000025) (0.010983234500000008) (0.010953220000000014) (0.0109853075) (0.011214780000000008) (0.0110854695) (0.011040041) (0.011016267999999996) (0.010873210000000008) (0.010979349) (0.010992533999999984) (0.01101299650000001) (0.011144307500000006) (0.0109280915) (0.010858781500000012) (0.011199887499999991) (0.011278295500000007) (0.010883740000000003) (0.011185697000000008) (0.011174388500000021) (0.011237004499999995) (0.010621966999999996) (0.010838554000000014) (0.010569380500000003) (0.010621850999999988) (0.010681642500000005) (0.010745733499999993) (0.010826460999999996) (0.010813449000000003) (0.010659859500000007) (0.0109194985) (0.01080203099999999) (0.010987997000000013) (0.011061503000000014) (0.010962026) (0.010868632000000017) (0.0107692915) (0.010481886499999996) (0.010948747499999995) (0.010955518500000011) (0.010708793499999994) (0.010728323500000012) (0.01079661500000001) (0.011058914500000003) (0.010614796499999996) (0.010666882500000016) (0.011002155999999999) (0.010876015000000003) (0.010781776500000007) (0.010835121500000003) (0.010605591500000011) (0.010787180500000007) (0.010654789999999997) (0.010868254499999994) (0.010949089000000009) (0.011160291000000003) (0.01093293499999999) (0.01093151249999999) (0.010848952000000009) (0.011753621000000006) (0.011071548500000014) (0.011095714499999992) (0.01114875999999998) (0.011309178499999989) (0.011214503000000015) (0.011033833499999993) (0.010989830500000006) (0.011201875999999986) (0.010961646999999991) (0.010920496499999988) (0.011098425500000009) (0.011096825500000004) (0.011208983500000005) (0.011014097499999986) (0.010995765000000005) (0.011090957499999984) (0.010925717500000001) (0.011229822499999986) (0.011043252000000003) (0.011174927499999987) (0.011186338500000004) (0.011474042000000004) (0.011349333499999989) (0.011041417999999997) (0.011068767499999993) (0.010996606000000006) (0.011066038) (0.010764406000000004) (0.010868373) (0.010534330000000008) (0.01059040550000001) (0.010478035499999996) (0.010680868499999996) (0.010773073000000008) (0.010811467500000005) (0.010826672499999995) (0.010899949500000006) (0.010706696000000002) (0.010659757499999992) (0.010656723000000007) (0.010572929499999995) (0.010901678999999997) (0.010524107500000018) (0.010793123500000001) (0.010685556499999999) (0.010648335500000009) (0.010747356500000013) (0.010757920000000004) (0.01069407700000001) (0.010800815000000005) (0.01082130499999999) (0.010641955999999994) (0.011169274500000007) (0.010650809999999997) (0.010788243500000003) (0.010848601999999999) (0.010760331499999998) (0.01100163450000001) (0.01087083849999998) (0.010858761500000008) (0.010938303999999996) (0.011079047999999994) (0.010977868000000002) (0.010861645999999989) (0.011133264000000004) (0.011166165500000005) (0.010972534000000006) (0.010813555499999988) (0.011164412499999998) (0.011103285000000004) (0.0112984795) (0.01109222750000001) (0.011219955500000003) (0.011183910500000005) (0.010975200000000004) (0.010995539499999984) (0.010933510999999993) (0.011045107499999998) (0.011128586999999995) (0.010954755499999996) (0.011073799499999995) (0.011212390500000016) (0.011438541499999996) (0.011233172499999985) (0.011253449499999998) (0.011134519999999995) (0.011148119499999998) (0.011337287500000001) (0.011024328) (0.010653129000000011) (0.010711553999999998) (0.010932776000000005) (0.01058506799999999) (0.010609095999999998) (0.010876526499999997) (0.010771829499999996) (0.010694409499999988) (0.011261389499999996) (0.010619572499999994) (0.010904233499999999) (0.010796878999999981) (0.010869452500000001) (0.01062870099999999) (0.010969718500000003) (0.010817459499999987) (0.010650995999999996) (0.010982486999999999) (0.010598737499999997) (0.010881760500000004) (0.011120731499999995) (0.010725645500000006) (0.010759363999999993) (0.010798737500000002) (0.010796059499999996) (0.011029981500000008) (0.010888971499999997) (0.010800182000000005) (0.011054043500000013) (0.010961060000000009) (0.01074314500000001) (0.010657500000000014) (0.011069225000000002) (0.010986160000000009) (0.011129952000000012) (0.011198041499999992) (0.011216135000000002) (0.011014828500000004) (0.011235023499999996) (0.010855032000000014) (0.011136045000000011) (0.011042610500000008) (0.011011318499999992) (0.011116999500000016) (0.0110077715) (0.010956350500000003) (0.0112967925) (0.011062240499999987) (0.011351497500000002) (0.010923968000000006) (0.010889278500000002) (0.0111688385) (0.01092029450000001) (0.011414496999999996) (0.010989291000000012) (0.011111839999999984) (0.01109766000000001) (0.011132858999999995) (0.010991501) (0.011246605999999992) (0.01123399550000001) (0.010872418499999995) (0.011015379000000006) (0.011176420499999992) (0.01090297450000001) (0.0107757235) (0.011038222) (0.010691125499999996) (0.010510403000000015) (0.010598357500000002) (0.010668449999999982) (0.010607225499999998) (0.010874160999999993) (0.010755159) (0.010631241499999985) (0.01073636950000001) (0.010680479000000007) (0.010792495499999999) (0.010883482) (0.010862187500000009) (0.010715816500000017) (0.010655903000000008) (0.010681402999999992) (0.0110314725) (0.010610635999999979) (0.010617670999999995) (0.010837409499999992) (0.01094497400000001) (0.010961816999999999) (0.011034519000000007) (0.010991251999999993) (0.01085447049999999) (0.010846048499999997) (0.010799671499999997) (0.010754633) (0.010687016499999993) (0.01087262650000001) (0.011158418999999989) (0.011244819500000003) (0.010879641500000009) (0.010849908499999991) (0.010943703000000013) (0.011095876000000005) (0.010901564500000016) (0.011066597999999997) (0.011182869999999998) (0.010961114999999994) (0.011063196999999997) (0.011254640999999996) (0.011078776999999984) (0.011046149000000005) (0.011126433500000005) (0.01120387149999999) (0.010845749500000001) (0.01098516599999999) (0.011040214999999992) (0.011029925499999996) (0.011016996000000015) (0.010854359500000008) (0.010961754500000004) (0.010969259499999995) (0.010836967500000003) (0.011136340999999994) (0.011065344000000005) (0.011151730499999998) (0.011249601000000012) (0.011161762499999991) (0.011054669000000003) (0.010747563000000002) (0.010849173500000017) (0.010691288999999993) (0.010868153000000005) (0.010626553499999997) (0.010530840999999999) (0.0107084145) (0.01059768500000001) (0.011092274999999999) (0.010817433500000001) (0.011041995499999999) (0.010835439500000002) (0.010883390999999992) (0.010859667000000003) (0.011182242499999995) (0.010869870000000004) (0.010752471499999985) (0.010616788000000002) (0.010981128000000007) (0.010616790000000015) (0.010682243999999994) (0.010850730000000003) (0.010807553000000011) (0.010706110500000005) (0.010842691499999987) (0.010718364500000008) (0.010744412499999995) (0.010775921499999994) (0.011048253999999993) (0.01088044199999999) (0.01089535500000001) (0.010976279000000005) (0.011051355999999998) (0.010978150999999992) (0.011120822000000002) (0.011305447499999996) (0.01096568299999999) (0.011057005999999994) (0.01117786450000001) (0.010986066500000016) (0.011019293) (0.011099915000000002) (0.011237174000000003) (0.011219320500000005) (0.010914924999999992) (0.011205671000000014) (0.011058005999999981) (0.011065462999999998) (0.011163755499999997) (0.011020909499999995) (0.01113133249999998) (0.011060646499999993) (0.01142497349999999) (0.011177923500000006) (0.011005987499999995) (0.010960129999999998) (0.011191360999999997) (0.011152070999999986) (0.011010700000000012) (0.011391361500000002) (0.011260443000000009) (0.011114984000000008) (0.011298481500000013) (0.011117652999999991) (0.010690322500000002) (0.010648093499999997) (0.011102859499999992) (0.010526116000000002) (0.010589872) (0.01058840400000001) (0.01052512500000001) (0.011117064499999996) (0.010836752000000005) (0.010841557500000001) (0.010858426500000004) (0.010699933000000009) (0.010585479499999995) (0.010848459500000004) (0.010805793999999994) (0.010846092000000002) (0.010939578999999991) (0.010858384500000012) (0.010611066000000002) (0.010878086499999995) (0.010808770999999995) (0.010814167000000013) (0.010672785500000004) (0.010478662000000014) (0.010837596000000005) (0.010925959999999998) (0.010850800000000008) (0.010878938500000004) (0.010758977500000003) (0.011005762500000002) (0.010882942500000006) (0.010927831999999998) (0.010919266499999997) (0.011025886499999998) (0.010972465) (0.011013559499999992) (0.010847990000000002) (0.011165132499999994) (0.011729417499999992) (0.010860620000000001) (0.011387641500000018) (0.010902212500000008) (0.011024095499999997) (0.011243183000000018) (0.010910882999999996) (0.010983215500000018) (0.01117230549999998) (0.011054945499999996) (0.01107511600000001) (0.01127574299999999) (0.011163338500000008) (0.010898565999999985) (0.011017978499999997) (0.01122178850000001) (0.010875192499999992) (0.010952117999999997) (0.011495661000000004) (0.011309355000000007) (0.011207532000000006) (0.010918720999999992) (0.011228124999999992) (0.011313897500000003) (0.011113567500000004) (0.011268110499999998) (0.010771795999999986) (0.010719267500000004) (0.010938307500000008) (0.010619381499999997) (0.010632016499999994) (0.010617843999999987) (0.0107618555) (0.010699907000000008) (0.010785304999999995) (0.010882332500000008) (0.0107750655) (0.010748673000000014) (0.010818056500000006) (0.010748864999999996) (0.0108482565) (0.010760420500000006) (0.010625292500000008) (0.010746519999999996) (0.010913413999999996) (0.010654434000000004) (0.010657271499999996) (0.010776877000000004) (0.0108819005) (0.01054770050000002) (0.011123729499999999) (0.010647648999999995) (0.01078214050000001) (0.010829649999999996) (0.010740609999999998) (0.010885321500000003) (0.010751001499999996) (0.01069362850000001) (0.011093760499999994) (0.011042337999999985) (0.0109035735) (0.011122614000000003) (0.011141126000000015) (0.01091739700000001) (0.01116386749999998) (0.011048349500000013) (0.0110103535) (0.011226022500000002) (0.01100208200000001) (0.011295319999999998) (0.011305900500000007) (0.010919622000000018) (0.011032726499999992) (0.011015491000000016) (0.011020128500000004) (0.0110519865) (0.010951677000000007) (0.010932007000000007) (0.011205490499999998) (0.011082940999999985) (0.011168397999999982) (0.010960765499999997) (0.011147817999999976) (0.011024936499999999) (0.010888895999999995) (0.010937741) (0.011084802500000004) (0.011210790500000026) (0.011080157999999993) (0.011179886) (0.010666638500000006) (0.010650579000000007) (0.010685737) (0.0106705005) (0.010634345500000003) (0.010951849) (0.0107285295) (0.010577479) (0.010808379999999992) (0.011010207999999994) (0.0108880685) (0.010903855000000004) (0.010877207) (0.010731195999999998) (0.01076846400000002) (0.010867745999999984) (0.010745981500000001) (0.011125709999999997) (0.010579352) (0.0107224935) (0.010579047500000008) (0.01089905799999999) (0.010674441499999993) (0.0109439905) (0.011064005000000002) (0.010877896499999998) (0.010701569499999994) (0.010714189500000013) (0.011025696500000001) (0.010820989499999989) (0.010797005499999998) (0.010663393500000007) (0.010994968500000007) (0.011343028500000005) (0.010972646500000016) (0.011017114499999994) (0.011227947000000002) (0.010919281000000003) (0.011050467999999994) (0.010904677000000015) (0.011026803500000001) (0.011004123500000004) (0.011145436499999994) (0.011033443500000004) (0.011266943500000001) (0.0112779395) (0.011142831499999992) (0.011175203499999994) (0.011200886500000007) (0.01086302950000001) (0.011042423499999995) (0.011071951999999996) (0.011116224499999994) (0.011222539500000003) (0.010932468500000014) (0.01090409099999999) (0.011257218500000013) (0.011297325499999997) (0.011212756000000018) (0.011121876000000003) (0.011148133000000018) (0.011224269499999995) (0.011005238) (0.011249390500000012) (0.01068298999999999) (0.01115164099999999) (0.013068189499999994) (0.010651520499999997) (0.010865468500000003) (0.010656982000000023) (0.010692857499999986) (0.010617908500000009) (0.010834326500000005) (0.010794108999999996) (0.010583550000000011) (0.010784777500000009) (0.010729437500000008) (0.010899471000000008) (0.010850503999999997) (0.011036770499999987) (0.010620531000000002) (0.010763534000000005) (0.010809720999999994) (0.010728224999999994) (0.010674847999999987) (0.010871082000000004) (0.010813338500000005) (0.010850017999999989) (0.0108346775) (0.010883037000000012) (0.011017153999999987) (0.010692183000000008) (0.01087882350000001) (0.010812807999999993) (0.010858865999999995) (0.010947097500000003) (0.011184853500000008) (0.011141917500000001) (0.010910355999999996) (0.011088568500000007) (0.011144913500000006) (0.01095727199999999) (0.010858590499999987) (0.0111936495) (0.011302050500000008) (0.011058010499999993) (0.011022324000000014) (0.011187265000000002) (0.011153758) (0.010902473499999996) (0.011126365000000013) (0.011134777500000026) (0.011359865499999997) (0.010974131999999998) (0.01102687300000002) (0.011081729499999984) (0.011262099499999983) (0.010912703499999996) (0.010838128000000016) (0.011158882499999995) (0.011105788000000005) (0.011076260000000004) (0.011327265999999989) (0.01125496400000002) (0.01103796) (0.011100961000000006) (0.01110473699999999) (0.011379367499999973) (0.010599174500000003) (0.010771417500000005) (0.010736382499999989) (0.010930344999999994) (0.010608106500000006) (0.010559468000000002) (0.010682619000000004) (0.010920610999999997) (0.011019056999999999) (0.010896767500000001) (0.010924904999999999) (0.010576241499999986) (0.010699561499999982) (0.010958200500000001) (0.010827731499999993) (0.010892716999999996) (0.010583146500000001) (0.010671102500000001) (0.0107388405) (0.010697046999999987) (0.010555699000000002) (0.010590141999999997) (0.010734581499999993) (0.010693079500000008) (0.010838831999999993) (0.010845238500000007) (0.010833548999999998) (0.010707843000000009) (0.011110698000000016) (0.010648734000000007) (0.010726397999999998) (0.010772180500000006) (0.010810930499999996) (0.011148284999999994) (0.010781842) (0.011048259500000004) (0.01105456099999999) (0.01092613449999999) (0.011286813500000006) (0.010898760499999993) (0.011136191500000003) (0.011053880500000002) (0.011027587000000005) (0.011251986000000005) (0.011520193499999998) (0.011067422500000007) (0.010918722000000006) (0.011038311999999995) (0.010905152000000001) (0.011339263000000002) (0.010933258499999987) (0.010765579499999997) (0.011084113000000007) (0.0110466085) (0.0109611295) (0.011522733499999993) (0.011159587499999998) (0.01101053199999999) (0.011218693500000015) (0.011150665000000004) (0.0114950375) (0.011391184500000012) (0.011078869500000019) (0.010995969999999994) (0.01079685250000001) (0.0105632685) (0.010937150000000007) (0.010666914499999985) (0.011037942500000009) (0.010825045000000005) (0.010967441000000008) (0.01086429400000001) (0.010882907000000011) (0.010728339999999989) (0.010823206000000016) (0.010941987) (0.010929381000000002) (0.010903095500000001) (0.010636441999999982) (0.010670774499999994) (0.010781380999999993) (0.010780828500000006) (0.010800513999999997) (0.010719885000000012) (0.010604127500000005) (0.010869636500000002) (0.010707529499999993) (0.010833262499999996) (0.010913630999999993) (0.011012950999999993) (0.0107087545) (0.010888473999999995) (0.010793210500000011) (0.010742608499999987) (0.010801860999999996) (0.010777583999999993) (0.010912208000000007) (0.011119830499999997) (0.011123072999999997) (0.010980309500000007) (0.010786086499999986) (0.011125947499999997) (0.011108632999999993) (0.01125924049999999) (0.011171425999999998) (0.011231459499999999) (0.01122735050000001) (0.011116464999999992) (0.010923804499999995) (0.011059017000000018) (0.010880172999999993) (0.011052942999999996) (0.011056986500000004) (0.011039244500000003) (0.0109946135) (0.011051506500000002) (0.011122810999999996) (0.011011767500000005) (0.011150854500000001) (0.010962871499999999) (0.011164962999999986) (0.011262731000000012) (0.010914393999999994) (0.0113512625) (0.010939021000000007) (0.011154697499999991) (0.011122454000000018) (0.010930352500000004) (0.010762958999999989) (0.010736801500000004) (0.010660584999999986) (0.010764013499999989) (0.010867426) (0.010511254000000012) (0.010682035500000006) (0.010746846000000004) (0.010763091999999988) (0.010931518999999987) (0.0108795) (0.010672940999999991) (0.010622373500000004) (0.010657753500000006) (0.010552883999999998) (0.010973319500000009) (0.010484758999999982) (0.010696241000000023) (0.010675015499999996) (0.010673676500000007) (0.010690013000000012) (0.010635779999999997) (0.010619555000000003) (0.010877993999999988) (0.010656338999999987) (0.010878358500000004) (0.010746245500000015) (0.010882187000000001) (0.010765822999999994) (0.010685735000000002) (0.01070554600000001) (0.010935314500000015) (0.01100744649999999) (0.011161962999999997) (0.010816880000000001) (0.010911446500000005) (0.011242562499999997) (0.011025964) (0.011108663000000005) (0.010812611) (0.011048310000000006) (0.011132105000000003) (0.010981985) (0.011018790499999986) (0.011043974999999998) (0.011137331999999986) (0.011046847499999984) (0.011480282500000008) (0.011469594500000013) (0.011039857500000014) (0.010871931000000001) (0.010924696499999997) (0.011576289000000003) (0.011677362999999996) (0.01108625399999999) (0.010854808499999993) (0.011284021000000005) (0.011155545000000003) (0.011135141500000001) (0.011240116000000008) (0.011223075500000013) (0.011166276000000003) (0.011032465000000005) (0.011071894499999999) (0.010613316499999997) (0.010920963500000005) (0.010616501999999986) (0.010838498500000002) (0.011145368499999989) (0.010776510999999989) (0.010743823500000013) (0.010692446500000008) (0.010743795000000014) (0.010654119500000003) (0.010864944499999987) (0.010753304000000005) (0.010741974999999987) (0.010793870000000011) (0.010800537999999998) (0.010659213) (0.010678234000000009) (0.010800085500000015) (0.01079301249999999) (0.010707595000000014) (0.010621580500000019) (0.010853663499999985) (0.011241950500000014) (0.010739282500000003) (0.01074568549999999) (0.010636971499999995) (0.010948100999999988) (0.010851673000000006) (0.010802408) (0.010871338000000008) (0.010979386499999993) (0.01069289200000001) (0.011113387500000002) (0.010815567500000012) (0.0111277085) (0.011019910500000007) (0.011119327999999998) (0.010881191499999998) (0.011143577000000002) (0.010958525499999996) (0.011366180000000004) (0.011363369999999998) (0.011107593499999999) (0.01134494350000001) (0.011060138499999997) (0.011225478999999997) (0.010970777999999987) (0.011131454999999998) (0.011289566499999987) (0.010902336999999998) (0.011023346000000017) (0.010981286999999978) (0.01137089799999999) (0.010856221) (0.01097289650000001) (0.010931093999999988) (0.011264813000000012) (0.011067575499999996) (0.011031979499999997) (0.011314877000000015) (0.01106456850000001) (0.011276196000000002) (0.011311935000000009) (0.0111280505) (0.01076041400000001) (0.010685965500000005) (0.010964004) (0.010773949500000005) (0.01069398249999999) (0.010434674500000005) (0.010891224000000005) (0.010945217000000007) (0.010611029500000008) (0.010645085499999998) (0.010667665500000006) (0.010684767499999998) (0.010775739999999992) (0.010548475500000001) (0.010678619) (0.010568541999999986) (0.010786179499999993) (0.010630253500000006) (0.010653081499999995) (0.010552755499999997) (0.01066361049999999) (0.010721127499999997) (0.010821729000000016) (0.010824707000000003) (0.011001243000000008) (0.010646333499999994) (0.011066563500000001) (0.010987553499999997) (0.010697707999999986) (0.01076877000000001) (0.010755384999999992) (0.010708783999999985) (0.01089932149999999) (0.010898873500000003) (0.01101075) (0.011030905500000007) (0.010962414500000003) (0.010972236999999996) (0.010797849499999998) (0.010992428500000012) (0.011020834000000007) (0.010891486000000006) (0.011090797999999999) (0.011216119499999996) (0.010947090499999992) (0.010986300000000004) (0.010911969500000007) (0.010885853000000001) (0.010911629500000006) (0.010777670000000003) (0.010880164500000011) (0.01112093850000001) (0.0109009085) (0.011016022499999986) (0.010899623499999997) (0.011250794499999994) (0.011370948500000005) (0.011133714000000003) (0.011130917000000018) (0.011180967000000014) (0.010963379500000009) (0.010914612000000018) (0.0112090455) (0.011002586499999994) (0.010758075000000006) (0.010567088499999988) (0.010617135) (0.010792075499999984) (0.01103693950000001) (0.010790715000000006) (0.01059193600000001) (0.010678247499999988) (0.010527328000000002) (0.010844925500000005) (0.010870849000000002) (0.010575777000000008) (0.010634291000000018) (0.010646470000000005) (0.010893114999999995) (0.010752147500000003) (0.010771358999999994) (0.010590381999999995) (0.01069812299999999) (0.010571964000000003) (0.010794129500000013) (0.010607393000000007) (0.010851641500000009) (0.010765451999999995) (0.010742246499999997) (0.010899453500000003) (0.010797236500000001) (0.010891973999999985) (0.011131080500000001) (0.010709778500000017) (0.010777163500000006) (0.011025240999999991) (0.010943513500000002) (0.011284278999999994) (0.011284873) (0.011039064000000001) (0.011127718999999994) (0.011133735999999991) (0.011351245499999996) (0.010973918) (0.01121660050000002) (0.011218153500000008) (0.011265919999999999) (0.011184622500000005) (0.010874185999999994) (0.011112761499999985) (0.011060183500000015) (0.01128636600000002) (0.011087772499999995) (0.011015004500000009) (0.010979617999999997) (0.011268170499999994) (0.011041247500000004) (0.01105990250000001) (0.011121865500000008) (0.011098037499999991) (0.01112545799999999) (0.011275989) (0.011191084000000004) (0.011218125499999995) (0.010960615500000007) (0.011170776499999993) (0.011215818499999988) (0.011225537500000007) (0.010704530000000004) (0.010727885499999992) (0.01080701499999999) (0.010985900000000007) (0.010624735999999996) (0.010697618999999992) (0.010645078500000002) (0.010618513499999996) (0.010859958500000017) (0.010812793999999987) (0.011026148999999999) (0.010801434999999998) (0.010776053500000007) (0.010878407499999992) (0.011096397000000008) (0.010547222500000009) (0.010645580000000002) (0.010758951000000003) (0.010689407499999998) (0.010814909999999997) (0.010679139000000004) (0.010846144000000002) (0.010609496999999996) (0.011011000999999992) (0.010807440500000001) (0.01083841549999999) (0.010892229000000003) (0.010792010000000005) (0.011427324999999988) (0.010876319500000009) (0.01060726649999999) (0.0107438475) (0.010883357999999996) (0.010888761499999997) (0.010991992500000006) (0.011131942499999992) (0.011153181999999998) (0.011002265499999997) (0.010857800500000014) (0.011196110500000009) (0.011245750999999998) (0.011182198500000018) (0.011159481499999999) (0.011129705500000003) (0.011266685999999998) (0.011652846999999994) (0.011143311500000003) (0.011050103000000006) (0.010969816499999993) (0.011028466) (0.011157514000000021) (0.011053644999999987) (0.011249951000000008) (0.011207881000000003) (0.011005152000000004) (0.010907049500000002) (0.011192414499999997) (0.01104808950000001) (0.010972163500000007) (0.010897373999999987) (0.011284473000000003) (0.011139722500000018) (0.011369178500000021) (0.011120277999999983) (0.011085666499999994) (0.010985721000000004) (0.01076945850000001) (0.010825692999999997) (0.01092705749999999) (0.010815282499999995) (0.010672312000000003) (0.011042828000000005) (0.01072524300000001) (0.010743636499999987) (0.01064662999999999) (0.010807999499999998) (0.010965279500000008) (0.0106175295) (0.010880394500000001) (0.011099137000000009) (0.010872936) (0.010682451999999995) (0.010742497500000003) (0.010750411500000001) (0.010900710499999994) (0.010650763500000007) (0.010840396000000002) (0.010538343500000005) (0.010947875499999996) (0.010944310000000013) (0.010677845000000005) (0.010781894499999986) (0.010993226499999995) (0.010857397000000005) (0.010617210500000002) (0.010713754500000006) (0.011056804500000003) (0.010852719499999983) (0.011062497000000004) (0.011218656999999993) (0.010931805500000003) (0.010940659000000005) (0.011203738000000005) (0.011185266500000013) (0.011178963500000014) (0.011155325500000007) (0.011023730499999995) (0.011278187499999995) (0.011152504000000021) (0.010981588) (0.010986114500000005) (0.010987983000000007) (0.01122308150000001) (0.01111330549999999) (0.011047110000000013) (0.010958427500000006) (0.011096562500000004) (0.011058482000000008) (0.011101150000000004) (0.012124005000000007) (0.011295026) (0.010945482999999992) (0.011289024000000009) (0.011344745000000003) (0.011211812500000015) (0.011295727500000005) (0.011231887999999995) (0.011049676499999994) (0.010889923999999995) (0.010917310000000013) (0.010573433499999993) (0.01062972999999999) (0.010527675500000014) (0.010784029500000014) (0.011039740999999992) (0.010860493999999998) (0.010905473999999998) (0.010617167999999996) (0.010661307499999995) (0.010834692000000007) (0.010847557500000007) (0.010673970500000005) (0.010858168499999987) (0.010847272000000005) (0.010631138999999998) (0.010745261500000006) (0.01073738149999999) (0.010708667500000005) (0.010683131000000012) (0.010667718499999992) (0.010685759500000003) (0.010800186500000003) (0.010891702499999989) (0.010696129499999998) (0.0107154775) (0.010728982999999997) (0.010594473999999993) (0.01079350250000001) (0.010801068499999997) (0.010950585999999998) (0.010997722499999987) (0.011003166499999995) (0.0109509785) (0.010761561999999988) (0.011127529999999997) (0.011046514000000007) (0.011315083500000003) (0.010891370500000011) (0.0111289205) (0.010948536999999994) (0.011271392500000019) (0.011247177499999997) (0.0112264745) (0.011046758500000003) (0.011101206000000002) (0.010943783999999998) (0.010981004000000016) (0.011092238000000004) (0.010996927000000004) (0.01103137500000001) (0.011091231500000007) (0.011218699999999998) (0.011094729999999997) (0.010982471500000007) (0.011184439000000004) (0.011012231499999997) (0.010920222000000007) (0.011352727499999993) (0.010995775499999999) (0.011274507000000003) (0.011006893500000003) (0.011137480500000005) (0.011012476499999993) (0.01064727650000001) (0.011241016500000006) (0.010672952) (0.010679178000000011) (0.010749759000000011) (0.010551676499999996) (0.01081863700000002) (0.0106001035) (0.010923220999999997) (0.0107383385) (0.010599719499999993) (0.010649449500000005) (0.01080283) (0.01084374249999999) (0.010712907000000008) (0.010603190999999998) (0.010815065999999984) (0.010884441999999994) (0.010780436000000018) (0.010595466499999998) (0.010718513499999999) (0.010768147000000006) (0.010647274000000012) (0.01113140800000001) (0.01067641250000001) (0.010701740500000015) (0.010731013999999997) (0.010834879500000005) (0.010657909000000007) (0.010724529499999996) (0.01091494200000001) (0.010988020500000015) (0.01105093) (0.010971737499999995) (0.011322358500000004) (0.011086902499999995) (0.011160245499999999) (0.011042179000000013) (0.0113563795) (0.011122912499999998) (0.011115282000000004) (0.01106205099999999) (0.011313244000000014) (0.011076532) (0.011061363000000005) (0.011177171500000013) (0.011031944999999987) (0.010992189999999985) (0.010966195500000012) (0.011077866999999991) (0.011049900000000001) (0.011121445999999993) (0.011053968499999997) (0.01104418750000001) (0.011208489999999988) (0.011121208499999993) (0.011499716499999993) (0.010989245499999994) (0.0110616865) (0.011190783999999995) (0.01132469500000001) (0.010880843500000001) (0.011417873999999995) (0.011180806999999987) (0.010482596999999996) (0.010687331499999994) (0.01070974000000001) (0.01072550600000001) (0.010685826500000009) (0.010691538499999986) (0.010729732500000005) (0.010895409000000009) (0.010718655999999993) (0.01094854449999999) (0.010752306000000017) (0.010721616000000003) (0.01092704650000001) (0.010765281500000015) (0.010729744499999999) (0.010848124) (0.010643773999999995) (0.010867361500000006) (0.010678260999999994) (0.010589059000000012) (0.010623423500000007) (0.01056984250000001) (0.010597588000000005) (0.010947815999999999) (0.010729525000000018) (0.010686734000000003) (0.010827221500000012) (0.010670759499999988) (0.011145868500000003) (0.01097039100000001) (0.011015497500000013) (0.0109815615) (0.0111917245) (0.010899979500000004) (0.01093906700000001) (0.01094566349999998) (0.011244242500000001) (0.011155588000000008) (0.010948283000000003) (0.01094907149999999) (0.011255417500000003) (0.01098404750000001) (0.011196159499999997) (0.011192002999999992) (0.010984787499999996) (0.011212134500000012) (0.010927879000000015) (0.010924478499999987) (0.011182681) (0.01097791549999999) (0.010848136999999994) (0.011036339999999992) (0.011055288999999996) (0.011077445500000005) (0.011249445499999997) (0.011134401000000002) (0.0110744485) (0.011170899499999998) (0.011082759499999983) (0.011047452999999999) (0.01201215) (0.011139858999999988) (0.011009057500000002) (0.01079973649999999) (0.010810911999999992) (0.010826649500000007) (0.010957117000000002) (0.010739729999999989) (0.010862289499999997) (0.010628686999999998) (0.010628606999999998) (0.010991870500000014) (0.010847362999999999) (0.010838416000000003) (0.010817142500000002) (0.010761604000000008) (0.010856323000000001) (0.011009222999999999) (0.010785818000000003) (0.011037446000000006) (0.010859864499999997) (0.010903071000000014) (0.010768144499999993) (0.010666189500000006) (0.010770542000000022) (0.010982618999999999) (0.010709891999999985) (0.010894972500000003) (0.011049419500000005) (0.010800003000000002) (0.010891621500000004) (0.010857051999999992) (0.01084782949999999) (0.010797526000000016) (0.011135407999999986) (0.010938590999999998) (0.01084685099999999) (0.010969119999999985) (0.010884194) (0.011193765500000008) (0.011015735999999998) (0.011302712500000006) (0.010980991500000009) (0.011385488000000013) (0.011138106000000009) (0.011172345) (0.011226079999999986) (0.011075149000000006) (0.011044882999999991) (0.011288807500000012) (0.011334257499999986) (0.010905825500000008) (0.011265324499999993) (0.010899841499999993) (0.01087565900000001) (0.01119486950000001) (0.011394822999999998) (0.010945742999999994) (0.01109165799999999) (0.011024817000000006) (0.011419273000000008) (0.011253011000000007) (0.01119659549999999) (0.011148041499999997) (0.011225572999999989) (0.011260013999999999) (0.011210127) (0.0108327285) (0.01089510199999999) (0.010679675999999999) (0.010463602499999988) (0.011002245499999994) (0.010856179999999993) (0.010731245) (0.010802970499999995) (0.010912419499999992) (0.011188731500000007) (0.01077228899999999) (0.0107745895) (0.010999638499999992) (0.010822073000000001) (0.010635115500000014) (0.010720324500000003) (0.010556408500000003) (0.010632435499999995) (0.010661052500000004) (0.010699410000000006) (0.010603794) (0.010556076500000011) (0.011183016000000004) (0.010656857499999992) (0.010855240500000002) (0.011088646999999993) (0.010719495499999995) (0.01083543449999999) (0.010704507000000002) (0.010840877500000012) (0.010791680499999984) (0.010826632499999989) (0.011147883500000011) (0.011068457500000004) (0.0111703155) (0.011010286500000008) (0.011060294499999998) (0.011114131500000013) (0.010940433000000013) (0.010951739000000002) (0.010990432499999994) (0.011108423999999992) (0.011262995000000012) (0.011162750500000013) (0.011046788499999988) (0.010905122000000003) (0.011093721000000015) (0.010946792499999997) (0.011197231500000002) (0.011217982500000015) (0.010909579500000002) (0.011155835000000003) (0.010922963999999993) (0.011284671999999996) (0.010913295500000003) (0.011086366) (0.011000847000000008) (0.011098870999999996) (0.011359938) (0.011044438500000003) (0.011174266500000002) (0.011050684499999991) (0.0109367655) (0.011084383999999989) (0.010669638999999995) (0.010880662499999999) (0.01078253550000001) (0.010850426499999996) (0.010591528500000003) (0.010595575499999996) (0.010594526999999992) (0.010724982499999994) (0.010821404500000006) (0.01095330550000001) (0.010880925500000013) (0.010884901499999988) (0.010703479500000002) (0.010857111500000002) (0.010899264500000005) (0.010649461499999999) (0.010842082500000016) (0.010670912000000005) (0.010710778000000004) (0.010504065500000007) (0.010622200999999998) (0.010642131499999999) (0.0106860285) (0.010893416500000003) (0.0108332535) (0.010944318999999994) (0.010770236000000002) (0.01080341949999998) (0.010904541000000004) (0.010730760999999991) (0.010854647499999981) (0.010914460000000015) (0.010882516499999995) (0.01091962099999999) (0.010985190000000006) (0.011187062999999997) (0.011094554999999992) (0.01089962400000001) (0.011033488499999994) (0.010990287000000001) (0.011007653500000006) (0.01114586549999999) (0.011240499000000029) (0.010981368499999991) (0.010949204500000004) (0.011228331499999994) (0.010920949499999999) (0.011019001000000014) (0.011473799499999993) (0.010865193000000009) (0.010989488499999991) (0.011018509499999982) (0.011121993499999996) (0.010972969499999999) (0.011064582000000017) (0.010846254) (0.01088186699999999) (0.01106853449999999) (0.011223269999999994) (0.011120446499999992) (0.011282302500000008) (0.010873913999999998) (0.010976249000000007) (0.011237166999999992) (0.010642353500000007) (0.010864060000000009) (0.0107548165) (0.010626421999999996) (0.010837635000000012) (0.010604477000000001) (0.010878698999999992) (0.01052321299999999) (0.010818867499999996) (0.010696580000000011) (0.0111570275) (0.010854087999999998) (0.010962794499999998) (0.01088396300000001) (0.010844401500000003) (0.010700990999999993) (0.010804196000000002) (0.010887346500000006) (0.01072055700000002) (0.010868385499999994) (0.010761061500000002) (0.010682531499999995) (0.010900387999999997) (0.010880057999999998) (0.010756233000000004) (0.010917332999999987) (0.011021801999999997) (0.010977412999999991) (0.010711966500000003) (0.010959846999999981) (0.010734795500000005) (0.010858687499999992) (0.011256336499999992) (0.011053051000000008) (0.010867340999999989) (0.0109986225) (0.011157907999999994) (0.01101866550000001) (0.010984432500000002) (0.010929519999999984) (0.011352584499999999) (0.011413177499999996) (0.011092288000000006) (0.011150352000000002) (0.010978718999999998) (0.01088881350000001) (0.011216922000000004) (0.011044303000000005) (0.011224848999999995) (0.011115690500000011) (0.011196458000000006) (0.011434672500000007) (0.010994589499999999) (0.011249179499999998) (0.010884774) (0.011464741999999986) (0.010852996000000004) (0.011186571499999992) (0.011044656500000014) (0.010986512500000017) (0.011028711499999996) (0.011103219999999997) (0.011012508499999976) (0.011067257499999997) (0.010659938000000008) (0.010758280499999995) (0.010857983500000001) (0.010662104000000006) (0.010883305999999995) (0.010733826500000002) (0.010781748499999994) (0.010924077000000018) (0.010844419999999994) (0.010697012999999991) (0.010827854499999998) (0.01057913100000002) (0.010660998500000005) (0.010674334000000008) (0.010979341500000017) (0.01114428449999999) (0.010684014500000005) (0.010783018500000005) (0.010829370000000005) (0.010799924000000016) (0.010851594500000006) (0.010635701499999997) (0.010556767499999994) (0.010721446499999995) (0.010588858000000007) (0.010758363500000007) (0.011215790999999975) (0.011110301500000003) (0.010850615499999994) (0.010902357000000001) (0.010840764500000002) (0.0108140855) (0.0110804865) (0.010902161500000007) (0.010876137000000008) (0.01110407599999999) (0.011041221500000004) (0.011080736000000008) (0.011252705999999987) (0.010999903500000005) (0.011181756000000001) (0.01130722549999999) (0.01127117599999998) (0.011262176000000013) (0.011162278999999997) (0.011302340000000008) (0.011002477999999996) (0.011113872499999997) (0.011043822499999995) (0.011100747499999994) (0.01133630749999999) (0.011387477499999979) (0.011001367499999984) (0.01087539600000001) (0.011047725500000008) (0.011094670499999987) (0.011085261499999999) (0.011139442) (0.011152427499999992) (0.011002763999999998) (0.011677146000000013) (0.01116600999999999) (0.01096387700000001) (0.010950136499999985) (0.01069092150000002) (0.0107959225) (0.010834088499999991) (0.010706354000000015) (0.0107442695) (0.010711040500000019) (0.010877817999999997) (0.010583199500000001) (0.010795043000000004) (0.010685354000000008) (0.010644772499999997) (0.010808706500000001) (0.01070581700000002) (0.010855690500000001) (0.010744203999999993) (0.010617495500000004) (0.010471845000000007) (0.011085061999999993) (0.010707687499999993) (0.010554817000000008) (0.01071986900000002) (0.010837669499999994) (0.010642931500000008) (0.010674771999999999) (0.010780617500000006) (0.010623433000000002) (0.010575311000000018) (0.010867209000000017) (0.010928478500000005) (0.010855150999999993) (0.010580403000000002) (0.010823785000000016) (0.01093984399999999) (0.010926021499999994) (0.010886213000000006) (0.011169149500000003) (0.01080642300000001) (0.010790758999999997) (0.010953535500000014) (0.010828274999999998) (0.01114844249999998) (0.011077140999999999) (0.011088569500000006) (0.011049856999999996) (0.011219548999999995) (0.011152726999999987) (0.011005808499999992) (0.011011570499999998) (0.011321169499999992) (0.011261781499999998) (0.01125359699999999) (0.011037446500000006) (0.010954890999999994) (0.01090334200000001) (0.0110885275) (0.010898875000000002) (0.011191684499999993) (0.011233422500000007) (0.010890458499999991) (0.011061913500000006) (0.011400991499999999) (0.011058360000000017) (0.011068783999999998) (0.01098137149999999) (0.010843213000000004) (0.010515940500000001) (0.010657892000000002) (0.010716570499999994) (0.010727118999999993) (0.010677763000000007) (0.010657049499999988) (0.010759375000000002) (0.011010055500000018) (0.010901759999999996) (0.011215447000000003) (0.010981356500000011) (0.010960557999999995) (0.010796187500000012) (0.010976124500000004) (0.010852089500000009) (0.010617418000000003) (0.010876924499999996) (0.010471656999999995) (0.01103241449999999) (0.010857438000000011) (0.010689319499999989) (0.010697566000000006) (0.0107965545) (0.010999849999999992) (0.010860197500000016) (0.010693397000000007) (0.010789053500000007) (0.010848048500000013) (0.010778118500000003) (0.010806357499999988) (0.010666956500000005) (0.011603867000000004) (0.011168520499999987) (0.011060532499999998) (0.011138975999999995) (0.011177825000000002) (0.011220196500000015) (0.011010884499999998) (0.011013151000000013) (0.011205778999999999) (0.011312974000000003) (0.011372695000000002) (0.011041259999999997) (0.011004291000000013) (0.011177868000000007) (0.011028091500000003) (0.010913835499999996) (0.011162157000000006) (0.011220937999999986) (0.010977564999999995) (0.011015260999999998) (0.011033686000000001) (0.011028291999999995) (0.010950641000000011) (0.011143806499999992) (0.011396547999999992) (0.011149323499999989) (0.01119706550000002) (0.011179980499999992) (0.011111848500000007) (0.01110249399999999) (0.011033194999999996) (0.011088230000000004) (0.010770493999999992) (0.010652594500000001) (0.011019927500000012) (0.010485317999999993) (0.010939851500000014) (0.010799989499999996) (0.010843146499999998) (0.010709035000000006) (0.010706090500000001) (0.010665888500000012) (0.01069982400000001) (0.010919607000000012) (0.010755532999999998) (0.010715699999999995) (0.010861871499999995) (0.010838474) (0.010720251) (0.010683980499999995) (0.010506119999999994) (0.01070305199999999) (0.010709620500000003) (0.010636605500000007) (0.010625550999999997) (0.010783832499999993) (0.011037275) (0.01104426) (0.0108649725) (0.010702794000000002) (0.010623909000000015) (0.010953530500000017) (0.010817760999999995) (0.010790067499999986) (0.010995940499999995) (0.011614824499999996) (0.010908762000000002) (0.011195613500000007) (0.010862191000000007) (0.011076647499999995) (0.011070690499999994) (0.01114917800000001) (0.01127584949999999) (0.010930458500000004) (0.011255785500000004) (0.011099087000000007) (0.011380690999999998) (0.011248030999999992) (0.011094470000000009) (0.010982213500000004) (0.011009994000000009) (0.010894649499999992) (0.011055983500000005) (0.011302872000000005) (0.011397889999999994) (0.011128261500000014) (0.011079261000000007) (0.011224438000000003) (0.011333520999999985) (0.010989375499999995) (0.011184782500000018) (0.011077676000000009) (0.011263301500000017) (0.011100579500000013) (0.011279705000000001) (0.011145745499999998) (0.010579046999999994) (0.010650318000000006) (0.01112696099999999) (0.010692662500000005) (0.010718128000000007) (0.010724974999999998) (0.010601687500000012) (0.010724350000000007) (0.011432042500000003) (0.010711514000000005) (0.011162804999999998) (0.010953151500000008) (0.010783765) (0.01076706949999999) (0.010884606500000005) (0.010759604999999992) (0.010749804500000001) (0.010512994000000012) (0.011017174500000004) (0.010830645999999985) (0.010777828999999989) (0.010750388) (0.010949768499999998) (0.010719677499999997) (0.010806799499999992) (0.010726977500000012) (0.010873404000000003) (0.0111058255) (0.011184927499999997) (0.010662766500000004) (0.010855053999999989) (0.010781448000000013) (0.011122361999999997) (0.01099968300000001) (0.010953372500000003) (0.010908524500000003) (0.011087603500000001) (0.010904602) (0.011157827000000009) (0.01100422849999999) (0.01105926850000001) (0.010946266499999996) (0.011145207000000004) (0.010866377999999996) (0.011021054000000002) (0.011152417999999997) (0.010964492500000006) (0.010956301500000001) (0.011084849000000008) (0.011221274000000003) (0.011150934000000015) (0.010980682500000005) (0.010991635) (0.010836259) (0.010958398000000022) (0.011156471499999987) (0.011019175000000006) (0.011393728500000005) (0.011059576000000015) (0.011094206999999995) (0.011163574499999995) (0.011177007499999989) (0.011348125) (0.010942789500000008) (0.010568285999999996) (0.010612679) (0.010602103000000002) (0.010608902000000003) (0.010719693000000002) (0.010616266500000013) (0.01084202849999999) (0.01057420399999999) (0.010716199999999995) (0.010901882500000001) (0.010857929000000002) (0.010939416499999993) (0.010771423500000016) (0.011296543000000006) (0.010855275999999997) (0.010874462000000001) (0.010755762999999988) (0.010698494500000003) (0.010716788500000005) (0.010873015) (0.010729058000000014) (0.010538716500000017) (0.010861257000000013) (0.010539121999999998) (0.010660708500000005) (0.010731409000000011) (0.011197915499999989) (0.01077307999999999) (0.010842920000000006) (0.011025222500000001) (0.010881314499999989) (0.010780638500000009) (0.011050356499999983) (0.011520776999999996) (0.011060278499999993) (0.011073580000000013) (0.01111451649999999) (0.011031266999999997) (0.011029323499999993) (0.010996593999999998) (0.0109789275) (0.011248356000000001) (0.011020572000000006) (0.010963847999999998) (0.011164107999999992) (0.01107677800000001) (0.011081742499999991) (0.011124681500000011) (0.010920308000000004) (0.010975424499999997) (0.011124427499999992) (0.011105725999999996) (0.0109551435) (0.011035174499999995) (0.011244634999999989) (0.011078550499999992) (0.010923164499999999) (0.010940091499999999) (0.011130991499999993) (0.011011512000000001) (0.01129121050000001) (0.011405988000000006) (0.011078953999999988) (0.011124417000000011) (0.010729765500000016) (0.010785355999999996) (0.010555958500000004) (0.010898382499999998) (0.010847965000000001) (0.010682201500000002) (0.010820217000000007) (0.010745742000000003) (0.01078557899999999) (0.010797267999999985) (0.01073674299999998) (0.01077669199999999) (0.010665556999999992) (0.010695588000000006) (0.010847414000000014) (0.010920488000000006) (0.010673728999999993) (0.010564162999999988) (0.010988010499999992) (0.0109185495) (0.010581121499999999) (0.010851933999999994) (0.010628450499999997) (0.01075401699999999) (0.011455388499999997) (0.011043415000000001) (0.010752829000000005) (0.01068016899999999) (0.010653579999999982) (0.010817212999999992) (0.010712410500000005) (0.010909428499999999) (0.010902104499999996) (0.011057895499999998) (0.011023743500000002) (0.011435113499999996) (0.011124655000000011) (0.011195753500000002) (0.01082369150000001) (0.011016176000000003) (0.01131428999999999) (0.011111098499999986) (0.011133688999999974) (0.0111270485) (0.011221090999999989) (0.011229530500000001) (0.011107123999999982) (0.01105653249999998) (0.011052736999999993) (0.011315799500000001) (0.010963420500000001) (0.011181352500000005) (0.011156721999999994) (0.011124912000000015) (0.011051437499999983) (0.011042815499999997) (0.011039863499999983) (0.01104086800000001) (0.010884377000000015) (0.011153812999999999) (0.011221527499999981) (0.011070366999999998) (0.011182211999999997) (0.011144423500000014) (0.010656915000000003) (0.010643876499999996) (0.010741427999999983) (0.010734652499999997) (0.010727734999999988) (0.010878704500000003) (0.010833217000000006) (0.010706579499999994) (0.010792490500000002) (0.010746305500000011) (0.01083806200000001) (0.010847541499999988) (0.010746979000000004) (0.011107219000000002) (0.010700577000000017) (0.010812920500000003) (0.010797337000000004) (0.010868074999999991) (0.010660365000000019) (0.010668885500000003) (0.010562488499999995) (0.010632925000000001) (0.0108064155) (0.0107779145) (0.010777184999999995) (0.010761137500000018) (0.010987511499999991) (0.010762756999999998) (0.01067050550000001) (0.010941209999999993) (0.010777188499999993) (0.010925626499999994) (0.010853785500000004) (0.010979939000000008) (0.011098280500000002) (0.010992519999999992) (0.010963116499999995) (0.010928064500000001) (0.010965604500000004) (0.01120856399999999) (0.011123213500000007) (0.011239569500000005) (0.011205624500000011) (0.011063457500000012) (0.011371329) (0.011098896999999996) (0.01123017250000001) (0.011094140000000016) (0.01087333800000001) (0.011046060499999996) (0.010853461499999995) (0.010947955499999995) (0.011242519000000006) (0.01098028650000002) (0.011086113000000009) (0.010945451500000009) (0.011015214499999995) (0.011152246500000004) (0.011307710000000026) (0.011072717000000024) (0.01111475399999999) (0.011102734500000003) (0.011300234500000006) (0.011237322999999994) (0.010688100000000006) (0.010839659500000001) (0.010650580000000007) (0.010746315499999992) (0.010866021500000003) (0.010792493999999986) (0.010545528499999998) (0.010634621499999997) (0.010841976000000017) (0.010949558499999984) (0.011003245000000009) (0.010994766999999989) (0.010923200000000008) (0.010989532999999982) (0.010811244499999997) (0.010832203999999998) (0.010702198499999982) (0.011040724000000002) (0.0107942875) (0.010801930499999987) (0.010576473499999989) (0.010844486) (0.01070805100000001) (0.010872165500000003) (0.010756021000000018) (0.01097019249999999) (0.010811189499999985) (0.01067525300000001) (0.010685761999999988) (0.011041229499999972) (0.010879467000000004) (0.010718249499999985) (0.010964376499999984) (0.011070845499999996) (0.011178654499999982) (0.011001461500000004) (0.011048888500000006) (0.011053343499999993) (0.010861414999999985) (0.010845649500000012) (0.011349173500000004) (0.011036030499999988) (0.011340059999999999) (0.011020224500000009) (0.011394994000000006) (0.011068832499999987) (0.011154358000000017) (0.011277599999999999) (0.011229122000000008) (0.01103549949999999) (0.010998810999999983) (0.010925820000000003) (0.011076759500000005) (0.010704827) (0.010991671999999994) (0.011123256499999998) (0.011316942999999996) (0.011112713499999982) (0.011106879) (0.011234244500000018) (0.0110405955) (0.010981077999999991) (0.011019023000000003) (0.01127395299999999) (0.010533962999999993) (0.010949946499999988) (0.010718621000000012) (0.01067159550000002) (0.010632297000000013) (0.010723905499999992) (0.010560984499999995) (0.010807684999999997) (0.01089497049999999) (0.01078048899999999) (0.010886435) (0.010716967000000008) (0.010761838999999981) (0.01062065949999999) (0.010680418999999997) (0.010809567000000006) (0.010744457999999998) (0.010528125499999999) (0.010717112000000015) (0.010602856999999993) (0.010646978500000001) (0.010792712499999996) (0.010516365499999986) (0.010688074500000005) (0.010774691000000003) (0.010950022000000004) (0.010805039500000002) (0.010613523) (0.0108873825) (0.0107988735) (0.010713511499999995) (0.010986635000000008) (0.011234711500000008) (0.010934166500000009) (0.010862798000000007) (0.011015985000000006) (0.01088715350000001) (0.01102769399999999) (0.011078892500000007) (0.010960938000000003) (0.011368176500000007) (0.012270788000000005) (0.011101293500000012) (0.011027310999999998) (0.011140154499999999) (0.011523044499999996) (0.011065372500000004) (0.011127458499999993) (0.010917578499999997) (0.011059900500000011) (0.011050258500000007) (0.010919401000000009) (0.010914836000000011) (0.010876779000000003) (0.011295627000000003) (0.011096371500000007) (0.011256917000000005) (0.011053871499999993) (0.011085961000000005) (0.01114834050000002) (0.011364604499999986) (0.011328622499999996) (0.011259167999999986) (0.011068696500000003) (0.010754082499999998) (0.010562653499999991) (0.010828516499999996) (0.010725414000000003) (0.01098951799999999) (0.010638383000000001) (0.010682251500000017) (0.01076046750000001) (0.011067389999999996) (0.010916590000000004) (0.010856195499999999) (0.010616610000000012) (0.010758350000000014) (0.010941445500000008) (0.01103792399999999) (0.01101415) (0.010793008499999993) (0.010753910000000005) (0.01073344000000001) (0.010641506500000009) (0.010532266000000012) (0.010708020499999985) (0.010480675499999995) (0.010868682500000018) (0.011123219000000004) (0.011071940499999988) (0.011079290000000006) (0.010977882000000008) (0.010758588999999999) (0.010948033499999996) (0.010870438999999982) (0.010886787999999994) (0.010864336000000002) (0.011286527999999976) (0.011223033000000007) (0.010961546000000003) (0.011074261500000002) (0.01101103299999999) (0.010834952499999995) (0.011160867500000005) (0.01118573249999999) (0.011134612000000002) (0.010940790999999991) (0.010997688999999991) (0.011549768500000002) (0.011448680000000003) (0.011084691499999993) (0.011280854500000007) (0.010877521000000001) (0.011335733000000014) (0.011143251500000007) (0.011066201500000011) (0.010805015500000001) (0.011216921000000005) (0.011093017499999983) (0.010949339000000002) (0.011181825999999992) (0.011203927000000002) (0.010910232500000006) (0.011113806000000018) (0.011177860999999997) (0.010979599499999992) (0.011272277499999997) (0.011507456499999999) (0.010594390499999995) (0.010686780500000007) (0.010546181500000015) (0.010811668999999982) (0.0107370995) (0.010874930000000005) (0.010911773499999985) (0.01080167750000001) (0.010662040000000012) (0.01061318800000001) (0.010690154500000007) (0.010838764500000014) (0.010686897) (0.010870280999999996) (0.010737679) (0.011081669999999988) (0.01066881) (0.010621795000000017) (0.010657696499999994) (0.011031011500000007) (0.0107882225) (0.010961809500000003) (0.010765993999999987) (0.01066537549999999) (0.010997227999999998) (0.010998462000000014) (0.010875212500000009) (0.010900294000000005) (0.011036548500000007) (0.010739366500000014) (0.010846848999999992) (0.010961339000000014) (0.011040347500000006) (0.010937792500000001) (0.011042819499999995) (0.011184261500000015) (0.011255267999999999) (0.011100542500000005) (0.011059879499999994) (0.011146101499999991) (0.011193541500000001) (0.011076771999999999) (0.011115898000000013) (0.011621783500000024) (0.011017671999999992) (0.011209409000000004) (0.011129974000000015) (0.011113731000000016) (0.010986895999999996) (0.0109501065) (0.011323498000000015) (0.010808297000000008) (0.011303011999999987) (0.010983943499999996) (0.011009024999999992) (0.010905173000000018) (0.011060960999999994) (0.011041890999999998) (0.011108658000000021) (0.011116229500000005) (0.01104757349999999) (0.010947492500000017) (0.010965992999999993) (0.010989408500000006) (0.010687613999999998) (0.010647948500000004) (0.010834417500000013) (0.010665411) (0.010666787999999996) (0.010773790500000019) (0.010660769000000014) (0.01093421) (0.010852789000000002) (0.010688831499999996) (0.010798231500000005) (0.01060469850000001) (0.01081926250000001) (0.010837597000000004) (0.0108512625) (0.010949246999999995) (0.011020326499999997) (0.010627620000000004) (0.010739300999999993) (0.010561982499999997) (0.011096258499999997) (0.0107084935) (0.010661295000000001) (0.010875662499999994) (0.01105241500000001) (0.010782987500000007) (0.010735149000000013) (0.01090058699999999) (0.011047042999999979) (0.010827927000000001) (0.010627130999999984) (0.010900544000000012) (0.0109310705) (0.011054324000000004) (0.01105523600000001) (0.011120126499999994) (0.010928260000000009) (0.0109647155) (0.010923085499999999) (0.011129911000000006) (0.011232509500000015) (0.011082177999999984) (0.010973675500000016) (0.011097198000000016) (0.011300520499999994) (0.01129706749999998) (0.011046094000000006) (0.011682691999999995) (0.010844010500000001) (0.010883142000000012) (0.010984228999999998) (0.011017345999999997) (0.010976153500000002) (0.010967648999999996) (0.011267443500000016) (0.011100267499999983) (0.011165942499999998) (0.011042705) (0.010926454999999988) (0.011021556500000002) (0.011157197000000008) (0.011121702499999997) (0.011101057499999997) (0.01123911100000001) (0.010782766499999999) (0.010696289999999997) (0.011047930499999997) (0.010747363499999996) (0.010758961500000011) (0.011110712499999995) (0.0106672285) (0.01059375650000001) (0.010833302500000003) (0.010720100499999996) (0.010748965500000013) (0.010780069500000017) (0.010834130999999997) (0.01090406050000002) (0.011007665) (0.011068977499999993) (0.010744873500000002) (0.010957626499999998) (0.010848407000000004) (0.0108085765) (0.010655119500000004) (0.010609468999999996) (0.010748733499999996) (0.010736555000000023) (0.010686226999999993) (0.010896320499999987) (0.010887207999999982) (0.010822435499999991) (0.010796876999999996) (0.010742200999999993) (0.010736008000000019) (0.011176969500000022) (0.010889454999999992) (0.010932729500000016) (0.010963081999999999) (0.011280519000000003) (0.0109909495) (0.010986911500000002) (0.0110732895) (0.011035074500000006) (0.011090289500000003) (0.011204393499999993) (0.011299061999999985) (0.011260273000000001) (0.011036841500000005) (0.011033673000000008) (0.011202100000000006) (0.011143573500000017) (0.010881171499999995) (0.011238881000000006) (0.011056772500000006) (0.011139722000000005) (0.010800146499999996) (0.011017454999999995) (0.01089212149999999) (0.011238075000000014) (0.011356845500000018) (0.011244311499999993) (0.011100614499999995) (0.010977586999999983) (0.011225496999999987) (0.011342720499999973) (0.011038963499999999) (0.01122279150000001) (0.010803158000000007) (0.011217033500000001) (0.010598213499999995) (0.010979915000000007) (0.010598905000000006) (0.01086127499999999) (0.010707781000000013) (0.010938306999999994) (0.010949395499999987) (0.011060085999999997) (0.010771159499999988) (0.010641324000000021) (0.011153773499999978) (0.010848716000000008) (0.011071056500000023) (0.010796099999999975) (0.010671252500000006) (0.010575804500000008) (0.010881396000000002) (0.010828220999999999) (0.010788697500000013) (0.010558200000000004) (0.010788689500000004) (0.010771470000000005) (0.010907790500000028) (0.010813545500000007) (0.011383260999999992) (0.010748015500000013) (0.010859845000000035) (0.010694679499999998) (0.010701388000000006) (0.010598561500000006) (0.011519769499999999) (0.011242167499999983) (0.011191875500000004) (0.01099109899999999) (0.010965429000000013) (0.010907418999999974) (0.011170204000000017) (0.011125528499999995) (0.01137733349999999) (0.011277837499999985) (0.011103321999999999) (0.011151503999999979) (0.011211602500000015) (0.010949963499999993) (0.010928170500000028) (0.011054579000000009) (0.010862083499999994) (0.011090659999999974) (0.011176185499999977) (0.010838695500000009) (0.010901502499999965) (0.011076203499999979) (0.010906007499999995) (0.011299434000000011) (0.011099474500000012) (0.011208462499999988) (0.011174694000000027) (0.011274764000000007) (0.011007167000000012) (0.01114695200000003) (0.011189566999999997) (0.011144437500000007) (0.01068140749999999) (0.010843358499999997) (0.010889622500000001) (0.01061476850000001) (0.010670271000000009) (0.011117607999999987) (0.010775997999999995) (0.010752978499999996) (0.010950338000000004) (0.010782182500000001) (0.011049195499999998) (0.01101139800000002) (0.010734937000000014) (0.010853256500000005) (0.010945558499999994) (0.010684263) (0.010655490500000003) (0.010822634999999997) (0.010708908499999989) (0.010719102499999994) (0.010688342000000017) (0.01058803849999998) (0.010720975500000007) (0.010641329500000005) (0.010856776000000012) (0.010918586000000008) (0.010930477000000022) (0.010789667000000017) (0.010919634500000011) (0.010887932500000003) (0.010812585500000027) (0.010664193500000002) (0.011341815000000005) (0.010966098999999993) (0.01136674) (0.010961254999999975) (0.011025261500000008) (0.010917172999999988) (0.010912438499999982) (0.010817940999999984) (0.011007183000000004) (0.011062756500000007) (0.011227579999999987) (0.011055806999999987) (0.011125397000000023) (0.011020727500000008) (0.011094205499999982) (0.011001147499999989) (0.011053686000000007) (0.011372711000000008) (0.010931554999999996) (0.010953723999999998) (0.011162457499999986) (0.011281691999999996) (0.01081410699999999) (0.011348678499999987) (0.0111636985) (0.01126129300000002) (0.011107540000000013) (0.011115003000000012) (0.011074599000000018) (0.011133869500000018) (0.011202328000000011) (0.011138652499999999) (0.010743849) (0.010677566) (0.010925676500000009) (0.010747932000000002) (0.010766975999999998) (0.010898816500000005) (0.010734738999999993) (0.010646148500000008) (0.01078433799999999) (0.010874326000000031) (0.010817858500000013) (0.010645690499999985) (0.010836795499999982) (0.010773362500000008) (0.010679520499999998) (0.010908957999999996) (0.01065512149999999) (0.010645611) (0.010840423000000002) (0.010582148999999999) (0.011020301499999996) (0.010616319000000013) (0.010736487000000003) (0.010924913500000008) (0.010798895500000003) (0.010742753499999994) (0.011160933500000011) (0.010900304999999985) (0.010732079500000005) (0.01083732100000001) (0.010863006500000022) (0.010759779499999997) (0.010869879500000026) (0.010964897000000001) (0.010978840000000017) (0.010998291500000007) (0.011138619999999988) (0.010993569999999994) (0.010988833000000003) (0.011385047500000009) (0.010950389000000005) (0.010964769999999999) (0.011089042500000007) (0.011122522500000023) (0.011194836500000013) (0.011063738999999975) (0.011398831999999998) (0.011258593999999983) (0.01124767900000001) (0.011104648000000023) (0.010896777999999996) (0.011170379500000008) (0.011031502999999998) (0.010917754000000002) (0.011096112000000005) (0.011116041500000007) (0.011213930000000025) (0.011174438500000022) (0.011269589499999982) (0.011167978500000009) (0.01120658849999999) (0.011066335999999996) (0.011142325999999994) (0.010969808499999983) (0.013272790499999992) (0.013078258499999995) (0.013223075) (0.013322426499999998) (0.012821443500000002) (0.012808602000000002) (0.012935051000000017) (0.013152597000000002) (0.013006333499999995) (0.0127417965) (0.012907174999999993) (0.013022875500000003) (0.013426014999999986) (0.01333769) (0.012790173000000002) (0.01305118000000001) (0.012982121999999999) (0.012702610000000017) (0.012831970500000012) (0.012733952499999993) (0.012902306499999988) (0.012761395999999994) (0.013477137000000014) (0.0129143605) (0.013134473500000007) (0.013032917500000005) (0.013163963999999986) (0.012925041000000012) (0.013149640500000004) (0.013345638999999992) (0.013141278000000006) (0.012895121499999995) (0.013092200499999998) (0.013063655000000007) (0.013523470999999995) (0.013077236499999992) (0.013183215499999998) (0.013060548499999991) (0.013679619000000004) (0.013297624499999994) (0.013653706999999987) (0.0131683135) (0.013617389999999993) (0.013381938499999996) (0.01320528800000001) (0.013449490000000008) (0.013452711500000006) (0.013212830500000008) (0.013513517500000002) (0.013367100999999992) (0.013356014999999985) (0.013313166000000015) (0.01338144949999999) (0.013050200499999998) (0.013488713) (0.013239320499999999) (0.0134852835) (0.013293621000000005) (0.013328958000000002) (0.01339739899999999) (0.013055714999999996) (0.013155038499999994) (0.013217464499999998) (0.013520997000000007) (0.013080474500000008) (0.012975841500000002) (0.01308554399999999) (0.013089187500000002) (0.013050829000000014) (0.01293568049999999) (0.012910470000000007) (0.013532097499999993) (0.013437338000000007) (0.0131116825) (0.012945302999999991) (0.012905248000000008) (0.013165898999999981) (0.013209694999999994) (0.013119437999999997) (0.013001285000000001) (0.012897928499999989) (0.01364667) (0.012863003500000011) (0.013071938500000005) (0.013027519000000001) (0.013103827499999984) (0.013262721500000005) (0.012841839999999993) (0.012965150999999994) (0.013087436000000008) (0.013014878999999993) (0.013027754500000002) (0.012817661499999994) (0.013353344500000003) (0.01292238200000001) (0.012784185999999989) (0.013339142500000012) (0.013180576999999985) (0.013330924500000008) (0.013154644500000007) (0.013061754000000009) (0.013196223000000007) (0.013026500999999996) (0.01325896850000001) (0.013205378000000004) (0.0132991685) (0.01339411900000001) (0.013241113999999998) (0.013216931500000001) (0.013075360000000008) (0.013245798500000003) (0.01331714099999999) (0.013179661499999995) (0.013928987000000004) (0.013344773500000004) (0.01367363399999999) (0.013350310000000004) (0.013330466000000013) (0.013397373500000004) (0.013143542999999994) (0.013300681500000008) (0.0136467495) (0.013268136) (0.013421403499999998) (0.013813612000000003) (0.013520688000000003) (0.013239406999999995) (0.013393441500000006) (0.012962439500000006) (0.013010845500000007) (0.012994225499999998) (0.012998665500000006) (0.013250149500000002) (0.013033055000000002) (0.012804214499999994) (0.012929003499999994) (0.012981390499999995) (0.013069354500000005) (0.0130102245) (0.013070836499999988) (0.013027028499999996) (0.013030613499999996) (0.012980462499999998) (0.013052229000000012) (0.012912434) (0.01309767449999999) (0.012642031499999998) (0.012747727) (0.01268988700000001) (0.013039330500000001) (0.013081706999999998) (0.012995581000000006) (0.012982421500000008) (0.013330281999999999) (0.012964363000000007) (0.013013933500000005) (0.013006571999999994) (0.012958019000000015) (0.012982394500000008) (0.012832378000000005) (0.013288131000000009) (0.01329624750000001) (0.013120902000000004) (0.013322118500000008) (0.013368603000000007) (0.013470556999999994) (0.013348869000000013) (0.013132925500000003) (0.013667917500000001) (0.0134991785) (0.013592919000000009) (0.013190109000000005) (0.013216539) (0.013442715499999994) (0.013281318) (0.013434071999999991) (0.013380512499999997) (0.01356093500000001) (0.013457165500000007) (0.013226876999999998) (0.013196039500000006) (0.013089753499999995) (0.013454699500000014) (0.013413975999999994) (0.01316002949999999) (0.013426698000000015) (0.013269474000000003) (0.013247395499999995) (0.013569959499999978) (0.013527663500000009) (0.01331596950000001) (0.013256532000000001) (0.013341964499999984) (0.012870665500000003) (0.01303312999999999) (0.013154877999999995) (0.012871745000000004) (0.013236819999999996) (0.013021157499999991) (0.01319364449999999) (0.013172981) (0.013463772499999999) (0.013430412000000003) (0.01321240450000001) (0.012897587500000002) (0.013141977999999999) (0.013149400499999991) (0.013049217500000002) (0.013154983500000009) (0.012946773999999994) (0.013236604000000013) (0.013016797999999996) (0.012866515000000009) (0.012969824500000005) (0.013219967999999999) (0.01299945050000001) (0.013143509999999983) (0.013033597499999994) (0.013072266499999999) (0.013331860999999987) (0.013197570999999991) (0.012846347499999994) (0.013318364999999999) (0.0129890545) (0.013689273500000015) (0.013606887499999998) (0.013402307500000002) (0.013376250000000006) (0.013123852499999991) (0.013337103000000003) (0.013155657500000001) (0.013655785500000003) (0.013422030499999987) (0.014076286499999993) (0.013298028000000003) (0.013368481000000002) (0.01324198700000001) (0.013473718499999995) (0.013388447499999998) (0.014361351500000008) (0.01342014900000002) (0.013451790000000005) (0.013587244500000012) (0.013366099500000006) (0.013157301999999996) (0.013337795500000013) (0.01361126) (0.013118073499999994) (0.01354487) (0.013315190000000005) (0.013618315999999991) (0.013346675500000002) (0.013320008999999994) (0.013461646499999994) (0.013435785500000005) (0.01365200150000001) (0.012744209000000006) (0.012850723500000008) (0.012984374499999993) (0.012843969499999996) (0.013136010500000003) (0.012984325500000005) (0.012704000000000007) (0.013297109999999987) (0.012909602500000006) (0.012945116500000006) (0.012903158500000012) (0.01324623400000001) (0.013254441999999991) (0.013054187000000009) (0.013043785000000002) (0.013235702500000002) (0.01319000699999999) (0.012958823500000008) (0.013303267499999993) (0.012877895) (0.012942632499999995) (0.012890219999999994) (0.0135012355) (0.012905235000000001) (0.013296834999999993) (0.013458510499999993) (0.013041526999999983) (0.012846201500000001) (0.01324171049999999) (0.013305826000000007) (0.012990842500000002) (0.01301379100000001) (0.013394497499999991) (0.013284590499999999) (0.013701847000000017) (0.013058995500000004) (0.013305724500000018) (0.013436195999999984) (0.013173230499999994) (0.013511512500000003) (0.013726658999999988) (0.013260103999999995) (0.01351976299999999) (0.013254161) (0.013659268000000002) (0.013314146999999998) (0.013757786000000008) (0.013460993500000004) (0.013265950999999998) (0.013342692500000003) (0.01328905150000001) (0.013504364500000005) (0.01326034949999999) (0.013188931499999987) (0.013114147000000007) (0.013140466500000003) (0.013472375999999994) (0.01371687299999999) (0.013356663000000005) (0.0134477935) (0.013309938500000021) (0.013248666000000006) (0.01311140849999999) (0.013270562999999985) (0.013066648000000014) (0.012977520000000006) (0.012785734999999979) (0.0129656665) (0.01333623049999999) (0.013235934000000005) (0.013008347500000003) (0.01273170450000001) (0.013001213999999997) (0.013063042999999996) (0.013091247) (0.013672552500000004) (0.013208960999999991) (0.013229690500000002) (0.013130449000000016) (0.013137789499999983) (0.01277097399999999) (0.012970238999999995) (0.013000316500000011) (0.01288316249999999) (0.012921303999999995) (0.013034163000000001) (0.012912265500000006) (0.01316829600000001) (0.013014506999999995) (0.013217887500000011) (0.01327629150000001) (0.013751490500000005) (0.012894772000000013) (0.013531968000000005) (0.012963021500000005) (0.013698034500000025) (0.013417037499999993) (0.013072978499999999) (0.013386137500000006) (0.013306078999999998) (0.013488541999999992) (0.013460219500000009) (0.013224719999999995) (0.013238881500000008) (0.013116268) (0.013401122500000001) (0.013586586999999997) (0.013764749500000006) (0.01372506900000002) (0.013181757500000002) (0.013188624499999996) (0.0135310565) (0.013432249000000007) (0.013412352499999988) (0.013248999499999997) (0.013686900500000002) (0.013263857500000004) (0.013764257000000016) (0.013217832499999999) (0.013240854999999996) (0.01346077100000001) (0.013256932999999985) (0.013399676) (0.0133008815) (0.013436882999999983) (0.0134430995) (0.013635922499999995) (0.013616394500000004) (0.013098120500000018) (0.012836737) (0.012980426499999989) (0.013256280500000009) (0.013040140000000006) (0.013437292500000017) (0.013021982000000015) (0.01273154750000001) (0.013003303500000007) (0.012971368000000011) (0.013421377499999998) (0.01301548349999998) (0.013223532499999996) (0.013177035000000017) (0.013149372999999978) (0.01307588350000001) (0.012806573500000001) (0.013046656500000003) (0.012840275499999998) (0.013229592000000012) (0.013066751000000001) (0.01316421199999998) (0.012763793500000009) (0.013165370999999995) (0.013145005500000015) (0.01332205950000001) (0.013140147000000019) (0.012847394999999998) (0.012972655999999999) (0.013266848500000011) (0.012982941999999997) (0.013274258499999997) (0.013399070999999999) (0.013823000000000002) (0.013218753500000013) (0.01314382) (0.013503084500000012) (0.013261919000000011) (0.01327315300000001) (0.013601011499999996) (0.013127200000000006) (0.013321645500000007) (0.013276594500000002) (0.013439740999999991) (0.013791956999999994) (0.013370345500000005) (0.013559285000000018) (0.013490515999999994) (0.013763189999999995) (0.013011729000000014) (0.013113466000000004) (0.013222974499999998) (0.013233327500000003) (0.013336555499999986) (0.013090823500000001) (0.013151839500000012) (0.013528721500000007) (0.013394614999999999) (0.013495462) (0.013290028500000009) (0.013378226500000007) (0.013294679500000003) (0.013417011499999978) (0.0130604275) (0.013218685000000008) (0.013515999499999987) (0.013314630500000008) (0.013042577) (0.013159363000000007) (0.012899261999999995) (0.013236197500000005) (0.013198783499999991) (0.013115150000000006) (0.012985252500000016) (0.012854153999999993) (0.013130720499999998) (0.012891167500000009) (0.012875808500000002) (0.013208026999999997) (0.01313550949999999) (0.01293431249999999) (0.012953835499999997) (0.013350087499999996) (0.012899967000000012) (0.013033411000000009) (0.012846197500000017) (0.013329052000000008) (0.013052297000000004) (0.012982542) (0.013175172499999999) (0.013270915500000008) (0.013083050999999998) (0.013034632000000004) (0.013412896000000007) (0.013002815499999987) (0.013251388500000003) (0.013546396000000002) (0.013568285) (0.013440140000000003) (0.014012285499999999) (0.013472646500000005) (0.013367831999999996) (0.013367391000000006) (0.013532227000000008) (0.013286509000000002) (0.013095909999999988) (0.013559647000000022) (0.013198401499999998) (0.013379238500000001) (0.01320081649999999) (0.013518376000000012) (0.01357902200000001) (0.013747649) (0.013326212000000004) (0.013135423499999993) (0.01336778000000001) (0.01328014949999999) (0.013459673000000005) (0.013151190500000007) (0.013289141000000018) (0.013712062999999997) (0.013392063499999995) (0.01325632050000003) (0.013492935999999983) (0.013439577500000022) (0.013377129000000001) (0.013602448000000017) (0.013443680499999985) (0.013229431) (0.012844044999999998) (0.013234531499999994) (0.012945599500000002) (0.012937950000000017) (0.012948260000000003) (0.012854929000000001) (0.012818073) (0.013397409999999998) (0.013207353000000005) (0.013027088499999992) (0.013144492500000007) (0.013288723499999988) (0.012910313500000006) (0.0133372415) (0.012853572999999993) (0.01269638200000002) (0.012742814500000005) (0.01285828800000001) (0.012728975500000003) (0.012947111000000011) (0.012929896499999996) (0.012823826999999996) (0.012908222499999997) (0.013014434000000005) (0.013107498999999995) (0.013249391499999999) (0.012898280499999998) (0.013123058000000007) (0.013215569999999996) (0.012983333) (0.0128211575) (0.012822198000000007) (0.013153774999999993) (0.013268255000000007) (0.013447644999999994) (0.013435286500000004) (0.013265554499999999) (0.013546332000000008) (0.013359683499999997) (0.013628192000000011) (0.013472770000000009) (0.0135211415) (0.013314421500000007) (0.013808015500000007) (0.013613279500000006) (0.013294494500000004) (0.013422261500000005) (0.013235562999999992) (0.013448332999999993) (0.013218366500000009) (0.01332975950000001) (0.013266098000000004) (0.013233387) (0.013101559500000012) (0.013296567500000009) (0.013405762500000015) (0.013391356499999993) (0.013209194500000007) (0.013355121999999997) (0.013168934500000007) (0.013414854000000018) (0.013236719000000008) (0.013423397500000003) (0.013220160500000008) (0.013124231) (0.012915933000000004) (0.013064918500000008) (0.013216382999999998) (0.012939888999999996) (0.013130465499999994) (0.013199882999999996) (0.013103745) (0.013395371000000003) (0.013083915499999987) (0.01327558899999999) (0.013281385000000007) (0.012996194500000016) (0.013096704999999986) (0.013069258499999986) (0.013186422499999989) (0.013052923999999994) (0.013341720499999987) (0.01292698099999999) (0.013069754000000003) (0.013039704499999999) (0.01295933199999999) (0.0134207415) (0.013153764999999998) (0.012895970000000007) (0.012982959000000002) (0.013169136500000012) (0.013072543500000006) (0.013522764499999992) (0.013613924999999999) (0.013215662999999989) (0.013347091999999991) (0.01306697150000001) (0.013311226000000023) (0.013780242999999984) (0.013522137000000004) (0.013411342999999992) (0.013413451000000007) (0.013953010000000002) (0.013430827500000006) (0.013520614999999986) (0.013498154999999998) (0.013655936499999993) (0.013372342500000009) (0.013564319000000005) (0.013355889499999996) (0.013971550999999985) (0.013588274499999997) (0.013592199) (0.01328172200000001) (0.013335673000000006) (0.01324626249999998) (0.013205223000000002) (0.013498742500000008) (0.013174938999999997) (0.013369065999999999) (0.013366398500000015) (0.013210833500000005) (0.013521037999999985) (0.013470965500000001) (0.013655755500000005) (0.013782860000000008) (0.013250488000000019) (0.013147991000000012) (0.012997125999999998) (0.013223598500000003) (0.012877319000000012) (0.012877805999999992) (0.013143513499999995) (0.012774103000000009) (0.01299923750000001) (0.013296315500000003) (0.012993330499999997) (0.012926240499999991) (0.012888467) (0.012919498500000001) (0.012997408000000002) (0.019638635500000015) (0.013146550499999993) (0.012980260500000007) (0.0131341725) (0.013210077) (0.013075221999999997) (0.013103004500000001) (0.013172536499999998) (0.013265037000000007) (0.01273627049999998) (0.013276577000000012) (0.013134869000000007) (0.013110688999999995) (0.01319128650000001) (0.0130360105) (0.013399463499999986) (0.012847629499999999) (0.013161988999999971) (0.013901096500000015) (0.013578236999999993) (0.013501105999999999) (0.0133132995) (0.013183208000000002) (0.013407473500000003) (0.013356142500000001) (0.013298265500000003) (0.013340836999999994) (0.013315885) (0.013489177500000005) (0.013467125499999996) (0.013482663500000006) (0.013626042500000005) (0.013282034499999998) (0.013234269999999992) (0.013399150999999998) (0.013203462499999999) (0.013412572000000011) (0.013190386499999998) (0.013259850500000003) (0.01354971599999999) (0.0131140005) (0.013427237000000009) (0.013398493499999997) (0.0132467525) (0.013367608500000003) (0.013205528999999994) (0.013474557000000012) (0.013296350499999998) (0.013608756000000014) (0.013647488499999985) (0.012978249000000011) (0.0130997645) (0.012984436500000002) (0.013046527500000002) (0.012845039500000002) (0.013429069500000002) (0.013074373000000014) (0.013457337500000013) (0.013475397) (0.013161144500000013) (0.01310262899999999) (0.013107213499999992) (0.013316613000000005) (0.013074797499999999) (0.013261530000000007) (0.012885179499999996) (0.013017945000000003) (0.012812418999999992) (0.013267928500000012) (0.013238648999999991) (0.013045595499999993) (0.012929627000000013) (0.012840145499999997) (0.013002081500000012) (0.013071601499999988) (0.013236406500000006) (0.013024345999999992) (0.013373063500000004) (0.013605648999999997) (0.013442345999999994) (0.013557838000000003) (0.01294337000000001) (0.013478716999999987) (0.013711930000000011) (0.013263839500000013) (0.013912849000000005) (0.013242246500000013) (0.013429429000000007) (0.01323606099999998) (0.013237944500000015) (0.013558020000000004) (0.013485458000000006) (0.013584990500000005) (0.013301566999999986) (0.01357108500000001) (0.013275311500000012) (0.013337684500000002) (0.013390744999999996) (0.013449302999999996) (0.013142152500000004) (0.013431062500000007) (0.013376995500000016) (0.013124511999999991) (0.013764632499999999) (0.013539329499999989) (0.013509064500000001) (0.013420321499999999) (0.013539577499999997) (0.013606643000000015) (0.013317079999999995) (0.01353947350000001) (0.013383087000000002) (0.013603941500000022) (0.013473828500000007) (0.013221538000000005) (0.013222506499999995) (0.013015685499999999) (0.012932598000000003) (0.013081492499999986) (0.012963749999999996) (0.012945181000000014) (0.013020795500000001) (0.013032024500000003) (0.01319530549999999) (0.013286603500000008) (0.012940859999999998) (0.012959282500000002) (0.013244305999999997) (0.012944671500000005) (0.012955009500000003) (0.012970696500000004) (0.0128958515) (0.013133071999999996) (0.013141915000000004) (0.013004314000000003) (0.012926707499999995) (0.0128379765) (0.012970415999999999) (0.01324260599999999) (0.012933591000000008) (0.013332795000000008) (0.012880517000000008) (0.013004439500000006) (0.013420426999999999) (0.013217081500000005) (0.013000415000000015) (0.0132006145) (0.013429993000000001) (0.013209557999999982) (0.0135250185) (0.013464510999999998) (0.013281795000000013) (0.013172879999999998) (0.013227761000000018) (0.013240312500000004) (0.013887216500000021) (0.013385976500000007) (0.013098511499999993) (0.01339783949999998) (0.013235818499999996) (0.013361199500000004) (0.013870175500000012) (0.013404123000000004) (0.013278182999999999) (0.013198115999999996) (0.013236032999999994) (0.013473878499999994) (0.013167423500000011) (0.01352046649999998) (0.013546790500000003) (0.013391919499999988) (0.013377640999999996) (0.013565861499999998) (0.013226012999999995) (0.013171720999999997) (0.013270958000000013) (0.01316182249999999) (0.013320712999999998) (0.012853206999999991) (0.012859689499999993) (0.013210554999999999) (0.012859096000000014) (0.012888861000000001) (0.013153308500000002) (0.01310848499999999) (0.013042224499999991) (0.012974098000000003) (0.013014585499999995) (0.013084579999999998) (0.013188390500000008) (0.013279548999999988) (0.013213119499999995) (0.013285312500000007) (0.013208729500000002) (0.01292194649999999) (0.013070624999999989) (0.01333219699999999) (0.012983608500000007) (0.013057505499999997) (0.013047268) (0.01321572) (0.0129898695) (0.0131515445) (0.013221790499999997) (0.012974507999999996) (0.013208700000000004) (0.013074839500000004) (0.013166870999999983) (0.013316871500000008) (0.013153140500000007) (0.013719799500000004) (0.013396595499999997) (0.013330137000000006) (0.01333102450000001) (0.013131136999999987) (0.013369721999999987) (0.013098316999999984) (0.013158310500000006) (0.013435164) (0.013315918499999996) (0.013574269000000014) (0.013617103000000005) (0.01323824350000001) (0.013299229999999995) (0.013789441999999999) (0.013481561999999989) (0.013357379499999988) (0.013092899000000005) (0.013456028000000009) (0.013418816) (0.013404959000000008) (0.013395816000000005) (0.013681476499999998) (0.013579098499999984) (0.013712241999999986) (0.013540273500000005) (0.013143777999999995) (0.013437172000000011) (0.013396258500000008) (0.013141630500000001) (0.013319736999999984) (0.013576519999999995) (0.012861289000000012) (0.01298750600000001) (0.013066026500000008) (0.012982142499999988) (0.013176509499999989) (0.013190452000000005) (0.013154027499999998) (0.012898445499999994) (0.012967383500000013) (0.013164457000000004) (0.012956758499999999) (0.012991318999999987) (0.013382769999999988) (0.013174963499999998) (0.012846927000000022) (0.013079554499999993) (0.013172668999999998) (0.01325140100000001) (0.012995945999999994) (0.01300755449999999) (0.012915687000000009) (0.013185390499999991) (0.013054043000000001) (0.013172365000000005) (0.013427206499999997) (0.013233996500000011) (0.01306333300000001) (0.01333628349999999) (0.013268397500000001) (0.012870900500000004) (0.0130287865) (0.01309671350000001) (0.013101327999999995) (0.013309648000000007) (0.013181845499999997) (0.013118830000000012) (0.013236251500000004) (0.013334829500000006) (0.013537626999999997) (0.013215783500000008) (0.013470115000000005) (0.013378927499999999) (0.013125350500000008) (0.013351981000000013) (0.013585765999999985) (0.013324275000000024) (0.01342125299999998) (0.013639423999999997) (0.01336659300000001) (0.013397194000000001) (0.013328984000000016) (0.013556824499999995) (0.013221214500000009) (0.013228478000000002) (0.013517493500000005) (0.013374287499999998) (0.013131292999999988) (0.013317537499999976) (0.013722895999999998) (0.01347293799999999) (0.013442727000000015) (0.013582737999999997) (0.013546655000000019) (0.013284896500000018) (0.01286216200000001) (0.012860800999999991) (0.013059079000000001) (0.013586863500000004) (0.013115473000000002) (0.012916472499999984) (0.013136015500000014) (0.01297962350000001) (0.013125610999999995) (0.013054022500000012) (0.012969138499999991) (0.01319390699999999) (0.013174667000000015) (0.013041059000000008) (0.012817710499999996) (0.013396925000000018) (0.013129345000000014) (0.01313293850000001) (0.012982103000000009) (0.01298547600000001) (0.013136039999999988) (0.012932376499999995) (0.013350461000000008) (0.01333469050000001) (0.013470596500000001) (0.013342166499999988) (0.013203307999999997) (0.013376985500000008) (0.013179313999999998) (0.01323008349999999) (0.013019937499999995) (0.013312483000000014) (0.013465747499999986) (0.013406860500000006) (0.013164433000000003) (0.013308887000000005) (0.013236848999999995) (0.01314787399999999) (0.013415734499999984) (0.013410295000000003) (0.014028220499999994) (0.013455767999999993) (0.013284600499999993) (0.013519333999999994) (0.013949464500000008) (0.013365242) (0.013586131000000001) (0.013427693000000004) (0.013444206000000014) (0.013531774499999996) (0.013861689499999996) (0.0135039525) (0.013456142500000018) (0.013551841999999995) (0.013370211999999979) (0.013482129999999995) (0.01349084049999999) (0.013454780500000027) (0.013679008999999992) (0.013450018000000008) (0.013760211000000008) (0.01359364149999999) (0.013320300500000007) (0.013473213999999997) (0.012987017500000003) (0.012824943999999991) (0.012925774999999987) (0.013164451500000007) (0.013002999999999987) (0.013061551500000004) (0.013010029500000006) (0.013065587000000004) (0.013238010500000008) (0.013271149999999982) (0.013118114) (0.013181596000000004) (0.012911481500000002) (0.012939886999999997) (0.01323793099999998) (0.013061452500000001) (0.012923251499999996) (0.013164111999999992) (0.01296298550000001) (0.013183267499999998) (0.013290718000000007) (0.013229755999999995) (0.013025986500000017) (0.013031146500000021) (0.01313281799999999) (0.013054235499999997) (0.012978523499999992) (0.01296759800000001) (0.013197795499999998) (0.013046939499999993) (0.013072590500000009) (0.013092074499999995) (0.013410759999999994) (0.0134893705) (0.01360844500000001) (0.013331555000000009) (0.013634438000000013) (0.013357677499999998) (0.013293437000000005) (0.013550983999999988) (0.013191821499999992) (0.013488880499999995) (0.013303910000000002) (0.013348922000000013) (0.013607401500000005) (0.013587079000000002) (0.013179595000000016) (0.013199552000000003) (0.013330250499999988) (0.013269659500000003) (0.01379122549999999) (0.013036950000000005) (0.013380346999999987) (0.013164438999999986) (0.013687788499999992) (0.013316158999999994) (0.0140377535) (0.01329340150000001) (0.013430130000000012) (0.013381834499999995) (0.013472433499999992) (0.013194777000000019) (0.013471391499999999) (0.013711831499999994) (0.013042993500000002) (0.012906101999999989) (0.013077660500000005) (0.012765270499999995) (0.012885413500000012) (0.012796770500000013) (0.012927070499999999) (0.013314899000000005) (0.013044601000000003) (0.013108884500000015) (0.013146482500000015) (0.013126891500000001) (0.01373836299999999) (0.013029844499999998) (0.012959937000000019) (0.01304256049999998) (0.012989828999999994) (0.012798642499999999) (0.01290203999999999) (0.012823939500000006) (0.013037360499999998) (0.012904341) (0.012815578000000022) (0.01343325849999999) (0.013008200499999997) (0.013003800499999996) (0.013538078500000009) (0.012973425499999997) (0.013086865500000003) (0.013189714500000005) (0.012925420499999993) (0.01319476700000001) (0.013230111500000002) (0.013293678000000003) (0.013616050500000018) (0.013217897999999992) (0.013081206000000012) (0.013296318000000015) (0.013214874500000001) (0.01322137399999998) (0.013531290999999987) (0.013447253999999992) (0.013448211000000002) (0.013469848500000006) (0.013469005999999992) (0.013861724500000006) (0.013201112999999987) (0.013278005499999995) (0.013218191000000004) (0.013138658999999997) (0.013566301500000003) (0.013100066500000007) (0.013318667499999992) (0.013061217000000014) (0.013452584500000003) (0.013226355500000009) (0.013671244000000013) (0.013361268999999995) (0.013162028000000006) (0.013533242499999987) (0.013411774000000015) (0.013425423999999977) (0.01325745149999999) (0.013728877) (0.012697450999999998) (0.012779043000000004) (0.012972523) (0.013186072499999993) (0.013022708499999994) (0.01282986350000001) (0.013028633499999998) (0.013082403499999992) (0.013011169500000017) (0.013087972000000003) (0.013042470999999986) (0.013062239999999989) (0.013170547500000004) (0.013124071999999987) (0.013082676000000015) (0.012971345999999995) (0.012857919999999995) (0.012980124999999995) (0.012889888000000002) (0.012899227999999999) (0.012945779000000004) (0.013127164499999996) (0.013219679499999998) (0.01287491049999999) (0.01292695649999999) (0.01303373799999999) (0.012862812499999987) (0.012979118499999998) (0.013173015499999996) (0.012959951000000011) (0.012972760499999986) (0.013047530500000001) (0.013378923000000001) (0.01321311) (0.013088157500000003) (0.013572929999999997) (0.0133547985) (0.013799717500000003) (0.013303519500000013) (0.013679986499999991) (0.013619625999999996) (0.013317310999999998) (0.013400066000000002) (0.013291508000000007) (0.013751105500000013) (0.013660600000000009) (0.013127575000000002) (0.013332325000000006) (0.013252541999999992) (0.013033402999999985) (0.013153427999999995) (0.013765610500000011) (0.013380983999999999) (0.013295558500000013) (0.013423429) (0.013271560500000001) (0.014122713000000023) (0.013219268000000006) (0.013275595500000001) (0.0133595455) (0.01360284099999999) (0.013246274000000002) (0.013338950000000002) (0.013165084999999993) (0.013119771000000016) (0.012828220000000001) (0.012801025500000007) (0.012966946500000007) (0.012861279500000003) (0.012985372000000009) (0.0126964205) (0.012916167500000006) (0.013363775000000008) (0.013041258) (0.013306520000000016) (0.013096302500000004) (0.01322970150000001) (0.013218482000000017) (0.012934926000000013) (0.013369145999999998) (0.012911092500000013) (0.013165811) (0.012993275999999998) (0.01297841949999999) (0.012857785499999996) (0.013071674000000005) (0.012753155499999988) (0.0129167315) (0.013336673999999993) (0.013066311999999997) (0.013157560499999985) (0.01316901299999998) (0.013000806500000003) (0.013077401000000002) (0.012987415000000016) (0.013555859000000017) (0.013220475999999995) (0.013469176499999999) (0.013284600999999993) (0.013562248000000013) (0.013100591999999994) (0.013098511500000007) (0.013491499500000004) (0.01354404649999999) (0.0131659145) (0.013542157999999999) (0.013474616500000008) (0.013479009500000014) (0.013647405999999987) (0.013655575500000003) (0.013399131499999994) (0.013386816000000024) (0.013268965000000008) (0.013560350000000013) (0.0132461195) (0.013801070999999998) (0.013111017500000002) (0.013418030000000011) (0.013347587499999994) (0.013169166499999996) (0.01355038800000001) (0.013352129000000004) (0.013529144000000007) (0.013541451999999995) (0.01336733449999998) (0.013364697500000022) (0.013432563999999994) (0.013422230499999993) (0.01329174200000001) (0.013057868500000014) (0.01304079000000001) (0.012851120499999993) (0.0130193465) (0.012774383) (0.012878394000000015) (0.013130503000000002) (0.012859493000000013) (0.01283976299999999) (0.012902352500000006) (0.01323853550000001) (0.012825884999999995) (0.01305207650000001) (0.013274118499999987) (0.0131072765) (0.013494962499999999) (0.01301687700000001) (0.012939191000000003) (0.012931930999999994) (0.013337648000000007) (0.0130797505) (0.01319016349999999) (0.013008828) (0.012829351500000002) (0.012954459500000001) (0.013634034000000017) (0.012895394500000018) (0.013244946000000007) (0.013000878999999993) (0.01304467550000002) (0.013291633500000025) (0.013200858999999995) (0.013539035500000005) (0.013160144499999998) (0.013220410500000002) (0.01332573749999999) (0.013086990000000007) (0.0134505355) (0.013114546500000004) (0.013615231000000005) (0.013474532999999997) (0.013281161000000014) (0.013291063500000005) (0.013325612500000014) (0.013268824500000012) (0.01340954699999998) (0.01331842599999998) (0.013027444000000013) (0.013472228499999989) (0.013331676000000015) (0.013632577000000007) (0.013230609000000004) (0.013190665000000004) (0.01339377500000001) (0.013165858999999988) (0.013454161999999992) (0.013495551500000008) (0.013114499999999987) (0.013849111999999997) (0.013362776999999992) (0.013188954000000003) (0.013524003499999993) (0.013689190000000004) (0.0130102785) (0.012881338500000006) (0.013018598500000006) (0.012987726000000005) (0.013001455499999995) (0.013010405499999989) (0.012887521499999999) (0.012989566999999994) (0.013069581499999997) (0.013025738999999995) (0.012980487499999999) (0.013136735999999982) (0.013099002000000012) (0.013442455500000006) (0.013606067999999999) (0.013336457999999995) (0.013111432000000006) (0.012733466499999999) (0.013286864499999995) (0.012841906500000014) (0.013252478000000012) (0.013195287) (0.01288618150000001) (0.012898874000000005) (0.01305596249999999) (0.013244585000000003) (0.012996158999999993) (0.013180149000000002) (0.012995142000000001) (0.01287711200000001) (0.013126288) (0.01312891099999998) (0.013288855000000016) (0.013266940500000005) (0.013596693500000007) (0.013315853000000002) (0.01342502100000001) (0.013284563499999999) (0.013133223000000013) (0.01314707200000001) (0.013707706000000014) (0.013365290000000002) (0.013545234499999989) (0.013568175000000016) (0.013235881500000005) (0.013901396499999996) (0.013567947999999982) (0.013272664000000003) (0.013115417500000004) (0.013304879000000006) (0.013438045000000023) (0.013187655500000006) (0.01329715699999999) (0.01337186750000001) (0.013597259) (0.013351938500000007) (0.01326867700000002) (0.013564404000000002) (0.013258711000000006) (0.013070995500000016) (0.013428569000000001) (0.013321139999999981) (0.013323919000000017) (0.013772704999999996) (0.012723034999999994) (0.012712762500000002) (0.013378569000000007) (0.012918019000000003) (0.013069889000000001) (0.012843632500000007) (0.013004071999999992) (0.013185469499999991) (0.013134675499999998) (0.013424293000000004) (0.013313273) (0.013072875999999997) (0.013412268500000005) (0.013013418000000027) (0.0130113325) (0.013060848000000014) (0.012898826000000002) (0.013100568500000007) (0.013036623000000011) (0.012927035000000003) (0.012938049999999993) (0.012813818000000005) (0.013027317499999996) (0.013015436499999991) (0.013004322000000013) (0.012946435500000006) (0.012868116500000013) (0.013247640500000005) (0.01319918600000003) (0.013165696500000004) (0.013183793499999985) (0.013169183999999973) (0.013615713500000001) (0.013545520499999991) (0.01334892750000001) (0.013487931000000009) (0.01344287050000001) (0.013489603000000003) (0.013467492500000025) (0.013109434999999989) (0.01346208850000001) (0.013292373999999996) (0.01339798099999999) (0.013589789500000005) (0.013371608000000021) (0.01318565749999999) (0.013557861499999976) (0.0133059715) (0.013572593999999993) (0.013561288000000005) (0.013223911500000005) (0.013230424500000004) (0.013418486500000007) (0.013167565000000006) (0.013329441499999997) (0.01337795550000001) (0.013324140499999998) (0.013498442) (0.013629203500000006) (0.013523968000000011) (0.013576656999999992) (0.013181597999999989) (0.01329101449999999) (0.013490892000000004) (0.012797420500000004) (0.013117529000000003) (0.013028644000000006) (0.013117050500000019) (0.013163632999999994) (0.01285120599999999) (0.013214932000000013) (0.013148335499999997) (0.013509092) (0.01299706049999999) (0.01360109650000002) (0.0129909245) (0.01297643250000001) (0.013095146999999988) (0.013389315499999985) (0.012969013000000001) (0.012776818499999995) (0.01345727350000002) (0.013049512000000013) (0.012937038499999984) (0.012887692000000006) (0.012885365499999996) (0.013199774499999983) (0.01304884249999999) (0.013101630999999989) (0.013386203000000013) (0.013337497500000003) (0.012927196500000016) (0.013024090999999988) (0.013448422500000001) (0.013067715000000021) (0.012747564500000017) (0.013550536500000002) (0.013200934499999983) (0.013289294500000007) (0.013104156000000006) (0.013243808499999996) (0.013055701500000003) (0.013306174999999976) (0.013441228) (0.013321723500000007) (0.013539178500000013) (0.013271073499999994) (0.013647755499999997) (0.013251536500000008) (0.01359664649999999) (0.013216411500000011) (0.013518754499999994) (0.013153309500000002) (0.013418583999999997) (0.013433198500000007) (0.01332362949999999) (0.013814172999999985) (0.013432470999999974) (0.013200692499999986) (0.013899846000000007) (0.013879849000000014) (0.013341112499999988) (0.013595157000000024) (0.013602298500000012) (0.013587400999999999) (0.013300528500000006) (0.013230163500000017) (0.013362373999999996) (0.012749947499999997) (0.013302625499999998) (0.013234757) (0.012839181000000005) (0.013168277500000006) (0.013248663000000008) (0.012901449500000009) (0.012928988500000002) (0.013201379) (0.013147882999999999) (0.013046768) (0.012936230500000007) (0.012826005500000001) (0.013034117500000011) (0.013201962999999983) (0.013365509000000012) (0.012689954000000003) (0.012989050499999988) (0.0129313405) (0.012897025999999992) (0.013026849499999993) (0.013123395499999996) (0.013203868500000007) (0.01295387549999999) (0.01297388549999999) (0.013008100499999994) (0.013143574500000005) (0.013358978499999993) (0.013093885999999999) (0.013084881500000006) (0.013004185000000015) (0.013231985500000015) (0.012995331999999998) (0.01348956300000001) (0.013707464500000016) (0.013452671) (0.013214259500000006) (0.01355800900000001) (0.013183277499999993) (0.013403547500000002) (0.013365673000000008) (0.013368080000000004) (0.013389882000000006) (0.013672631500000004) (0.0131794925) (0.013389398999999996) (0.013146776499999999) (0.013407532499999986) (0.013254134) (0.013355746499999988) (0.01339599050000001) (0.01338114800000001) (0.013235718000000007) (0.013188076999999993) (0.013358653000000012) (0.013770422000000004) (0.013207478000000022) (0.013074052500000002) (0.01351951450000001) (0.013443334500000015) (0.013340216499999988) (0.013401243500000007) (0.01360885050000002) (0.013624935500000004) (0.012943740999999995) (0.013006896000000018) (0.01302354600000001) (0.013151916499999985) (0.012863554000000013) (0.0128504495) (0.012956266000000008) (0.013104284500000007) (0.013078463000000012) (0.01330480249999999) (0.012966528500000005) (0.013158516499999995) (0.013183177000000004) (0.013014778000000005) (0.013068885999999988) (0.013112315000000013) (0.013023661499999992) (0.013133619) (0.013223490500000018) (0.013483661500000008) (0.01335452999999999) (0.012825153999999991) (0.012892301999999994) (0.013106371500000005) (0.01307171850000001) (0.012871900500000005) (0.013181485499999993) (0.013285136000000003) (0.013306420500000013) (0.013394397999999988) (0.01321603049999999) (0.013320488500000005) (0.013461010999999995) (0.013306567499999991) (0.013625158499999998) (0.013144402) (0.013567531000000008) (0.013176521999999996) (0.013075337000000006) (0.013148396000000007) (0.013991434999999983) (0.013313366999999993) (0.013586303500000008) (0.013623362000000014) (0.013570339499999987) (0.013452973500000007) (0.013337122499999979) (0.013300069500000011) (0.013181867000000014) (0.013275520499999985) (0.013217307999999997) (0.013324004) (0.013006495999999992) (0.013425326500000001) (0.013543749499999994) (0.013207795999999994) (0.013321631499999986) (0.013448075500000017) (0.013615482999999998) (0.013508637000000004) (0.013593503000000007) (0.013940495499999983) (0.013656841500000003) (0.013526751500000003) (0.013068050999999997) (0.012893513999999981) (0.012915767500000008) (0.013082367499999997) (0.013276432000000005) (0.012906398999999999) (0.012845457500000004) (0.01290499299999999) (0.013008637500000003) (0.013312660000000004) (0.013208317499999997) (0.013155438500000005) (0.013027086499999993) (0.013282782999999992) (0.013267728499999992) (0.013142756500000019) (0.013036463000000012) (0.012863385000000005) (0.01329843800000001) (0.012974760999999987) (0.012783432499999983) (0.013301888500000011) (0.013258336999999995) (0.013107193000000003) (0.013132221499999985) (0.013177263500000008) (0.012976873999999985) (0.012932826499999994) (0.013175862999999996) (0.013424069499999997) (0.013099393499999987) (0.013278965000000004) (0.013693990499999989) (0.014214495000000008) (0.013097975999999997) (0.013327602500000008) (0.013491547499999992) (0.013427291500000008) (0.013344585000000006) (0.013259816000000008) (0.013535144999999985) (0.013231378500000002) (0.013681716999999996) (0.01363052549999999) (0.013485899999999995) (0.013554711000000011) (0.013188836000000023) (0.013322232499999975) (0.013215025000000005) (0.01334427399999999) (0.013181477000000011) (0.013265892500000015) (0.013488597000000005) (0.013362395999999999) (0.013408346500000015) (0.013162241000000005) (0.014116432500000012) (0.013348096500000003) (0.01332971099999998) (0.013523297500000017) (0.0138248505) (0.013502740500000013) (0.013402543000000003) (0.013275172000000002) (0.012921533500000013) (0.012865166999999997) (0.012849113499999995) (0.013173325999999999) (0.01288885749999999) (0.0130604255) (0.013164584999999993) (0.013081427499999992) (0.013331308) (0.013100132499999986) (0.013240750999999995) (0.013205297499999977) (0.013067196000000003) (0.01330234050000001) (0.013244095499999997) (0.013501426499999997) (0.01324959299999999) (0.012774676999999998) (0.012892506499999998) (0.012946091500000007) (0.013414652499999999) (0.013026707499999998) (0.01326016599999999) (0.013002591000000008) (0.013202479000000003) (0.013062274499999998) (0.013119869499999978) (0.013034446500000019) (0.013215296500000029) (0.013205091499999974) (0.013480789499999993) (0.013304964500000002) (0.013276921499999997) (0.013306953999999996) (0.013155158) (0.01316472149999999) (0.01329615000000002) (0.013162158500000007) (0.013536191500000003) (0.013862256000000003) (0.013667848000000024) (0.013637212500000023) (0.013174036499999986) (0.013522045999999996) (0.013227896500000016) (0.013529892000000002) (0.013411361499999983) (0.013357132500000007) (0.013244011000000014) (0.013124308000000001) (0.01322422849999999) (0.013524856500000015) (0.013349674499999992) (0.013270240000000003) (0.013169896500000014) (0.01375960250000001) (0.013537485500000015) (0.013452118000000013) (0.013682499) (0.013120237500000007) (0.013883726499999999) (0.013412395999999993) (0.013624149000000002) (0.013400123) (0.013036035500000001) (0.012711013999999993) (0.013252337000000003) (0.013080722499999989) (0.013026574499999999) (0.013064416999999995) (0.012905583999999998) (0.013174620499999998) (0.012950088499999998) (0.013162224999999986) (0.013194791999999997) (0.012793446) (0.012961703000000005) (0.012937221499999998) (0.013183742000000012) (0.01327233650000001) (0.013234241000000008) (0.013014808500000016) (0.013212950499999987) (0.012984762999999996) (0.012883950000000005) (0.013420980999999985) (0.012905040499999992) (0.01289843799999997) (0.012913693000000004) (0.0133461265) (0.013306175000000003) (0.012877621000000006) (0.013306725999999991) (0.01301257900000001) (0.013340680000000008) (0.01297421600000001) (0.013544840499999988) (0.013173082999999988) (0.013309202999999978) (0.013376810500000003) (0.0131518625) (0.0132688225) (0.013278148999999989) (0.013157198999999994) (0.013553527999999981) (0.013359715000000022) (0.01353312399999998) (0.013566373000000007) (0.013175509000000016) (0.013487339999999987) (0.013259673999999985) (0.013577525999999993) (0.013351335000000006) (0.013081541500000002) (0.013359285500000026) (0.013115242000000013) (0.013470080999999995) (0.01381533950000001) (0.013390388500000003) (0.013281650500000006) (0.01331552250000001) (0.013537555499999993) (0.013221545000000001) (0.01307119900000002) (0.013350033999999983) (0.013826541500000025) (0.0133270895) (0.013498820499999994) (0.012971940500000015) (0.013058322999999997) (0.012785714500000003) (0.012970474999999995) (0.013105501999999991) (0.012839128000000005) (0.013037431500000016) (0.013435666499999999) (0.013090398000000017) (0.013103302999999983) (0.013136820000000007) (0.013135507000000005) (0.012840820000000017) (0.012971423999999995) (0.013090994999999994) (0.012974119499999992) (0.01295585149999999) (0.012886294000000006) (0.012781437499999992) (0.012758671) (0.013016747999999995) (0.013050166500000002) (0.013101903999999998) (0.013043299500000022) (0.012947843499999986) (0.012975860000000006) (0.013204025500000008) (0.012956737499999996) (0.013301818000000007) (0.013128640499999997) (0.013561224999999982) (0.013098994500000002) (0.01369926099999999) (0.01333340000000001) (0.013453578500000007) (0.0135853145) (0.013170505499999999) (0.013708635499999997) (0.013363875499999997) (0.013173994500000008) (0.01329272649999999) (0.013247125499999998) (0.013604632500000005) (0.01344799250000002) (0.013780142499999995) (0.013372829000000003) (0.013340716500000016) (0.013325660999999989) (0.013628617999999981) (0.013328153500000009) (0.01357763900000003) (0.013302949999999994) (0.013546222999999982) (0.013209777999999991) (0.01358153849999999) (0.013394585499999972) (0.013531632500000002) (0.01375530849999998) (0.01336607799999999) (0.013297761499999991) (0.013716999500000007) (0.013376249499999993) (0.013454977999999992) (0.013738123500000018) (0.012866504) (0.013450874000000002) (0.01903624250000001) (0.013101870500000001) (0.013048507999999986) (0.013410058500000002) (0.013051603999999994) (0.012936105000000003) (0.013194480000000008) (0.01311251849999999) (0.01336872) (0.01311673749999999) (0.013025164000000006) (0.013173376000000014) (0.013337088499999997) (0.013138709000000012) (0.012937443999999992) (0.013099890500000003) (0.013037714500000006) (0.012888695500000005) (0.013037641500000016) (0.013137141000000005) (0.013205179499999997) (0.013087995000000019) (0.013028816999999998) (0.013334681500000015) (0.013115123499999992) (0.013191590500000017) (0.013973980499999997) (0.013253933499999995) (0.012790343999999995) (0.01310496650000001) (0.013420808000000006) (0.013409168999999999) (0.013374430500000006) (0.013452618499999985) (0.013318280000000002) (0.01331054650000002) (0.013324210500000003) (0.013458244000000008) (0.013883727999999998) (0.013403840499999986) (0.013318214000000009) (0.013506635000000003) (0.013445771999999995) (0.013304171999999989) (0.013739056) (0.01313652450000001) (0.01328858300000002) (0.013314675499999998) (0.013568975000000011) (0.013168485500000021) (0.013131241499999988) (0.013572143500000008) (0.013328455500000017) (0.013182211500000027) (0.01396898399999999) (0.013324121500000008) (0.013801914499999998) (0.013450654500000006) (0.013545494000000019) (0.01344622350000002) (0.013156448500000015) (0.013703588000000003) (0.013132368000000005) (0.013111558999999995) (0.01323381500000001) (0.01283764250000001) (0.012885199000000014) (0.013240246000000011) (0.012817062000000004) (0.013113707500000016) (0.013196645499999993) (0.012941550499999996) (0.013433721999999995) (0.013334398500000011) (0.012986378499999993) (0.01320581300000001) (0.013022965499999997) (0.01332443300000001) (0.013107697500000001) (0.012899217500000018) (0.013074595500000008) (0.013202801500000014) (0.013168284500000016) (0.013165674499999988) (0.013172272499999985) (0.012946503499999998) (0.013360122500000016) (0.01308648350000001) (0.013159039999999997) (0.01329759500000001) (0.013345756) (0.013196322999999996) (0.013377294499999998) (0.013518866500000004) (0.01361440650000001) (0.013168714999999998) (0.013145864500000007) (0.01331073699999999) (0.013160936000000012) (0.0139070045) (0.01310877299999999) (0.013765301000000008) (0.013623251000000003) (0.013422099999999992) (0.013572462499999993) (0.01344893350000001) (0.01353341700000002) (0.013304469) (0.013524344000000008) (0.013435358000000008) (0.013202003000000004) (0.014027843500000012) (0.013662202500000012) (0.01322044700000001) (0.013268008999999997) (0.013305982500000008) (0.013451259000000007) (0.01332768149999998) (0.013861526499999999) (0.014243858500000012) (0.013523534500000003) (0.013479401000000002) (0.014060323999999985) (0.01378953149999998) (0.013452886499999997) (0.01338083650000002) (0.012975472499999988) (0.012861474999999997) (0.01313781850000001) (0.012917369499999998) (0.013150765999999994) (0.012986983999999993) (0.012897384500000011) (0.012859275500000003) (0.013219933500000003) (0.013134167500000002) (0.0129913755) (0.012922885500000009) (0.013244595999999997) (0.01306876650000001) (0.013132719499999987) (0.013034504999999988) (0.012724908000000007) (0.012905547000000017) (0.01306490099999999) (0.012704209499999994) (0.012909671999999997) (0.01316937650000001) (0.013185901) (0.012967106500000006) (0.013055785999999986) (0.012851067500000007) (0.013146285999999993) (0.0133662685) (0.013275174999999986) (0.013365984499999997) (0.013215022999999992) (0.013525246500000004) (0.013138052999999997) (0.013300491999999983) (0.013387575999999998) (0.013057364999999987) (0.013108294500000006) (0.013389169000000006) (0.013112521000000002) (0.013470869999999996) (0.013702366000000007) (0.013268805000000009) (0.013550929000000003) (0.013372267000000021) (0.013547671999999997) (0.013339502500000003) (0.01356144649999999) (0.013221321000000008) (0.0134201065) (0.013512295000000007) (0.01358107900000001) (0.013129005499999999) (0.013365088000000011) (0.013543150000000004) (0.013100105000000015) (0.013355120499999998) (0.013350964999999992) (0.013317590500000004) (0.013639862500000002) (0.013427435500000001) (0.013871906999999989) (0.013756440000000009) (0.013369833500000011) (0.013786353000000001) (0.013154448000000013) (0.012950643499999998) (0.0129164165) (0.013091147500000011) (0.013184815500000002) (0.013008741000000004) (0.012890801000000021) (0.013523553000000008) (0.013161712999999992) (0.013224316) (0.013282096000000007) (0.013096559499999993) (0.013460075500000002) (0.013521790000000006) (0.012916525000000012) (0.013206619500000003) (0.01305376400000001) (0.013223920500000014) (0.013304936500000017) (0.01301915599999999) (0.013066119000000001) (0.012769377499999998) (0.012719861000000013) (0.012955322499999991) (0.013297971499999992) (0.013154978999999997) (0.013019666499999999) (0.01316696299999999) (0.013249830500000004) (0.01327284649999999) (0.01306312100000001) (0.013030115500000009) (0.013418736500000014) (0.013293712000000013) (0.013423563999999999) (0.01350465699999999) (0.013217875500000018) (0.013162114499999988) (0.013073908999999995) (0.013202270500000016) (0.01354282250000001) (0.013128715999999999) (0.013191389000000012) (0.013586926) (0.013168535999999995) (0.013323080500000015) (0.013460893500000001) (0.013492933499999998) (0.013231276) (0.013357977499999993) (0.0132298515) (0.013232988000000015) (0.013199421000000017) (0.013372185999999994) (0.013273468999999996) (0.013307026500000013) (0.013259129999999994) (0.0133018585) (0.013408497999999991) (0.013288645500000001) (0.013299929000000002) (0.013553320000000008) (0.013438533500000016) (0.013326333499999996) (0.01295245099999999) (0.013056276500000005) (0.012897336999999995) (0.012919736500000015) (0.012926161499999991) (0.0130217725) (0.013045335000000005) (0.012970702) (0.012765681999999987) (0.01297197650000001) (0.013812736000000006) (0.013139576) (0.013245892500000023) (0.013103310999999992) (0.012920349499999997) (0.013065219999999989) (0.012726801499999996) (0.013071886500000005) (0.013015559499999996) (0.013374205) (0.012914115000000004) (0.012769486999999996) (0.012923713000000003) (0.013041094999999989) (0.013073038999999995) (0.013329754499999999) (0.013227173999999994) (0.012870103499999994) (0.012893841500000003) (0.0128381615) (0.013218425000000006) (0.013004720499999997) (0.013138992500000002) (0.013225583499999999) (0.013279945000000001) (0.013385856000000002) (0.013392235500000002) (0.013719931500000004) (0.013290873000000009) (0.013277288499999998) (0.01326006099999999) (0.013296598999999992) (0.013185226499999994) (0.013556376000000009) (0.013484980500000007) (0.013432589999999994) (0.013367049500000006) (0.013234105499999982) (0.013545396000000015) (0.013251496000000001) (0.013460807499999991) (0.013663003999999992) (0.013182057999999983) (0.013460503499999998) (0.013410878500000015) (0.013596529999999996) (0.013167758000000002) (0.013494017000000011) (0.013385506500000005) (0.01361912500000001) (0.013424407999999999) (0.013301003500000005) (0.013670057999999999) (0.013337623499999993) (0.013062795500000002) (0.013045600000000004) (0.013072048500000003) (0.013517913000000006) (0.013020718) (0.01292230350000001) (0.012674398000000003) (0.013021996999999993) (0.012939989999999998) (0.012899895999999994) (0.013005467999999992) (0.013177601000000011) (0.013354555500000004) (0.013108756) (0.013127348499999997) (0.013018631500000002) (0.013026279000000002) (0.013168590000000008) (0.013220054000000009) (0.012833627500000014) (0.01289359200000001) (0.013321146000000006) (0.012811034499999999) (0.012947054500000013) (0.01278138999999999) (0.013302160499999993) (0.013058735500000002) (0.013194388500000001) (0.012879768) (0.013149609999999992) (0.013568899999999995) (0.013083366499999999) (0.013088673999999995) (0.013397873500000004) (0.013203540999999985) (0.013342898500000006) (0.013350379499999995) (0.013204339499999995) (0.013199509499999998) (0.013070442499999987) (0.014339139000000015) (0.013242180499999992) (0.013345343499999995) (0.0134065025) (0.013405108999999998) (0.013296522000000005) (0.013481957000000003) (0.013346217500000007) (0.013672138499999986) (0.01342998250000002) (0.0133002225) (0.013114861499999991) (0.013320167999999993) (0.013235139500000007) (0.013151571) (0.013293526000000014) (0.013303948999999995) (0.013639280000000018) (0.013523542499999985) (0.01316125500000001) (0.013710449499999985) (0.013369590999999986) (0.013580679999999998) (0.013531505499999985) (0.0127365495) (0.013329735499999995) (0.0130630105) (0.013012146500000016) (0.012853127000000006) (0.013043605) (0.0129790605) (0.01294388099999999) (0.013023474000000007) (0.013240185500000001) (0.01337841599999999) (0.012778989500000004) (0.01335064050000001) (0.012896322500000001) (0.013068948999999996) (0.01305613700000001) (0.013287413999999997) (0.013021349000000002) (0.012921598500000006) (0.012943970500000013) (0.012882375500000001) (0.012861828000000006) (0.013141089499999994) (0.013339065999999997) (0.012941009000000003) (0.012787080500000006) (0.013277640999999979) (0.0133379795) (0.012973111499999995) (0.013086914499999991) (0.012925805499999998) (0.013063543999999996) (0.013043199999999991) (0.013422766000000003) (0.013268246000000011) (0.0134150205) (0.013196220000000008) (0.013325919500000005) (0.013360774000000006) (0.013286450000000005) (0.013281619500000008) (0.0136199345) (0.013409985499999999) (0.013284866499999992) (0.013428723999999989) (0.013271092500000012) (0.013373330500000002) (0.013731253999999998) (0.013255370500000002) (0.013240735500000003) (0.013375429999999994) (0.013313259500000008) (0.013412603000000023) (0.013103767000000002) (0.013219090499999989) (0.013296311500000005) (0.01351714200000001) (0.013595277999999988) (0.013312708999999992) (0.013742341499999991) (0.013716538499999986) (0.013398610000000005) (0.013526856000000032) (0.01346587099999999) (0.013065085500000004) (0.01288966549999998) (0.012906248000000009) (0.013030890999999989) (0.01292768050000001) (0.013460799500000023) (0.013218515) (0.01309281549999998) (0.012992759499999992) (0.01292256) (0.0128969325) (0.013056876000000009) (0.013065928000000004) (0.013236784999999987) (0.01297928800000002) (0.013206598000000014) (0.013034530000000003) (0.012880838499999991) (0.012781252999999992) (0.013055974999999997) (0.012767277000000007) (0.01327672499999999) (0.013027023000000013) (0.013337226999999993) (0.013060558500000014) (0.013464769500000001) (0.01294590000000001) (0.015078203499999998) (0.013114423999999986) (0.013447030999999998) (0.013028601) (0.013409263500000018) (0.013179944499999985) (0.013503429499999997) (0.013246221500000002) (0.013673099000000008) (0.013446134499999998) (0.013123691999999992) (0.013310673499999995) (0.013141249999999993) (0.013346210499999997) (0.013350606499999987) (0.013854375000000002) (0.013539345500000008) (0.013313757499999995) (0.013752592500000008) (0.013855620000000013) (0.013487549500000001) (0.013303963000000002) (0.0133356855) (0.013350275999999994) (0.013141337499999989) (0.013250644499999992) (0.013394801999999983) (0.013211268999999998) (0.013673338999999993) (0.013616667999999985) (0.013827628999999994) (0.013383733999999994) (0.013314032000000003) (0.013469934500000016) (0.013380858500000023) (0.013836968000000019) (0.01337529500000001) (0.013003850999999997) (0.013366067499999995) (0.013149159499999993) (0.012829439999999984) (0.0130110415) (0.013231307499999997) (0.01301886449999999) (0.012985015000000003) (0.013202121499999983) (0.013020054500000003) (0.012964583500000001) (0.01306407150000001) (0.012959236000000013) (0.012930916999999986) (0.013372093000000002) (0.013130591000000011) (0.013058344) (0.012767127999999989) (0.012978941000000008) (0.012843208999999994) (0.013159521000000007) (0.01292868350000001) (0.012845688999999993) (0.012852232000000005) (0.013066110500000006) (0.013163427500000005) (0.013004355000000009) (0.013611502000000025) (0.013074979999999986) (0.01291138) (0.012983403500000004) (0.01293378399999999) (0.013121522499999996) (0.01321948349999999) (0.013565233999999995) (0.013192110500000007) (0.01318696150000001) (0.0135620075) (0.013222820999999996) (0.013366515999999995) (0.01344795) (0.013615627500000005) (0.013610946499999999) (0.013506245000000014) (0.01326393050000002) (0.013537449999999993) (0.013459888000000003) (0.013165055500000009) (0.013391848999999997) (0.01346742599999999) (0.013335955999999982) (0.013093710500000008) (0.013206185500000009) (0.01331620800000001) (0.013426236500000008) (0.013098881000000007) (0.013299523499999993) (0.013695022500000015) (0.01391000249999999) (0.013343838499999969) (0.013481544500000012) (0.01359311449999999) (0.013360331499999989) (0.013357469499999997) (0.012780086999999996) (0.012744530000000004) (0.012892271999999996) (0.012967665500000003) (0.012701679499999993) (0.012890223000000006) (0.012960674499999991) (0.013070667499999994) (0.013404669999999994) (0.013169259500000002) (0.01324537549999999) (0.013202568500000011) (0.012822044500000004) (0.013372312500000011) (0.013025172499999974) (0.013563823500000016) (0.013298113499999986) (0.012969416499999997) (0.01294099500000001) (0.012767320999999984) (0.013166277500000004) (0.013014506999999995) (0.012982660999999993) (0.013188005500000016) (0.013173852000000014) (0.013468773500000003) (0.013190631999999994) (0.013178497499999983) (0.01335156550000001) (0.013079270000000004) (0.0133684315) (0.013263999999999984) (0.013189328) (0.013328764000000007) (0.013284728999999995) (0.01334450500000002) (0.01311876599999999) (0.013094869999999995) (0.013351958499999983) (0.01355580599999999) (0.013619543999999997) (0.013234342499999996) (0.013482177500000012) (0.013792487500000006) (0.01309752950000001) (0.013197044500000005) (0.013517580000000001) (0.013296518499999993) (0.013293504499999997) (0.013243215000000003) (0.013555889000000002) (0.013559688) (0.013723837500000002) (0.013470832999999988) (0.013415383499999989) (0.013361632500000012) (0.01345673850000001) (0.013713504500000001) (0.013360157999999983) (0.013479439500000023) (0.013294113999999996) (0.013913520499999998) (0.013048254000000009) (0.013136407500000016) (0.012929215999999993) (0.012756286500000005) (0.013013438500000002) (0.013012543000000001) (0.013035117999999998) (0.013170719000000011) (0.013030159999999999) (0.012825069999999994) (0.012894586999999999) (0.013110831500000003) (0.013353047999999992) (0.013277078999999997) (0.013226886499999993) (0.013616593499999996) (0.013009067) (0.013360816499999997) (0.013228338500000006) (0.012823860999999992) (0.012865982999999998) (0.012985327000000005) (0.012897079999999991) (0.013305354000000005) (0.012878516500000006) (0.013479914499999981) (0.013079664000000019) (0.013628342000000002) (0.01337281500000001) (0.012912756499999997) (0.012925812500000008) (0.012960726000000006) (0.013174209000000006) (0.012769764000000003) (0.013554379000000005) (0.013478475000000004) (0.013093546499999997) (0.013880667500000013) (0.013114785000000004) (0.013481478499999991) (0.013413849000000005) (0.01319426600000001) (0.013486447000000013) (0.013349073499999989) (0.013590361000000009) (0.013417358500000018) (0.013346966500000015) (0.013333350500000007) (0.013358769500000006) (0.013443344999999995) (0.013247899499999993) (0.013220188499999994) (0.013484932500000005) (0.013537196500000015) (0.01336776549999999) (0.013366334499999993) (0.013643134000000001) (0.013222171000000005) (0.01347854749999998) (0.013610654) (0.013412594000000014) (0.0134785605) (0.013287743500000004) (0.013762084499999994) (0.013242122000000009) (0.013275595999999987) (0.01308999999999999) (0.013267533500000012) (0.013055617000000005) (0.013234975499999996) (0.013115204000000005) (0.012889441000000001) (0.013440158500000007) (0.013098106999999998) (0.013363908000000008) (0.012889930000000008) (0.0129811965) (0.01290595550000001) (0.012908635000000002) (0.012985483500000006) (0.012971356000000003) (0.013357574999999997) (0.01338587749999999) (0.01288418849999999) (0.013301767000000006) (0.013040369499999996) (0.01304197600000001) (0.012874938500000002) (0.013062277999999997) (0.013059404999999982) (0.013225769000000012) (0.013082615500000006) (0.013011798500000005) (0.013247056000000007) (0.013219385000000014) (0.013144853499999998) (0.013117699499999996) (0.013105293000000004) (0.013529449499999999) (0.013524641000000004) (0.013139847999999996) (0.013056530000000025) (0.013486565499999992) (0.013088537000000011) (0.013237206500000001) (0.013705803500000002) (0.013144502499999988) (0.013376093000000006) (0.013402369499999997) (0.013165672500000003) (0.01349238500000001) (0.013346024999999984) (0.013323635) (0.0133820375) (0.013547070500000008) (0.013731519500000011) (0.013099829499999993) (0.013245466500000011) (0.01324497650000002) (0.013181776000000006) (0.013317086000000006) (0.013419310000000004) (0.013321236499999986) (0.01356773900000001) (0.013552117000000002) (0.014419859999999993) (0.013514151500000002) (0.013664560499999992) (0.013543939000000005) (0.0138996235) (0.01330798200000001) (0.013160058500000002) (0.012769075000000005) (0.013263899000000023) (0.01287964649999998) (0.013075470999999991) (0.013301061500000003) (0.012874903499999993) (0.01297554599999999) (0.013733784499999999) (0.013156242000000012) (0.013116072500000006) (0.012888646000000004) (0.013118638500000002) (0.013103810999999993) (0.01307381099999999) (0.012995060500000002) (0.013065656500000009) (0.013538423500000007) (0.013207338000000013) (0.01335752350000001) (0.01316506299999999) (0.013249306000000002) (0.013141918000000002) (0.013258727500000012) (0.013180211000000011) (0.01304126600000001) (0.013239656000000016) (0.01324887249999998) (0.01304340549999998) (0.012912874000000005) (0.013095066499999988) (0.013160418000000007) (0.013123052999999996) (0.013539913500000014) (0.013312564999999998) (0.013322374499999998) (0.01326129899999999) (0.013556330999999991) (0.013314683499999994) (0.01320326099999998) (0.013259216500000004) (0.013570555499999984) (0.013220424000000008) (0.013405080500000013) (0.013512169500000018) (0.01328467500000001) (0.013697365999999989) (0.013364844) (0.013203567) (0.013211466500000005) (0.0129820945) (0.013353699999999996) (0.013591366500000007) (0.013379163999999999) (0.013133514999999998) (0.01346903699999999) (0.013232385999999985) (0.013686543499999995) (0.0135723445) (0.013589481999999986) (0.013654175500000004) (0.013423195000000013) (0.013522213500000019) (0.012916837) (0.01294462149999999) (0.012903782999999988) (0.0133062595) (0.013083916499999987) (0.012921547999999991) (0.013612778500000006) (0.013258997500000008) (0.013161857999999999) (0.013264649500000017) (0.013468478500000006) (0.012930250000000004) (0.013160169999999999) (0.013057677000000004) (0.01283778549999999) (0.013382404000000014) (0.013020650999999994) (0.013046331499999994) (0.012683604500000015) (0.013081251999999988) (0.01285120449999999) (0.013362839000000001) (0.012870404500000002) (0.013306847999999982) (0.013244063) (0.013144625999999993) (0.012976738500000001) (0.013562949500000018) (0.0133414055) (0.013161808500000025) (0.013127216000000011) (0.013149593999999987) (0.013205448499999994) (0.013323304999999994) (0.013135455500000004) (0.013401500999999996) (0.01320766150000001) (0.013302669499999989) (0.013309158499999987) (0.01369126549999998) (0.013497033000000005) (0.013205408499999988) (0.013505985500000012) (0.0132574855) (0.013612784499999989) (0.013683984499999996) (0.013489771000000025) (0.013746064000000002) (0.013073507500000012) (0.013293594000000006) (0.013041497999999999) (0.013468969499999997) (0.013368871000000004) (0.013272462999999998) (0.01357463099999999) (0.013100298999999996) (0.013326697500000012) (0.013668494999999975) (0.013484712999999995) (0.013380349000000027) (0.013440029000000006) (0.013498831500000016) (0.013933558000000013) (0.01330328800000001) (0.013098265999999997) (0.013104935999999998) (0.013130538499999997) (0.013090778999999997) (0.013098170500000006) (0.013308952499999999) (0.012852457999999997) (0.012917141499999979) (0.013362533499999996) (0.013184426499999999) (0.013239431499999996) (0.012952955499999988) (0.012946280500000004) (0.012966402000000016) (0.013051237000000007) (0.013137830000000003) (0.012903633500000011) (0.013123112999999992) (0.012896214499999989) (0.012959767499999997) (0.012957187500000009) (0.01316147899999999) (0.013119463499999984) (0.012839208500000004) (0.013181200500000004) (0.013060842499999989) (0.013098556499999997) (0.013023028500000006) (0.012966232000000022) (0.012824899499999987) (0.012855460500000013) (0.013009501999999992) (0.013084159000000012) (0.013229768500000016) (0.013105310999999994) (0.013180879000000006) (0.013273147499999999) (0.013425953500000004) (0.013903914000000017) (0.013181109499999996) (0.013565016) (0.013202265500000004) (0.013376336499999988) (0.013419069499999992) (0.013529555999999998) (0.01327528850000001) (0.013249336000000014) (0.013537244000000004) (0.01296361850000001) (0.013346087000000006) (0.013014337999999986) (0.013347837500000001) (0.013404606500000013) (0.013749232000000014) (0.013212744999999998) (0.01341099250000001) (0.013446312000000002) (0.013783571000000008) (0.013519211500000003) (0.013449071500000007) (0.013022586500000002) (0.01321568599999999) (0.013956589500000005) (0.013238899499999984) (0.013227363499999992) (0.01312032149999999) (0.013310877000000013) (0.012925371500000005) (0.01320950600000001) (0.013121691000000005) (0.013041392499999999) (0.013196603500000001) (0.012733927499999992) (0.013524577499999996) (0.013214398500000016) (0.012880926000000029) (0.013566100499999997) (0.013321261999999987) (0.012836679500000003) (0.013314680500000009) (0.013117457999999999) (0.012655084000000011) (0.013081587000000006) (0.012773337999999981) (0.012907316500000002) (0.013203975000000007) (0.012920620500000007) (0.012935649499999993) (0.013138966000000002) (0.013180064500000005) (0.012936436499999995) (0.01314367700000002) (0.013416410500000003) (0.012965617500000026) (0.012901156999999983) (0.013283919000000005) (0.013420807000000007) (0.013347712500000011) (0.013196591999999993) (0.013167985499999979) (0.013330466999999999) (0.013496755000000013) (0.013106262499999993) (0.013498351000000006) (0.013162346500000005) (0.013162846499999992) (0.01309846549999999) (0.013670880499999996) (0.013710764499999986) (0.013244851000000016) (0.013663626499999998) (0.013300855999999986) (0.013390589499999994) (0.013297371500000016) (0.013456640999999991) (0.013105673999999984) (0.013242396000000003) (0.013347705500000015) (0.013635496499999997) (0.013447932499999996) (0.013397408999999999) (0.013352093500000023) (0.013497764000000023) (0.013385307500000013) (0.013537230000000025) (0.013518140500000012) (0.013824528500000016) (0.0135301595) (0.012871797500000004) (0.013007830499999998) (0.012939941499999996) (0.012854038000000012) (0.013032044000000007) (0.013077442999999994) (0.012886659499999994) (0.012987323500000009) (0.013034916500000007) (0.013071433499999993) (0.013132547499999994) (0.013093102000000023) (0.013045731500000018) (0.013254771999999984) (0.012995012499999986) (0.013279271000000023) (0.013067894499999996) (0.012888363) (0.013078276500000013) (0.013324146499999995) (0.012982306499999999) (0.013121720000000003) (0.01325651949999998) (0.01306499350000001) (0.01300913599999999) (0.01318726349999999) (0.013412454999999976) (0.013379862000000006) (0.013268504499999972) (0.013383011) (0.013139134999999996) (0.013330183999999995) (0.013176440999999997) (0.01299692550000002) (0.013413240999999992) (0.01334457600000001) (0.013612333500000004) (0.013808444500000017) (0.013610379999999991) (0.013465512499999999) (0.013333763999999998) (0.013263803000000018) (0.01354363850000001) (0.013239367999999987) (0.013411491999999983) (0.0132035405) (0.013372827000000004) (0.013373478000000022) (0.013396441000000009) (0.01336876649999999) (0.013437330500000011) (0.0133014885) (0.013547959499999984) (0.013622479499999979) (0.013267262500000002) (0.013143023500000003) (0.013857695000000003) (0.01321100900000001) (0.013335532499999997) (0.013739030499999999) (0.013365316500000002) (0.013468547999999983) (0.013489956000000011) (0.013919485499999995) (0.013058919500000002) (0.012808619999999993) (0.013087584499999999) (0.013191763999999995) (0.013013924499999996) (0.013169783500000004) (0.012769213000000001) (0.012954388499999997) (0.012960799999999995) (0.013091727999999983) (0.013230368999999992) (0.01289504399999998) (0.012968048999999995) (0.012961538000000022) (0.013003320999999984) (0.01288710450000001) (0.013092642999999987) (0.012951582999999989) (0.013653494500000016) (0.012927159000000021) (0.012970984500000018) (0.01283592700000001) (0.013073814500000017) (0.013397103999999993) (0.013006575500000006) (0.013223976999999984) (0.012882979500000002) (0.013227664499999986) (0.013041189499999994) (0.013324078500000003) (0.0130710525) (0.013343398499999978) (0.013285022999999993) (0.013382514999999998) (0.013793969500000017) (0.013111346499999996) (0.013218820999999992) (0.013286050000000008) (0.01329380849999999) (0.01327875700000003) (0.013305668999999992) (0.013169764500000014) (0.013264297999999994) (0.013631154499999992) (0.013648668999999988) (0.013192570499999987) (0.01345550299999998) (0.013558601000000003) (0.01331850449999998) (0.013202694000000001) (0.013314427500000017) (0.013178460000000003) (0.013280849500000011) (0.013398841999999994) (0.01337250899999999) (0.013190633499999993) (0.01392737699999999) (0.013456487500000003) (0.013332325000000006) (0.013475477999999985) (0.013500836500000016) (0.013277014500000017) (0.013297400000000001) (0.013399124000000012) (0.013022351499999987) (0.012808980499999997) (0.013162902000000018) (0.012824783500000006) (0.012934738000000015) (0.01323016099999999) (0.013128519500000005) (0.013088587499999998) (0.014006153500000007) (0.013432207499999987) (0.013047074999999991) (0.013236600500000015) (0.013445713000000012) (0.013232157999999994) (0.013134464999999998) (0.013299178000000009) (0.013227076000000004) (0.012789635500000007) (0.013160349499999988) (0.013120669000000001) (0.0133552225) (0.012876005999999995) (0.012833545500000001) (0.013008256499999996) (0.0130434985) (0.01289984650000002) (0.013292531499999996) (0.01321183799999999) (0.012999258999999999) (0.013355144499999999) (0.012907417500000004) (0.013178841499999996) (0.01296130099999998) (0.013608148500000014) (0.01329596500000002) (0.013086297499999996) (0.013781048000000004) (0.012974889000000003) (0.013326891500000007) (0.013157572000000006) (0.013370741499999991) (0.013383500000000007) (0.013220565000000004) (0.013327192000000015) (0.013113443500000002) (0.013214214999999987) (0.013463836000000007) (0.013161939000000025) (0.013341393000000007) (0.013389875999999995) (0.013456257999999999) (0.013056175000000003) (0.013321155500000001) (0.013852594499999996) (0.012965223999999997) (0.01312216699999999) (0.013323338000000004) (0.01322724850000001) (0.013267401000000012) (0.013297904499999999) (0.013362025499999985) (0.013403790999999998) (0.01351301050000002) (0.013406065500000022) (0.013195637499999996) (0.013261765999999994) (0.012934380499999995) (0.012989679500000018) (0.0131723215) (0.013336328000000008) (0.013219545499999985) (0.012792809500000002) (0.01326401399999999) (0.012978940000000008) (0.013096125000000014) (0.013304534000000007) (0.012990637999999999) (0.013358130499999996) (0.013066332) (0.012985833000000002) (0.012964461499999996) (0.013073135999999999) (0.013041450499999996) (0.012952987999999999) (0.012826743999999987) (0.013237118000000006) (0.012940320000000005) (0.013061867000000005) (0.012937394000000019) (0.012918789) (0.013209809499999989) (0.013079211999999993) (0.01328525899999998) (0.013444924999999996) (0.013189168000000001) (0.013105761999999993) (0.013352030499999987) (0.013087365000000004) (0.013072898) (0.013604918999999993) (0.013071878499999995) (0.013070116000000007) (0.013127456999999995) (0.01320223899999999) (0.01349628) (0.013871491) (0.01310291750000002) (0.01347043149999999) (0.013571583499999998) (0.013321361500000004) (0.013130835999999979) (0.013666934499999991) (0.013232518000000013) (0.01319729850000001) (0.013063508000000015) (0.013209408999999991) (0.013502679500000003) (0.013359593000000003) (0.013228330999999996) (0.013523434000000015) (0.01334556399999999) (0.013537347000000005) (0.013407676999999993) (0.01380729999999998) (0.013390871000000013) (0.013602756999999993) (0.013381768000000002) (0.01322994899999999) (0.012896200499999996) (0.013105737999999992) (0.012911812499999994) (0.01283816950000001) (0.013230580000000006) (0.012963832500000008) (0.013071448500000013) (0.013239231500000004) (0.013152211499999997) (0.01282997299999998) (0.013137769000000007) (0.013091625999999995) (0.013009692000000017) (0.012869457999999986) (0.013251493500000017) (0.012840151000000008) (0.012863428999999996) (0.013059860000000006) (0.012862985499999993) (0.012956567499999988) (0.013410850000000002) (0.012951566000000012) (0.012880867500000018) (0.013026741500000008) (0.013091013499999998) (0.012969561000000004) (0.013173089999999998) (0.013120061000000002) (0.013290666999999992) (0.013102721499999997) (0.01306439650000002) (0.013258747000000001) (0.013508779000000012) (0.013156487000000008) (0.013061932500000012) (0.013144457999999998) (0.013410006000000002) (0.013553268499999993) (0.01315912000000001) (0.013319348500000008) (0.013407289500000003) (0.013315817500000007) (0.013253301500000009) (0.013385465499999985) (0.01365250200000001) (0.01324132900000001) (0.013599047500000003) (0.013129328999999995) (0.013399607500000008) (0.013493340500000006) (0.013156557) (0.013386434499999988) (0.013343161000000006) (0.013406645000000009) (0.013252292999999998) (0.013421641999999998) (0.013385163999999991) (0.013559166500000011) (0.013380467499999993) (0.013239865500000003) (0.013488587999999996) (0.013594873999999993) (0.013564259000000009) (0.013335827000000008) (0.012940828000000001) (0.012939491000000011) (0.012862418999999986) (0.0133861495) (0.013125656000000013) (0.013111263000000012) (0.012957647000000003) (0.013364078500000001) (0.013728742500000016) (0.012973252000000005) (0.013268810999999991) (0.013108674500000014) (0.01319489850000001) (0.013087520499999991) (0.013099235999999986) (0.013130508499999999) (0.012929056499999994) (0.012933873999999998) (0.012841935500000012) (0.012961280500000005) (0.012993847500000003) (0.01322081650000001) (0.012812580500000004) (0.01302592399999998) (0.013049021999999993) (0.013382124499999995) (0.012963658500000017) (0.013140203999999989) (0.013165001499999995) (0.013212147000000021) (0.013011793499999993) (0.01310567650000001) (0.013040674500000002) (0.013374458000000006) (0.013350716499999998) (0.013666650000000002) (0.013225181000000003) (0.013267656000000003) (0.013463816000000003) (0.013403586499999995) (0.013169327999999994) (0.01358735200000001) (0.013281695999999996) (0.013355727999999997) (0.01345104350000001) (0.01328998499999999) (0.013393514500000009) (0.01352246800000001) (0.013129938000000008) (0.013748031500000008) (0.013658509499999999) (0.0133416185) (0.013780503999999999) (0.013311539499999997) (0.013499122500000016) (0.01324698199999999) (0.013480838999999994) (0.013229471000000007) (0.013572592500000008) (0.013439138500000017) (0.013540287999999998) (0.013483697000000017) (0.013969128000000025) (0.013394258999999992) (0.013032281999999992) (0.013021398000000003) (0.012892987500000008) (0.013142070499999992) (0.013005891500000005) (0.012774194500000002) (0.01307112299999999) (0.013033144499999996) (0.013087979499999985) (0.01309410200000001) (0.013155004500000012) (0.013324093999999995) (0.0129414385) (0.01311493300000001) (0.012790531500000007) (0.01346987099999998) (0.01306430800000001) (0.012813726499999997) (0.012978266000000002) (0.0130421295) (0.013092539500000014) (0.012998104499999982) (0.013507174499999997) (0.013286329999999999) (0.013187947999999991) (0.013094636000000007) (0.013003865999999989) (0.012960750499999979) (0.013011360000000013) (0.013035329999999984) (0.013007374500000002) (0.013097422000000011) (0.013287645) (0.013218526000000008) (0.013295987000000009) (0.013155408999999993) (0.013685933500000011) (0.0133405615) (0.0130679665) (0.01341759549999999) (0.013794813000000017) (0.013579922499999994) (0.013344375000000006) (0.013661577499999994) (0.013517304500000007) (0.013507453500000002) (0.013254870499999988) (0.013427982500000019) (0.01333977850000001) (0.013828946999999994) (0.014111418) (0.0133302805) (0.013471198000000004) (0.013740235000000017) (0.01331184249999999) (0.013590700999999983) (0.013366144499999996) (0.013775416499999998) (0.013479057500000002) (0.01335811549999999) (0.01320682350000002) (0.013633906500000015) (0.01330056250000003) (0.013548789000000006) (0.013033265500000002) (0.012924535999999986) (0.013744920999999993) (0.012909082500000016) (0.013340057000000002) (0.013091010499999986) (0.012944883000000004) (0.01323564399999999) (0.013256765500000017) (0.013358347499999992) (0.012965179499999993) (0.013036928500000003) (0.012919885999999992) (0.013210603000000001) (0.013358931500000004) (0.013185985499999997) (0.012936123500000007) (0.012794564999999994) (0.012989737000000015) (0.012821934500000007) (0.01281571400000002) (0.013124498500000012) (0.013346602499999999) (0.012899564000000002) (0.0134318155) (0.013052731999999997) (0.012859441499999985) (0.013017769999999984) (0.013203900000000005) (0.012915455000000034) (0.01295127800000001) (0.013115862000000006) (0.0133298325) (0.013036747500000001) (0.013489026500000015) (0.013401254500000001) (0.013250429500000008) (0.013508315999999992) (0.013114526000000001) (0.013594986499999975) (0.013284072500000008) (0.013879181000000018) (0.013666749999999991) (0.013374053499999997) (0.013411017000000011) (0.0133058905) (0.013149529999999993) (0.014089835500000009) (0.013181682999999986) (0.013698911999999994) (0.013491722499999997) (0.013464192) (0.013586347499999998) (0.012998257499999985) (0.013202732000000009) (0.013307368500000014) (0.013472421500000012) (0.01352289800000002) (0.014043986500000008) (0.013810493999999993) (0.02028919449999997) (0.013468567000000015) (0.014901310500000015) (0.013393795999999986) (0.013022823999999988) (0.012714025500000004) (0.012707731) (0.012807176000000003) (0.01299519049999999) (0.012859034999999991) (0.013022362999999995) (0.013320977999999997) (0.013142078000000001) (0.013031058500000012) (0.013003923) (0.013172446000000018) (0.013213062499999997) (0.0130125455) (0.012990815500000003) (0.01331695849999999) (0.012734652500000013) (0.012966943499999994) (0.013043660999999998) (0.012935956999999998) (0.012940991499999999) (0.013035795000000003) (0.013277479500000008) (0.013194162999999995) (0.013021599999999994) (0.013011048999999997) (0.013149648000000014) (0.012925494499999995) (0.013060600999999991) (0.013135959499999988) (0.012871418999999995) (0.012997694000000004) (0.013522740500000005) (0.013376024999999986) (0.013199113999999998) (0.013301169500000015) (0.013163038500000016) (0.0131626195) (0.013378027500000014) (0.013245114499999988) (0.013522472000000008) (0.013521841500000006) (0.013190315999999994) (0.013512455499999992) (0.013284719000000014) (0.013466600999999995) (0.013372525999999996) (0.013197584999999984) (0.013311042500000009) (0.013567829000000003) (0.013417201500000017) (0.013635648500000014) (0.013589596999999995) (0.013313933999999986) (0.013284331999999996) (0.013432159999999999) (0.0134264895) (0.013385475500000008) (0.013115654500000004) (0.013493103499999992) (0.013201916499999994) (0.013575840000000006) (0.013180368500000011) (0.013310435500000009) (0.013142989499999994) (0.013010827499999988) (0.013317816499999982) (0.013127745499999996) (0.012904118999999992) (0.013136725499999988) (0.013144771) (0.013264025500000026) (0.013152490999999988) (0.013351865000000004) (0.01307460050000002) (0.013076645500000025) (0.013392184999999973) (0.013227562999999984) (0.012928702500000014) (0.012873814999999983) (0.012870435) (0.012897137999999975) (0.01328285999999998) (0.012958583999999981) (0.0129395645) (0.01306357499999998) (0.013098493999999974) (0.012882446999999991) (0.013074017499999993) (0.013356470000000023) (0.012940889000000025) (0.013423305999999982) (0.01350312549999999) (0.013090775999999998) (0.013341623499999983) (0.013166553499999983) (0.0134449695) (0.013157694499999997) (0.013231990500000027) (0.013313177500000009) (0.013325744) (0.01314974649999999) (0.0133597045) (0.01326260349999997) (0.013615699500000009) (0.013361726000000004) (0.013613895500000014) (0.013543391000000016) (0.013511338000000012) (0.013757601000000008) (0.013667098000000003) (0.013507401999999988) (0.013144899500000001) (0.013459950000000012) (0.013086200500000006) (0.01388086849999999) (0.013227569499999994) (0.013528484000000007) (0.013199063000000011) (0.013263730500000001) (0.013491333499999994) (0.013725373000000027) (0.013292956000000022) (0.013259176499999997) (0.013347264000000011) (0.013383982000000003) (0.015129110499999987) (0.013442761500000011) (0.01272962100000001) (0.013121044499999998) (0.013063818000000005) (0.012983584500000006) (0.012930589499999992) (0.013234478499999994) (0.013028627000000001) (0.013233427000000006) (0.0130531765) (0.013094271000000005) (0.013227833999999994) (0.013252032000000025) (0.012870738499999992) (0.013495082499999991) (0.013152543000000003) (0.013031310000000004) (0.012857931500000003) (0.01287877350000001) (0.013370819000000006) (0.01294447600000001) (0.012929581499999995) (0.012976479999999985) (0.013118638499999988) (0.012999427499999994) (0.012943813500000012) (0.013217464499999998) (0.012999677000000001) (0.012850697000000008) (0.013355335499999996) (0.013068556499999995) (0.013223984000000008) (0.012875725499999977) (0.013569643500000006) (0.013691919499999997) (0.013298987499999998) (0.013371792000000007) (0.013422684000000004) (0.013315610499999991) (0.013444340000000013) (0.013331691999999992) (0.013446760500000002) (0.013457289500000011) (0.01320558749999999) (0.013291247999999992) (0.013493921499999992) (0.013202196000000013) (0.013136396500000008) (0.01370799200000003) (0.013141743499999997) (0.01379350650000001) (0.013100326499999981) (0.01329211999999999) (0.013461498999999988) (0.013435786500000005) (0.013140152000000002) (0.013388930000000007) (0.01363942) (0.013411034000000016) (0.013686686000000003) (0.01356845000000001) (0.015604330500000013) (0.013729262000000006) (0.013532093499999995) (0.013326903000000015) (0.012918566500000006) (0.013488189999999997) (0.013365802999999996) (0.012825091999999996) (0.01294895950000001) (0.013205441499999998) (0.012928214999999993) (0.013085840500000001) (0.012894545499999993) (0.012910116500000013) (0.012972182999999984) (0.013197111500000011) (0.012900810000000013) (0.013226351499999983) (0.01335551800000001) (0.013116833500000022) (0.012993976500000004) (0.012814983000000002) (0.013375032000000009) (0.013279443500000002) (0.013057592500000006) (0.013321990499999992) (0.012785889000000009) (0.013017997000000003) (0.013296854499999997) (0.013133389500000009) (0.01342248) (0.013899752000000001) (0.013132296000000016) (0.012741857000000023) (0.012735761500000012) (0.013029910500000033) (0.013398280499999998) (0.013351485499999996) (0.01311042450000001) (0.013211145000000007) (0.01337603449999998) (0.013435173000000009) (0.013299866999999979) (0.013290501499999982) (0.013520286499999992) (0.013497408500000002) (0.013297969999999992) (0.013669793000000013) (0.013094422499999994) (0.013839777499999983) (0.013514152000000001) (0.013798921500000005) (0.013651002999999995) (0.013222832500000004) (0.013209148499999976) (0.013228044999999994) (0.013567100999999998) (0.013249984000000006) (0.013496602999999996) (0.013684388499999992) (0.013624079000000025) (0.01336701949999998) (0.013296570499999993) (0.013335730500000004) (0.013773523500000023) (0.013626867999999973) (0.013318224999999975) (0.013321734500000001) (0.01301921049999999) (0.01279316350000001) (0.013057742999999997) (0.012938274500000013) (0.013044874999999997) (0.013211892499999989) (0.013447982499999997) (0.013131103000000005) (0.013356370499999992) (0.013106557500000005) (0.013153271500000008) (0.012873242500000007) (0.013160119000000012) (0.012845154499999983) (0.013225606999999986) (0.01345418549999998) (0.012848383500000005) (0.013277010500000005) (0.01302991199999999) (0.013241410500000009) (0.012924320000000003) (0.013007418999999992) (0.013324258000000005) (0.01292908199999998) (0.012918412000000018) (0.013083969000000015) (0.012809998000000003) (0.012969374500000005) (0.013244460500000013) (0.013030857999999992) (0.012930728999999988) (0.01297675899999999) (0.013208697000000005) (0.013025363500000012) (0.013121928000000005) (0.013462043999999992) (0.013252574500000003) (0.013169487500000007) (0.013661803500000014) (0.013414971500000025) (0.013593717500000005) (0.013681927499999996) (0.013204210500000008) (0.013390532499999996) (0.013424648500000011) (0.013396500499999991) (0.013364358499999993) (0.01344641000000002) (0.013188365500000007) (0.01387836499999999) (0.013305532000000009) (0.013503957999999983) (0.013357394999999994) (0.0133405885) (0.013334194499999993) (0.013529667999999995) (0.013734733499999985) (0.01368200800000001) (0.01354485800000002) (0.013142519999999991) (0.013655315499999987) (0.013748296000000007) (0.013963789500000018) (0.013147724500000013) (0.013165306000000002) (0.012891839500000002) (0.012800693000000002) (0.01321492299999999) (0.012945271000000008) (0.013321282500000003) (0.013028271499999994) (0.012805015000000003) (0.013056409000000005) (0.013072172000000007) (0.013103748000000012) (0.013250643499999992) (0.013113525500000014) (0.01333540200000001) (0.013348218499999995) (0.01335496500000001) (0.01331272750000001) (0.013203683999999993) (0.012954438999999998) (0.012785391500000007) (0.013668222000000022) (0.012939790500000006) (0.012927097999999998) (0.013119053499999991) (0.013139422499999998) (0.013275291499999994) (0.013172380999999983) (0.013162444500000009) (0.013227752500000009) (0.013554468499999986) (0.01307789949999999) (0.013320165500000009) (0.013281136499999999) (0.01345334949999999) (0.013618066500000012) (0.013278455499999994) (0.013447395000000001) (0.013561332999999981) (0.013233387) (0.013223044499999989) (0.013344535500000018) (0.013564351500000002) (0.013497696500000017) (0.013576405) (0.013729760000000008) (0.013493507000000016) (0.013230758500000009) (0.013177796999999977) (0.013517488499999994) (0.013310879499999997) (0.014003837499999991) (0.013140911499999991) (0.013619886499999997) (0.013108232500000011) (0.013111184000000012) (0.013378642999999996) (0.013406277999999994) (0.013677968499999998) (0.013490255500000006) (0.013367874000000002) (0.01343622450000001) (0.0134876585) (0.013367375) (0.013223193000000008) (0.013066926499999992) (0.013415304999999988) (0.012841266000000004) (0.01310636150000001) (0.01348415800000001) (0.012831513500000016) (0.012768845999999986) (0.012769270999999999) (0.013184249499999995) (0.012946721999999994) (0.013146480500000002) (0.013243776999999984) (0.013462170000000023) (0.013224603499999987) (0.013243603000000007) (0.012997673500000001) (0.012972077500000012) (0.012909986999999998) (0.012852561500000012) (0.013170214000000013) (0.012929823499999993) (0.012850610000000012) (0.013089518499999994) (0.01304865999999999) (0.013026355500000003) (0.013049918999999993) (0.013449789000000004) (0.01290981699999999) (0.013330147999999986) (0.012970978500000035) (0.013339699000000024) (0.013059007999999997) (0.012974829999999993) (0.013853827999999999) (0.013221530999999995) (0.013971235999999998) (0.013258296999999988) (0.013570671499999978) (0.013110856000000004) (0.013281163500000026) (0.013387088500000005) (0.013457578499999998) (0.013510482000000004) (0.01348115300000001) (0.013355033499999988) (0.01348339649999998) (0.013315795500000033) (0.01319377749999999) (0.013409803999999997) (0.013202063) (0.013140529999999984) (0.013334974500000013) (0.013172134000000002) (0.013529443000000002) (0.013330029999999993) (0.013529257000000017) (0.013390140000000009) (0.013672254500000022) (0.01345917499999999) (0.0134535135) (0.01354916099999999) (0.013645698499999984) (0.01348117850000001) (0.013640660999999998) (0.013016186499999999) (0.012870865999999995) (0.01293533899999999) (0.013405601500000003) (0.013410373500000003) (0.013004541499999994) (0.013146680000000022) (0.013042700000000004) (0.012900395999999995) (0.013088763499999989) (0.012977969999999991) (0.013423369500000004) (0.013279355499999979) (0.01300291800000003) (0.013422193499999985) (0.013328499000000008) (0.012853162500000015) (0.013571633499999985) (0.012966758000000009) (0.013217785999999981) (0.012946016500000018) (0.013079970999999982) (0.01286074000000001) (0.013316190000000006) (0.013106551500000008) (0.013677871499999994) (0.013134106000000006) (0.01338550400000002) (0.013076349000000001) (0.013040718999999992) (0.012946886500000018) (0.013056149500000017) (0.01329477100000001) (0.013281900999999985) (0.013303206500000025) (0.0133777915) (0.013306633499999998) (0.013303776500000003) (0.013581315999999996) (0.013577508499999988) (0.013554368999999997) (0.013151414999999986) (0.01358872899999998) (0.013373621000000002) (0.013453508000000003) (0.013463863499999992) (0.013618031500000016) (0.013477691) (0.013360877499999979) (0.013611970500000015) (0.013492083000000016) (0.013366853999999984) (0.013581177000000014) (0.013424457500000014) (0.01334764899999999) (0.013316437500000014) (0.013647703499999983) (0.013730609500000018) (0.01416410600000001) (0.01327473300000001) (0.013444258) (0.013282474499999988) (0.013429038500000004) (0.013506023499999992) (0.0131610895) (0.013247594500000015) (0.013075020499999992) (0.012982506500000018) (0.013174241500000003) (0.013052201) (0.01300919099999999) (0.013489848499999998) (0.013053077999999982) (0.013160458999999985) (0.0130522515) (0.013068548999999999) (0.012946224500000006) (0.0129837015) (0.013016124000000018) (0.013315840000000023) (0.013187677499999995) (0.013237919000000015) (0.01306636600000001) (0.013051886499999985) (0.013116247999999983) (0.013074299500000011) (0.013608670500000017) (0.013004249499999995) (0.013131698000000011) (0.013116920000000004) (0.013184908000000023) (0.013186185500000003) (0.013259273000000002) (0.013355422000000006) (0.013290365499999998) (0.013193616500000005) (0.013826535000000001) (0.013261780500000028) (0.013251315) (0.013347087000000007) (0.013432421) (0.013055687000000024) (0.013456234000000011) (0.013063639500000002) (0.01356092199999999) (0.013427182999999995) (0.013441954999999978) (0.013288462500000014) (0.013329685499999994) (0.013187407999999998) (0.013309966000000006) (0.013353656999999991) (0.013237802000000007) (0.013566556500000007) (0.013426176999999997) (0.013219367999999995) (0.013595693500000006) (0.013273780999999985) (0.013358326999999975) (0.013363084000000011) (0.013363195500000008) (0.013235860999999988) (0.013463990000000009) (0.01341208200000002) (0.013854971999999993) (0.013581432000000004) (0.013230217000000002) (0.013325392499999991) (0.013067437000000001) (0.01276115450000001) (0.01347359849999999) (0.013165785999999985) (0.012863431500000008) (0.012789669000000004) (0.01304578649999999) (0.013290073000000013) (0.013229330999999983) (0.013166382000000004) (0.01325269649999998) (0.013329535500000017) (0.013162867999999994) (0.01323042549999999) (0.013317670500000003) (0.013027341999999997) (0.013137564500000032) (0.013169699500000007) (0.013034882500000011) (0.013118486999999984) (0.012729012500000011) (0.012966793000000004) (0.013363473000000015) (0.013105951500000004) (0.013148275000000015) (0.01314041399999999) (0.013447199000000007) (0.012959062999999993) (0.013415574999999985) (0.013395085000000015) (0.013313426499999989) (0.013223621500000005) (0.013080423500000007) (0.013793753000000006) (0.01313522300000003) (0.013289870500000009) (0.013298367000000005) (0.013296842999999989) (0.013438443500000008) (0.013408209500000004) (0.013451090499999985) (0.013230429500000002) (0.013221106999999996) (0.013426658999999994) (0.013630566499999996) (0.013428720000000005) (0.013150650500000013) (0.013609971999999998) (0.013246716000000006) (0.01318576099999999) (0.013197392499999988) (0.01309824749999998) (0.013441723500000002) (0.013214985999999998) (0.013343721000000017) (0.013284387000000009) (0.0132260295) (0.013209610999999996) (0.013453417500000023) (0.013495713499999978) (0.013379042500000007) (0.013682887499999977) (0.013315650000000012) (0.013643481000000027) (0.012877683499999987) (0.012843704999999997) (0.012809598499999991) (0.013546112499999999) (0.013244317000000005) (0.012648196500000014) (0.013019912000000008) (0.013050833000000012) (0.013124834499999988) (0.01300217749999999) (0.012945631499999999) (0.012880810499999992) (0.013256887499999995) (0.013238291499999999) (0.013052702499999999) (0.012900442999999998) (0.012997173) (0.013045168499999996) (0.01286860350000002) (0.01323753150000001) (0.013111139499999994) (0.01319947099999999) (0.012976662) (0.013127579) (0.013071866500000001) (0.012964867500000005) (0.013060391000000005) (0.013180149500000016) (0.012825864000000006) (0.012820160999999997) (0.012983557499999993) (0.013085162499999997) (0.013184577000000003) (0.013861927999999996) (0.013110862500000015) (0.013256383999999996) (0.01334722599999999) (0.013187479000000002) (0.013435875) (0.013264370499999997) (0.013416424499999996) (0.013617003000000016) (0.01334647450000001) (0.013408754999999994) (0.01317413549999999) (0.01339884500000002) (0.013264665499999995) (0.013369323499999988) (0.013338876000000013) (0.013399438999999999) (0.013172920500000004) (0.013041022000000013) (0.013467508000000003) (0.013107052999999994) (0.013383210500000006) (0.013634722000000016) (0.013552907500000003) (0.013166250000000004) (0.013385738500000008) (0.013566978499999993) (0.013929403499999993) (0.013300794000000005) (0.013478901999999987) (0.013246091500000001) (0.013224490499999991) (0.013178434999999988) (0.013543958999999994) (0.013196157499999986) (0.012721296500000007) (0.012746785499999996) (0.012939061500000001) (0.013314844000000006) (0.013900888) (0.013001733999999987) (0.013206246499999977) (0.013174750999999998) (0.013196022000000002) (0.012960907999999993) (0.01309792999999998) (0.012927914500000012) (0.012954490999999999) (0.013093657000000009) (0.01294226100000001) (0.012920294499999985) (0.012773176999999997) (0.013028383500000004) (0.0129506905) (0.012991333999999993) (0.013045833000000007) (0.013245064000000015) (0.013253952999999999) (0.01276141750000001) (0.013099643499999994) (0.013375048) (0.013120925500000005) (0.013249924999999996) (0.013341067000000012) (0.013360459500000019) (0.013211306999999992) (0.013442154499999998) (0.01327462900000001) (0.013306955999999995) (0.013373056999999994) (0.013182499) (0.013266795499999984) (0.013403165499999994) (0.013399116500000016) (0.013730994499999996) (0.0132843515) (0.013131116499999998) (0.01335061500000001) (0.013286524499999994) (0.013030484000000009) (0.013287082499999991) (0.013055420999999998) (0.013329453000000005) (0.01318327000000001) (0.013363596499999991) (0.013653460999999992) (0.013423572500000008) (0.013238125999999989) (0.014016478499999985) (0.013408366500000005) (0.013283761000000005) (0.013522616000000001) (0.013576868499999992) (0.013536508000000003) (0.01333447850000001) (0.013016951500000012) (0.013093068499999999) (0.012963882999999995) (0.013337227000000007) (0.012914142000000003) (0.012924468500000008) (0.012659975500000004) (0.01311601400000001) (0.01322664450000001) (0.0129417815) (0.012859523499999984) (0.013098937000000005) (0.013409626500000008) (0.013110813999999998) (0.013019678500000006) (0.01311661) (0.013368191000000015) (0.0129857565) (0.01308686299999999) (0.013042345499999997) (0.012885399499999992) (0.012872763499999981) (0.01300598950000001) (0.012804438499999987) (0.012829067500000013) (0.012881026000000004) (0.013041559499999994) (0.013138394499999997) (0.013327872000000004) (0.013536746500000002) (0.013345283500000013) (0.01350691000000001) (0.013561747499999999) (0.013113122000000005) (0.013368489500000011) (0.01347314049999998) (0.013307518000000004) (0.013339536999999999) (0.013333354000000006) (0.013063040000000012) (0.0134522215) (0.013533181000000005) (0.013459967999999989) (0.0133964835) (0.013390898999999998) (0.013324689) (0.013144551500000018) (0.013322939000000006) (0.013115978) (0.013238031000000011) (0.012960404499999995) (0.013339552000000005) (0.013736895999999998) (0.013405832500000006) (0.013357516) (0.013219246000000004) (0.013724563000000009) (0.013391041000000006) (0.013107473500000008) (0.013137550000000012) (0.013450637000000001) (0.013683489500000007) (0.013359330500000002) (0.013271945000000021) (0.013440325500000003) (0.012757014499999997) (0.012969858999999986) (0.013308166499999996) (0.012912396000000007) (0.013171754000000008) (0.013173415500000007) (0.0129617125) (0.013143529500000015) (0.013107658000000008) (0.013074825000000012) (0.013080517) (0.012996929500000004) (0.013213503500000001) (0.013132686000000018) (0.013288958500000003) (0.012971323499999993) (0.012859348000000007) (0.012849744499999996) (0.01288966200000001) (0.012880027000000002) (0.012861374999999994) (0.013702777999999999) (0.013150136000000007) (0.013137855000000004) (0.013368018499999995) (0.01313417700000001) (0.012964863500000007) (0.013095985000000004) (0.013084564000000007) (0.013251037499999993) (0.013355736999999993) (0.013440741499999992) (0.013484978500000008) (0.013050648999999984) (0.013383494500000023) (0.013223701000000004) (0.013067026999999995) (0.0136395775) (0.013482470499999982) (0.013532984499999998) (0.013261729) (0.013490471000000004) (0.013308239499999985) (0.013557181500000001) (0.013251520000000003) (0.013463194999999997) (0.013113834000000005) (0.01335333649999998) (0.013544284000000004) (0.013476228499999993) (0.013255586) (0.013494616500000015) (0.013265795999999996) (0.013160099000000008) (0.013279570500000018) (0.01357852000000001) (0.013396775) (0.013518883500000009) (0.013163220000000017) (0.013999279000000017) (0.01373725499999999) (0.01330357900000001) (0.013361880000000007) (0.01291231000000001) (0.013052019500000012) (0.012994528500000005) (0.013137634500000009) (0.012894230000000007) (0.012926330500000013) (0.012793854499999993) (0.012933224500000007) (0.0130633255) (0.013148279499999999) (0.013442119499999988) (0.012960312000000015) (0.013282173000000008) (0.013260246500000003) (0.01297939799999999) (0.012867561999999999) (0.013259733999999995) (0.013090083999999988) (0.01307905799999999) (0.013045249000000009) (0.012957934000000004) (0.013232888999999998) (0.01304430849999999) (0.01295267) (0.013118877000000015) (0.013277951499999996) (0.013013648999999988) (0.0130625355) (0.013506467500000008) (0.01296181149999999) (0.013023608000000006) (0.013411516999999984) (0.013532187499999987) (0.013187713000000004) (0.013214432999999998) (0.013154106999999984) (0.014166210499999998) (0.013502874499999984) (0.013665558500000008) (0.013366087499999998) (0.014005517000000009) (0.013459093499999991) (0.013726913000000007) (0.013322264000000014) (0.013412035499999989) (0.0136762) (0.013307174500000005) (0.013296384499999994) (0.013394081499999988) (0.013186396500000003) (0.013991253999999995) (0.01351737) (0.013185089499999997) (0.013371426500000005) (0.013121497999999995) (0.013452726499999998) (0.013412986000000002) (0.013403374499999995) (0.01355627450000002) (0.013517527000000001) (0.013473452999999996) (0.013498740499999995) (0.013335684499999986) (0.0137119525) (0.013035109500000017) (0.013404104) (0.013278464500000003) (0.013586678000000019) (0.013129105500000002) (0.013288403500000004) (0.01370940250000001) (0.013321273500000008) (0.013106780999999998) (0.013013893999999998) (0.012781464000000006) (0.013084450999999983) (0.013164884499999988) (0.013751876499999982) (0.012973299999999993) (0.012870154499999995) (0.013055648500000003) (0.012885671000000001) (0.013074502000000002) (0.013206660499999995) (0.013006326999999984) (0.012822226500000006) (0.012692536500000004) (0.012809575000000004) (0.012987450999999997) (0.012734222000000017) (0.012978432499999984) (0.013343012500000001) (0.013155888000000004) (0.013113742000000012) (0.013006273499999985) (0.012942505000000007) (0.013269941500000007) (0.01333604699999999) (0.013471577999999998) (0.013280834000000005) (0.013531438499999993) (0.013548515999999997) (0.013294780499999992) (0.013145755000000009) (0.013524564500000016) (0.013780405999999995) (0.013618576500000007) (0.0134097465) (0.013325578999999976) (0.013695111999999995) (0.013261849500000006) (0.013774371500000007) (0.013324003000000001) (0.013347854499999978) (0.01374691800000001) (0.013513218999999993) (0.013001574500000015) (0.013040467500000014) (0.013331031500000007) (0.013446464500000005) (0.013168561500000009) (0.013459972500000028) (0.013411664000000004) (0.013412199999999999) (0.01351565200000003) (0.013699896500000003) (0.013569550499999972) (0.01329448950000002) (0.013255404500000012) (0.013179409000000003) (0.012878354500000008) (0.013480954000000003) (0.013151701499999988) (0.013065476000000006) (0.012949771499999999) (0.012972842000000012) (0.01304941150000001) (0.012918309999999988) (0.013268063499999996) (0.013368308499999995) (0.012926144999999986) (0.013109218000000006) (0.012938394500000006) (0.013096730000000015) (0.013104355500000012) (0.013085838500000002) (0.012949868000000003) (0.013104257000000008) (0.013026933500000004) (0.012951579000000005) (0.013109030500000007) (0.01292950399999998) (0.013206064000000003) (0.013462198500000008) (0.013180828499999991) (0.0129590235) (0.013095691499999992) (0.013158127500000005) (0.012907770000000013) (0.012993409000000011) (0.013204271000000004) (0.013456443499999998) (0.012970911500000001) (0.013120937499999999) (0.01309117450000001) (0.013388584999999995) (0.013424680000000008) (0.01340559899999999) (0.013254581500000001) (0.013034524000000006) (0.013666051999999984) (0.013651420499999997) (0.013121212999999993) (0.013529254000000004) (0.013382049499999993) (0.013185845499999987) (0.013078438499999998) (0.012954021999999996) (0.013214891500000006) (0.013145299499999999) (0.013705774500000004) (0.013528024) (0.013201154999999992) (0.013481092) (0.013498372500000008) (0.013827414999999996) (0.013291161000000024) (0.013489311499999976) (0.013674592000000013) (0.013459390500000001) (0.013336111499999997) (0.013382989999999997) (0.013100519000000005) (0.01308211599999999) (0.013142829499999995) (0.013119208999999993) (0.013229350499999987) (0.0133495785) (0.01309708200000001) (0.013025524499999996) (0.013006149999999994) (0.013008737500000006) (0.01300108500000001) (0.012958028999999996) (0.013081488500000016) (0.012992696499999998) (0.013273820500000005) (0.013107779500000014) (0.0131556075) (0.013251526999999999) (0.012968105000000008) (0.01301323750000001) (0.013483542000000001) (0.012986633000000011) (0.013418217499999996) (0.013241249999999996) (0.013075768500000015) (0.013132698500000012) (0.013030543499999991) (0.013188429499999987) (0.013500531999999996) (0.012867071500000007) (0.012970833499999987) (0.013114396000000014) (0.013182816000000014) (0.013307339000000001) (0.013324921999999989) (0.013256057000000002) (0.013353150500000008) (0.01353452450000002) (0.013204814500000009) (0.013398079999999993) (0.013257674000000011) (0.013600761500000003) (0.013414331500000001) (0.01322397950000001) (0.013557995000000017) (0.01350651550000001) (0.013364619499999994) (0.013483715500000007) (0.013748659999999996) (0.013134872000000006) (0.013188145999999998) (0.013613750000000008) (0.013192832500000001) (0.013438266500000004) (0.013259165000000003) (0.013709852999999994) (0.013622960500000003) (0.01372846350000001) (0.013257187500000003) (0.013201367500000019) (0.013657440999999979) (0.013406158499999987) (0.013515204000000003) (0.013284514999999997) (0.012911014999999998) (0.013586230500000004) (0.013104526499999991) (0.013048142999999998) (0.01292528250000001) (0.01368322050000001) (0.012992627499999992) (0.012951116499999998) (0.012944626000000015) (0.012985720499999992) (0.013192096000000014) (0.01289789849999999) (0.013029049500000014) (0.013007613000000001) (0.013449841000000004) (0.013450731499999993) (0.012852858999999994) (0.01331976999999998) (0.012676391000000009) (0.012894319999999987) (0.0132141385) (0.012983357000000001) (0.013071945000000001) (0.012903037000000006) (0.013648159999999993) (0.012886593500000001) (0.013310262500000003) (0.013332204) (0.013497012500000002) (0.013388082499999995) (0.013177924000000008) (0.013080887499999999) (0.013364186) (0.01314427550000001) (0.013107374500000005) (0.013309551000000003) (0.013385807000000013) (0.013246616500000002) (0.013120594999999999) (0.0131787025) (0.013566585999999992) (0.013143010499999996) (0.01324885649999999) (0.013374348999999994) (0.013416787000000013) (0.013328004000000004) (0.013277552000000012) (0.013250366) (0.013491021500000006) (0.013428745499999992) (0.01326213250000001) (0.013301131499999994) (0.013157473500000003) (0.013360517500000002) (0.013061607000000003) (0.01310347549999999) (0.013525979499999993) (0.013449278000000009) (0.013902488000000005) (0.013229340500000006) (0.013494801) (0.013778257499999988) (0.013951590499999986) (0.013379858000000008) (0.013041405000000006) (0.013107829500000001) (0.013046536499999983) (0.013061035999999998) (0.013165614500000006) (0.012929929999999992) (0.013507439999999996) (0.013320175500000003) (0.0131361215) (0.013191280499999986) (0.013024828000000002) (0.013241839500000005) (0.013110525999999983) (0.013051165000000003) (0.012853287500000005) (0.012950289000000004) (0.013129424999999986) (0.012691428500000004) (0.013040642500000005) (0.012955169500000002) (0.013137504999999994) (0.013041231000000014) (0.012963516000000008) (0.013114657500000015) (0.012972236000000012) (0.013063526499999992) (0.013307755000000004) (0.013090368500000019) (0.013037099499999996) (0.012877442000000003) (0.013306390000000001) (0.012856989) (0.013244198999999998) (0.013205202999999999) (0.013212914000000006) (0.013121454000000005) (0.013514489000000005) (0.013433812000000003) (0.013276057999999993) (0.01353318449999999) (0.013452762499999993) (0.013372936000000002) (0.013664301000000004) (0.013481827499999988) (0.013864314499999988) (0.013175101499999994) (0.01318884499999999) (0.0137724355) (0.013419882500000008) (0.0135206685) (0.013310053500000002) (0.01336639299999999) (0.01330966950000001) (0.013471929499999993) (0.013424125000000009) (0.013547204500000007) (0.013279566000000007) (0.013251040999999977) (0.013396120499999997) (0.013403756500000003) (0.013572042500000006) (0.013468083000000006) (0.013861098499999988) (0.01347802599999999) (0.012908899499999987) (0.012948783000000005) (0.012987273000000008) (0.0133994105) (0.012859139500000005) (0.012903015000000004) (0.013073112499999998) (0.012982622499999985) (0.012842645499999986) (0.01329872650000001) (0.013041238999999996) (0.013227545500000007) (0.013313854499999986) (0.013366113499999999) (0.013425841499999994) (0.012775865500000011) (0.013226164000000012) (0.013026759000000013) (0.013358079000000009) (0.012892954999999998) (0.013298031000000002) (0.013289769999999992) (0.013085754000000005) (0.012926660000000006) (0.013144492500000007) (0.01310301400000001) (0.012856934500000014) (0.013145890000000007) (0.013179960000000018) (0.013243144999999998) (0.01294932950000001) (0.012935347000000014) (0.013218123499999998) (0.013322536999999995) (0.013279147000000005) (0.013163609499999993) (0.013421679999999991) (0.013099393999999986) (0.013480555000000005) (0.013424236499999992) (0.013803545500000014) (0.013655430499999982) (0.013580744500000005) (0.013327171999999998) (0.013410383999999997) (0.0130806475) (0.01349731500000001) (0.0132990105) (0.013180491000000003) (0.013245514000000014) (0.013871105000000009) (0.013224762499999987) (0.013474207500000002) (0.013216181000000007) (0.013323025500000016) (0.013383418499999994) (0.013808578000000002) (0.013684604000000003) (0.013645304999999996) (0.01329429850000001) (0.013618566499999998) (0.0139496905) (0.013925805999999999) (0.013534884999999997) (0.0129251965) (0.013534699499999997) (0.013083084999999994) (0.013117392999999991) (0.012858077499999995) (0.013050343000000006) (0.01329337450000001) (0.012997982499999991) (0.012895081500000002) (0.013424160000000004) (0.013021154000000007) (0.012999706000000014) (0.012913895000000009) (0.013024373500000005) (0.012993232999999979) (0.013092097499999983) (0.013107434000000001) (0.012871674999999999) (0.012734120500000001) (0.013165502999999995) (0.012899686499999993) (0.012991590000000011) (0.012865209500000002) (0.013086682000000002) (0.013197793499999999) (0.013185349000000013) (0.013373223500000003) (0.013568864) (0.013187003500000002) (0.013186082000000002) (0.013214310999999992) (0.013028098499999988) (0.013343651000000012) (0.013526304000000003) (0.013320570500000004) (0.013085430500000009) (0.013543562999999995) (0.013520263000000005) (0.013239042000000006) (0.013252827499999995) (0.013628065499999995) (0.013235855500000004) (0.013341447999999992) (0.013383887999999997) (0.013293658) (0.013502383000000007) (0.013583604999999999) (0.01350955949999999) (0.013789302500000003) (0.013390329000000006) (0.013261758999999998) (0.013452407500000013) (0.013234690999999993) (0.013251510499999994) (0.013367702499999995) (0.013227997000000005) (0.01323060949999999) (0.013348667999999994) (0.013477183000000004) (0.013438026500000005) (0.013788478000000007) (0.013326245499999986) (0.013626511999999993) (0.01336032199999998) (0.013072517000000006) (0.012723777500000005) (0.012847560000000008) (0.013272938999999997) (0.01280150799999999) (0.012825377999999998) (0.012786988) (0.013127240000000012) (0.012823784500000004) (0.012760251999999986) (0.013039365499999997) (0.013073190499999998) (0.013348009000000022) (0.01316163549999999) (0.012887674500000001) (0.012898686000000006) (0.013055153000000014) (0.012879862500000006) (0.01318942599999999) (0.0130380925) (0.012784569999999995) (0.013387662999999994) (0.012888154500000013) (0.01303596) (0.013065723500000001) (0.013301097000000012) (0.012941699499999987) (0.012833558499999995) (0.012820705500000015) (0.01282302099999999) (0.012835236499999986) (0.013325038999999997) (0.013273581500000006) (0.013359288999999996) (0.013328102500000008) (0.013273807499999998) (0.013514645499999992) (0.013406931499999997) (0.013197235000000002) (0.013476818500000001) (0.013390580499999985) (0.01342669299999999) (0.013369753999999984) (0.013539772999999991) (0.01322593950000002) (0.013504025500000003) (0.013479077500000006) (0.01358085149999999) (0.013056478499999996) (0.013298867499999992) (0.01342848449999999) (0.013266431500000023) (0.013297340500000004) (0.013190403500000003) (0.01328165549999999) (0.012901847500000008) (0.013618504999999989) (0.013333802000000006) (0.013652951499999996) (0.013629780999999994) (0.013811934000000012) (0.013235991000000016) (0.01316977699999998) (0.013271455499999987) (0.012857423500000006) (0.013096799500000006) (0.012786029500000004) (0.013349589499999995) (0.012817020499999998) (0.013062159000000004) (0.013115093499999994) (0.013148315000000008) (0.012957553999999996) (0.013017899000000013) (0.013113067499999992) (0.012972870000000025) (0.013670447000000002) (0.013247731999999984) (0.013047899000000002) (0.013492704499999994) (0.013089452999999987) (0.013031339000000003) (0.012978235500000004) (0.012907973999999989) (0.013032080500000001) (0.01317705700000002) (0.012983090500000002) (0.013133038500000013) (0.013129611999999985) (0.012948698499999994) (0.012945165499999994) (0.013426624000000012) (0.012872857500000001) (0.013355060499999988) (0.013127226999999991) (0.013020422500000003) (0.013313023000000007) (0.0133699075) (0.01343673599999999) (0.013487278999999991) (0.01319393599999999) (0.013312204999999994) (0.013057864500000002) (0.013606776000000001) (0.01323340549999999) (0.013297061000000013) (0.013498187999999994) (0.013612904000000009) (0.01319133499999997) (0.013291377499999993) (0.013270696500000012) (0.013233835999999985) (0.013395602500000006) (0.013326295000000002) (0.013511577999999996) (0.013184324500000011) (0.01324555799999999) (0.013274182499999995) (0.013372465500000028) (0.013072279999999978) (0.013440553499999994) (0.013239293500000013) (0.013190721999999988) (0.013399461500000015) (0.013519065499999997) (0.013362638999999996) (0.013501083499999997) (0.013482292000000007) (0.012971957499999992) (0.0131528115) (0.012887622000000001) (0.013002189499999997) (0.012777929999999993) (0.012886371500000007) (0.013081041499999987) (0.012878566000000008) (0.013063737499999992) (0.013695642999999993) (0.013008785499999995) (0.012811700500000023) (0.012999897999999996) (0.013163559000000005) (0.01335987999999999) (0.013146913499999996) (0.012934753000000007) (0.013009382) (0.01330477749999999) (0.012886582999999993) (0.01328122050000001) (0.0128183345) (0.012979001000000004) (0.012952112000000016) (0.0134681985) (0.01318019699999999) (0.012915387500000014) (0.013166224500000004) (0.012942837500000012) (0.0130561025) (0.013254353000000024) (0.012985589999999991) (0.013280409000000007) (0.013195455500000008) (0.013293434500000006) (0.01317684949999999) (0.013546780499999994) (0.013611555499999997) (0.013657189000000014) (0.01357808549999999) (0.01355082199999999) (0.013527967499999988) (0.0132565335) (0.013203618500000014) (0.013389588499999994) (0.013080997499999983) (0.013744504500000018) (0.01384023500000002) (0.013329092) (0.013344441000000012) (0.013115107499999987) (0.013410891499999994) (0.013471872999999995) (0.013395022000000006) (0.013142383499999993) (0.013568318000000024) (0.013274513500000015) (0.013528491500000003) (0.01340235499999999) (0.013509983500000003) (0.013317815999999982) (0.013351733000000005) (0.013637473500000025) (0.01372613899999997) (0.012566763499999994) (0.012885367999999994) (0.013168376999999995) (0.013104158000000019) (0.012775320000000007) (0.012900884000000001) (0.013293277500000006) (0.013027560500000007) (0.013138587499999993) (0.012981610500000004) (0.012937502500000003) (0.013155480000000011) (0.013191532499999992) (0.013024846500000006) (0.013147427000000003) (0.013112384500000018) (0.012854160500000003) (0.013511926999999993) (0.012992743000000001) (0.013126922499999985) (0.013315529000000006) (0.012866208500000004) (0.013094873499999993) (0.012946818000000013) (0.01308283949999997) (0.013226528499999987) (0.013233399000000007) (0.01297093550000003) (0.013267736000000002) (0.013114231000000004) (0.013090292999999989) (0.013063109999999975) (0.013175709500000007) (0.013686325999999999) (0.013380821000000001) (0.01349135550000001) (0.013227374500000014) (0.013499002999999996) (0.013307237) (0.013168859500000019) (0.013224641000000023) (0.013288455000000018) (0.013286180000000009) (0.013423716000000016) (0.013330147499999986) (0.013815763500000008) (0.013843710500000009) (0.013552956500000005) (0.013573601000000018) (0.013372853000000018) (0.013243013000000012) (0.013484813999999998) (0.01356509950000001) (0.013359441500000013) (0.013206627500000026) (0.01340306799999999) (0.014268150999999993) (0.013246683499999995) (0.013522203500000024) (0.013657911499999995) (0.01330861550000001) (0.013753676500000006) (0.013384786499999995) (0.013537403999999989) (0.013087176500000006) (0.01318275599999999) (0.012989419000000002) (0.013127970999999988) (0.012955786999999996) (0.013003595499999993) (0.013408450000000002) (0.013193638999999993) (0.012989404999999996) (0.013021664499999988) (0.012857217000000004) (0.013145991499999995) (0.012965065500000011) (0.013016027999999999) (0.012994644) (0.012883774000000014) (0.013085298499999995) (0.013199457499999984) (0.013114039499999994) (0.013310714000000001) (0.01334987850000001) (0.013011327999999989) (0.013081951499999994) (0.012722974000000012) (0.01302540050000002) (0.013349384500000006) (0.012989662999999999) (0.012963514499999995) (0.013129852000000011) (0.015338479000000002) (0.013139773000000007) (0.013083122500000016) (0.01371030550000002) (0.01308629750000001) (0.013413144500000002) (0.013216194500000014) (0.013571969500000003) (0.0132100245) (0.01313747500000001) (0.013239683500000002) (0.013109941) (0.013543964000000006) (0.013271262500000006) (0.013190365499999995) (0.013192038500000003) (0.013794040499999993) (0.013611434999999991) (0.013701051499999992) (0.013174927000000003) (0.013451645499999998) (0.013169876499999997) (0.01316382449999999) (0.013377560999999996) (0.013266417500000016) (0.013165146500000002) (0.013246473499999994) (0.013244218500000002) (0.013423576000000007) (0.013516296000000011) (0.013542169999999992) (0.01362230049999999) (0.013663716000000006) (0.013223943500000002) (0.013154301000000007) (0.012929293499999994) (0.013233774500000003) (0.012981109000000005) (0.012746245000000003) (0.013100506499999998) (0.012908240500000001) (0.012794293500000012) (0.01284238) (0.012976486999999995) (0.013254256500000006) (0.013313219999999987) (0.013476773999999983) (0.013148877500000003) (0.013070578) (0.013486567000000005) (0.013000216999999994) (0.0129447865) (0.013158412499999994) (0.013047487999999996) (0.013174689999999989) (0.012931514499999991) (0.013012848000000007) (0.013325991999999995) (0.012991334499999993) (0.013251699500000005) (0.013227503999999987) (0.013089194999999998) (0.012990921500000002) (0.012951930499999986) (0.013071897500000013) (0.013052527999999994) (0.01304823599999999) (0.013343784499999997) (0.013152696499999991) (0.013262764499999996) (0.013184325999999996) (0.013477658000000017) (0.013309647500000008) (0.01342052399999999) (0.013539450499999994) (0.013301326500000002) (0.013364885500000007) (0.01325258750000001) (0.013149033000000004) (0.013491149000000022) (0.013426810499999997) (0.013416758500000014) (0.013691866499999983) (0.013026398500000008) (0.013378557999999999) (0.013166885000000003) (0.01357573849999999) (0.0133758915) (0.013512155999999997) (0.013682897999999985) (0.01346324900000001) (0.01363230999999998) (0.013121643500000002) (0.013263768499999995) (0.013501653500000002) (0.013430120500000017) (0.013452490499999983) (0.01333611450000001) (0.013656765999999987) (0.013178381500000003) (0.013034427000000001) (0.012962973500000002) (0.013057325500000008) (0.01294313150000001) (0.013046987499999996) (0.01332037450000001) (0.013072093999999992) (0.01328514900000001) (0.012991700499999995) (0.013197475500000014) (0.0129258815) (0.013124140999999992) (0.013012536000000005) (0.013092856999999986) (0.012957484000000005) (0.012961155500000002) (0.012820009500000007) (0.012952374000000003) (0.013144205499999992) (0.013017749499999995) (0.012892646499999993) (0.013176929000000004) (0.013072346999999998) (0.01323585599999999) (0.013044600500000003) (0.012883569999999997) (0.013075662500000015) (0.012954898499999992) (0.013236780500000003) (0.012970862) (0.0134053445) (0.013657528500000002) (0.0135965215) (0.013231423000000006) (0.013472792500000011) (0.013268102500000004) (0.013720897499999996) (0.013258482500000002) (0.013536884499999985) (0.013322712) (0.013488604500000001) (0.013532857499999981) (0.013247354500000003) (0.013310424500000001) (0.013231113500000002) (0.013325693499999985) (0.013599423000000027) (0.014010850500000005) (0.01354346549999999) (0.013185573999999992) (0.013451820499999989) (0.0133205515) (0.013341570999999997) (0.013280013999999993) (0.013388576999999999) (0.01392062749999999) (0.013583645500000005) (0.013836924500000014) (0.013547016500000009) (0.01351579999999998) (0.013400866500000011) (0.013729815000000006) (0.013369775499999986) (0.013112215999999996) (0.01303902450000001) (0.012936050500000004) (0.013221744500000007) (0.013372702) (0.013083485000000006) (0.013429823500000021) (0.012893698999999995) (0.012803477999999993) (0.013333132499999997) (0.012974412500000004) (0.013305547500000028) (0.013139203499999988) (0.013268351000000012) (0.013243700999999983) (0.012967889999999982) (0.013562456999999986) (0.013143677999999992) (0.012953675499999998) (0.012928071499999999) (0.012921060500000012) (0.013013958500000006) (0.013039011999999989) (0.013100567499999993) (0.013254515999999994) (0.012923584500000002) (0.013460573999999989) (0.01326145500000002) (0.013065970000000024) (0.013128691000000026) (0.013196976000000013) (0.013366346000000001) (0.013293378999999994) (0.0132657875) (0.013329834499999998) (0.013463634500000002) (0.013508589000000001) (0.013337350499999998) (0.013028368499999984) (0.013525912000000001) (0.013250491500000003) (0.013335672500000006) (0.013478156000000005) (0.013395325500000013) (0.013270864499999993) (0.01376969950000001) (0.013319153000000014) (0.013517140000000025) (0.013557689000000012) (0.013308551500000002) (0.013458329000000005) (0.013302559500000005) (0.013645470000000007) (0.013146183500000005) (0.013343001000000021) (0.013409706500000007) (0.013337177499999991) (0.013446782000000004) (0.013580749000000003) (0.013780878500000024) (0.01318202100000003) (0.013585052000000014) (0.013497699500000002) (0.013674470000000008) (0.0129244055) (0.013315913999999998) (0.013279457999999994) (0.012868719500000014) (0.013056053500000012) (0.0128839075) (0.012911197) (0.01290002300000001) (0.013156617999999995) (0.012986561000000008) (0.013056175500000017) (0.012946180000000002) (0.012896699999999997) (0.012983435499999987) (0.013547614000000013) (0.012978669499999998) (0.013180393499999998) (0.012844355000000002) (0.0128804015) (0.012968877500000017) (0.01324043300000001) (0.013182492000000004) (0.013291349500000008) (0.012830077499999995) (0.012985693500000006) (0.013476419999999989) (0.013834874000000011) (0.013215315500000005) (0.013190789500000008) (0.013464398500000002) (0.013037561500000003) (0.013008184999999978) (0.013195222499999992) (0.013388715500000009) (0.013150661000000008) (0.013352470000000005) (0.0135575515) (0.013148243500000004) (0.013593945999999996) (0.013310906500000011) (0.013326362999999994) (0.013241285499999977) (0.013389473499999985) (0.013539331500000001) (0.013373726499999988) (0.013178785499999998) (0.013585166499999982) (0.013523314499999994) (0.013364854499999981) (0.013064657500000007) (0.013251007500000009) (0.013430839) (0.013184611000000013) (0.013273024000000008) (0.013221687999999995) (0.013069306500000016) (0.013775859500000001) (0.01375054299999999) (0.013392587500000011) (0.013322861500000019) (0.013443077000000012) (0.013278184999999984) (0.013423391499999993) (0.013308643000000009) (0.012840304499999997) (0.013063280499999996) (0.013011568000000001) (0.013050661000000005) (0.013025953999999992) (0.01308024699999999) (0.012915288000000011) (0.012881141999999984) (0.013107803500000015) (0.01338310949999999) (0.013091910499999984) (0.012926028499999992) (0.012889748499999992) (0.013077243500000002) (0.0131881415) (0.013073778999999994) (0.012980266000000018) (0.013065277500000014) (0.01304966249999999) (0.013042964000000004) (0.013034626500000007) (0.012923869500000018) (0.012901999000000011) (0.01302787050000001) (0.012797245000000013) (0.013171665999999999) (0.013213812500000019) (0.01304906850000001) (0.013134982999999989) (0.012931667999999993) (0.013366981499999986) (0.013255121999999994) (0.013478054499999989) (0.013552997499999983) (0.013477536000000012) (0.013800279999999998) (0.013359700500000016) (0.013307605500000014) (0.013196214499999998) (0.01352372050000003) (0.01343293399999998) (0.013362478000000011) (0.013147365500000008) (0.013464020000000007) (0.013284073000000007) (0.013561970999999992) (0.013284582500000003) (0.013371479500000005) (0.013194690499999995) (0.013170279999999993) (0.013259039499999986) (0.013389957499999994) (0.013286342000000007) (0.013263113999999979) (0.013286559999999989) (0.013445335000000017) (0.013652484500000006) (0.013408848500000015) (0.013389243500000023) (0.013314369500000006) (0.013562652999999994) (0.013419967999999977) (0.013313343499999991) (0.01307038150000002) (0.012998373500000007) (0.01290269999999999) (0.013218752000000014) (0.0130026835) (0.013065834999999998) (0.01295201) (0.0133207865) (0.013102954500000014) (0.013171826000000011) (0.013076834500000009) (0.013129767999999986) (0.013042961500000005) (0.013354180999999993) (0.012976535499999983) (0.013271907999999971) (0.01303995899999999) (0.012881076000000005) (0.013275183499999996) (0.013142183000000002) (0.012670047500000003) (0.013332150000000001) (0.013273196000000001) (0.013153364) (0.013001416000000002) (0.013477427499999986) (0.013075323500000013) (0.013185846999999987) (0.012968298500000003) (0.013211865999999989) (0.01309998300000001) (0.013342867000000008) (0.012919628499999974) (0.013322141499999995) (0.013410614500000001) (0.013289384000000001) (0.013270066999999997) (0.0136165845) (0.013071441500000017) (0.013492801500000012) (0.013381037999999998) (0.01334903350000001) (0.013474997000000002) (0.013242828499999998) (0.013255590000000012) (0.013441874499999992) (0.013621483000000004) (0.013564027499999978) (0.013386839999999983) (0.013522435999999999) (0.013124700000000003) (0.013435211000000002) (0.013489038999999994) (0.013579435) (0.013201417499999993) (0.013248598000000014) (0.01330917650000002) (0.013489424999999985) (0.013558907000000009) (0.013371752) (0.013341727499999984) (0.0135129685) (0.013796230499999979) (0.013496972499999996) (0.01336013250000001) (0.013307233500000001) (0.012994566000000013) (0.012862392) (0.013239955000000012) (0.013018560999999998) (0.012891816) (0.013158601000000006) (0.012774176499999998) (0.013036238499999978) (0.013507650499999982) (0.01301649000000002) (0.01278174) (0.013253717000000012) (0.012998472499999997) (0.013046238500000015) (0.013099523500000002) (0.013244409999999998) (0.012824254000000021) (0.013207364000000013) (0.013162928500000004) (0.012998648500000001) (0.013345083500000007) (0.01316879) (0.013030586499999997) (0.01312055999999999) (0.013175484500000001) (0.013073332499999979) (0.013171214000000014) (0.01310763149999998) (0.012810563999999997) (0.013388875000000008) (0.013250365) (0.01347618199999999) (0.0135145765) (0.013486752500000004) (0.013278294499999982) (0.013303183500000024) (0.013409388000000022) (0.013373662500000008) (0.013226109000000014) (0.013431185499999998) (0.01336246599999999) (0.013680652999999973) (0.013514421499999998) (0.013253971999999989) (0.013402223500000005) (0.013185265000000002) (0.013227846500000015) (0.0137463315) (0.01313903550000002) (0.013433769999999984) (0.013789774500000004) (0.013215255999999995) (0.013566394999999995) (0.013246459500000002) (0.013395053000000004) (0.01347287300000001) (0.013452838999999994) (0.013408191500000013) (0.013687329499999998) (0.013568877999999993) (0.013634948500000008) (0.013500888499999988) (0.013229469499999993) (0.012916800500000006) (0.013086460500000008) (0.012872202000000013) (0.012790027499999995) (0.0131264985) (0.013201166500000014) (0.012866574499999991) (0.012807097000000003) (0.013452657499999993) (0.013370193500000002) (0.013021017499999996) (0.013214412500000008) (0.012966853) (0.013157452) (0.012969610999999992) (0.01305915249999999) (0.013126154499999987) (0.013258512) (0.013088155000000004) (0.013063962499999998) (0.012851238999999987) (0.013074934499999996) (0.013289479999999992) (0.012757007) (0.014622424499999995) (0.013429768000000009) (0.013273985500000016) (0.013245796000000004) (0.013100204500000004) (0.013073108) (0.013053644000000017) (0.0128642895) (0.01349378300000001) (0.013366607000000016) (0.013260739499999993) (0.013054638499999993) (0.013006121500000009) (0.013164434999999988) (0.013273973000000008) (0.013688098999999995) (0.013590083500000003) (0.013491228999999993) (0.013635332999999986) (0.013354335500000009) (0.013345376499999992) (0.013721415499999987) (0.01314600349999999) (0.013372739500000008) (0.013316004500000006) (0.013578309499999996) (0.013250599500000015) (0.0132396855) (0.013286267500000004) (0.01325373199999999) (0.013179438499999974) (0.013480219999999987) (0.013803584000000022) (0.013927792500000008) (0.013375434499999991) (0.013648143000000001) (0.013673640500000028) (0.013515573000000017) (0.013161585999999975) (0.013135476999999993) (0.01312908850000001) (0.012973969000000002) (0.012777923499999982) (0.013326256500000008) (0.013137270999999992) (0.013406589999999996) (0.01302131899999999) (0.013451374999999988) (0.013575784000000007) (0.013058545000000005) (0.013014036500000006) (0.01312258899999999) (0.013062119999999997) (0.012844680499999983) (0.013072144499999994) (0.013125057499999981) (0.013252476999999999) (0.012751676999999989) (0.013086948499999987) (0.012972205500000014) (0.013139385000000003) (0.013147443499999995) (0.01288988549999999) (0.012947335000000004) (0.013180200499999989) (0.013113713000000013) (0.013695981500000023) (0.012996368500000008) (0.012914495499999984) (0.013152915000000001) (0.013396898500000004) (0.0132875395) (0.013640459500000007) (0.013552748999999989) (0.013309585499999999) (0.013254525999999989) (0.013626772500000009) (0.013295778999999994) (0.013376294999999996) (0.013282921000000003) (0.013393192499999998) (0.013130044999999993) (0.01346944650000001) (0.013080277500000001) (0.013174686500000005) (0.013157052999999988) (0.013409581500000017) (0.013397672000000027) (0.013196333499999977) (0.01340186900000001) (0.013526944500000013) (0.013593432999999974) (0.0132363665) (0.013377986999999994) (0.013137840999999997) (0.013296782000000007) (0.01364605599999999) (0.01370629850000002) (0.013612598500000003) (0.013172068000000009) (0.013471971499999999) (0.01372532600000001) (0.013799079999999991) (0.013558847500000012) (0.013256030500000002) (0.012963236500000003) (0.013260856000000001) (0.013199368000000003) (0.012961611999999983) (0.012854823500000015) (0.012775844500000008) (0.013284631500000005) (0.013112959000000007) (0.013053675) (0.013343566500000015) (0.012992930500000013) (0.013311082499999988) (0.012998647500000016) (0.013094732999999997) (0.012869048000000022) (0.013210969000000003) (0.012933248499999994) (0.013378090999999995) (0.01299219) (0.013104278499999997) (0.0131919905) (0.013152832499999989) (0.01310422750000001) (0.0131606165) (0.013261389000000012) (0.013419726000000007) (0.01302574899999999) (0.013382739500000004) (0.013347246499999993) (0.013530260500000002) (0.012975783000000005) (0.013282843000000003) (0.01349863950000002) (0.013018374999999999) (0.013060747999999997) (0.013296515499999995) (0.013020070499999994) (0.013162833999999984) (0.01322527100000001) (0.013264514499999991) (0.013515379000000008) (0.013382002500000004) (0.01331814549999999) (0.013347573000000001) (0.013531347000000013) (0.013385465499999999) (0.0134176025) (0.013179978999999994) (0.013436575000000006) (0.013484253499999987) (0.013887695500000005) (0.013504159000000002) (0.013221516999999988) (0.013232095499999985) (0.013072108000000013) (0.013593893499999982) (0.01346177400000001) (0.013476366999999975) (0.013497877500000005) (0.013701721) (0.013553960000000018) (0.013526269000000007) (0.013554859500000002) (0.013779254000000019) (0.012847110500000009) (0.013096735999999998) (0.012938632000000005) (0.012880374500000014) (0.012947001) (0.013052280999999985) (0.012915089999999976) (0.012910084500000002) (0.013256359999999981) (0.0130051105) (0.013079167499999989) (0.013187078000000019) (0.013041063000000006) (0.012917824499999994) (0.013278073000000015) (0.013265886000000005) (0.013075468499999993) (0.013032562500000011) (0.013190684499999994) (0.012806896500000012) (0.013267979) (0.012936984000000012) (0.012968755499999998) (0.013334304999999977) (0.013311198999999982) (0.013277631500000012) (0.013193332499999988) (0.013410101000000008) (0.013056461499999991) (0.013011127499999997) (0.013034947499999991) (0.013495369000000007) (0.013526718999999993) (0.013728276499999983) (0.013358745499999991) (0.013251266999999997) (0.013163510499999989) (0.013235071999999973) (0.013636538500000003) (0.01357928700000001) (0.013428161499999994) (0.013559016000000021) (0.013863589999999981) (0.013287088999999988) (0.013197090500000008) (0.0134510095) (0.013264421499999998) (0.013531251499999994) (0.013389799999999993) (0.013219177999999998) (0.013707780500000002) (0.013167829499999992) (0.013371555000000021) (0.01323648099999998) (0.013477320000000001) (0.013940841499999981) (0.013599495500000003) (0.013414234499999983) (0.013501189999999996) (0.013523256999999983) (0.013456820500000008) (0.013541387999999988) (0.013256194499999999) (0.012918452499999983) (0.012945054999999997) (0.012928351000000018) (0.012852516500000022) (0.013029008000000009) (0.012858512000000016) (0.012991666999999998) (0.01316985000000001) (0.013187819500000003) (0.013021463999999983) (0.012988209500000014) (0.013200594499999982) (0.013402630500000012) (0.013060126000000005) (0.013613656999999987) (0.012803953999999979) (0.013187124000000008) (0.012857398500000006) (0.012913578500000009) (0.012995697499999986) (0.012696055500000011) (0.012853813999999991) (0.013173434500000011) (0.013062647500000024) (0.01310268249999999) (0.013095616500000018) (0.013278587500000008) (0.01297034599999998) (0.013092051500000007) (0.01305468650000001) (0.01348799099999999) (0.013352888000000007) (0.013204800500000002) (0.013358035000000004) (0.013337382999999994) (0.01366226600000002) (0.013290859000000002) (0.013235024499999998) (0.013225921000000002) (0.013519108000000002) (0.01315488699999999) (0.013257732000000022) (0.013335527000000014) (0.013131745999999986) (0.01340724) (0.013186633500000003) (0.013924502000000005) (0.013269281000000008) (0.013100705500000018) (0.013801228999999998) (0.013155219499999996) (0.013551414500000011) (0.013181803499999992) (0.013617582500000003) (0.013679196500000018) (0.013590868500000006) (0.013236366) (0.013195714499999983) (0.01322071050000001) (0.013491488499999982) (0.01331310899999999) (0.013668450499999998) (0.013236186999999983) (0.013707190999999994) (0.013119409000000012) (0.013194243500000008) (0.01292061450000001) (0.01325528500000002) (0.013479845500000004) (0.013072595499999992) (0.01290773299999999) (0.013002236) (0.01305303699999999) (0.012910322499999988) (0.013296260999999976) (0.013011382500000002) (0.013176486000000015) (0.013068697000000004) (0.012949343500000002) (0.013309018999999991) (0.012838003) (0.013284396500000017) (0.013134343499999993) (0.013073107000000014) (0.01291913900000001) (0.013125980499999995) (0.01281304250000001) (0.012951434500000011) (0.013154528500000026) (0.013175926000000004) (0.013068219999999992) (0.013295657500000002) (0.013038340999999995) (0.01322467300000002) (0.012925165999999988) (0.013594452000000007) (0.013420366999999989) (0.013465585000000002) (0.013340458499999985) (0.013071939499999977) (0.013380832999999995) (0.01373013549999999) (0.013156417499999976) (0.013623969) (0.013418139999999995) (0.013589717500000015) (0.01333540150000001) (0.013498659499999996) (0.013411304500000013) (0.013393070499999993) (0.013533175000000022) (0.013302314500000023) (0.013523218999999989) (0.013123919499999998) (0.013280102999999974) (0.013525390500000012) (0.01345134299999999) (0.013258834499999983) (0.013305450499999996) (0.01313688949999997) (0.013340554000000004) (0.013514352000000007) (0.0137233415) (0.013330149999999985) (0.013282565000000024) (0.013309732000000005) (0.013577293500000004) (0.013432299999999994) (0.01279501949999999) (0.013747083499999993) (0.012760468499999983) (0.012902802500000018) (0.013565298999999989) (0.013000190999999994) (0.013182834000000004) (0.013123578999999996) (0.013504730999999992) (0.013242722000000012) (0.013154865500000001) (0.013320304499999991) (0.01333651399999998) (0.013103884999999996) (0.013388465499999988) (0.013119935000000013) (0.013221843499999997) (0.013868113500000015) (0.013307677000000018) (0.012946185499999999) (0.013247636000000007) (0.012933269000000011) (0.012950614999999999) (0.013102998500000018) (0.013232994999999997) (0.013064023499999994) (0.013160476499999976) (0.012918983999999994) (0.013252463499999978) (0.013227767999999973) (0.013061421000000017) (0.013000155999999985) (0.013695995000000002) (0.013655334499999991) (0.013489032499999998) (0.0131463505) (0.01342610050000001) (0.013191652500000012) (0.013771049500000007) (0.013520779499999996) (0.013519199999999995) (0.013440435499999986) (0.013567545000000014) (0.013367800999999999) (0.013414398999999994) (0.013496195500000016) (0.013290121000000002) (0.013367959000000013) (0.01326891500000002) (0.013535134500000004) (0.013250526000000012) (0.013113477999999998) (0.013355837499999995) (0.01316174349999999) (0.013564069999999984) (0.013773831) (0.01351300499999998) (0.013586934500000009) (0.01357630750000001) (0.013472018499999988) (0.013582202500000001) (0.013406527500000001) (0.013666574500000014) (0.013453587000000003) (0.012961639499999997) (0.012964672499999996) (0.013155756499999977) (0.012982657499999994) (0.012879243499999984) (0.013024466000000012) (0.01314771549999999) (0.012930512000000019) (0.013200390500000006) (0.012990379999999996) (0.013540536999999991) (0.013071863000000017) (0.013158600999999992) (0.013548907999999985) (0.013203386000000011) (0.013091450000000004) (0.013030423499999999) (0.013094410500000014) (0.012969770000000005) (0.013443886000000002) (0.012941376000000018) (0.01305118399999998) (0.013190947999999994) (0.013116004000000014) (0.013274800000000003) (0.012988160499999998) (0.013370499499999994) (0.013117124499999994) (0.01339294800000003) (0.013335002000000012) (0.013430572000000016) (0.012933607500000013) (0.013229287499999992) (0.013428957000000005) (0.013363094500000006) (0.013483268500000006) (0.013364889500000005) (0.013144826000000012) (0.013273875000000018) (0.01351492700000001) (0.01352980450000002) (0.013834226000000005) (0.013449045500000006) (0.01335073199999999) (0.013479875000000002) (0.01331625900000001) (0.013841576000000036) (0.013583950499999983) (0.01327768850000001) (0.013564144999999986) (0.013189488500000027) (0.013282748499999997) (0.013480734500000008) (0.013259139999999989) (0.013508719500000016) (0.013410678499999981) (0.013349319999999984) (0.013258651499999982) (0.013313317500000019) (0.013315834000000012) (0.013276506000000007) (0.0135432615) (0.013654421499999986) (0.013546461999999981) (0.012865313000000003) (0.012847756500000002) (0.01305175750000001) (0.012819677000000002) (0.01308295100000001) (0.012896888500000009) (0.012940197500000014) (0.0133905255) (0.01321790199999999) (0.013190078999999993) (0.012867497500000005) (0.013075985999999998) (0.013444017500000002) (0.01298035950000001) (0.012893812000000004) (0.012924403999999987) (0.013356784499999996) (0.013023451500000005) (0.013043754000000019) (0.012788121000000013) (0.012947541000000007) (0.012982227000000013) (0.01291149150000001) (0.013030281500000018) (0.013111105499999998) (0.013188820000000004) (0.013050435000000013) (0.013107399999999991) (0.013553139999999991) (0.013447366499999988) (0.013051741500000005) (0.013055433000000005) (0.013342190500000004) (0.013183079500000014) (0.013371761999999995) (0.01377850550000001) (0.0132255535) (0.013101315000000002) (0.013420547500000005) (0.013298532000000016) (0.013211190499999997) (0.013255772999999998) (0.013390561500000009) (0.013410958) (0.013685891500000005) (0.013544347000000012) (0.013324226999999994) (0.013227487999999996) (0.013217883) (0.013321647999999991) (0.013511285500000011) (0.013353662000000002) (0.013336781999999991) (0.013269544500000008) (0.013240119500000008) (0.013281800499999996) (0.013346515499999989) (0.013693564499999991) (0.013316237999999994) (0.013514695499999993) (0.013322667999999996) (0.01408606200000001) (0.013555239499999996) (0.013447287000000002) (0.013008619999999999) (0.013756895500000005) (0.013295561000000011) (0.013535321500000017) (0.012953091) (0.013376597500000004) (0.012909143499999998) (0.013353749999999998) (0.012964306499999995) (0.013390441000000003) (0.012895866500000006) (0.013285180999999993) (0.012793722000000007) (0.013101176999999992) (0.012920754500000006) (0.013559392000000017) (0.012917731500000015) (0.013014922999999998) (0.012876900499999996) (0.01286382300000001) (0.013143175999999993) (0.012954001999999992) (0.012849741999999997) (0.012863259000000002) (0.013499288999999998) (0.013296897000000016) (0.01288980699999999) (0.013440833499999999) (0.01317460949999999) (0.013136797000000006) (0.013061271000000013) (0.013244898500000005) (0.01323408999999999) (0.013250144500000005) (0.013239911500000007) (0.013430186499999996) (0.013125486500000005) (0.013790042500000016) (0.013006002500000002) (0.013335363500000016) (0.013506850500000014) (0.013462107499999987) (0.013606102499999995) (0.01363738249999999) (0.013489794) (0.013736983000000008) (0.0133566985) (0.01349280700000001) (0.013086867000000002) (0.013143841999999989) (0.013404064500000007) (0.013462159999999987) (0.013493865000000008) (0.013333091500000005) (0.013466421999999992) (0.013441600499999984) (0.013609067500000002) (0.013397103500000007) (0.013521088) (0.013919371) (0.014171826000000012) (0.01358246099999999) (0.013393966500000007) (0.01338897900000001) (0.013002852500000009) (0.012795316500000015) (0.012906320999999998) (0.012863648000000005) (0.013157802499999982) (0.012963114499999998) (0.012778893999999999) (0.013124517500000002) (0.013305340500000012) (0.013535513499999985) (0.013044479499999997) (0.013029703500000003) (0.013267015500000007) (0.013048036499999999) (0.013349755000000005) (0.013210743999999996) (0.013214555500000003) (0.012933538999999994) (0.012851614499999997) (0.012800016000000011) (0.013160251500000011) (0.013049769500000016) (0.012870999999999994) (0.013244966499999983) (0.013042469000000001) (0.013144671499999996) (0.0130016845) (0.01301579700000001) (0.0132016945) (0.013124374000000022) (0.013163475000000008) (0.013135068500000013) (0.013122575999999997) (0.013545057500000013) (0.0134586825) (0.013407707500000005) (0.013245748999999987) (0.013060117999999996) (0.013380137999999986) (0.013441575499999997) (0.013522464999999997) (0.0132830585) (0.013272579000000007) (0.013357129500000009) (0.01363927999999999) (0.013376617500000007) (0.013339869500000004) (0.013726776499999996) (0.013656935500000009) (0.013229996500000007) (0.013217161000000005) (0.013470336499999985) (0.0131941805) (0.013277113500000007) (0.013270392499999992) (0.013628550000000003) (0.013436203500000007) (0.013351196999999995) (0.013311650500000008) (0.013035722) (0.013528012499999992) (0.013432378499999995) (0.013474458500000008) (0.013537055000000006) (0.012937929) (0.012940516499999985) (0.012901572999999986) (0.013006519500000008) (0.012874491000000002) (0.0129522195) (0.01288249150000001) (0.012873195500000004) (0.012927906499999989) (0.013307212500000012) (0.013201649999999995) (0.013127471000000002) (0.01299291000000001) (0.013475797000000012) (0.013103121499999981) (0.013097124500000001) (0.013482696500000002) (0.013136309000000013) (0.013171059999999998) (0.013481988000000014) (0.013097438500000017) (0.013084195000000007) (0.01293467899999999) (0.013151172500000002) (0.013139915000000002) (0.012864334000000005) (0.013233157500000009) (0.013096270500000007) (0.013176023499999995) (0.013363374500000011) (0.013172024000000018) (0.013200596000000009) (0.013235014500000003) (0.013154442500000002) (0.013242839500000006) (0.013309001) (0.013294268999999997) (0.013357457500000003) (0.01342394999999999) (0.013419147999999992) (0.013523886500000012) (0.013314588500000002) (0.013586225499999993) (0.013651495) (0.013630528000000017) (0.013307387499999976) (0.013577685999999978) (0.013357697000000016) (0.013336972000000002) (0.01338221349999999) (0.013279793000000012) (0.013378705000000005) (0.013113990000000006) (0.013243812500000007) (0.013165600999999999) (0.01322103949999999) (0.013747820000000008) (0.013423848500000002) (0.013359296500000006) (0.013240615999999997) (0.013667526) (0.013223832500000005) (0.01356890899999999) (0.013487238499999998) (0.013178870499999995) (0.012799548999999993) (0.012795129000000002) (0.013109386499999987) (0.012900445999999996) (0.01292191749999999) (0.013003768499999999) (0.012896460500000012) (0.013306914500000003) (0.013215813500000007) (0.013212866500000017) (0.013041254500000016) (0.012993352) (0.013185816500000017) (0.013033357000000023) (0.013273120499999999) (0.012875324000000007) (0.012987133499999984) (0.01344252750000001) (0.012818087000000006) (0.012765718999999995) (0.013046193999999997) (0.013016561499999996) (0.012833989500000004) (0.012773630499999994) (0.013148772500000003) (0.013200879499999998) (0.012998600499999985) (0.013110896999999982) (0.013318696000000005) (0.013157111500000013) (0.013168812999999988) (0.013121223000000001) (0.01329801450000001) (0.013523507000000004) (0.013768883499999995) (0.013527070500000002) (0.013729394500000006) (0.013332727500000002) (0.013595571) (0.013513526000000012) (0.013477707999999991) (0.013317091000000017) (0.013259169999999987) (0.01369230049999999) (0.013182233000000015) (0.013260704499999984) (0.013398070499999984) (0.013590749499999999) (0.013570914000000003) (0.013327325000000001) (0.01346093050000001) (0.013522869999999992) (0.013267362000000005) (0.013431054499999998) (0.013215035000000014) (0.013385513000000016) (0.014035626499999995) (0.013511190499999992) (0.013498093999999988) (0.013517094999999993) (0.013425503499999991) (0.013350961500000022) (0.014141752499999993) (0.012795714) (0.013280301999999994) (0.012927790000000008) (0.012976474500000001) (0.012890654500000001) (0.013037219999999988) (0.013383271500000002) (0.0131658085) (0.013119133499999991) (0.013091053000000005) (0.012899119000000014) (0.013395292000000003) (0.013130631500000003) (0.013214945000000006) (0.012893920499999989) (0.012922472000000018) (0.01274115449999999) (0.012796771999999998) (0.012930227500000002) (0.012875559000000009) (0.012919241000000012) (0.012987723999999992) (0.012924131499999991) (0.013110604999999984) (0.013051414000000011) (0.013261835499999985) (0.013233700999999973) (0.013426631500000008) (0.01277152799999999) (0.013139420999999998) (0.01300291349999999) (0.01325106849999999) (0.013343599999999997) (0.013373676499999987) (0.013471971999999999) (0.013230270499999988) (0.013565531999999991) (0.013719849500000006) (0.013464797) (0.013174414500000009) (0.013291429999999979) (0.013511048500000011) (0.013210602500000002) (0.013411698) (0.013607082999999992) (0.013874413500000016) (0.013138906000000006) (0.013308406500000008) (0.013644598500000008) (0.0133380045) (0.013604331499999997) (0.013372905500000004) (0.013378299499999996) (0.013778755000000004) (0.013393653500000005) (0.013511856000000003) (0.013345557499999994) (0.013715842000000006) (0.013386361999999985) (0.013664207000000012) (0.013245655000000009) (0.013478700999999996) (0.01365992050000002) (0.01343224450000001) (0.013055580499999997) (0.012949764500000002) (0.013040320000000008) (0.012943349499999993) (0.013320272500000008) (0.012843845500000006) (0.012994156999999992) (0.012949364500000005) (0.013118824499999987) (0.013230504000000004) (0.01347815500000002) (0.013380360500000008) (0.013371187500000006) (0.013027099000000014) (0.013623074999999998) (0.012759972999999994) (0.012867053500000017) (0.013088736000000004) (0.012882757500000008) (0.012902162500000008) (0.012901200000000015) (0.013183455999999996) (0.013234293000000008) (0.013060114500000011) (0.012992911499999996) (0.013166245499999979) (0.013220692999999978) (0.012941337999999997) (0.01324057200000002) (0.013084031499999996) (0.013293264000000013) (0.013036357499999998) (0.013435949500000002) (0.01352756849999999) (0.013847262500000013) (0.013487526) (0.013484795999999993) (0.013531723500000009) (0.013387575499999999) (0.013444546000000002) (0.013316617999999988) (0.013603757000000022) (0.013533211999999989) (0.013405662500000026) (0.013351438500000007) (0.013325001500000017) (0.013394056000000001) (0.013657118999999995) (0.013556508999999994) (0.013347316000000012) (0.0135523865) (0.013690811499999997) (0.013304009499999991) (0.013208496499999986) (0.013743875999999988) (0.013316585499999992) (0.013335417000000002) (0.013660266500000018) (0.013761621000000002) (0.013403911500000004) (0.013555056499999982) (0.013441102999999996) (0.013674592000000027) (0.01381275550000001) (0.01349823) (0.013158155000000005) (0.012868836999999994) (0.0130949915) (0.013210150500000004) (0.013271481500000001) (0.0130507485) (0.01313647350000001) (0.013320689499999996) (0.013104443999999979) (0.013325103000000005) (0.013087605500000002) (0.013334318499999984) (0.013181713500000011) (0.013095540499999975) (0.013172538499999983) (0.012906232499999976) (0.013077648999999983) (0.013321829000000007) (0.0131306115) (0.013166648500000003) (0.01353421049999999) (0.012895197999999983) (0.013310044499999993) (0.013252340499999987) (0.013093715999999991) (0.012916043500000002) (0.013302782499999999) (0.013001935500000006) (0.013110210499999983) (0.013113004500000011) (0.013234181999999997) (0.013384755499999998) (0.013223111999999995) (0.013314466500000025) (0.013185742999999986) (0.013400384999999987) (0.013454262000000008) (0.013193157999999996) (0.013109447499999996) (0.013477317999999988) (0.013713089500000011) (0.013516582499999999) (0.013346524499999998) (0.013239346000000013) (0.013395617500000012) (0.013457412999999988) (0.013329507500000018) (0.013437714999999989) (0.013562506000000002) (0.013081281) (0.013192201999999986) (0.01354232150000001) (0.013272934000000014) (0.013474832499999992) (0.013374535000000007) (0.013483671500000002) (0.013686173999999982) (0.013758050500000008) (0.013282319000000015) (0.013191391500000024) (0.013329265000000007) (0.013588300499999983) (0.013427997500000025) (0.0130508285) (0.01297973799999999) (0.013017131000000001) (0.012868907000000013) (0.012814103500000007) (0.012815182499999994) (0.01294468850000001) (0.012982754999999999) (0.013068244999999992) (0.013119069999999997) (0.013027220499999992) (0.0130669655) (0.0132439835) (0.01324075999999999) (0.01326451250000002) (0.012919997500000002) (0.013492194499999999) (0.013224721500000008) (0.013284242500000001) (0.012904159499999998) (0.013182110999999996) (0.012919858500000006) (0.012960257499999989) (0.013117508) (0.013193641499999992) (0.013129256500000006) (0.013026807500000001) (0.013067507999999978) (0.012983721000000017) (0.013010012500000001) (0.012869676999999996) (0.013141998500000002) (0.013406517000000007) (0.013254146500000008) (0.013597352000000007) (0.013217933000000001) (0.013233838500000011) (0.013136319000000007) (0.013386149) (0.013159769500000001) (0.013207910999999989) (0.013097439999999988) (0.013748229) (0.013606711000000007) (0.013205553999999994) (0.013245076000000008) (0.013809833999999965) (0.0137347325) (0.013233677999999999) (0.013311311000000006) (0.013524371500000007) (0.013342602999999995) (0.013286460000000014) (0.013564878999999988) (0.01319321200000001) (0.01351757349999999) (0.013283574499999978) (0.013639651500000002) (0.013461810000000005) (0.013349133500000027) (0.01335870800000001) (0.013567911000000002) (0.013674694000000015) (0.013351091499999981) (0.012960001999999984) (0.013187372999999988) (0.013066333) (0.013438276999999998) (0.012766901499999997) (0.013004372499999986) (0.013295064500000009) (0.013017496999999989) (0.013167311000000001) (0.01329229350000001) (0.013191601499999997) (0.013349362999999989) (0.013063304499999998) (0.013013003000000009) (0.013261405500000004) (0.013329927500000005) (0.013081479499999993) (0.013174253499999997) (0.013131730999999994) (0.013230119500000012) (0.013202612000000002) (0.012953649000000012) (0.012989644999999994) (0.013158785500000006) (0.013393403999999998) (0.01310463249999999) (0.013304787999999998) (0.013114259499999989) (0.013472740999999996) (0.013284360500000009) (0.013048142499999985) (0.013464502500000003) (0.013826168) (0.013224214999999997) (0.013495146) (0.013275003000000007) (0.013268858499999994) (0.013517081) (0.013282197499999995) (0.013626633999999999) (0.013316826500000004) (0.013259330000000027) (0.013491619499999996) (0.013539013000000016) (0.013397084999999975) (0.013686971500000006) (0.01328241799999999) (0.013645707500000007) (0.013477698499999996) (0.013355936999999998) (0.01314963949999999) (0.013151220500000019) (0.013210619500000007) (0.0135129675) (0.0132076005) (0.01326970249999998) (0.013579532499999991) (0.013298349500000015) (0.013724975) (0.01328306600000001) (0.013531990499999993) (0.013521724000000013) (0.013303081999999994) (0.013393194999999983) (0.012871467499999997) (0.012787402500000003) (0.013116026000000017) (0.012880098999999992) (0.012980989500000012) (0.013092369999999992) (0.013056504999999996) (0.013176520000000011) (0.013241169999999997) (0.013167879499999993) (0.013222122499999989) (0.013399016) (0.013049666500000015) (0.01306255800000003) (0.0131569255) (0.012864631000000001) (0.013008622500000025) (0.013222827000000006) (0.01313060349999999) (0.013101909500000009) (0.013009311999999995) (0.013496111500000005) (0.01320096400000001) (0.013332510999999991) (0.01386482700000001) (0.01317871750000002) (0.013073209499999988) (0.012838208000000004) (0.013333138000000008) (0.013202356999999998) (0.013103908499999983) (0.012964664) (0.013197774499999995) (0.013547012499999997) (0.013250507499999994) (0.013304347499999994) (0.01332509400000001) (0.013735614999999993) (0.013208870999999983) (0.013194754000000003) (0.013451887999999995) (0.013553418499999997) (0.013320219500000008) (0.013379298999999997) (0.013878448000000015) (0.013436963499999996) (0.013670498000000003) (0.013305642499999992) (0.013741978000000016) (0.0137514995) (0.013287893000000009) (0.013329491999999998) (0.013214040999999996) (0.013492434000000011) (0.013107431499999989) (0.013422984000000013) (0.013401541500000017) (0.01357397199999999) (0.01327234100000002) (0.013428197000000003) (0.0134805635) (0.01319044649999998) (0.013577557500000004) (0.01343527849999998) (0.012881114500000013) (0.012872698500000002) (0.012944078000000012) (0.0131289235) (0.012958129499999985) (0.012995199999999998) (0.012954850500000004) (0.013189537000000015) (0.012925531500000004) (0.01345892750000001) (0.013186513999999996) (0.013213754500000022) (0.013472966000000003) (0.01307137849999998) (0.013003634000000014) (0.01315085050000002) (0.013031514499999994) (0.013076027000000004) (0.012956031999999992) (0.012926683999999994) (0.013416887999999988) (0.01324155249999999) (0.013075621000000023) (0.012982542500000013) (0.013093750000000001) (0.013360508000000007) (0.013369695499999987) (0.0130692575) (0.013345259000000012) (0.01341080950000001) (0.013186708999999991) (0.013356695999999987) (0.013224945000000002) (0.013552518500000013) (0.013312028500000003) (0.013605630499999993) (0.013370234500000008) (0.013159124999999994) (0.013239445999999988) (0.01329132199999998) (0.01320847650000001) (0.013880634500000003) (0.013545493999999991) (0.013703208500000008) (0.01402951249999998) (0.013614532000000013) (0.0132948445) (0.013775918999999984) (0.013457524499999998) (0.013347082499999996) (0.013494801) (0.013555774999999978) (0.013593561500000004) (0.0134825415) (0.013534936500000011) (0.013529939500000004) (0.013436005) (0.01325475500000002) (0.013414010000000004) (0.013799867000000021) (0.013569774999999992) (0.013584666500000009) (0.013311717499999987) (0.013496064500000002) (0.013022911499999998) (0.012896192500000014) (0.013313532500000003) (0.013530394999999987) (0.01344232649999999) (0.012993577000000006) (0.013054379000000005) (0.01310215150000002) (0.01330588299999999) (0.013179227000000002) (0.012827778000000012) (0.0132885705) (0.013057116000000007) (0.01296008849999998) (0.012950444000000005) (0.013004372999999972) (0.013203665000000003) (0.013092741500000005) (0.012865598000000006) (0.012749488000000017) (0.012896802999999998) (0.013052336500000011) (0.01308107349999997) (0.013118863999999994) (0.0129229015) (0.013085820999999984) (0.01325667550000001) (0.013125738499999998) (0.013031955500000011) (0.013039734000000011) (0.012925696500000028) (0.013047126999999992) (0.013534625499999994) (0.01353049299999999) (0.013252280499999991) (0.013293079) (0.013406988500000022) (0.013097271000000008) (0.013531373000000013) (0.013439058500000003) (0.013687299000000014) (0.013589310500000035) (0.013473846500000011) (0.013475254000000006) (0.013436322000000014) (0.013173845500000017) (0.013414371999999994) (0.013362410500000019) (0.013417225000000005) (0.013051648499999999) (0.013191218500000018) (0.013418100000000002) (0.013520160000000003) (0.013460042500000005) (0.013402493500000001) (0.013768568499999995) (0.013395185500000004) (0.013243717000000016) (0.013457444000000027) (0.013407905999999997) (0.01354617650000002) (0.013619143500000014) (0.013769322000000014) (0.013739728000000007) (0.0131578725) (0.013403581499999997) (0.01302694750000001) (0.012930999999999998) (0.012899894000000009) (0.013303762500000024) (0.013003809000000005) (0.013090574500000021) (0.013187129500000005) (0.013250560499999994) (0.013357743500000019) (0.012839959500000012) (0.013003328499999994) (0.013155082499999998) (0.013229455500000015) (0.012996565000000002) (0.012954809999999997) (0.013172067999999981) (0.013188642499999986) (0.013142616499999982) (0.01284324349999999) (0.012977219999999998) (0.013158407999999996) (0.013393260500000004) (0.013014174500000003) (0.013129503) (0.013171454500000027) (0.01301637500000001) (0.013023607500000034) (0.012794976000000013) (0.013256284000000007) (0.013024581999999993) (0.013590314500000006) (0.013179930000000006) (0.013139941500000016) (0.013237654500000001) (0.013285154000000035) (0.013439884) (0.013361777499999991) (0.013429409499999989) (0.013265970500000002) (0.01343211250000001) (0.013818232) (0.013421903500000013) (0.013349338499999988) (0.013169312000000016) (0.013747237000000023) (0.013147345000000005) (0.013217519499999997) (0.013159775500000012) (0.013248600000000013) (0.013282539999999995) (0.01323611949999999) (0.01316202399999998) (0.013336479999999984) (0.013422764000000018) (0.013207755499999987) (0.013489274499999995) (0.013762064000000018) (0.013685875499999986) (0.01357420300000002) (0.013600481500000011) (0.013751021499999988) (0.013800317500000006) (0.013147709500000007) (0.013323583) (0.013015402499999995) (0.013142820000000013) (0.012921395500000002) (0.012898984500000002) (0.013073835000000006) (0.013123424000000009) (0.012830841500000023) (0.013023796000000004) (0.013217158500000006) (0.013085747499999995) (0.013007091999999984) (0.013098364000000015) (0.012905838500000016) (0.01370961549999998) (0.013189278999999998) (0.013235173499999989) (0.013394763000000018) (0.013136713499999994) (0.01324346300000001) (0.013006447000000004) (0.013262172499999988) (0.012974613500000023) (0.013247380500000017) (0.013113283999999975) (0.012918234) (0.012894717999999972) (0.013828308499999997) (0.013078207000000008) (0.013490902499999985) (0.012954598500000011) (0.013439382) (0.013431003999999983) (0.01344315750000001) (0.013696675000000005) (0.013196799500000009) (0.013318752499999989) (0.013487778000000006) (0.013340151999999994) (0.013527672000000004) (0.013498233999999998) (0.013298567500000025) (0.013374504499999995) (0.013182589499999994) (0.013252065500000007) (0.013518213000000001) (0.013576771499999987) (0.013280629500000002) (0.01365796700000002) (0.013459893500000028) (0.01329266649999998) (0.013284010499999999) (0.01324768599999998) (0.013422654999999992) (0.013648171) (0.013609317500000023) (0.013389115000000007) (0.013366507) (0.013301769000000005) (0.013361765499999997) (0.013252273500000009) (0.013370901500000004) (0.01352374050000002) (0.01313861249999998) (0.012873768500000021) (0.013326322000000002) (0.013195332000000004) (0.013008982500000002) (0.012906484499999996) (0.012840512999999998) (0.012969729499999999) (0.013166085499999994) (0.013008261000000007) (0.013377691999999997) (0.013153447000000013) (0.013219005000000006) (0.013411404499999988) (0.013173577500000005) (0.013314181500000008) (0.013107126999999996) (0.01316941449999999) (0.013451849500000015) (0.012779016999999976) (0.013121782500000012) (0.013013999999999984) (0.013095104999999996) (0.013409352499999999) (0.013162983000000003) (0.013147751999999971) (0.013190093500000014) (0.013223247000000007) (0.013517920000000017) (0.012996073999999996) (0.013181209000000013) (0.013314723500000028) (0.013240333999999992) (0.013979039499999998) (0.013131334000000008) (0.013318035999999991) (0.013356412499999998) (0.013399518499999985) (0.013451905000000014) (0.013301161500000006) (0.013321072000000017) (0.013662154499999982) (0.013255210500000003) (0.013263118000000004) (0.013636412) (0.013364708000000003) (0.013313550000000007) (0.013472719999999994) (0.013151280000000001) (0.013413094) (0.013747262499999996) (0.01310306650000001) (0.013348263500000013) (0.013267627000000004) (0.013390526000000014) (0.013373658499999996) (0.013403347499999968) (0.013432366500000001) (0.013501513000000007) (0.013571720500000009) (0.013669722999999995) (0.013524935999999987) (0.013356498499999994) (0.013732395500000022) (0.013007540499999998) (0.013274663999999992) (0.01300472200000001) (0.012932043000000004) (0.012805972499999985) (0.012872715000000007) (0.012822755000000005) (0.012869459) (0.013434217500000012) (0.01308012800000001) (0.013002582500000012) (0.013049130500000006) (0.012959537500000007) (0.012903084500000009) (0.013307056999999997) (0.013015373999999996) (0.012985208000000012) (0.013188099500000008) (0.012862616500000007) (0.012960847999999997) (0.013061332000000009) (0.012975489500000006) (0.0130971265) (0.012900154499999983) (0.012916133499999996) (0.012827557999999989) (0.013074451499999987) (0.013413703500000013) (0.012991895000000003) (0.012880353499999997) (0.013140103) (0.013344821499999979) (0.013228043999999994) (0.013650180999999997) (0.013183786000000003) (0.013565948000000008) (0.01340955499999999) (0.013327399500000003) (0.013324134000000001) (0.013384853000000002) (0.013734807500000015) (0.013463695499999997) (0.013330567500000015) (0.013661185000000006) (0.013892359000000007) (0.013431224500000005) (0.013287732999999996) (0.013312183499999991) (0.013873120000000003) (0.013420908499999995) (0.013460471500000015) (0.013105447000000006) (0.013442309000000013) (0.0133831965) (0.013268182500000003) (0.01329649799999999) (0.013675511000000001) (0.013099513999999993) (0.013562365999999992) (0.013757647000000026) (0.013361100999999986) (0.013566966500000013) (0.01371462850000002) (0.013551254500000012) (0.012841207999999993) (0.01284153049999999) (0.012963749499999996) (0.01301714000000001) (0.012918203500000003) (0.013025903999999991) (0.012931533500000009) (0.013030931999999995) (0.012906465000000006) (0.012916576499999999) (0.01287581900000001) (0.01304421) (0.012980790999999992) (0.013315598499999984) (0.012706189999999992) (0.013096776500000018) (0.01323817150000002) (0.013323177500000005) (0.013223942000000002) (0.0129163115) (0.013060625000000006) (0.012909941499999994) (0.012932775000000007) (0.012964262500000004) (0.013000353499999992) (0.013084790499999985) (0.01326998750000001) (0.01310085850000002) (0.013427488000000029) (0.013030920499999987) (0.013256028499999975) (0.013256467499999994) (0.013293087499999995) (0.013544457999999995) (0.0131111785) (0.013343608500000007) (0.013339239500000002) (0.013510727) (0.013335906499999994) (0.013202527499999991) (0.013846725000000004) (0.013239676999999991) (0.013509952499999991) (0.013201186500000017) (0.014036315500000007) (0.013636347000000021) (0.013228239000000017) (0.013352875) (0.013107302000000001) (0.01319191950000001) (0.013316752000000015) (0.013692459500000018) (0.013228404999999985) (0.013475778500000007) (0.013405311500000003) (0.01340505900000001) (0.01330439750000001) (0.013385876000000019) (0.01368336349999999) (0.013466984000000001) (0.013916775500000006) (0.013599988000000007) (0.013884208000000009) (0.013436027500000003) (0.013138441) (0.013018763499999988) (0.012906620999999993) (0.013004092000000009) (0.01292873700000001) (0.013595905999999991) (0.01315442750000001) (0.012832148500000001) (0.013163041) (0.01317600499999999) (0.013042037499999978) (0.01306352650000002) (0.01311227949999999) (0.013157097499999992) (0.01307353750000001) (0.012952484000000028) (0.013083369999999997) (0.012956241500000007) (0.012768426) (0.013193498499999998) (0.012812349499999987) (0.013121571999999998) (0.012797224999999995) (0.012916666500000007) (0.012996927500000005) (0.013096249500000004) (0.013455340499999996) (0.013167510000000021) (0.013414512500000003) (0.012965587000000015) (0.012833057999999994) (0.0131008175) (0.013208022999999985) (0.013285903000000002) (0.013183351999999995) (0.013252287000000015) (0.013316255499999999) (0.01378777099999999) (0.013176525999999994) (0.013470920499999997) (0.013174777000000013) (0.013725546499999991) (0.013272205500000009) (0.013558398000000013) (0.013667365999999986) (0.013409020000000021) (0.013709194500000008) (0.013449098000000007) (0.013293553499999985) (0.013537437) (0.013175505000000004) (0.014090081000000004) (0.013400837000000013) (0.013110182999999997) (0.013401432000000005) (0.013802381000000002) (0.013492861499999995) (0.013421321999999986) (0.01371869199999999) (0.013840960000000013) (0.013421979500000014) (0.01363911550000002) (0.013461052000000001) (0.013490155999999975) (0.013332276000000004) (0.01304902799999999) (0.012898464499999998) (0.013319402000000008) (0.013286900000000018) (0.012907752999999994) (0.013495559500000004) (0.01301609749999999) (0.013702603500000007) (0.013198100500000004) (0.013637644000000004) (0.013546239500000001) (0.013515672499999978) (0.013020872999999974) (0.013063523000000007) (0.0131837635) (0.012955545999999998) (0.013254182500000003) (0.012820689499999996) (0.013030635499999998) (0.0128233705) (0.012896688000000003) (0.012865910000000008) (0.013079998999999995) (0.013303801000000004) (0.013258687500000019) (0.013380932999999998) (0.013241985499999998) (0.013271507000000002) (0.013049294500000003) (0.0133801655) (0.0133146975) (0.0136425305) (0.013434690999999999) (0.013349076500000015) (0.013143827499999997) (0.013510701000000014) (0.013301479000000005) (0.013355464499999997) (0.013330154499999997) (0.01365161300000002) (0.013680382500000018) (0.013244817999999992) (0.013597072000000002) (0.013590609999999975) (0.01349370549999998) (0.013612773500000008) (0.01310241799999999) (0.013390520000000017) (0.013597113000000008) (0.013034333500000023) (0.0134007295) (0.013255405000000012) (0.013171540499999995) (0.013207352999999991) (0.013356512999999987) (0.013620102500000009) (0.013578405999999987) (0.013329493999999997) (0.013388688500000023) (0.013659617000000013) (0.013571026) (0.013755803000000025) (0.013398537500000002) (0.014219141500000004) (0.012834750500000006) (0.012955919499999996) (0.013014064500000005) (0.013031080999999986) (0.012938032500000002) (0.013377491000000019) (0.013108983000000005) (0.013331225000000002) (0.01306782699999999) (0.013335245999999995) (0.013053193000000032) (0.013044921499999987) (0.013096137999999993) (0.012895017999999994) (0.01325704749999998) (0.013139531499999982) (0.01278918250000001) (0.013117547000000007) (0.013593593500000015) (0.012875273500000006) (0.013103611499999987) (0.013041276000000018) (0.012824109) (0.01343727800000001) (0.01331089499999999) (0.013035630999999978) (0.01336873949999999) (0.012940858) (0.012986230500000001) (0.013077323999999974) (0.013060953999999986) (0.013355813999999994) (0.013225416500000003) (0.013175586500000003) (0.01340804150000001) (0.013180911000000003) (0.0132952645) (0.01327988649999999) (0.01316693549999999) (0.013596795499999995) (0.013383031000000017) (0.01317595000000002) (0.013530320499999998) (0.013466081500000004) (0.013314656500000008) (0.013337399499999972) (0.013664655999999997) (0.013179802500000004) (0.013449864500000006) (0.013267438999999992) (0.013114076500000002) (0.01325643500000001) (0.013196169000000021) (0.013634317499999993) (0.013409013999999997) (0.013356117500000014) (0.013445998500000014) (0.013600820500000013) (0.013297386999999994) (0.013601655000000018) (0.013424536500000014) (0.013426131000000008) (0.013256912499999982) (0.012965329000000012) (0.01290724) (0.012832043500000001) (0.013077407) (0.012923514999999997) (0.012717362499999982) (0.013176668000000016) (0.012969964000000014) (0.012705798000000004) (0.013202336500000009) (0.012858213999999979) (0.012936599999999993) (0.013098900500000024) (0.013586547500000004) (0.012903928999999995) (0.0135476935) (0.013305684999999998) (0.013066424500000007) (0.013081868499999982) (0.013122975999999995) (0.013201450500000003) (0.013011765000000036) (0.012883859000000011) (0.013183086499999996) (0.013485977499999996) (0.01302179399999999) (0.01310376399999999) (0.01315388549999999) (0.012976483999999996) (0.013163907500000016) (0.013163804500000001) (0.013256821999999988) (0.013118126000000022) (0.013441468000000026) (0.013352381500000024) (0.013275403000000005) (0.013441011500000016) (0.013128712) (0.013182641499999995) (0.013126393999999972) (0.013558808000000006) (0.01337641149999999) (0.013675027499999992) (0.013474306999999991) (0.013174892000000007) (0.013412150999999983) (0.013800831999999999) (0.013363822000000025) (0.013561665) (0.013121802500000002) (0.013466159999999991) (0.013112680499999987) (0.013436955499999986) (0.013965879999999986) (0.01334259850000001) (0.013220844999999995) (0.013548707499999993) (0.013475593999999994) (0.013573904500000011) (0.013538116000000003) (0.013183815499999973) (0.013463090000000011) (0.01364998000000002) (0.013476068999999993) (0.013226982500000012) (0.012952026000000005) (0.013302172499999987) (0.013009183500000021) (0.012949078000000003) (0.01315395400000001) (0.012899309499999984) (0.012952046000000009) (0.012778758500000001) (0.01338797500000001) (0.012969840999999982) (0.013341705499999995) (0.013390449999999984) (0.013254141999999983) (0.013140204000000016) (0.013085762) (0.0129936155) (0.013127513500000007) (0.013364526500000029) (0.013326223000000026) (0.013031740500000014) (0.012883886999999997) (0.01280533049999999) (0.013012908500000003) (0.012897661000000005) (0.013103615499999971) (0.013345482000000006) (0.013165510500000019) (0.013057537500000008) (0.013357951000000007) (0.013208671500000019) (0.013010634999999993) (0.013088920000000004) (0.013587427500000013) (0.013284605000000019) (0.013165951500000009) (0.013226206000000004) (0.013151030000000008) (0.013285179000000008) (0.013609093999999988) (0.013241156500000018) (0.013451069499999982) (0.013631757500000008) (0.013361005499999981) (0.013629062000000011) (0.013170310000000018) (0.013674215000000017) (0.013517877000000011) (0.013308807000000006) (0.01360977749999999) (0.013057953499999997) (0.013354869000000005) (0.013354109500000003) (0.013237660999999984) (0.01339759950000001) (0.013087381499999995) (0.013634089000000002) (0.013527546500000001) (0.013163695000000003) (0.013285801500000013) (0.013161783999999996) (0.013413859500000014) (0.013404956499999995) (0.013394704500000007) (0.013119224499999985) (0.013196027000000013) (0.012872291000000008) (0.012980714000000004) (0.012947641999999995) (0.013156413999999991) (0.012902896999999969) (0.012746683000000009) (0.012949710000000017) (0.012921704499999992) (0.013147100000000009) (0.013078303500000013) (0.013214889000000007) (0.013279553999999985) (0.013053974499999996) (0.013029921000000014) (0.013103668999999984) (0.013236722500000006) (0.012908477500000015) (0.013170554000000001) (0.0129210555) (0.013296793499999987) (0.012874865500000013) (0.012790438000000015) (0.013072219999999996) (0.012945184999999984) (0.013429229999999986) (0.013232612000000005) (0.013219111500000005) (0.013290863499999986) (0.013111498999999999) (0.013103768500000001) (0.013244481499999974) (0.01346369850000001) (0.013310219000000026) (0.013428324500000005) (0.013510145499999987) (0.01349528799999998) (0.013425437500000012) (0.013259333999999998) (0.013284561999999986) (0.0137413235) (0.013714096000000009) (0.013689471000000009) (0.013223040500000019) (0.013633652499999982) (0.013509833499999999) (0.013266884499999992) (0.013388693000000007) (0.013230688500000018) (0.013615289500000002) (0.013488346499999998) (0.013652177499999973) (0.013049482000000015) (0.01330763800000001) (0.013352387500000007) (0.013436557000000016) (0.013389363000000001) (0.013359407000000004) (0.013588168499999984) (0.013782289000000003) (0.013705752499999987) (0.013195454999999981) (0.013288431999999975) (0.013113568499999992) (0.01303383150000001) (0.013399840999999996) (0.013040720999999991) (0.013038379000000017) (0.012931829000000006) (0.012780244499999996) (0.013077983500000001) (0.013053629999999997) (0.013146781999999996) (0.013220638500000007) (0.01302850400000001) (0.013174912999999996) (0.013372216000000006) (0.013203158000000007) (0.013041603500000026) (0.012981357999999998) (0.013027728999999988) (0.01287807149999999) (0.012925310999999995) (0.013007110000000002) (0.013113854999999994) (0.013195000000000012) (0.013346250499999976) (0.012907658499999988) (0.012937986500000012) (0.013140921) (0.013174654500000021) (0.013537908499999987) (0.013154348499999982) (0.012881181500000019) (0.013012606999999995) (0.013273434999999986) (0.013264783000000016) (0.013141193500000009) (0.013440649499999999) (0.013216594499999984) (0.013301919000000023) (0.013106270999999989) (0.013358703500000013) (0.01334403000000002) (0.013565915499999998) (0.013269677499999993) (0.013423073999999993) (0.013738445000000002) (0.013755527500000003) (0.013187774000000013) (0.013315133500000007) (0.013302322000000005) (0.013491253500000008) (0.013295445000000017) (0.013398099499999996) (0.013148886499999984) (0.013179247000000005) (0.013287459999999987) (0.01336975700000001) (0.013448327000000038) (0.013727002500000016) (0.013694060499999994) (0.0137189115) (0.013392136999999985) (0.013724719499999996) (0.013285878000000029) (0.013248349999999992) (0.013363197500000007) (0.012933234999999987) (0.01330289450000001) (0.012888915) (0.012781477000000013) (0.013381035500000013) (0.013053072999999998) (0.0131634095) (0.012985865) (0.0129176015) (0.013638339999999999) (0.013234874500000007) (0.013101173499999993) (0.013222328999999991) (0.013079171) (0.013317785999999998) (0.0130154445) (0.0129712315) (0.013021271000000029) (0.012980391000000008) (0.012932389000000002) (0.013076724500000012) (0.013110211499999996) (0.013135753000000014) (0.013439786000000009) (0.013226942999999991) (0.012974765499999999) (0.013119150999999996) (0.013317953999999979) (0.013279480499999982) (0.013477151499999993) (0.01313600949999999) (0.01339428899999999) (0.013554017500000015) (0.01341258799999999) (0.013645730000000009) (0.013129955500000012) (0.013431441500000016) (0.013069598999999987) (0.013032551500000003) (0.013155422999999972) (0.013299332999999997) (0.013489489999999993) (0.013108478999999992) (0.013474187999999998) (0.013163096500000013) (0.013429092500000003) (0.013736672500000005) (0.01356716550000002) (0.013240747499999997) (0.01316510550000001) (0.013325464000000009) (0.013086885500000006) (0.013433482499999996) (0.013241568500000023) (0.013311768500000015) (0.013790863499999986) (0.013497336499999998) (0.013133807499999997) (0.013643959499999997) (0.013310661000000001) (0.013443805000000017) (0.013340746500000014) (0.013653325000000008) (0.012987846000000011) (0.013049679999999994) (0.012990376499999998) (0.01300527700000001) (0.013093055500000006) (0.013197287999999988) (0.013118602000000007) (0.013069834000000002) (0.012983574499999997) (0.013109442499999999) (0.013792999) (0.013268544000000007) (0.013118775999999999) (0.01332530400000001) (0.01280542500000001) (0.013067944499999998) (0.012983429000000005) (0.013064381) (0.012944069500000002) (0.01281702500000001) (0.013196587499999995) (0.012940248500000001) (0.013220910000000002) (0.012936097499999993) (0.013017118999999966) (0.013551409) (0.01358614900000002) (0.013001579499999985) (0.012879065000000023) (0.013512535000000006) (0.012990303499999994) (0.013108789999999981) (0.013446902999999996) (0.013416762999999984) (0.013167590500000007) (0.013308098500000004) (0.013527287499999999) (0.013271873500000003) (0.013089825500000027) (0.013473777000000006) (0.013282738000000002) (0.013758795000000004) (0.013622711499999995) (0.01382159600000002) (0.013303346000000008) (0.013917610999999996) (0.013140414500000017) (0.013417677499999975) (0.013345172000000002) (0.013192907000000004) (0.013369758500000009) (0.013263311499999972) (0.0133780545) (0.013152282999999987) (0.013164927500000007) (0.013597736499999999) (0.013691261999999996) (0.014002315500000015) (0.013415006999999993) (0.013262677) (0.013545515499999994) (0.01340859250000001) (0.013545970000000018) (0.013551431500000016) (0.013307319499999998) (0.012997541500000001) (0.01316181249999998) (0.012939480500000003) (0.013066280000000013) (0.013167447999999998) (0.012783950500000002) (0.013377395) (0.0129849945) (0.013038755999999985) (0.012997870999999994) (0.013267367500000016) (0.013093506999999976) (0.013405282000000018) (0.01309179449999999) (0.01299626000000001) (0.012944374999999994) (0.013024326500000016) (0.012979108000000017) (0.01309138700000001) (0.012835652500000003) (0.013142750499999994) (0.01321179950000001) (0.013015260499999987) (0.013307644000000021) (0.013545756499999992) (0.012976917500000004) (0.013133364500000008) (0.013263298500000006) (0.013158825499999999) (0.013176305500000013) (0.013335515500000006) (0.013261734000000011) (0.013092640999999988) (0.013078311000000009) (0.013706361500000014) (0.013189688000000005) (0.013450850999999986) (0.013366387000000007) (0.01326576900000001) (0.013196127999999988) (0.013481596999999998) (0.013611897500000011) (0.013491947500000018) (0.013673959000000013) (0.013307048000000002) (0.013511005999999978) (0.013636070000000014) (0.013490644999999996) (0.01315354299999999) (0.01322635200000001) (0.013373932499999991) (0.013521550499999993) (0.013045037499999995) (0.01368146950000003) (0.013311381499999997) (0.013587368500000002) (0.013475959999999995) (0.013251934499999993) (0.013350393500000016) (0.013976443999999977) (0.013308501500000014) (0.013502154000000016) (0.013324326499999997) (0.013053543999999986) (0.012996591499999988) (0.013244235499999979) (0.01293838550000001) (0.013062410999999996) (0.013005469000000006) (0.01287474349999998) (0.01327014550000001) (0.013137450000000009) (0.012919838499999989) (0.013290465000000029) (0.013482124999999998) (0.013085926500000011) (0.013332102999999984) (0.013146057499999989) (0.012843962) (0.013411104000000007) (0.01308050799999999) (0.012921858500000022) (0.012915025499999996) (0.012920670500000023) (0.012934304000000021) (0.013161661000000019) (0.012828566) (0.013644368500000004) (0.012981875000000004) (0.013411269999999989) (0.013038160500000007) (0.01302289399999998) (0.013126007499999995) (0.01302667099999999) (0.013050711999999992) (0.013553850499999978) (0.013323913500000006) (0.01330633349999999) (0.013679847999999994) (0.013460004999999997) (0.013103008999999999) (0.013440249000000001) (0.013256707500000006) (0.013381153500000006) (0.013676670499999988) (0.013392537499999996) (0.013609430499999992) (0.013597816499999998) (0.013511146999999987) (0.013118320000000003) (0.012990664999999985) (0.0134208715) (0.013561763000000004) (0.013104158500000004) (0.013546341500000017) (0.013252450499999999) (0.013937756499999995) (0.013303139500000005) (0.013336352499999982) (0.013849267999999998) (0.013565508000000018) (0.013641439499999991) (0.013318021999999999) (0.013623966999999973) (0.013460633000000027) (0.01328048200000001) (0.013639486499999992) (0.012874016000000002) (0.012989518000000005) (0.01307692449999999) (0.01304428000000002) (0.013046811499999991) (0.013068400500000008) (0.012984689499999993) (0.013228585999999987) (0.013169949000000014) (0.013191886000000014) (0.013196011500000021) (0.013015585999999996) (0.013031997500000017) (0.013052905500000003) (0.013259286500000009) (0.012945006999999994) (0.012906012499999994) (0.012935735000000018) (0.013133186000000019) (0.013038783999999998) (0.01322446699999999) (0.013051002000000006) (0.013019069000000008) (0.0129537245) (0.012867340500000005) (0.012950427) (0.013052100999999997) (0.013232136499999991) (0.01306379299999999) (0.013051367499999994) (0.013083913500000016) (0.01308438499999999) (0.013487793999999997) (0.013156016000000006) (0.0134469475) (0.01360406800000001) (0.013508386999999983) (0.013316778499999973) (0.013327356499999984) (0.013607723000000016) (0.013507256499999995) (0.013436412000000023) (0.013620042999999984) (0.013293062500000008) (0.013346177999999972) (0.014091299000000002) (0.013251808500000004) (0.013505080999999988) (0.013056434500000005) (0.013186706000000006) (0.013354433999999998) (0.013513221000000006) (0.013269528000000017) (0.013021744000000002) (0.013299181999999993) (0.013917362499999988) (0.013591517999999997) (0.013907531) (0.013824311499999992) (0.013587331999999994) (0.013479344500000004) (0.013579329500000029) (0.013333097999999974) (0.013476672500000009) (0.012747498499999996) (0.013038666000000018) (0.012905855000000008) (0.01296504900000002) (0.013036158000000006) (0.013322969500000004) (0.013151655499999998) (0.013236196500000005) (0.012995251500000013) (0.013257539999999984) (0.013132911000000025) (0.013141069000000005) (0.01324851299999999) (0.013103041499999996) (0.01338563650000002) (0.012913569000000014) (0.012995459999999986) (0.01293064499999999) (0.013078459500000014) (0.0131881425) (0.013070901999999995) (0.013088931500000012) (0.013129604500000003) (0.01279867350000001) (0.013290052000000024) (0.013236279500000003) (0.013076317000000004) (0.013023814499999994) (0.013558733000000017) (0.01315844649999999) (0.013464129500000019) (0.013359979499999966) (0.013076277499999997) (0.013316493999999984) (0.013491578000000004) (0.0132101845) (0.013458185500000011) (0.013610580000000011) (0.013374594999999989) (0.013397647500000012) (0.013135368499999994) (0.013233942999999984) (0.013635946499999982) (0.013384303499999986) (0.013433717499999998) (0.013138644000000019) (0.013403838000000015) (0.013251725999999991) (0.013337910500000008) (0.013126710500000013) (0.0133921615) (0.013501335000000003) (0.013349088000000009) (0.013171869500000016) (0.013429727500000016) (0.013515083000000011) (0.013636404500000004) (0.01370339100000001) (0.013524774500000003) (0.01329686799999999) (0.013449722500000025) (0.013470477000000008) (0.013969098500000013) (0.013826231000000008) (0.012972155999999985) (0.012931240999999996) (0.013320891500000029) (0.013086767999999985) (0.012966241000000003) (0.012891994500000004) (0.013247646999999987) (0.013075305500000009) (0.013171993500000007) (0.013371281499999985) (0.01316374300000002) (0.013085291500000013) (0.013192949499999995) (0.013141364499999975) (0.01323228849999998) (0.01323452750000001) (0.012810400999999985) (0.013123012999999975) (0.012905686999999985) (0.012917551499999999) (0.013388523000000013) (0.0131876145) (0.012714913000000008) (0.013074913499999993) (0.013244226999999983) (0.013234071999999986) (0.013018607500000001) (0.01304838949999998) (0.013145742500000002) (0.01350050350000001) (0.013230386999999982) (0.013041288999999984) (0.013777518000000016) (0.013423495000000008) (0.013525311500000012) (0.013146999999999992) (0.013621157500000008) (0.013493127500000007) (0.013403846999999983) (0.013303058499999978) (0.013571195500000008) (0.013269685500000003) (0.013255705500000006) (0.013437498499999992) (0.013560478999999986) (0.013381336000000008) (0.013445672499999992) (0.013398761500000023) (0.013430002500000024) (0.013440852000000003) (0.013517352999999996) (0.013174879500000014) (0.013224309000000017) (0.013535889999999995) (0.013445901999999996) (0.013654583499999998) (0.013723837500000002) (0.013544728000000006) (0.013600742500000026) (0.013624166000000021) (0.01397649799999999) (0.013451068499999982) (0.013442152499999999) (0.013299854999999972) )
false
0165a99b2d2bd6812704054ed3a2440c897db4dd
55ab4a7d38bb68c4690286aa70a10f12745bca0f
/exercises/708.rkt
25b2afe27432d1c0284ab8ecb5c871d172c1017a
[]
no_license
E-Neo/eopl
57e3cfac61be2885304531ab014f90a38233d37c
980410b29ec7571ce0c1f8abea7b50afc2edae31
refs/heads/main
2022-09-12T13:59:27.461039
2022-07-29T15:50:00
2022-07-29T15:50:00
119,218,596
3
2
null
null
null
null
UTF-8
Racket
false
false
13,694
rkt
708.rkt
#lang eopl ;;; Examples: ;; % The value of the following program is 1 ;; let p = newpair(1, zero?(0)) ;; in unpair x y = p ;; in if y then 1 else 0 ;;; Grammatical specification: (define the-lexical-spec '((whitespace (whitespace) skip) (comment ("%" (arbno (not #\newline))) skip) (identifier (letter (arbno (or letter digit "_" "-" "?"))) symbol) (number (digit (arbno digit)) number) (number ("-" digit (arbno digit)) number))) (define the-grammar '((program (expression) a-program) (expression (number) const-exp) (expression ("-" "(" expression "," expression ")") diff-exp) (expression ("zero?" "(" expression ")") zero?-exp) (expression ("if" expression "then" expression "else" expression) if-exp) (expression (identifier) var-exp) (expression ("let" identifier "=" expression "in" expression) let-exp) (expression ("proc" "(" identifier ":" type ")" expression) proc-exp) (expression ("(" expression expression ")") call-exp) (expression ("letrec" type identifier "(" identifier ":" type ")" "=" expression "in" expression) letrec-exp) (type ("int") int-type) (type ("bool") bool-type) (type ("(" type "->" type ")") proc-type) (type ("pairof" type "*" type) pair-type) (expression ("newpair" "(" expression "," expression ")") pair-exp) (expression ("unpair" identifier identifier "=" expression "in" expression) unpair-exp))) ;;; Syntax data types: (define-datatype program program? (a-program (exp1 expression?))) (define-datatype expression expression? (const-exp (num number?)) (diff-exp (exp1 expression?) (exp2 expression?)) (zero?-exp (exp1 expression?)) (if-exp (exp1 expression?) (exp2 expression?) (exp3 expression?)) (var-exp (var identifier?)) (let-exp (var identifier?) (exp1 expression?) (body expression?)) (proc-exp (var identifier?) (var-type type?) (body expression?)) (call-exp (rator expression?) (rand expression?)) (letrec-exp (p-result-type type?) (p-name identifier?) (b-var identifier?) (b-var-type type?) (p-body expression?) (letrec-body expression?)) (pair-exp (exp1 expression?) (exp2 expression?)) (unpair-exp (var1 identifier?) (var2 identifier?) (exp expression?) (body expression?))) (define identifier? (lambda (x) (symbol? x))) ;;; Types: (define-datatype type type? (int-type) (bool-type) (proc-type (arg-type type?) (result-type type?)) (pair-type (ty1 type?) (ty2 type?))) (define type-to-external-form (lambda (ty) (cases type ty (int-type () 'int) (bool-type () 'bool) (proc-type (arg-type result-type) (list (type-to-external-form arg-type) '-> (type-to-external-form result-type))) (pair-type (ty1 ty2) (list 'pairof (type-to-external-form ty1) '* (type-to-external-form ty2)))))) ;;; Type checker: ;; check : String -> external-type (define check (lambda (s) (type-to-external-form (type-of-program (scan&parse s))))) ;; check-equal-type! : Type * Type * Exp -> Unspecified (define check-equal-type! (lambda (ty1 ty2 exp) (when (not (equal? ty1 ty2)) (report-unequal-types ty1 ty2 exp)))) (define report-unequal-types (lambda (ty1 ty2 exp) (eopl:error 'check-equal-type! "Types didn't match ~s != ~s in~%~s" (type-to-external-form ty1) (type-to-external-form ty2) exp))) ;; type-of-program : Program -> Type (define type-of-program (lambda (pgm) (cases program pgm (a-program (exp1) (type-of exp1 (init-tenv)))))) ;; type-of : Exp * TEnv -> Type (define type-of (lambda (exp tenv) (cases expression exp (const-exp (num) (int-type)) (diff-exp (exp1 exp2) (let ((ty1 (type-of exp1 tenv)) (ty2 (type-of exp2 tenv))) (check-equal-type! ty1 (int-type) exp1) (check-equal-type! ty2 (int-type) exp2) (int-type))) (zero?-exp (exp1) (let ((ty1 (type-of exp1 tenv))) (check-equal-type! ty1 (int-type) exp1) (bool-type))) (if-exp (exp1 exp2 exp3) (let ((ty1 (type-of exp1 tenv)) (ty2 (type-of exp2 tenv)) (ty3 (type-of exp3 tenv))) (check-equal-type! ty1 (bool-type) exp1) (check-equal-type! ty2 ty3 exp) ty2)) (var-exp (var) (apply-tenv tenv var)) (let-exp (var exp1 body) (let ((exp1-type (type-of exp1 tenv))) (type-of body (extend-tenv var exp1-type tenv)))) (proc-exp (var var-type body) (let ((result-type (type-of body (extend-tenv var var-type tenv)))) (proc-type var-type result-type))) (call-exp (rator rand) (let ((rator-type (type-of rator tenv)) (rand-type (type-of rand tenv))) (cases type rator-type (proc-type (arg-type result-type) (begin (check-equal-type! arg-type rand-type rand) result-type)) (else (report-rator-not-a-proc-type rator-type rator))))) (letrec-exp (p-result-type p-name b-var b-var-type p-body letrec-body) (let ((tenv-for-letrec-body (extend-tenv p-name (proc-type b-var-type p-result-type) tenv))) (let ((p-body-type (type-of p-body (extend-tenv b-var b-var-type tenv-for-letrec-body)))) (check-equal-type! p-body-type p-result-type p-body) (type-of letrec-body tenv-for-letrec-body)))) (pair-exp (exp1 exp2) (pair-type (type-of exp1 tenv) (type-of exp2 tenv))) (unpair-exp (var1 var2 exp body) (let ((exp-type (type-of exp tenv))) (cases type exp-type (pair-type (ty1 ty2) (type-of body (extend-tenv var2 ty2 (extend-tenv var1 ty1 tenv)))) (else (report-exp-not-a-pair-type exp-type exp)))))))) (define report-rator-not-a-proc-type (lambda (rator-type rator) (eopl:error 'type-of "Rator not a proc type:~%~s~%had rator type ~s" rator rator-type))) (define report-exp-not-a-pair-type (lambda (exp-type exp) (eopl:error 'type-of "Unpair exp not a pair type:~%~s~%had exp type ~s" exp exp-type))) ;; init-tenv : () -> TEnv (define init-tenv (lambda () (empty-tenv))) ;;; Type environment: (define-datatype type-environment type-environment? (empty-tenv) (extend-tenv (var identifier?) (type type?) (saved-tenv type-environment?))) ;; apply-tenv : TEnv * Var -> Type (define apply-tenv (lambda (tenv search-var) (cases type-environment tenv (empty-tenv () (report-no-binding-found 'apply-tenv search-var)) (extend-tenv (var type saved-tenv) (if (eqv? search-var var) type (apply-tenv saved-tenv search-var)))))) ;;; Expressed values: (define-datatype expval expval? (num-val (num number?)) (bool-val (bool boolean?)) (proc-val (proc proc?)) (pair-val (val1 expval?) (val2 expval?))) ;; expval->num : ExpVal -> Int (define expval->num (lambda (val) (cases expval val (num-val (num) num) (else (report-expval-extractor-error 'num val))))) ;; expval->bool : ExpVal -> Bool (define expval->bool (lambda (val) (cases expval val (bool-val (bool) bool) (else (report-expval-extractor-error 'bool val))))) ;; expval->proc : ExpVal -> Proc (define expval->proc (lambda (val) (cases expval val (proc-val (proc) proc) (else (report-expval-extractor-error 'proc val))))) ;; expval->pair : ExpVal -> Pair (define expval->pair (lambda (val) (cases expval val (pair-val (val1 val2) (cons val1 val2)) (else (report-expval-extractor-error 'pair val))))) (define report-expval-extractor-error (lambda (s val) (eopl:error s "ExpVal extractor error: ~s" val))) ;; proc? : SchemeVal -> Bool ;; procedure : Var * Exp * Env -> Proc (define-datatype proc proc? (procedure (var identifier?) (body expression?) (saved-env environment?))) ;; apply-procedure : Proc * ExpVal -> ExpVal (define apply-procedure (lambda (proc1 val) (cases proc proc1 (procedure (var body saved-env) (value-of body (extend-env var val saved-env)))))) ;;; Interpreter: ;; check&run : String -> ExpVal (define check&run (lambda (s) (let ((pgm (scan&parse s))) (type-of-program pgm) (value-of-program pgm)))) ;; run : String -> ExpVal (define run (lambda (s) (value-of-program (scan&parse s)))) ;; value-of-program : Program -> ExpVal (define value-of-program (lambda (pgm) (cases program pgm (a-program (exp1) (value-of exp1 (init-env)))))) ;; value-of : Exp * Env -> ExpVal (define value-of (lambda (exp env) (cases expression exp (const-exp (num) (num-val num)) (diff-exp (exp1 exp2) (let ((val1 (value-of exp1 env)) (val2 (value-of exp2 env))) (let ((num1 (expval->num val1)) (num2 (expval->num val2))) (num-val (- num1 num2))))) (zero?-exp (exp1) (let ((val1 (value-of exp1 env))) (let ((num1 (expval->num val1))) (if (zero? num1) (bool-val #t) (bool-val #f))))) (if-exp (exp1 exp2 exp3) (let ((val1 (value-of exp1 env))) (if (expval->bool val1) (value-of exp2 env) (value-of exp3 env)))) (var-exp (var) (apply-env env var)) (let-exp (var exp1 body) (let ((val1 (value-of exp1 env))) (value-of body (extend-env var val1 env)))) (proc-exp (var var-type body) (proc-val (procedure var body env))) (call-exp (rator rand) (let ((proc (expval->proc (value-of rator env))) (arg (value-of rand env))) (apply-procedure proc arg))) (letrec-exp (p-result-type p-name b-var b-var-type p-body letrec-body) (value-of letrec-body (extend-env-rec p-name b-var p-body env))) (pair-exp (exp1 exp2) (let ((val1 (value-of exp1 env)) (val2 (value-of exp2 env))) (pair-val val1 val2))) (unpair-exp (var1 var2 exp body) (let ((p (expval->pair (value-of exp env)))) (value-of body (extend-env var2 (cdr p) (extend-env var1 (car p) env)))))))) ;; init-env : () -> Env (define init-env (lambda () (empty-env))) ;;; Environment: ;; Env = (empty-env) ;; | (extend-env Var ExpVal Env) ;; | (extend-env-rec Var Var Exp Env) (define-datatype environment environment? (empty-env) (extend-env (saved-var identifier?) (saved-val expval?) (saved-env environment?)) (extend-env-rec (p-name identifier?) (b-var identifier?) (body expression?) (saved-env environment?))) ;; apply-env : Env * Var -> ExpVal (define apply-env (lambda (e search-var) (cases environment e (empty-env () (report-no-binding-found 'apply-env search-var)) (extend-env (saved-var saved-val saved-env) (if (eqv? search-var saved-var) saved-val (apply-env saved-env search-var))) (extend-env-rec (p-name b-var body saved-env) (if (eqv? search-var p-name) (proc-val (procedure b-var body e)) (apply-env saved-env search-var)))))) (define report-no-binding-found (lambda (s search-var) (eopl:error s "No binding for ~s" search-var))) ;;; Scanner and Parser: (define scan&parse (sllgen:make-string-parser the-lexical-spec the-grammar))
false
7557c3a67757c64f72e48a8285072007e877c4f0
c31f57f961c902b12c900ad16e5390eaf5c60427
/data/programming_languages/scheme/handler.rkt
62726dc8222bd101d32ba16df9411b1b67b8f951
[]
no_license
klgraham/deep-learning-with-pytorch
ccc7602d9412fb335fe1411ba31641b9311a4dba
4373f1c8be8e091ea7d4afafc81dd7011ef5ca95
refs/heads/master
2022-10-24T01:48:46.160478
2017-03-13T20:07:03
2017-03-13T20:07:03
79,877,434
0
1
null
2022-10-02T20:42:36
2017-01-24T04:12:24
C
UTF-8
Racket
false
false
13,983
rkt
handler.rkt
#lang scheme/unit (require mzlib/class mrlib/hierlist "sig.rkt" "../preferences.rkt" "../gui-utils.rkt" mred/mred-sig racket/path string-constants) (import mred^ [prefix finder: framework:finder^] [prefix group: framework:group^] [prefix text: framework:text^] [prefix frame: framework:frame^]) (export framework:handler^) (init-depend framework:frame^) (define-struct handler (name extension handler)) (define format-handlers '()) (define (make-insert-handler who name extension handler) (cond [(not (string? name)) (error who "name was not a string")] [(not (or (procedure? extension) (string? extension) (and (list? extension) (andmap string? extension)))) (error who "extension was not a string, list of strings, or a predicate")] [(not (procedure? handler)) (error who "handler was not a function")] [else (make-handler name (if (string? extension) (list extension) extension) handler)])) (define (insert-format-handler . args) (set! format-handlers (cons (apply make-insert-handler 'insert-format-handler args) format-handlers))) (define (find-handler name handlers) (let/ec exit (let ([extension (if (string? name) (or (filename-extension name) "") "")]) (for ([handler handlers]) (let ([ext (handler-extension handler)]) (when (or (and (procedure? ext) (ext name)) (and (pair? ext) (ormap (λ (ext) (string=? ext extension)) ext))) (exit (handler-handler handler))))) #f))) (define (find-format-handler name) (find-handler name format-handlers)) ; Finding format & mode handlers by name (define (find-named-handler name handlers) (let loop ([l handlers]) (cond [(null? l) #f] [(string-ci=? (handler-name (car l)) name) (handler-handler (car l))] [else (loop (cdr l))]))) (define (find-named-format-handler name) (find-named-handler name format-handlers)) ; Open a file for editing (define current-create-new-window (make-parameter (λ (filename) (let ([frame (make-object frame:text% filename)]) (send frame show #t) frame)))) (define (edit-file filename [make-default (λ () ((current-create-new-window) filename))]) (with-handlers ([(λ (x) #f) ;exn:fail? (λ (exn) (message-box (string-constant error-loading) (string-append (format (string-constant error-loading-file/name) (or filename (string-constant unknown-filename))) "\n\n" (if (exn? exn) (format "~a" (exn-message exn)) (format "~s" exn)))) #f)]) (gui-utils:show-busy-cursor (λ () (if filename (let ([already-open (send (group:get-the-frame-group) locate-file filename)]) (cond [already-open (send already-open make-visible filename) (send already-open show #t) already-open] [else (let ([handler (and (path? filename) (find-format-handler filename))]) (add-to-recent filename) (if handler (handler filename) (make-default)))])) (make-default)))))) ;; type recent-list-item = (list/p string? number? number?) ;; add-to-recent : path -> void (define (add-to-recent filename) (define old-list (preferences:get 'framework:recently-opened-files/pos)) (define old-ents (filter (λ (x) (recently-opened-files-same-enough-path? (car x) filename)) old-list)) (define new-ent (if (null? old-ents) (list filename 0 0) (cons filename (cdr (car old-ents))))) (define added-in (cons new-ent (remove* (list new-ent) old-list (λ (l1 l2) (recently-opened-files-same-enough-path? (car l1) (car l2)))))) (define new-recent (size-down added-in (preferences:get 'framework:recent-max-count))) (preferences:set 'framework:recently-opened-files/pos new-recent)) ;; same-enough-path? : path path -> boolean ;; used to determine if the open-recent-files menu item considers two paths to be the same (define (recently-opened-files-same-enough-path? p1 p2) (equal? (simplify-path (normal-case-path p1) #f) (simplify-path (normal-case-path p2) #f))) ;; size-down : (listof X) -> (listof X)[< recent-max-count] ;; takes a list of stuff and returns the ;; front of the list, up to `recent-max-count' items (define (size-down new-recent n) (let loop ([n n] [new-recent new-recent]) (cond [(zero? n) null] [(null? new-recent) null] [else (cons (car new-recent) (loop (- n 1) (cdr new-recent)))]))) ;; size-recently-opened-files : number -> void ;; sets the recently-opened-files/pos preference ;; to a size limited by `n' (define (size-recently-opened-files n) (preferences:set 'framework:recently-opened-files/pos (size-down (preferences:get 'framework:recently-opened-files/pos) n))) ;; set-recent-position : path number number -> void ;; updates the recent menu preferences ;; with the positions `start' and `end' (define (set-recent-position filename start end) (let* ([recent-items (preferences:get 'framework:recently-opened-files/pos)] [new-recent-items (map (λ (x) (if (recently-opened-files-same-enough-path? (path->string (car x)) (path->string filename)) (list* (car x) start end (cdddr x)) x)) (preferences:get 'framework:recently-opened-files/pos))]) (unless (equal? recent-items new-recent-items) (preferences:set 'framework:recently-opened-files/pos new-recent-items)))) ;; install-recent-items : (is-a?/c menu%) -> void? (define (install-recent-items menu) (define recently-opened-files (preferences:get 'framework:recently-opened-files/pos)) (define (update-menu-with-new-stuff) (for ([item (send menu get-items)]) (send item delete)) (for ([recent-list-item recently-opened-files]) (new menu-item% [parent menu] [label (recent-list-item->menu-label recent-list-item)] [callback (λ (x y) (open-recent-list-item recent-list-item))])) (new separator-menu-item% [parent menu]) (new menu-item% [parent menu] [label (string-constant show-recent-items-window-menu-item)] [callback (λ (x y) (show-recent-items-window))])) (unless (menu-items-still-same? recently-opened-files menu) ;; sometimes, we get here via an on-demand callback ;; and we run out of time during the callback and ;; things go awry with the menu. So, to hack around ;; that problem, lets try to do it twice; once here ;; when we notice that things are wrong, and then once ;; later, when we know we won't run afoul of any time ;; limits. (queue-callback (λ () (update-menu-with-new-stuff)) #f) (update-menu-with-new-stuff)) (void)) (define (recent-list-item->menu-label recent-list-item) (let ([filename (car recent-list-item)]) (gui-utils:quote-literal-label (path->string filename)))) ;; this function must mimic what happens in install-recent-items ;; it returns #t if all of the labels of menus are the same, or approximation to ;; the menus actually being different (define (menu-items-still-same? recently-opened-files menu) (let ([current-items (map (λ (x) (and (is-a? x labelled-menu-item<%>) (send x get-label))) (send menu get-items))] ;; the new-items variable should match up to what install-recent-items actually does when it creates the menu [new-items (append (for/list ([recent-list-item recently-opened-files]) (recent-list-item->menu-label recent-list-item)) (list #f (string-constant show-recent-items-window-menu-item)))]) (equal? current-items new-items))) ;; open-recent-list-item : recent-list-item -> void (define (open-recent-list-item recent-list-item) (let* ([filename (car recent-list-item)] [start (cadr recent-list-item)] [end (caddr recent-list-item)]) (cond [(file-exists? filename) (edit-file filename)] [else (preferences:set 'framework:recently-opened-files/pos (remove* (list recent-list-item) (preferences:get 'framework:recently-opened-files/pos) (λ (l1 l2) (recently-opened-files-same-enough-path? (car l1) (car l2))))) (message-box (string-constant error) (format (string-constant cannot-open-because-dne) filename))]))) ;; show-recent-items-window : -> void (define (show-recent-items-window) (unless recent-items-window (set! recent-items-window (make-recent-items-window))) (send recent-items-window show #t)) ;; make-recent-items-window : -> frame (define (make-recent-items-window) (make-object (get-recent-items-window%) (string-constant show-recent-items-window-label) #f (preferences:get 'framework:recent-items-window-w) (preferences:get 'framework:recent-items-window-h))) ;; recent-items-window : (union #f (is-a?/c frame%)) (define recent-items-window #f) (define recent-items-hierarchical-list% (class hierarchical-list% (define/override (on-double-select item) (send item open-item)) (super-instantiate ()))) (define recent-items-super% (frame:standard-menus-mixin frame:basic%)) (define (set-recent-items-frame-superclass super%) (set! recent-items-super% super%)) (define (get-recent-items-window%) (class recent-items-super% ;; remove extraneous separators (define/override (file-menu:between-print-and-close menu) (void)) (define/override (edit-menu:between-find-and-preferences menu) (void)) (define/override (on-size w h) (preferences:set 'framework:recent-items-window-w w) (preferences:set 'framework:recent-items-window-h h)) ;; refresh-hl : (listof recent-list-item) -> void (define/private (refresh-hl recent-list-items) (let ([ed (send hl get-editor)]) (send ed begin-edit-sequence) (for ([item (send hl get-items)]) (send hl delete-item item)) (for-each (λ (item) (add-recent-item item)) (if (eq? (preferences:get 'framework:recently-opened-sort-by) 'name) (sort recent-list-items string<? #:key (compose path->string car) #:cache-keys? #t) recent-list-items)) (send ed end-edit-sequence))) (define/private (add-recent-item recent-list-item) (let ([item (send hl new-item (make-hierlist-item-mixin recent-list-item))]) (send (send item get-editor) insert (path->string (car recent-list-item))))) (field [remove-prefs-callback (preferences:add-callback 'framework:recently-opened-files/pos (λ (p v) (refresh-hl v)))]) (define/augment (on-close) (inner (void) on-close) (remove-prefs-callback) (set! recent-items-window #f)) (super-new) (inherit get-area-container) (field [bp (make-object horizontal-panel% (get-area-container))] [hl (make-object recent-items-hierarchical-list% (get-area-container) '())] [sort-by-name-button (make-object button% (string-constant recent-items-sort-by-name) bp (λ (x y) (set-sort-by 'name)))] [sort-by-age-button (make-object button% (string-constant recent-items-sort-by-age) bp (λ (x y) (set-sort-by 'age)))]) (send bp stretchable-height #f) (send sort-by-name-button stretchable-width #t) (send sort-by-age-button stretchable-width #t) (define/private (set-sort-by flag) (preferences:set 'framework:recently-opened-sort-by flag) (case flag [(name) (send sort-by-age-button enable #t) (send sort-by-name-button enable #f)] [(age) (send sort-by-age-button enable #f) (send sort-by-name-button enable #t)]) (refresh-hl (preferences:get 'framework:recently-opened-files/pos))) (set-sort-by (preferences:get 'framework:recently-opened-sort-by)))) ;; make-hierlist-item-mixin : recent-item -> mixin(arg to new-item method of hierlist) (define (make-hierlist-item-mixin recent-item) (λ (%) (class % (define/public (open-item) (open-recent-list-item recent-item)) (super-instantiate ())))) (define (open-file [directory #f]) (let* ([parent (and (not (eq? 'macosx (system-type))) (get-top-level-focus-window))] [file (parameterize ([finder:dialog-parent-parameter parent]) (finder:get-file directory))]) (and file (edit-file file))))
false
aa82bc9ac3ce9bc0aa0eedfa6b5e2d2ff2b07948
5ed81c867532c430ab594079611412350008bc79
/Validation/ModuleTyping.rkt
22efbbf54db5bdae1d84e8d6b92c15e55eeec67c
[]
no_license
atgeller/WASM-Redex
cab2297bca992102eb6a8ed63e51584e7cdc6b02
81f882f9fd95b645a10baf2565f27efc8f8766e5
refs/heads/canon
2021-07-07T23:44:39.346526
2021-03-10T01:30:09
2021-03-10T01:30:09
232,643,084
21
2
null
2021-03-05T23:07:24
2020-01-08T19:35:12
Racket
UTF-8
Racket
false
false
4,617
rkt
ModuleTyping.rkt
#lang racket (require redex/reduction-semantics "../Utilities.rkt" "Utilities.rkt" "TypingSyntax.rkt" "InstructionTyping.rkt") (provide ⊢-module-func ⊢-module-global ⊢-module-table ⊢-module-memory ⊢-module global-contexts distinct extract-module-type) ;; Validates the function definition and returns all exports and the type of the function (define-judgment-form WASM-Typing #:contract (⊢-module-func C f ((ex ...) tf)) [(where ((t_1 ...) -> (t_2 ...)) tf) (where C_2 (with-return (add-label (with-locals C (t_1 ... t ...)) (t_2 ...)) (t_2 ...))) (⊢ C_2 (e ...) (() -> (t_2 ...))) ---------------------------------------------------------------------------------------- (⊢-module-func C ((ex ...) (func tf (local (t ...) (e ...)))) ((ex ...) tf))] [------------------------------------------------------- (⊢-module-func C ((ex ...) (func tf im)) ((ex ...) tf))]) ;; Validates the global variable definition and returns all exports and the type of the global (define-judgment-form WASM-Typing #:contract (⊢-module-global C glob ((ex ...) tg)) [(where (mut t) tg) (⊢ C (e ...) (() -> (t))) (side-condition ,(or (empty? (term (ex ...))) (equal? (term (mut t)) (term (const t))))) ---------------------------------------------------------------------------------------- (⊢-module-global C ((ex ...) (global tg (e ...))) ((ex ...) tg))] ;; Imported globals are immutable [(where (const t) tg) ----------------------------------------------------------- (⊢-module-global C ((ex ...) (global tg im)) ((ex ...) tg))]) ;; Validates the table and returns all exports and the table size (define-judgment-form WASM-Typing #:contract (⊢-module-table C tab ((ex ...) i)) [(where (tf ...) ((context-func C i) ...)) (where n ,(length (term (i ...)))) ------------------------------------------------------------ (⊢-module-table C ((ex ...) (table n i ...)) ((ex ...) n))] [------------------------------------------------------- (⊢-module-table C ((ex ...) (table n im)) ((ex ...) n))]) ;; Returns all exports and the memory size (define-judgment-form WASM-Typing #:contract (⊢-module-memory C mem ((ex ...) n)) [------------------------------------------------------ (⊢-module-memory C ((ex ...) (memory n)) ((ex ...) n))] [--------------------------------------------------------- (⊢-module-memory C ((ex ...) (memory n im)) ((ex ...) n))]) ;; Validates all definitions in the module against the types declared in the module (define-judgment-form WASM-Typing #:contract (⊢-module mod) [(⊢-module-func C_f f ((ex_f ...) tf)) ... (⊢-module-global C_g glob ((ex_g ...) tg)) ... (⊢-module-table C_t tab ((ex_t ...) n_t)) ... (⊢-module-memory C_m mem ((ex_m ...) n_m)) ... (where (C_g ...) (global-contexts (tg ...))) (where C ((func tf ...) (global tg ...) (table n_t ...) (memory n_m ...) (local) (label) (return))) (side-condition (same (C_f ... C_t ... C_m ...) C)) (side-condition (distinct (ex_f ... ... ex_g ... ... ex_t ... ... ex_m ... ...))) --------------------------------------------------------------------------------------------------- (⊢-module (module (f ...) (glob ...) (tab ...) (mem ...)))]) (define-metafunction WASM-Typing global-contexts : (tg ...) -> (C ...) [(global-contexts ()) ()] [(global-contexts (tg_i-1 ... tg)) (C ... ((func) (global tg_i-1 ...) (table) (memory) (local) (label) (return))) (where (C ...) (global-contexts (tg_i-1 ...)))]) (define-metafunction WASM-Typing distinct : (any ...) -> boolean [(distinct ()) #t] [(distinct (any any_rest ...)) (distinct (any_rest ...)) (side-condition (not (member (term any) (term (any_rest ...))))) or #f]) (define-metafunction WASM-Typing func-type : f -> tf [(func-type (_ (func tf _))) tf]) (define-metafunction WASM-Typing glob-type : glob -> tg [(glob-type (_ (global tg _))) tg]) (define-metafunction WASM-Typing tab-size : tab -> n [(tab-size (_ (table n _ ...))) n]) (define-metafunction WASM-Typing mem-size : mem -> n [(mem-size (_ (memory n _ ...))) n]) ;; Extracts the module type annotations into a context (define-metafunction WASM-Typing extract-module-type : mod -> C [(extract-module-type (module (f ...) (glob ...) (tab ...) (mem ...))) ((func (func-type f) ...) (global (glob-type glob) ...) (table (tab-size tab) ...) (memory (mem-size mem) ...) (local) (label) (return))])
false
ce84d6918bfbf971066e0ee18c82ff0150403a35
a9726aae050211a6b6fd8d07792a71f7138e8341
/qr-gui.rkt
0eb7c33e4db41ed5b228bd74381405eb85d07c73
[ "MIT" ]
permissive
souravdatta/rkts
45f2633aa277fd0b84617b05263e4603c0b8d5e1
cf07926d7cb4603ea6e1bf78553e3870befc863a
refs/heads/master
2021-01-17T14:57:11.961644
2017-08-24T09:56:20
2017-08-24T09:56:20
52,510,749
0
1
null
null
null
null
UTF-8
Racket
false
false
1,296
rkt
qr-gui.rkt
#lang typed/racket/gui (require "typed_qrcode.rkt") (: app-window (Instance Frame%)) (define app-window (new frame% [width 200] [height 300] [label "QR"])) (: qr-text (Instance Text-Field%)) (define qr-text (new text-field% [parent app-window] [label "QR text"] [init-value ""])) (: qr-button (Instance Button%)) (define qr-button (new button% [parent app-window] [label "Generate"] [callback (lambda (b e) (let ([lbl (send qr-text get-value)]) (when (string? lbl) (let ([dc (send qr-canvas get-dc)] [qbitmap : (Instance Bitmap%) (make-qr-code lbl)]) (send dc clear) (send dc draw-bitmap qbitmap 40 40)))))])) (: qr-canvas (Instance Canvas%)) (define qr-canvas (new canvas% [parent app-window] [min-width 200] [min-height 100])) (send app-window show #t)
false
39a7afd46500402f351c1f892f65553a1944c110
a603e664c2c064e126438c01d69b6360e565bfe3
/examples/racket/numbers.rkt
8f778d2444ae7e8670d3ab91afbcfc9b2cd6ecdf
[]
no_license
btlachance/jam
8a508bca8b12a56ecdf4ade103f6e70af53c5052
ea09d26a6551f3020d61805c98fa3a7ba58ad3db
refs/heads/master
2021-06-25T22:03:55.156040
2019-10-07T19:13:06
2019-10-07T19:13:06
159,725,493
0
0
null
null
null
null
UTF-8
Racket
false
false
639
rkt
numbers.rkt
#lang racket (+ 1 2) (+ 1.0 2.0) (- 1 1) (- 1.0 5.0) (* 4 12) (* 11.5 12.1) (zero? 0) (zero? 0.0) (zero? -0.0) (exact-integer? 0) (exact-integer? #t) (exact-integer? 0.0) (inexact? 1.0) (inexact? 0) (number? "chips") (number? 1) (number? 13.0) (exact->inexact 1.0) (exact->inexact 1) (inexact->exact 1.0) (inexact->exact 1) (= 0) (= -0.0) (= 1 1) (= 5 1) (= 1.0 1) (= 1 1.0) (= 5.0 5.0) (< 1 2) (< 1.0 2.0) (< 5 4.0) (< 4.0 10) (/ 10 5) (/ 10.0 5.0) (number->string 100) (number->string 4.0) (sin 0.0) (quotient 10 2) (quotient 10.0 2.0) (quotient 10 3) (remainder 10 2) (remainder 10.0 2.0) (remainder 10 3) (inexact? 1e-6)
false
9d25906f88a3de65874b32b32b36e4ab3103ea30
a9726aae050211a6b6fd8d07792a71f7138e8341
/typed-brag-fragments.rkt
6602fe016f3a625feeec8f039702e972126797ce
[ "MIT" ]
permissive
souravdatta/rkts
45f2633aa277fd0b84617b05263e4603c0b8d5e1
cf07926d7cb4603ea6e1bf78553e3870befc863a
refs/heads/master
2021-01-17T14:57:11.961644
2017-08-24T09:56:20
2017-08-24T09:56:20
52,510,749
0
1
null
null
null
null
UTF-8
Racket
false
false
848
rkt
typed-brag-fragments.rkt
#lang typed/racket (require/typed brag/support [#:opaque Token token-struct?] [token (->* ((U String Symbol)) (Any #:line Positive-Integer #:column Natural #:position Positive-Integer #:span Natural #:skip? Boolean) Token)]) (define-type Input-Token (U String Symbol Token Void 'EOF)) (define-type Token-Source (U (-> Input-Token) (Listof Input-Token))) #| (require/typed <grammar_file_name_here> [parse (case-> (-> Token-Source (Syntaxof Any)) (-> Any Token-Source (Syntaxof Any)))]) |#
false
86f51a274a96d87ec7d2bd6fe055d3bca98350a8
b5fd58730639328d23a7b4d8df459f8fe1f2ea86
/8/test.rkt
2c16ee0a92c6a8ab252fc4a30e77dfd7cc34c768
[]
no_license
jlowder/matasano
002a0c2a5655fc3f257d2d0e858ff21036bed179
4158349b11991059ac37e8930f91e12b9351a297
refs/heads/master
2021-01-20T14:02:23.167231
2017-05-07T17:18:22
2017-05-07T17:18:22
90,547,856
0
0
null
null
null
null
UTF-8
Racket
false
false
894
rkt
test.rkt
#lang racket ; iterate over each line of hex encoded data. decode and partition into 128-bit (32-char) chunks, as list. then remove duplicates and look for a list that is shorter than expected. (define expected-blocks 10) (define (test-line text) (let ([str (string-copy text)]) (when (< (length (remove-duplicates (for/list ([i (in-range 0 (string-length text) 32)]) (let ([j (substring str 0 32)]) (set! str (substring str 32)) j)))) expected-blocks) (printf "this line appears to be ECB encoded: ~a\n" text)))) (define (read-next-line-iter file) (let ((line (read-line file))) (unless (eof-object? line) (test-line line) (read-next-line-iter file)))) (call-with-input-file "gistfile1.txt" read-next-line-iter)
false
3020bffec825811559c8b1233440fe6f500a1c7e
d29c2c4061ea24d57d29b8fce493d116f3876bc0
/struct.rkt
7e26dc1cfbce62b8dfeaf3c0130494e1e5f5eec6
[]
no_license
jbejam/magnolisp
d7b28e273550ff0df884ecd73fb3f7ce78957d21
191d529486e688e5dda2be677ad8fe3b654e0d4f
refs/heads/master
2021-01-16T19:37:23.477945
2016-10-01T16:02:42
2016-10-01T16:02:42
null
0
0
null
null
null
null
UTF-8
Racket
false
false
3,702
rkt
struct.rkt
#lang racket/base #| An API for declaring foreign structure types in Magnolisp. Simulation is implemented in terms of Racket structs. Any C++ implementation must be given separately. Constructors are named with a `make-` prefix. Magnolisp type names in turn get a `t:` prefix. A `match` expander gets defined, also for expression positions. |# (require "util.rkt" "util/field.rkt" "core.rkt" (only-in "surface.rkt" [define mgl.define] declare begin-racket foreign type -> auto for-all) racket/match (for-syntax racket/base racket/syntax syntax/parse)) (define-for-syntax (make-match-expr-lam ctor-id t-id) (with-syntax ([ctor-n ctor-id] [t-n t-id]) #'(lambda (stx) (syntax-parse stx [_:id #'t-n] [(_ . args) #'(ctor-n . args)])))) (define-syntax* (define-foreign-struct stx) (define-splicing-syntax-class opts (pattern (~seq (~or (~optional (~seq #:inspector _:expr)) (~optional (~seq #:guard _:expr)) (~seq #:property _:expr _:expr) (~optional #:transparent) (~seq #:methods _:id _) ) ...))) (define-syntax-class fld #:datum-literals (::) (pattern (~or n:id [n:id :: given-t:expr]) #:with t (or (attribute given-t) #'(auto)))) (define-syntax-class maybe-typed-id #:datum-literals (::) (pattern (~or n:id [n:id :: given-t:expr]) #:attr t (attribute given-t))) (define (->ctor id) (format-id id "make-~a" (syntax-e id))) (define (->pred id) (format-id id "~a?" (syntax-e id))) (define (->get id fld-id) (format-id id "~a-~a" (syntax-e id) (syntax-e fld-id))) (syntax-parse stx [(_ st:maybe-typed-id (f:fld ...) rkt-os:opts) (define fld-id-lst (syntax->list #'(f.n ...))) (define mgl-id #'st.n) (define/with-syntax mgl-n mgl-id) (define mgl-sym (syntax-e mgl-id)) (define mgl-t-id (or (attribute st.t) (format-id stx "t:~a" mgl-sym))) (define static-type? (not (attribute st.t))) (define mgl-ctor-id (->ctor mgl-id)) (define mgl-pred-id (->pred mgl-id)) (define mgl-get-id-lst (map (lambda (fld-id) (->get mgl-id fld-id)) fld-id-lst)) (define/with-syntax mgl-t-n mgl-t-id) (define rkt-id (generate-temporary mgl-sym)) (define rkt-sym (syntax-e rkt-id)) (define/with-syntax rkt-n rkt-id) (define/with-syntax (define-getter ...) (map (lambda (n-id t-stx) (define/with-syntax t t-stx) #`(mgl.define #,(->get mgl-id n-id) #:: (foreign [type (-> mgl-t-n t)]) #,(->get rkt-id n-id))) fld-id-lst (syntax->list #'(f.t ...)))) (define/with-syntax (define-type ...) (if static-type? (list #'(mgl.define #:type mgl-t-n #:: ([foreign mgl-n]))) null)) #`(begin (begin-racket (struct rkt-n (f.n ...) #:constructor-name #,(->ctor rkt-id) #:reflection-name 'mgl-n . rkt-os)) define-type ... (mgl.define #,mgl-ctor-id #:: (foreign [type (-> f.t ... mgl-t-n)]) #,(->ctor rkt-id)) (mgl.define #,mgl-pred-id #:: (foreign [type (for-all T (-> T Bool))]) #,(->pred rkt-id)) define-getter ... (define-match-expander mgl-n #,(make-fields-match-proc-expr mgl-pred-id mgl-get-id-lst) #,(make-match-expr-lam mgl-ctor-id mgl-t-id)))]))
true
b2194a4b5599ec23db2d90cda768fdbde234f669
d081ccc87078307aabb7ffc56ecc51e2e25d653d
/tests/lint/cond-without-else.rkt
ac0dd0454466688371232d338c4becc9bc410b88
[ "BSD-3-Clause" ]
permissive
Bogdanp/racket-review
75501945155a5f75a0684e60ae6934fb2617e655
bc7b614e3b6ab11a9f569d254aaba7f2d2074354
refs/heads/master
2023-08-21T20:16:54.808995
2023-07-28T18:28:24
2023-07-28T18:28:24
191,135,877
40
3
BSD-3-Clause
2022-08-08T08:10:11
2019-06-10T09:17:45
Racket
UTF-8
Racket
false
false
186
rkt
cond-without-else.rkt
#lang racket/base (define x 0) (cond [(> x 0) 'positive]) (define res (cond [(> x 0) 'positive])) (define (f x) (cond [(> x 0) 'positive])) (cond [#f 1] [else 2])
false
74466419b2bad545d96ee20898971eab1a8dd4ee
821e50b7be0fc55b51f48ea3a153ada94ba01680
/gradual-typing/funkytown/funk-math-typed/synth/math/private/array/array-transform.rkt
0033fd22f32a01acf175dd7c625ef90881510590
[]
no_license
LeifAndersen/experimental-methods-in-pl
85ee95c81c2e712ed80789d416f96d3cfe964588
cf2aef11b2590c4deffb321d10d31f212afd5f68
refs/heads/master
2016-09-06T05:22:43.353721
2015-01-12T18:19:18
2015-01-12T18:19:18
24,478,292
1
0
null
2014-12-06T20:53:40
2014-09-25T23:00:59
Racket
UTF-8
Racket
false
false
112
rkt
array-transform.rkt
#lang typed/racket/base (require (only-in "typed-array-transform.rkt" array-append*)) (provide array-append*)
false
56394449ccc9c03a561e3b2f5bdf94ca18820926
725d29057130ce90c50dd59617e1a2cb0197e67c
/acl2s-placeholder.rkt
8ae95ca3a79cfb1144a751c1b2cfbb30d5c32c2b
[ "MIT" ]
permissive
AlexKnauth/acl2s-scribblings
b36c53b42111c14a4a0688ae2695cd668a737e91
ac77d9f0d87a9e3c3929e86444dfcd4b3d59640c
refs/heads/master
2022-01-18T23:36:44.518526
2022-01-07T14:51:09
2022-01-07T14:51:09
118,930,725
0
0
null
null
null
null
UTF-8
Racket
false
false
16,775
rkt
acl2s-placeholder.rkt
#lang racket/base (require (prefix-in rkt: racket/base) racket/list racket/match rackunit syntax/parse/define (for-syntax racket/base racket/syntax syntax/apply-transformer syntax/id-set syntax/parse/class/local-value "util/stx.rkt")) ;; ------------------------------------------------------- (begin-for-syntax (define core-expr-literal-ids (list #'#%datum #'#%app #'quote #'if #'let)) (define-literal-set core-expr-literals [#%datum #%app quote if let]) (define-syntax-class (core-expr [ctx #f]) [pattern e:expr #:with expansion (expand-core-expr #'e ctx)]) (define-syntax-class (core-fn-expr [ctx #f]) [pattern e:expr #:with expansion (expand-core-fn-expr #'e ctx)]) (define (expand-once/transformer e ctx) (syntax-parse e [(~or m:id (m:id . _)) (local-apply-transformer (syntax-local-value #'m) e 'expression (or ctx '()))])) (define (expand-core-expr e ctx) (syntax-parse (local-expand e 'expression core-expr-literal-ids ctx) #:literal-sets [core-expr-literals] [x:id e] [(#%datum . _) (syntax-parse (expand-once/transformer e ctx) [({~literal rkt:quote} _) e] [e* (expand-core-expr #'e* ctx)])] [(ap:#%app {~var f (core-fn-expr ctx)} {~var a (core-expr ctx)} ...) (syntax/loc e (ap f.expansion a.expansion ...))] [(quote _) (syntax-parse (expand-once/transformer e ctx) [({~literal rkt:quote} _) e] [e* (expand-core-expr #'e* ctx)])] [(i:if {~var a (core-expr ctx)} {~var b (core-expr ctx)} {~var c (core-expr ctx)}) (syntax/loc e (i a.expansion b.expansion c.expansion))] [(l:let ([x:id a:expr] ...) b:expr) #:with [{~var a* (core-expr ctx)} ...] #'[a ...] ;; create a context where the xs are bound #:do [(define ctx* (syntax-local-make-definition-context ctx)) (define (intro stx) (internal-definition-context-introduce ctx* stx)) (syntax-local-bind-syntaxes (attribute x) #f ctx*)] #:with [x* ...] (intro #'[x ...]) #:with {~var b* (core-expr ctx*)} (intro #'b) (syntax/loc e (l ([x* a*.expansion] ...) b*.expansion))] ;; implicit insertion of #%app [(f:id . args) #:fail-when (and (syntax-local-value #'f (λ () #f) ctx) #'f) "expected a function, given a macro" #:with app (datum->syntax e '#%app e) (expand-core-expr (syntax/loc e (app f . args)) ctx)] ;; implicit insertion of #%datum [{~and a {~or :number :str :char :boolean}} #:with datum (datum->syntax e '#%datum e) (expand-core-expr (syntax/loc e (datum . a)) ctx)] )) (define (expand-core-fn-expr e ctx) (syntax-property (expand-core-expr (syntax-property e 'function #true) ctx) 'function #true)) ) ;; ------------------------------------------------------- (provide allp all boolean rational integer nat pos symbol string tl) (begin-for-syntax ;; data description ids for defdata (struct data-desc [recognizer-id] #:transparent) (define-syntax-class type-id #:attributes [recognizer] [pattern tid #:declare tid (local-value data-desc?) #:with recognizer:id (data-desc-recognizer-id (attribute tid.local-value))]) (define-syntax-class colon-type #:attributes [recognizer] [pattern x:id #:do [(define str (symbol->string (syntax-e #'x)))] #:fail-unless (<= 1 (string-length str)) "expected a colon `:`" #:fail-unless (char=? (string-ref str 0) #\:) "expected a colon `:`" #:with :type-id (format-id #'x "~a" (substring str 1))])) (define (allp v) 't) (define-syntax all (data-desc #'allp)) (define-syntax boolean (data-desc #'booleanp)) (define-syntax rational (data-desc #'rationalp)) (define-syntax integer (data-desc #'integerp)) (define-syntax nat (data-desc #'natp)) (define-syntax pos (data-desc #'posp)) (define-syntax symbol (data-desc #'symbolp)) (define-syntax string (data-desc #'stringp)) (define-syntax tl (data-desc #'tlp)) ;; ------------------------------------------------------- (provide #%datum #%app quote t nil list) (define-syntax-parser #%datum [(_ . x:number) (unless (exact? (syntax-e #'x)) (raise-syntax-error #f "only exact rational numbers allowed" #'x)) #'(rkt:quote x)] [(_ . s:str) #'(rkt:quote s)] [(_ . c:char) #'(rkt:quote c)] [(_ . b:boolean) (if (syntax-e #'b) (raise-syntax-error #f "true is written as `t`" #'b) (raise-syntax-error #f "false is written as `nil`" #'b))]) (define-syntax-parser #%app [(_ f:expr a:expr ...) (quasisyntax/loc this-syntax (rkt:#%plain-app #,(syntax-property #'f 'function #true) a ...))]) (define-syntax-parser quote [(_ s:id) #'(rkt:quote s)] [(_ x:number) #'(#%datum . x)] [(_ s:str) #'(#%datum . s)] [(_ c:char) #'(#%datum . c)] [(_ b:boolean) #'(#%datum . b)] [(_ ()) #'(quote nil)] [(_ (a ...)) #'(list (quote a) ...)] [(_ (a ... . b)) #'(list* (quote a) ... (quote b))]) (define t 't) (define nil 'nil) (define (list . args) (foldr cons nil args)) ;; ------------------------------------------------------- (provide equal check=) (define (equal a b) (rkt->bool (equal? a b))) (define-binary-check (check= a b) (equal? a b)) (define-simple-check (check-t e) (bool->rkt e)) (define (bool->rkt v) (case v [(t) (rkt:quote #true)] [(nil) (rkt:quote #false)] [else (error 'boolean "should be `t` or `nil`, given ~v" v)])) (define (rkt->bool v) (rkt:if v 't 'nil)) ;; ------------------------------------------------------- ;; If (provide if) (define-syntax-parser if [(_ condition:expr then:expr else:expr) #'(rkt:if (bool->rkt condition) then else)]) ;; ------------------------------------------------------- (provide definec defunc defconst let let*) (begin-for-syntax (define-splicing-syntax-class param-colon-type #:attributes [id type type.recognizer] [pattern {~seq id:id type:colon-type}])) (define-syntax-parser definec [(_ f:id (in:param-colon-type ...) out:colon-type body:expr) #:with in-ctc #'(and (in.type.recognizer in.id) ...) #:with out-ctc #'(out.recognizer (f in.id ...)) #'(defunc f (in.id ...) :input-contract in-ctc :output-contract out-ctc body)]) (define-syntax-parser defunc #:datum-literals [:input-contract :output-contract] [(_ f:id (x:id ...) :input-contract in-ctc:expr :output-contract out-ctc:expr body:expr) #:with result:id (generate-temporary #'result) #:with out-ctc*:expr (subst #'out-ctc #'(f x ...) #'result datum=?) #:fail-when (and (datum=? #'out-ctc #'out-ctc*) (not (datum=? #'out-ctc #'t)) #'out-ctc) (format "output contract should refer to ~s" (syntax->datum #'(f x ...))) #'(define (f x ...) (if in-ctc (let ([result body]) (if out-ctc* result (error 'f "output contract violation"))) (error 'f "input contract violation")))]) (begin-for-syntax (define-syntax-class *id* [pattern x:id #:fail-unless (regexp-match-exact? #rx"\\*.*\\*" (symbol->string (syntax-e #'x))) "expected *name*"])) (define-simple-macro (defconst x:*id* e:expr) (define x e)) ;; ------------------------------------------------------- ;; Conditionals (provide cond) (define-syntax-parser cond #:literals [t] ;; technically, this should return `nil`. But in my ;; version, that fall-through behavior is deprecated. [(_) #'(error 'cond "nil fall-through is deprecated")] ;; else is called `t` in this language [(_ (t a)) #'a] [(_ (q a) (q* a*) ...) #'(if q a (cond (q* a*) ...))]) ;; ------------------------------------------------------- ;; Basic Boolean Operations (provide and or implies not booleanp) (define-syntax-parser and [(_) #''t] [(_ a:expr b:expr ...) #'(if a (and b ...) 'nil)]) (define-syntax-parser or [(_) #''nil] [(_ a:expr b:expr ...) #'(if a 't (or b ...))]) (define-syntax-parser implies [(_ a:expr b:expr) #'(if a b 't)]) (define (booleanp v) (case v [(t) 't] [(nil) 't] [else 'nil])) (definec not (b :boolean) :boolean (case b [(t) 'nil] [(nil) 't])) ;; ------------------------------------------------------- ;; Basic Pair and List Operations (provide cons consp atom first rest tlp endp) (define (consp v) (rkt->bool (cons? v))) (define (atom v) (rkt->bool (rkt:not (cons? v)))) (defunc first (p) :input-contract (consp p) :output-contract t (car p)) (defunc rest (p) :input-contract (consp p) :output-contract t (cdr p)) (define (tlp v) (if (consp v) (tlp (rest v)) (equal v nil))) (definec endp (l :tl) :boolean (rkt->bool (rkt:not (cons? l)))) ;; ------------------------------------------------------- ;; Numbers (provide integerp rationalp natp posp + * unary-- unary-/ - / < > <= >= numerator denominator) (define (integerp v) (rkt->bool (exact-integer? v))) (define (rationalp v) (rkt->bool (rkt:and (rational? v) (exact? v)))) (define (natp v) (rkt->bool (exact-nonnegative-integer? v))) (define (posp v) (rkt->bool (exact-positive-integer? v))) (definec < (a :rational b :rational) :boolean (rkt->bool (rkt:< a b))) (definec > (a :rational b :rational) :boolean (rkt->bool (rkt:> a b))) (definec <= (a :rational b :rational) :boolean (rkt->bool (rkt:<= a b))) (definec >= (a :rational b :rational) :boolean (rkt->bool (rkt:>= a b))) (definec unary-- (a :rational) :rational (rkt:- a)) (defunc unary-/ (a) :input-contract (and (rationalp a) (not (equal a 0))) :output-contract (rationalp (unary-/ a)) (rkt:/ a)) (definec - (a :rational b :rational) :rational (rkt:- a b)) (defunc / (a b) :input-contract (and (rationalp a) (rationalp b) (not (equal b 0))) :output-contract (rationalp (/ a b)) (rkt:/ a b)) ;; ------------------------------------------------------- ;; Symbols and Strings (provide symbolp stringp) (define (symbolp v) (rkt->bool (symbol? v))) (define (stringp v) (rkt->bool (rkt:and (string? v) (immutable? v)))) ;; ------------------------------------------------------- ;; More List Operations (provide len app rev in) (definec len (l :tl) :nat (cond ((endp l) 0) (t ;else (+ 1 (len (rest l)))))) (definec app (x :tl y :tl) :tl (cond ((endp x) y) (t ;else (cons (first x) (app (rest x) y))))) (definec rev (x :tl) :tl (cond ((endp x) '()) (t ;else (app (rev (rest x)) (list (first x)))))) (definec in (a :all l :tl) :boolean (match l [(list-rest elems ... (== 'nil)) (rkt->bool (member a elems))])) ;; ------------------------------------------------------- ;; Defdata (provide defdata enum oneof range record listof) (define-for-syntax (err-outside-defdata stx) (raise-syntax-error #f "used outside of defdata" stx)) (define-syntax enum err-outside-defdata) (define-syntax oneof err-outside-defdata) (define-syntax range err-outside-defdata) (define-syntax record err-outside-defdata) (define-syntax listof err-outside-defdata) (begin-for-syntax (define-syntax-class lt #:literals [< <=] [pattern <] [pattern <=])) (define-syntax-parser defdata [(_ name:id dd:expr) #:with namep (format-id #'name "~ap" #'name #:source #'name #:props #'name) #'(begin (define-syntax name (data-desc (quote-syntax namep))) (data-desc-defs name dd))]) (define-syntax-parser data-desc-defs #:literals [record] [(_ name:id (record (field:id . fld-desc:expr) ...)) #:with name* (generate-temporary #'name) #:with name*? (format-id #'name* "~a?" #'name*) #:with [name*-field ...] (for/list ([fld (in-list (syntax->list #'[field ...]))]) (format-id #'name* "~a-~a" #'name* fld)) #:with namep (format-id #'name "~ap" #'name #:source #'name #:props #'name) #:with [name-field ...] (for/list ([fld (in-list (syntax->list #'[field ...]))]) (format-id #'name "~a-~a" #'name fld #:source #'name #:props #'name)) #:with v (generate-temporary 'v) #'(begin (struct name* [field ...] #:transparent #:reflection-name 'name) (define (namep v) (rkt->bool (name*? v))) (defunc name (field ...) :input-contract (and (data-desc-test field fld-desc) ...) :output-contract (namep (name field ...)) (name* field ...)) (define (name-field v) (name*-field v)) ...)] [(_ name:id dd:expr) #:with namep (format-id #'name "~ap" #'name #:source #'name #:props #'name) #:with v (generate-temporary 'v) #'(define (namep v) (data-desc-test v dd))]) (define-syntax-parser data-desc-test #:literals [t nil enum oneof range listof list cons record rational integer] [(_ v:id ddi:type-id) #'(ddi.recognizer v)] ;; singleton things [(_ v:id n:number) #'(equal v 'n)] [(_ v:id t) #'(equal v 't)] [(_ v:id nil) #'(equal v 'nil)] ;; numeric things [(_ v:id (range (~and dd:expr (~or rational integer)) range-constraints:expr)) #'(and (data-desc-test v dd) (range-constraints-test v range-constraints))] ;; sum-type things [(_ v:id (enum lst:expr)) #:with lst-id (syntax-local-lift-expression #'lst) #'(in v lst-id)] [(_ v:id (oneof dd:expr ...)) #'(or (data-desc-test v dd) ...)] ;; product-type things [(_ v:id (list elem-dd:expr ...)) #:with [elem-v ...] (generate-temporaries #'[elem-dd ...]) #'(match v [(list-rest elem-v ... (== 'nil)) (and (data-desc-test elem-v elem-dd) ...)] [_ 'nil])] [(_ v:id (cons a-dd:expr d-dd:expr)) #:with [a-v d-v] (generate-temporaries '(a d)) #'(match v [(cons a-v d-v) (and (data-desc-test a-v a-dd) (data-desc-test d-v d-dd))] [_ 'nil])] ;; other [(_ v:id (listof elem-dd:expr)) #:with elems (generate-temporary 'elems) #:with ooo (quote-syntax ...) #:with elem-v (generate-temporary 'elem) #'(match v [(list-rest elems ooo (== 'nil)) (rkt->bool (for/and ([elem-v (in-list elems)]) (bool->rkt (data-desc-test elem-v elem-dd))))] [_ 'nil])] ) (define-syntax-parser range-constraints-test #:datum-literals [_] [(rct v:id (_ cmp:lt (~and high:expr (~not _)))) #'(cmp v high)] [(rct v:id ((~and low:expr (~not _)) cmp:lt _)) #'(cmp low v)] [(rct v:id ((~and low:expr (~not _)) cmp1:lt _ cmp2 (~and high:expr (~not _)))) #'(and (cmp1 low v) (cmp2 v high))]) ;; ------------------------------------------------------- (provide test?) ;; TODO: test?, thm (begin-for-syntax (define b-id-set* immutable-bound-id-set) (define (b-id-set . lst) (b-id-set* lst)) (define b-id-set-un bound-id-set-union) (define (b-id-set-un* lst) (apply b-id-set-un lst)) (define-syntax-class freevar [pattern x:id #:when (not (syntax-property #'x 'function)) #:do [(define str (symbol->string (syntax-e #'x)))] #:when (not (regexp-match-exact? #rx"^\\*.*\\*$" str))]) (define-syntax-class expr-with-freevars #:attributes [[freevar 1] expansion] [pattern :core-expr #:with [freevar ...] (bound-id-set->list ((find-freevars (b-id-set)) #'expansion))]) (define ((find-freevars G) e) (define (free e) ((find-freevars G) e)) (syntax-parse e #:literal-sets [core-expr-literals] [x:freevar (if (bound-id-set-member? G #'x) (b-id-set) (b-id-set #'x))] [(#%app f a ...) (b-id-set-un* (cons (free #'f) (map free (attribute a))))] [(if c t e) (b-id-set-un (free #'c) (free #'t) (free #'e))] [(let ([x a] ...) b) (define G* (b-id-set-un G (b-id-set* (attribute x)))) (b-id-set-un (b-id-set-un* (map free (attribute a))) ((find-freevars G*) #'b))] [_ (b-id-set)])) ) (define-syntax-parser test? [(_ expr:expr-with-freevars) (syntax/loc this-syntax (check-t (rkt:let ([expr.freevar 'expr.freevar] ...) expr.expansion)))]) ;; -------------------------------------------------------
true
08019d0cc94f1862968236d99a973c81acf6edda
323c4b63da4e4cd9b7236d130a137b479f2597bf
/syndicate/test/core/simple-cross-layer.rkt
12c983676570ffde7a12d70357975661b2738189
[]
no_license
frumioj/syndicate-rkt
b177fb55eaca6047c1bd63c024cf4297ee8b80e8
3030d1959e4b9bee9b8b6cbb7b8bab2d11f37d7c
refs/heads/master
2022-10-10T01:15:41.664050
2020-06-10T11:38:26
2020-06-10T11:38:26
null
0
0
null
null
null
null
UTF-8
Racket
false
false
961
rkt
simple-cross-layer.rkt
#lang syndicate/test-implementation (test-case [(assertion-struct greeting (text)) (spawn #:name "A" (assert (greeting "Hi from outer space!"))) (spawn #:name "B" (on (asserted (greeting $t)) (printf "Outer dataspace: ~a\n" t))) (dataspace #:name "C" (spawn #:name "D" (assert (outbound (greeting "Hi from inner!")))) (spawn #:name "E" (on (asserted (inbound (greeting $t))) (printf "Inner dataspace: ~a\n" t))))] no-crashes ;; There are constraints not expressed here; to properly test this, ;; we need something closer to real ;; regular-expressions-with-interleave over output lines. (expected-output (set "Outer dataspace: Hi from outer space!" "Inner dataspace: Hi from outer space!" "Outer dataspace: Hi from inner!" "Inner dataspace: Hi from inner!")))
false
fcdec9624ee1d302bd9011609c00ac2d270980f6
5371560f412be1a4cd603b15e22d628f28757607
/A7/a7.rkt
75302288bb3164b5605b7b5e36f6cce30a888a61
[]
no_license
jellyr/Dr-Racket-Interpreter-OtherStuff
ca792be365982eca4118a0e335f187604f17fd6b
e9ab4bb6628093dabbd46d6444400123dd2ac69c
refs/heads/master
2021-04-27T00:10:47.578923
2017-03-20T10:33:36
2017-03-20T10:33:36
null
0
0
null
null
null
null
UTF-8
Racket
false
false
6,804
rkt
a7.rkt
#lang racket ; Part 1: call/cc (define last-non-zero (lambda (ls) (call/cc (lambda (k) (letrec ((last-non-zero (lambda (ls) (cond [(null? ls) ls] [(eqv? (car ls) 0) (k (last-non-zero (cdr ls)))] [else (cons (car ls) (last-non-zero (cdr ls)))] ) ))) (last-non-zero ls)))))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Part 2: LEX (define lex (lambda (exp acc) (match exp [`,n #:when (number? n) (list 'const n)] [`,y #:when (symbol? y) (if (member y acc) (list 'var (letrec ([position (lambda (n) (if (eqv? (car n) y) 0 (add1 (position (cdr n)))))]) (position acc))) '() )] [`(if ,chk ,t ,f) (cons 'if (cons (lex chk acc) (cons (lex t acc) (lex f acc))))] [`(zero? ,nexp) `(zero ,(lex nexp acc))] [`(* ,nexp1 ,nexp2) `(mult ,(lex nexp1 acc) ,(lex nexp2 acc))] [`(sub1 ,x) (list 'sub1 (lex x acc))] [`(let ([,id ,expr]) ,body) (cons 'let (cons (lex expr acc) (cons (lex body (cons id acc)) '())) )] [`(lambda (,x) ,body) (cons 'lambda (cons (lex body (cons x acc)) '()))] [`(,rator ,rand) `(app ,(lex rator acc) ,(lex rand acc))] [`(return ,a ,b) (list 'return (lex a acc) (lex b acc))] [`(capture ,k ,body) (list 'capture (lex body (cons k acc)))] ))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Part 3: The Interpreter (define *-inner-k (lambda (k^ k^^) `(*-inner-k ,k^ ,k^^))) (define *-outer-k (lambda (x1^ env^ k^) `(*-outer-k ,x1^ ,env^ ,k^))) (define sub1-k (lambda (k^) `(sub1-k ,k^))) (define zero-k (lambda (k^) `(zero-k ,k^))) (define if-k (lambda (conseq^ alt^ env^ k^) `(if-k ,conseq^ ,alt^ ,env^ ,k^))) (define return-k (lambda (v-exp^ env^) `(return-k ,v-exp^ ,env^) )) (define let-k (lambda (body^ env^ k^) `(let-k ,body^ ,env^ ,k^))) (define app-inner-k (lambda (v^ k^) `(app-inner-k ,v^ ,k^))) (define app-outer-k (lambda (rand^ env^ k^) `(app-outer-k ,rand^ ,env^ ,k^))) (define value-of-cps (lambda (expr env k) (match expr [`(const ,expr) (apply-k k expr)] [`(mult ,x1 ,x2) (value-of-cps x2 env (*-outer-k x1 env k))] [`(sub1 ,x) (value-of-cps x env (sub1-k k))] [`(zero ,x) (value-of-cps x env (zero-k k))] [`(if ,test ,conseq ,alt) (value-of-cps test env (if-k conseq alt env k))] [`(capture ,body) (value-of-cps body (extend-env k env) k)] [`(return ,k-exp ,v-exp) (value-of-cps k-exp env (return-k v-exp env))] [`(let ,e ,body) (value-of-cps e env (let-k body env k))] [`(var ,expr) (apply-env env expr k)] [`(lambda ,body) (apply-k k (closure body env) )] [`(app ,rator ,rand) (value-of-cps rator env (app-outer-k rand env k))] ))) (define extend-env (lambda (a^ env^) `(extend-env ,a^ ,env^) )) (define empty-env (lambda () `(empty-env))) (define apply-env (lambda(env y k^) (match env [`(extend-env ,a^ ,env^) (if (zero? y) (apply-k k^ a^) (apply-env env^ (sub1 y) k^))] [`(empty-env) (error 'value-of "unbound identifier")] ))) (define closure (lambda (body env) `(closure ,body ,env))) (define apply-closure (lambda (cl a k^) (match cl [`(closure ,body ,env) (value-of-cps body (extend-env a env) k^)] ))) (define empty-k (lambda () `(empty-k))) (define apply-k (lambda (k v) (match k [`(*-inner-k ,k^ ,k^^) (apply-k k^^ (* k^ v))] [`(*-outer-k ,x1^ ,env^ ,k^) (value-of-cps x1^ env^ (*-inner-k v k^))] [`(sub1-k ,k^) (apply-k k^ (sub1 v))] [`(zero-k ,k^) (apply-k k^ (zero? v))] [`(if-k ,conseq^ ,alt^ ,env^ ,k^) (if v (value-of-cps conseq^ env^ k^) (value-of-cps alt^ env^ k^))] [`(return-k ,v-exp^ ,env^) (value-of-cps v-exp^ env^ v)] [`(let-k ,body^ ,env^ ,k^) (value-of-cps body^ (extend-env v env^) k^)] [`(app-inner-k ,v^ ,k^) (apply-closure v^ v k^)] [`(app-outer-k ,rand^ ,env^ ,k^) (value-of-cps rand^ env^ (app-inner-k v k^))] [`(empty-k) v] ))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Brainteaser (define-syntax cons$ (syntax-rules () ((cons$ x y) (cons x (delay y))))) (define car$ car) (define cdr$ (lambda ($) (force (cdr $)))) (define take$ (lambda (n $) (cond ((zero? n) '()) (else (cons (car$ $) (let ((n- (sub1 n))) (cond ((zero? n-) '()) (else (take$ n- (cdr$ $)))))))))) (define trib$ (letrec ((trib (lambda (a b c) (cons$ a (trib b c (+ a b c)))))) (trib 0 1 1))) ;;(define apply-k ;;(lambda (k v) ;;(match k ;;[`(*-inner-k ,k^ ,k^^) (apply-k k^^ (* k^ v))] ;;[`(*-outer-k ,x1^ ,env^ ,k^) (value-of-cps x1^ env^ (*-inner-k v k^))] ;[`(sub1-k ,k^) (apply-k k^ (sub1 v))] ;[`(zero-k ,k^) (apply-k k^ (zero? v))] ;[`(if-k ,conseq^ ,alt^ ,env^ ,k^) (if v (value-of-cps conseq^ env^ k^) (value-of-cps alt^ env^ k^))] ;[`(return-k ,v-exp^ ,env^) (value-of-cps v-exp^ env^ v)] ;[`(let-k ,body^ ,env^ ,k^) (value-of-cps body^ (extend-env v env^) k^)] ;[`(app-inner-k ,v^ ,k^) (apply-closure v^ v k^)] ;[`(app-outer-k ,rand^ ,env^ ,k^) (value-of-cps rand^ env^ (app-inner-k v k^))] ;[`(empty-k) v] ;))) ;(require "a7-student-tests.rkt") ;(test-file #:file-name "a7_11.rkt")
true
07d1fae944490777c7482beffd29506ee10f0677
2990b0841b63f300a722107933c01c7237a7976b
/all_xuef/程序员练级+Never/Fun_Projects/plai_code/func_as_expr.rkt
31dc6224314495afd9cab84c7bcbbc95cb47f3f3
[]
no_license
xuefengCrown/Files_01_xuef
8ede04751689e0495e3691fc5d8682da4d382b4d
677329b0189149cb07e7ba934612ad2b3e38ae35
refs/heads/master
2021-05-15T04:34:49.936001
2019-01-23T11:50:54
2019-01-23T11:50:54
118,802,861
1
1
null
null
null
null
UTF-8
Racket
false
false
1,569
rkt
func_as_expr.rkt
#lang plai ; Environments (define-type Binding [bind (name symbol?) (val Value?)]) ;;env-helper ;; Env listof-Binding (define mt-env empty) (define extend-env cons) (define (lookup s env) (cond [(empty? env) (error 'lookup "name not found")] [(symbol=? s (bind-name (car env))) (bind-val (car env))] [else (lookup s (cdr env))])) ; Expression (define-type ExprC [numC (n number?)] [idC (s symbol?)] [lamC (arg symbol?) (body ExprC?)] [appC (fun ExprC?) (arg ExprC?)] [plusC (l ExprC?) (r ExprC?)] [multC (l ExprC?) (r ExprC?)]) (define-type Value [numV (n number?)] [closV (arg symbol?) (body ExprC?) (env list?)]) (define (num+ [l Value?] [r Value?]) (cond [(and (numV? l) (numV? r)) (numV (+ (numV-n l) (numV-n r)))] [else (error 'num+ "one argument was not a number")])) (define (num* [l Value?] [r Value?]) (cond [(and (numV? l) (numV? r)) (numV (* (numV-n l) (numV-n r)))] [else (error 'num* "one argument was not a number")])) ;;-->Value (define (interp e env) (type-case ExprC e [numC (n) (numV n)] [idC (s) (lookup s env)] [lamC (a b) (closV a b env)] [appC (f a) (let ([fd (interp f env)]) (interp (closV-body fd) (extend-env (bind (closV-arg fd) (interp a env)) (closV-env fd)) ))] [plusC (l r) (num+ (interp l env) (interp r env))] [multC (l r) (num* (interp l env) (interp r env))] ) ) ;test
false
238cef03d5f8ae3acff234fba07e22f03a436e73
d6b905b841a3c812ff1805879f681111f164e87c
/nanoxd/chapter4/ch04.rkt
a94ece22e077a554fefa93f59a1c9b597fbe0045
[ "MIT" ]
permissive
SeaRbSg/realm_of_racket
40398e89ab2d39b7499bb97ee2a6b07bdb79c586
b4383c6cab68b4cea04f514267c58397e8cc69d0
refs/heads/master
2021-03-12T22:50:14.935166
2017-11-30T23:40:10
2017-11-30T23:51:11
12,911,347
1
2
null
null
null
null
UTF-8
Racket
false
false
2,326
rkt
ch04.rkt
(zero? 42) (zero? 0) (symbol=? 'a 'b) (struct student (name id# dorm) #:transparent) (define sophomore3 (student 'David 100234 'PG)) (student-name sophomore3) (student? 'a) (student? sophomore3) (student? (student 1 2 3)) (student? "i am student") (number? 'a) (string? "hello world") (symbol? 'a) (boolean? "false") (list? 'eh) (cons? '(what is that about)) (empty? 'a) (real? 10) (real? (sqrt -1)) (rational? 2/3) (integer? 1.0) (integer? 1) (exact-integer? 1.0) (= 1 2) (= (sqrt -1) 0+1i) (boolean=? #f #f) (string=? "hello world" "good bye") (equal? (student 'David 100234 'PG) sophomore3) (equal? '(1 2 3) '(1 2 3)) (equal? 'a 'b) (equal? "hello world" 'a) (equal? 10 10) (equal? #t 10) (define (add-to-front-of-123 x) (cons x '(1 2 3))) (add-to-front-of-123 'a) (add-to-front-of-123 0) (add-to-front-of-123 '(a b c)) (if (= (+ 1 2) 3) 'yup 'nope) (if (= (+ 1 2) 4) 'yup 'nope) (if (odd? 5) 'odd-number 'even-number) (if (odd? 5) 'odd-number (/ 1 0)) (define x 7) (if (even? x) 'even-number (if (= x 7) 5 'odd-number)) (cond [(= x 7) 5] [(odd? x) 'odd-number] [else 'even-number]) (cond [(even? x) 'even-number] [(= x 7) 5] [else 'odd-number]) (define (my-length a-list) (if (empty? a-list) 0 (add1 (my-length (rest a-list))))) (my-length '(list with four symbols)) (my-length '(42)) (define x1 5) (define y 7) (define z 9) (and (odd? x1) (odd? y) (odd? z)) (define w 4) (or (odd? w) (odd? y) (odd? z)) (define is-it-even #f) is-it-even (or (odd? x1) (set! is-it-even #t)) (and (even? x1) (set! is-it-even #t)) is-it-even (if (member 4 (list 3 4 1 5)) '4-is-in 'not-in) (member 1 '(3 4 1 5)) (define tasks '(1 clean 3 homework 4 party)) (member 3 tasks) (struct point (x y) #:transparent) (define (distance-to-origin p) (sqrt (+ (sqr (point-x p)) (sqr (point-y p))))) (distance-to-origin (point 3 4)) (distance-to-origin (point 12 5)) (define pt1 (point -1 2)) (define pt2 (point -1 2)) (equal? pt1 pt2) (eq? pt1 pt2) (eq? pt1 pt1) (eq? pt2 pt2) ;; equal? is value equality. eq? is object-id equality. (define pt3 pt1) (eq? pt1 pt3) (define (eq-first-items list1 list2) (eq? (first list1) (first list2))) (eq-first-items (cons pt1 empty) (cons pt3 empty)) (eq-first-items (cons pt1 empty) (cons pt2 empty))
false
6d93aedb8ef64ec5ec175ef0a25fd694c4f29789
ad02382778cb309adab4878c95614df65c36cb5b
/document-util.rkt
b7a019dae0ae0c1bc14603df02726be120630c5b
[]
no_license
dgoffredo/xsd-gc
c6fbb9aeb73f94d2b11d43782728b821a408ae4d
75e0b3b33ff3dae7e5f996d9c61df10a5ec2be26
refs/heads/master
2020-03-24T16:18:10.717228
2019-02-07T16:20:24
2019-02-07T16:20:24
142,819,675
1
0
null
null
null
null
UTF-8
Racket
false
false
2,490
rkt
document-util.rkt
#lang racket (require "type-util.rkt" xml) (provide get-cuts) (define whitespace? (let ([regex #px"\\s+"]) (lambda (text) (regexp-match regex text)))) (define-match-expander type-to-remove ; Define a `match` pattern, `type-to-remove`, that matches a particular type ; of element within an XML document. The element must be an XSD type ; definition whose name satisfies the specified `remove?` predicate. When ; matched, the beginning and one-past-last character offsets will be bound ; to the specified `from` and `to`, respectively. (syntax-rules () [(type-to-remove remove? from to) (... ; treat ellipses literally (element ; type definition (location _ _ from) ; char offset of beginning (location _ _ to) ; char offset just past end (or (? type-tag? _) (? element-tag? _)) ; type or element (list-no-order ; attributes (attribute _ _ 'name (? remove? _)) ; name matches a removed type _ ...) ; remaining attributes _))])) ; children of type definition (define (get-cuts content types-to-remove) ; Return a list of `(list from to)`, each representing a half open range of ; unicode characters to be removed from the XML document whose toplevel ; element's content is as specified. The cuts remove from the document the ; definitions of the specified types and any preceding whitespace. The cuts ; are returned in document order. (define remove? (let ([types-to-remove (list->set types-to-remove)]) (lambda (name) (set-member? types-to-remove name)))) (reverse (let recur ([content content] [cuts '()]) (match content [(list (pcdata (location _ _ from) _ (? whitespace? _)) ; leading space (type-to-remove remove? _ to) ; type def remaining ...) (recur remaining (cons (list from to) cuts))] [(list (type-to-remove remove? from to) ; type definition remaining ...) (recur remaining (cons (list from to) cuts))] [(list _ remaining ...) ; content to keep (recur remaining cuts)] ['() cuts])))) ; no more content, return cuts
false
b6af7e3b3a29ac3bcbe8068ab3703da8a9ec2c3c
1846f896bbc0d450bf3883935caf8e332200a154
/keys.rkt
189fd9bb9dcbaaf1935852597b65da69bca7d3f1
[]
no_license
d3zd3z/suit-play
802d7f756bc11e29b8953d50f777b690ee0da8c2
a9b3ca3aa65dc33f28266e986218d7170dce2230
refs/heads/master
2020-03-24T22:14:39.105161
2018-07-31T22:19:04
2018-07-31T22:19:04
143,075,806
1
0
null
null
null
null
UTF-8
Racket
false
false
4,479
rkt
keys.rkt
#lang racket/base (require asn1 crypto crypto/libcrypto crypto/sodium net/base64 racket/match racket/pretty "cbor.rkt" "dump.rkt" "pem.rkt" ) (provide load-ec-key) ;; This is specific to the EC private key (define EC-PRIVATE (SEQUENCE [version INTEGER] [algorithm (SEQUENCE [algorithm OBJECT-IDENTIFIER] [parameter OBJECT-IDENTIFIER])] [key OCTET-STRING])) (define ECPrivateKey (SEQUENCE [version INTEGER] [privateKey OCTET-STRING] [parameters #:explicit 0 OBJECT-IDENTIFIER #:optional] [publicKey #:explicit 1 BIT-STRING #:optional])) (define (generate-rsa-key) (define key (generate-private-key 'rsa '((nbits 2048)))) (define priv (pk-key->datum key 'RSAPrivateKey)) (display "-----BEGIN RSA PRIVATE KEY-----\n") (display (base64-encode priv #"\n")) (display "-----END RSA PRIVATE KEY-----\n")) (define (generate-ed25519-key) (define key (generate-private-key 'eddsa '((curve ed25519)))) (define priv (pk-key->datum key 'OneAsymmetricKey)) (define pub (pk-key->datum key 'SubjectPublicKeyInfo)) (display "-----BEGIN ED25519 PRIVATE KEY-----\n") (display (base64-encode priv #"\n")) (display "-----END ED25519 PRIVATE KEY-----\n") (display "-----BEGIN PUBLIC KEY-----\n") (display (base64-encode pub #"\n")) (display "-----END PUBLIC KEY-----\n") ;; Lets show both. (display "=======private=======\n") (dump priv) (pretty-print (bytes->asn1/DER ANY priv)) (newline) (display "=======public=======\n") (dump pub) (pretty-print (bytes->asn1/DER ANY pub)) (newline) ) (define (load-ec-key path) (define pems (cadadr (call-with-input-file path read-all-pem))) (define data (bytes->asn1/DER ECPrivateKey pems)) (define oid (hash-ref data 'parameters)) (define priv-key (hash-ref data 'privateKey)) (define pub-key (bit-string-bytes (hash-ref data 'publicKey))) (define priv-num (bytes->integer priv-key)) ; (display "priv:\n") ; (dump priv-key) ; (display "pub:\n") ; (dump pub-key) (datum->pk-key (list 'ec 'private oid pub-key priv-num) 'rkt-private)) ;;; Curves used in RFC8152: ;;; prime256v1 ;;; secp384r1 ;;; secp521r1 (define (generate-ec-key) (define key (generate-private-key 'ec '((curve prime256v1)))) (define priv (pk-key->datum key 'PrivateKeyInfo)) (define pub (pk-key->datum key 'SubjectPublicKeyInfo)) (display "-----BEGIN EC PRIVATE KEY-----\n") (display (base64-encode priv #"\n")) (display "-----END EC PRIVATE KEY-----\n") (display "-----BEGIN PUBLIC KEY-----\n") (display (base64-encode pub #"\n")) (display "-----END PUBLIC KEY-----\n") ;; Lets show both. (display "=======private=======\n") (dump priv) (let ([rkt (pk-key->datum key 'rkt-private)]) (pretty-print rkt) (match rkt [(list 'ec 'private oid a b) (display "first:\n") (dump a) (display "second:\n") (dump (integer->bytes b))])) (let* ([dec1 (bytes->asn1/DER EC-PRIVATE priv)] [subkey (hash-ref dec1 'key)] [dec2 (bytes->asn1/DER ANY subkey)]) (display "algorithm:\n") (pretty-print (hash-ref dec1 'algorithm)) (display "key\n") (pretty-print dec2)) ;; (pretty-print (bytes->asn1/DER EC-PRIVATE priv)) (newline) (display "=======public=======\n") (dump pub) (pretty-print (pk-key->datum key 'rkt-public)) (pretty-print (bytes->asn1/DER ANY pub)) (newline) ) (module+ main (require racket/format racket/list racket/vector) ;; Setup crypto (crypto-factories (list libcrypto-factory sodium-factory)) (define (help . args) (display "\nSpecify a command to run\n\n") (for ([p (in-list commands)]) (display (format " ~a - ~a~%" (~a (first p) #:min-width 10 #:align 'right) (second p))))) (define (gen . args) (generate-rsa-key)) (define (gened . args) (generate-ed25519-key)) (define (genec . args) (generate-ec-key)) (define commands `(("help" "Show command help" ,help) ("gen" "Generate a key" ,gen) ("genec" "Generate an ed25519 key" ,genec) ("gened" "Generate an ed25519 key" ,gened))) (define (unknown) (display "*** Unknown subcommand") (newline)) ;; Decode the command line. (let ([cmdline (current-command-line-arguments)]) (cond [(zero? (vector-length cmdline)) (help)] [(assoc (vector-ref cmdline 0) commands) => (lambda (cmd) ((third cmd) (vector-drop cmdline 1)))] [else (unknown)])))
false
337e7e8abbd1a18cd9ffa4ff258fd991df7ce408
5da589b13747381a73091bf73d4dbad328014031
/examples/ttt.rkt
c43874322f4a4cac93651da2653ed11c67cadf5f
[]
no_license
jeapostrophe/monaco
c6e1f2b149d8029fb100b776a4138b4b2d0351b7
627e9845ceb4538282195cd1f256b4a4a9720231
refs/heads/master
2020-07-01T10:05:10.152004
2019-08-19T02:01:27
2019-08-19T02:01:27
201,138,810
2
0
null
null
null
null
UTF-8
Racket
false
false
2,458
rkt
ttt.rkt
#lang racket/base (require racket/match raart monaco/util monaco) ;; TTT (define rows 3) (define cols 3) (define slots (* rows cols)) (define player-idx 0) (define X-start (+ player-idx 1)) (define O-start (+ X-start slots)) (define X-end O-start) (define O-end (+ O-start slots)) (define ttt-init 0) (define (cell-idx r c) (+ c (* r cols))) (define (cell r c) (bit (cell-idx r c))) (define (seq r c dr dc) (for/sum ([i (in-range 3)]) (cell (+ r (* i dr)) (+ c (* i dc))))) (define (row x) (seq x 0 0 +1)) (define (col x) (seq 0 x +1 0)) (define winning (vector (row 0) (row 1) (row 2) (col 0) (col 1) (col 2) (seq 0 0 +1 +1) (seq 0 2 +1 -1))) (define (winning? n) (for/or ([c (in-vector winning)]) (= c (bitwise-and n c)))) (define complete (for*/sum ([r (in-range rows)] [c (in-range cols)]) (cell r c))) (define (complete? n) (= n complete)) (define-functor (open-ttt st) (define Xs (bitwise-bit-field st X-start X-end)) (define Os (bitwise-bit-field st O-start O-end)) (define B (bitwise-ior Xs Os)) (define x? (bitwise-bit-set? st player-idx))) (define (ttt-who st) (open-ttt st) (if x? 1 0)) (define text:X (text "X")) (define text:O (text "O")) (define text:_ (text " ")) (define (ttt-render-st st) (open-ttt st) (vappend #:halign 'left (table (for/list ([r (in-range rows)]) (for/list ([c (in-range cols)]) (define b (cell-idx r c)) (cond [(bitwise-bit-set? Xs b) text:X] [(bitwise-bit-set? Os b) text:O] [else text:_])))) (text (format "~a's turn" (if x? "X" "O"))))) (define (ttt-terminal? st) (open-ttt st) (or (winning? Xs) (winning? Os) (complete? B))) (define (ttt-score st) (open-ttt st) (cond [(winning? Xs) (vector 0.0 1.0)] [(winning? Os) (vector 1.0 0.0)] [else (vector 0.5 0.5)])) (define ttt-actions slots) (define (ttt-render-a st a) (action (string-ref "qweasdzxc" a) #f)) (define (ttt-legal? st a) (open-ttt st) (not (bitwise-bit-set? B a))) (define (ttt-aeval st a) (open-ttt st) (define st-other (bitwise-bit-flip st player-idx)) (define me-start (if x? X-start O-start)) (bitwise-bit-set st-other (+ a me-start))) (module+ main (mcts-play! ttt-actions ttt-who ttt-terminal? ttt-score ttt-legal? ttt-aeval ttt-render-st ttt-render-a ttt-init 0))
false
3f3668fb8159b0853d60ca8b71060205bb868b3d
22908da22a76c973bb842889b8251609f584c379
/abnf/scribblings/arithmetic.rkt
8f8489c956e9091d80bcbf26ad1fe48e1e25ca13
[]
no_license
tonyg/racket-abnf
65165942c6b735c75f6136879c1f25e6076e9d4f
1079bc5b30a227f52ac00a84dc3fcd539da5f8db
refs/heads/master
2020-04-26T06:31:10.284802
2020-01-17T12:45:03
2020-01-17T12:45:03
173,366,934
5
0
null
null
null
null
UTF-8
Racket
false
false
3,460
rkt
arithmetic.rkt
#lang racket (require abnf) (require abnf/rfc5234/core) (define-abnf-parser parse-arithmetic/cst "arithmetic-rules.rkt" expr values) (define (eval-cst cst) (match cst [`(expr (/ 0 (: ,x "+" ,y))) (+ (eval-cst x) (eval-cst y))] [`(expr (/ 1 (: ,x "-" ,y))) (- (eval-cst x) (eval-cst y))] [`(expr (/ 2 ,z)) (eval-cst z)] [`(term (/ 0 (: ,x "*" ,y))) (* (eval-cst x) (eval-cst y))] [`(term (/ 1 (: ,x "/" ,y))) (/ (eval-cst x) (eval-cst y))] [`(term (/ 2 ,z)) (eval-cst z)] [`(factor (/ 0 (: "(" ,z ")"))) (eval-cst z)] [`(factor (/ 1 ,z)) (eval-cst z)] [`(num (: ,_ ,digits ,_)) (string->number (text digits))])) (struct binop (function arg0 arg1) #:prefab) (define (cst->ast cst) (match cst [`(expr (/ 0 (: ,x "+" ,y))) (binop + (cst->ast x) (cst->ast y))] [`(expr (/ 1 (: ,x "-" ,y))) (binop - (cst->ast x) (cst->ast y))] [`(expr (/ 2 ,z)) (cst->ast z)] [`(term (/ 0 (: ,x "*" ,y))) (binop * (cst->ast x) (cst->ast y))] [`(term (/ 1 (: ,x "/" ,y))) (binop / (cst->ast x) (cst->ast y))] [`(term (/ 2 ,z)) (cst->ast z)] [`(factor (/ 0 (: "(" ,z ")"))) (cst->ast z)] [`(factor (/ 1 ,z)) (cst->ast z)] [`(num (: ,_ ,digits ,_)) (string->number (text digits))])) (define-abnf-parser parse-arithmetic "arithmetic-rules.rkt" expr cst->ast) (define (eval-ast ast) (match ast [(binop f x y) (f (eval-ast x) (eval-ast y))] [(? number? n) n])) (module+ test (require rackunit) (check-equal? (parse-arithmetic/cst "10 + 20 * 30 - 40") '(expr (/ 0 (: (term (/ 2 (factor (/ 1 (num (: (* ()) (* ((DIGIT 49) (DIGIT 48))) (* ((SP (/ 0 32)))))))))) "+" (expr (/ 1 (: (term (/ 0 (: (factor (/ 1 (num (: (* ((SP (/ 0 32)))) (* ((DIGIT 50) (DIGIT 48))) (* ((SP (/ 0 32)))))))) "*" (term (/ 2 (factor (/ 1 (num (: (* ((SP (/ 0 32)))) (* ((DIGIT 51) (DIGIT 48))) (* ((SP (/ 0 32))))))))))))) "-" (expr (/ 2 (term (/ 2 (factor (/ 1 (num (: (* ((SP (/ 0 32)))) (* ((DIGIT 52) (DIGIT 48))) (* ()))))))))))))))) ) (check-equal? (text (parse-arithmetic/cst "10 + 20 * 30 - 40")) "10 + 20 * 30 - 40") (check-equal? (eval-cst (parse-arithmetic/cst "10 + 20 * 30 - 40")) 570) (check-equal? (cst->ast (parse-arithmetic/cst "10 + 20 * 30 - 40")) (binop + 10 (binop - (binop * 20 30) 40))) (check-equal? (eval-ast (cst->ast (parse-arithmetic/cst "10 + 20 * 30 - 40"))) 570) (check-equal? (parse-arithmetic "10 + 20 * 30 - 40") (binop + 10 (binop - (binop * 20 30) 40))) )
false
4e13c9fa6228d1a3f4165ce558359404d05b2fa7
794ae89fbf7d5cda9dfd9b56c4b2ba15cea787e6
/cKanren/unstable/ak.rkt
730f784b109ff47a7b5c9911057ea1a246472665
[ "MIT" ]
permissive
mondano/cKanren
8325f50598c6ff04a7538f8c8a9148fd6eb85f60
8714bdd442ca03dbf5b1d6250904cbc5fd275e68
refs/heads/master
2023-08-13T23:14:59.058020
2014-10-21T15:53:14
2014-10-21T15:53:14
null
0
0
null
null
null
null
UTF-8
Racket
false
false
7,410
rkt
ak.rkt
#lang racket (require (except-in cKanren/ck walk walk* occurs-check) cKanren/src/constraints cKanren/src/framework (rename-in cKanren/src/events [findf e:findf])) (provide nom ==-check fresh-nom hash (rename-out [make-tie tie]) unify-s get-sus nom? (prefix-out nominal- walk) (prefix-out nominal- ==)) (define-var-type nom "a") (define-syntax-rule (fresh-nom (n ...) g g* ...) (fresh-aux nom (n ...) g g* ...)) (define (sus-constrained? x oc) (and (eq? (oc-rator oc) 'sus-c) (eq? (sus-constraint-v oc) x))) (define (sus-constraint-v oc) (car (oc-rands oc))) (define (sus? x) (and (pair? x) (eq? (car x) 'sus))) (define (get-sus x c e) (or (let ([rands* (filter/rator sus-c c)]) (let ([rands (findf (match-lambda [(list v pi) (eq? v x)] [else #f]) rands*)]) (and rands (cons 'sus rands)))) (e:findf (match-lambda [(add-constraint-event/internal rator (list v pi)) (and (eq? sus-c rator) (eq? v x))] [else #f]) e))) (define (sus-v s) (cadr s)) (define (sus-pi s) (caddr s)) (define-constraint (sus-c v [pi #:constant]) (add-constraint (sus-c v pi))) (struct tie (a t) #:transparent #:extra-constructor-name make-tie #:methods gen:mk-struct [(define (recur tie k) (k (tie-a tie) (list (tie-t tie)))) (define (constructor tie) (lambda (a t-ls) (make-tie a (car t-ls)))) (define (override-occurs-check? tie) #f) (define (reify-mk-struct tie r) (reify-tie tie r))]) (define (reify-tie t r) `(tie ,(reify-term (tie-a t) r) ,(reify-term (tie-t t) r))) (define (sus x pi) (sus-c x pi)) (define (== u v) (unify-s u v)) (define-constraint (unify-s u v) #:package (a [s c e]) (cond ((eq? u v) succeed) ((sus? u) (add-association (sus-v u) (apply-pi (sus-pi u) v c e))) ((get-sus u c e) => (lambda (s) (add-association u (apply-pi (sus-pi s) v c e)))) ((sus? v) (add-association (sus-v v) (apply-pi (sus-pi v) u c e))) ((get-sus v c e) => (lambda (s) (add-association v (apply-pi (sus-pi s) u c e)))) ((and (tie? u) (tie? v)) (let ((au (tie-a u)) (av (tie-a v)) (tu (tie-t u)) (tv (tie-t v))) (if (eq? au av) (unify-s tu tv) (conj (hash au tv) (unify-s tu (apply-pi `((,au . ,av)) tv c e)))))) ((and (pair? u) (pair? v)) (conj (unify-s (car u) (car v)) (unify-s (cdr u) (cdr v)))) ((and (var? u) (not (nom? u))) (conj (sus u `()) (add-association u (apply-pi `() v c e)))) ((and (var? v) (not (nom? v))) (conj (sus v `()) (add-association v (apply-pi `() u c e)))) ((or (nom? u) (nom? v)) fail) ((equal? u v) succeed) (else fail))) (define (==-check u v) (unify-s-check u v)) (define-constraint (unify-s-check u v) #:package (a [s c e]) (cond ((eq? u v) succeed) ((sus? u) (ext-s-check (cadr u) (apply-pi (caddr u) v c e))) ((get-sus u c e) => (lambda (oc) (ext-s-check u (apply-pi (sus-pi oc) v c e)))) ((sus? v) (ext-s-check (cadr v) (apply-pi (caddr v) u c e))) ((get-sus v c e) => (lambda (oc) (ext-s-check v (apply-pi (sus-pi oc) u c e)))) ((and (tie? u) (tie? v)) (let ((au (tie-a u)) (av (tie-a v)) (tu (tie-t u)) (tv (tie-t v))) (if (eq? au av) (unify-s-check tu tv) (conj (hash au tv) (unify-s-check tu (apply-pi `((,au . ,av)) tv c e)))))) ((and (pair? u) (pair? v)) (conj (unify-s-check (car u) (car v)) (unify-s-check (cdr u) (cdr v)))) ((and (var? u) (not (nom? u))) (conj (sus u `()) (ext-s-check u (apply-pi `() v c e)))) ((and (var? v) (not (nom? v))) (conj (sus v `()) (ext-s-check v (apply-pi `() u c e)))) ((or (nom? u) (nom? v)) fail) ((equal? u v) succeed) (else fail))) (define (ext-s-check x u) (transformer #:package (a [s c e]) (cond [(occurs-check x u s c e) (add-association x u)] [else fail]))) (define (occurs-check x t s c e) (let rec ([t t]) (let ([t (walk (tie-t* t) s c e)]) (cond [(sus? t) (not (eq? x (sus-v t)))] [(get-sus t c e) => (lambda (sus-c) (not (eq? x (sus-v sus-c))))] [(pair? t) (and (rec (car t)) (rec (cdr t)))] [else #t])))) (define-constraint (hash b t) #:package (a [s c e]) #:reification-function (lambda (ans r) (let ((lhs b) (rhs t)) (let ((rhs (if (sus? rhs) (cadr rhs) rhs))) `(hash (,lhs ,rhs))))) (let rec ((t t)) (let ((t (walk t s c e))) (cond ((eq? b t) fail) ((sus? t) (let ((lhs (apply-pi (caddr t) b c e))) (add-constraint (hash lhs t)))) ((get-sus t c e) => (lambda (sus-c) (let ((lhs (apply-pi (sus-pi sus-c) b c e))) (add-constraint (hash lhs t))))) ((tie? t) (if (eq? b (tie-a t)) succeed (rec (tie-t t)))) ((pair? t) (conj (rec (car t)) (rec (cdr t)))) ((and (var? t) (not (nom? t))) (conj (sus t `()) (rec t))) (else succeed))))) (define (tie-t* t) (if (tie? t) (tie-t* (tie-t t)) t)) (define (walk x s c e) (let f ((x x) (pi '())) (cond ((sus? x) (cond ((assq (sus-v x) s) => (lambda (a) (f (cdr a) (compose-pis (sus-pi x) pi)))) (else (apply-pi pi x c e)))) ((get-sus x c e) => (lambda (sus-c) (cond ((assq x s) => (lambda (a) (f (cdr a) (compose-pis (sus-pi sus-c) pi)))) (else (apply-pi pi x c e))))) (else (apply-pi pi x c e))))) (define compose-pis append) (define (get-noms pi s) (define (with n s) (if (memq n s) s (cons n s))) (cond ((null? pi) s) (else (get-noms (cdr pi) (with (caar pi) (with (cdar pi) s)))))) (define (pi-ds pi1 pi2 c e) (for/fold ([s '()]) ([nom (get-noms pi1 (get-noms pi2 '()))]) (cond ((eq? (apply-pi pi1 nom c e) (apply-pi pi2 nom c e)) s) (else (cons nom s))))) (define (id-pi? pi c e) (null? (pi-ds pi '() c e))) (define (app pi a) (let ((pi (reverse pi))) (cond ((null? pi) a) ((eq? (caar pi) a) (app (cdr pi) (cdar pi))) ((eq? (cdar pi) a) (app (cdr pi) (caar pi))) (else (app (cdr pi) a))))) (define (apply-pi pi t c e) (let rec ((t t)) (cond ((nom? t) (app pi t)) ((sus? t) (let ((pi (compose-pis pi (caddr t)))) (if (id-pi? pi c e) t `(sus ,(cadr t) ,pi)))) ((get-sus t c e) => (lambda (sus-c) (let ((pi (compose-pis pi (sus-pi sus-c)))) (if (id-pi? pi c e) t `(sus ,t ,pi))))) ((var? t) (if (id-pi? pi c e) t `(sus ,t ,pi))) ((tie? t) (make-tie (app pi (tie-a t)) (rec (tie-t t)))) ((pair? t) (cons (rec (car t)) (rec (cdr t)))) (else t)))) #; (define (reify-alpha-constraints v r c) (let ((c (filter-memq/rator '(sus-c hash) c))) (let ((c (reify-alpha r c))) (if (null? c) c `((alpha . ,c)))))) #; (define (reify-alpha r c) (for/fold ([c^ '()]) ([oc c]) (cond ((reify-oc oc r) => (lambda (oc-sym) (if (member oc-sym c^) c^ (cons oc-sym c^)))) (else c^))))
true
78f6c131939a73a4082409cecc0dd44fa5f2fa59
fc6465100ab657aa1e31af6a4ab77a3284c28ff0
/results/mildly-unfair-24/poly-stlc-3-ordered-mildly-unfair.rktd
a212cdf53add497d6681180f0ea02310340b49f9
[]
no_license
maxsnew/Redex-Enum-Paper
f5ba64a34904beb6ed9be39ff9a5e1e5413c059b
d77ec860d138cb023628cc41f532dd4eb142f15b
refs/heads/master
2020-05-21T20:07:31.382540
2017-09-04T14:42:13
2017-09-04T14:42:13
17,602,325
0
0
null
null
null
null
UTF-8
Racket
false
false
4,146
rktd
poly-stlc-3-ordered-mildly-unfair.rktd
(gc-major 2015-06-16T21:59:46 (#:amount 23283080 #:time 381)) (start 2015-06-16T21:59:46 (#:model "poly-stlc-3" #:type ordered-mildly-unfair)) (heartbeat 2015-06-16T21:59:46 (#:model "poly-stlc-3" #:type ordered-mildly-unfair)) (gc-major 2015-06-16T21:59:46 (#:amount 371912 #:time 326)) (heartbeat 2015-06-16T21:59:56 (#:model "poly-stlc-3" #:type ordered-mildly-unfair)) (heartbeat 2015-06-16T22:00:06 (#:model "poly-stlc-3" #:type ordered-mildly-unfair)) (heartbeat 2015-06-16T22:00:16 (#:model "poly-stlc-3" #:type ordered-mildly-unfair)) (counterexample 2015-06-16T22:00:25 (#:model "poly-stlc-3" #:type ordered-mildly-unfair #:counterexample ((λ (a (int → int)) 0) 0) #:iterations 80671 #:time 38979)) (new-average 2015-06-16T22:00:25 (#:model "poly-stlc-3" #:type ordered-mildly-unfair #:average 38978.0 #:stderr +nan.0)) (heartbeat 2015-06-16T22:00:26 (#:model "poly-stlc-3" #:type ordered-mildly-unfair)) (heartbeat 2015-06-16T22:00:36 (#:model "poly-stlc-3" #:type ordered-mildly-unfair)) (heartbeat 2015-06-16T22:00:46 (#:model "poly-stlc-3" #:type ordered-mildly-unfair)) (heartbeat 2015-06-16T22:00:56 (#:model "poly-stlc-3" #:type ordered-mildly-unfair)) (counterexample 2015-06-16T22:01:04 (#:model "poly-stlc-3" #:type ordered-mildly-unfair #:counterexample ((λ (a (int → int)) 0) 0) #:iterations 80671 #:time 38943)) (new-average 2015-06-16T22:01:04 (#:model "poly-stlc-3" #:type ordered-mildly-unfair #:average 38960.5 #:stderr 17.5)) (heartbeat 2015-06-16T22:01:06 (#:model "poly-stlc-3" #:type ordered-mildly-unfair)) (heartbeat 2015-06-16T22:01:16 (#:model "poly-stlc-3" #:type ordered-mildly-unfair)) (heartbeat 2015-06-16T22:01:26 (#:model "poly-stlc-3" #:type ordered-mildly-unfair)) (heartbeat 2015-06-16T22:01:36 (#:model "poly-stlc-3" #:type ordered-mildly-unfair)) (counterexample 2015-06-16T22:01:43 (#:model "poly-stlc-3" #:type ordered-mildly-unfair #:counterexample ((λ (a (int → int)) 0) 0) #:iterations 80671 #:time 38621)) (new-average 2015-06-16T22:01:43 (#:model "poly-stlc-3" #:type ordered-mildly-unfair #:average 38847.333333333336 #:stderr 113.61680235677194)) (heartbeat 2015-06-16T22:01:46 (#:model "poly-stlc-3" #:type ordered-mildly-unfair)) (heartbeat 2015-06-16T22:01:56 (#:model "poly-stlc-3" #:type ordered-mildly-unfair)) (heartbeat 2015-06-16T22:02:06 (#:model "poly-stlc-3" #:type ordered-mildly-unfair)) (heartbeat 2015-06-16T22:02:16 (#:model "poly-stlc-3" #:type ordered-mildly-unfair)) (counterexample 2015-06-16T22:02:18 (#:model "poly-stlc-3" #:type ordered-mildly-unfair #:counterexample ((λ (a (int → int)) 0) 0) #:iterations 80671 #:time 35225)) (new-average 2015-06-16T22:02:18 (#:model "poly-stlc-3" #:type ordered-mildly-unfair #:average 37941.75 #:stderr 909.1400125943204)) (heartbeat 2015-06-16T22:02:26 (#:model "poly-stlc-3" #:type ordered-mildly-unfair)) (heartbeat 2015-06-16T22:02:36 (#:model "poly-stlc-3" #:type ordered-mildly-unfair)) (heartbeat 2015-06-16T22:02:46 (#:model "poly-stlc-3" #:type ordered-mildly-unfair)) (counterexample 2015-06-16T22:02:54 (#:model "poly-stlc-3" #:type ordered-mildly-unfair #:counterexample ((λ (a (int → int)) 0) 0) #:iterations 80671 #:time 36412)) (new-average 2015-06-16T22:02:54 (#:model "poly-stlc-3" #:type ordered-mildly-unfair #:average 37635.8 #:stderr 767.806446964338)) (heartbeat 2015-06-16T22:02:56 (#:model "poly-stlc-3" #:type ordered-mildly-unfair)) (heartbeat 2015-06-16T22:03:06 (#:model "poly-stlc-3" #:type ordered-mildly-unfair)) (heartbeat 2015-06-16T22:03:16 (#:model "poly-stlc-3" #:type ordered-mildly-unfair)) (heartbeat 2015-06-16T22:03:26 (#:model "poly-stlc-3" #:type ordered-mildly-unfair)) (counterexample 2015-06-16T22:03:31 (#:model "poly-stlc-3" #:type ordered-mildly-unfair #:counterexample ((λ (a (int → int)) 0) 0) #:iterations 80671 #:time 36947)) (new-average 2015-06-16T22:03:31 (#:model "poly-stlc-3" #:type ordered-mildly-unfair #:average 37521.0 #:stderr 637.3357566202192)) (finished 2015-06-16T22:03:31 (#:model "poly-stlc-3" #:type ordered-mildly-unfair #:time-ms 225130 #:attempts 484026 #:num-counterexamples 6 #:rate-terms/s 2149.984453426909 #:attempts/cexp 80671.0))
false
939b9be528d79abf0c50ff3470d5d7d6a26768f9
72dc4078057ea42c4e5d752ca4751cf320eb21b1
/gir/const.rkt
71087ebc01f03d29adaf9edc2d2633feaae29d15
[ "MIT" ]
permissive
pmatos/gir
c3dafe758eee071cfb4bace3990b9cab16f864d5
668b693a4e0148ae5305493a3c7440e35f155082
refs/heads/master
2022-09-05T02:47:58.650618
2019-08-06T04:57:25
2019-08-06T04:57:25
265,623,232
0
0
MIT
2020-05-20T16:25:53
2020-05-20T16:25:52
null
UTF-8
Racket
false
false
417
rkt
const.rkt
#lang racket/base (provide get-const) (require "loadlib.rkt" "base.rkt" "translator.rkt" ffi/unsafe) (define-gi* g-constant-info-get-type (_fun _pointer -> _info)) (define-gi* g-constant-info-get-value (_fun _pointer _pointer -> _int)) (define (get-const info) (define giarg-res (make-giarg)) (g-constant-info-get-value info giarg-res) (make-out (build-translator (g-constant-info-get-type info)) giarg-res))
false
cd9a7a8fba1d8bfeb4144322cca0482203b80078
fa659fbb3ae62b3d16c551a6499776c2ec75e017
/Functional programming basics/labs/05/scans.rkt
36b4f04d8f29a2e44610bdb47583be23aef89d45
[]
no_license
stepanplaunov/bmstu-ics9
fe5683371a7806154c735085b075ba94132afd05
d3b1294626512fa0faf347c14856c65d7fa663d6
refs/heads/master
2023-03-16T03:32:06.492608
2020-09-17T08:54:09
2020-09-17T08:54:09
null
0
0
null
null
null
null
UTF-8
Racket
false
false
3,372
rkt
scans.rkt
(define (check_number? char) (and (> (char->integer char) 47) (< (char->integer char) 58))) (define =? eq?) (define (sign? char) (or (=? char #\+) (=? char #\-))) (define (check-frac str) (define (parse str) (if (and (not (null? str)) (check_number? (car str))) (parse (cdr str)) (if (null? str) (= 1 1) (if (=? (car str) #\/ ) (parse (cdr str)) (= 1 2))))) (if (=? (memq #\/ (string->list str)) #f) (memq #\/ (string->list str)) (if (sign? (car (string->list str))) (parse (cdr (string->list str))) (parse (string->list str))))) (check-frac "+110/111") (check-frac "-4/3") (check-frac "5.0/10") (check-frac "FF/10") (define (scan-frac str) (cond ((check-frac str) (begin (display str) (newline))) (else #f))) (define (scana-frac str) (define (parse-value str value) (if (and (not (null? str)) (check_number? (car str))) (parse-value (cdr str) (append value (list (- (char->integer (car str)) 48)))) value)) (define (fold list value i) (if (not (null? list)) (fold (cdr list) (+ value (* (car list) (expt 10 i))) (+ i 1)) value)) (if (=? (memq #\/ (string->list str)) #f) (memq #\/ (string->list str)) (if (sign? (car (string->list str))) (if (=? (car (string->list str)) #\+) (/(fold (reverse (parse-value (cdr (string->list str)) '())) 0 0) (fold (reverse(parse-value (cdr (memq #\/ (string->list str))) '())) 0 0)) (-(/ (fold (parse-value (cdr (string->list str))) 0 0) (fold (parse-value (cdr (memq #\/ (string->list str)))) 0 0)))) (/ (fold (reverse(parse-value (string->list str) '())) 0 0) (fold (reverse (parse-value (cdr (memq #\/ (string->list str))) '())) 0 0))))) (define (easy-scan-frac str) (if (check-frac str) str (= 1 0))) ;(easy-scan-frac "110/111") (scan-frac "110/111") (scan-frac "+5/10") (define (space_symbol? char) (or (=? char #\space) (or (=? char #\tab) (=? char #\newline)))) (define (scan-many-fracs str) (define (parser list) (if (null? list) '() (if (check-frac (car list)) (cons (scan-frac (car list)) (parser (cdr list))) (= 1 0)))) (define (parse_values stack_number stack str) (cond ((and (null? str) (null? stack)) (parser stack_number)) ((null? str) (parser (append stack_number (list (list->string stack))))) ((and (space_symbol? (car str)) (not (null? stack))) (parse_values (append stack_number (list (list->string stack))) '() (cdr str))) ((space_symbol? (car str)) (parse_values stack_number stack (cdr str))) ((or (or (check_number? (car str)) (=? (car str) #\/)) (and (null? stack) (sign? (car str)))) (parse_values stack_number (append stack (list (car str))) (cdr str))) (else (= 1 2)))) (parse_values '()'() (string->list str))) (scan-many-fracs "\t1/2 1/3\n\n10/8") (scan-many-fracs "\t1/2 1/3\n\n2/-5") (scan-many-fracs "\t1/3 1/5\n\n10/24 1/2")
false
de7d79e38657998db90255e3a5899844f12fc05d
8935203857f7aec86e067c77d84b64aa06c2d99a
/lang/parameterized-type.rkt
16b47fe0dabc1cdf9662872785560b27181ec492
[]
no_license
julian-becker/rince
83004c0fc4003eca3080b8cba2dacc9ed2224cb6
9367f6613ae306d1761ef05764ee7418962f9869
refs/heads/master
2020-05-24T03:23:56.965471
2019-03-28T10:46:12
2019-03-28T10:46:12
null
0
0
null
null
null
null
UTF-8
Racket
false
false
1,381
rkt
parameterized-type.rkt
#lang turnstile/base (require (for-meta 2 racket/base) (for-syntax racket/struct)) (provide define-parameterized-type) (define-syntax define-parameterized-type (syntax-parser [(_ (τ:id p:id ...)) (with-syntax ([τ- (generate-temporary #'τ)] [τ-instance (generate-temporary #'τ)] [τ? (format-id #'τ "~a?" #'τ)] [~τ (format-id #'τ "~~~a" #'τ)] [(~p ...) (generate-temporaries #'(p ...))]) #'(begin (define (τ- . args) (error 'τ "invalid use of type")) (define-syntax (τ stx) (syntax-case stx () [(_ p ...) (mk-type (syntax/loc stx (#%plain-app τ- 'p ...)))])) (begin-for-syntax (define-syntax ~τ (pattern-expander (λ (stx) (syntax-case stx () [(_ ~p ...) #`(~describe #:opaque #,(string-append (symbol->string 'τ) " type expression") ((~literal #%plain-app) (~literal τ-) ((~literal quote) ~p) ...))]))))) (define-for-syntax (τ? stx) (syntax-parse stx [(~τ p ...) #t] [_ #f]))))]))
true
bc9e5307d25603fe767ca7894e0266bfd6af0023
21b9da9deaa81294e004f14672350dc180c3a4a4
/example/dir/q.scrbl
904fe625e213a621414a26e69742c6f1438dfd3a
[ "BSD-2-Clause" ]
permissive
leque/paradoc
be89d3b092f7982a4d855ab4810ef0e89b58df95
6c727e6af90c7ba4bdf9451d23f7d90f5e41d543
refs/heads/master
2020-05-09T09:48:42.616269
2014-10-09T06:15:18
2014-10-09T06:15:18
24,174,749
1
0
null
null
null
null
UTF-8
Racket
false
false
54
scrbl
q.scrbl
File pathes are resolved relative to including file.
false
dae5a532767196719820572dc90b507c9af7cff7
53543edaeff891dd1c2a1e53fc9a1727bb9c2328
/benchmarks/take5/untyped/stack.rkt
7a55da905def15a49ab5bb18b3e443d242302496
[ "MIT" ]
permissive
bennn/gtp-checkup
b836828c357eb5f9f2b0e39c34b44b46f2e97d22
18c69f980ea0e59eeea2edbba388d6fc7cc66a45
refs/heads/master
2023-05-28T16:26:42.676530
2023-05-25T03:06:49
2023-05-25T03:06:49
107,843,261
2
0
NOASSERTION
2019-04-25T17:12:26
2017-10-22T06:39:33
Racket
UTF-8
Racket
false
false
674
rkt
stack.rkt
#lang racket/base ;; a representation of the visible stacks (provide ;; Card -> Stack create-stack ;; Stack -> Card top ;; Card Stack -> Stack push ;; Stack -> N length ;; Stack -> N ;; sum up the bulls shown on the cards of the stack bulls) (require "../base/untyped.rkt" "card.rkt") (require (prefix-in list: (only-in racket/base length))) (require (only-in racket/list first)) ;; --------------------------------------------------------------------------------------------------- (define (create-stack c) (list c)) (define top first) (define (push c s) (cons c s)) (define length list:length) (define (bulls s) (foldr + 0 (map card-bulls s)))
false
1d8d86b15673e22e79a483221dd0ea5c40ee3804
d9276fbd73cdec7a5a4920e46af2914f8ec3feb1
/data/scheme/annotator.rkt
b129924540f04a9d323c134912969d3de0ad10db
[]
no_license
CameronBoudreau/programming-language-classifier
5c7ab7d709b270f75269aed1fa187e389151c4f7
8f64f02258cbab9e83ced445cef8c1ef7e5c0982
refs/heads/master
2022-10-20T23:36:47.918534
2016-05-02T01:08:13
2016-05-02T01:08:13
57,309,188
1
1
null
2022-10-15T03:50:41
2016-04-28T14:42:50
C
UTF-8
Racket
false
false
20,068
rkt
annotator.rkt
(module annotator scheme/base (require (prefix-in kernel: syntax/kerncase) gui-debugger/marks mzlib/etc (for-syntax scheme/base) (only-in mzscheme [apply plain-apply]) ) (provide annotate-stx annotate-for-single-stepping) (define (arglist-bindings arglist-stx) (syntax-case arglist-stx () [var (identifier? arglist-stx) (list arglist-stx)] [(var ...) (syntax->list arglist-stx)] [(var . others) (cons #'var (arglist-bindings #'others))])) ;; Retreives the binding of a variable from a normal-breakpoint-info. ;; Returns a list of pairs `(,variable-name-stx ,variable-value). Each ;; item in the list is a shadowed instance of a variable with the given ;; name, with the first item being the one in scope. #; (define (bindings top-mark marks sym) (let ([mark-list (cons top-mark (continuation-mark-set->list marks debug-key))]) (map (lambda (binding) (list (mark-binding-binding binding) (mark-binding-value binding))) (lookup-all-bindings (lambda (id) (eq? (syntax-e id) sym)) mark-list)))) ;; annotate-for-single-stepping uses annotate-stx to create an annotated ;; version of STX that pauses before and after each expression, in the style ;; of a single stepping debugger. ;; ;; BREAK?, BREAK-BEFORE, BREAK-AFTER are inserted into the resulting syntax ;; as 3D code. When the resulting syntax is evaluated, before each ;; expression is evaluated, BREAK? is called with the syntax position of ;; that expression. If BREAK? returns true, BREAK-BEFORE is called with two ;; arguments: the debug-info structure representing the first stack frame ;; and the current continuation marks representing the other stack frames ;; (use the key DEBUG-KEY). If BREAK-BEFORE returns some value, the ;; evaluation skips the expression entirely and just returns that value. ;; Otherwise, evaluation proceeds normally. After the expression is ;; evaluated, BREAK? is called with the position of the end of the expression. ;; If it returns true, BREAK-AFTER is called; otherwise, the expression returns ;; normally. If BREAK-AFTER returns some value, the ;; return value of the expression is replaced by that value. ;; ;; RECORD-BOUND-ID and RECORD-TOP-LEVEL-ID are simply passed to ANNOTATE-STX. (define annotate-for-single-stepping (opt-lambda (stx break? break-before break-after record-bound-id record-top-level-id [source #f]) (annotate-stx stx (lambda (debug-info annotated raw is-tail?) (let* ([start (syntax-position raw)] [end (+ start (syntax-span raw) -1)] [break? (break? (syntax-source raw))]) (if is-tail? #`(let-values ([(value-list) #f]) (if (#%plain-app #,break? #,start) (set! value-list (#%plain-app #,break-before #,debug-info (#%plain-app current-continuation-marks))) (#%plain-app void)) (if (#%plain-app not value-list) #,annotated (#%plain-app plain-apply values value-list))) #`(let-values ([(value-list) #f]) (if (#%plain-app #,break? #,start) (set! value-list (#%plain-app #,break-before #,debug-info (#%plain-app current-continuation-marks))) (#%plain-app void)) (if (#%plain-app not value-list) (#%plain-app call-with-values (#%plain-lambda () #,annotated) (case-lambda [(val) (if (#%plain-app #,break? #,end) (#%plain-app #,break-after #,debug-info (#%plain-app current-continuation-marks) val) val)] [vals (if (#%plain-app #,break? #,end) (#%plain-app plain-apply #,break-after #,debug-info (#%plain-app current-continuation-marks) vals) (#%plain-app plain-apply values vals))])) (if (#%plain-app #,break? #,end) (#%plain-app plain-apply #,break-after #,debug-info (#%plain-app current-continuation-marks) value-list) (#%plain-app plain-apply values value-list))))))) record-bound-id record-top-level-id source))) ; annotate-stx : (syntax? ; (mark? syntax? syntax? boolean? . -> . syntax?) ; (symbol? syntax? syntax? . -> . void?) ; . -> . ; syntax?) ;; annotate-stx consumes a syntax, transverses it, and gives the opportunity ;; to the break-wrap to annotate every expression. Once for each expression ;; in the source program, annotate-stx will call break-wrap with that ;; expression as an argument and insert the result in the original syntax. ;; Expressions that were duplicated during the macro expansion are ;; nevertheless only wrapped once. ;; ;; annotate-stx inserts annotations around each expression that introduces a ;; new scope: let, lambda, and function calls. These annotations reify the ;; call stack, and allows to list the current variable in scope, look up ;; their value, as well as change their value. The reified stack is accessed ;; via the CURRENT-CONTINUATION-MARKS using the key DEBUG-KEY ;; ;; BREAK-WRAP is called with four arguments: ;; debug-info : the top frame of the reified stack (which never changes ;; across execution) ;; annotate-stx : the syntax with its subbranches already ;; annotated. BREAK-WRAP should return a modified version of this syntax. ;; original-stx : the original syntax before annoatations ;; is-tail? : true when original syntax was in tail position ;; ;; The RECORD-BOUND-ID function is a callback that is invoked each time a ;; new variable is introduced, looked up, or set in STX (lexically). ;; RECORD-BOUND-ID takes three arguments: ;; use-case : either 'bind or 'ref or 'set, respectively ;; bound-stx : syntax where the symbol is introduced, looked up, set, respectively ;; binding-stx : syntax where the symbol was bound ;; ;; Naturally, when USE-CASE is 'bind, BOUND-STX and BINDING-STX are equal. ;; (define annotate-stx (opt-lambda (stx break-wrap record-bound-id record-top-level-id [source #f]) (define breakpoints (make-hasheq)) (define (previous-bindings bound-vars) (if (null? bound-vars) #'null #'(#%plain-app debugger-local-bindings))) (define (top-level-annotate stx) (kernel:kernel-syntax-case/phase stx (namespace-base-phase) [(module identifier name mb) (module-annotate stx)] [else-stx (general-top-level-expr-iterator stx #f)])) (define (module-annotate stx) (syntax-case stx () [(_ identifier name mb) (syntax-case (disarm #'mb) () [(plain-module-begin . module-level-exprs) (with-syntax ([(module . _) stx]) (quasisyntax/loc stx (module identifier name #,(rearm #'mb #`(plain-module-begin #,@(map (lambda (e) (module-level-expr-iterator e (list (syntax-e #'identifier) (syntax-source #'identifier)))) (syntax->list #'module-level-exprs)))))))])])) (define (module-level-expr-iterator stx module-name ) (kernel:kernel-syntax-case stx #f [(#%provide . provide-specs) stx] [(#%declare . declare-specs) stx] [else-stx (general-top-level-expr-iterator stx module-name )])) (define (general-top-level-expr-iterator stx module-name ) (kernel:kernel-syntax-case stx #f [(define-values (var ...) expr) (begin (for-each (lambda (v) (record-bound-id 'bind v v)) (syntax->list #'(var ...))) (quasisyntax/loc stx (begin (define-values (var ...) #,(annotate #`expr '() #t module-name)) #,(if (syntax-source stx) #`(begin (#%plain-app #,record-top-level-id '#,module-name #'var (case-lambda [() var] [(v) (set! var v)])) ...) #'(#%plain-app void)) (#%plain-app void))))] [(define-syntaxes (var ...) expr) stx] [(begin-for-syntax . exprs) ;; compile time, so treat it like define-syntaxes stx] [(begin . top-level-exprs) (quasisyntax/loc stx (begin #,@(map (lambda (expr) (module-level-expr-iterator expr module-name )) (syntax->list #'top-level-exprs))))] [(#%require . require-specs) stx] [(module . _) ;; a submodule: (module-annotate stx)] [(module* . _) ;; a submodule: (module-annotate stx)] [else (annotate stx '() #f module-name )])) (define (annotate expr bound-vars is-tail? module-name) (define annotate-break? (let ([pos (syntax-position expr)] [src (syntax-source expr)]) (and src pos (hash-ref breakpoints pos (lambda () #t)) (kernel:kernel-syntax-case expr #f [(if test then else) #t] [(begin . bodies) #t] [(begin0 . bodies) #t] [(let-values . clause) #t] [(letrec-values . clause) #t] [(set! var val) #t] [(with-continuation-mark key mark body) #t] [(#%plain-app . exprs) #t] [_ #f]) (begin (hash-set! breakpoints pos #f) (when (not is-tail?) (hash-set! breakpoints (+ pos (syntax-span expr) -1) #f)) #t)))) (define (let/rec-values-annotator letrec?) (kernel:kernel-syntax-case (disarm expr) #f [(label (((var ...) rhs) ...) . bodies) (let* ([new-bindings (apply append (map syntax->list (syntax->list #`((var ...) ...))))] [all-bindings (append new-bindings bound-vars)] [new-rhs (map (lambda (expr) (annotate expr (if letrec? all-bindings bound-vars) #f module-name )) (syntax->list #'(rhs ...)))] [last-body (car (reverse (syntax->list #'bodies)))] [all-but-last-body (reverse (cdr (reverse (syntax->list #'bodies))))] [bodies (append (map (lambda (expr) (annotate expr all-bindings #f module-name )) all-but-last-body) (list (annotate last-body all-bindings is-tail? module-name )))] [local-debug-info (assemble-debug-info new-bindings new-bindings 'normal #f)] [previous-bindings (previous-bindings bound-vars)]) (for-each (lambda (id) (record-bound-id 'bind id id)) new-bindings) (with-syntax ([(new-rhs/trans ...) new-rhs] [previous-bindings previous-bindings]) (if letrec? (quasisyntax/loc expr (let ([old-bindings previous-bindings]) (label (((debugger-local-bindings) (#%plain-lambda () (#%plain-app list* #,@local-debug-info old-bindings))) ((var ...) new-rhs/trans) ...) #,@bodies))) (quasisyntax/loc expr (label (((var ...) new-rhs/trans) ...) (let ([debugger-local-bindings (#%plain-lambda () (#%plain-app list* #,@local-debug-info previous-bindings))]) #,@bodies))))))])) (define (lambda-clause-annotator clause) (kernel:kernel-syntax-case clause #f [(arg-list . bodies) (let* ([new-bound-vars (arglist-bindings #'arg-list)] [all-bound-vars (append new-bound-vars bound-vars)] [new-bodies (let loop ([bodies (syntax->list #'bodies)]) (if (equal? '() (cdr bodies)) (list (annotate (car bodies) all-bound-vars #t module-name )) (cons (annotate (car bodies) all-bound-vars #f module-name ) (loop (cdr bodies)))))]) (for-each (lambda (id) (record-bound-id 'bind id id)) new-bound-vars) (quasisyntax/loc clause (arg-list (let ([debugger-local-bindings (#%plain-lambda () (#%plain-app list* #,@(assemble-debug-info new-bound-vars new-bound-vars 'normal #f) #,(previous-bindings bound-vars)))]) #,@new-bodies))))])) (define annotated (rearm expr (kernel:kernel-syntax-case (disarm expr) #f [var-stx (identifier? (syntax var-stx)) (let ([binder (and (syntax-original? expr) (member expr bound-vars free-identifier=?))]) (if binder (record-bound-id 'ref expr (car binder)) (record-bound-id 'top-level expr expr)) expr)] [(#%plain-lambda . clause) (quasisyntax/loc expr (#%plain-lambda #,@(lambda-clause-annotator #'clause)))] [(case-lambda . clauses) (quasisyntax/loc expr (case-lambda #,@(map lambda-clause-annotator (syntax->list #'clauses))))] [(if test then else) (quasisyntax/loc expr (if #,(annotate #'test bound-vars #f module-name ) #,(annotate #'then bound-vars is-tail? module-name ) #,(annotate #'else bound-vars is-tail? module-name )))] [(begin . bodies) (letrec ([traverse (lambda (lst) (if (and (pair? lst) (equal? '() (cdr lst))) `(,(annotate (car lst) bound-vars is-tail? module-name )) (cons (annotate (car lst) bound-vars #f module-name ) (traverse (cdr lst)))))]) (quasisyntax/loc expr (begin #,@(traverse (syntax->list #'bodies)))))] [(begin0 body) (quasisyntax/loc expr (begin0 #,(annotate #'body bound-vars #t module-name)))] [(begin0 . bodies) (quasisyntax/loc expr (begin0 #,@(map (lambda (expr) (annotate expr bound-vars #f module-name )) (syntax->list #'bodies))))] [(let-values . clause) (let/rec-values-annotator #f)] [(letrec-values . clause) (let/rec-values-annotator #t)] [(set! var val) (let ([binder (and (syntax-original? #'var) (member #'var bound-vars free-identifier=?))]) (when binder (record-bound-id 'set expr (car binder))) (quasisyntax/loc expr (set! var #,(annotate #`val bound-vars #f module-name ))))] [(quote _) expr] [(quote-syntax _) expr] [(quote-syntax _ #:local) expr] [(with-continuation-mark key mark body) (quasisyntax/loc expr (with-continuation-mark key #,(annotate #'mark bound-vars #f module-name ) #,(annotate #'body bound-vars is-tail? module-name )))] [(#%plain-app . exprs) (let ([subexprs (map (lambda (expr) (annotate expr bound-vars #f module-name )) (syntax->list #'exprs))]) (if (or is-tail? (not (syntax-source expr))) (quasisyntax/loc expr (#%plain-app . #,subexprs)) (wcm-wrap (make-debug-info module-name expr bound-vars bound-vars 'normal #f (previous-bindings bound-vars)) (quasisyntax/loc expr (#%plain-app . #,subexprs)))))] [(#%top . var) expr] [(#%variable-reference . _) expr] [else (error 'expr-syntax-object-iterator "unknown expr: ~a" (syntax->datum expr))]))) (if annotate-break? (break-wrap (make-debug-info module-name expr bound-vars bound-vars 'at-break #f (previous-bindings bound-vars)) annotated expr is-tail?) annotated)) (values (top-level-annotate stx) (hash-map breakpoints (lambda (k v) k))))) (define (disarm stx) (syntax-disarm stx code-insp)) (define (rearm old new) (syntax-rearm new old)) (define code-insp (variable-reference->module-declaration-inspector (#%variable-reference))))
true
f7538fe25675b4fbd27a0db863eb09453f180383
47962cdf51f076ca3ddee9111d0de2456c6db505
/private/ffi/functions.rkt
81003d9c703a0cd1959461effc0cca25d2d05322
[]
no_license
MislankaNova/racket-llvm
77a1b8651fcfd31c4be82d9d9b5f64bddb0029f7
3eb557b0fe4bddfdfce8e8f4659d218535daa061
refs/heads/master
2020-03-31T23:39:12.664847
2015-06-06T21:32:24
2015-06-06T21:32:24
null
0
0
null
null
null
null
UTF-8
Racket
false
false
2,926
rkt
functions.rkt
#lang racket (require "enums.rkt" "define.rkt" "ctypes.rkt") (require ffi/unsafe) (provide (all-defined-out)) ;/* Operations on functions */ (define-llvm-unsafe LLVMAddFunction (_fun LLVMModuleRef _string LLVMTypeRef -> LLVMValueRef)) (define-llvm-safe LLVMAddFunction (_fun (mod : safe:LLVMModuleRef) _non-null-string safe:LLVMTypeRef -> (ptr : _pointer) -> (safe:llvm-value-ref ptr mod))) (define-llvm-unsafe LLVMGetNamedFunction (_fun LLVMModuleRef _string -> LLVMValueRef)) (define-llvm-safe LLVMGetNamedFunction (_fun (mod : safe:LLVMModuleRef) _non-null-string -> (ptr : _pointer) -> (and ptr (safe:llvm-value-ref ptr mod)))) (define-llvm-multiple-unsafe (LLVMGetFirstFunction LLVMGetLastFunction) (_fun LLVMModuleRef -> LLVMValueRef)) (define-llvm-multiple-unsafe (LLVMGetNextFunction LLVMGetPreviousFunction) (_fun LLVMValueRef -> LLVMValueRef)) (define-llvm-unsafe LLVMDeleteFunction (_fun LLVMValueRef -> _void)) (define-llvm-unsafe LLVMGetIntrinsicID (_fun LLVMValueRef -> _uint)) (define-llvm-unsafe LLVMGetFunctionCallConv (_fun LLVMValueRef -> LLVMCallConv)) (define-llvm-unsafe LLVMSetFunctionCallConv (_fun LLVMValueRef LLVMCallConv -> _void)) (define-llvm-safe LLVMSetFunctionCallConv (_fun safe:LLVMValueRef LLVMCallConv -> _void)) (define-llvm-unsafe LLVMGetGC (_fun LLVMValueRef -> _string)) (define-llvm-unsafe LLVMSetGC (_fun LLVMValueRef _string -> _void)) (define-llvm-multiple-unsafe (LLVMAddFunctionAttr LLVMRemoveFunctionAttr) (_fun LLVMValueRef LLVMAttribute -> _void)) (define-llvm-multiple-safe (LLVMAddFunctionAttr LLVMRemoveFunctionAttr) (_fun safe:LLVMValueRef LLVMAttribute -> _void)) (define-llvm-unsafe LLVMGetFunctionAttr (_fun LLVMValueRef -> LLVMAttribute)) ;/* Operations on parameters */ (define-llvm-unsafe LLVMCountParams (_fun LLVMValueRef -> _uint)) (define-llvm-unsafe LLVMGetParams (_fun (fun) :: (fun : LLVMValueRef) (params : (_list o LLVMValueRef (unsafe:LLVMCountParams fun))) -> _void -> params)) (define-llvm-unsafe LLVMGetParam (_fun LLVMValueRef _uint -> LLVMValueRef)) (define-llvm-safe LLVMGetParam (_fun (f : safe:LLVMValueRef) _uint -> (ptr : _pointer) -> (safe:llvm-value-ref ptr (safe:llvm-value-ref-owner f)))) (define-llvm-unsafe LLVMGetParamParent (_fun LLVMValueRef -> LLVMValueRef)) (define-llvm-multiple-unsafe (LLVMGetFirstParam LLVMGetLastParam) (_fun LLVMValueRef -> LLVMValueRef)) (define-llvm-multiple-unsafe (LLVMGetNextParam LLVMGetPreviousParam) (_fun LLVMValueRef -> LLVMValueRef)) (define-llvm-multiple-unsafe (LLVMAddAttribute LLVMRemoveAttribute) (_fun LLVMValueRef LLVMAttribute -> _void)) (define-llvm-unsafe LLVMGetAttribute (_fun LLVMValueRef -> LLVMAttribute)) (define-llvm-unsafe LLVMSetParamAlignment (_fun LLVMValueRef _uint -> _void))
false
0d8e1893757f00f22f7e5a7ae9e49fd4e244f972
82c76c05fc8ca096f2744a7423d411561b25d9bd
/typed-racket-test/succeed/make-predicate-top-level.rkt
ff21ea8d97b251494626be409a82fb06868f7332
[ "MIT", "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
racket/typed-racket
2cde60da289399d74e945b8f86fbda662520e1ef
f3e42b3aba6ef84b01fc25d0a9ef48cd9d16a554
refs/heads/master
2023-09-01T23:26:03.765739
2023-08-09T01:22:36
2023-08-09T01:22:36
27,412,259
571
131
NOASSERTION
2023-08-09T01:22:41
2014-12-02T03:00:29
Racket
UTF-8
Racket
false
false
170
rkt
make-predicate-top-level.rkt
#lang racket/load (require typed/racket) (: f (Any -> Boolean : Number)) (define f (make-predicate Number)) (: g (Listof Number)) (define g (filter f '(1 2 3 4 "5")))
false
61388bee0041a311664da0e8df57c98b9f2d9044
f5d33bc379af1acf4f9ba00de94a7423145cdd77
/v0/ast.rkt
f89e446a708efb5856867e80da99e389190a2617
[]
no_license
rntz/datafun
3fcd04945223ad0050fd1c9540c094f01cf5c380
4effe54102134ecc9100293f017733f7dc283418
refs/heads/master
2022-07-12T05:09:53.881323
2022-06-21T12:56:58
2022-06-21T12:56:58
46,583,808
376
20
null
2022-06-14T13:35:25
2015-11-20T20:00:30
TeX
UTF-8
Racket
false
false
5,658
rkt
ast.rkt
#lang racket (require (except-in syntax/parse expr) (for-syntax syntax/parse)) (require "util.rkt") (provide (all-defined-out)) ;; Whether a variable/hypothesis, function, etc. is unrestricted, monotone, or ;; antitone. (define tone? (or/c 'disc 'mono 'anti)) (define base-type? (or/c 'bool 'nat 'str)) (enum type (t-name name) ;; types defined by a type decl (t-base name) (t-tuple types) ;; fields is a hash from field names to types (t-record fields) ;; branches is a hash from branch names to *lists* of types (t-sum [branches (hash/c symbol? (listof type?) #:immutable #t)]) (t-fun tone arg result) (t-set type) ;; key must be eqtype? (t-map key value) ;; TODO: flat lattice on a type. (Flat A) = bot <| ... A ... <| top ;; (t-flat type) ) ;; Literals & primitives (define (lit? x) (if (lit-type x) #t #f)) (define/match (lit-type l) [((? boolean?)) (t-base 'bool)] [((? exact-nonnegative-integer?)) (t-base 'nat)] [((? string?)) (t-base 'str)] [((? null?)) (t-tuple '())] [(_) #f]) (define prim? (or/c '= '<= '+ '- '* 'size 'print 'puts '++ 'strlen 'substr 'keys 'get 'lookup 'entries 'cross 'compose 'aggregate)) (enum expr ;; ---------- miscellanea ---------- (e-ann type expr) (e-var name) ;; let binding. in theory, this is just unary case. but case doesn't account ;; for tone yet. (e-let tone var expr body) ;; type definitions (e-let-type name type body) ;; this moves all our mono/antitone variables into the unrestricted context. (e-trustme expr) ;; ---------- base types & primitive operations ---------- (e-lit value) ;; literals (e-prim prim) ;; primitive functions ;; e-cond is the mono/antitone eliminator for booleans. tone is 'mono or ;; 'anti. if 'mono, acts as (when arg body). if 'anti, acts as (unless arg ;; body). (e-cond tone arg body) ;; monotone eliminator for booleans ;; ---------- sets ---------- (e-set exprs) (e-set-bind pat arg body) ;; \bigvee(pat <- arg) body ;; ---------- maps ---------- (e-map [key-value-exprs (listof (list/c expr? expr?))]) ;; (e-map-for x keys e) means {k: [k/x]e | k <- keys} (e-map-for var key-set body) ;; NB: e-map-get is just a special case of e-map-bind! ;; although admittedly, one with a fast impl strategy :P (e-map-get map key) ;; means (lub of `body' for key-pat,value-var in `arg'). ;; key-pat is unrestricted; value-var is bound monotonically. (e-map-bind key-pat value-var arg body) ;; other map operations: some builtin functions, and e-lub if the value type ;; is a lattice. ;; ---------- usl operations ---------- (e-lub exprs) (e-fix var body) ;; ---------- functions ---------- ;; bidirectional type inference / elaboration figures out which kind (ordinary ;; or monotonic) of lambda / application we meant (e-lam var body) (e-app func arg) ;; ---------- products (tuples & records) ---------- (e-tuple exprs) ;; projection index is a nat when projecting from a tuple; a symbol when ;; projecting from a record. (e-proj index expr) ;; fields is a hash from field names (as symbols) to exprs (e-record fields) (e-record-merge left right) ;; merges two records, right-biased. ;; ---------- sums ---------- (e-tag tag exprs) ;; branches is a list of case-branch structs. (e-case subject branches)) (struct case-branch (pat body) #:transparent) ;; TODO: pats for records. ;; TODO?: pats for sets? (enum pat (p-wild) (p-var name) (p-tuple pats) (p-tag tag [pats (listof pat?)]) (p-lit lit) (p-and pats) (p-or pats) (p-eq expr)) ;; Syntax sugar for types (define-match-expander T (syntax-parser #:datum-literals (bool nat str set map + * fun -> ~> ->-) [(_ (~and base (~or bool nat str))) #'(t-base 'base)] [(_ x:id) #'x] [(_ (set t)) #'(t-set (T t))] [(_ (map k v)) #'(t-map (T k) (T v))] [(_ (* t ...)) #'(t-tuple (list (T t) ...))] [(_ (+ (n t ...) ...)) #'(t-sum (hash-table ['n (list (T t) ...)] ...))] [(_ (+ (n t ...) ... (~literal ...))) #'(t-sum (hash-table ['n (list (T t) ...)] ... [_ _] (... ...)))] [(_ (fun o a)) #'(T a)] [(_ (fun o a r ...)) #'(t-fun o (T a) (T (fun o r ...)))] [(_ (-> a ...)) #'(T (fun 'disc a ...))] [(_ (~> a ...)) #'(T (fun 'mono a ...))] [(_ (->- a ...)) #'(T (fun 'anti a ...))]) (syntax-parser #:datum-literals (bool nat str set map + * fun -> ~> ->-) [(_ (~and base (~or bool nat str))) #'(t-base 'base)] [(_ x:id) #'x] [(_ (set t)) #'(t-set (T t))] [(_ (map k v)) #'(t-map (T k) (T v))] [(_ (* t ...)) #'(t-tuple (list (T t) ...))] [(_ (+ (n t ...) ...)) #'(t-sum (make-immutable-hash `((n ,(T t) ...) ...)))] [(_ (fun o a)) #'(T a)] [(_ (fun o a r ...)) #'(t-fun o (T a) (T (fun o r ...)))] [(_ (-> a ...)) #'(T (fun 'disc a ...))] [(_ (~> a ...)) #'(T (fun 'mono a ...))] [(_ (->- a ...)) #'(T (fun 'anti a ...))])) ;;; Expression & pattern stuff ;; ;; commented out b/c unused. ;; (define (pat-vars p) ;; (match p ;; [(p-var n) (set n)] ;; [(or (p-wild) (p-lit _) (p-eq _)) (set)] ;; [(or (p-tag _ p)) (pat-vars p)] ;; [(or (p-tuple ps) (p-and ps)) (sets-union (map pat-vars ps))] ;; [(p-or ps) (sets-intersect (map pat-vars ps))])) ;; ;; commented out b/c unused. ;; (define/match (pat-irrefutable? pat type) ;; [((or (p-wild) (p-var _)) _) #t] ;; [((p-tuple ps) (t-tuple ts)) ;; (andmap pat-irrefutable? ps ts)] ;; [((p-tag tag1 p) (t-sum (hash-table tag2 t))) #:when (equal? tag1 tag2) ;; (pat-irrefutable? p t)] ;; [(_ _) #f])
false
d93fc858811de758f66ac000c277a1d9f1ad9862
f2e65ac33a71e4e1315107f3bdc9eb2389c84871
/gb/gui/fullscreen.rkt
d79b0a5418072aa07086a6d0747423770264104b
[]
no_license
daviesaz/get-bonus
ac217ade9879dbcd9aca1adc5fcfa7f102864dbe
ea77c5b2914316343eabd86265aee0433d0e7b03
refs/heads/master
2020-05-20T19:27:59.194962
2014-09-25T01:51:29
2014-09-25T01:51:29
null
0
0
null
null
null
null
UTF-8
Racket
false
false
2,059
rkt
fullscreen.rkt
#lang racket/base (require racket/class racket/contract racket/gui/base) (define (make-fullscreen-canvas ON-PAINT ON-CHAR) (define-values (w h) (get-display-size #t)) (define-values (x y) (get-display-left-top-inset #t)) (parameterize ([current-eventspace (make-eventspace)]) (define frame (new frame% [label ""] [x 0] [y (* -1 y)] [width w] [height h] [style '(hide-menu-bar no-resize-border no-caption no-system-menu)])) (define this-canvas% (class canvas% (define/override (on-paint) (define dc (send this get-dc)) (define glctx (send dc get-gl-context)) (unless glctx (error 'on-paint "Could not initialize OpenGL!") ;; XXX should bring down the whole thing (exit 1)) (send glctx call-as-current (λ () (ON-PAINT (send this get-width) (send this get-height) (λ () (send glctx swap-buffers)))))) (define/override (on-char k) (ON-CHAR k)) (super-new))) (define config (new gl-config%)) (send config set-legacy? #f) (send config set-double-buffered #t) (define canvas (new this-canvas% [parent frame] [min-width w] [min-height h] [gl-config config] [style '(gl no-autoclear)])) (send frame show #t) (send canvas focus) (define done-sema (make-semaphore)) (thread (λ () (yield done-sema) (send frame on-exit))) (values (λ (s) (send frame set-label s)) (λ () (send canvas refresh-now)) done-sema))) (provide/contract [make-fullscreen-canvas (-> (-> number? number? (-> void) void) (-> (is-a?/c key-event%) void) (values (-> string? void) (-> void) semaphore?))])
false
c4931730f50c4130264f325487e6d84b9cee66c9
ab8d4fc67547fe2b8c6d0bad77b536e2671bc86b
/LAB3/q3.rkt
f6c6d7ebaa0a5992e3fd19081aa0c3ce4a5e2b6b
[]
no_license
rs4231199/CS302
ba6da51536f0aae7bb63e42e0c6165cd24ee4540
236ae31bf608ca53e8bd5f818bbc12deb33f0e7a
refs/heads/main
2023-07-12T08:48:34.174046
2021-08-20T16:18:03
2021-08-20T16:18:03
350,587,843
1
0
null
null
null
null
UTF-8
Racket
false
false
454
rkt
q3.rkt
#lang racket (define make-monitored (lambda (f) (define count 0) (lambda (in) (cond [(equal? 'how-many-calls? in) count] [(equal? 'reset-count in) (set! count 0)] [else (begin (set! count (+ 1 count)) (f in))])))) (define square (lambda (x) (* x x))) (define s (make-monitored square)) (s 100) (s 100) (s 'how-many-calls?) (s 'reset-count) (s 'how-many-calls?)
false
7aa0b1696aaeefa0a62ca74c084671eb21f032d1
82c76c05fc8ca096f2744a7423d411561b25d9bd
/typed-racket-test/fail/single-letrec.rkt
f7cec77309211789bb5583798693710899e3629f
[ "MIT", "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
racket/typed-racket
2cde60da289399d74e945b8f86fbda662520e1ef
f3e42b3aba6ef84b01fc25d0a9ef48cd9d16a554
refs/heads/master
2023-09-01T23:26:03.765739
2023-08-09T01:22:36
2023-08-09T01:22:36
27,412,259
571
131
NOASSERTION
2023-08-09T01:22:41
2014-12-02T03:00:29
Racket
UTF-8
Racket
false
false
77
rkt
single-letrec.rkt
#lang typed/racket (: f (Pair 'bad 'worse)) (define f (letrec ((y y)) y))
false
f643b406fd68e52716839894eda65964ab8a7b2f
a07192442574d7ac9399319edf332a8b7e663b7f
/main.rkt
d5b2e48dcfdb96016192dbb2b9c6985e3adf0d91
[ "ISC" ]
permissive
wolverian/clj-threading
33eab460e8c3c64d2e76a5d7a7489e0a000fa19b
6263bafa6c60c3ae144758e67c80ca92550b78e9
refs/heads/master
2020-06-04T03:50:50.617792
2014-10-03T14:13:24
2014-10-03T14:13:24
null
0
0
null
null
null
null
UTF-8
Racket
false
false
375
rkt
main.rkt
#lang racket/base (provide -> ->>) (define-syntax ->> (syntax-rules () [(_ x) x] [(_ x (ss ...)) (ss ... x)] [(_ x y) (y x)] [(_ x y z ...) (->> (->> x y) z ...)])) (define-syntax -> (syntax-rules () [(_ x) x] [(_ x (s ss ...)) (s x ss ...)] [(_ x y) (y x)] [(_ x y z ...) (-> (-> x y) z ...)]))
true
7328b4c2a7bc7424b713a56a18a3f3ff1864c5c3
b0c07ea2a04ceaa1e988d4a0a61323cda5c43e31
/www/assignments/2.scrbl
d224133f80858809fb025c891bc2e41ce5851ff7
[ "AFL-3.0" ]
permissive
cmsc430/www
effa48f2e69fb1fd78910227778a1eb0078e0161
82864f846a7f8f6645821e237de42fac94dff157
refs/heads/main
2023-09-03T17:40:58.733672
2023-08-28T15:26:33
2023-08-28T15:26:33
183,064,322
39
30
null
2023-08-28T15:49:59
2019-04-23T17:30:12
Racket
UTF-8
Racket
false
false
2,172
scrbl
2.scrbl
#lang scribble/manual @title[#:tag "Assignment 2" #:style 'unnumbered]{Assignment 2: Racket Primer} @bold{Due: Monday, June 5, 11:59PM} The goal of this assignment is to gain practice programming in Racket. @bold{This is a collaborative assignment.} You may work with anyone you'd like on this assignment, but each person must submit their @tt{main.rkt} file on Gradescope. You are given a @tt{main.rkt} file (on ELMS under "Files"), that contains a number of sections. In each section there are several function ``stubs,'' i.e. incomplete function definitions with type signatures, descriptions, and a small set of tests. Each function has a bogus (but type correct) body marked with a ``TODO'' comment. Your job is to replace each of these expressions with a correct implementation of the function. The last section of problems deals with functions that operate over a representation of expressions in a lambda-calculus-like language and asks you to compute a few simple facts about the given expression. Make sure you do not rename the file. Also make sure not to change the name or signature of any function given to you. You may add any additional functions that help you solve the overall problem you're tackling. @section[#:tag-prefix "a2-" #:style 'unnumbered]{Testing} You can test your code in several ways: @itemlist[ @item{Running the code in DrRacket will (by default) run the test submodule and print out a report of any test failures. This is actually a configurable preference, but it is on by default.} @item{Using the command line @tt{raco test main.rkt} from the same directory as @tt{main.rkt}.}] Note that running @tt{racket main.rkt} from the command line will @bold{not} run the tests. @section[#:tag-prefix "a2-" #:style 'unnumbered]{Submitting} Submit your filled-in @tt{main.rkt} file on Gradescope. @section[#:tag-prefix "a2-" #:style 'unnumbered]{Grading} Your submission will be graded for correctness. Passing the unit tests included in the file is necessary but @bold{not sufficient} to receive a perfect score. You are strongly encouraged to add your own tests to ensure the correctness of your solutions.
false
6c1cea8ad8bbe73a554f897a77d81fa02a35dd93
04c0a45a7f234068a8386faf9b1319fa494c3e9d
/define-language-with-metapredicates.rkt
1ea240fdf7904fe794fce42997ef5dc3b1c456b5
[]
no_license
joskoot/lc-with-redex
763a1203ce9cbe0ad86ca8ce4b785a030b3ef660
9a7d2dcb229fb64c0612cad222829fa13d767d5f
refs/heads/master
2021-01-11T20:19:20.986177
2018-06-30T18:02:48
2018-06-30T18:02:48
44,252,575
0
0
null
null
null
null
UTF-8
Racket
false
false
1,325
rkt
define-language-with-metapredicates.rkt
#lang racket ; File define-language-with-metapredicate.rkt (require redex) (provide define-language-with-metapredicates) #| define-language-with-metapredicates is like define-language of redex, but allows each clause to be adorned with a predicate by means of keyword #:pred. |# (define-syntax (define-language-with-metapredicates stx) (syntax-case stx () ((define-language-with-metapredicates language clause ...) (letrec ((extract-language-clauses (λ (clauses) (map extract-language-clause (syntax->list clauses)))) (extract-language-clause (λ (clause) (syntax-case clause () ((id pattern ... #:pred pred) #'(id pattern ...)) ((id pattern ...) #'(id pattern ...))))) (extract-predicates (λ (clauses) (filter (λ (x) x) (map extract-predicate (syntax->list clauses))))) (extract-predicate (λ (clause) (syntax-case clause () ((id pattern ... #:pred pred) #'(pred id)) ((id pattern ...) #f))))) (with-syntax (((clause ...) (extract-language-clauses #'(clause ...))) (((predicate id) ...) (extract-predicates #'(clause ...)))) #'(begin (define-language language clause ...) (define-metafunction language predicate : any -> any ((predicate id) #t) ((predicate any) #f)) ...))))))
true
47e7e0329bb598b35a08deb45b5711bf697262c3
435734fea3031191e9e00d5d54d8b14d7b01ee48
/racket/problem_set2_1.rkt
feef57242eaab8aa200ffcc79a504de8079549f1
[]
no_license
sumansourabh26/everyday_codes
1f4bc4b05fdb51512b68c37371933535d90edf10
2a8c097adbb64d103dc823bdb9987e99dfd9943b
refs/heads/master
2020-05-04T15:22:13.872019
2014-11-05T16:11:08
2014-11-05T16:11:08
17,599,784
1
0
null
null
null
null
UTF-8
Racket
false
false
1,465
rkt
problem_set2_1.rkt
#lang racket ;...........................1.1 (define(f0 start end) (if(> start end)0 (+ (if(=(remainder start 13)0) start 0) (f0 (+ start 1) end)))) ;method 2 (define(f0- start end) (let((q1 (quotient end 13)) (q2 (quotient start 13))) (* 13(-(f0-h q1)(f0-h q2))))) (define(f0-h n) (/ (* n (+ n 1))2)) ;............................1.2 (define(f1 a b) (if(> a b) 0 (+(if(even? a) 0 (* a a)) (f1 (+ a 1) b)))) ;...........................1.3 (define(f2 a b) (if(> a b) 1 (*(if(=(remainder a 3)0)(fact a) 1) (f2 (+ a 1) b)))) (define (fact n) (fact-h n 1)) (define(fact-h n pro) (if(= n 1) pro (fact-h (- n 1)(* n pro)))) ;...........................1.4 (define(f3 a b) (if(> a b) 0 (+(if(prime? a 2) (* a a) 0) (f3 (+ a 2) b)))) (define(prime? n r) (cond[(> r (sqrt n)) #t] [(=(remainder n r)0) #f] [else (prime? n (+ r 1))])) ;...........................1.5 (define(filter-accumulate bool-cond op ll ul id) (if(> ll ul) id (if(bool-cond ll)(op ll (filter-accumulate bool-cond op (+ ll 1) ul id)) (filter-accumulate bool-cond op (+ ll 1) ul id)))) (define(f1- ll ul) (filter-accumulate(λ(x)(not(even? x))) (λ(x y)(+(sqr x) y)) ll ul 0)) (define(f2- l1 l2) (filter-accumulate(λ(x)(=(remainder x 3)0)) (λ(x y)(*(fact x) y)) l1 l2 1))
false
a0bb3db28a1953cba4af15582344bdab3bf69622
2a59d8c57f2b4ad9a64d1c69e84516e1e5d07f42
/satore/Clause.rkt
d74aebd2a3434fefd59861790e67dfc62c4626c6
[ "Apache-2.0", "MIT" ]
permissive
sethuramanio/deepmind-research
c1feb49e52fd16535c6ec0e2342c8d3ebff57ab1
a6ef8053380d6aa19aaae14b93f013ae9762d057
refs/heads/master
2023-08-28T05:51:15.062153
2021-10-16T10:29:09
2021-10-16T10:29:09
408,818,983
1
0
Apache-2.0
2021-09-21T12:52:44
2021-09-21T12:52:43
null
UTF-8
Racket
false
false
11,989
rkt
Clause.rkt
#lang racket/base ;**************************************************************************************; ;**** Clause: Clauses With Additional Properties In A Struct ****; ;**************************************************************************************; (require define2 define2/define-wrapper racket/format racket/list racket/string satore/clause satore/clause-format satore/misc satore/unification text-table) (provide (all-defined-out)) ;==============; ;=== Clause ===; ;==============; ;; TODO: A lot of space is wasted in Clause (boolean flags?) ;; TODO: What's the best way to gain space without losing time or readability? ;; idx : exact-nonnegative-integer? ; unique id of the Clause. ;; parents : (listof Clause?) ; The first parent is the 'mother'. ;; clause : clause? ; the list of literals. ;; type : symbol? ; How the Clause was generated (loaded from file, input clause, rewrite, resolution, ;; factor, etc.) ;; binary-rewrite-rule? : boolean? ; Initially #false, set to #true if the clause has been added ;; (at some point) to the binary rewrite rules (but may not be in the set anymore if subsumed). ;; candidate? : boolean? ; Whether the clause is currently a candidate (see `saturation` in ;; saturation.rkt). ;; discarded? : boolean? ; whether the Clause has been discarded (see `saturation` in saturation.rkt). ;; n-literals : exact-nonnegative-integer? ; number of literals in the clause. ;; size : number? ; tree-size of the clause. ;; depth : exact-nonnegative-integer? : Number of parents up to the input clauses, when following ;; resolutions and factorings. ;; cost : number? ; Used to sort Clauses in `saturation` (in saturation.rkt). (struct Clause (idx parents clause type [binary-rewrite-rule? #:mutable] [candidate? #:mutable] [discarded? #:mutable] n-literals size depth [cost #:mutable]) #:prefab) ;; Unique clause index. No two Clauses should have the same index. (define-counter clause-index 0) ;; Clause constructor. See the struct Clause for more information. ;; ;; parents : (listof Clause?) ;; candidate? : boolean? ;; n-literals : exact-nonnegative-integer? ;; size : number? ;; depth : exact-nonnegative-integer? (define (make-Clause cl [parents '()] #:? [type '?] #:? [candidate? #false] #:? [n-literals (length cl)] #:? [size (clause-size cl)] #:? [depth (if (empty? parents) 1 (+ 1 (Clause-depth (first parents))))]) (++clause-index) (when-debug>= steps (define cl2 (clause-normalize cl)) ; costly, hence done only in debug mode (unless (= (tree-size cl) (tree-size cl2)) (displayln "Assertion failed: clause is in normal form") (printf "Clause (type: ~a):\n~a\n" type (clause->string cl)) (displayln "Parents:") (print-Clauses parents) (error (format "Assertion failed: (= (tree-size cl) (tree-size cl2)): ~a ~a" (tree-size cl) (tree-size cl2))))) ; Notice: Variables are ASSUMED freshed. Freshing is not performed here. (Clause clause-index parents cl type #false ; binary-rewrite-rule candidate? #false ; discarded? n-literals size depth ; depth (C0 is of depth 0, axioms are of depth 1) 0. ; cost )) ;; Sets the Clause as discarded. Used in `saturation`. ;; ;; Clause? -> void? (define (discard-Clause! C) (set-Clause-discarded?! C #true)) ;; A tautological clause used for as parent of the converse of a unit Clause. (define true-Clause (make-Clause (list ltrue))) ;; Returns a converse Clause of a unit or binary Clause. ;; These are meant to be temporary. ;; ;; C : Clause? ;; candidate? : boolean? ;; -> Clause? (define (make-converse-Clause C #:? [candidate? #false]) (if (unit-Clause? C) true-Clause ; If C has 1 literal A, then C = A | false, and converse is ~A | true = true (make-Clause (fresh (clause-converse (Clause-clause C))) (list C) #:type 'converse #:candidate? candidate?))) ;; List of possible fields for output formatting. (define Clause->string-all-fields '(idx parents clause type binary-rw? depth size cost)) ;; Returns a tree representation of the Clause, for human reading. ;; If what is a list, each element is printed (possibly multiple times). ;; If what is 'all, all fields are printed. ;; ;; Clause? (or/c 'all (listof symbol?)) -> list? (define (Clause->list C [what '(idx parents clause)]) (when (eq? what 'all) (set! what Clause->string-all-fields)) (for/list ([w (in-list what)]) (case w [(idx) (~a (Clause-idx C))] [(parents) (~a (map Clause-idx (Clause-parents C)))] [(clause) (clause->string (Clause-clause C))] [(clause-pretty) (clause->string/pretty (Clause-clause C))] [(type) (~a (Clause-type C))] [(binary-rw?) (~a (Clause-binary-rewrite-rule? C))] [(depth) (~r (Clause-depth C))] [(size) (~r (Clause-size C))] [(cost) (~r2 (Clause-cost C))]))) ;; Returns a string representation of a Clause. ;; ;; Clause? (or/c 'all (listof symbol?)) -> string? (define (Clause->string C [what '(idx parents clause)]) (string-join (Clause->list C what) " ")) ;; Returns a string representation of a Clause, for displaying a single Clause. ;; ;; Clause? (listof symbol?) -> string? (define (Clause->string/alone C [what '(idx parents clause)]) (when (eq? what 'all) (set! what Clause->string-all-fields)) (string-join (map (λ (f w) (format "~a: ~a " w f)) (Clause->list C what) what) " ")) ;; Outputs the Clauses `Cs` in a table for human reading. ;; ;; (listof Clause?) (or/c 'all (listof symbol?)) -> void? (define (print-Clauses Cs [what '(idx parents clause)]) (when (eq? what 'all) (set! what Clause->string-all-fields)) (print-simple-table (cons what (map (λ (C) (Clause->list C what)) Cs)))) ;; Returns a substitution if C1 subsumes C2 and the number of literals of C1 is no larger ;; than that of C2, #false otherwise. ;; Indeed, even when the clauses are safely factored, there can still be issues, for example, ;; this prevents cases infinite chains such as: ;; p(A, A) subsumed by p(A, B) | p(B, A) subsumed by p(A, B) | p(B, C) | p(C, A) subsumed by… ;; Notice: This is an approximation of the correct subsumption based on multisets. ;; ;; Clause? Clause? -> (or/c #false subst?) (define (Clause-subsumes C1 C2) (and (<= (Clause-n-literals C1) (Clause-n-literals C2)) (clause-subsumes (Clause-clause C1) (Clause-clause C2)))) ;; Like Clause-subsumes but first takes the converse of C1. ;; Useful for rewrite rules. ;; ;; Clause? Clause? -> (or/c #false subst?) (define (Clause-converse-subsumes C1 C2) (and (<= (Clause-n-literals C1) (Clause-n-literals C2)) (clause-subsumes (clause-converse (Clause-clause C1)) (Clause-clause C2)))) ;; Clause? -> boolean? (define (unit-Clause? C) (= 1 (Clause-n-literals C))) ;; Clause? -> boolean? (define (binary-Clause? C) (= 2 (Clause-n-literals C))) ;; Clause? -> boolean? (define (Clause-tautology? C) (clause-tautology? (Clause-clause C))) ;; Returns whether C1 and C2 are α-equivalences, that is, ;; if there exists a renaming substitution α such that C1α = C2 ;; and C2α⁻¹ = C1. ;; ;; Clause? Clause? -> boolean? (define (Clause-equivalence? C1 C2) (and (Clause-subsumes C1 C2) (Clause-subsumes C2 C1))) ;================; ;=== Printing ===; ;================; ;; Returns the tree of ancestor Clauses of C up to init Clauses, ;; but each Clause appears only once in the tree. ;; (The full tree can be further retrieved from the Clause-parents.) ;; Used for proofs. ;; ;; C : Clause? ;; dmax : number? ;; -> (treeof Clause?) (define (Clause-ancestor-graph C #:depth [dmax +inf.0]) (define h (make-hasheq)) (let loop ([C C] [depth 0]) (cond [(or (> depth dmax) (hash-has-key? h C)) #false] [else (hash-set! h C #true) (cons C (filter-map (λ (C2) (loop C2 (+ depth 1))) (Clause-parents C)))]))) ;; Like `Clause-ancestor-graph` but represented as a string for printing. ;; ;; C : Clause? ;; prefix : string? ; a prefix before each line ;; tab : string? ; tabulation string to show the tree-like structure ;; what : (or/c 'all (listof symbol?)) ; see `Clause->string` ;; -> string? (define (Clause-ancestor-graph-string C #:? [depth +inf.0] #:? [prefix ""] #:? [tab " "] #:? [what '(idx parents type clause)]) (define h (make-hasheq)) (define str-out "") (let loop ([C C] [d 0]) (unless (or (> d depth) (hash-has-key? h C)) (set! str-out (string-append str-out prefix (string-append* (make-list d tab)) (Clause->string C what) "\n")) (hash-set! h C #true) (for ([P (in-list (Clause-parents C))]) (loop P (+ d 1))))) str-out) ;; Like `Clause-ancestor-graph-string` but directly outputs it. (define-wrapper (display-Clause-ancestor-graph (Clause-ancestor-graph-string C #:? depth #:? prefix #:? tab #:? what)) #:call-wrapped call (display (call))) ;; Returns #true if C1 was generated before C2 ;; ;; Clause? Clause? -> boolean? (define (Clause-age>= C1 C2) (<= (Clause-idx C1) (Clause-idx C2))) ;=================; ;=== Save/load ===; ;=================; ;; Saves the Clauses `Cs` to the file `f`. ;; ;; Cs : (listof Clause?) ;; f : file? ;; exists : symbol? ; see `with-output-to-file` ;; -> void? (define (save-Clauses! Cs f #:? exists) (save-clauses! (map Clause-clause Cs) f #:exists exists)) ;; Loads Clauses from a file. If `sort?` is not #false, Clauses are sorted by Clause-size. ;; The type defaults to `'load` and can be changed with `type`. ;; ;; f : file? ;; sort? : boolean? ;; type : symbol? ;; -> (listof Clause?) (define (load-Clauses f #:? [sort? #true] #:? [type 'load]) (define Cs (map (λ (c) (make-Clause c #:type type)) (load-clauses f))) (if sort? (sort Cs <= #:key Clause-size) Cs)) ;======================; ;=== Test utilities ===; ;======================; ;; Provides testing utilities. Use with `(require (submod satore/Clause test))`. (module+ test (require rackunit) (provide Clausify check-Clause-set-equivalent?) ;; Takes a symbol tree, turns symbol variables into actual `Var`s, freshes them, ;; sorts the literals and makes a new Clause. ;; ;; tree? -> Clause? (define Clausify (compose make-Clause clausify)) ;; Returns whether for every clause of Cs1 there is an α-equivalent clause in Cs2. ;; ;; (listof Clause?) (listof Clause?) -> any/c (define-check (check-Clause-set-equivalent? Cs1 Cs2) (unless (= (length Cs1) (length Cs2)) (fail-check "not =")) (for/fold ([Cs2 Cs2]) ([C1 (in-list Cs1)]) (define C1b (for/first ([C2 (in-list Cs2)] #:when (Clause-equivalence? C1 C2)) C2)) (unless C1b (printf "Cannot find equivalence Clause for ~a\n" (Clause->string C1)) (print-Clauses Cs1) (print-Clauses Cs2) (fail-check)) (remq C1b Cs2))))
false
b4986f9bbe99953faef2b3d885297ae35a6dde63
f987ad08fe780a03168e72efce172ea86ad5e6c0
/plai-lib/tests/util.rkt
dd365b42429b99eecc1e9aadbfab4cc9a656be77
[ "LicenseRef-scancode-unknown-license-reference", "MIT", "Apache-2.0" ]
permissive
racket/plai
a76573fdd29b648e04f8adabcdc8fb1f6825d036
ae42bcb581ab02dcb9ddaea98d5ecded589c8d47
refs/heads/master
2023-08-18T18:41:24.326877
2022-10-03T02:10:02
2022-10-03T02:10:14
27,412,198
11
12
NOASSERTION
2022-07-08T19:16:11
2014-12-02T02:58:30
Racket
UTF-8
Racket
false
false
255
rkt
util.rkt
#lang racket/base (provide with-both-output-to-string) (define (with-both-output-to-string thunk) (define sp (open-output-string)) (parameterize ([current-output-port sp] [current-error-port sp]) (thunk)) (get-output-string sp))
false
3aa236e76f982adce7169ba1f943a99354e08c5d
5bbc152058cea0c50b84216be04650fa8837a94b
/experimental/micro/tetris/typed/world-landed.rkt
9a9d477680b70d01fbab64fc537b83d95898b85d
[]
no_license
nuprl/gradual-typing-performance
2abd696cc90b05f19ee0432fb47ca7fab4b65808
35442b3221299a9cadba6810573007736b0d65d4
refs/heads/master
2021-01-18T15:10:01.739413
2018-12-15T18:44:28
2018-12-15T18:44:28
27,730,565
11
3
null
2018-12-01T13:54:08
2014-12-08T19:15:22
Racket
UTF-8
Racket
false
false
509
rkt
world-landed.rkt
#lang typed/racket/base (provide landed?) (require benchmark-util "data-world-adapted.rkt") (require/typed/check "world-landed-on-blocks.rkt" [landed-on-blocks? (-> World Boolean)]) (require/typed/check "world-landed-on-floor.rkt" [landed-on-floor? (-> World Boolean)]) ;; ============================================================================= ;; Has the current tetra landed? (: landed? (-> World Boolean)) (define (landed? w) (or (landed-on-blocks? w) (landed-on-floor? w)))
false
5b0d5eb181a6777b366a55d6fdcb3299f06bd876
d68e95fc969573225ab9262eff68a8b9e2017cc6
/www/notes/fraud/test/compile.rkt
fb3fd266c71c1b1700cdd4d7013ca3635717b7f6
[ "AFL-3.0" ]
permissive
dvanhorn/www
733fd87fd667330c00592796326f699134db5301
aee1f850f8ea20edebbdcad3c2bbedef62a6809f
refs/heads/master
2020-07-11T13:44:11.244201
2019-08-26T20:36:25
2019-08-26T20:36:25
204,557,689
1
0
null
null
null
null
UTF-8
Racket
false
false
1,223
rkt
compile.rkt
#lang racket (require "../compile.rkt" "../asm/interp.rkt" rackunit) (define (run e) (asm-interp (compile e))) (check-equal? (run 7) 7) (check-equal? (run -8) -8) (check-equal? (run '(add1 (add1 7))) 9) (check-equal? (run '(add1 (sub1 7))) 7) ;; Con examples (check-equal? (run '(if (zero? 0) 1 2)) 1) (check-equal? (run '(if (zero? 1) 1 2)) 2) (check-equal? (run '(if (zero? -7) 1 2)) 2) (check-equal? (run '(if (zero? 0) (if (zero? 1) 1 2) 7)) 2) (check-equal? (run '(if (zero? (if (zero? 0) 1 0)) (if (zero? 1) 1 2) 7)) 7) ;; Examples from the notes (check-equal? (run '(let ((x 7)) x)) 7) (check-equal? (run '(let ((x 7)) 2)) 2) (check-equal? (run '(let ((x 7)) (add1 x))) 8) (check-equal? (run '(let ((x (add1 7))) x)) 8) (check-equal? (run '(let ((x 7)) (let ((y 2)) x))) 7) (check-equal? (run '(let ((x 7)) (let ((x 2)) x))) 2) (check-equal? (run '(let ((x 7)) (let ((x (add1 x))) x))) 8) (check-equal? (run '(let ((x 0)) (if (zero? x) 7 8))) 7) (check-equal? (run '(let ((x 1)) (add1 (if (zero? x) 7 8)))) 9)
false
b008cea9e0928a6a619cd640dbf6cf08794dc718
d081ccc87078307aabb7ffc56ecc51e2e25d653d
/tests/lint/unused-bindings.rkt
22b8a7a263d72c52c85851da5524d05e33936c19
[ "BSD-3-Clause" ]
permissive
Bogdanp/racket-review
75501945155a5f75a0684e60ae6934fb2617e655
bc7b614e3b6ab11a9f569d254aaba7f2d2074354
refs/heads/master
2023-08-21T20:16:54.808995
2023-07-28T18:28:24
2023-07-28T18:28:24
191,135,877
40
3
BSD-3-Clause
2022-08-08T08:10:11
2019-06-10T09:17:45
Racket
UTF-8
Racket
false
false
322
rkt
unused-bindings.rkt
#lang racket/base (provide h) (define (f x) (define y 0) 1) (f 1) (define ((g x) y) x) (define (h) (displayln "I'm provided!")) (let ([x 1] [y x]) y) (let ([x 1] [y 2]) 3) (define (i #:ok? ok?) #f) (define (j #:ok? [ok? #f]) #t) (cond [#t (define z 1) #f]) (define _foo 42)
false
93133641b9d5bb64724056aa3d3f2e424a17b28d
f3e1d44eb1780bd5a3fbe3f61c560f18c2447f48
/aplas2011/typeset-reduction.rkt
a4460b563fffe4f59bbce7b39d2e2f96e1887e65
[]
no_license
willemneal/decompose-plug
afdda44f0182708dae80610dfd98ce8b13af4f04
5bb1acff487d055386c075581b395eb3cfdc12e9
refs/heads/master
2020-12-24T06:24:57.820701
2011-12-07T00:45:16
2011-12-07T00:45:16
null
0
0
null
null
null
null
UTF-8
Racket
false
false
4,713
rkt
typeset-reduction.rkt
#lang racket (require redex/pict slideshow/pict "common.rkt" "../semantics/common.rkt" "../semantics/reduction.rkt") (provide rt render-reduction render-r-grammar render-reduces with-reduction-rewriters) (define (rewrite-reduces lws) (list "" (list-ref lws 2) " ⊢ " (list-ref lws 3) " / " (list-ref lws 4) (hbl-append (text " ") (arrow->pict '-->) (text " ")) (list-ref lws 5) " / " (list-ref lws 6) "")) (define (rewrite-lookup lws) (list "" (list-ref lws 2) "(" (list-ref lws 3) ")")) (define (rewrite-meta-app lws) (list "δ(" (list-ref lws 2) ", " (list-ref lws 3) ")")) (define (rewrite-3-as-fn lws) (list (text (symbol->string (lw-e (list-ref lws 1))) (metafunction-style) (metafunction-font-size)) (white-bracket "[") (list-ref lws 2) "," (list-ref lws 3) (white-bracket "]") " = " (list-ref lws 4))) (define (white-bracket str) (let-values ([(left-inset-amt right-inset-amt left-space right-space) ((white-bracket-sizing) str (default-font-size))]) (let ([main-bracket (text str (default-style) (default-font-size))]) (inset (refocus (cbl-superimpose main-bracket (hbl-append (blank left-inset-amt) (text str (default-style) (default-font-size)) (blank right-inset-amt))) main-bracket) left-space 0 right-space 0)))) (define (no-white-brackets lws) (list (text (symbol->string (lw-e (list-ref lws 1))) (metafunction-style) (metafunction-font-size)) " " (list-ref lws 2))) (define (rewrite-tuple lws) (list left-tuple (list-ref lws 2) ", " (list-ref lws 3) right-tuple)) (define (rewrite-wedge lws) (list "" (list-ref lws 2) " ∧ " (list-ref lws 3) "")) (define (rewrite-vee lws) (list "" (list-ref lws 2) " ∨ " (list-ref lws 3) "")) (define compound-rewriters (list (list 'meta-app rewrite-meta-app) (list 'lookup rewrite-lookup) (list 'eq rewrite-eq) (list 'set rewrite-set) (list 'pair rewrite-pair) (list 'no-ctxts no-white-brackets) (list 'matches rewrite-matches) (list 'reduces rewrite-reduces) (list 'tuple rewrite-tuple) (list '∧ rewrite-wedge) (list '∨ rewrite-vee))) (define (with-reduction-rewriters thunk) (let loop ([rws compound-rewriters]) (match rws ['() (with-keyword-rewriters thunk)] [(cons (list name rewriter) rs) (with-compound-rewriter name rewriter (loop rs))]))) (define (render-reduction) (with-reduction-rewriters (λ () (lt-superimpose (ht-append 140 (render-reduces) (frame (inset (render-r-grammar) 4))) (vl-append 20 (blank 0 40) (vl-append (metafunction-signature "inst" "r" "b" (list "t" "bool")) (parameterize (#;[metafunction-pict-style 'left-right/beside-side-conditions]) (render-metafunctions inst))) (vl-append (metafunction-signature "plug" "C" (list "t" "bool") (list "t" "bool")) (render-metafunctions plug)) (vl-append (metafunction-signature "join" (list "t" "bool") (list "t" "bool") (list "t" "bool")) (parameterize ([metafunction-pict-style 'left-right/beside-side-conditions]) (render-metafunctions join))) (vl-append (metafunction-signature "has-context" "t" "bool") (render-metafunctions has-context)) (vl-append (metafunction-signature "δ" "(t → t)" "t" "t") (text "An unspecified function that applies metafunctions" (cons 'italic (default-style))))) #; (parameterize ([relation-clauses-combine (λ (l) (apply hbl-append 40 l))]) (render-judgment-form no-ctxts)))))) (define (render-reduces) (parameterize ([metafunction-cases '(0)]) (render-judgment-form reduces))) (define (render-r-grammar) (parameterize ([render-language-nts '(r)]) (vl-append (render-language reduction) (non-bnf-def "f" (arbitrary-function-domain "t" "t"))))) (define-syntax-rule (rt t) ; "reduction term" (with-rewriters (lw->pict reduction (to-lw t))))
true
3f0fa2e4b290df63cccf0048861cdf58060f790b
c5e9ad8c15b0a353f4d27bfdb95119f9cf4bd973
/bitmap/digivice/wisemon/phony/save-as.rkt
ee6fac11c912c230f9e719247484d7f962bab8a0
[]
no_license
wargrey/graphics
807d18642df1d3e75456c92ed571038e50aee01e
ba858504ff361f7beba221455304eadf7c01edf0
refs/heads/master
2023-08-10T08:18:30.921815
2023-07-31T09:57:21
2023-07-31T09:57:21
99,306,277
7
4
null
2021-04-17T23:27:55
2017-08-04T05:27:06
Racket
UTF-8
Racket
false
false
4,695
rkt
save-as.rkt
#lang typed/racket/base (provide (all-defined-out)) (require "../path.rkt") (require "../../../composite.rkt") (require "../../../digitama/unsafe/convert.rkt") (require racket/port) (require racket/math) (require racket/file) (require digimon/dtrace) (require digimon/digitama/system) (require digimon/digivice/wisemon/parameter) (require digimon/digivice/wisemon/native) (require digimon/digivice/wisemon/phony) (require digimon/digivice/wisemon/spec) (require digimon/digivice/wisemon/path) (require digimon/digivice/wisemon/racket) (require digimon/digivice/wisemon/phony/cc) (require typed/racket/unsafe) (unsafe-require/typed file/convertible [convert (-> Visual-Object<%> Symbol Bytes Bytes)]) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (define make-graphics-specs : (-> Info-Ref Symbol String Wisemon-Specification) (lambda [info-ref gformat .ext] (define /dev/null : Output-Port (open-output-nowhere)) (for/fold ([specs : Wisemon-Specification null]) ([module.rkt (in-list (find-digimon-files graphics-filter (current-directory)))]) (parameterize ([current-output-port /dev/null]) (dynamic-require module.rkt #false)) (define ns (module->namespace module.rkt)) (for/fold ([g-specs : Wisemon-Specification specs]) ([sym (in-list (namespace-mapped-symbols ns))]) (define datum (namespace-variable-value sym #false (λ _ #false) ns)) (append g-specs (cond [(visual-object<%>? datum) (let ([deps.rkt (racket-smart-dependencies module.rkt)] [sym.png (graphics.png module.rkt sym .ext)]) (list (wisemon-spec sym.png #:^ (cons module.rkt deps.rkt) #:- (graphics-note module.rkt sym .ext sym.png) (graphics-save-as sym.png datum gformat))))] [(and (list? datum) (andmap bitmap? datum)) (let ([deps.rkt (racket-smart-dependencies module.rkt)] [sym.png (graphics.png module.rkt sym .ext)] [ncol (max (exact-floor (sqrt (length datum))) 1)]) (list (wisemon-spec sym.png #:^ (cons module.rkt deps.rkt) #:- (graphics-note module.rkt sym .ext sym.png) (graphics-save-as sym.png (bitmap-table ncol datum) gformat))))] [else null])))))) (define make~save-as : (-> Symbol String Make-Info-Phony) (lambda [gformat .ext] (λ [digimon info-ref] (define natives (map (inst car Path CC-Launcher-Info) (find-digimon-native-launcher-names info-ref))) (wisemon-make (make-native-library-specs info-ref natives)) (wisemon-compile (current-directory) digimon info-ref) (wisemon-make (make-graphics-specs info-ref gformat .ext) (current-make-real-targets))))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (define graphics-filter : (-> Path Boolean) (lambda [file] (and (file-exists? file) (with-handlers ([exn:fail? (λ _ #false)]) (module-declared? file #true))))) (define graphics.png : (-> Path Symbol String Path) (lambda [module.rkt sym .ext] (if (digimon-stone-path? module.rkt) (graphics-target-path module.rkt sym .ext) (graphics-target-path/compiled module.rkt sym .ext)))) (define graphics-note : (-> Path Symbol String Path Void) (lambda [module.rkt sym .ext symbol.png] (dtrace-note "~a: save-as: ~a" the-name (path->string symbol.png)))) (define graphics-save-as : (-> Path Visual-Object<%> Symbol Void) (lambda [sym.png vobj gformat] (make-parent-directory* sym.png) (call-with-output-file* sym.png #:exists 'truncate/replace (λ [[/dev/stdout : Output-Port]] : Void (write-bytes (convert vobj gformat #"") /dev/stdout) (void))))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (define png-phony-goal : Wisemon-Phony (wisemon-make-info-phony #:name 'png #:phony (make~save-as 'png-bytes ".png") #:desc "Export module-level images as PNGs")) (define svg-phony-goal : Wisemon-Phony (wisemon-make-info-phony #:name 'svg #:phony (make~save-as 'svg-bytes ".svg") #:desc "Export module-level images as SVGs")) (define pdf-phony-goal : Wisemon-Phony (wisemon-make-info-phony #:name 'pdf #:phony (make~save-as 'pdf-bytes ".pdf") #:desc "Export module-level images as PDFs"))
false
addded8019a2bcb1c15a26cc7a1dd38683120918
477efc6ec5e6b4727a1b4f6bfb85ac2323bed818
/info.rkt
f43abb9d0513c7379d0388475b4faafa224f86b6
[]
no_license
emg110/game-engine
f4049fa2c3c05b9ff68e1c16849d2fc35aa57160
98c4b9e9b8c071818e564ef7efb55465cff487a8
refs/heads/master
2022-12-06T08:56:56.264781
2020-08-10T21:26:04
2020-08-10T21:26:04
null
0
0
null
null
null
null
UTF-8
Racket
false
false
638
rkt
info.rkt
#lang info ;(define collection 'multi) (define version "0.0.1") (define scribblings '(("scribblings/game-engine.scrbl" ()))) (define deps '("threading" "memoize" "https://github.com/jeapostrophe/mode-lambda.git#0858b6d" "drracket" "htdp-lib" "https://github.com/jeapostrophe/lux.git" ;was frozen at #f6edd2e "jack-posn" ; "rsound" "https://github.com/thoughtstem/racket-chipmunk.git#master" "base")) (define compile-omit-paths '( "test" )) (define pre-install-collection "./pre-install.rkt")
false
170c7b7bd0df3513f106c91b76e03eac3a42841c
0b00fc2e14c1a4d65fc1613a88f506a5e2c3c7db
/2013lyric-talk/plots.rkt
3f77d6462783c73c120012a43c29b9b8fbfedfc5
[]
no_license
ntoronto/writing
6a1539cde2a20777f4798446a00183158bdcd75b
60b30c94110e3f2a9d39ca104656d382b32d1428
refs/heads/master
2021-01-22T04:57:38.369018
2015-02-20T17:52:08
2015-02-20T17:52:08
12,441,945
2
1
null
2015-01-16T01:06:14
2013-08-28T18:54:16
Racket
UTF-8
Racket
false
false
7,057
rkt
plots.rkt
#lang racket (require plot math) (define (f x y) (let ([x (fl x)] [y (fl y)]) (* (flnormal-pdf 0.0 1.0 x #f) (flnormal-pdf x 1.0 y #f)))) ;(plot3d (contour-intervals3d f -3 3 -3 3)) (define (prob-near ε n) (define xs (flvector->list (flnormal-sample 0.0 1.0 n))) (define y0s (flvector->list (flnormal-sample 0.0 1.0 n))) (define ys (map + xs y0s)) (fl (/ (count (λ (x y) ((abs (- (sqrt (+ (* x x) (* y y))) 1.0)) . <= . ε)) xs ys) n))) (define (plot-constrained-norm-norm-density ε prob) (plot3d (contour-intervals3d (λ (x y) (if ((abs (- (sqrt (+ (* x x) (* y y))) 1.0)) . <= . ε) (/ (f x y) prob) 0.0)) -1.5 1.5 -1.5 1.5 #:line-styles '(transparent) #:samples 120))) #| (plot-constrained-norm-norm-density 0.5 0.476) (plot-constrained-norm-norm-density 0.25 0.251) (plot-constrained-norm-norm-density 0.1 0.102) (plot-constrained-norm-norm-density 0.025 0.0255) |# (define (norm-norm-condition-dist ω0 ω1) (let ([ω0 (fl ω0)] [ω1 (fl ω1)]) (let* ([x (flnormal-inv-cdf 0.0 1.0 ω0 #f #f)] [y (fl+ x (flnormal-inv-cdf 0.0 1.0 ω1 #f #f))]) (- (sqrt (+ (* x x) (* y y))) 1.0)))) (define (plot-constrained-norm-norm-source ε) (plot (contour-intervals norm-norm-condition-dist 0 1 0 1 #:levels (list (- ε) ε) #:colors '(white 2 white) #:styles '(transparent solid transparent) #:contour-styles '(solid) #:contour-colors '(2) ) #:x-label "ω0 axis" #:y-label "ω1 axis")) #| (plot-constrained-norm-norm-source 0.5) (plot-constrained-norm-norm-source 0.25) (plot-constrained-norm-norm-source 0.1) (plot-constrained-norm-norm-source 0.025) |# #; (plot (contour-intervals norm-norm-condition-dist 0 1 0 1 #:levels (list -0.1 0.1) #:colors '(white 2 white) #:styles '(transparent solid transparent) #:contour-styles '(solid) #:contour-colors '(2) ) #:x-label "ω0 axis" #:y-label "ω1 axis" #:out-file "refinement/constrained-norm-norm-source.svg") ;; =================================================================================================== (define (plot-axial-condition eps) (plot (list (contours f -3 3 -3 3 #:levels 5) (rectangles (list (list (ivl -3 3) (ivl (- 2 eps) (+ 2 eps)))) #:color 2 #:line-color 2 #:alpha 0.75) (rectangles (list (list (ivl 1 3) (ivl -3 3))) #:color 3 #:line-color 3 #:alpha 0.75) (rectangles (list (list (ivl 1 3) (ivl (- 2 eps) (+ 2 eps)))) #:color 1 #:line-color 1 #:alpha 0.75) ) #:x-label "ω0 axis" #:y-label "ω1 axis")) (plot-axial-condition 0.5) (plot-axial-condition 0.25) (plot-axial-condition 0.1) (plot-axial-condition 0.025) ;; =================================================================================================== (define (d x y) (- (sqrt (+ (sqr x) (sqr y))) 1)) (define (plot-circular-condition eps) (plot (list (contours f -3 3 -3 3 #:levels 5) (contour-intervals d -3 3 -3 3 #:levels (list (- eps) eps) #:colors '(white 2 white) #:styles '(transparent solid transparent) #:alphas '(0.75) #:contour-styles '(solid) #:contour-colors '(2)) (rectangles (list (list (ivl 0 2) (ivl 0 2))) #:color 3 #:line-color 3 #:alpha 0.75) (contour-intervals d 0 2 0 2 #:levels (list (- eps) eps) #:colors '(white 1 white) #:styles '(transparent solid transparent) #:alphas '(0.75) #:contour-styles '(solid) #:contour-colors '(1)) ) #:x-label "ω0 axis" #:y-label "ω1 axis")) (plot-circular-condition 0.5) (plot-circular-condition 0.25) (plot-circular-condition 0.1) (plot-circular-condition 0.025) #| ;; =================================================================================================== (define (d1 x y) (- (+ x y) 0.6)) (define (d2 x y) (* 4.0 (- (* x y) 0.075))) (define (d3 x y) (define z1 (d1 x y)) (define z2 (d2 x y)) (if ((abs z1) . > . (abs z2)) z1 z2)) (plot (contour-intervals d1 0 1 0 1 #:levels (list -0.1 0.1) #:colors '(white 2 white) #:styles '(transparent solid transparent) #:contour-styles '(solid) #:contour-colors '(2) ) #:x-label "ω0 axis" #:y-label "ω1 axis") (plot (list (contour-intervals d1 0 1 0 1 #:levels (list -0.1 0.1) #:colors '(white 2 white) #:styles '(transparent solid transparent) #:contour-styles '(solid) #:contour-colors '(2) ) (contour-intervals d2 0 1 0 1 #:levels (list -0.1 0.1) #:colors '(white 3 white) #:styles '(transparent solid transparent) #:contour-styles '(solid) #:contour-colors '(3) )) #:x-label "ω0 axis" #:y-label "ω1 axis") (plot (list (contour-intervals d1 0 1 0 1 #:levels (list -0.1 0.1) #:colors '(white 2 white) #:styles '(transparent solid transparent) #:contour-styles '(solid) #:contour-colors '(2) ) (contour-intervals d2 0 1 0 1 #:levels (list -0.1 0.1) #:colors '(white 3 white) #:styles '(transparent solid transparent) #:contour-styles '(solid) #:contour-colors '(3) ) (contour-intervals d3 0.081 0.615 0.081 0.615 #:levels (list -0.1 0.1) #:colors '(white 1 white) #:styles '(transparent solid transparent) #:contour-styles '(solid) #:contour-colors '(1) #:samples 81 )) #:x-label "ω0 axis" #:y-label "ω1 axis" #:x-min 0 #:x-max 1 #:y-min 0 #:y-max 1) |#
false
f88659f97420fbcc58afa7c56c78bf715ba7942c
9dc77b822eb96cd03ec549a3a71e81f640350276
/collection/private/persistent-sorted-map.rkt
484297f7fc7a9f147292f0a8a48087a3ecf97f09
[ "Apache-2.0" ]
permissive
jackfirth/rebellion
42eadaee1d0270ad0007055cad1e0d6f9d14b5d2
69dce215e231e62889389bc40be11f5b4387b304
refs/heads/master
2023-03-09T19:44:29.168895
2023-02-23T05:39:33
2023-02-23T05:39:33
155,018,201
88
21
Apache-2.0
2023-09-07T03:44:59
2018-10-27T23:18:52
Racket
UTF-8
Racket
false
false
17,198
rkt
persistent-sorted-map.rkt
#lang racket/base (require racket/contract/base) (module+ private-for-rebellion-only (provide (contract-out [empty-sorted-map (-> comparator? immutable-sorted-map?)] [sorted-map->persistent-sorted-map (-> sorted-map? immutable-sorted-map?)] [make-persistent-sorted-map (-> (sequence/c entry?) comparator? immutable-sorted-map?)]))) (require racket/generic racket/match racket/sequence rebellion/base/comparator rebellion/base/option rebellion/base/range rebellion/base/result rebellion/collection/entry rebellion/collection/private/persistent-red-black-tree (submod rebellion/collection/private/persistent-sorted-set private-for-rebellion-only) rebellion/collection/private/reversed-sorted-map rebellion/collection/private/sorted-map-interface (submod rebellion/collection/private/sorted-map-interface private-for-rebellion-only) rebellion/collection/private/sorted-map-entry-set rebellion/collection/private/sorted-map-key-set rebellion/collection/private/sorted-submap rebellion/private/guarded-block rebellion/private/static-name) ;@---------------------------------------------------------------------------------------------------- (define (sorted-map->persistent-sorted-map map) (cond [(persistent-sorted-map? map) map] [else (define key<=> (sorted-map-key-comparator map)) (constructor:persistent-sorted-map (for/fold ([tree (empty-persistent-red-black-tree key<=>)]) ([e map]) (persistent-red-black-tree-insert tree (entry-key e) (entry-value e))))])) ;; We define a specialized implementation of the empty map for speed. It's included in this module so ;; that the empty map implementation can switch to the persistent implementation when entries are ;; added to it. The persistent implementation also depends on the empty implementation, since it can ;; switch back to it if an empty submap of the persistent implementation is selected. (struct empty-sorted-map abstract-immutable-sorted-map (key-comparator) #:methods gen:sorted-map [(define (in-sorted-map this #:descending? [descending? #false]) (in-list '())) (define (in-sorted-map-keys this #:descending? [descending? #false]) (in-list '())) (define (in-sorted-map-values this #:descending? [descending? #false]) (in-list '())) (define (sorted-map-empty? this) #true) (define (sorted-map-size this) 0) (define (sorted-map-key-comparator this) (empty-sorted-map-key-comparator this)) (define (sorted-map-contains-key? this key) #false) (define (sorted-map-contains-value? this value) #false) (define (sorted-map-contains-entry? this entry) #false) (define (sorted-map-get this key [failure-result (default-sorted-map-lookup-failure-result (name sorted-map-get) key this)]) (if (procedure? failure-result) (failure-result) failure-result)) (define (sorted-map-get-option this key) absent) (define (sorted-map-get-entry this key [failure-result (default-sorted-map-lookup-failure-result (name sorted-map-get-entry) key this)]) (entry key (if (procedure? failure-result) (failure-result) failure-result))) (define (sorted-map-least-key this) absent) (define (sorted-map-greatest-key this) absent) (define (sorted-map-key-less-than this upper-bound) absent) (define (sorted-map-key-greater-than this lower-bound) absent) (define (sorted-map-key-at-most this upper-bound) absent) (define (sorted-map-key-at-least this lower-bound) absent) (define (sorted-map-least-entry this) absent) (define (sorted-map-greatest-entry this) absent) (define (sorted-map-entry-less-than this upper-bound) absent) (define (sorted-map-entry-greater-than this lower-bound) absent) (define (sorted-map-entry-at-most this upper-bound) absent) (define (sorted-map-entry-at-least this lower-bound) absent) (define (sorted-map-keys this) (empty-sorted-set (empty-sorted-map-key-comparator this))) (define (sorted-map-entries this) (empty-sorted-set (comparator-map (empty-sorted-map-key-comparator this) entry-key))) (define (sorted-submap this key-range) this) (define (sorted-map-reverse this) (empty-sorted-map (comparator-reverse (empty-sorted-map-key-comparator this))))] #:methods gen:immutable-sorted-map [(define (sorted-map-put this key value) (define comparator (empty-sorted-map-key-comparator this)) (make-persistent-sorted-map (list (entry key value)) comparator)) (define (sorted-map-put-all this entries) (make-persistent-sorted-map entries (empty-sorted-map-key-comparator this))) (define (sorted-map-put-if-absent this key value) (success (sorted-map-put this key value))) (define (sorted-map-update this key updater [failure-result (default-sorted-map-lookup-failure-result (name sorted-map-update) key this)]) (define value (if (procedure? failure-result) (failure-result) failure-result)) (define comparator (empty-sorted-map-key-comparator this)) (make-persistent-sorted-map (list (entry key (updater value))) comparator)) (define (sorted-map-remove this key) this) (define (sorted-map-remove-all this keys) this)]) (define (make-persistent-sorted-map entries comparator) (constructor:persistent-sorted-map (for/fold ([tree (empty-persistent-red-black-tree comparator)]) ([e entries]) (persistent-red-black-tree-insert tree (entry-key e) (entry-value e))))) (struct persistent-sorted-map abstract-immutable-sorted-map (tree) #:constructor-name constructor:persistent-sorted-map #:methods gen:sorted-map [(define (in-sorted-map this #:descending? [descending? #false]) (in-persistent-red-black-tree (persistent-sorted-map-tree this) #:descending? descending?)) (define (in-sorted-map-keys this #:descending? [descending? #false]) (in-persistent-red-black-tree-keys (persistent-sorted-map-tree this) #:descending? descending?)) (define (in-sorted-map-values this #:descending? [descending? #false]) (in-persistent-red-black-tree-values (persistent-sorted-map-tree this) #:descending? descending?)) (define (sorted-map-size this) (persistent-red-black-tree-size (persistent-sorted-map-tree this))) (define (sorted-map-key-comparator this) (persistent-red-black-tree-comparator (persistent-sorted-map-tree this))) (define (sorted-map-contains-key? this key) (persistent-red-black-tree-contains? (persistent-sorted-map-tree this) key)) (define (sorted-map-contains-value? this value) (for/or ([v (in-persistent-red-black-tree-values (persistent-sorted-map-tree this))]) (equal? v value))) (define (sorted-map-contains-entry? this entry) (match (persistent-red-black-tree-get-option (persistent-sorted-map-tree this) (entry-key entry)) [(== absent) #false] [(present v) (equal? v (entry-value entry))])) (define (sorted-map-get this key [failure-result (default-sorted-map-lookup-failure-result (name sorted-map-get) key this)]) (persistent-red-black-tree-get (persistent-sorted-map-tree this) key failure-result)) (define (sorted-map-get-option this key) (persistent-red-black-tree-get-option (persistent-sorted-map-tree this) key)) (define (sorted-map-get-entry this key [failure-result (default-sorted-map-lookup-failure-result (name sorted-map-get-entry) key this)]) (persistent-red-black-tree-get-entry (persistent-sorted-map-tree this) key failure-result)) (define (sorted-map-least-key this) (persistent-red-black-tree-least-key (persistent-sorted-map-tree this))) (define (sorted-map-greatest-key this) (persistent-red-black-tree-greatest-key (persistent-sorted-map-tree this))) (define (sorted-map-key-less-than this upper-bound) (persistent-red-black-tree-key-less-than (persistent-sorted-map-tree this) upper-bound)) (define (sorted-map-key-greater-than this lower-bound) (persistent-red-black-tree-key-greater-than (persistent-sorted-map-tree this) lower-bound)) (define (sorted-map-key-at-most this upper-bound) (persistent-red-black-tree-key-at-most (persistent-sorted-map-tree this) upper-bound)) (define (sorted-map-key-at-least this lower-bound) (persistent-red-black-tree-key-at-least (persistent-sorted-map-tree this) lower-bound)) (define (sorted-map-least-entry this) (persistent-red-black-tree-least-entry (persistent-sorted-map-tree this))) (define (sorted-map-greatest-entry this) (persistent-red-black-tree-greatest-entry (persistent-sorted-map-tree this))) (define (sorted-map-entry-less-than this upper-key-bound) (persistent-red-black-tree-entry-less-than (persistent-sorted-map-tree this) upper-key-bound)) (define (sorted-map-entry-at-most this upper-key-bound) (persistent-red-black-tree-entry-at-most (persistent-sorted-map-tree this) upper-key-bound)) (define (sorted-map-entry-greater-than this lower-key-bound) (persistent-red-black-tree-entry-greater-than (persistent-sorted-map-tree this) lower-key-bound)) (define (sorted-map-entry-at-least this lower-key-bound) (persistent-red-black-tree-entry-at-least (persistent-sorted-map-tree this) lower-key-bound)) (define (sorted-map-keys this) (make-immutable-sorted-map-key-set this)) (define (sorted-map-entries this) (make-immutable-sorted-map-entry-set this)) (define (sorted-submap this key-range) (constructor:persistent-sorted-submap this key-range)) (define (sorted-map-reverse this) (make-reversed-immutable-sorted-map this))] #:methods gen:immutable-sorted-map [(define (sorted-map-put this key value) (define tree (persistent-sorted-map-tree this)) (constructor:persistent-sorted-map (persistent-red-black-tree-insert tree key value))) (define (sorted-map-put-all this entries) (define tree (for/fold ([tree (persistent-sorted-map-tree this)]) ([e entries]) (persistent-red-black-tree-insert tree (entry-key e) (entry-value e)))) (constructor:persistent-sorted-map tree)) (define (sorted-map-put-if-absent this key value) (define tree (persistent-sorted-map-tree this)) (match (persistent-red-black-tree-get-option tree key) [(== absent) (success (sorted-map-put this key value))] [(present previous-value) (failure previous-value)])) (define (sorted-map-update this key updater [failure-result (default-sorted-map-lookup-failure-result (name sorted-map-update) key this)]) (define tree (persistent-red-black-tree-update (persistent-sorted-map-tree this) key updater failure-result)) (constructor:persistent-sorted-map tree)) (define (sorted-map-remove this key) (constructor:persistent-sorted-map (persistent-red-black-tree-remove (persistent-sorted-map-tree this) key)))]) (struct persistent-sorted-submap abstract-immutable-sorted-map (delegate key-range) #:constructor-name constructor:persistent-sorted-submap #:methods gen:sorted-map [(define/generic generic-sorted-map-key-comparator sorted-map-key-comparator) (define (get-delegate this) (persistent-sorted-submap-delegate this)) (define (get-tree this) (persistent-sorted-map-tree (get-delegate this))) (define (get-range this) (persistent-sorted-submap-key-range this)) (define (in-sorted-map this #:descending? [descending? #false]) (in-persistent-red-black-subtree (get-tree this) (get-range this) #:descending? descending?)) (define (in-sorted-map-keys this #:descending? [descending? #false]) (in-persistent-red-black-subtree-keys (get-tree this) (get-range this) #:descending? descending?)) (define (in-sorted-map-values this #:descending? [descending? #false]) (in-persistent-red-black-subtree-values (get-tree this) (get-range this) #:descending? descending?)) (define (sorted-map-size this) (persistent-red-black-subtree-size (get-tree this) (get-range this))) (define (sorted-map-key-comparator this) (persistent-red-black-tree-comparator (get-tree this))) (define (sorted-map-contains-key? this key) (sorted-submap-contains-key? (get-delegate this) (get-range this) key)) (define (sorted-map-contains-value? this value) (for/or ([v (in-persistent-red-black-subtree-values (get-tree this) (get-range this))]) (equal? v value))) (define (sorted-map-contains-entry? this e) (sorted-submap-contains-entry? (get-delegate this) (get-range this) e)) (define (sorted-map-get this key [failure-result (default-sorted-map-lookup-failure-result (name sorted-map-get) key this)]) (sorted-submap-get (get-delegate this) (get-range this) key failure-result)) (define (sorted-map-get-option this key) (sorted-submap-get-option (get-delegate this) (get-range this) key)) (define (sorted-map-get-entry this key [failure-result (default-sorted-map-lookup-failure-result (name sorted-map-get-entry) key this)]) (sorted-submap-get-entry (get-delegate this) (get-range this) key failure-result)) (define (sorted-map-least-key this) (sorted-submap-least-key (get-delegate this) (get-range this))) (define (sorted-map-greatest-key this) (sorted-submap-greatest-key (get-delegate this) (get-range this))) (define (sorted-map-key-less-than this upper-bound) (sorted-submap-key-less-than (get-delegate this) (get-range this) upper-bound)) (define (sorted-map-key-greater-than this lower-bound) (sorted-submap-key-greater-than (get-delegate this) (get-range this) lower-bound)) (define (sorted-map-key-at-most this upper-bound) (sorted-submap-key-at-most (get-delegate this) (get-range this) upper-bound)) (define (sorted-map-key-at-least this lower-bound) (sorted-submap-key-at-least (get-delegate this) (get-range this) lower-bound)) (define (sorted-map-least-entry this) (sorted-submap-least-entry (get-delegate this) (get-range this))) (define (sorted-map-greatest-entry this) (sorted-submap-greatest-entry (get-delegate this) (get-range this))) (define (sorted-map-entry-less-than this upper-key-bound) (sorted-submap-entry-less-than (get-delegate this) (get-range this) upper-key-bound)) (define (sorted-map-entry-greater-than this lower-key-bound) (sorted-submap-entry-greater-than (get-delegate this) (get-range this) lower-key-bound)) (define (sorted-map-entry-at-most this upper-key-bound) (sorted-submap-entry-at-most (get-delegate this) (get-range this) upper-key-bound)) (define (sorted-map-entry-at-least this lower-key-bound) (sorted-submap-entry-at-least (get-delegate this) (get-range this) lower-key-bound)) (define (sorted-map-keys this) (make-immutable-sorted-map-key-set this)) (define (sorted-map-entries this) (make-immutable-sorted-map-entry-set this)) (define/guard (sorted-submap this key-range) (define delegate (get-delegate this)) (define original-range (get-range this)) (guard (range-overlaps? original-range key-range) else (empty-sorted-map (generic-sorted-map-key-comparator delegate))) (define intersection (range-intersection original-range key-range)) (constructor:persistent-sorted-submap delegate intersection)) (define (sorted-map-reverse this) (make-reversed-immutable-sorted-map this))] #:methods gen:immutable-sorted-map [(define (sorted-map-put this key value) (define tree (persistent-sorted-map-tree this)) (constructor:persistent-sorted-map (persistent-red-black-tree-insert tree key value))) (define (sorted-map-put-all this entries) (define tree (for/fold ([tree (persistent-sorted-map-tree this)]) ([e entries]) (persistent-red-black-tree-insert tree (entry-key e) (entry-value e)))) (constructor:persistent-sorted-map tree)) (define (sorted-map-put-if-absent this key value) (define tree (persistent-sorted-map-tree this)) (match (persistent-red-black-tree-get-option tree key) [(== absent) (success (sorted-map-put this key value))] [(present previous-value) (failure previous-value)])) (define (sorted-map-update this key updater [failure-result (default-sorted-map-lookup-failure-result (name sorted-map-update) key this)]) (define tree (persistent-red-black-tree-update tree key updater failure-result)) (constructor:persistent-sorted-map tree))])
false
ecd81410e9cca9851ada27d2a31120ced49802e7
86d2db451161507789a93b18c8ee671d99afab8a
/goblins/scribblings/intro.scrbl
cf198bb2b546dc82bbd88dcd783a2df80f6b6ebd
[ "Apache-2.0" ]
permissive
spdegabrielle/goblins
45b0d26a05c5fb2116cc8727ef82bed8835d6385
b836e11aa820c7ea43100d18ce71cbf53c9e47cd
refs/heads/master
2022-11-25T18:12:01.975165
2020-03-04T20:30:04
2020-03-04T20:30:04
285,831,618
0
0
null
null
null
null
UTF-8
Racket
false
false
4,868
scrbl
intro.scrbl
#lang scribble/manual @require[scriblib/footnote] @define-footnote[intro-note make-intro-note] @title[#:tag "intro"]{What is Goblins?} Goblins is a quasi-functional distributed object system, mostly following the @seclink["what-is-an-actor"]{actor model}. Its design allows for object-capability security, allowing for safe distributed programming environments.@intro-note{ By now you may have noticed that we've used the term "object" twice... we may not be meaning the term the way you think! In the early to mid 2000s, "object oriented programming" was all the rage such that being reprimanded by an OOP zealots for not fitting into their worldviews was common. These days the pendelum has swung in the opposite direction such that one is more likely to be reprimanded by @emph{anti}-object-oriented zealots. In fact, @link["http://www.mumble.net/~jar/articles/oo.html"]{ "Object Oriented" has many different meanings}. If you have PTSD from complex Java or C++ class structures, please read on... our use of the term doesn't involve any fundamental form of "classes" or "inheritance". Furthermore, "object" in "object capability security" refers to security based on holding onto references to an external entity. What you hold onto is what you can do. Even most purely functional languages can fit into that definition, and so too can most functional languages follow object capability security.} Its design is inspired by the @link["http://www.erights.org/"]{E programming language} and by the observation that @link["http://mumble.net/~jar/pubs/secureos/secureos.html"]{ lambda is already the ultimate security mechanism} (ie, normal argument-passing in programs, if taken seriously/purely, is already all the security system we need). @section{What works so far?} @itemlist[ @item{@bold{Quasi-functional object system:} Users hold on to references of objects/actors, but objects/actors are just procedures. Rather than directly mutating, objects/actors can specify that they should "become" a new version of themselves when they handle the next invocation.} @item{@bold{Transactional updates:} Changes happen within a transaction. If an unhandled exception occurs, we can "roll back" history as if the message never happened, avoiding confused state changes throughout the system.} @item{@bold{Time travel:} We can snapshot old revisions of the system and interact with them.} @item{@bold{Asynchronous programming with sophisticated promise chaining:} Asynchronous message passing with promises is supported. Promises work such that there's no need to wait for promises to resolve before interacting... you can communicate with the future that doesn't even yet exist! Sent a message to that remote car factory asking for a new car? Why wait for the car to be delivered... you can send it a drive message at the same time, and both messages can be delivered across the network in a single hop.} @item{@bold{Communicating event loops:} Objects across multiple event loops (aka "vats") can communicate, whether in the same OS process or (soon) across the network.} @item{@bold{Synchronous and asynchronous behavior, integrated but distinguished*:} Both synchronous and asynchronous programming is supported, but only objects in the same "vat" (event loop) can perform synchronous immediate calls. All objects can perform asynchronous calls against each other.} @item{@bold{A library, not a language:} Goblins is itself a library that can be utilized with nearly any Racket program, including many Racket #langs. (However, some languages may be provided or encouraged for additional security / convenience later).} @item{@bold{Object capability security:} Goblins itself is built for object capability (ocap) security, which is to say that you can only operate on the references you have access to. Goblins embraces and builds upon this foundation. (However, full ocap security will require a safer module system than the one Racket provides; coming eventually.)}] @section{What's on its way?} @itemlist[ @item{@bold{Fully distributed, networked, secure p2p communication:} In the future, it will be possible to communicate with other objects over a network connection. Distributed object interactions is safe because of ocap security guarantees.} @item{@bold{A separate module system:} While not part of Goblins itself, a future project named "Spritely Dungeon" will help close the loop on ocap security for Racket.}] @make-intro-note[]
false
f0d925453b3045299b5d5203741e718016089a14
b442cf7ea03ae6f1ed2a04b7941901df4ce07419
/main.rkt
461260038059df4e05759ad37ad2182f0708d9de
[]
no_license
bksaiki/generic-flonum
88e2bca01aa8adf5e49755235efdc1fcfe97b2dd
490cd103437876ff98413f34f2b8c845f89fa2ea
refs/heads/master
2023-08-31T17:04:30.089137
2021-10-31T04:09:26
2021-10-31T04:09:26
318,709,650
2
0
null
null
null
null
UTF-8
Racket
false
false
187
rkt
main.rkt
#lang racket (require "private/gfl-interface.rkt" "private/gfl-consts.rkt") (provide (all-from-out "private/gfl-interface.rkt" "private/gfl-consts.rkt"))
false
08b1d85988badd4a51c7f93a655cb37095fa357c
49d98910cccef2fe5125f400fa4177dbdf599598
/exercism.io/word-count/word-count-test.rkt
19e167d014f2cf5c68d96cb5dc0cc20e05ff0175
[ "MIT" ]
permissive
lojic/LearningRacket
0767fc1c35a2b4b9db513d1de7486357f0cfac31
a74c3e5fc1a159eca9b2519954530a172e6f2186
refs/heads/master
2023-01-11T02:59:31.414847
2023-01-07T01:31:42
2023-01-07T01:31:42
52,466,000
30
4
null
null
null
null
UTF-8
Racket
false
false
1,936
rkt
word-count-test.rkt
#lang racket (require "word-count.rkt") (module+ test (require rackunit rackunit/text-ui) (define-binary-check (hashes-equal? actual expected) (for/and ([k (in-list (hash-keys actual))]) (and (hash-has-key? expected k) (equal? (hash-ref actual k) (hash-ref expected k))))) (define suite (test-suite "Tests for the word-count exercise" (hashes-equal? (word-count "word") '#hash(("word" . 1)) "one word") (hashes-equal? (word-count "one of each") '#hash(("one" . 1) ("of" . 1) ("each" . 1)) "one of each") (hashes-equal? (word-count "one fish two fish red fish blue fish") '#hash(("one" . 1) ("fish" . 4) ("two" . 1) ("red" . 1) ("blue" . 1)) "multiple occurrences") (hashes-equal? (word-count "car : carpet as java : javascript!!&@$%^&") '#hash(("car" . 1) ("carpet" . 1) ("as" . 1) ("java" . 1) ("javascript" . 1)) "ignores punctuation") (hashes-equal? (word-count "testing 1 2 testing") '#hash(("testing" . 2) ("1" . 1) ("2" . 1)) "include numbers") (hashes-equal? (word-count "go Go GO") '#hash(("go" . 3)) "mixed case") (hashes-equal? (word-count "wait for it") '#hash(("wait" . 1) ("for" . 1) ("it" . 1)) "multiple spaces") (hashes-equal? (word-count "rah rah ah ah ah\nroma roma ma\nga ga oh la la\nwant your bad romance") '#hash(("rah" . 2) ("ah" . 3) ("roma" . 2) ("ma" . 1) ("ga" . 2) ("oh" . 1) ("la" . 2) ("want" . 1) ("your" . 1) ("bad" . 1) ("romance" . 1)) "newlines"))) (run-tests suite))
false
d9d197e89b980eabe501f39c59b1235dc6c3e2bb
0d4287c46f85c3668a37bcb1278664d3b9a34a23
/陈乐天/Week1/homework1-d.rkt
8e1666a13469dff4d242fc64d6b1600fbbfb7216
[]
no_license
siriusmax/Racket-Helper
3e55f8a69bf005b56455ab386e2f1ce09611a273
bf85f38dd8d084db68265bb98d8c38bada6494ec
refs/heads/master
2021-04-06T02:37:14.261338
2017-12-20T04:05:51
2017-12-20T04:05:51
null
0
0
null
null
null
null
UTF-8
Racket
false
false
654
rkt
homework1-d.rkt
#lang racket (define (loop answer now) (define new (- (+ (list-ref answer (- now 1)) (* 4 (list-ref answer (- now 2))) (* (list-ref answer (- now 3)) 5) (* (list-ref answer (- now 5)) (list-ref answer (- now 5)) (list-ref answer (- now 5)))) (* 2 (list-ref answer (- now 4)) (list-ref answer (- now 4))))) (if (= now 51) (dowork answer) (loop (append answer (list new)) (+ now 1)))) (define (dowork answer) (let ((n (read))) (if (eq? n eof) (void) (begin (display (list-ref answer n)) (display #\newline) (dowork answer))))) (loop (list 1 1 1 1 1) 5)
false
b4d3289e506c0c83f9c7e90b385de45012b5496d
04d3f2a238af3f50bff5a2fe2b5d8113cdceace8
/software/english.rkt
ec731fc14fb6c5672442543fd45453bd6274c933
[]
no_license
neu-cs4800s13/public
8571de8ad77ecfcd588b7cf89f508defcb3876f1
97f3bddba2d1ab44a0df32d8372b9861916ac615
refs/heads/master
2021-01-19T13:46:16.689367
2013-04-16T21:20:42
2013-04-16T21:20:42
7,541,574
1
1
null
null
null
null
UTF-8
Racket
false
false
1,794
rkt
english.rkt
#lang racket (provide integer->english integer->comma-separated) (define (integer->english n) (with-output-to-string (lambda {} (display-english-integer n)))) (define (integer->comma-separated n) (with-output-to-string (lambda {} (display-comma-separated-integer n)))) (define (display-comma-separated-integer n) (when (negative? n) (display "-")) (display-comma-separated-natural-number (abs n))) (define (display-english-integer n) (when (negative? n) (display "-")) (display-english-natural-number (abs n))) (define (display-english-natural-number n [suffix ""] [suffixes suffix-words]) (cond [(empty? suffixes) (display-comma-separated-natural-number n) (display suffix)] [else (define-values {thousands ones} (quotient/remainder n 1000)) (cond [(zero? thousands) (display ones) (display suffix)] [else (display-english-natural-number thousands (string-append " " (first suffixes)) (rest suffixes)) (unless (zero? ones) (display " ") (display ones) (display suffix))])])) (define (display-comma-separated-natural-number n) (define-values {thousands ones} (quotient/remainder n 1000)) (cond [(zero? thousands) (display n)] [else (display-comma-separated-natural-number thousands) (define-values {tens just-ones} (quotient/remainder ones 10)) (define-values {just-hundreds just-tens} (quotient/remainder tens 10)) (display ",") (display just-hundreds) (display just-tens) (display just-ones)])) (define suffix-words '["thousand" "million" "billion" "trillion" "quadrillion" "quintillion"])
false
135a85137eda75cb63d79ab0b7c1454ee57429e7
1de827c748e548c119c8407731bb0d5f85217270
/private/time-value.rkt
25d84750067b4eabbca1f77c99ca41acd8fd3c55
[]
no_license
iitalics/-lang-musiclibrary
254856c2a70b605b05ac5cfdad7e8efdbe036477
8bf7b7850f4e508aa502166b062f7c6ec6962deb
refs/heads/master
2020-06-12T16:40:32.829671
2019-09-07T22:58:52
2019-09-07T22:58:52
194,361,339
2
0
null
null
null
null
UTF-8
Racket
false
false
2,651
rkt
time-value.rkt
#lang racket/base (require racket/contract) (provide time-value? (contract-out [time-value->seconds (time-value? . -> . real?)] [time-value->milliseconds (time-value? . -> . exact-nonnegative-integer?)])) (require racket/match (for-syntax racket/base)) (module+ test (require rackunit)) ;; --------------------------------------------------------------------------------------- ;; time-value (define TIME-VALUE-REGEXP ; tv ::= [d]d:dd:dd[.d+] | [d]d:dd[.d+] #px"^((\\d{1,2}):(\\d{2}):(\\d{2})|(\\d{1,2}):(\\d{2}))(.\\d+)?$") (define (time-value? x) (or (and (real? x) (not (negative? x))) (and (string? x) (regexp-match? TIME-VALUE-REGEXP x)) (and (symbol? x) (regexp-match? TIME-VALUE-REGEXP (symbol->string x))))) ;; time-value -> real (define (time-value->seconds x) (cond [(number? x) x] [(symbol? x) (parse-time (symbol->string x))] [else (parse-time x)])) ;; time-value -> nat (define (time-value->milliseconds x) (inexact->exact (round (* 1000 (time-value->seconds x))))) ;; string (matching TIME-VALUE-REGEXP) -> real (define (parse-time str) (define-values [hr mn sc frac] (match (regexp-match TIME-VALUE-REGEXP str) [(list _ _ #f #f #f mn sc frac) (values "0" mn sc (or frac "0"))] [(list _ _ hr mn sc #f #f frac) (values hr mn sc (or frac "0"))])) (+ (* 60 60 (string->number hr)) (* 60 (string->number mn)) (* (string->number sc)) (string->number frac))) (module+ test (check-equal? (time-value->milliseconds '0.5) 500) (check-equal? (time-value->milliseconds '1/3) 333) (check-equal? (time-value->milliseconds '20) (* 1000 20)) (check-equal? (time-value->milliseconds '12:20) (* 1000 (+ (* 12 60) 20))) (check-equal? (time-value->milliseconds '1:23:20.5) (+ 500 (* 1000 (+ (* 1 60 60) (* 23 60) 20)))) (check-equal? (time-value->milliseconds '13:45:17) (* 1000 (+ (* 13 60 60) (* 45 60) 17))) (for ([tv (in-list '(0.5 20 1:20 12:23 12:23.1 1:00:00 3:82:10.501))]) (check-true (time-value? tv)) (check-= (/ (time-value->milliseconds tv) 1000) (time-value->seconds tv) 0.0001 (format "(time-value->X ~a)" tv))) (check-false (time-value? "1:5")) (check-false (time-value? "12:3:45")) (check-false (time-value? "123")) (check-false (time-value? ".5")))
false
fef2156eb4fbd35b98190f2cf85ace4d5f2befdd
0bd832b9b372ee7d4877e99b68536c15a7f7c9c9
/Chp2/data-directed-programming.rkt
3171bcb75ff7282cbe6068ce3af8f7373ad95947
[]
no_license
jwilliamson1/schemer
eff9c10bcbcdea9110a44c80769a0334119b3da4
c2f9743392652664f1ff5687819f040e724c8436
refs/heads/master
2022-01-06T14:52:10.638822
2021-12-31T21:32:22
2021-12-31T21:32:22
75,143,723
0
0
null
2020-11-11T13:11:47
2016-11-30T02:37:55
Racket
UTF-8
Racket
false
false
6,731
rkt
data-directed-programming.rkt
#lang racket (define *the-table* (make-hash));make THE table (define (put key1 key2 value) (hash-set! *the-table* (list key1 key2) value));put (define (get key1 key2) (hash-ref *the-table* (list key1 key2) #f));get (define (square x)(* x x)) (define (attach-tag type-tag contents) (cons type-tag contents)) (define (type-tag datum) (if (pair? datum) (car datum) (error "Bad tagged datum: TYPE-TAG" datum))) (define (contents datum) (if (pair? datum) (cdr datum) (error "Bad tagged datum: CONTENTS" datum))) (define (install-rectangular-package) ;; internal procedures (define (real-part z) (car z)) (define (imag-part z) (cdr z)) (define (make-from-real-imag x y) (cons x y)) (define (magnitude z) (sqrt (+ (square (real-part z)) (square (imag-part z))))) (define (angle z) (atan (imag-part z) (real-part z))) (define (make-from-mag-ang r a) (cons (* r (cos a)) (* r (sin a)))) ;; interface to the rest of the system (define (tag x) (attach-tag 'rectangular x)) (put 'real-part '(rectangular) real-part) (put 'imag-part '(rectangular) imag-part) (put 'magnitude '(rectangular) magnitude) (put 'angle '(rectangular) angle) (put 'make-from-real-imag 'rectangular (lambda (x y) (tag (make-from-real-imag x y)))) (put 'make-from-mag-ang 'rectangular (lambda (r a) (tag (make-from-mag-ang r a)))) 'done) (install-rectangular-package) (define (install-polar-package) ;; internal procedures (define (magnitude z) (car z)) (define (angle z) (cdr z)) (define (make-from-mag-ang r a) (cons r a)) (define (real-part z) (* (magnitude z) (cos (angle z)))) (define (imag-part z) (* (magnitude z) (sin (angle z)))) (define (make-from-real-imag x y) (cons (sqrt (+ (square x) (square y))) (atan y x))) ;; interface to the rest of the system (define (tag x) (attach-tag 'polar x)) (put 'real-part '(polar) real-part) (put 'imag-part '(polar) imag-part) (put 'magnitude '(polar) magnitude) (put 'angle '(polar) angle) (put 'make-from-real-imag 'polar (lambda (x y) (tag (make-from-real-imag x y)))) (put 'make-from-mag-ang 'polar (lambda (r a) (tag (make-from-mag-ang r a)))) 'done) (install-polar-package) (define (apply-generic op . args) (let ((type-tags (map type-tag args))) (let ((proc (get op type-tags))) (if proc (apply proc (map contents args)) (error "No method for these types: APPLY-GENERIC" (list op type-tags)))))) (define (real-part z) (apply-generic 'real-part z)) (define (imag-part z) (apply-generic 'imag-part z)) (define (magnitude z) (apply-generic 'magnitude z)) (define (angle z) (apply-generic 'angle z)) (define (make-from-real-imag x y) ((get 'make-from-real-imag 'rectangular) x y)) (define (make-from-mag-ang r a) ((get 'make-from-mag-ang 'polar) r a)) ;test complex number package (define rectangular1 (make-from-real-imag 5 3)) rectangular1 (define samePolar (make-from-mag-ang (magnitude rectangular1)(angle rectangular1))) samePolar (define backToRect (make-from-real-imag (real-part samePolar)(imag-part samePolar))) backToRect ;cannot add same-variable and number because they don't have operators (define (install-deriv-package) (define (=number? exp num) (and (number? exp) (= exp num))) (define (variable? x) (symbol? x)) (define (same-variable? v1 v2) (and (variable? v1) (variable? v2) (eq? v1 v2))) (define (addend s) (car s)) (define (augend s) (let ((a (cdr s))) (if (= (length a) 1) (car a) (make-sum-list a)))) (define (make-sum-list l) (if (= (length l) 2) (list '+ (car l) (cadr l)) (make-sum (car l) (make-sum-list (cdr l))))) (define (multiplier p) (car p)) (define (multiplicand p) (let ((m (cdr p))) (if (= (length m) 1) (car m) (make-product-list m)))) (define (make-sum a1 a2) (cond ((=number? a1 0) a2) ((=number? a2 0) a1) ((and (number? a1) (number? a2)) (+ a1 a2)) (else (make-sum-list (list a1 a2))))) (define (make-product-list l) (displayln l) (if (= (length l) 2) (list '* (car l) (cadr l)) (make-product (car l) (make-product-list (cdr l))))) (define (make-product m1 m2) (cond ((or (=number? m1 0) (=number? m2 0)) 0) ((=number? m1 1) m2) ((=number? m2 1) m1) ((and (number? m1) (number? m2)) (* m1 m2)) (else (make-product-list (list m1 m2))))) (define (make-operand-list l oper make-operand-func) (if (= (length l) 2) (list oper (car l) (cadr l)) (make-operand-func (car l) (make-operand-list (cdr l) oper make-operand-func)))) (define (deriv-sum exp var) (make-sum (deriv (addend exp) var) (deriv (augend exp) var))) (define (deriv-product exp var) (make-sum (make-product (multiplier exp) (deriv (multiplicand exp) var)) (make-product (deriv (multiplier exp) var) (multiplicand exp)))) (define (base e) (car e)) (define (exponent e) (cadr e)) (define (make-exponentiation b e) (cond((and (=number? b 0)(=number? e 0))error "Zero to the zeroth power is undefined.") ((=number? e 0) 1) ((=number? e 1) b) ((and (number? b) (number? e)) (expt b e)) (else (list '^ b e)))) (define (deriv-exponentiation expr var) (make-product (make-product (exponent expr) (make-exponentiation (base expr) (- (exponent expr) 1))) (deriv (base expr) var))) (define (operator exp) (car exp)) (define (operands exp) (cdr exp)) (define (deriv exp var) (cond ((number? exp) 0) ((variable? exp) (if (same-variable? exp var) 1 0)) (else ((get 'deriv (operator exp)) (operands exp) var)))) (put 'deriv '+ deriv-sum) (put 'deriv '* deriv-product) (put 'deriv '^ deriv-exponentiation) (put 'deriv 'deriv deriv) 'done) (install-deriv-package) (define (deriv exp var) ((get 'deriv 'deriv) exp var)) (deriv '(+ x 3) 'x) ;1 (deriv '(* x y) 'x) ; y (deriv '(* x 3 y) 'x); 3 * y (deriv '(* (* y x)(+ x 3)) 'x) (deriv '(+ (* a (^ x 2))(* b x) c) 'x) (deriv '(^ x (^ x 9)) 'x)
false
cd94684abc92e108839aba16abe4a10632228bc2
5bbc152058cea0c50b84216be04650fa8837a94b
/experimental/unsafe/data/usuffixtree.rktd
f010f2e961fcaa9bfd0d92cc779ed7d2d12e4ae6
[]
no_license
nuprl/gradual-typing-performance
2abd696cc90b05f19ee0432fb47ca7fab4b65808
35442b3221299a9cadba6810573007736b0d65d4
refs/heads/master
2021-01-18T15:10:01.739413
2018-12-15T18:44:28
2018-12-15T18:44:28
27,730,565
11
3
null
2018-12-01T13:54:08
2014-12-08T19:15:22
Racket
UTF-8
Racket
false
false
1,014
rktd
usuffixtree.rktd
;; #(-i 5 -o nodata-suffixtree.rktd suffixtree) #((2619 2632 2607 2578 2630) (12719 12700 12817 12804 12910) (31260 31581 31093 31577 31361) (32687 32416 31995 32129 32297) (2671 2643 2661 2581 2659) (12834 12996 12807 12867 12897) (30734 31201 30889 31048 31163) (32455 32132 32116 32193 32301) (4559 4599 4584 4532 4609) (14608 14708 14732 14818 14537) (32706 32853 32966 33054 32928) (33896 34017 33730 34074 34122) (5091 4870 4696 4717 4697) (15416 15532 15430 16606 15590) (37876 33197 36642 36092 33068) (36301 36414 36719 36613 39399) (19682 19535 19678 19615 19699) (21427 21406 21571 21835 21451) (8981 8957 8888 9108 9082) (3364 3384 3359 3521 3424) (17331 17233 17506 17668 17555) (21608 21742 21367 21619 21404) (8101 8127 8167 8132 8218) (3269 3263 3304 3231 3243) (16248 16360 16253 16250 16488) (20332 22241 20227 20301 20655) (6958 6920 6913 6959 7076) (1972 1978 2006 1986 1976) (16315 16223 18734 16186 16222) (20398 20454 20755 21981 21773) (6996 6947 6913 6898 7862) (1989 2003 1996 1987 1993))
false
7b3ca10ec39a9ad59ed0e4d1fb3a04dba659dd0e
fd11dc4e770cc7d57de27d0b5c7cd08888b47530
/intro-slide/lib/markdown.rkt
4ffe2b04fe5ca402dac60cde8f92ceae70336151
[]
no_license
shhyou/experiment-with-slides
a474d480ab972a0363a51488d9703aa699a1d1af
d571fcf11654487686a6bd0c70fa645dfde0305e
refs/heads/main
2023-07-28T03:15:40.694633
2021-09-10T13:40:16
2021-09-10T13:40:34
404,955,678
0
0
null
null
null
null
UTF-8
Racket
false
false
2,084
rkt
markdown.rkt
#lang racket/base (require racket/match racket/hash racket/pretty txexpr (only-in markdown parse-markdown) "embed.rkt") (provide DEBUG-ENRICH? enrich-with-markdown) (define DEBUG-ENRICH? (make-parameter #f)) (define (enrich-with-markdown tx) (match-define (list tx-id embedding) (parameterize ([current-embedding (make-hash)]) (define tx-id (to-string/embed-txexpr tx)) (list tx-id (current-embedding)))) (define verbatim-embedding (for/hash ([(embed-id x) (in-hash embedding)] #:when (string-ci=? "true" (attr-ref (get-attrs x) 'verbatim (λ () "false")))) (values embed-id x))) (define enriched-embedding (for/hash ([(embed-id x) (in-hash embedding)] #:when (not (string-ci=? "true" (attr-ref (get-attrs x) 'verbatim (λ () "false"))))) (when (DEBUG-ENRICH?) (printf "~a:~a\n" embed-id (get-tag x)) (printf " from: ~s\n" (get-elements x))) (define all-str (apply string-append (get-elements x))) (define enriched-elements (parse-markdown all-str)) (when (DEBUG-ENRICH?) (printf " to : ~s\n" enriched-elements)) (values embed-id (txexpr (get-tag x) (get-attrs x) enriched-elements)))) (when (DEBUG-ENRICH?) (port-count-lines! (current-output-port)) (pretty-write embedding) (printf "PARSED:\n ") (pretty-write enriched-embedding)) (define full-embedding (hash-union verbatim-embedding enriched-embedding)) (define enriched-unembedded-tx (parameterize ([current-embedding full-embedding]) (unembed-txexpr (hash-ref enriched-embedding tx-id)))) (when (DEBUG-ENRICH?) (printf "FINAL:\n ") (pretty-write enriched-unembedded-tx)) enriched-unembedded-tx)
false
b8e37acd3799d8cb07d36ff8e755de2da27a5190
c31f57f961c902b12c900ad16e5390eaf5c60427
/data/programming_languages/scheme/input.rkt
d572c05f00ceaa51bcf6c165eb30ca025dbccb16
[]
no_license
klgraham/deep-learning-with-pytorch
ccc7602d9412fb335fe1411ba31641b9311a4dba
4373f1c8be8e091ea7d4afafc81dd7011ef5ca95
refs/heads/master
2022-10-24T01:48:46.160478
2017-03-13T20:07:03
2017-03-13T20:07:03
79,877,434
0
1
null
2022-10-02T20:42:36
2017-01-24T04:12:24
C
UTF-8
Racket
false
false
15,514
rkt
input.rkt
#lang racket/base (require racket/contract racket/list web-server/http web-server/private/xexpr (only-in "lib.rkt" xexpr-forest/c formlet/c pure cross)) ;; Convert UTF-8 bytes to string when needed. (define (coerce-string/utf-8 bstr-or-str) (if (bytes? bstr-or-str) (bytes->string/utf-8 bstr-or-str) bstr-or-str)) ; Low-level (define (next-name i) (values (format "input_~a" i) (add1 i))) (define (make-input*/forest render) (lambda (i) (let-values ([(w i) (next-name i)]) (define wb (string->bytes/utf-8 w)) (values (render w) (lambda (env) (for/list ([b (in-list env)] #:when (bytes=? wb (binding-id b))) b)) i)))) (define (make-input* render) (make-input*/forest (lambda (w) (list (render w))))) (define (make-input render) (lambda (i) (let-values ([(w i) (next-name i)]) (values (list (render w)) (lambda (env) (bindings-assq (string->bytes/utf-8 w) env)) i)))) (define binding:form-required (pure (lambda (bf) (if (binding:form? bf) (binding:form-value bf) (error 'formlets "Missing required field"))))) (define (binding:form/default default) (pure (lambda (bf) (if (binding:form? bf) (binding:form-value bf) default)))) (provide/contract [make-input* ((string? . -> . pretty-xexpr/c) . -> . (formlet/c (listof binding?)))] [make-input ((string? . -> . pretty-xexpr/c) . -> . (formlet/c (or/c false/c binding?)))] #;[binding:form-required (formlet/c (binding? . -> . bytes?))] #;[binding:form/default (bytes? . -> . (formlet/c (binding? . -> . bytes?)))]) ; HTML Spec (define (input #:type [type "text"] #:value [value #f] #:size [size #f] #:max-length [max-length #f] #:read-only? [read-only? #f] #:attributes [attrs empty]) (make-input (lambda (n) (list 'input (list* (list 'name n) (list 'type type) (append (filter list? (list (and value (list 'value (coerce-string/utf-8 value))) (and size (list 'size (number->string size))) (and max-length (list 'maxlength (number->string max-length))) (and read-only? (list 'readonly "true")))) attrs)))))) (define (text-input #:value [value #f] #:size [size #f] #:max-length [max-length #f] #:read-only? [read-only? #f] #:attributes [attrs empty]) (input #:type "text" #:value value #:size size #:max-length max-length #:read-only? read-only? #:attributes attrs)) (define (password-input #:value [value #f] #:size [size #f] #:max-length [max-length #f] #:read-only? [read-only? #f] #:attributes [attrs empty]) (input #:type "password" #:value value #:size size #:max-length max-length #:read-only? read-only? #:attributes attrs)) (define (checkbox value checked? #:attributes [attrs empty]) (input #:type "checkbox" #:value value #:attributes (if checked? (append (list (list 'checked "true")) attrs) attrs))) (define (radio value checked? #:attributes [attrs empty]) (input #:type "radio" #:value value #:attributes (if checked? (append (list (list 'checked "true")) attrs) attrs))) (define (input-group l #:kind kind #:attributes [attrs (λ (x) empty)] #:checked? [checked? (λ (x) #f)] #:display [display (λ (x) x)] #:wrap [wrap (λ (x y) (list x y))]) (define value->element (make-hasheq)) (define i 0) (define (remember! e) (define this-i (begin0 i (set! i (add1 i)))) (hash-set! value->element this-i e)) (define (recall i) (hash-ref value->element i (λ () (error 'input-group "Invalid selection: ~e" i)))) (for ([e l]) (remember! e)) (define (radio-first l) (if (string=? kind "radio") (first l) l)) (cross (pure (lambda (bs) (radio-first (map (compose recall string->number bytes->string/utf-8 binding:form-value) bs)))) (make-input*/forest (lambda (name) (apply append (for/list ([vn (in-range i)]) (define e (hash-ref value->element vn)) (define v (number->string vn)) (wrap `(input ([name ,name] [type ,kind] [value ,v] ,@(if (checked? e) '([checked "true"]) empty) ,@(attrs e))) (display e)))))))) (define (radio-group l #:attributes [attrs (λ (x) empty)] #:checked? [checked? (λ (x) #f)] #:display [display (λ (x) x)] #:wrap [wrap (λ (x y) (list x y))]) (input-group l #:kind "radio" #:attributes attrs #:checked? checked? #:display display #:wrap wrap)) (define (checkbox-group l #:attributes [attrs (λ (x) empty)] #:checked? [checked? (λ (x) #f)] #:display [display (λ (x) x)]) (input-group l #:kind "checkbox" #:attributes attrs #:checked? checked? #:display display)) (define (submit value #:attributes [attrs empty]) (input #:type "submit" #:value value #:attributes attrs)) (define (reset value #:attributes [attrs empty]) (input #:type "reset" #:value value #:attributes attrs)) (define (file-upload #:attributes [attrs empty]) (input #:type "file" #:attributes attrs)) (define (hidden value #:attributes [attrs empty]) (input #:type "hidden" #:value value #:attributes attrs)) (define (button type text #:disabled [disabled #f] #:value [value #f] #:attributes [attrs empty]) (make-input (λ (n) (list 'button (list* (list 'name n) (list 'type (coerce-string/utf-8 type)) (append (filter list? (list (and disabled (list 'disabled (if disabled "true" "false"))) (and value (list 'value (coerce-string/utf-8 value))))) attrs)) (coerce-string/utf-8 text))))) (define (img alt src #:height [height #f] #:longdesc [ldesc #f] #:usemap [map #f] #:width [width #f] #:attributes [attrs empty]) (make-input (λ (n) (list 'img (list* (list 'name n) (list 'src (coerce-string/utf-8 src)) (list 'alt (coerce-string/utf-8 alt)) (append (filter list? (list (and height (list 'height (number->string height))) (and ldesc (list 'longdesc (coerce-string/utf-8 ldesc))) (and map (list 'usemap (coerce-string/utf-8 map))) (and width (list 'width (number->string width))))) attrs)))))) (define (multiselect-input l #:attributes [attrs empty] #:multiple? [multiple? #t] #:selected? [selected? (λ (x) #f)] #:display [display (λ (x) x)]) (define value->element (make-hasheq)) (define i 0) (define (remember! e) (define this-i (begin0 i (set! i (add1 i)))) (hash-set! value->element this-i e)) (define (recall i) (hash-ref value->element i (λ () (error 'input-select* "Invalid selection: ~e" i)))) (for ([e l]) (remember! e)) (cross (pure (lambda (bs) (map (compose recall string->number bytes->string/utf-8 binding:form-value) bs))) (make-input* (lambda (name) `(select (,@(if multiple? '([multiple "true"]) empty) [name ,name] ,@attrs) ,@(for/list ([vn (in-range i)]) (define e (hash-ref value->element vn)) (define v (number->string vn)) `(option ([value ,v] ,@(if (selected? e) '([selected "true"]) empty)) ,(display e)))))))) (define (select-input l #:attributes [attrs empty] #:selected? [selected? (λ (x) #f)] #:display [display (λ (x) x)]) (cross (pure first) (multiselect-input l #:attributes attrs #:multiple? #f #:selected? selected? #:display display))) (define (textarea-input #:value [value #f] #:attributes [attrs empty] #:rows [rows #f] #:cols [cols #f]) (make-input (lambda (n) (list 'textarea (list* (list 'name n) (append (filter list? (list (and rows (list 'rows (number->string rows))) (and cols (list 'cols (number->string cols))))) attrs)) (if value (coerce-string/utf-8 value) ""))))) (provide/contract [input (() (#:type string? #:value (or/c false/c bytes? string?) #:max-length (or/c false/c exact-nonnegative-integer?) #:read-only? boolean? #:attributes (listof (list/c symbol? string?))) . ->* . (formlet/c (or/c false/c binding?)))] [text-input (() (#:value (or/c false/c bytes? string?) #:size (or/c false/c exact-nonnegative-integer?) #:max-length (or/c false/c exact-nonnegative-integer?) #:read-only? boolean? #:attributes (listof (list/c symbol? string?))) . ->* . (formlet/c (or/c false/c binding?)))] [password-input (() (#:value (or/c false/c bytes? string?) #:size (or/c false/c exact-nonnegative-integer?) #:max-length (or/c false/c exact-nonnegative-integer?) #:read-only? boolean? #:attributes (listof (list/c symbol? string?))) . ->* . (formlet/c (or/c false/c binding?)))] [checkbox (((or/c bytes? string?) boolean?) (#:attributes (listof (list/c symbol? string?))) . ->* . (formlet/c (or/c false/c binding?)))] [radio (((or/c bytes? string?) boolean?) (#:attributes (listof (list/c symbol? string?))) . ->* . (formlet/c (or/c false/c binding?)))] [radio-group ((sequence?) (#:attributes (-> any/c (listof (list/c symbol? string?))) #:checked? (any/c . -> . boolean?) #:display (any/c . -> . pretty-xexpr/c) #:wrap (any/c any/c . -> . xexpr-forest/c)) . ->* . (formlet/c any/c))] [checkbox-group ((sequence?) (#:attributes (-> any/c (listof (list/c symbol? string?))) #:checked? (any/c . -> . boolean?) #:display (any/c . -> . pretty-xexpr/c)) . ->* . (formlet/c (listof any/c)))] [submit (((or/c bytes? string?)) (#:attributes (listof (list/c symbol? string?))) . ->* . (formlet/c (or/c false/c binding?)))] [reset (((or/c bytes? string?)) (#:attributes (listof (list/c symbol? string?))) . ->* . (formlet/c (or/c false/c binding?)))] [file-upload (() (#:attributes (listof (list/c symbol? string?))) . ->* . (formlet/c (or/c false/c binding?)))] [hidden (((or/c bytes? string?)) (#:attributes (listof (list/c symbol? string?))) . ->* . (formlet/c (or/c false/c binding?)))] [img (((or/c bytes? string?) (or/c bytes? string?)) (#:height (or/c false/c exact-nonnegative-integer?) #:longdesc (or/c false/c (or/c bytes? string?)) #:usemap (or/c false/c (or/c bytes? string?)) #:width (or/c false/c exact-nonnegative-integer?) #:attributes (listof (list/c symbol? string?))) . ->* . (formlet/c (or/c false/c binding?)))] [button (((or/c bytes? string?) (or/c bytes? string?)) (#:disabled boolean? #:value (or/c false/c (or/c bytes? string?)) #:attributes (listof (list/c symbol? string?))) . ->* . (formlet/c (or/c false/c binding?)))] [multiselect-input ((sequence?) (#:attributes (listof (list/c symbol? string?)) #:multiple? boolean? #:selected? (any/c . -> . boolean?) #:display (any/c . -> . pretty-xexpr/c)) . ->* . (formlet/c (listof any/c)))] [select-input ((sequence?) (#:attributes (listof (list/c symbol? string?)) #:selected? (any/c . -> . boolean?) #:display (any/c . -> . pretty-xexpr/c)) . ->* . (formlet/c any/c))] [textarea-input (() (#:attributes (listof (list/c symbol? string?)) #:value (or/c false/c (or/c bytes? string?)) #:rows number? #:cols number?) . ->* . (formlet/c (or/c false/c binding?)))]) ; High-level (define (required f) (cross binding:form-required f)) (define (default d f) (cross (binding:form/default d) f)) (define (to-string f) (cross (pure bytes->string/utf-8) f)) (define (to-number f) (cross (pure string->number) f)) (define (to-symbol f) (cross (pure string->symbol) f)) (define (to-boolean f) (cross (pure (lambda (b) (bytes=? b #"on"))) f)) (provide/contract [required ((formlet/c (or/c false/c binding?)) . -> . (formlet/c bytes?))] [default (bytes? (formlet/c (or/c false/c binding?)) . -> . (formlet/c bytes?))] [to-string ((formlet/c bytes?) . -> . (formlet/c string?))] [to-number ((formlet/c string?) . -> . (formlet/c number?))] [to-symbol ((formlet/c string?) . -> . (formlet/c symbol?))] [to-boolean ((formlet/c bytes?) . -> . (formlet/c boolean?))]) ; OLD (define input-string (to-string (required (text-input)))) (define input-int (to-number input-string)) (define input-symbol (to-symbol input-string)) (provide/contract [input-string (formlet/c string?)] [input-int (formlet/c integer?)] [input-symbol (formlet/c symbol?)])
false
f95a0e735ce87e176e0988aa00241296dc7a159c
7759bda0d7e3b45aa77f25657c365b525f22a473
/monadic-eval/paper/09-gc.scrbl
10260b9003a8d54e20d8fab0221888dbcefe5080
[]
no_license
plum-umd/abstracting-definitional-interpreters
89bafe22c8f7d861c43edd2153f7309958b0c398
7a51f429227dd11b371b9a27f83b8aa0f6adb5d3
refs/heads/master
2021-08-19T07:13:31.621906
2017-11-25T04:19:30
2017-11-25T04:19:30
5,044,629
61
2
null
2017-11-25T04:19:31
2012-07-14T04:27:57
TeX
UTF-8
Racket
false
false
7,561
scrbl
09-gc.scrbl
#lang scribble/acmart @acmlarge @(require scriblib/figure scribble/manual scribble/eval "evals.rkt" "bib.rkt") @title[#:tag "s:gc"]{Garbage Collection} As a denouement to our series of examples, we show how to incorporate garbage collection into our definitional abstract interpreter. This example, like store-widening, is the re-creation of a well-known technique: abstract garbage collection @~cite{dvanhorn:Might:2006:GammaCFA} mimics the process of reclaiming unreachable heap addresses as done in garbage-collecting concrete interpreters. While garbage collection in the concrete can largely be considered an implementation detail that doesn't effect the results of computation (modulo pragmatic issues of memory consumption), in the abstract semantics, it can significantly improve the precision of analysis results. This is because store locations mediate joins, and therefore imprecision, in the abstract semantics. If an address can be collected, it avoids a later join that would otherwise be encountered without garbage collection. In the finite-state-machine model, abstract garbage collection is fairly straightforward and closely follows concrete formulations @~cite{dvanhorn:Might:2006:GammaCFA dvanhorn:VanHorn2010Abstracting}. However, incorporating both pushdown control flow and abstract garbage collection has proved rather involved and required new techniques @~cite{dvanhorn:Earl2012Introspective dvanhorn:Johnson2014Pushdown}. The key difficulty for pushdown machine models, which essentially use abstract models that are pushdown automata, is that the usual approach to garbage collection is to crawl the call stack to compute the root set of reachable addresses @~cite{dvanhorn:Morrisett1995Abstract}. Traversing the stack, however, is not something that can be expressed by a pushdown automata. This difficulty is somewhat exacerbated by the definitional interpreter approach in combination with a metalanguage (Racket) that doesn't reify a stack to traverse! Nevertheless, as we demonstrate, this challenge can be overcome to obtain a pushdown, garbage-collecting abstract interpreter. Doing so shows that the definitional abstract interpreter approach also scales to handle so-called @emph{introspective} pushdown analysis that require some level of introspection on the stack @~cite{dvanhorn:Earl2012Introspective dvanhorn:Johnson2014Pushdown}. @figure["f:gc-monad" "Monad Instance with Root Address Set"]{ @filebox[@racket[monad-pdcfa-gc@]]{ @racketblock[ (define-monad (ReaderT (ReaderT (FailT (StateT (NondetT (ReaderT (StateT+ ID)))))))) ]} @filebox[@racket[mrun-pdcfa-gc@]]{ @racketblock[ (define (mrun m) (run-StateT+ ∅ (run-ReaderT ∅ @code:comment{out-$₀, in-$₀} (run-StateT ∅ (run-ReaderT ∅ @code:comment{σ₀, ρ₀} (run-ReaderT (set) m)))))) @code:comment{ψ₀} ]}} Solving the abstract garbage collection problem boils down to answering the following question: how can we track root addresses that are live on the call stack when the call stack is implicitly defined by the metalanguage? The answer is fairly simple: we extend the monad with a set of root addresses. When evaluating compound expressions, we calculate the appropriate root sets for the context. In essence, we render explicit only the addresses of the calling context, while still relying on the metalanguage to implicitly take care of the rest as before. @Figure-ref{f:gc-monad} defines the appropriate monad instance. All that has changed is there is an added reader component, which will be used to model the context's current root set. The use of this added component necessitates a change to the caching and fixed-point calculation, namely we must include the root sets as part of the configuration. Compared with the @racket[ev-cache@] component of @secref{s:cache}, we make a simple adjustment to the first few lines to cache the root set along with the rest of the configuration: @racketblock[ (define (((ev-cache ev₀) ev) e) (do ρ ← ask-env σ ← get-store ψ ← ask-roots ς ≔ (list e ρ σ ψ) ...))] Similarly, for @racket[fix-cache@]: @racketblock[ (define ((fix-cache eval) e) (do ρ ← ask-env σ ← get-store ψ ← ask-roots ς ≔ (list e ρ σ ψ) ...)) ] We can now write a @racket[ev-collect@] component that collects garbage: it asks for the current roots in the context, evaluates an expression to a value, then updates the store after collecting all addresses not reachable from the roots of the context and value: @racketblock[ (define (((ev-collect ev0) ev) e) (do ψ ← ask-roots v ← ((ev0 ev) e) (update-store (gc (set-union ψ (roots-v v)))) (return v))) ] Here, @racket[gc] and @racket[roots-v] are (omitted) helper functions that perform garbage collection and calculate the set of root addresses in a value, respectively. All that remains is to define a component that propagates root sets appropriately from compound expressions to their constituents. @Figure-ref{f:gc-collect-roots} gives the @racket[ev-roots@] component, which does exactly this. Finally, the pieces are stitched together with the following to obtain a pushdown, garbage-collecting definitional abstract interpreter: @racketblock[ (define (eval e) (mrun ((fix-cache (fix (ev-cache (ev-collect (ev-roots ev))))) e))) ] @figure["f:gc-collect-roots" "Address Collection and Propagation"]{ @filebox[@racket[ev-roots@]]{ @racketblock[ (define (((ev-roots ev₀) ev) e) (match e [(if0 e₀ e₁ e₂) (do ρ ← ask-env ψ′ ≔ (set-union (roots e₁ ρ) (roots e₂ ρ)) v ← (extra-roots ψ′ (ev e₀)) b ← (truish? v) (ev (if b e₁ e₂)))] [(op2 o e₀ e₁) (do ρ ← ask-env v₀ ← (extra-roots (roots e₁ ρ) (ev e₀)) v₁ ← (extra-roots (roots-v v₀) (ev e₁)) (δ o v₀ v₁))] [(app e₀ e₁) (do ρ ← ask-env v₀ ← (extra-roots (roots e₁ ρ) (ev e₀)) v₁ ← (extra-roots (roots-v v₀) (ev e₁)) (cons (lam x e₂) ρ′) ≔ v₀ a ← (alloc x) (ext a v₁) (local-env (ρ′ x a) (ev e₂)))] [_ ((ev₀ ev) e)]))]}} To observe the added precision due to GC, consider the following example, run using the (non-garbage-collecting) pushdown abstract interpreter of @secref{s:reynolds}: @interaction[#:eval the-pdcfa-eval (let ((f (λ (x) x))) (f 1) (f 2))] This example binds @racket[f] to an identity function and applies @racket[f] to two arguments, @racket[1] and @racket[2]. Since the first binding of @racket[x] to @racket[1] is still in the store when the second binding to @racket[2] happens, the results are joined. This causes the second application of @racket[f] to produce @emph{both} @racket[1] and @racket[2]. If instead the garbage-collecting variant is used, there is a collection between the two calls to @racket[f], which is after the first binding of @racket[x] but before the second. At this moment, @racket[x] is unreachable and collected. When @racket[f] is applied again, @racket[x] gets bound in a fresh location to @emph{just} @racket[2] and the overall result reflects this more precise fact: @interaction[#:eval the-pdcfa-gc-eval (let ((f (λ (x) x))) (f 1) (f 2))]
false
e9132c9935842de9292345976d92a04929171236
48bc17ab172cdc0eca51e5c815802239ca0da2c7
/sql-query-formatter.rkt
b30f25a814ac9939ed36a4456478262522747834
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
DexterLagan/sql-query-formatter
0cd096b24b903abaa6cffc1c484fef6d56291562
d7adb9b3cff51ee5b6b2d24b85958cac92bc746a
refs/heads/master
2021-07-31T20:01:42.013129
2021-07-20T20:04:49
2021-07-20T20:04:49
184,271,909
0
0
MIT
2021-07-20T20:04:50
2019-04-30T13:57:25
Racket
UTF-8
Racket
false
false
2,485
rkt
sql-query-formatter.rkt
#lang racket/gui (module+ test (require rackunit)) ;;; purpose ; to format an SQL query for better readability inside Xojo ;;; defs (define appname "Xojo SQL query prepper") ; (define (get-clipboard-text) (send the-clipboard get-clipboard-string 0)) (define (set-clipboard-text s) (send the-clipboard set-clipboard-string s 0)) ; macro that lets one compose functions with any number of parameters ; each composed expression is essencially curried to accept one parameter 'x' through the use of internal lambdas ; the result of each composed expression (evaluated right-to-left) is passed on to the next through 'x' (define-syntax (composex stx) (syntax-case stx () ((_ f1 ...) (with-syntax ([x-var (datum->syntax stx 'x)]) ; create a local variable so Racket doesn't scream it doesn't exist #'(compose1 (λ (x-var) f1) ...))))) ; move each composed expression inside a lambda that uses our variable ; unit test: (module+ test (check-equal? ((composex (string-replace x " " "-") (string-downcase x) (string-trim x)) " Naice Day ") "naice-day")) ; gotta remove that ugly < ; sCategoryQuery = ""+_ ; "AND (p.produit_descript_num = pd.produit_descript_num OR p.produit_descript_num = 0) "+_ ; "AND pd.magasin_num = 0 "+_ ; "AND (pd.categorie_num = '" + Str(nCategory) + "' OR p.produit_categorie_nom = '" + sCategory.Trim + "') ; missing last double-quote ? ---------------------------------------------------------------------------> ; formats a query for Xojo with line breaks (define (prep-sql-query query) (define prefix (car (string-split query "\""))) ; preps an sql query ((composex (string-append prefix "\"" x) (string-replace x ", " ", \"+_\r\n\"") (string-replace x "AND " "\"+_\r\n\"AND ") (string-replace x "FROM " "\"+_\r\n\"FROM ") (string-replace x "WHERE " "\"+_\r\n\"WHERE ") (string-replace x "ORDER " "\"+_\r\n\"ORDER ") (string-replace x "LIMIT " "\"+_\r\n\"LIMIT ") (string-replace x "(SELECT" "\"+_\r\n\"(SELECT ") (string-replace x "DISTINCT " "DISTINCT \"+_\r\n\"") (string-replace x "LEFT JOIN " "\"+_\r\n\"LEFT JOIN ") (string-join (cdr (string-split x "\"")) "\"") (string-trim x)) query)) ;;; main ; get query from the clipboard, format it and place it back on the clipboard (let ((query (get-clipboard-text))) (set-clipboard-text (prep-sql-query query)))
true
82e24e5fa7f752dc942205d4ccf2e9c3e7c78790
82c76c05fc8ca096f2744a7423d411561b25d9bd
/typed-racket-test/external/succeed/check-within.rkt
c0ab86669b77b81da5e725a6465c7480c52b1133
[ "MIT", "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
racket/typed-racket
2cde60da289399d74e945b8f86fbda662520e1ef
f3e42b3aba6ef84b01fc25d0a9ef48cd9d16a554
refs/heads/master
2023-09-01T23:26:03.765739
2023-08-09T01:22:36
2023-08-09T01:22:36
27,412,259
571
131
NOASSERTION
2023-08-09T01:22:41
2014-12-02T03:00:29
Racket
UTF-8
Racket
false
false
357
rkt
check-within.rkt
#lang typed-scheme (require scheme/math typed/test-engine/scheme-tests) (define-struct: circle ({radius : Number})) (: circle-area (circle -> Number)) (check-within (+ 1 2.14) pi .1) (check-range 2 1 3) (check-member-of 'a 'b 'c 'd 'a 'z) (check-error (error "fail") "fail") (define (circle-area c) (* pi (circle-radius c) (circle-radius c))) (test)
false
1f3d5ed98a31c1a6af62d1143199ea5936284367
bd528140fc0a7ada47a4cb848f34eae529620c1e
/3-11.rkt
c1e0e3e5e0955e6c3bb32e1dc914868f88c892ef
[]
no_license
michaldarda/sicp
c09c197b35014d66f516f4a0a8d49f33e3c09a37
8ea78f8f0780f786057dfdaae24e44f16abf063b
refs/heads/master
2020-07-15T01:23:51.573237
2020-05-24T19:54:59
2020-05-24T19:54:59
205,447,221
4
0
null
null
null
null
UTF-8
Racket
false
false
1,829
rkt
3-11.rkt
(define (make-account balance) (define (withdraw amount) (if (>= balance amount) (begin (set! balance (- balance amount)) balance) "Insufficient funds")) (define (deposit amount) (set! balance (+ balance amount)) amount) (define (dispatch m) (cond [(eq? m 'withdraw) withdraw] [(eq? m 'deposit) deposit] [else (error "Unknown request: MAKE-ACCOUNT " m)])) dispatch) ;; Global ;; make-account: (define acc (make-account 50)) ;; E1 -> Global ;; balance: 50 ;; withdraw: (P, E1) ;; deposit: (P, E1) ;; dispatch: (P, E1) ;; Global ;; make-account: (P, Global) ;; acc: (dispatch-P, E1) ((acc 'deposit) 40) ;; all starts with (acc 'deposit) ;; that results in calling dispatch procedure with E1 ;; so new env is created ;; ;; E2->E1 ;; m: 'deposit ;; ;; and we get back deposit procedure and E2 gets destroyed ;; then we call ;; (deposit 40) ;; ;; new env gets created ;; ;; E2'->E1 ;; amount: 40 ;; ;; deposit procedure modifies E1 env ;; ;; E1 -> Global ;; balance: 90 ;; withdraw: (P, E1) ;; deposit: (P, E1) ;; dispatch: (P, E1) ;; ;; and returns new balance 90 ;; E2' is destroyed ;; then we call ((acc 'withdraw) 60) ;; first we invoke new fn, so new env gots created ;; ;; E2''-> E1 ;; m: 'withdraw ;; ;; we got back (withdraw, E1), E2'' gots destroyed ;; ;; then we call ;; (withdraw 40) ;; new env gots created ;; ;; E2'''->E1 ;; amount: 60 ;; deposit procedure modifies E1 env ;; ;; E1 -> Global ;; balance: 40 ;; withdraw: (P, E1) ;; deposit: (P, E1) ;; dispatch: (P, E1) ;; new balance got returned 60 ;; E2''' is destroyed ;; local state for account is kept in E1 (define acc2 (make-account 100)) ;; above declaration creates new environment E2->Global ;; with its own balance and internal procedures, ;; so nothing is shared between acc and acc2
false
02787b05980d9cf3bbc5e3a7ffa54724fd42dd23
616e16afef240bf95ed7c8670035542d59cdba50
/redex-test/redex/tests/sewpr/types/types.rkt
4cc8e60e6df9d50600b07d5eb8f626fe8f2a8efa
[ "MIT", "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
racket/redex
bd535d6075168ef7be834e7c1b9babe606d5cd34
8df08b313cff72d56d3c67366065c19ec0c3f7d0
refs/heads/master
2023-08-19T03:34:44.392140
2023-07-13T01:50:18
2023-07-13T01:50:18
27,412,456
102
43
NOASSERTION
2023-04-07T19:07:30
2014-12-02T03:06:03
Racket
UTF-8
Racket
false
false
3,677
rkt
types.rkt
#lang racket/base (require redex/reduction-semantics "../iswim/iswim.rkt") ;; START lang (define-extended-language t-iswim iswim (M X (λ X T M) (M M) b (o2 M M) (o1 M)) (V b X (λ X T M)) ((T S) (-> T T) num) (Γ ((X T) ...))) ;; STOP lang ;; START tc ;; TC : Γ M -> T or #f ;; type checks a term M in the environment Γ (define-metafunction t-iswim [(TC Γ b) (ℬ b)] [(TC Γ X) (TCvar Γ X)] [(TC ((Y S) ...) (λ X T M)) (TCλ T (TC ((Y S) ... (X T)) M))] [(TC Γ (M N)) (TCapp (TC Γ M) (TC Γ N))] [(TC Γ (o M ...)) (TCo (o (TC Γ M) ...))]) ;; STOP tc ;; the #; comment elides this, so there are no ;; duplicate name errors, but this defn still shows ;; up in the tutorial #; ;; START tcvaralt ;; TCvar : Γ X -> T or #f (define-metafunction t-iswim [(TCvar ((Y S) ... (X T)) X) T] [(TCvar ((Y S) ... (X T)) Z) (TCvar ((Y S) ...) Z)] [(TCvar () Z) #f]) ;; STOP tcvaralt ;; START tcvar ;; TCvar : Γ X -> T or #f (define-metafunction t-iswim [(TCvar ((X T_1) ... (Y T_2) (Z T_3) ...) Y) T_2 (side-condition (not (member (term Y) (term (Z ...)))))] [(TCvar Γ X) #f]) ;; STOP tcvar ;; START tclam ;; TCλ : T (or/c T #f) -> T or #f ;; type checks a lambda expression, given the type ;; of the parameter and the type of the body (define-metafunction t-iswim [(TCλ T S) (-> T S)] [(TCλ T #f) #f]) ;; STOP tclam ;; START tcapp ;; TCapp : (or/c T #f) (or/c T #f) -> T or #f (define-metafunction t-iswim [(TCapp (-> S T) S) T] [(TCapp any_1 any_2) #f]) ;; STOP tcapp ;; START tco ;; TCo : o (or/c T #f) ... -> T or #f (define-metafunction t-iswim [(TCo (o T ...)) (∆ (o T ...))] [(TCo (o any ...)) #f]) ;; STOP tco ;; START delta ;; ∆ : (o T ...) -> T or #f ;; returns the result type for the operator (define-metafunction t-iswim [(∆ (iszero num)) (-> num (-> num num))] [(∆ (add1 num)) num] [(∆ (sub1 num)) num] [(∆ (+ num num)) num] [(∆ (- num num)) num] [(∆ (* num num)) num] [(∆ (/ num num)) num] [(∆ (↑ num num)) num] [(∆ any) #f]) ;; STOP delta ;; START B ;; ℬ : b -> 'num or #f ;; returns the type of literal constants (define-metafunction t-iswim [(ℬ number) num] [(ℬ any) #f]) ;; STOP B ;; START red (define t-iswim-red (reduction-relation t-iswim (--> (in-hole E ((λ X T M) V)) (in-hole E (t-subst V X M)) βv) (--> (in-hole E (o b ...)) (in-hole E (δ (o b ...))) δ))) ;; STOP red (define-metafunction t-iswim ;; 1. X_1 bound, so don't continue in λ body [(t-subst (λ X_1 T any_2) X_1 any_1) (λ X_1 T any_2)] ;; 2. do capture avoiding substitution ;; by generating a fresh name [(t-subst (λ X_2 T any_2) X_1 any_1) (λ X_new T (t-subst (subst-var any_2 X_2 X_new) X_1 any_1)) (where X_new ,(variable-not-in (term (X_1 any_1 any_2)) (term X_2)))] ;; 3. replace X_1 with any_1 [(t-subst X_1 X_1 any_1) any_1] ;; the last two cases just recur on ;; the tree structure of the term [(t-subst (any_2 ...) X_1 any_1) ((t-subst any_2 X_1 any_1) ...)] [(t-subst any_2 X_1 any_1) any_2]) (provide TC t-iswim t-iswim-red ∆ ℬ t-subst) (define-term Y (λ body-proc ((λ fX (fX fX)) (λ fX ((λ f (body-proc f)) (λ x ((fX fX) x))))))) (define example (term ;; START triexercise ((Y (λ tri (λ x ((((iszero x) (λ y 0)) (λ y (+ x (tri (- x 1))))) 0)))) 3) ;; STOP triexercise )) (unless (equal? (apply-reduction-relation* iswim-red example) '(6)) (error 'types.rkt "tri test case failed"))
false
3bf7bd41a525db731ef531f74d125f55e94dc598
662e55de9b4213323395102bd50fb22b30eaf957
/dissertation/scrbl/bg.scrbl
2ce7135c47002f670e4e7db9a20f46a148ea54c8
[]
no_license
bennn/dissertation
3000f2e6e34cc208ee0a5cb47715c93a645eba11
779bfe6f8fee19092849b7e2cfc476df33e9357b
refs/heads/master
2023-03-01T11:28:29.151909
2021-02-11T19:52:37
2021-02-11T19:52:37
267,969,820
7
1
null
null
null
null
UTF-8
Racket
false
false
926
scrbl
bg.scrbl
#lang greenman-thesis @parts @pdfspacing @; TODO @; - dedication? @; - reorder contents, acks, etc? @title{@|sDeep| and @|sShallow| Types} @author{Ben Greenman} @degree{Doctor of Philosophy} @department{Khoury College of Computer Sciences} @university{Northeastern University} @location{Boston, Mass.} @submit-date{November 2020} @approval{src/approval.pdf} @; TODO allow - in name @include-abstract{abstract.scrbl} @; need newline above @include-dedication{dedication.scrbl} @; need newline above @include-acknowledgements{acknowledgments.scrbl} @table-of-contents[] @end-front-matter[] @include-section{introduction.scrbl} @include-section{why.scrbl} @include-section{performance.scrbl} @include-section{design.scrbl} @include-section{transient.scrbl} @include-section{both.scrbl} @;@include-section{related.scrbl} @include-section{future.scrbl} @include-section{conclusion.scrbl} @include-section{appendix.scrbl}
false
8007297576db887c2339357b2233498251f2e879
3ac344d1cac4caa5eb4842bc0e4d61b1ae7030fb
/scribblings/riposte.scrbl
683726a638f246317ef65849789cd9d2d0b38cae
[ "ISC" ]
permissive
vicampo/riposte
0c2f2a8459a2c6eee43f6f8a83f329eb9741e3fc
73ae0b0086d3e8a8d38df095533d9f0a8ea6b31b
refs/heads/master
2021-10-29T11:18:14.745047
2021-10-13T10:20:33
2021-10-13T10:20:33
151,718,283
42
5
ISC
2019-03-26T12:20:23
2018-10-05T12:35:49
Racket
UTF-8
Racket
false
false
1,403
scrbl
riposte.scrbl
#lang scribble/manual @title[#:style 'toc]{Riposte—Scripting Language for JSON-based HTTP APIs} @author[(author+email "Jesse Alama" "[email protected]")] @defmodulelang[riposte] Riposte is a scripting language for evaluating JSON-bearing HTTP responses. The intended use case is a JSON-based HTTP API. It comes with a commandline tool, @tt{riposte}, which executes Riposte scripts. Using Riposte, one writes a sequence of commands—which amount to HTTP requests—and assertions, which require that the response meets certain conditions. Riposte is intended to be a language for system (or integration) tests. As such, it is not intended to be a general purpose programming langauge. There is no notion of branching (“if-then-else”) in a single script. The idea is that a Riposte script consists of a series of assertions, all of which must succeed. If, during evaluation, a command or assertion fails, evaluation will be aborted. There's no fallback. In other words, Riposte was made to help you get more serious about testing your APIs. It helped me up my testing game, and I hope it can do the same for you. @include-section["briefly.scrbl"] @include-section["installation.scrbl"] @include-section["origins.scrbl"] @include-section["use.scrbl"] @include-section["language.scrbl"] @include-section["limitations.scrbl"] @include-section["misc.scrbl"] @include-section["wishlist.scrbl"]
false
00af4469529a81f21cbea15673d955c6c52d711d
9208cb48aebb722221e6a9635507a2f52e4b94bb
/relation-lib/function/util.rkt
0ad65711239398c613939242201785031967211f
[]
no_license
countvajhula/relation
13fc90bfec071c98bfb782f8eefa51342293d63b
5022738f69387c5722318717db5c866c9839614e
refs/heads/master
2022-10-01T15:09:14.565556
2022-09-22T17:55:58
2022-09-22T17:55:58
222,787,178
4
1
null
2022-09-22T00:35:25
2019-11-19T20:50:21
Racket
UTF-8
Racket
false
false
3,882
rkt
util.rkt
#lang racket/base (require (except-in racket/contract/base predicate/c) (prefix-in f: racket/function) racket/match (only-in data/collection gen:collection gen:sequence gen:countable empty? first rest nth sequence->list reverse repeat) (only-in data/functor (map f:map)) arguments contract/social qi) (require "type.rkt" "composition.rkt") (provide call (contract-out [negate functional/c] [!! functional/c] [unthunk (variadic-function/c any/c procedure? (head procedure?))] [flip$ functional/c] [flip* functional/c] [lift functional/c] [pack (variadic-function/c (head procedure?))] [pack-map (variadic-function/c any/c list? (head procedure?))] [map-values (variadic-function/c any/c any (head procedure?))] [filter-values (variadic-function/c any/c any (head procedure?))] [uncurry functional/c] [curry (unconstrained-domain-> function?)] [curryr (unconstrained-domain-> function?)] [partial (unconstrained-domain-> function?)] [partialr (unconstrained-domain-> function?)] [partial/template (unconstrained-domain-> function?)])) ;; from mischief/function - reproviding it via require+provide runs aground ;; of some "name is protected" error while building docs, not sure why; ;; so including the implementation directly here for now (define call (make-keyword-procedure (lambda (ks vs f . xs) (keyword-apply f ks vs xs)))) (define (negate g) (compose not g)) (define !! negate) (define (unthunk f . args) (f:thunk* (apply f args))) (define (flip$ f) (λ (x . args) (apply f (append args (list x))))) (define (flip* f) (λ args (apply f (reverse args)))) (define (lift f) (curry f:map f)) (define (pack f . args) (f args)) (define (pack-map f . args) (map f args)) (define (map-values f . args) (apply values (map f args))) (define (filter-values f . args) (apply values (filter f args))) (define (uncurry g) (λ args (let loop ([rem-args (reverse args)]) (match rem-args ['() (g)] [(list v) (g v)] [(list v vs ...) ((loop vs) v)])))) (define/arguments (curry args) (let* ([f (first (arguments-positional args))] [pos (rest (arguments-positional args))] [kw (arguments-keyword args)] [invocation-args (make-arguments pos kw)]) (make-curried-function f invocation-args 'left))) (define/arguments (curryr args) (let* ([f (first (arguments-positional args))] [pos (rest (arguments-positional args))] [kw (arguments-keyword args)] [invocation-args (make-arguments pos kw)]) (make-curried-function f invocation-args 'right))) (define/arguments (partial args) (let* ([f (first (arguments-positional args))] [pos (rest (arguments-positional args))] [kw (arguments-keyword args)] [invocation-args (make-arguments pos kw)]) (make-partial-function f invocation-args 'left))) (define/arguments (partialr args) (let* ([f (first (arguments-positional args))] [pos (rest (arguments-positional args))] [kw (arguments-keyword args)] [invocation-args (make-arguments pos kw)]) (make-partial-function f invocation-args 'right))) (define/arguments (partial/template args) (let* ([f (first (arguments-positional args))] [pos (rest (arguments-positional args))] [kw (arguments-keyword args)] [invocation-args (make-arguments pos kw)]) (make-template-function f invocation-args)))
false
34cec86bbf9046af5656607625a859af273d8802
6b4aa8f5d12bdc673f545d1582c1cf0a92c46368
/meta-engine/core/test/main.rkt
f353512d780bfff213cfd6bcb84c0105d8bb592f
[]
no_license
thoughtstem/meta-engine
b360f77c15c242ef817c2cc9aea29c8e3bf93778
ffa8eb6a02ce3cd31816ee47ca7bd1d3143d6c5f
refs/heads/master
2020-06-23T05:44:14.712756
2020-06-22T22:18:50
2020-06-22T22:18:50
198,533,313
4
1
null
2020-03-06T22:55:58
2019-07-24T01:16:36
Racket
UTF-8
Racket
false
false
125
rkt
main.rkt
#lang racket (require "./crud.rkt") (require "./define-component.rkt") (require "./use-cases.rkt") (require "./conway.rkt")
false
6e9a1a2fff3b1ffd6d188ae5ec5b5cdef804e9d5
01ed4efac0c29caeb9388c0c5c1e069da7c1eebf
/bindings/libczmq/zpoller.rkt
ea4612b328587a7533909f5632da6ba2a003d132
[ "Apache-2.0" ]
permissive
karinies/coast
2124d69d467130b7efb03351fbcc974f9a9f4646
b520003d9c4ebb2775db2f07688e58bbd3199195
refs/heads/master
2020-04-01T23:02:24.547845
2017-05-26T21:43:27
2017-05-26T21:43:27
33,692,208
8
0
null
null
null
null
UTF-8
Racket
false
false
954
rkt
zpoller.rkt
#lang racket/base (require ffi/unsafe "libczmq.rkt" "zcontext.rkt" "zsocket.rkt") (provide zpoller/new zpoller/destroy zpoller/add zpoller/wait zpoller/expired? zpoller/terminated?) (define-czmq-function zpoller/raw "zpoller_new" (_fun _zsocket/null -> _zpoller)) (define-czmq-function zpoller/destroy "zpoller_destroy" (_fun (_ptr i _zpoller) -> _void)) (define-czmq-function zpoller/add "zpoller_add" (_fun _zpoller _zsocket -> (r : _int = (zero? r)))) (define-czmq-function zpoller/wait "zpoller_wait" (_fun _zpoller _int -> _zsocket/null)) (define-czmq-function zpoller/expired? "zpoller_expired" (_fun _zpoller -> _bool)) (define-czmq-function zpoller/terminated? "zpoller_terminated" (_fun _zpoller -> _bool)) (define (zpoller/new . rest) (let ((p (zpoller/raw #f))) (let loop ((readers rest)) (cond [(null? readers) p] [else (zpoller/add p (car readers)) (loop (cdr readers))]))))
false
2ffc02b4a2a9852d52c99b8b40b6881b917e8ae5
e4d80c9d469c9ca9ea464a4ad213585a578d42bc
/lessons/Order-of-Operations/exercises/match-arith-coe1.scrbl
9e191617ecee252faf65a5a52ba4ae0c36d395a2
[]
no_license
garciazz/curr
0244b95086b0a34d78f720e9cae1cb0fdb686ec5
589a93c4a43967b06d7a6ab9d476b470366f9323
refs/heads/master
2021-01-17T19:14:21.756115
2016-02-24T22:16:26
2016-02-24T22:16:26
53,657,555
1
0
null
2016-03-11T09:58:01
2016-03-11T09:58:01
null
UTF-8
Racket
false
false
1,038
scrbl
match-arith-coe1.scrbl
#lang curr/lib @(define exprs '((/ (* -1 2) 5) (/ 5 (* -1 2)) (* (- 4 5) (+ 2 3)) (- (* 4 5) (+ 2 3)) (* (- (+ 2 2) 5) (+ 3 2)) (* (+ 5 (- 2 2)) (+ 3 2)) (+ (/ 6 3) 0) (+ (- 5 5) (/ 6 3)) )) @(define permuted-exprs '((+ (- 5 5) (/ 6 3)) (- (* 4 5) (+ 2 3)) (/ (* -1 2) 5) (+ (/ 6 3) 0) (* (- 4 5) (+ 2 3)) (* (+ 5 (- 2 2)) (+ 3 2)) (/ 5 (* -1 2)) (* (- (+ 2 2) 5) (+ 3 2)) )) @(exercise-handout #:title "Matching Circles of Evaluation and Arithmetic Expressions" #:instr "Draw a line from each Circle of Evaluation in the left to its corresponding arithmetic expression on the right:" #:forevidence (exercise-evid-tags "BS-CE&1&1" "BS-CE&1&2") @(matching-exercise (map sexp->coe exprs) (map sexp->math permuted-exprs)) @(exercise-answers (matching-exercise-answers #:compare-with equal? #:content-of-ans exprs (map sexp->coe exprs) (map sexp->math exprs) permuted-exprs)) )
false
e619aaf6260cd64f56e938a6287446526415c76e
738243d2265c113cea0efcf96ed78521b338e0d4
/test/helpers/eval.rkt
e39baa5047b060a6555118d8b59cf4c5cb6484db
[]
no_license
juanibiapina/marco-rkt
796e70450b0a24a46483e42e8b6abad5c142968e
27c297c7917becdc1d3b4b9a303edf20d3bc9673
refs/heads/master
2020-04-06T04:17:58.897177
2014-11-28T02:34:34
2014-11-28T02:34:34
null
0
0
null
null
null
null
UTF-8
Racket
false
false
165
rkt
eval.rkt
#lang racket (require "../../core-env.rkt" "../../loader.rkt") (provide eval) (define (eval code) (define env (make-core-env)) (eval-string code env))
false
4b3c43cbddd4e0dedb07d529c898f20b20674ea9
063934d4e0bf344a26d5679a22c1c9e5daa5b237
/old/margrave-lite-main.rkt
c82bc808bdf9f21e61b43ca6a03193dd24212ce2
[]
no_license
tnelson/Margrave
329b480da58f903722c8f7c439f5f8c60b853f5d
d25e8ac432243d9ecacdbd55f996d283da3655c9
refs/heads/master
2020-05-17T18:43:56.187171
2014-07-10T03:24:06
2014-07-10T03:24:06
749,146
5
2
null
null
null
null
UTF-8
Racket
false
false
5,909
rkt
margrave-lite-main.rkt
; Copyright (c) 2009-2010 Brown University and Worcester Polytechnic Institute. ; ; This file is part of Margrave. ; Margrave is free software: you can redistribute it and/or modify ; it under the terms of the GNU Lesser General Public License as published by ; the Free Software Foundation, either version 3 of the License, or ; (at your option) any later version. ; ; Margrave is distributed in the hope that it will be useful, ; but WITHOUT ANY WARRANTY; without even the implied warranty of ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ; GNU Lesser General Public License for more details. ; ; You should have received a copy of the GNU Lesser General Public License ; along with Margrave. If not, see <http://www.gnu.org/licenses/>. ; This module loads Margrave and starts the REPL, then initializes the ; Java engine automatically. When creating a Margrave distribution ; *without* DrRacket, do Racket -> Create Executable from *this* ; module. ; If you have DrRacket installed, there is no reason to use ; this module. - tn #lang racket ; Need to require everything that generated syntax from lang margrave could require ; otherwise it will not be included in the executable that raco exe generates. (require margrave/margrave margrave/margrave-ios margrave/lang/reader) ;**************************************************************** (define-namespace-anchor repl-namespace-anchor) (define margrave-repl-namespace (namespace-anchor->namespace repl-namespace-anchor)) ;**************************************************************** ; Much of this code is devoted to making sure the Java engine exits. ; (exit) kills the Java engine in DrRacket, but *NOT* in ; Racket and GRacket. So we use the exit-handler parameter. (define orig-exit-handler (exit-handler)) (define (margrave-repl-exit-handler n) ; If stop-margrave-engine fails, don't gum up the exit. (with-handlers ([(lambda (e) #t) (lambda (e) (printf "Unable to close Margrave's Java engine. Caught exception:~n ~a~n." e))]) (stop-margrave-engine)) (orig-exit-handler n)) ;**************************************************************** (define (load-necessary-scripts) ; A script has #lang margrave. Use read-syntax-m, not read-syntax-m-single (define args (vector->list (current-command-line-arguments))) (when (> (length args) 0) (printf "Loading ~a Margrave scripts...~n" (length args))) (define (load-margrave-script filename) (printf " Loading Margrave script: ~a~n" filename) ; If one of the filenames is bad, close out gracefully (with-handlers ([(lambda (e) #t) (lambda (e) (printf "Error loading script: ~a.~nClosing Margrave. Please try again with the correct script name.~a Error was: ~a.~n" filename e) (stop-margrave-engine) (exit))]) (parameterize ([current-namespace margrave-repl-namespace] [exit-handler margrave-repl-exit-handler]) (namespace-require filename)))) (for-each load-margrave-script args)) ;**************************************************************** (define orig-print (current-print)) (define (margrave-repl-print proc) ;(printf "print: ~a~n" proc) ; Dev note: We get 7 #<void>s at the beginning of the repl. Why? ; (Doesn't seem to be due to the reader, no debug info for the voids). (if (procedure? proc) (let () (define a-result (proc)) (when (not (void? a-result)) (display-response a-result))) (orig-print proc))) (define (margrave-repl-exception-handler e) (printf "------------------------------------------------------------~n") (printf "~a~n" e) (printf "------------------------------------------------------------~n") (cond [(exn:fail:user? e) ((error-escape-handler))] ; user error [(exn:fail:read? e) ((error-escape-handler))] ; syntax error [(exn:fail:filesystem? e) ((error-escape-handler))] ; file not found, etc. [else (begin (stop-margrave-engine) (exit))])) (define (start-margrave-repl) ; Do NOT parameterize current-eval, since we eval within. ; Instead, parameterize current-read-interaction and current-print ; A command does not have #lang margrave. Use read-syntax-m-single ; Funcs will come back as (lambda ...) not #procedure. Need to invoke below. (parameterize ([current-namespace margrave-repl-namespace] [current-read-interaction read-syntax-m-single] [exit-handler margrave-repl-exit-handler] [current-print margrave-repl-print]) (read-eval-print-loop))) ;**************************************************************** ;**************************************************************** ;**************************************************************** ; Defaults to the value of MARGRAVE_HOME environment var. ; If no such var, uses current directory. (start-margrave-engine) ; Tell them how to exit. (printf "~nWelcome to Margrave Lite. To exit, type QUIT; at the command prompt.~n~n") ; Load a script for each command line arg (load-necessary-scripts) ; Make sure the Java engine gets terminated on an error. ; Make sure that user errors don't terminate the repl. (call-with-exception-handler margrave-repl-exception-handler start-margrave-repl) ; When REPL terminates, stop the engine (just in case) (stop-margrave-engine) ; user error is causing margrave to exit STILL ; ahhh -- of course, it isn't force exiting, it's just propagating up to OUTSIDE the start-margrave-repl call in order to find this handler.
false
b26f26ef4e86108b467ac7f5703a39387492b2b3
799b5de27cebaa6eaa49ff982110d59bbd6c6693
/soft-contract/test/programs/safe/termination/vazou/gcd.rkt
40b83ac23d21a8bc93401a3e48d2caef3c1fe9a9
[ "MIT" ]
permissive
philnguyen/soft-contract
263efdbc9ca2f35234b03f0d99233a66accda78b
13e7d99e061509f0a45605508dd1a27a51f4648e
refs/heads/master
2021-07-11T03:45:31.435966
2021-04-07T06:06:25
2021-04-07T06:08:24
17,326,137
33
7
MIT
2021-02-19T08:15:35
2014-03-01T22:48:46
Racket
UTF-8
Racket
false
false
273
rkt
gcd.rkt
#lang racket/base (require soft-contract/fake-contract) (define (gcd a b) (cond [(zero? b) a] [else (gcd b (modulo a b))])) (provide (contract-out [gcd (exact-nonnegative-integer? exact-nonnegative-integer? . -> . exact-nonnegative-integer? #:total? #t)]))
false
7481b24752a920c4fde5aac933a0feed63bae79e
9dc77b822eb96cd03ec549a3a71e81f640350276
/collection/private/mutable-red-black-tree.rkt
5c33a28e2e2977a6c68cf275fe1af1ad6e6c4430
[ "Apache-2.0" ]
permissive
jackfirth/rebellion
42eadaee1d0270ad0007055cad1e0d6f9d14b5d2
69dce215e231e62889389bc40be11f5b4387b304
refs/heads/master
2023-03-09T19:44:29.168895
2023-02-23T05:39:33
2023-02-23T05:39:33
155,018,201
88
21
Apache-2.0
2023-09-07T03:44:59
2018-10-27T23:18:52
Racket
UTF-8
Racket
false
false
1,668
rkt
mutable-red-black-tree.rkt
#lang racket/base (require racket/contract/base rebellion/collection/private/mutable-red-black-tree-base rebellion/collection/private/mutable-red-black-tree-batch-deletion rebellion/collection/private/mutable-red-black-tree-batch-insertion rebellion/collection/private/mutable-red-black-tree-deletion rebellion/collection/private/mutable-red-black-tree-insertion rebellion/collection/private/mutable-red-black-tree-iteration rebellion/collection/private/mutable-red-black-tree-search) (provide (recontract-out mutable-rb-tree? make-mutable-rb-tree mutable-rb-tree-size mutable-rb-tree-key-comparator mutable-rb-tree-contains-key? mutable-rb-tree-contains-value? mutable-rb-tree-contains-entry? mutable-rb-tree-least-key mutable-rb-tree-greatest-key mutable-rb-tree-key-less-than mutable-rb-tree-key-greater-than mutable-rb-tree-key-at-most mutable-rb-tree-key-at-least mutable-rb-tree-least-entry mutable-rb-tree-greatest-entry mutable-rb-tree-entry-less-than mutable-rb-tree-entry-greater-than mutable-rb-tree-entry-at-most mutable-rb-tree-entry-at-least mutable-rb-tree-get mutable-rb-tree-get-option mutable-rb-tree-get-entry mutable-rb-tree-get! mutable-rb-tree-get-entry! mutable-rb-tree-put! mutable-rb-tree-put-if-absent! mutable-rb-tree-put-all! mutable-rb-tree-update! mutable-rb-tree-remove! mutable-rb-tree-clear! mutable-rb-subtree-size mutable-rb-subtree-clear! in-mutable-rb-tree in-mutable-rb-tree-keys in-mutable-rb-tree-values in-mutable-rb-subtree in-mutable-rb-subtree-keys in-mutable-rb-subtree-values))
false
d7670f8d041e92e02817615d6df4aaf58dc4507c
4b5b0bb94e71518fab404bbf41451392875b89a5
/todoist/api/labels.rkt
87cf4d435f8f2fe8054321854ec81c2f4c7d5986
[]
no_license
jxonas/todoist
c018c6b9ab1c1baecb822c5a32e963df47fe7640
a3649d761cf00647949f047769bad3afa6ee686a
refs/heads/master
2021-01-20T23:11:29.392568
2014-12-27T00:25:50
2014-12-27T00:25:50
27,850,460
0
0
null
null
null
null
UTF-8
Racket
false
false
456
rkt
labels.rkt
#lang at-exp racket/base (require scribble/srcdoc (for-doc racket/base scribble/manual) "base.rkt") (define-api GET (get-labels "getLabels") token : [as-list? integer? 0]) (define-api GET (add-label "addLabel") name token : color) (define-api GET (update-label "updateLabel") old-name new-name token) (define-api GET (update-label-color "updateLabelColor") name color token) (define-api GET (delete-label "deleteLabel") name token)
false
90045ec96860423aae8e4665d2f75f4c6b75f7c4
688feb2eac8bc384583c4f0960cfbc86c3470d91
/racket/ffi/hello.rkt
4c236ba3026ba0d4f1cb5275a50718861f0ab970
[]
no_license
halida/code_example
7d2873e92707b4bab673046ff3d0c742e1984b4c
5c882a24b93696c2122a78425ef6b3775adc80fa
refs/heads/master
2023-06-08T15:51:23.150728
2022-03-27T09:57:43
2022-03-27T09:57:43
2,458,466
2
1
null
2023-06-06T02:07:28
2011-09-26T06:01:29
Ruby
UTF-8
Racket
false
false
531
rkt
hello.rkt
#lang racket/base (require "curses.rkt") (displayln (curses-version)) ;; (define (show-message message) ;; (define width (+ 6 (string-length message))) ;; (define win (init-window 5 width (- lines 5) )) ;; (send win box ?| |-) ;; (send win setpos 2 3) ;; (send win addstr message) ;; (send win refresh) ;; (send win getch) ;; (send win close) ;; ) (define (run) (define win (initscr)) (waddstr (format "Hit any key")) (wrefresh win) (sleep 1) ;; (show-message "hello, world!") (endwin) ) (run)
false