blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 3
171
| content_id
stringlengths 40
40
| detected_licenses
listlengths 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
90f5f0daba02e6c619e4e682fd15e86ed38eaddb | b660753b0166d72a039fa22b0433cedeba3873e0 | /Programming Languages/homework4/hw4.rkt | ae8024b5f39c665b553a5bbf187dcd5ccc2258da | []
| no_license | dominik-sze/Coursera | 97a73a887f67fccec886c36814c2cc1b575cdb01 | d49328923f67df248552b17f72112705e166f9ad | refs/heads/master | 2021-01-15T21:44:31.058747 | 2014-12-02T17:36:05 | 2014-12-02T17:36:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 2,739 | rkt | hw4.rkt |
#lang racket
(provide (all-defined-out)) ;; so we can put tests in a second file
;; put your code below
(define (sequence low high stride)
(cond [(< high low) null]
[#t (cons low (sequence (+ low stride) high stride))]))
(define (string-append-map xs suffix)
(map (lambda (x)
(string-append x suffix))
xs))
(define (list-nth-mod xs n)
(cond [(< n 0) (error "list-nth-mod: negative number")]
[(= 0 (length xs)) (error "list-nth-mod: empty list")]
[#t (let ([i (modulo n (length xs))])
(car (list-tail xs i)))]))
(define (stream-for-n-steps s n)
(cond [(= n 0) null]
[#t (cons (car (s)) (stream-for-n-steps (cdr (s)) (- n 1)))]))
(define funny-number-stream
(letrec ([f (lambda (x)
(let ([z (cond [(= 0 (modulo x 5)) (- 0 x)]
[#t x])])
(cons z (lambda () (f (+ x 1))))))])
(lambda () (f 1))))
(define dan-then-dog
(letrec ([dan (lambda () (cons "dan.jpg" dog))]
[dog (lambda () (cons "dog.jpg" dan))])
(lambda () (dan))))
(define (stream-add-zero s)
(letrec ([f (lambda (x) (cons (cons 0 (car (x))) (lambda () (f (cdr (x))))))])
(lambda () (f s))))
(define (cycle-lists xs ys)
(letrec ([f (lambda(x)
(cons (cons (list-nth-mod xs x) (list-nth-mod ys x))
(lambda() (f (+ 1 x)))))])
(lambda () (f 0))))
(define (vector-assoc v vec)
(letrec ([f (lambda(x)
(cond [(= x (vector-length vec)) #f]
[(pair? (vector-ref vec x))
(if (equal? (car (vector-ref vec x)) v)
(vector-ref vec x)
(f(+ 1 x)))]
[#t (f (+ 1 x))]))])
(f 0)))
(define (cached-assoc xs n)
(letrec ([cache (make-vector n #f)]
[cache-index 0]
[cache-index++ (lambda () (if (< cache-index (- n 1))
(set! cache-index (add1 cache-index))
(set! cache-index 0)))]
[cache-insert (lambda (v) (vector-set! cache cache-index v) (cache-index++))]
[f (lambda (x)
(or (vector-assoc x cache)
(let ([found (assoc x xs)])
(if found
(begin (cache-insert found) found)
#f))))])
f))
(define-syntax while-less
(syntax-rules (do)
[(while-less high do body)
(let ([hi high])
(letrec ([loop (lambda (it)
(if (< it hi)
(begin body (loop (+ 1 it)))
#t))])
(loop body)))]))
| true |
36b2872abd9946d851087f456ca57a339c1be39a | 9d1701a88644663277342f3a12d9795cd55a259c | /CSC324/Labs/lab2.rkt | 90b312aec009e79458490561396f6574e9f5dd65 | []
| no_license | xxcocoymlxx/Study-Notes | cb05c0e438b0c47b069d6a4c30dd13ab97e4ee6d | c7437d387dc2b9a8039c60d8786373899c2e28bd | refs/heads/master | 2023-01-13T06:09:11.005038 | 2020-05-19T19:37:45 | 2020-05-19T19:37:45 | 252,774,764 | 2 | 0 | null | 2022-12-22T15:29:26 | 2020-04-03T15:44:44 | Jupyter Notebook | UTF-8 | Racket | false | false | 4,586 | rkt | lab2.rkt | #lang racket #| CSC324 Fall 2018: Lab 2 |#
;-------------------------------------------------------------------------------
; * Task 1: num-pred *
;-------------------------------------------------------------------------------
(define (num-pred pred lst)
(cond
[(null? lst) 0]
[else
(let ([first-val (first lst)]
[num-rest-lst (num-pred pred (rest lst))])
(if (pred first-val)
(+ 1 num-rest-lst)
num-rest-lst))]))
(module+ test
(require rackunit)
(require "ex1.rkt") ; replace with the relative path to your exercise 1
;Returns the number of even elements in the list.
(test-equal? "num-pred/num-evens"
(num-evens (list 1 2 3 4 5))
(num-pred even? (list 1 2 3 4 5)))
; TODO: replace the ellipsis with the appropriate predicate for this test to pass.
(test-equal? "num-pred/num-many-evens"
(num-many-evens (list (list 1 2 3 4 5) (list 2 4 6 10)))
(num-pred (lambda (x) (> (num-pred even? x) 2))
(list (list 1 2 3 4 5) (list 2 4 6 10)))))
;-------------------------------------------------------------------------------
; Task 2: make-counter *
;-------------------------------------------------------------------------------
;the point of this function is not performing a function on a different list every time
;we have a fixed list, we just want to do different operations on the same list
(define (make-counter pred)
(lambda (lst) (num-pred pred lst)))
; Uncomment and define these using `make-counter`.
(define num-evens-1 (make-counter even?))
(define num-many-evens-1 (make-counter (lambda (x) (> (num-pred even? x) 2))))
;-------------------------------------------------------------------------------
; * Task 3: Manipulating Racket expressions *
;-------------------------------------------------------------------------------
#|
(extract-ints datum)
datum: A Racket datum (i.e., quoted expression).
Returns a list of all *integer* literals appearing in the expression.
The list should contain the literals in the left-to-right order they appear
in the text of the quoted expression.
Use the predicates `list?` or `null?` to check for whether a given expression
is a list or an empty list, respectively. You may assume that if the input
is not a list, then it is an atom (either a symbol or some sort of literal).
Hint: you may need a recursive helper function to accumulate the results of
calling extract-ints recursively. Or, look up the append, map, and append-map
list functions to see if you get any ideas!
While you may assume the program is syntactically valid, it is not necessarily
semantically valid. For example, it might produce type errors at runtime;
Your function should still correctly return all integer literals appearing in
the program. See tests for some examples.
|#
(define (extract-ints prog)
(cond [(null? prog) (list)];returns empty list
[(list? prog)
(let ([first-element (first prog)]
[rest-output (extract-ints (rest prog))])
(if (integer? first-element)
(append (list first-element) rest-output)
(append (extract-ints first-element) rest-output)))]
[(integer? prog) (list prog)]
[else
(list)]
))
(module+ test
(check-equal? (extract-ints '2) (list 2)) ; Note: '2 == 2, i.e., the ' is unnecessary.
(check-equal? (extract-ints '(+ 1 2)) (list 1 2))
(check-equal? (extract-ints '(list 1 2 3 4)) (list 1 2 3 4))
(check-equal? (extract-ints '(+ (- 9 7) (* 2 8))) (list 9 7 2 8))
(check-equal? (extract-ints 'ident) (list)))
#|
(replace-324 datum)
datum: A Racket datum (i.e., quoted expression).
Return a new datum that is the same as the input, except every occurrence
of the numeric literal 324 is replaced with 9000.
|#
(define (replace-324 datum)
(cond [(null? datum) null]
[(list? datum)
(let ([first-value (first datum)]
[rest-value (replace-324 (rest datum))])
(if (equal? first-value 324)
(cons 9000 rest-value)
(cons (replace-324 first-value) rest-value)))]
[(equal? 324 datum)
9000]
[else
datum]))
(module+ test
(check-equal? (replace-324 "hello!") "hello!")
(check-equal? (replace-324 324) 9000)
(check-equal? (replace-324 '(+ 1 2)) '(+ 1 2))
(check-equal? (replace-324 '(list 1 2 324 4)) '(list 1 2 9000 4))
(check-equal? (replace-324 '(+ (- 324 7) (* 2 324))) '(+ (- 9000 7) (* 2 9000))))
| false |
5686b58dc54b40fab1b31eec10f9a0e594ee0f89 | 4c2dc47a9d9aa20d516a3a70d12d4e33ea28984b | /examples/seaweed.rkt | e0a86ca6b002c357e4c511ddba54265344495453 | [
"CC-BY-4.0"
]
| permissive | rfindler/lindenmayer | 92c0d0bafdc9097ba60a7dea73a548b5eb27e8b7 | 695db090aa4cfdb9338cd34ad0a0b8f72b698a54 | refs/heads/master | 2023-03-13T01:13:59.554157 | 2023-03-04T16:21:58 | 2023-03-04T16:50:37 | 83,209,018 | 27 | 4 | null | 2017-03-05T03:55:58 | 2017-02-26T13:06:46 | Racket | UTF-8 | Racket | false | false | 2,378 | rkt | seaweed.rkt | #lang lindenmayer racket
## axiom ##
abF
## rules ##
a โ FFf
b โ c
c โ Fddde[+++++m][-----m]ddfc
d โ e
e โ g
g โ h
h โ i
i โ j
j โ k
k โ FF
m โ nofF
n โ fFF
o โ p
p โ fF[------A][++++++H]Fq
q โ ff[-----B][+++++I]Fr
r โ fF[----C][++++J]Fs
s โ fF[---D][+++K]Ft
t โ fF[--E][++L]F
A โ BF
B โ Ff+C
C โ Ff+D
D โ Ff+E
E โ Ff+G
G โ Ff+
H โ IF
I โ Ff-J
J โ Ff-I
K โ Ff-L
L โ FF-M
M โ Ff-
## variables ##
ฮธ=10
n=11
w=300
h=300
-----------------------
## axiom ##
abF
## rules ##
a โ Ff
b โ c
c โ FFFQ[++++A][----I]FFfd
d โ +FFFQ[++++A][----I]FFfe
e โ FFFQ[++++A][----I]FFfg
g โ -FFFQ[++++A][----I]FFfh
h โ FFFQ[++++A][----I]FFfi
i โ FFFQ[+++fp]FFfj
j โ FFFQ[++++A][----I]FFfk
k โ +FFQ[++++A][----I]FFfl
l โ FFFQ[++++A][----I]FFfm
m โ -FFFQ[++++A][----I]FFfn
n โ FFFQ[++++A][----I]FFfo
o โ FFFQ[---fp]FFfc
p โ abF
A โ BCfFFF
B โ fF
C โ D
D โ fFFFE
E โ fFF[-P]FG
G โ fFF[-P]FH
H โ fFF[-P]F
I โ JKfFFF
J โ fF
K โ L
L โ fFFFM
M โ fFF[+P]FN
N โ fFF[+P]FO
O โ fFF[+P]F
P โ fFfF
Q โ FQ
## variables ##
ฮธ=20
n=24
w=300
h=300
=================
#|
From:
COMPUTER SIMULATION OF THE MORPHOLOGY AND
DEVELOPMENT OF SEVERAL SPECIES OF SEAWEED
USING LINDENMAYER SYSTEMS
|#
(require lindenmayer/turtle)
(provide (all-from-out lindenmayer/turtle) (all-defined-out))
(define (a state . v) state)
(define (b state . v) state)
(define (c state . v) state)
(define (d state . v) state)
(define (e state . v) state)
(define (g state . v) state)
(define (h state . v) state)
(define (i state . v) state)
(define (j state . v) state)
(define (k state . v) state)
(define (l state . v) state)
(define (m state . v) state)
(define (n state . v) state)
(define (o state . v) state)
(define (p state . v) state)
(define (q state . v) state)
(define (r state . v) state)
(define (s state . v) state)
(define (t state . v) state)
(define (A state . v) state)
(define (B state . v) state)
(define (C state . v) state)
(define (D state . v) state)
(define (E state . v) state)
(define (G state . v) state)
(define (H state . v) state)
(define (I state . v) state)
(define (J state . v) state)
(define (K state . v) state)
(define (L state . v) state)
(define (M state . v) state)
(define (N state . v) state)
(define (O state . v) state)
(define (P state . v) state)
(define (Q state . v) state)
| false |
5d1de881db879b544b4be083ace472e81c704ded | 0c76408a0cab75d299550fff8cb3b2d5cb22aa1e | /parser.rkt | a640ea22b47ce4906c901c5b6d2f0a41424bea37 | [
"MIT"
]
| permissive | tfidfwastaken/yamm | aa7b2eb1efcaf61945d6f2e3fd499ae8b087bb40 | 9df6e29bfaa66dfc4f150197ccb918fd6c59b458 | refs/heads/master | 2022-11-06T15:23:10.468007 | 2020-06-26T09:53:23 | 2020-06-26T09:53:23 | 274,469,666 | 2 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 100 | rkt | parser.rkt | #lang brag
yamm-program : (yaml-char | sexp)*
yaml-char : YAML-CHAR-TOK
sexp : SEXP-TOK
| false |
b2c89883eb4e5e243341c43897770a91ef5fa07c | a70301d352dcc9987daf2bf12919aecd66defbd8 | /mredtalk2/talk.rkt | 66e3c9f09826995f9df3851d05d8b27c70a20822 | []
| no_license | mflatt/talks | 45fbd97b1ca72addecf8f4b92053b85001ed540b | 7abfdf9a9397d3d3d5d1b4c107ab6a62d0ac1265 | refs/heads/master | 2021-01-19T05:18:38.094408 | 2020-06-04T16:29:25 | 2020-06-04T16:29:25 | 87,425,078 | 2 | 2 | null | null | null | null | UTF-8 | Racket | false | false | 51 | rkt | talk.rkt | #lang racket/base
(require "../mredtalk3/talk.ss")
| false |
3d0daa8b4d6082e8f4e1a2234af82c904cf46d65 | 2f09df60be7100404c01084d3f8b97f5d4144510 | /src/trove/naive-date.scrbl | ce78b8ee7c7934699e5bbae8e010d5cff4adcc31 | []
| no_license | changka-diwan/pyret-dates-times | 73960bb3e59d66672d4bd75dcce374be9d84905c | cfc852251be07e2d648fec8d2dc0d8f5d9cb9fae | refs/heads/main | 2023-02-16T16:16:33.406576 | 2021-01-18T16:29:50 | 2021-01-18T16:29:50 | 324,372,629 | 2 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 31,538 | scrbl | naive-date.scrbl | #lang scribble/manual
@(require "../../scribble-api.rkt" "../abbrevs.rkt")
@(require (only-in scribble/core delayed-block))
@(define (nd-method name #:args args #:return ret #:contract contract)
(method-doc "NaiveDate" "naive-date" name #:alt-docstrings "" #:args args #:return ret #:contract contract))
@(append-gen-docs
`(module "naive-date"
(path "src/js/base/runtime-anf.js")
(data-spec
(name "NaiveDate")
(variants ("naive-date" "naive-time" "offset-time" "naive-date-time" "utc-date-time" "offset-date-time" "zoned-date-time"))
(shared (
(method-spec (name "at-start-of-day"))
(method-spec (name "zoned-start-of-day"))
(method-spec (name "at-time-any"))
(method-spec (name "at-naive-time"))
(method-spec (name "at-offset-time"))
(method-spec (name "get-day-of-month"))
(method-spec (name "get-month-value"))
(method-spec (name "get-year"))
(method-spec (name "is-leap-year"))
(method-spec (name "is-before"))
(method-spec (name "is-after"))
(method-spec (name "until"))
(method-spec (name "minus"))
(method-spec (name "minus-duration"))
(method-spec (name "minus-days"))
(method-spect(name "minus-weeks"))
(method-spec (name "minus-months"))
(method-spec (name "minus-years"))
(method-spec (name "plus-duration"))
(method-spec (name "plus-days"))
(method-spec (name "plus-weeks"))
(method-spec (name "plus-months"))
(method-spec (name "plus-years"))
(method-spec (name "to-string"))
(method-spec (name "get-remaining-days-in-year"))
(method-spec (name "get-days-in-year-till-date"))
(method-spec (name "with-unit"))
(method-spec (name "with-day"))
(method-spec (name "with-month"))
(method-spec (name "with-year"))
(method-spec (name "successor"))
(method-spec (name "predecessor"))
)))
(fun-spec (name "make-naive-date"))
(fun-spec (name "naive-date"))
@;{
(fun-spec (name "duration-of-any"))
(fun-spec (name "duration-of-ymd"))
(fun-spec (name "duration-of-hms"))
(fun-spec (name "duration-of-years"))
(fun-spec (name "duration-of-months"))
(fun-spec (name "duration-of-days"))
(fun-spec (name "duration-of-hours"))
(fun-spec (name "duration-of-minutes"))
(fun-spec (name "duration-of-seconds"))
}
))
@docmodule["naive-date"]{
@ignore[(list "make-naive-date")]
@section{The NaiveDate Datatype}
TODO
@;{
@data-spec2["NaiveDate" '() (list
@constructor-spec["Temporal" "naive-date"
(list `("year" ("type" "normal") ("contract" ,(a-id "Number")))
`("month" ("type" "normal") ("contract" ,(a-id "Number")))
`("day" ("type" "normal") ("contract" ,(a-id "Number"))))]
@constructor-spec["Temporal" "naive-time"
(list `("hour" ("type" "normal") ("contract" ,(a-id "Number")))
`("minute" ("type" "normal") ("contract" ,(a-id "Number")))
`("second" ("type" "normal") ("contract" ,(a-id "Number"))))]
@constructor-spec["Temporal" "naive-date-time"
(list `("year" ("type" "normal") ("contract" ,(a-id "Number")))
`("month" ("type" "normal") ("contract" ,(a-id "Number")))
`("day" ("type" "normal") ("contract" ,(a-id "Number")))
`("hour" ("type" "normal") ("contract" ,(a-id "Number")))
`("minute" ("type" "normal") ("contract" ,(a-id "Number")))
`("second" ("type" "normal") ("contract" ,(a-id "Number"))))]
@constructor-spec["Temporal" "offset-time"
(list `("hour" ("type" "normal") ("contract" ,(a-id "Number")))
`("minute" ("type" "normal") ("contract" ,(a-id "Number")))
`("second" ("type" "normal") ("contract" ,(a-id "Number")))
`("offset" ("type" "normal") ("contract" ,(a-id "ZoneOffset"))))]
@constructor-spec["Temporal" "utc-date-time"
(list `("year" ("type" "normal") ("contract" ,(a-id "Number")))
`("month" ("type" "normal") ("contract" ,(a-id "Number")))
`("day" ("type" "normal") ("contract" ,(a-id "Number")))
`("hour" ("type" "normal") ("contract" ,(a-id "Number")))
`("minute" ("type" "normal") ("contract" ,(a-id "Number")))
`("second" ("type" "normal") ("contract" ,(a-id "Number"))))]
@constructor-spec["Temporal" "offset-date-time"
(list `("year" ("type" "normal") ("contract" ,(a-id "Number")))
`("month" ("type" "normal") ("contract" ,(a-id "Number")))
`("day" ("type" "normal") ("contract" ,(a-id "Number")))
`("hour" ("type" "normal") ("contract" ,(a-id "Number")))
`("minute" ("type" "normal") ("contract" ,(a-id "Number")))
`("second" ("type" "normal") ("contract" ,(a-id "Number")))
`("offset" ("type" "normal") ("contract" ,(a-id "ZoneOffset"))))]
@constructor-spec["Temporal" "zoned-date-time"
(list `("year" ("type" "normal") ("contract" ,(a-id "Number")))
`("month" ("type" "normal") ("contract" ,(a-id "Number")))
`("day" ("type" "normal") ("contract" ,(a-id "Number")))
`("hour" ("type" "normal") ("contract" ,(a-id "Number")))
`("minute" ("type" "normal") ("contract" ,(a-id "Number")))
`("second" ("type" "normal") ("contract" ,(a-id "Number")))
`("zone-id" ("type" "normal") ("contract" ,(a-id "ZoneID"))))])]
@nested[#:style 'inset]{
TODO
}
}
@section{NaiveDate Methods}
@nd-method["at-start-of-day"
#:contract (a-arrow ND NDT)
#:args (list (list "self" #f))
#:return NDT
]
Combines this date with the time of midnight to create a
Temporal%(is-naive-date-time) at the start of this date.
@examples{
check:
1 is 1
end
}
@nd-method["zoned-start-of-day"
#:contract (a-arrow ND ZI ZDT)
#:args (list (list "self" #f) (list "zone-id" #f))
#:return ZDT
]
Returns a zoned date-time from this date at the earliest valid time according to the rules in the time-zone.`
@examples{
check:
1 is 1
end
}
@nd-method["at-time-any"
#:contract (a-arrow ND N N N NDT)
#:args (list (list "self" #f) (list "hour" #f) (list "minute" #f) (list "second" #f))
#:return NDT
]
Combines this date with a time to create a Temporal%(is-naive-date-time).
@examples{
check:
1 is 1
end
}
@nd-method["at-naive-time"
#:contract (a-arrow ND NT NDT)
#:args (list (list "self" #f) (list "time" #f))
#:return NDT
]
Combines this date with a time to create a Temporal%(is-naive-date-time).
@examples{
check:
1 is 1
end
}
@nd-method["at-offset-time"
#:contract (a-arrow ND OT ODT)
#:args (list (list "self" #f) (list "time" #f))
#:return ODT
]
Combines this date with an offset time to create an Temporal%(is-offset-date-time).
@examples{
check:
1 is 1
end
}
@nd-method["get-day-of-month"
#:contract (a-arrow ND N)
#:args (list (list "self" #f))
#:return N
]
Gets the value of the day unit.
@examples{
check:
1 is 1
end
}
@nd-method["get-month-value"
#:contract (a-arrow ND N)
#:args (list (list "self" #f))
#:return N
]
"Gets the value of the month unit from 1 to 12."
@examples{
check:
1 is 1
end
}
@nd-method["get-year"
#:contract (a-arrow ND N)
#:args (list (list "self" #f))
#:return N
]
"Gets the value of the year unit."
@examples{
check:
1 is 1
end
}
@nd-method["is-leap-year"
#:contract (a-arrow ND B)
#:args (list (list "self" #f))
#:return B
]
Checks if the year of this date is a leap year, according to the ISO proleptic calendar system rules.
@examples{
check:
1 is 1
end
}
@nd-method["is-before"
#:contract (a-arrow ND ND B)
#:args (list (list "self" #f) (list "compare-with" #f))
#:return B
]
Determines whether the current date occurs before the date it is being compared with.
@examples{
check:
1 is 1
end
}
@nd-method["is-after"
#:contract (a-arrow ND ND B)
#:args (list (list "self" #f) (list "compare-with" #f))
#:return B
]
Determines whether the current date occurs after the date it is being compared with.
@examples{
check:
1 is 1
end
}
@nd-method["until"
#:contract (a-arrow ND ND D)
#:args (list (list "self" #f) (list "other" #f))
#:return D
]
Calculates the amount of time until another date.
@examples{
check:
1 is 1
end
}
@nd-method["minus"
#:contract (a-arrow ND ND D)
#:args (list (list "self" #f) (list "other" #f))
#:return D
]
Calculates the duration of days to add to 'other' to get the date in question.
@examples{
check:
1 is 1
end
}
@nd-method["minus-duration"
#:contract (a-arrow ND D ND)
#:args (list (list "self" #f) (list "amount" #f))
#:return ND
]
Returns a copy of this date with the specified duration subtracted.
(month => 30 days, year => 365 days inside a duration)
@examples{
check:
1 is 1
end
}
@nd-method["minus-days"
#:contract (a-arrow ND N ND)
#:args (list (list "self" #f) (list "days" #f))
#:return ND
]
Returns a copy of this NaiveDate with the specified duration of days subtracted.
@examples{
check:
1 is 1
end
}
@nd-method["minus-weeks"
#:contract (a-arrow ND N ND)
#:args (list (list "self" #f) (list "weeks" #f))
#:return ND
]
Returns a copy of this NaiveDate with the specified duration of weeks subtracted.
@nd-method["minus-months"
#:contract (a-arrow ND N ND)
#:args (list (list "self" #f) (list "months" #f))
#:return ND
]
Returns a copy of this NaiveDate with the specified duration of months subtracted.
@examples{
check:
1 is 1
end
}
@nd-method["minus-years"
#:contract (a-arrow ND N ND)
#:args (list (list "self" #f) (list "years" #f))
#:return ND
]
Returns a copy of this NaiveDate with the specified duration of years subtracted.
@examples{
check:
1 is 1
end
}
@nd-method["plus-duration"
#:contract (a-arrow ND D ND)
#:args (list (list "self" #f) (list "amount" #f))
#:return ND
]
Returns a copy of this date with the specified duration added.
(month => 30 days, year => 365 days inside a duration)
@examples{
check:
1 is 1
end
}
@nd-method["plus-days"
#:contract (a-arrow ND N ND)
#:args (list (list "self" #f) (list "days" #f))
#:return ND
]
Returns a copy of this NaiveDate with the specified duration of days added.
@examples{
check:
1 is 1
end
}
@nd-method["plus-weeks"
#:contract (a-arrow ND N ND)
#:args (list (list "self" #f) (list "weeks" #f))
#:return ND
]
Returns a copy of this NaiveDate with the specified duration of weeks added.
@nd-method["plus-months"
#:contract (a-arrow ND N ND)
#:args (list (list "self" #f) (list "months" #f))
#:return ND
]
Returns a copy of this NaiveDate with the specified duration of months added.
@examples{
check:
1 is 1
end
}
@nd-method["plus-years"
#:contract (a-arrow ND N ND)
#:args (list (list "self" #f) (list "years" #f))
#:return ND
]
Returns a copy of this NaiveDate with the specified duration of years added.
@examples{
check:
1 is 1
end
}
@nd-method["to-string"
#:contract (a-arrow ND S)
#:args (list (list "self" #f))
#:return S
]
Outputs this date as a String, such as 2007-12-03.
@examples{
check:
1 is 1
end
}
@nd-method["get-remaining-days-in-year"
#:contract (a-arrow ND N)
#:args (list (list "self" #f))
#:return N
]
Returns the number of days remaining in a year.
@examples{
check:
1 is 1
end
}
@nd-method["get-days-in-year-till-date"
#:contract (a-arrow ND N)
#:args (list (list "self" #f))
#:return N
]
Returns the number of days that have occurred in a year so far.
@examples{
check:
1 is 1
end
}
@nd-method["with-unit"
#:contract (a-arrow ND TU N ND)
#:args (list (list "self" #f) (list "unit" #f) (list "val" #f))
#:return ND
]
Returns a copy of this date with the specified unit set to a new value.
@examples{
check:
1 is 1
end
}
@nd-method["with-day"
#:contract (a-arrow ND N ND)
#:args (list (list "self" #f) (list "day" #f))
#:return ND
]
Returns a copy of this NaiveDate with the day-of-month altered.
@examples{
check:
1 is 1
end
}
@nd-method["with-month"
#:contract (a-arrow ND N ND)
#:args (list (list "self" #f) (list "month" #f))
#:return ND
]
Returns a copy of this NaiveDate with the month value altered.
@examples{
check:
1 is 1
end
}
@nd-method["with-year"
#:contract (a-arrow ND N ND)
#:args (list (list "self" #f) (list "year" #f))
#:return ND
]
Returns a copy of this NaiveDate with the year value altered.
@examples{
check:
1 is 1
end
}
@nd-method["successor"
#:contract (a-arrow ND ND)
#:args (list (list "self" #f))
#:return ND
]
Returns a copy of this NaiveDate with the day incremented by 1.
@examples{
check:
1 is 1
end
}
@nd-method["predecessor"
#:contract (a-arrow ND ND)
#:args (list (list "self" #f))
#:return ND
]
Returns a copy of this NaiveDate with the day decreased by 1.
@examples{
check:
1 is 1
end
}
@;{
@section{NaiveDate Functions}
These functions require the Temporal module to be
@pyret{import}ed, as indicated in the examples.
@function["naive-date-of-any"
#:contract (a-arrow N N N ND)
#:args '(("years" #f) ("months" #f) ("days" #f))
#:return ND
]{
Obtains an instance of NaiveDate from a year, month and day.
@examples{
import duration as D
check:
1 is 1
end
}
}
@function["parse-naive-date"
#:contract (a-arrow S ND)
#:args '(("text" #f))
#:return ND
]{
Obtains an instance of NaiveDate from a text string such as 2007-12-03.
@examples{
import duration as D
check:
1 is 1
end
}
}
@function["naive-date-now"
#:contract (a-arrow ND)
#:args '()
#:return ND
]{
Obtains the current date from the system clock in the default time-zone.
@examples{
import duration as D
check:
1 is 1
end
}
}
@function["naive-date-from-zone-now"
#:contract (a-arrow ND)
#:args '()
#:return ND
]{
Obtains the current date from the system clock in the specified time-zone.
@examples{
import duration as D
check:
1 is 1
end
}
}
@section{NaiveTime Methods}
@nt-method["at-date"
#:contract (a-arrow NT ND NDT)
#:args (list (list "self" #f) (list "date" #f))
#:return NDT
]
Combines this time with a date to create a Temporal%(is-naive-date-time).
@examples{
check:
1 is 1
end
}
@nt-method["at-offset"
#:contract (a-arrow NT ZO OT)
#:args (list (list "self" #f) (list "offset" #f))
#:return OT
]
Combines this time with an offset to create an Temporal%(is-offset-time).
@examples{
check:
1 is 1
end
}
@nt-method["get-second"
#:contract (a-arrow NT N)
#:args (list (list "self" #f))
#:return N
]
Gets the value of the seconds unit.
@examples{
check:
1 is 1
end
}
@nt-method["get-minute"
#:contract (a-arrow NT N)
#:args (list (list "self" #f))
#:return N
]
Gets the value of the minutes unit.
@examples{
check:
1 is 1
end
}
@nt-method["get-hour"
#:contract (a-arrow NT N)
#:args (list (list "self" #f))
#:return N
]
Gets the value of the hours unit.
@examples{
check:
1 is 1
end
}
@nt-method["is-after"
#:contract (a-arrow NT NT B)
#:args (list (list "self" #f) (list "other" #f))
#:return B
]
Checks if this Temporal%(is-naive-time) is after the specified Temporal%(is-naive-time).
@examples{
check:
1 is 1
end
}
@nt-method["is-before"
#:contract (a-arrow NT NT B)
#:args (list (list "self" #f) (list "other" #f))
#:return B
]
Checks if this Temporal%(is-naive-time) is before the specified Temporal%(is-naive-time).
@examples{
check:
1 is 1
end
}
@nt-method["minus"
#:contract (a-arrow NT D NT)
#:args (list (list "self" #f) (list "amt" #f))
#:return NT
]
Returns a copy of this time with the specified amount subtracted.
@examples{
check:
1 is 1
end
}
@nt-method["minus-seconds"
#:contract (a-arrow NT N NT)
#:args (list (list "self" #f) (list "seconds" #f))
#:return NT
]
Returns a copy of this time with the specified number of seconds subtracted.
@examples{
check:
1 is 1
end
}
@nt-method["minus-minutes"
#:contract (a-arrow NT N NT)
#:args (list (list "self" #f) (list "minutes" #f))
#:return NT
]
Returns a copy of this time with the specified number of minutes subtracted.
@examples{
check:
1 is 1
end
}
@nt-method["minus-hours"
#:contract (a-arrow NT N NT)
#:args (list (list "self" #f) (list "hours" #f))
#:return NT
]
Returns a copy of this time with the specified number of hours subtracted.
@examples{
check:
1 is 1
end
}
@nt-method["plus"
#:contract (a-arrow NT D NT)
#:args (list (list "self" #f) (list "amt" #f))
#:return NT
]
Returns a copy of this time with the specified amount added.
@examples{
check:
1 is 1
end
}
@nt-method["plus-seconds"
#:contract (a-arrow NT N NT)
#:args (list (list "self" #f) (list "seconds" #f))
#:return NT
]
Returns a copy of this time with the specified number of seconds added.
@examples{
check:
1 is 1
end
}
@nt-method["plus-minutes"
#:contract (a-arrow NT N NT)
#:args (list (list "self" #f) (list "minutes" #f))
#:return NT
]
Returns a copy of this time with the specified number of minutes added.
@examples{
check:
1 is 1
end
}
@nt-method["plus-hours"
#:contract (a-arrow NT N NT)
#:args (list (list "self" #f) (list "hours" #f))
#:return NT
]
Returns a copy of this time with the specified number of hours added.
@examples{
check:
1 is 1
end
}
@nt-method["to-string"
#:contract (a-arrow NT S)
#:args (list (list "self" #f))
#:return S
]
Outputs this time as a String, such as 10:15:30
@examples{
check:
1 is 1
end
}
@nt-method["to-second-of-day"
#:contract (a-arrow NT N)
#:args (list (list "self" #f))
#:return N
]
Extracts the time as seconds of day, from 0 to 24 * 60 * 60 - 1.
@examples{
check:
1 is 1
end
}
@nt-method["until"
#:contract (a-arrow NT NT D)
#:args (list (list "self" #f) (list "other" #f))
#:return D
]
Calculates the normalized duration of time until another time.
@examples{
check:
1 is 1
end
}
@nt-method["with-unit"
#:contract (a-arrow NT TU N NT)
#:args (list (list "self" #f) (list "unit" #f) (list "val" #f))
#:return NT
]
Returns a copy of this time with the specified unit set to a new value.
@examples{
check:
1 is 1
end
}
@nt-method["with-second"
#:contract (a-arrow NT N NT)
#:args (list (list "self" #f) (list "second" #f))
#:return NT
]
Returns a copy of this temporal with the seconds altered.
@examples{
check:
1 is 1
end
}
@nt-method["with-minute"
#:contract (a-arrow NT N NT)
#:args (list (list "self" #f) (list "minute" #f))
#:return NT
]
Returns a copy of this temporal with the minutes altered.
@examples{
check:
1 is 1
end
}
@nt-method["with-hour"
#:contract (a-arrow NT N NT)
#:args (list (list "self" #f) (list "hour" #f))
#:return NT
]
Returns a copy of this temporal with the hours altered.
@examples{
check:
1 is 1
end
}
@section{NaiveTime Functions}
These functions require the Temporal module to be
@pyret{import}ed, as indicated in the examples.
@function["naive-time-of-any"
#:contract (a-arrow N N N NT)
#:args (list (list "hour" #f) (list "month" #f) (list "day" #f))
#:return NT
]{
Obtains an instance of NaiveTime from a year, month and day.
@examples{
import temporal as T
check:
1 is 1
end
}
}
@function["naive-time-now"
#:contract (a-arrow NT)
#:args '()
#:return NT
]{
Obtains the current time from the system clock in the default time-zone.
@examples{
import temporal as T
check:
1 is 1
end
}
}
@function["naive-time-from-zone-now"
#:contract (a-arrow NT)
#:args '()
#:return NT
]{
Obtains the current time from the system clock in the specified time-zone.
@examples{
import temporal as T
check:
1 is 1
end
}
}
@function["parse-naive-time"
#:contract (a-arrow S NT)
#:args (list (list "text" #f))
#:return NT
]{
Obtains an instance of Temporal%(is-naive-time) from a text string such as 23:59:59
@examples{
import temporal as T
check:
1 is 1
end
}
}
@section{OffsetTime Methods}
@ot-method["at-date"
#:contract (a-arrow OT ND ODT)
#:args (list (list "self" #f) (list "date" #f))
#:return ODT
]
Combines this time with a date to create a Temporal%(is-offset-date-time).
@examples{
check:
1 is 1
end
}
@ot-method["at-offset"
#:contract (a-arrow OT ZO OT)
#:args (list (list "self" #f) (list "offset" #f))
#:return OT
]
Combines this time with an offset to create an Temporal%(is-offset-time).
@examples{
check:
1 is 1
end
}
@ot-method["get-second"
#:contract (a-arrow OT N)
#:args (list (list "self" #f))
#:return N
]
Gets the value of the seconds unit.
@examples{
check:
1 is 1
end
}
@ot-method["get-minute"
#:contract (a-arrow OT N)
#:args (list (list "self" #f))
#:return N
]
Gets the value of the minutes unit.
@examples{
check:
1 is 1
end
}
@ot-method["get-hour"
#:contract (a-arrow OT N)
#:args (list (list "self" #f))
#:return N
]
Gets the value of the hours unit.
@examples{
check:
1 is 1
end
}
@ot-method["get-naive-time"
#:contract (a-arrow OT NT)
#:args (list (list "self" #f))
#:return NT
]
Gets the NaiveTime component from the OffsetTime in question.
@examples{
check:
1 is 1
end
}
@ot-method["to-utc-time"
#:contract (a-arrow OT OT)
#:args (list (list "self" #f))
#:return OT
]
Returns an OffsetTime with the time component representing the equivalent time in UTC and the ZoneOffset set to zero.
@examples{
check:
1 is 1
end
}
@ot-method["with-offset-same-naive"
#:contract (a-arrow OT OT)
#:args (list (list "self" #f))
#:return OT
]
Returns a copy of this OffsetTime with an offset of zero magnitude ensuring that the result has the same naive time.
@examples{
check:
1 is 1
end
}
@ot-method["is-after"
#:contract (a-arrow OT OT B)
#:args (list (list "self" #f) (list "other" #f))
#:return B
]
Checks if this Temporal%(is-offset-time) is after the specified Temporal%(is-offset-time).
@examples{
check:
1 is 1
end
}
@ot-method["is-before"
#:contract (a-arrow OT OT B)
#:args (list (list "self" #f) (list "other" #f))
#:return B
]
Checks if this Temporal%(is-offset-time) is before the specified Temporal%(is-offset-time).
@examples{
check:
1 is 1
end
}
@ot-method["minus"
#:contract (a-arrow OT D OT)
#:args (list (list "self" #f) (list "amt" #f))
#:return OT
]
Returns a copy of this OffsetTime with the specified amount subtracted.
@examples{
check:
1 is 1
end
}
@ot-method["minus-seconds"
#:contract (a-arrow OT N OT)
#:args (list (list "self" #f) (list "seconds" #f))
#:return OT
]
Returns a copy of this OffsetTime with the specified number of seconds subtracted.
@examples{
check:
1 is 1
end
}
@ot-method["minus-minutes"
#:contract (a-arrow OT N OT)
#:args (list (list "self" #f) (list "minutes" #f))
#:return OT
]
Returns a copy of this OffsetTime with the specified number of minutes subtracted.
@examples{
check:
1 is 1
end
}
@ot-method["minus-hours"
#:contract (a-arrow OT N OT)
#:args (list (list "self" #f) (list "hours" #f))
#:return OT
]
Returns a copy of this OffsetTime with the specified number of hours subtracted.
@examples{
check:
1 is 1
end
}
@ot-method["plus"
#:contract (a-arrow OT D OT)
#:args (list (list "self" #f) (list "amt" #f))
#:return OT
]
Returns a copy of this OffsetTime with the specified amount added.
@examples{
check:
1 is 1
end
}
@ot-method["plus-seconds"
#:contract (a-arrow OT N OT)
#:args (list (list "self" #f) (list "seconds" #f))
#:return OT
]
Returns a copy of this OffsetTime with the specified number of seconds added.
@examples{
check:
1 is 1
end
}
@ot-method["plus-minutes"
#:contract (a-arrow OT N OT)
#:args (list (list "self" #f) (list "minutes" #f))
#:return OT
]
Returns a copy of this OffsetTime with the specified number of minutes added.
@examples{
check:
1 is 1
end
}
@ot-method["plus-hours"
#:contract (a-arrow OT N OT)
#:args (list (list "self" #f) (list "hours" #f))
#:return OT
]
Returns a copy of this OffsetTime with the specified number of hours added.
@examples{
check:
1 is 1
end
}
@ot-method["to-string"
#:contract (a-arrow OT S)
#:args (list (list "self" #f))
#:return S
]
Outputs this time as a String, such as 10:15:30+00:30.
@examples{
check:
1 is 1
end
}
@ot-method["to-second-of-day"
#:contract (a-arrow OT N)
#:args (list (list "self" #f))
#:return N
]
Extracts the time as seconds of day, from 0 to 24 * 60 * 60 - 1.
@examples{
check:
1 is 1
end
}
@ot-method["until"
#:contract (a-arrow OT OT D)
#:args (list (list "self" #f) (list "other" #f))
#:return D
]
Calculates the normalized duration of time until another OffsetTime.
@examples{
check:
1 is 1
end
}
@ot-method["with-unit"
#:contract (a-arrow OT TU N OT)
#:args (list (list "self" #f) (list "unit" #f) (list "val" #f))
#:return OT
]
Returns a copy of this time with the specified unit set to a new value.
@examples{
check:
1 is 1
end
}
@ot-method["with-second"
#:contract (a-arrow OT N OT)
#:args (list (list "self" #f) (list "second" #f))
#:return OT
]
Returns a copy of this OffsetTime with the seconds altered.
@examples{
check:
1 is 1
end
}
@ot-method["with-minute"
#:contract (a-arrow OT N OT)
#:args (list (list "self" #f) (list "minute" #f))
#:return OT
]
Returns a copy of this OffsetTime with the minutes altered.
@examples{
check:
1 is 1
end
}
@ot-method["with-hour"
#:contract (a-arrow OT N OT)
#:args (list (list "self" #f) (list "hour" #f))
#:return OT
]
Returns a copy of this OffsetTime with the hours altered.
@examples{
check:
1 is 1
end
}
}
} | false |
c0d445d1a30c1038a51c2b44b1d8d2e93e69a84d | 25a6efe766d07c52c1994585af7d7f347553bf54 | /gui-lib/mred/private/wx/win32/queue.rkt | a01637321f29dcf3cc048cf4d4230ba64264c747 | [
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | racket/gui | 520ff8f4ae5704210822204aa7cd4b74dd4f3eef | d01d166149787e2d94176d3046764b35c7c0a876 | refs/heads/master | 2023-08-25T15:24:17.693905 | 2023-08-10T16:45:35 | 2023-08-10T16:45:35 | 27,413,435 | 72 | 96 | NOASSERTION | 2023-09-14T17:09:52 | 2014-12-02T03:35:22 | Racket | UTF-8 | Racket | false | false | 6,622 | rkt | queue.rkt | #lang racket/base
(require ffi/unsafe
racket/class
ffi/unsafe/alloc
ffi/unsafe/try-atomic
ffi/unsafe/schedule
"utils.rkt"
"types.rkt"
"const.rkt"
"key.rkt"
"wndclass.rkt"
"../../lock.rkt"
"../common/queue.rkt")
(provide (protect-out win32-start-event-pump)
;; from common/queue:
current-eventspace
queue-event
queue-refresh-event
yield)
;; ------------------------------------------------------------
;; Win32 event pump
(define _LPMSG _pointer)
(define-user32 GetQueueStatus (_wfun _UINT -> _DWORD))
(define-user32 GetMessageW (_wfun _LPMSG _HWND _UINT _UINT -> _BOOL))
(define-user32 PeekMessageW (_wfun _LPMSG _HWND _UINT _UINT _UINT -> _BOOL))
(define-user32 TranslateMessage (_wfun _LPMSG -> _BOOL))
(define-user32 DispatchMessageW (_wfun _LPMSG -> _LRESULT))
(define-user32 PostQuitMessage (_wfun _int -> _void))
(define-user32 EnumThreadWindows (_wfun _DWORD _fpointer _LPARAM -> _BOOL))
(define-user32 GetWindow (_wfun _HWND _UINT -> _HWND))
(define-kernel32 GetCurrentThreadId (_wfun -> _DWORD))
(define-user32 GetAncestor (_wfun _HWND _UINT -> _HWND))
(define-user32 IsChild (_wfun _HWND _HWND -> _BOOL))
(define _enum_proc (_wfun #:atomic? #t _HWND _LPARAM -> _BOOL))
(define free-msg
((deallocator)
(lambda (msg)
(free msg))))
(define malloc-msg
((allocator free-msg)
(lambda ()
(define p (malloc _MSG 'raw))
(cpointer-push-tag! p 'MSG)
p)))
(define (events-ready?)
;; Check for events only since the last PeekMessage:
(not (zero? (LOWORD (GetQueueStatus QS_ALLINPUT)))))
(define (install-wakeup fds)
(pre-event-sync #t)
(unsafe-poll-ctx-eventmask-wakeup fds QS_ALLINPUT))
(set-check-queue! events-ready?)
(set-queue-wakeup! install-wakeup)
;; Check `IsChild` on each owner of `hwnd`, which
;; covers things like menus
(define (IsChild* parent hwnd)
(let loop ([hwnd hwnd])
(or (IsChild parent hwnd)
(let ([p (GetWindow hwnd GW_OWNER)])
(if p
(loop p)
hwnd)))))
(define other-peek-evt (make-semaphore))
(define peek-other-peek-evt (semaphore-peek-evt other-peek-evt))
(define (message-dequeue es hwnd)
;; Called in the eventspace for hwnd:
(let ([t (eventspace-extra-table es)]
[id (cast hwnd _HWND _intptr)])
(atomically (hash-remove! t id))
(let ([msg (malloc-msg)])
(let loop ()
(let ([v (PeekMessageW msg hwnd 0 0 PM_REMOVE)])
;; Since we called PeekMeessage in a thread other than the
;; event-pump thread, set `other-peek-evt' so the pump
;; knows to check again.
(unless (sync/timeout 0 peek-other-peek-evt)
(semaphore-post other-peek-evt))
;; Now handle the event:
(when v
(unless (generates-key-event? (cast msg _pointer _MSG-pointer))
(TranslateMessage msg))
(call-as-nonatomic-retry-point
(lambda ()
;; in atomic mode:
(DispatchMessageW msg)))
;; Maybe there's another event for this window:
(loop))))
(free-msg msg))))
(define (queue-message-dequeue es hwnd)
;; in atomic mode
(let ([t (eventspace-extra-table es)]
[id (cast hwnd _HWND _intptr)])
(unless (hash-ref t id #f)
(hash-set! t id #t)
(queue-event es (lambda () (message-dequeue es hwnd))))))
;; For use only in the event-pump thread:
(define msg (malloc-msg))
(define known-hwnds (make-hash))
(define (check-window-event hwnd data)
(hash-set! known-hwnds hwnd #t)
;; in atomic mode
(let* ([root (let loop ([hwnd hwnd])
(let ([p (GetWindow hwnd GW_OWNER)])
(if p
(loop p)
hwnd)))]
[wx (any-hwnd->wx root)])
(if wx
;; One of our windows, so make sure its eventspace
;; asks for the message:
(let ([v (PeekMessageW msg hwnd 0 0 PM_NOREMOVE)])
(when v
(queue-message-dequeue (send wx get-eventspace)
hwnd)))
;; Not our window, so dispatch any available events
(let loop ()
(let ([v (PeekMessageW msg hwnd 0 0 PM_REMOVE)])
(when v
(TranslateMessage msg)
(DispatchMessageW msg)
(loop)))))
#t))
(define check_window_event (function-ptr check-window-event _enum_proc))
(define minus-one (cast -1 _intptr _HWND))
(define (dispatch-all-ready)
;; in atomic mode
(pre-event-sync #f)
(clean-up-destroyed)
;; Windows uses messages above #x0400 to hilite items in the task
;; bar, implement input methods (such as pinyin input), etc. In any
;; case, these messages won't be handled by us, so they can't
;; trigger callbacks. Also, handle messages without a window.
(let loop ()
(let ([v (or (PeekMessageW msg #f WM_USER #xFFFF PM_REMOVE)
;; No idea what #x60 is, but used for input methods as of Windows 10 2004
(PeekMessageW msg #f #x60 #x60 PM_REMOVE)
(PeekMessageW msg minus-one 0 0 PM_REMOVE))])
(when v
(TranslateMessage msg)
(DispatchMessageW msg)
(loop))))
;; Per-window checking lets us put an event in the right
;; eventspace:
(hash-clear! known-hwnds)
(EnumThreadWindows (GetCurrentThreadId) check_window_event 0)
;; Just in case, double-check for messages to windows that we
;; don't recognize from enumeration:
(let loop ()
(let ([v (PeekMessageW msg #f 0 0 PM_NOREMOVE)])
(when v
(let ([hwnd (MSG-hwnd msg)])
(unless (for/or ([k (in-hash-keys known-hwnds)])
(IsChild* k hwnd))
(when (PeekMessageW msg hwnd 0 0 PM_REMOVE)
(TranslateMessage msg)
(DispatchMessageW msg)
(loop))))))))
(define (win32-start-event-pump)
(thread (lambda ()
(let loop ()
(unless (let ([any-tasks? (sync/timeout 0 boundary-tasks-ready-evt)])
(sync/timeout (and any-tasks? (* sometimes-delay-msec 0.001))
queue-evt
other-peek-evt
(if any-tasks?
(wrap-evt (system-idle-evt)
(lambda (v) #f))
boundary-tasks-ready-evt)))
(atomically (pre-event-sync #t)))
(as-entry dispatch-all-ready)
(loop)))))
| false |
197c291e57dbbbd8d8a95b977ff0d13dd7c994c7 | 6a89ae8cb25d42a4e9700eb86126b92ec63e3d46 | /Racket/adapter.rkt | dce84168cbd0a9c979bc64574fc430b88875c609 | []
| no_license | saltb0rn/design-patterns | 4cb86c1613627e56d69086f35c15a058f5d48298 | a5584a8e265d101f03b0461c382677099baf54c6 | refs/heads/master | 2020-03-29T19:59:57.346674 | 2018-09-25T16:02:14 | 2018-09-25T16:02:14 | 150,290,537 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,284 | rkt | adapter.rkt | #lang racket
;; ---------- ้้
ๅจ ----------
(define-syntax (make-adapter stx)
(syntax-case stx ()
[(_ adapter obj method)
#'(new
(class object%
(super-new)
(define/public adapter
(lambda () (send obj method)))))]))
;; ้่ฆ่ขซ้้
็็ฑป
(define human%
(class object%
(super-new)
(init-field msg)
(define/public (greeting) (printf "~a\n" msg))))
(define computer%
(class object%
(super-new)
(define/public (welcome)
(printf "Welcome to Debian!\n"))))
(define google%
(class object%
(super-new)
(define/public (page-info)
(printf "Discover the store!\n"))))
(define human-1 (new human% [msg "ไฝ ๅฅฝ!"]))
(define human-2 (new human% [msg "Hello!"]))
(define computer (new computer%))
(define google (new google%))
;; ---------- ๅๆฌ็็ณป็ป ----------
;; ๅๆฌ็็ณป็ปๆฏไธบไบ human% ็ๅฎไพๅทฅไฝ็
(define (greeting objs)
(for ([obj (in-list objs)])
(send obj greeting)))
;; ---------- ้้
computer% ๅ google% ็ๅฎไพ
(define computer-adapter (make-adapter greeting computer welcome))
(define google-adapter (make-adapter greeting google page-info))
(define objs (list human-1 human-2 computer-adapter google-adapter))
(greeting objs) ; ๆญฃๅธธๅทฅไฝ
| true |
97c6c390db7ef25213530e5e2e8e997b2e62591c | e553691752e4d43e92c0818e2043234e7a61c01b | /rosette/base/core/safe.rkt | 34bbbffaf963689bd467d841298cc27b96c14e51 | [
"BSD-2-Clause"
]
| permissive | emina/rosette | 2b8c1bcf0bf744ba01ac41049a00b21d1d5d929f | 5dd348906d8bafacef6354c2e5e75a67be0bec66 | refs/heads/master | 2023-08-30T20:16:51.221490 | 2023-08-11T01:38:48 | 2023-08-11T01:38:48 | 22,478,354 | 656 | 89 | NOASSERTION | 2023-09-14T02:27:51 | 2014-07-31T17:29:18 | Racket | UTF-8 | Racket | false | false | 2,065 | rkt | safe.rkt | #lang racket
(require "bool.rkt" "exn.rkt")
(provide argument-error arguments-error type-error contract-error index-too-large-error
assert assert-some assert-|| assert-bound assert-arity-includes)
(define-syntax (assert stx)
(syntax-case stx ()
[(_ expr) (syntax/loc stx ($assert expr #f))]
[(_ expr msg) (syntax/loc stx ($assert expr msg))]))
(define-syntax assert-some
(syntax-rules ()
[(_ expr #:unless size msg)
(let* ([val expr])
(unless (= size (length val))
(assert (apply || (map car val)) msg))
val)]
[(_ expr #:unless size)
(assert-some expr #:unless size #f)]
[(_ expr msg)
(let* ([val expr])
(assert (apply || (map car val)) msg)
val)]
[(_ expr)
(assert-some expr #f)]))
(define-syntax assert-||
(syntax-rules ()
[(_ expr #:unless size msg)
(let ([val expr])
(unless (= size (length val))
(assert (apply || val) msg)))]
[(_ expr #:unless size) (assert-|| expr #:unless size #f)]))
(define-syntax assert-bound
(syntax-rules ()
[(_ [limit cmp expr] name)
(let ([low limit]
[high expr])
(assert (cmp low high)
(argument-error name (format "~.a ~.a ~.a" low cmp (syntax-e #'expr)) low)))]
[(_ [lowLimit cmpLow expr cmpHigh highLimit] name)
(let ([low lowLimit]
[val expr]
[high highLimit])
(assert (cmpLow low val)
(argument-error name (format "~.a ~.a ~.a" low cmpLow (syntax-e #'expr)) val))
(assert (cmpHigh val high)
(argument-error name (format "~.a ~.a ~.a" (syntax-e #'expr) cmpHigh high) val)))]))
(define-syntax (assert-arity-includes stx)
(syntax-case stx ()
[(_ f val name) (syntax/loc stx
(assert (and (procedure? f) (procedure-arity-includes? f val))
(argument-error name
(format "procedure arity includes ~a" val)
f)))]))
| true |
e3c6533f62acf23eb1c5cd3e48ccf884eeb35310 | 730c2f6bee9939639bf927f473002ffa620c4672 | /tool/syntax-color.rkt | 03ea9368d30f8c0ab4290f337d4e47a9ff1dbfb0 | [
"Apache-2.0",
"MIT"
]
| permissive | sorawee/recursive-language | b933ee3e9268acb8b7239251447870cb0af23b10 | 86be12fe663454922c5b1235b4e3fbb7e8691b2c | refs/heads/master | 2022-09-16T21:19:29.650343 | 2022-09-13T22:19:46 | 2022-09-13T22:19:46 | 121,312,359 | 9 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,604 | rkt | syntax-color.rkt | #lang racket/base
(provide get-syntax-token)
(require parser-tools/lex
syntax/parse/define
(prefix-in : parser-tools/lex-sre)
(for-syntax racket/base))
(define-syntax-parse-rule (return type paren-shape)
#:with start-pos (datum->syntax this-syntax 'start-pos)
#:with end-pos (datum->syntax this-syntax 'end-pos)
#:with lexeme (datum->syntax this-syntax 'lexeme)
(values lexeme type paren-shape (position-offset start-pos) (position-offset end-pos)))
(define the-lexer
(lexer
[(eof) (return 'eof #f)]
[(:: "#" (:* (:~ "\n"))) (return 'comment #f)]
[whitespace (return 'white-space #f)]
["import" (return 'keyword #f)]
["print" (return 'keyword #f)]
["check" (return 'keyword #f)]
["(" (return 'parenthesis '|(|)]
[")" (return 'parenthesis '|)|)]
["[" (return 'parenthesis '|[|)]
["]" (return 'parenthesis '|]|)]
["=" (return 'symbol #f)]
[";" (return 'symbol #f)]
["," (return 'symbol #f)]
[(:: "id_" (:+ numeric) "^" (:+ numeric)) (return 'other #f)]
[(:: "const_" (:+ numeric)) (return 'other #f)]
[(:+ numeric) (return 'constant #f)]
[(:: (:or (char-range #\a #\z)
(char-range #\A #\Z)
"."
"<"
">"
"~"
"-")
(:* (:or (char-range #\a #\z)
(char-range #\A #\Z)
(char-range #\0 #\9)
"."
"<"
">"
"~"
"-"
"'")))
(return 'other #f)]))
(define (get-syntax-token port)
(the-lexer port))
| true |
fd22e0cbfa9f3793280dd9cf0fec75813383fec5 | 2027a6b0aeb4b42fcc7f0bcc4dd318ef4f186cf1 | /ch3/3-67.rkt | 524a3b33fa54ab44a11cc202261f69a249230839 | []
| no_license | GavinFrazar/sicp | 0c74a95681c0757b7dac31637c60c3824006d5a0 | 22653f3d0f5b5bb85d3f5fba222f4f0955e560fe | refs/heads/master | 2021-06-25T22:37:29.444711 | 2021-01-08T02:39:05 | 2021-01-08T03:05:01 | 200,429,884 | 2 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 432 | rkt | 3-67.rkt | #lang sicp
(#%require "streams.rkt")
(define (pairs s t)
(cons-stream
(list (stream-car s) (stream-car t)) ; rest of this row
(interleave
(interleave
(stream-map (lambda (x)
(list x (stream-car t)))
(stream-cdr s))
(stream-map (lambda (x)
(list (stream-car s) x))
(stream-cdr t)))
(pairs (stream-cdr s)
(stream-cdr t)))))
| false |
717d934815fd712301b1e95110ee4f2f28031754 | d930a505575944b756dc0f4b974f0c1887bc7d8b | /base.rkt | fb34eb23a3fe44f86c8f8583b4f27ddd106d9916 | [
"Apache-2.0"
]
| permissive | tautologico/rasdel | b0a293a526c3c259c50348e3d3c8409c448f4bb4 | 7065983a8a0bc33451e61e15f66343eb25f22ee8 | refs/heads/master | 2020-03-21T16:41:04.440379 | 2018-07-17T12:38:12 | 2018-07-17T12:38:12 | 138,786,244 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 6,636 | rkt | base.rkt | ;;
;; base.rkt
;; Definitions for basic functionality
;;
;; - init & shutdown
;; - errors
;; - version
;; - configuration hints
;;
#lang racket
(require ffi/unsafe
ffi/unsafe/define)
(provide (all-defined-out))
;; load ffi dll lib
(define (sdl-get-lib)
(let ([type (system-type 'os)])
(case type
[(unix) "libSDL2"]
[(windows) "SDL2"]
[(macosx) "libSDL2"]
[else (error "Platform not supported: " type)])))
(define-ffi-definer define-sdl (ffi-lib (sdl-get-lib) #f))
(define-syntax-rule (sdl-error e)
(when e
(error 'sdl (SDL_GetError))))
;;;
;;; Wrapper functions
;;;
(define (build-subsystem-flags subs)
(bitwise-ior
(if (member 'video subs) SDL_INIT_VIDEO 0)
(if (member 'audio subs) SDL_INIT_AUDIO 0)
(if (member 'control subs) SDL_INIT_GAMECONTROLLER 0)
(if (member 'timer subs) SDL_INIT_TIMER 0)
(if (member 'haptic subs) SDL_INIT_HAPTIC 0)))
(define (sdl-init #:video? [video? #t] #:audio? [audio? #t])
(define mask
(bitwise-ior (if video? SDL_INIT_VIDEO 0)
(if audio? SDL_INIT_AUDIO 0)))
(SDL_Init mask))
;; TODO: add contract for init-subsystem
(define (sdl-init-subsystems . subs)
(SDL_InitSubSystem (build-subsystem-flags subs)))
(define (sdl-was-init? sub)
(not (zero? (SDL_WasInit (build-subsystem-flags (list sub))))))
;; TODO: automatically register for finalization
(define (sdl-quit)
(SDL_Quit))
;;;
;;; Functions from C API
;;;
;;; base pointer types
(define-cpointer-type _uint8*)
(define-cpointer-type _int8*)
(define-cpointer-type _uint16*)
(define-cpointer-type _int16*)
(define-cpointer-type _uint32*)
(define-cpointer-type _int32*)
(define-cpointer-type _int*)
(define-cpointer-type _size*)
(define-cpointer-type _float*)
;;; --- SDL.h ------------------------------------
(define SDL_INIT_TIMER #x00000001)
(define SDL_INIT_AUDIO #x00000010)
(define SDL_INIT_VIDEO #x00000020)
(define SDL_INIT_JOYSTICK #x00000200)
(define SDL_INIT_HAPTIC #x00001000)
(define SDL_INIT_GAMECONTROLLER #x00002000) ;turn on game controller also implicitly does JOYSTICK
(define SDL_INIT_EVERYTHING
(bitwise-ior #x00000001 #x00000010 #x00000020 #x00000200 #x00001000 #x00002000))
;extern DECLSPEC int SDLCALL SDL_Init(Uint32 flags);
(define-sdl SDL_Init (_fun _uint32 -> [e : _bool]
-> (sdl-error e)))
;extern DECLSPEC int SDLCALL SDL_InitSubSystem(Uint32 flags);
(define-sdl SDL_InitSubSystem (_fun _uint32 -> [e : _bool]
-> (sdl-error e)))
;extern DECLSPEC void SDLCALL SDL_QuitSubSystem(Uint32 flags);
(define-sdl SDL_QuitSubSystem (_fun _uint32 -> _void))
;extern DECLSPEC Uint32 SDLCALL SDL_WasInit(Uint32 flags);
(define-sdl SDL_WasInit (_fun _uint32 -> _uint32))
;extern DECLSPEC void SDLCALL SDL_Quit(void);
(define-sdl SDL_Quit (_fun -> _void))
; SDL_Platform.h
(define-sdl SDL_GetPlatform (_fun -> _string))
; SDL_Main.h
;extern DECLSPEC void SDL_SetMainReady(void);
(define-sdl SDL_SetMainReady (_fun -> _void))
; SDL_version.h
(define-cstruct _SDL_version
((major _sint8)
(minor _sint8)
(patch _uint8)))
;extern DECLSPEC int SDLCALL SDL_GetRevisionNumber(void);
(define-sdl SDL_GetRevisionNumber (_fun -> _int))
;extern DECLSPEC void SDLCALL SDL_GetVersion(SDL_version * ver);
(define-sdl SDL_GetVersion (_fun [v : (_ptr o _SDL_version)] -> _void
-> v))
;extern DECLSPEC const char *SDLCALL SDL_GetRevision(void);
(define-sdl SDL_GetRevision (_fun -> _string))
(struct sdl-version (major minor patch) #:transparent)
(define (sdl-get-version)
(define ver (SDL_GetVersion))
(sdl-version (SDL_version-major ver)
(SDL_version-minor ver)
(SDL_version-patch ver)))
(define sdl-revision-number (SDL_GetRevisionNumber))
(define (sdl-get-revision) (SDL_GetRevision))
;;; --- SDL_error.h ------------------------------
(define _SDL_errorcode
(_enum
'(SDL_ENOMEM
SDL_EFREAD
SDL_EFWRITE
SDL_EFSEEK
SDL_UNSUPPORTED
SDL_LASTERROR)))
;; TODO: SDL_Error is an internal function; SDL_SetError
;; may not be very
;; useful for clients of this lib
;extern DECLSPEC int SDLCALL SDL_SetError(const char *fmt, ...);
(define-sdl SDL_SetError (_fun _string -> _int)) ;; TODO: varargs
;extern DECLSPEC const char *SDLCALL SDL_GetError(void);
(define-sdl SDL_GetError (_fun -> _string))
;extern DECLSPEC void SDLCALL SDL_ClearError(void);
(define-sdl SDL_ClearError (_fun -> _void))
;extern DECLSPEC int SDLCALL SDL_Error(SDL_errorcode code);
(define-sdl SDL_Error (_fun _SDL_errorcode -> _int))
;; wrapper
(define (sdl-get-error) (SDL_GetError))
;;;
;;; --- file operations --------------------------
;;;
(define-cpointer-type _SDL_RWops*)
(define-sdl SDL_RWFromFile (_fun _string _string -> _SDL_RWops*))
;;;
;;; --- SDL_hints.h ------------------------------
;;;
(define SDL_HINT_FRAMEBUFFER_ACCELERATION "SDL_FRAMEBUFFER_ACCELERATION")
(define SDL_HINT_RENDER_DRIVER "SDL_RENDER_DRIVER")
(define SDL_HINT_RENDER_OPENGL_SHADERS "SDL_RENDER_OPENGL_SHADERS")
(define SDL_HINT_RENDER_SCALE_QUALITY "SDL_RENDER_SCALE_QUALITY")
(define SDL_HINT_RENDER_VSYNC "SDL_RENDER_VSYNC")
(define SDL_HINT_VIDEO_X11_XVIDMODE "SDL_VIDEO_X11_XVIDMODE")
(define SDL_HINT_VIDEO_X11_XINERAMA "SDL_VIDEO_X11_XINERAMA")
(define SDL_HINT_VIDEO_X11_XRANDR "SDL_VIDEO_X11_XRANDR")
(define SDL_HINT_GRAB_KEYBOARD "SDL_GRAB_KEYBOARD")
(define SDL_HINT_VIDEO_MINIMIZE_ON_FOCUS_LOSS "SDL_VIDEO_MINIMIZE_ON_FOCUS_LOSS")
(define SDL_HINT_IDLE_TIMER_DISABLED "SDL_IOS_IDLE_TIMER_DISABLED")
(define SDL_HINT_ORIENTATIONS "SDL_IOS_ORIENTATIONS")
(define SDL_HINT_XINPUT_ENABLED "SDL_XINPUT_ENABLED")
(define SDL_HINT_GAMECONTROLLERCONFIG "SDL_GAMECONTROLLERCONFIG")
(define SDL_HINT_JOYSTICK_ALLOW_BACKGROUND_EVENTS "SDL_JOYSTICK_ALLOW_BACKGROUND_EVENTS")
(define SDL_HINT_ALLOW_TOPMOST "SDL_ALLOW_TOPMOST")
(define _SDL_HintPriority
(_enum
'(SDL_HINT_DEFAULT
SDL_HINT_NORMAL
SDL_HINT_OVERRIDE)))
;SDL_bool SDL_SetHintWithPriority(const char *name, const char *value, SDL_HintPriority priority);
(define-sdl SDL_SetHintWithPriority (_fun _string _string _SDL_HintPriority -> _bool))
;SDL_bool SDL_SetHint(const char *name, const char *value);
(define-sdl SDL_SetHint (_fun _string _string -> _bool))
;const char * SDL_GetHint(const char *name);
(define-sdl SDL_GetHint (_fun _string -> _string))
;void SDL_ClearHints(void);
(define-sdl SDL_ClearHints (_fun -> _void))
| true |
2c1b48a796935409d89b5b69a4a32b622ac8a1c6 | dff5c5d5da63ba83865481a5aba5cdc3a223a4ed | /src/test/resources/racket/homework01/util-lib.rkt | 81fcac5fa386161692520c95aaa2a0134b889abb | []
| no_license | lorandszakacs/grading-bot | b8be290144f0328080c12ebfcb8eeb60c0b4af98 | 5a0f259cd1240ef760402974b5362d24f82cbbe5 | refs/heads/master | 2020-05-18T02:18:42.243095 | 2014-05-16T03:02:10 | 2014-05-16T03:02:10 | 16,928,127 | 2 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 544 | rkt | util-lib.rkt | #lang racket
(#%provide (all-defined))
;This is simply a more intuitive alias for that one andmap expression.
(define (list-of predicate lst)
(andmap predicate lst)
)
;This function takes 1 or more arguments and returns a string resulted
;from concatenating all string values corresponding to the arguments
;same behaviour as the ~a function, but portable.
(define (to-string s . los)
(letrec
([lst (cons s los)]
[lst-of-strings (map (lambda (s) (format "~a" s)) lst)])
(foldr string-append "" lst-of-strings)
)
) | false |
7de8385b325494b4be1c65ab7f6453c3e3fcfe3b | ccb397cd49826db1ad32e27fc4dc11ba17632723 | /bitcask/main.rkt | 7c9207f4aa4384b58c29d82b9c7f75293fa83fe4 | []
| no_license | julian-zucker/ds4300 | 1e88c4bc558323f91158b49bfa136f6dd44cb44f | 4cada231346961a4bbd4400874b64d1a3459ebf0 | refs/heads/master | 2021-10-15T08:56:34.560665 | 2019-02-05T15:43:09 | 2019-02-05T15:43:09 | 117,120,467 | 0 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 197 | rkt | main.rkt | #lang racket
(require "basic.rkt"
"merge.rkt"
"parameters.rkt")
(provide (all-from-out "basic.rkt")
(all-from-out "merge.rkt")
(all-from-out "parameters.rkt")) | false |
409f679452f684502562a7324f2eca27bd965cab | e6a22f3d934bda6c1db7ea6bfb38f88944436785 | /src/operators.rkt | cbfd592c1258079856202f31216ddfdb6b82a049 | []
| no_license | SymbolicSQL/SymbolicSQL | 2e44dc5ed5cb1910627aa9023645c651715d26d1 | ed4c8d9a7be2bc764af9876e5447a52b54955da9 | refs/heads/master | 2021-01-18T21:33:07.061952 | 2016-06-03T23:35:58 | 2016-06-03T23:35:58 | 55,627,894 | 8 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 985 | rkt | operators.rkt | #lang rosette
(require "table.rkt")
(provide xproduct xproduct-raw)
;; rawTable -> rawTable -> rawTable
(define (xproduct-raw a b)
(let ([imr (cartes-prod a b)])
(map (lambda (x)
(cons (append (car (car x)) (car (second x))) (* (cdr (car x)) (cdr (second x))))) imr
)
)
)
(define (cartes-prod a b)
(let ([one-v-many (lambda (x)
(map (lambda (e) (list x e)) b))])
(foldr append '() (map one-v-many a))))
;; Table -> Table -> Table
(define (xproduct a b name)
(Table name (schema-join a b) (xproduct-raw (Table-content a) (Table-content b)))
)
;; test xproduct
(define content-a
(list
(cons (list 1 1 2) 2)
(cons (list 0 1 2) 2)))
(define content-b
(list
(cons (list 1 2 3) 1)
(cons (list 2 1 0) 3)))
(define table-a
(Table 'a '(a b c) content-a))
(define table-b
(Table 'b '(a b c) content-b))
; tests
;(println (xproduct table-a table-b 'c))
;(println (xproduct-raw content-a content-b))
| false |
9ee1642b577b051e8ce47f0ecce592220edd8de9 | 1d100c7e051240b99dd405963f3b8e1473410623 | /tests/undo.rkt | 0744539754650f51512e4ef53999332ac79027f4 | []
| no_license | CorneelSoete/worlds | 62f8eb0b36ade075764f0c12401e7da04a23e4d2 | 839671084836e3ddac5f9edec9db0013af683538 | refs/heads/master | 2022-12-04T14:19:17.531982 | 2020-08-16T16:14:40 | 2020-08-16T16:14:40 | 261,451,105 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 821 | rkt | undo.rkt | #lang s-exp worlds
;actual undo code
(define undo-stack (list thisworld))
(define-syntax-rule (do expr ...)
(let ((world (bigbang (car undo-stack))))
(in world expr ...)
(set! undo-stack (cons world undo-stack))
(replace-thisworld world)))
(define (undo)
(when (not (null? (cdr undo-stack)))
(set! undo-stack (cdr undo-stack))
(replace-thisworld (car undo-stack))))
(define (flattenHistory)
(let loop ((world (car undo-stack))
(rest (cdr undo-stack)))
(when (not (null? rest))
(collapse world)
(loop (car rest)(cdr rest)))
(set! undo-stack (list world))))
;undo example
(do (wdefine counter 0))
(do (wset! counter 5))
(do (wset! counter 2))
(undo) ;undo previous do
(do (displayln (lookup counter))) ;displays 5
(flattenHistory) | true |
9b7e32755b28ca26654b5bae2c70aaf7a3c9ac99 | 38294004dfac1abb253e807fe006604448c74a67 | /158_ascii_building.rkt | 235acaa20236303c95ed575808a7bc445b3cfa36 | [
"CC0-1.0"
]
| permissive | 3rdLaw/rrdp | 879e1b195732ef7a757bcc73adbb2f91f5b6195e | 55ee97c835230fde5b22137ba9641cb15aac447e | refs/heads/master | 2020-06-02T19:36:56.162979 | 2015-02-02T18:45:25 | 2015-02-02T18:45:25 | 25,018,717 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,850 | rkt | 158_ascii_building.rkt | #lang racket
(define (get-str st)
(define j "++--***...")
(cond [(string=? st "j") j]
[(string=? st "i") (substring j 0 (- (string-length j) 1))]
[(string=? st "h") (substring j 0 (- (string-length j) 2))]
[(string=? st "g") (substring j 0 (- (string-length j) 3))]
[(string=? st "f") (substring j 0 (- (string-length j) 4))]
[(string=? st "e") (substring j 0 (- (string-length j) 5))]
[(string=? st "d") (substring j 0 (- (string-length j) 6))]
[(string=? st "c") (substring j 0 (- (string-length j) 7))]
[(string=? st "b") (substring j 0 (- (string-length j) 8))]
[(string=? st "a") (substring j 0 (- (string-length j) 9))]
[else (error (format "invalid input to get-str: ~a" st))]))
(define (format1 str)
(~a str #:min-width 10 #:right-pad-string " "))
(define (parse input)
(regexp-match* #rx"[a-j]|[0-9][a-j]" input))
(define (get-line str)
(cond [(regexp-match #rx"([0-9])([a-j])" str)
=> (ฮป (x) (list (format1 (space-string (second x) (get-str (third x))))))]
[(regexp-match #rx"([a-j])" str) => (ฮป (x) (list (format1 (get-str (first x)))))]
[else (error "invalid input to make-line")]))
;turns ListofListofStrings -> ListofStrings
(define (squash llst)
(map string->list (map car llst)))
(define (rotate llst)
(if (empty? (first llst))
'()
(cons (map last llst)
(rotate (map (lambda (x) (take x (- (length x) 1))) llst)))))
(define (space-string num str)
(foldl (ฮป (x res) (string-append (string #\space) res))
str (range (string->number num))))
(define (show llst)
(map displayln (map list->string llst))
(void))
(define (do x)
((compose1 show rotate squash (curry map get-line) parse) x))
(do "j3f3e3e3d3d3c3cee3c3c3d3d3e3e3f3fjij3f3f3e3e3d3d3c3cee3c3c3d3d3e3e3fj") | false |
d7e278cc31bb369dce1fc2bddabc3596605b06e4 | b6420ec5ea614f040eefc5e9c2205508f33bc666 | /parendown-doc/scribblings/parendown.scrbl | 828613b52854e600df60143623500aff79fa6f85 | [
"Apache-2.0"
]
| permissive | sorawee/parendown-for-racket | e3a678a802ea4e6f0f170a6d69a7cf57b6a3dd1c | 9c846654947f1605df9b318b202202d2ea3c8baf | refs/heads/main | 2023-07-11T20:12:34.127346 | 2021-03-12T03:08:35 | 2021-03-12T03:08:35 | 394,690,158 | 0 | 0 | Apache-2.0 | 2021-08-10T14:45:02 | 2021-08-10T14:45:01 | null | UTF-8 | Racket | false | false | 5,325 | scrbl | parendown.scrbl | #lang parendown scribble/manual
@; parendown/scribblings/parendown.scrbl
@;
@; Weak opening paren functionality in the form of a language
@; extension and a library.
@; Copyright 2018 The Lathe Authors
@;
@; Licensed under the Apache License, Version 2.0 (the "License");
@; you may not use this file except in compliance with the License.
@; You may obtain a copy of the License at
@;
@; http://www.apache.org/licenses/LICENSE-2.0
@;
@; Unless required by applicable law or agreed to in writing,
@; software distributed under the License is distributed on an
@; "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
@; either express or implied. See the License for the specific
@; language governing permissions and limitations under the License.
@(require #/for-label racket/base)
@(require #/for-label #/only-in racket/contract/base any/c)
@(require #/for-label parendown)
@title{Parendown}
@defmodulelang[parendown]
Parendown adds @emph{weak opening parentheses} to Racket in the form of a language extension. A more extensive overview of Parendown's uses can be found in @hyperlink["https://github.com/lathe/parendown-for-racket"]{the README at GitHub}.
@; TODO: Copy at least a little more of the readme into this blurb.
@table-of-contents[]
@section[#:tag "language-extension"]{The Parendown Language Extension}
The @tt{parendown} language is a language extension. To use it, specify another language after @tt{parendown} on the @hash-lang[] line, and that language will have its readtable extended with a @tt{#/} syntax that behaves according to @racket[parendown-readtable-handler].
@racketblock[
@#,racketmetafont{@hash-lang[] parendown @racketmodname[racket/base]}
(displayln @#,tt{#/}string-append "Hello, " "world!")
]
@section[#:tag "parendown-library"]{Parendown as a Library}
There is also a @tt{parendown} module which lets Racket code use some features of Parendown even when they aren't using the @hash-lang[] directly.
@defform[(pd slash-symbol stx ...)]{
Expands to @racket[(stx ...)], where the lists of each @racket[stx] have been recursively traversed to transform any tails that begin with the symbol @racket[slash-symbol] into tails consisting of a single element, where that element is the list resulting from transforming the rest of that tail.
For instance, the form
@racketblock[
(pd _/ begin
(displayln _/ string-append "Hello, " "world!")
(displayln _/ string-append "I can't use " "division!"))
]
expands to this:
@racketblock[
(begin
(displayln (string-append "Hello, " "world!"))
(displayln (string-append "I can't use " "division!")))
]
}
@defform[
#:link-target? #f
(pd (stx ...))
]{
Simply expands to @racket[(stx ...)].
This is usually the result of the other case of @racket[pd]. For instance, the form
@racketblock[
(pd _/ begin
(displayln _/ string-append "Hello, " "world!")
(pd _/ displayln _/ string-append "I can't use " "division!"))
]
expands to this:
@racketblock[
(begin
(displayln (string-append "Hello, " "world!"))
(pd (displayln (string-append "I can't use " "division!"))))
]
This contains another occurrence of @tt{pd}, and this time, the code
@racketblock[
(pd (displayln (string-append "I can't use " "division!")))
]
expands to this:
@racketblock[
(displayln (string-append "I can't use " "division!"))
]
This behavior makes it so occurrences of the @tt{pd} form can be generously added wherever they're suspected to be needed, without causing conflicts with each other.
}
@defproc*[(
[(parendown-readtable-handler [name char?] [in input-port?]) any/c]
[
(parendown-readtable-handler
[name char?]
[in input-port?]
[src any/c]
[line (or/c #f exact-positive-integer?)]
[col (or/c #f exact-nonnegative-integer?)]
[pos (or/c #f exact-positive-integer?)])
any/c]
)]{
A readtable handler procedure suitable for use with @racket[make-readtable]. This handler implements a syntax very similar to (if not necessarily in full parity with) the default read behavior for the characters @tt{(}, @tt{[}, and @tt{@"{"}, except that it doesn't consume the terminating @tt{)}, @tt{]}, or @tt{@"}"}.
When the terminating character is @tt{]} or @tt{@"}"}, the resulting list's @tt{paren-shape} syntax property is set to @racket[#\[] or @racket[#\{], respectively.
This readtable handler is sensitive to the @racket[read-accept-dot] and @racket[read-accept-infix-dot] parameters at the time the handler is invoked. This functionality of Parendown should be considered unstable, since it isn't quite the same as what @tt{(}, @tt{[}, and @tt{@"{"} do on contemporary versions of Racket. Those characters' default handlers are sensitive to the values of those parameters at the time the read is @emph{originally started}, not the time they are encountered during the read. For instance, in contemprary versions of Racket, if @racket[(read-accept-dot)] is @racket[#t] at the time @racket[read] is first called and then a custom reader syntax causes it to be set to @racket[#f], a subsequent occurrence of @tt{(} in the same read will be processed as though @racket[(read-accept-dot)] were still @racket[#t].
}
| false |
8f155d003808254aaada4fcd0c1eba61378f5fa5 | 5e1c7d9f9ab17c5817d37904ed4966e90a1e611d | /private/checks.rkt | 47cffe297869546599d0c42b0dcaefa66d6406f9 | [
"MIT"
]
| permissive | tfeb/oa | d970a89cf07ad201daeb0486e1139e4d12a92546 | 6f8f0eef9417bc39236717a8f2d150869a430c7e | refs/heads/main | 2023-05-13T15:22:24.401909 | 2021-05-21T14:28:44 | 2021-05-21T14:28:44 | 368,843,528 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 381 | rkt | checks.rkt | #lang racket
(require (only-in rackunit
test-case
define-binary-check)
(only-in "hold.rkt"
release*))
(provide test-case check-equiv? check-not-equiv?)
(define-binary-check (check-equiv? a b)
(eqv? (release* a) (release* b)))
(define-binary-check (check-not-equiv? a b)
(not (eqv? (release* a) (release* b))))
| false |
efe5db7a30520d8bdce4638b6fe51c35ec110abb | 9195bf7d21642dc73960a4a6571f1319b3be8d2d | /error_trace_generation/error-trace.rkt | aea93186ff7c44048681577eefc5a762c2db2e8c | []
| no_license | eidelmanj/concurrent-object-synthesis | 86d46417c3dad900defa44399274c584c72d1ac4 | 6978ddd6ec608656397d45fe82cf74d55c4a5896 | refs/heads/master | 2021-01-17T02:44:17.321113 | 2017-03-01T16:17:36 | 2017-03-01T16:17:36 | 58,645,368 | 2 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 19,311 | rkt | error-trace.rkt | #lang racket/base
(require (only-in "../program_representation/simulator-structures.rkt"
Method Method-args Method-instr-list
Run-method
C-Instruction
Single-branch Branch Loop
Create-var)
"backtracking.rkt"
"interpret.rkt"
"linearizable.rkt"
"methods.rkt"
"traces.rkt"
"vars.rkt"
(only-in racket/match match)
(only-in racket/list first split-at empty?)
(only-in racket/function curryr))
(provide bound max-client-length error-traces test-init)
; The maximum number of non-commutative library calls to insert between each
; pair of library calls in the mut when searching for linearizability errors.
(define bound (make-parameter 1))
; The maximum length of a client generated to attempt to find linearizability
; errors. When set to #f, the mut will be fully instrumented during the search.
(define max-client-length (make-parameter #f))
(define (one-of L)
(match L
['() (fail)]
[`(,H . ,T) (-< H (one-of T))]))
; Stop values for the generator.
(define (stop-value) (values (void) (void) (void)))
(define (stop-value? x y z) (void? x))
;; We need a strict bound on the number of traces to try
(define stop-at (void))
(set! stop-at 100)
(define count-traces (void))
(set! count-traces 0)
(require racket/generator)
(define (instrumenter method library pointers)
(define max-client (if (max-client-length)
(max-client-length)
(* (bound) (num-instrumentation-points method))))
(generator ()
(define (instrument mut breakpoint variables client)
(cond
[(>= (length client) max-client) (stop-value)]
[else
(define-values (before after) (split-at mut breakpoint))
(match after
; Fully instrumented the method
['() (stop-value)]
[`(,instr . ,tail)
(match instr
; Library method call: add conflicting operations
[(Run-method _ _ method args ret)
(define ops (conflicting-ops (bound) instr library pointers))
(define op (one-of ops)) ; choice point
(define new-mut (append before (list instr) op tail))
(define new-vars (append variables
(map (curryr return-type library) op)))
(define new-client (append client op))
(unless (empty? op) (yield new-mut new-vars new-client))
(instrument new-mut (+ breakpoint (length op) 1) new-vars new-client)]
; if without else: instrument the branch, then continue
[(Single-branch _ _ condition branch)
(define new-vars variables)
(define new-client client)
(for ([(trace vars ops)
(in-producer (instrumenter branch library pointers)
stop-value?)])
(set! mut
(append before
`(,(Single-branch condition trace))
tail))
(set! new-vars (append variables vars))
(set! new-client (append client ops))
(yield mut new-vars new-client))
(instrument mut (add1 breakpoint) new-vars new-client)]
; if with else: instrument a branch, then continue.
; Then come back and instrument the other branch, then continue.
[(Branch _ _ condition b1 b2)
(define new-mut mut)
(define new-vars variables)
(define new-client client)
; We have to instrument both brances separately, otherwise we'll
; end up with infeasible traces.
(for ([(trace vars ops)
(in-producer (instrumenter b1 library pointers)
stop-value?)])
(set! new-mut
(append before
`(,(Branch condition trace b2))
tail))
(set! new-vars (append variables vars))
(set! new-client (append client ops))
(yield new-mut new-vars new-client))
(instrument new-mut (add1 breakpoint) new-vars new-client)
; Done with the first branch. Now try the second one.
(set! new-mut mut)
(set! new-vars variables)
(set! new-client client)
(for ([(trace vars ops)
(in-producer (instrumenter b2 library pointers)
stop-value?)])
(set! new-mut
(append before
`(,(Branch condition b1 trace))
tail))
(set! new-vars (append variables vars))
(set! new-client (append client ops))
(yield new-mut new-vars new-client))
(instrument new-mut (add1 breakpoint) new-vars new-client)]
; loop: instrument the loop body, then continue
[(Loop _ _ condition body)
(define new-vars variables)
(define new-client client)
(for ([(trace vars ops)
(in-producer
(instrumenter body library pointers) stop-value?)])
(set! mut
(append before `(,(Loop condition trace)) tail))
(set! new-vars (append variables vars))
(set! new-client (append client ops))
(yield mut new-vars new-client))
(instrument mut (add1 breakpoint) new-vars new-client)]
; Anything else: continue iteration through the method
[(C-Instruction _ _) (instrument mut (add1 breakpoint) variables client)])])]))
(instrument method 0 '() '())))
(require (only-in racket/control prompt))
; Temporary, to be removed once init is no longer hard-coded.
(require (only-in "../program_representation/simulator-structures.rkt"
Set-var New-struct None Get-var Return))
(define test-init
`(,(Create-var "shared" "Node")
,(Set-var "shared" (New-struct "Node" `(,(None) 0 0 0)))
,(Run-method "push" `(,(Get-var "shared") 1 2) null)
,(Run-method "push" `(,(Get-var "shared") 2 4) null)))
(define (error-traces library method-name init)
(define mut (get-method method-name library))
; Construct a pointer table from init
(define pointers (make-pointers-table init))
; Set up the interpreter
(define lib (remove mut library))
(define interpreter (make-interpreter lib))
; Set up the instrumenter
(define numbered-mut (number-lines (Method-instr-list mut)))
(define g (instrumenter numbered-mut lib pointers))
; Pick some arguments for the MUT
(define arguments (pick-arguments mut lib pointers init))
(define results '())
; why does this work?
(prompt
(for ([(trace vars client) (in-producer g stop-value?)])
; Three possible results: the trace is linearizable, the trace is not
; linearizable, or we couldn't come up with arguments to make the trace
; feasible.
(define result
(linearizable trace mut client vars pointers lib interpreter arguments init))
(displayln trace)
(unless (or (lin-result-t/f result) (> count-traces stop-at))
(unless (null? (lin-result-trace result))
(set! count-traces (+ count-traces 1))
(display "counting: ")(displayln count-traces)
(set! results (append results (list result))))
(fail)))
(when (and (> stop-at count-traces) (has-next?)) (next)))
(values
; error traces
(minimal-traces results)
; extension method with line numbers added
(match mut
[(Method id args ret-type _) (Method id args ret-type numbered-mut)])))
;; #lang racket/base
;; (require (only-in "../program_representation/simulator-structures.rkt"
;; Method Method-args Method-instr-list
;; Run-method
;; Run-method?
;; Get-var
;; Get-var-id
;; Get-var?
;; Run-method-method
;; Run-method-args
;; C-Instruction
;; Single-branch Branch Loop
;; Create-var)
;; "backtracking.rkt"
;; "interpret.rkt"
;; "linearizable.rkt"
;; "methods.rkt"
;; "traces.rkt"
;; "vars.rkt"
;; (only-in racket/match match)
;; (only-in racket/list take last)
;; (only-in racket/list first split-at empty?)
;; (only-in racket/function curryr))
;; (provide bound error-traces test-init)
;; ; The maximum number of non-commutative library calls to insert between each
;; ; pair of library calls in the mut when searching for linearizability errors.
;; (define bound (make-parameter 1))
;; (define (one-of L)
;; (match L
;; ['() (fail)]
;; [`(,H . ,T) (-< H (one-of T))]))
;; ; Stop values for the generator.
;; (define (stop-value) (values (void) (void) (void)))
;; (define (stop-value? x y z) (void? x))
;; ;; We need a strict bound on the number of traces to try
;; (define stop-at (void))
;; (set! stop-at 100000000000)
;; (define count-traces (void))
;; (set! count-traces 0)
;; (require racket/generator)
;; (define (instrumenter method library pointers)
;; (generator ()
;; (define (instrument mut breakpoint variables client)
;; (define-values (before after) (split-at mut breakpoint))
;; (match after
;; ; Fully instrumented the method
;; ['() (stop-value)]
;; [`(,instr . ,tail)
;; (match instr
;; ; Library method call: add conflicting operations
;; [(Run-method _ _ method args ret)
;; (define (unsafe-args arg)
;; (and
;; (Get-var? arg)
;; (or
;; (not (equal? (Get-var-id arg) "shared1"))
;; (not (equal? (Get-var-id arg) "shared2")))))
;; ;; (define (unsafe-args arg-list)
;; ;; (not (empty?
;; ;; (filter
;; ;; not-shared
;; ;; arg-list))))
;; ;; (1 >
;; ;; (length
;; ;; (filter
;; ;; (lambda (a)
;; ;; (and
;; ;; (Get-var? a)
;; ;; (and
;; ;; (not (equal? (Get-var-id a) "shared1"))
;; ;; (not (equal? (Get-var-id a) "shared2")))))
;; ;; arg-list))))
;; (define (has-bad-args l)
;; ;; (display "line: ") (displayln l)
;; ;; (displayln (empty? (filter unsafe-args l)))
;; (empty? (filter unsafe-args l)))
;; (define (not-bad-method-call m)
;; (cond
;; [(Run-method? m)
;; (not (has-bad-args (Run-method-args m)))]
;; [else
;; #t]))
;; (define (remove-bad-method-calls m)
;; (filter not-bad-method-call m))
;; ;; (define all-ops
;; ;; (filter
;; ;; (lambda (l)
;; ;; (not (null? l)))
;; ;; (map
;; ;; remove-bad-method-calls
;; ;; (conflicting-ops (bound) instr library pointers))))
;; (define all-ops (conflicting-ops (bound) instr library pointers))
;; (define ops-push
;; (filter
;; (lambda (m)
;; (or (empty? m)
;; (equal? (Run-method-method (first m)) "push")))
;; all-ops))
;; (define ops-remove
;; (filter
;; (lambda (m)
;; (or (empty? m)
;; (equal? (Run-method-method (first m)) "remove")))
;; all-ops))
;; (define ops-push-remove
;; (append ops-push ops-remove))
;; (define ops ops-push-remove)
;; ;; (define ops all-ops)
;; ;; (displayln ops)
;; ;; (list
;; ;; (last
;; ;; (filter
;; ;; (lambda (m)
;; ;; (or (empty? m) (equal? (Run-method-method (first m)) "remove")
;; ;; (equal? (Run-method-method (first m)) "push")))
;; ;; (conflicting-ops (bound) instr library pointers)))
;; ;; ))
;; ;; (filter
;; ;; (lambda (m)
;; ;; (or
;; ;; (list? m)
;; ;; (equal? (Run-method-method m) "remove")))
;; ;; (conflicting-ops (bound) instr library pointers)))
;; (define op (one-of ops)) ; choice point
;; (define new-mut (append before (list instr) op tail))
;; (define new-vars (append variables
;; (map (curryr return-type library) op)))
;; (define new-client (append client op))
;; (unless (empty? op) (yield new-mut new-vars new-client))
;; (instrument mut (+ breakpoint 1) new-vars new-client)]
;; ; if without else: instrument the branch, then continue
;; [(Single-branch _ _ condition branch)
;; (define new-vars variables)
;; (define new-client client)
;; (for ([(trace vars ops)
;; (in-producer (instrumenter branch library pointers)
;; stop-value?)])
;; (set! mut
;; (append before
;; `(,(Single-branch condition trace))
;; tail))
;; (set! new-vars (append variables vars))
;; (set! new-client (append client ops))
;; (yield mut new-vars new-client))
;; (instrument mut (add1 breakpoint) new-vars new-client)]
;; ; if with else: instrument a branch, then continue.
;; ; Then come back and instrument the other branch, then continue.
;; [(Branch _ _ condition b1 b2)
;; (define new-mut mut)
;; (define new-vars variables)
;; (define new-client client)
;; ; We have to instrument both brances separately, otherwise we'll
;; ; end up with infeasible traces.
;; (for ([(trace vars ops)
;; (in-producer (instrumenter b1 library pointers)
;; stop-value?)])
;; (set! new-mut
;; (append before
;; `(,(Branch condition trace b2))
;; tail))
;; (set! new-vars (append variables vars))
;; (set! new-client (append client ops))
;; (yield new-mut new-vars new-client))
;; (instrument new-mut (add1 breakpoint) new-vars new-client)
;; ; Done with the first branch. Now try the second one.
;; (set! new-mut mut)
;; (set! new-vars variables)
;; (set! new-client client)
;; (for ([(trace vars ops)
;; (in-producer (instrumenter b2 library pointers)
;; stop-value?)])
;; (set! new-mut
;; (append before
;; `(,(Branch condition b1 trace))
;; tail))
;; (set! new-vars (append variables vars))
;; (set! new-client (append client ops))
;; (yield new-mut new-vars new-client))
;; (instrument new-mut (add1 breakpoint) new-vars new-client)]
;; ; loop: instrument the loop body, then continue
;; [(Loop _ _ condition body)
;; (define new-vars variables)
;; (define new-client client)
;; (for ([(trace vars ops)
;; (in-producer
;; (instrumenter body library pointers) stop-value?)])
;; (set! mut
;; (append before `(,(Loop condition trace)) tail))
;; (set! new-vars (append variables vars))
;; (set! new-client (append client ops))
;; (yield mut new-vars new-client))
;; (instrument mut (add1 breakpoint) new-vars new-client)]
;; ; Anything else: continue iteration through the method
;; [(C-Instruction _ _) (instrument mut (add1 breakpoint) variables client)])]))
;; (instrument method 0 '() '())))
;; (require (only-in racket/control prompt))
;; ; Temporary, to be removed once init is no longer hard-coded.
;; (require (only-in "../program_representation/simulator-structures.rkt"
;; Set-var New-struct None Get-var Return))
;; (define test-init
;; `(,(Create-var "shared" "Node")
;; ,(Set-var "shared" (New-struct "Node" `(,(None) 0 0 0)))
;; ,(Run-method "push" `(,(Get-var "shared") 1 2) null)
;; ,(Run-method "push" `(,(Get-var "shared") 2 4) null)))
;; (define (error-traces library method-name init)
;; (define mut (get-method method-name library))
;; ; Construct a pointer table from init
;; (define pointers (make-pointers-table init))
;; ; Set up the interpreter
;; (define lib (remove mut library))
;; (define interpreter (make-interpreter lib))
;; ; Set up the instrumenter
;; (define numbered-mut (number-lines (Method-instr-list mut)))
;; (define g (instrumenter numbered-mut lib pointers))
;; ; Pick some arguments for the MUT
;; (define arguments (pick-arguments mut lib pointers init))
;; (define results '())
;; ; why does this work?
;; (prompt
;; (for ([(trace vars client) (in-producer g stop-value?)])
;; ; Three possible results: the trace is linearizable, the trace is not
;; ; linearizable, or we couldn't come up with arguments to make the trace
;; ; feasible.
;; ;; (set! count-traces (+ count-traces 1))
;; ;; (display "counting: ")(displayln count-traces)
;; (define result
;; (linearizable trace mut client vars pointers lib interpreter arguments init))
;; (displayln trace)
;; (displayln "__________")
;; (unless (or (lin-result-t/f result) (> count-traces stop-at))
;; (unless (null? (lin-result-trace result))
;; (set! results (append results (list result))))
;; (fail)
;; ))
;; (when (and (> stop-at count-traces) (has-next?)) (next)))
;; (values
;; ; error traces
;; (minimal-traces results)
;; ; extension method with line numbers added
;; (match mut
;; [(Method id args ret-type _) (Method id args ret-type numbered-mut)])))
| false |
4e74469aa98a12f4349e2b62d8da1a2f00b09c03 | bc986c4b7e0bc1b79a5c716ae1a054a719f316f7 | /do-block.rkt | 71110e0153f67cff730fe316aa213ff87317bd7d | []
| no_license | Andreshk/SnippySnippets | 9a6d2fdb81c9306e1b1659d2859aacded419ca51 | fdeabacac13eb9561ff08377542734b13708dc43 | refs/heads/master | 2023-06-08T01:22:45.538397 | 2023-05-25T17:48:02 | 2023-05-25T17:48:02 | 128,745,367 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,671 | rkt | do-block.rkt | #lang racket
; Simulates (very roughly) a Haskell do-block by transforming a
; value-or-#f (poor man's Maybe) through multiple functions of the type
; >>= expects - taking a pure value and returning a value-or-#f.
; The problem: each function only sees the value passed directly
; to it, i.e. the one defined in the line above in the do-block.
(define (>>= x . fs)
(foldl (lambda (f x) (and x (f x))) x fs)) ; the lambda is the actual >>=
; (>>= x f1 f2 f3)
; <=> ((x >>= f1) >>= f2) >>= f3)
; where (x >>= f) <=> (and x (f x))
(define (test->>= x)
(>>= x
(lambda (x) (+ x 5)) ; this never fails, it's actually a pure function :)
(lambda (x) (and (> x 10) "iei")) ; this "fails" for x<=10
string-length
(lambda (x) (* x 2))))
; Ideally, to simulate a real do-block, we'd like
; to have something like this for example:
;(define (do-stuff-with x)
; (do-block (y <- (f x))
; (z <- (g x y)) ; use more than one identifier
; (w <- (h z))
; (foo w z))) ; the value to be returned (on success)
; So, we transform the above to:
;(let [(y (f x))]
; (and y (do-block (z <- (g x y))
; (w <- (h z))
; (foo w z))))
(define-syntax do-block
(syntax-rules (<-)
[(do-block res) res]
[(do-block (id <- expr) exprs ...) (let [(id expr)] (and id (do-block exprs ...)))]))
(define (test-do x)
(do-block (y <- (and (even? x) (- x 5))) ; this "fails" for odd x
(z <- (+ x y)) ; again a pure function
(+ x y z)))
(and (equal? (test->>= 10) 6)
(equal? (test->>= 5) #f)
(equal? (test-do 10) 30)
(equal? (test-do 5) #f))
| true |
8eca37a2a1df76144977a9f1aeb01c078d43d3d7 | 099418d7d7ca2211dfbecd0b879d84c703d1b964 | /whalesong/cs019/cs019-pre-base.rkt | d5c983d802b50d9c8e699706672e30937d02af0a | []
| no_license | vishesh/whalesong | f6edd848fc666993d68983618f9941dd298c1edd | 507dad908d1f15bf8fe25dd98c2b47445df9cac5 | refs/heads/master | 2021-01-12T21:36:54.312489 | 2015-08-19T19:28:25 | 2015-08-19T20:34:55 | 34,933,778 | 3 | 0 | null | 2015-05-02T03:04:54 | 2015-05-02T03:04:54 | null | UTF-8 | Racket | false | false | 798 | rkt | cs019-pre-base.rkt | #lang s-exp "../lang/base.rkt"
(require (for-syntax "teach.rkt")
(for-syntax racket/base))
;; FIXME: there's something wrong with the compiler: it's not picking
;; up that teach-runtime is a dependency.
(require "teach-runtime.rkt")
(provide cs019-lambda
cs019-define
cs019-when
cs019-unless
cs019-set!
cs019-case
cs019-local
cs019-dots)
(define-syntax cs019-define advanced-define/proc)
(define-syntax cs019-lambda advanced-lambda/proc)
(define-syntaxes (cs019-when cs019-unless) (values advanced-when/proc advanced-unless/proc))
(define-syntax cs019-set! advanced-set!/proc)
(define-syntax cs019-case advanced-case/proc)
(define-syntax cs019-local intermediate-local/proc)
(define-syntax cs019-dots beginner-dots/proc)
| true |
6ebcc03f0b091066aa66ba462bec7fee0815740b | b232a8795fbc2176ab45eb3393f44a91112702f7 | /typed/rosette/function.rkt | 521837985bdd3632091544d0f56275e799dcee43 | []
| no_license | ilya-klyuchnikov/typed-rosette | 9845b2fcd8b203749bb3469dea4f70f8cf05c368 | d72d4e7aad2c339fdd49c70682d56f83ab3eae3d | refs/heads/master | 2021-09-20T08:25:13.996681 | 2018-08-06T17:58:30 | 2018-08-06T17:58:30 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 3,240 | rkt | function.rkt | #lang turnstile
(provide partial partialr)
(require typed/rosette/types
(prefix-in ro: rosette))
;; ----------------------------------------------------------------------------
;; Functions
;; partial* : [A ... B ... -> C] A ... -> [B ... -> C]
(ro:define ((partial* f . as) . bs)
(ro:apply f (ro:append as bs)))
;; partialr* : [A ... B ... -> C] B ... -> [A ... -> C]
(ro:define ((partialr* f . bs) . as)
(ro:apply f (ro:append as bs)))
(define-typed-syntax partial
[(_ f:expr a:expr ...) โซ
[โข f โซ f- โ : (~Cโ ฯ_ab ... ฯ_c)]
#:do [(define na (stx-length #'[a ...]))
(define-values [ฯs_a ฯs_b]
(split-at (stx->list #'[ฯ_ab ...]) na))]
#:with [ฯ_a ...] ฯs_a
#:with [ฯ_b ...] ฯs_b
[โข [a โซ a- โ : ฯ_a] ...]
--------
[โข (partial* f- a- ...) โ : (Cโ ฯ_b ... ฯ_c)]]
[(_ f:expr a:expr ...) โซ
[โข f โซ f- โ : (~Ccase-> ฯ_f ...)]
[โข [a โซ a- โ : ฯ_a*] ...]
#:do [(define na (stx-length #'[a ...]))
(define results
(filter
list?
(for/list ([ฯ_f (in-list (stx->list #'[ฯ_f ...]))])
(define/syntax-parse (~Cโ ฯ_ab ... ฯ_c) ฯ_f)
(define-values [ฯs_a ฯs_b]
(split-at (stx->list #'[ฯ_ab ...]) na))
(and (typechecks? #'[ฯ_a* ...] ฯs_a)
(list ฯs_b #'ฯ_c)))))]
#:fail-when (empty? results) "no cases match"
#:with [([ฯ_b ...] ฯ_c) ...] results
--------
[โข (partial* f- a- ...) โ : (Ccase-> (Cโ ฯ_b ... ฯ_c)
...)]])
(define-typed-syntax partialr
[(_ f:expr b:expr ...) โซ
[โข f โซ f- โ : (~Cโ ฯ_ab ... ฯ_c)]
#:do [(define na (- (stx-length #'[ฯ_ab ...]) (stx-length #'[b ...])))
(define-values [ฯs_a ฯs_b]
(split-at (stx->list #'[ฯ_ab ...]) na))]
#:with [ฯ_a ...] ฯs_a
#:with [ฯ_b ...] ฯs_b
[โข [b โซ b- โ : ฯ_b] ...]
--------
[โข (partialr* f- b- ...) โ : (Cโ ฯ_a ... ฯ_c)]]
[(_ f:expr b:expr ...) โซ
[โข f โซ f- โ : (~Ccase-> ฯ_f ...)]
[โข [b โซ b- โ : ฯ_b*] ...]
#:do [(define nb (stx-length #'[b ...]))
(define results
(filter
syntax?
(for/list ([ฯ_f (in-list (stx->list #'[ฯ_f ...]))])
(syntax-parse ฯ_f
[(~Cโ ฯ_ab ... ฯ_c)
(define na (- (stx-length #'[ฯ_ab ...]) nb))
(define-values [ฯs_a ฯs_b]
(split-at (stx->list #'[ฯ_ab ...]) na))
(and (typechecks? #'[ฯ_b* ...] ฯs_b)
#`(Cโ #,@ฯs_a ฯ_c))]
[(~Cโ/conc ฯ_ab ... ฯ_c)
(define na (- (stx-length #'[ฯ_ab ...]) nb))
(define-values [ฯs_a ฯs_b]
(split-at (stx->list #'[ฯ_ab ...]) na))
(and (typechecks? #'[ฯ_b* ...] ฯs_b)
#`(Cโ/conc #,@ฯs_a ฯ_c))]))))]
#:fail-when (empty? results) "no cases match"
#:with [ฯ_a->c ...] results
--------
[โข (partialr* f- b- ...) โ : (Ccase-> ฯ_a->c ...)]])
;; ----------------------------------------------------------------------------
| false |
922a8dbcc3c792ce44e1f34d318df19caaf5ac72 | 71060ffeffa3469ec44ba661b04118b487fc0602 | /ch_2_general_arithmetic_package/polynomials__dense_termlists.package.rkt | 4fddaae2526df7fd2226bb3db8d2761d22f94081 | []
| no_license | ackinc/sicp | 18741d3ffc46041ecd08021d57a50702be2e0f92 | 4ee2250f8b7454fb88bc27edb41a1349d7a3016c | refs/heads/master | 2021-09-13T08:55:37.171840 | 2018-04-27T10:02:08 | 2018-04-27T10:02:08 | 114,095,803 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 2,306 | rkt | polynomials__dense_termlists.package.rkt | #lang racket
(require "apply_generic.rkt")
(require "general_arithmetic_ops.rkt")
(require "hash_ops.rkt")
(require "polynomials__term_ops.rkt")
(require "scheme_numbers.package.rkt") ; for =zero? on ordinary numbers
(require "type_tag_helpers.rkt")
(define (install-dense-polynomial-package)
(define (the-empty-termlist) null)
(define (empty-termlist? tl) (null? tl))
(define (first-term tl) (make-term (sub (length tl) 1) (car tl)))
(define (rest-terms tl) (cdr tl))
(define (adjoin-term t tl)
(let ((coeff-t (coeff t))
(order-t (order t))
(order-tl (if (empty-termlist? tl) -1 (order (first-term tl)))))
(cond ((=zero? coeff-t) tl)
((> (- order-t order-tl) 1) (adjoin-term t (cons 0 tl)))
(else (cons coeff-t tl)))))
(define (is-appropriate-type tl) ; if # 0s in tl is <= half length of tl, return #t, else #f
(if (empty-termlist? tl)
#t
(let ((num-zeroes (foldl (lambda (coeff acc) (if (= coeff 0) (+ acc 1) acc)) 0 tl)))
(<= num-zeroes (/ (length tl) 2)))))
(define (convert stl) ; sparse tl -> dense tl
(define first-term (get 'first-term '(sparse)))
(define rest-terms (get 'rest-terms '(sparse)))
(define empty-termlist? (get 'empty-termlist? '(sparse)))
(define (helper stl) ; this helper is to avoid redefining "first-term" and other functions above in the recursive calls
(if (empty-termlist? stl)
(the-empty-termlist)
(adjoin-term (first-term stl) (helper (contents (rest-terms stl))))))
(helper stl))
(define (convert-to-other-type dtl)
((get 'convert '(sparse)) dtl))
; public interface
(define (tag datum) (attach-tag 'dense datum))
(put 'the-empty-termlist 'dense (lambda () (tag (the-empty-termlist))))
(put 'empty-termlist? '(dense) empty-termlist?)
(put 'first-term '(dense) first-term)
(put 'rest-terms '(dense) (lambda (tl) (tag (rest-terms tl))))
(put 'adjoin-term 'dense (lambda (t tl) (tag (adjoin-term t tl))))
(put 'is-appropriate-type '(dense) is-appropriate-type)
(put 'convert '(dense) (lambda (tl) (tag (convert tl))))
(put 'convert-to-other-type '(dense) convert-to-other-type)
(put 'make 'dense (lambda (tl) (tag tl)))
'installed-dense-termlists-package)
(install-dense-polynomial-package) | false |
2b876fa3b4e6e5a213cb47b9a9c9a233117b45d4 | d6b905b841a3c812ff1805879f681111f164e87c | /icole/ch01/chapter1_exmaples.rkt | e72827ad68e8172200c3187efd0e58dc2509be32 | [
"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 | 118 | rkt | chapter1_exmaples.rkt | #lang racket
(+ 1 1)
(+ 3 (* 2 4))
(+ 1 2 3 4 5 6 7 8 9 0)
(sqr 3)
(sqr 4)
(sqrt (+ (sqr 3) (sqr 4)))
'(hello world) | false |
79f9a7dff269802517eece544b6a4ef2424b5921 | 3cb889e26a8e94782c637aa1126ad897ccc0d7a9 | /Lisp/99Problems/39.rkt | d7e715daa7ff15c4a25a77fb5b635dce325286ed | []
| no_license | GHScan/DailyProjects | 1d35fd5d69e574758d68980ac25b979ef2dc2b4d | 52e0ca903ee4e89c825a14042ca502bb1b1d2e31 | refs/heads/master | 2021-04-22T06:43:42.374366 | 2020-06-15T17:04:59 | 2020-06-15T17:04:59 | 8,292,627 | 29 | 10 | null | null | null | null | UTF-8 | Racket | false | false | 305 | rkt | 39.rkt | #lang racket
(define (is-prime n)
(let iter ([i 2][max-i (floor (sqrt n))])
(if (> i max-i)
true
(and (not (= 0 (remainder n i))) (iter (+ i 1) max-i))))
)
(define (prime-list lower upper)
(filter is-prime (range lower upper))
)
;------------------------------
(prime-list 2 100)
| false |
e501cba2531192d2fcdd1bcbc5e1f0249046a721 | a8338c4a3d746da01ef64ab427c53cc496bdb701 | /drbayes/private/arrow/directed-rounding-flops.rkt | c95754f13e46ea23d7ffdd9cc0fcd4819b663050 | []
| no_license | ntoronto/plt-stuff | 83c9c4c7405a127bb67b468e04c5773d800d8714 | 47713ab4c16199c261da6ddb88b005222ff6a6c7 | refs/heads/master | 2016-09-06T05:40:51.069410 | 2013-10-02T22:48:47 | 2013-10-02T22:48:47 | 1,282,564 | 4 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 3,577 | rkt | directed-rounding-flops.rkt | #lang typed/racket/base
(require racket/fixnum
math/flonum
(only-in racket/math pi))
(provide (all-defined-out))
;; Floating-point pi is a little smaller than actual pi, so we bump it a bit to use it as a bound
(define -pi/2/rndd (flprev* (/ pi -2.0)))
(define pi/2/rndu (flnext* (/ pi 2.0)))
(define -pi/rndd (flprev* (- pi)))
(define pi/rndu (flnext* pi))
(: flstep* (Flonum Fixnum -> Flonum))
(define (flstep* x n)
(cond [(n . fx> . 0)
(let loop ([x (flnext* x)] [n (- n 1)])
(cond [(fx= n 0) x]
[else (loop (flnext* x) (- n 1))]))]
[(n . fx< . 0)
(let loop ([x (flprev* x)] [n (+ n 1)])
(cond [(fx= n 0) x]
[else (loop (flprev* x) (+ n 1))]))]
[else x]))
(: fl2->fl/rndd (Flonum Flonum Flonum -> Flonum))
(define (fl2->fl/rndd x0 x1 mn)
(if (x1 . fl< . 0.0) (flmax mn (flprev* x0)) x0))
(: fl2->fl/rndu (Flonum Flonum Flonum -> Flonum))
(define (fl2->fl/rndu x0 x1 mx)
(if (x1 . fl> . 0.0) (flmin mx (flnext* x0)) x0))
(define-syntax-rule (make-unary-flops/rnd flop/error mn mx)
(values
(ฮป: ([x : Flonum])
(let-values ([(y0 y1) (flop/error x)])
(fl2->fl/rndd y0 y1 mn)))
(ฮป: ([x : Flonum])
(let-values ([(y0 y1) (flop/error x)])
(fl2->fl/rndu y0 y1 mx)))))
(define-syntax-rule (make-binary-flops/rnd flop/error mn mx)
(values
(ฮป: ([x : Flonum] [y : Flonum])
(let-values ([(z0 z1) (flop/error x y)])
(fl2->fl/rndd z0 z1 mn)))
(ฮป: ([x : Flonum] [y : Flonum])
(let-values ([(z0 z1) (flop/error x y)])
(fl2->fl/rndu z0 z1 mx)))))
(define-syntax-rule (make-unary-flops/fake-rnd flop steps-down steps-up mn mx)
(values (ฮป: ([x : Flonum]) (flmax mn (flstep* (flop x) (- steps-down))))
(ฮป: ([x : Flonum]) (flmin mx (flstep* (flop x) steps-up)))))
(define-syntax-rule (make-binary-flops/fake-rnd flop steps-down steps-up mn mx)
(values (ฮป: ([x : Flonum] [y : Flonum]) (flmax mn (flstep* (flop x y) (- steps-down))))
(ฮป: ([x : Flonum] [y : Flonum]) (flmin mx (flstep* (flop x y) steps-up)))))
(define-syntax-rule (fllog/error x) (fl2log x 0.0))
(define-syntax-rule (flrecip/error x) (fl//error 1.0 x))
(define-values (flsqr/rndd flsqr/rndu) (make-unary-flops/rnd flsqr/error 0.0 +inf.0))
(define-values (flsqrt/rndd flsqrt/rndu) (make-unary-flops/rnd flsqrt/error 0.0 +inf.0))
(define-values (flexp/rndd flexp/rndu) (make-unary-flops/rnd flexp/error 0.0 +inf.0))
(define-values (fllog/rndd fllog/rndu) (make-unary-flops/rnd fllog/error -inf.0 +inf.0))
(define-values (flrecip/rndd flrecip/rndu) (make-unary-flops/rnd flrecip/error -inf.0 +inf.0))
(define-values (fl+/rndd fl+/rndu) (make-binary-flops/rnd fl+/error -inf.0 +inf.0))
(define-values (fl-/rndd fl-/rndu) (make-binary-flops/rnd fl-/error -inf.0 +inf.0))
(define-values (fl*/rndd fl*/rndu) (make-binary-flops/rnd fl*/error -inf.0 +inf.0))
(define-values (fl//rndd fl//rndu) (make-binary-flops/rnd fl//error -inf.0 +inf.0))
(define-values (flsin/rndd flsin/rndu) (make-unary-flops/fake-rnd flsin 1 1 -1.0 1.0))
(define-values (flcos/rndd flcos/rndu) (make-unary-flops/fake-rnd flcos 1 1 -1.0 1.0))
(define-values (fltan/rndd fltan/rndu) (make-unary-flops/fake-rnd fltan 1 1 -inf.0 +inf.0))
(define-values (flasin/rndd flasin/rndu) (make-unary-flops/fake-rnd flasin 1 1 -pi/2/rndd pi/2/rndu))
(define-values (flacos/rndd flacos/rndu) (make-unary-flops/fake-rnd flacos 1 1 0.0 pi/rndu))
(define-values (flatan/rndd flatan/rndu) (make-unary-flops/fake-rnd flatan 1 1 -pi/2/rndd pi/2/rndu))
| true |
4d4e1aa93a0b698723229e3af1341c2d59e328f0 | 4dd19196602623d0db1f5aa2ac44eaeace198b4a | /Chapter2/2.56.rkt | e8358c0f7104a0a7d2279af8f3f1b9c0ad823122 | []
| no_license | Dibel/SICP | f7810b2c45aa955b8207e6cb126431d6f0ef48cb | abd27c0ed4bdaaa755eff01e78e5fb2a2ef8ee18 | refs/heads/master | 2020-06-05T16:38:00.957460 | 2014-12-02T15:20:40 | 2014-12-02T15:20:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 6,013 | rkt | 2.56.rkt | #lang scheme
(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)))
((sub? exp)
(make-sub (deriv (subbeg exp) var)
(deriv (subend exp) var)))
((divide? exp)
(make-divide (make-sub
(make-product
(deriv (divbeg exp) var)
(divend exp))
(make-product
(deriv (divend exp) var)
(divbeg exp)))
(make-exponentiation (divend exp) '2)))
((exponentiation? exp)
(make-product
(make-product (exponent exp) (deriv (base exp) var))
(make-exponentiation (base exp)
(make-sub (exponent exp) '1))))
((product? exp)
(make-sum
(make-product (multiplier exp)
(deriv (multiplicand exp) var))
(make-product (deriv (multiplier exp) var)
(multiplicand exp))))
((sin? exp)
(make-product (deriv (sin-num exp) var)
(make-cos (sin-num exp))))
((cos? exp)
(make-product (deriv (cos-num exp) var)
(make-product '-1 (make-sin (cos-num exp)))))
((ln? exp)
(make-product (deriv (ln-num exp) var)
(make-frac (ln-num exp))))
((log? exp)
(make-product (make-devide (deriv (log-base exp) var)
(make-ln (log-expr exp)))
(make-frac (log-base exp))))
(else
(error "unknown expression type -- DERIV" exp))))
; exponentiation
(define (exponentiation? x)
(and (pair? x) (eq? (car x) '**)))
; ๅๅบ
(define (base exp) (cadr exp))
; ๅๅน
(define (exponent exp) (caddr exp))
(define (make-exponentiation b e)
(cond ((=number? e 0) 1)
((=number? e 1) b)
((and (number? e) (number? b))
(fast-expt b e))
((exponentiation? b) ; ๅๅนถไนๆน
(make-exponentiation (base b) (make-product (exponent b) e)))
(else (list '** b e))))
; sin
(define (sin? x)
(and (pair? x) (eq? (car x) 'sin)))
(define (sin-num exp) (cadr exp))
(define (make-cos x)
(list 'cos x))
;cos
(define (cos? x)
(and (pair? x) (eq? (car x) 'cos)))
(define (cos-num exp) (cadr exp))
(define (make-sin x)
(list 'sin x))
;ln
(define (ln? x)
(and (pair? x) (eq? (car x) 'ln)))
(define (ln-num exp) (cadr exp))
(define (make-frac x)
(if (number? x)
(/ 1 x)
(list '/ 1 x)))
;log
(define (log? x)
(and (pair? x) (eq? (car x) 'log)))
(define (log-base exp) (caddr exp))
(define (log-expr exp) (cadr exp))
(define (make-ln x)
(if (number? x)
(log x)
(list 'ln x)))
(define (make-devide d1 d2)
(cond ((and (number? d1) (number? d2)) (/ d1 d2))
(else (list '/ d1 d2))))
; sub
(define (sub? x)
(and (pair? x) (eq? (car x) '-)))
; ๅ่ขซๅๆฐ
(define (subbeg exp) (cadr exp))
; ๅๅๆฐ
(define (subend exp)
(if (null? (cdddr exp))
(caddr exp)
(cons '- (cddr exp))))
(define (make-sub s1 s2)
(cond ((=number? s1 0) (- 0 s2))
((=number? s2 0) s1)
((and (number? s1) (number? s2)) (- s1 s2))
((same-variable? s1 s2) 0)
(else (list '- s1 s2))))
; divide
(define (divide? x)
(and (pair? x) (eq? (car x) '/)))
(define (divbeg exp) (cadr exp))
(define (divend exp)
(if (null? (cdddr exp))
(caddr exp)
(cons '/ (cddr exp))))
(define (make-divide d1 d2)
(cond ((=number? d1 0) 0)
((=number? d2 0) (error "divided by 0")) ; ๅค็้ค0้่ฏฏ
((and (number? d1) (number? d2)) (/ d1 d2))
((same-variable? d1 d2) 1) ; ๅๅ้็ฎๅ
((and (product? d1) (variable? d2))
(cond ((same-variable? (multiplier d1) d2) (multiplicand d1))
((same-variable? (multiplicand d1) d2) (multiplier d1))))
(else (list '/ d1 d2))))
(define (variable? x) (symbol? x))
(define (sum? x)
(and (pair? x) (eq? (car x) '+)))
(define (product? x)
(and (pair? x) (eq? (car x) '*)))
(define (same-variable? v1 v2)
(and (variable? v1) (variable? v2) (eq? v1 v2)))
(define (make-sum a1 a2)
(cond ((=number? a1 0) a2)
((=number? a2 0) a1)
((and (number? a1) (number? a2)) (+ a1 a2))
(else (list '+ a1 a2))))
(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))
((and (product? m1) (number? m2)) ; ไปฅไธๅไธบ็ฎๅ๏ผ่ฅไธคไธชไนๆฐไธญๆไธไธชไธบๆฐๅญไธๅฆไธไธชไนๆฐๆฏไธไธชๅซๆๆฐๅญ็ไนๅผๅๆ่ฟไธคไธชๆฐๅญ็ธไนไปฅๅพๅฐๆฐ็็ฎๅๅผ
(cond ((number? (multiplier m1))
(make-product (* (multiplier m1) m2) (multiplicand m1)))
((number? (multiplicand m1))
(make-product (multiplier m1) (* m2 (multiplicand m1))))))
((and (product? m2) (number? m1))
(cond ((number? (multiplier m2))
(make-product (* (multiplier m2) m1) (multiplicand m2)))
((number? (multiplicand m2))
(make-product (multiplier m2) (* m1 (multiplicand m2))))))
(else (list '* m1 m2))))
(define (=number? a1 a2)
(and (number? a1) (= a1 a2)))
(define (addend exp) (cadr exp))
(define (augend exp)
(if (null? (cdddr exp))
(caddr exp)
(cons '+ (cddr exp))))
(define (multiplier exp) (cadr exp))
(define (multiplicand exp)
(if (null? (cdddr exp))
(caddr exp)
(cons '* (cddr exp))))
(define (fast-expt b n)
(fastexpt-iter b n 1))
(define (fastexpt-iter b n a)
(if (= n 0)
a
(if (even? n)
(fastexpt-iter (square b) (/ n 2) a)
(fastexpt-iter b (- n 1) (* b a)))))
(define (square n)
(* n n))
| false |
42628e506ed63a4ed3e2de24ce9391ee90df4c1c | 67ae271d2c78ce2134a49c1cf6c40cfffb9ab04e | /lambs/rkt/unify.rkt | b7f0c5858680fc1ac56525c266d1c2f61f2d1298 | []
| no_license | Glorp/axe-of-taipei | 44be823d49c8d6397a468513bfc352369b07f56e | 6f8c67fa654e85a033c306f4ed379a2cce82ca1a | refs/heads/master | 2021-01-19T11:03:44.858155 | 2019-02-21T22:22:36 | 2019-02-21T22:22:36 | 87,922,665 | 3 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 770 | rkt | unify.rkt | #lang racket
(provide unify)
(require "structs.rkt"
"opt.rkt")
(define (unify a b)
(match* (a b)
[((wild) x) x]
[(x (wild)) x]
[((fun ad ar) (fun bd br))
(opts> ((unify ad bd) (unify ar br))
[(new-d new-r) (fun new-d new-r)])]
[((prod aa ab) (prod ba bb))
(opts> ((unify aa ba) (unify ab bb))
[(new-a new-b) (prod new-a new-b)])]
[((sum ll lr) (sum rl rr))
(opts> ((unify ll rl) (unify lr rr))
[(new-l new-r) (sum new-l new-r)])]
[(_ _) (and (equal? a b) a)]))
(module+ test
(require rackunit)
(check-equal? (unify (prod (wild) 'x) (prod (fun 'a 'b) 'x))
(prod (fun 'a 'b) 'x))
(check-equal? (unify (prod (wild) 'x) (prod (fun 'a 'b) 'y))
#f)) | false |
783e304f0c5b276952cbbd544b97792fae5e15ff | 099418d7d7ca2211dfbecd0b879d84c703d1b964 | /whalesong/lang/js/js.rkt | 9285d102e2527af0d40ce387fba73807285598e1 | []
| no_license | vishesh/whalesong | f6edd848fc666993d68983618f9941dd298c1edd | 507dad908d1f15bf8fe25dd98c2b47445df9cac5 | refs/heads/master | 2021-01-12T21:36:54.312489 | 2015-08-19T19:28:25 | 2015-08-19T20:34:55 | 34,933,778 | 3 | 0 | null | 2015-05-02T03:04:54 | 2015-05-02T03:04:54 | null | UTF-8 | Racket | false | false | 3,415 | rkt | js.rkt | #lang scheme/base
(require (for-syntax racket/base
racket/file
racket/string
syntax/parse
syntax/modresolve
"record.rkt"))
(define-for-syntax (my-resolve-path a-module-path)
(parameterize ([current-directory (or (current-load-relative-directory)
(current-directory))])
(resolve-module-path a-module-path #f)))
(define-for-syntax (resolve-implementation-path a-module-path)
(let ([a-path (my-resolve-path a-module-path)])
(path->string a-path)))
(define-syntax (declare-implementation stx)
(syntax-parse stx
[(_ #:racket racket-module-name
#:javascript (javascript-module-name ...)
#:provided-values (provided-name ...))
(with-syntax
([resolved-racket-module-name
(my-resolve-path (syntax-e #'racket-module-name))]
[impl
(map (compose resolve-implementation-path syntax-e)
(syntax->list #'(javascript-module-name ...)))]
[(internal-name ...) (generate-temporaries #'(provided-name ...))]
[(set-internal-name! ...) (generate-temporaries #'(provided-name ...))])
(syntax/loc stx
(begin
;; Compile-time code: record the Javascript implementation here.
;; Also, record that any references to the racket-module name
;; should be redirected to this module.
(begin-for-syntax
(let* ([this-module
(variable-reference->resolved-module-path
(#%variable-reference))]
[key (resolved-module-path-name this-module)])
(record-redirection! (#%datum . resolved-racket-module-name)
key)
(record-javascript-implementation! key (#%datum . impl))
;;(record-exported-name! key 'internal-name 'provided-name) ...
))
(require racket-module-name)
(begin
(define internal-name provided-name)
;; Discouraging constant folding via set! to address issue 74
;; https://github.com/dyoo/whalesong/issues/74
(define (set-internal-name! x)
(set! internal-name x)))
...
(provide (rename-out [internal-name provided-name] ...)))))]))
(define-syntax (my-require stx)
(syntax-case stx ()
[(_ module-path ...)
(andmap (lambda (p) (module-path? (syntax-e p)))
(syntax->list #'(module-path ...)))
(with-syntax ([(required-path ...)
(map (lambda (p)
(my-resolve-path (syntax-e p)))
(syntax->list #'(module-path ...)))])
(syntax/loc stx
(begin
(begin-for-syntax
(let* ([this-module
(variable-reference->resolved-module-path
(#%variable-reference))]
[key (resolved-module-path-name this-module)])
(record-module-require! key 'required-path)
...
(void)))
(void))))]
[else
(raise-syntax-error #f "Expected module path" stx)]))
(provide declare-implementation
(rename-out [#%plain-module-begin #%module-begin]
[my-require require])) | true |
4002535a1346241a40796157d89a488a58ac0625 | a96f96269cc22628682440e24b71508073467ae1 | /ev/ev-dead.rkt | 38bce27547de43c7bc76d316a29a28bd89b7a4ec | []
| no_license | umatani/tiny-opalclj | a206bb54597cc9abc121462863b9a1e66dacd588 | fb7f2ce3ca4174e47ae440bb5df3c740c9fc831e | refs/heads/main | 2023-03-17T18:11:36.984125 | 2021-03-16T09:12:06 | 2021-03-16T09:12:06 | 348,214,983 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 2,831 | rkt | ev-dead.rkt | #lang racket/base
(require racket/unit
syntax/parse
"../misc/transformers.rkt"
"../signatures.rkt"
"../misc/set.rkt"
"../ext-vm.rkt")
(provide ev-dead@)
(define-unit ev-dead@
(import monad^ mdead^ class^)
(export ev-dead^)
(define-monad M)
(define (((ev-dead evโ) ev) inst)
(do ฮ โ get-dead
ฮโฒ โ (set-remove ฮ inst)
(put-dead ฮโฒ)
((evโ ev) inst)))
(define ((eval-dead eval) inst)
(do ฮ โ all-insts
_ โ (printf "init-ฮ: ~a\n" (set-count ฮ))
(put-dead ฮ)
(eval inst)))
(define all-insts
(do clss โ all-classes
(all-insts-of-classes clss)))
(define (all-insts-of-classes clss)
(if (null? clss)
(return (set))
(do (cons cls clssโฒ) โ clss
mtds โ (methods-of cls)
insts โ (all-insts-of-methods cls mtds)
instsโฒ โ (all-insts-of-classes clssโฒ)
(return (set-union insts instsโฒ)))))
(define (all-insts-of-methods cls mtds)
(if (null? mtds)
(return (set))
(do (cons mtd mtdsโฒ) โ mtds
(list _ _ body) โ (lookup-method cls mtd)
insts โ (all-insts-of-inst body)
instsโฒ โ (all-insts-of-methods cls mtdsโฒ)
(return (set-union insts instsโฒ))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (all-insts-of-inst inst)
(syntax-parse inst
#:literals [begin iconst load store iadd isub imul idiv lt eq
if while new invokevirtual getfield putfield
print-top dup abs conc set-meta]
[(begin instโฒ ...+)
(apply set-union (set inst)
(map all-insts-of-inst (attribute instโฒ)))]
[(iconst i:integer) (set inst)]
[(load v:id) (set inst)]
[(store v:id) (set inst)]
[(iadd) (set inst)]
[(isub) (set inst)]
[(imul) (set inst)]
[(idiv) (set inst)]
[(lt) (set inst)]
[(eq) (set inst)]
[(if cond:expr thn:expr els:expr)
(set-union (set inst)
(all-insts-of-inst #'cond)
(all-insts-of-inst #'thn)
(all-insts-of-inst #'els))]
[(while cond:expr body:expr)
(set-union (set inst)
(all-insts-of-inst #'cond)
(all-insts-of-inst #'body))]
[(new lbl:id cname:id) (set inst)]
[(invokevirtual cname:id mname:id) (set inst)]
[(getfield cname:id fname:id) (set inst)]
[(putfield cname:id fname:id) (set inst)]
[(print-top) (set inst)]
[(dup) (set inst)]
[(abs instโฒ)
(set-union (set inst) (all-insts-of-inst #'instโฒ))]
[(conc instโฒ)
(set-union (set inst) (all-insts-of-inst #'instโฒ))]
[(set-meta cname:id mname:id) (set inst)]))
| false |
36ddae3fe3d59f8a96af40ebf604b9f76c3be51d | 7e15b782f874bcc4192c668a12db901081a9248e | /eopl/ch2/ex-2.9.rkt | 078b4d6cf8da28c053a6e0d665976d2556fc3b8a | []
| no_license | Javran/Thinking-dumps | 5e392fe4a5c0580dc9b0c40ab9e5a09dad381863 | bfb0639c81078602e4b57d9dd89abd17fce0491f | refs/heads/master | 2021-05-22T11:29:02.579363 | 2021-04-20T18:04:20 | 2021-04-20T18:04:20 | 7,418,999 | 19 | 4 | null | null | null | null | UTF-8 | Racket | false | false | 343 | rkt | ex-2.9.rkt | #lang eopl
(require "../common.rkt")
(require "./ex-2.5.rkt")
(require "./ex-2.8.rkt")
(define e
(extend-env
'x 1
(extend-env
'y 2
(empty-env))))
(provide has-binding?)
; has-binding?: Env x Var -> Bool
(define (has-binding? env s)
(assv s env))
(for-each
out
(map ((curry2 has-binding?) e)
'(x y z)))
| false |
846b2e58801ef3a5fb4285c40ede044319d5fd02 | b08b7e3160ae9947b6046123acad8f59152375c3 | /Programming Language Detection/Experiment-2/Dataset/Train/Racket/loops-nested.rkt | 30d5851f67b7c459b2b1a0244f2e0f3196098e94 | []
| no_license | dlaststark/machine-learning-projects | efb0a28c664419275e87eb612c89054164fe1eb0 | eaa0c96d4d1c15934d63035b837636a6d11736e3 | refs/heads/master | 2022-12-06T08:36:09.867677 | 2022-11-20T13:17:25 | 2022-11-20T13:17:25 | 246,379,103 | 9 | 5 | null | null | null | null | UTF-8 | Racket | false | false | 216 | rkt | loops-nested.rkt | #lang racket
(define (scan xss)
(for* ([xs xss]
[x xs]
#:final (= x 20))
(displayln x)))
(define matrix
(for/list ([x 10])
(for/list ([y 10])
(+ (random 20) 1))))
(scan matrix)
| false |
4d0af4b66c332acb692518fe0346e8142a6c9ecf | 2c819623a83d8c53b7282622429e344389ce4030 | /test/tester.rkt | 9ea383d612c9bf303eaf074dac41ac7e5fc9f6c1 | []
| no_license | uw-unsat/jitsynth | 6bc97dd1ede9da42c0b9313a4766095345493adc | 69529e18d4a8d4dace884bfde91aa26b549523fa | refs/heads/master | 2022-05-29T05:38:57.129444 | 2020-05-01T19:35:32 | 2020-05-01T19:35:32 | 260,513,113 | 14 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 371 | rkt | tester.rkt | #lang rosette
(require "bpf2riscv/rwsets.rkt")
(require "bpf/interpreter.rkt")
(require "riscv/interpreter.rkt")
(require rackunit rackunit/text-ui)
(void
(run-tests riscv-interpreter-tests)
(run-tests bpf-interpreter-tests)
(run-tests riscv-write-set-tests)
(run-tests riscv-read-set-tests)
(run-tests bpf-write-set-tests)
(run-tests bpf-read-set-tests))
| false |
e537a6a5a74bd6045e1b28d3bf705b141d490e00 | 4b5472bdab1db0c0425ae79eced9b0e3da1aae0a | /cos.rkt | 46eae3691d6bca110c8bb79f24b359eb0e27e84c | [
"Apache-2.0"
]
| permissive | Metaxal/rascas | c5a921c456e5c9e0948f6fd65c0f2ca3628ec47d | f575e5a63b02358e80bfde53c7cb3eaae396e41a | refs/heads/master | 2023-03-16T04:23:54.814941 | 2023-03-11T13:37:28 | 2023-03-11T13:37:28 | 121,151,282 | 27 | 2 | null | null | null | null | UTF-8 | Racket | false | false | 3,499 | rkt | cos.rkt | #lang racket/base
;;;; This file has been changed from its original dharmatech/mpl version.
(provide cos)
(require (prefix-in rkt: (only-in racket/base cos))
racket/match
"arithmetic.rkt"
"numerator.rkt"
"denominator.rkt"
"misc.rkt"
)
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define pi 'pi)
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (simplify-cos-first-quadrant a/b)
(cond ( (> a/b 2) (cos (* (mod a/b 2) pi)) )
( (> a/b 1) (- (cos (- (* a/b pi) pi))) )
( (> a/b 1/2) (- (cos (- pi (* a/b pi)))) )
( else `(cos ,(* a/b pi)) )))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (simplify-cos-k/n*pi k/n)
(let ((k (numerator k/n))
(n (denominator k/n)))
(case n
((1) (case (mod k 2)
((1) -1)
((0) 1)))
((2) (case (mod k 2)
((1) 0)))
((3) (case (mod k 6)
((1 5) 1/2)
((2 4) -1/2)))
((4) (case (mod k 8)
((1 7) (/ 1 (sqrt 2)))
((3 5) (- (/ 1 (sqrt 2))))))
((6) (case (mod k 12)
((1 11) (/ (sqrt 3) 2))
((5 7) (- (/ (sqrt 3) 2))))))))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (n*pi? elt)
(define (n? x)
(and (number? x)
(exact? x)
(>= (abs x) 2)))
(match elt
[`(* ,(? n?) pi) #t]
[else #f]))
(define (simplify-cos-sum-with-pi elts)
(let ((pi-elt (findf n*pi? elts)))
(let ((n (list-ref pi-elt 1)))
(cos (+ (- (apply + elts) pi-elt)
(* (mod n 2) pi))))))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (n/2*pi? elt)
(define (n/2? x)
(and (exact-number? x)
(equal? (denominator x) 2)))
(match elt
[`(* ,(? n/2?) pi) #t]
[else #f]))
(define (simplify-cos-sum-with-n/2*pi elts)
(let ((n/2*pi (findf n/2*pi? elts)))
(let ((other-elts (- (apply + elts) n/2*pi)))
(let ((n (numerator (list-ref n/2*pi 1))))
(case (mod n 4)
((1) (- `(sin ,other-elts)))
((3) `(sin ,other-elts)))))))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (cos u)
(or
(try-apply-number rkt:cos u)
(match u
['pi -1]
[(? (ฮป(n) (and (number? n)
(negative? n)))
n)
(cos (- n))]
[`(* ,(? (ฮป(n) (and (number? n)
(negative? n)))
n)
. ,elts)
(cos (apply * (- n) elts))]
[`(* ,(? (ฮป(a/b) (and (exact-number? a/b)
(> a/b 1/2)))
a/b)
pi)
(simplify-cos-first-quadrant a/b)]
[`(* ,(? (ฮป(k/n)
(and (member (denominator k/n) '(1 2 3 4 6))
(integer? (numerator k/n))))
k/n)
pi)
(simplify-cos-k/n*pi k/n)]
[`(+ . ,(? (ฮป(elts) (findf n*pi? elts))
elts))
(simplify-cos-sum-with-pi elts)]
[`(+ . ,(? (ฮป(elts) (findf n/2*pi? elts))
elts))
(simplify-cos-sum-with-n/2*pi elts)]
[else `(cos ,u)])))
(register-function 'cos cos)
(module+ test
(require rackunit
"automatic-simplify.rkt")
(check-false (number? (cos 1/6)))
(check-true (number? (->inexact (cos 1/6)))))
| false |
176f4b7902dda6e0444efb24c1f81e741f61ccb0 | d0d656b7729bd95d688e04be38dde7d8cde19d3d | /1/1.3/solution.1.44.rkt | 89709986ee2954f5ef46a48df868cbcdee18ce2f | [
"MIT"
]
| permissive | search-good-project/SICP-in-Racket | f0157335a1d39c8ff4231e579fc13b0297c07e65 | daaae62db83bf8e911f4b8dbd00f8509113f557a | refs/heads/master | 2022-02-20T01:21:33.633182 | 2019-09-16T03:58:02 | 2019-09-16T03:58:02 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 499 | rkt | solution.1.44.rkt | #lang sicp
;; smooth
(define (smooth f)
(define dx 0.0001)
(define (average a b c)
(/ (+ a b c)
3.))
(lambda (x) (average (f (- x dx))
(f x)
(f (+ x dx)))))
;; 1.43
(define (compose f g)
(lambda (x) (f (g x))))
(define (repeated f n)
(if (= n 1)
f
(compose f (repeated f (- n 1)))))
(define (square x)
(* x x))
;; nth smooth
(define (n-fold-smooth f n)
((repeated smooth n) f))
((n-fold-smooth square 3) 2)
| false |
26cb4ab8b1be62d770cd0f9c6a0e8c045b96c62c | d25866631857fcba924e1f432efccaf6859d8897 | /tests/private.rkt | a4d0eb9bee6a7851e4a83967f574248fa8b1332d | [
"MIT"
]
| permissive | johnstonskj/racket-thrift | 347bb69c1dc8ce8247d6eb7f094ae797ac9cf5dc | bbed34e6af97167ec5e9327c7c6ad739e331e793 | refs/heads/master | 2022-05-02T00:14:30.383168 | 2018-12-05T22:07:43 | 2018-12-05T22:07:43 | 160,576,898 | 2 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 1,174 | rkt | private.rkt | #lang racket/base
;;
;; thrift - prototol.
;; Support for Thrift encoding
;;
;; Copyright (c) 2018 Simon Johnston ([email protected]).
;; ---------- Requirements
(require rackunit
; ---------
thrift/private/enumeration)
;; ---------- Test Fixtures
;; ---------- Internal procedures
;; ---------- Test Cases
(define-enumeration my-enum (A B C))
;(test-case
; "simple enum test"
;
; (check-true (struct-constructor-procedure? my-enum))
; (check-true (struct-predicate-procedure? my-enum?))
; (check-false (my-enum? -1))
; (check-false (my-enum? 0))
; (check-true (my-enum? 1))
; (check-true (my-enum? 2))
; (check-true (my-enum? 3))
; (check-false (my-enum? 4))
; (check-true (my-enum? my-enum:A))
; (check-true (my-enum? my-enum:B))
; (check-true (my-enum? my-enum:C))
; (check-equal? (integer->my-enum 2) my-enum:C)
; (check-equal? my-enum/names '("my-enum-A" "my-enum-B" "my-enum-C")))
;(test-case
; "simple literal test"
;
; (define-syntax-literals kw-required (required optional))
;
; (check-true (symbol? required))
; (check-true (symbol? optional))
; (check-true (kw-required? required))
; (check-true (kw-required? 'not-required)))
| true |
dd2aa12314396d042f61e89b03adbfccd5833217 | ff6f1a3cccfe57d52061ad82e7fb43983dc75ee9 | /subst-test.rkt | b384c5f34a98e39673e940d3955f352d362829d7 | []
| no_license | rfindler/popl-2012-ryr-talk | d92c3a730633d0cd467941a7165211238bbfe23d | 9da05129de004cc1df0ccfbd821e8542a9155021 | refs/heads/master | 2020-04-06T04:22:20.059251 | 2015-08-24T09:13:49 | 2015-08-24T09:19:45 | 41,293,076 | 3 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,909 | rkt | subst-test.rkt | #lang racket/base
(require redex/reduction-semantics
"subst.rkt"
racket/set)
(define (an-x? x) (memq x '(a b c x y z z2 z2 q)))
(test-equal (fvs an-x? (term (+ x a b))) (set 'x 'a 'b))
(test-equal (fvs an-x? (term (lambda (x) (+ x y)))) (set 'y))
(define-language L)
(define-metafunction L
[(subst (any_x any_b) ... any_body)
,(subst/proc an-x? (term (any_x ...)) (term (any_b ...)) (term any_body))])
(test-equal (term (subst (x y) x)) (term y))
(test-equal (term (subst (x y) z)) (term z))
(test-equal (term (subst (x y) (x (y z)))) (term (y (y z))))
(test-equal (term (subst (x y) ((lambda (x) x) ((lambda (y1) y1) (lambda (x) z)))))
(term ((lambda (x) x) ((lambda (y1) y1) (lambda (x) z)))))
(test-equal (term (subst (x y) (if0 (+ 1 x) x x)))
(term (if0 (+ 1 y) y y)))
(test-equal (term (subst (x (lambda (z) y)) (lambda (y) x)))
(term (lambda (y1) (lambda (z) y))))
(test-equal (term (subst (x 1) (lambda (y) x)))
(term (lambda (y) 1)))
(test-equal (term (subst (x y) (lambda (y) x)))
(term (lambda (y1) y)))
(test-equal (term (subst (x (lambda (y) y)) (lambda (z) (z2 z))))
(term (lambda (z) (z2 z))))
(test-equal (term (subst (x (lambda (z) z)) (lambda (z) (z1 z))))
(term (lambda (z) (z1 z))))
(test-equal (term (subst (x z) (lambda (z) (z1 z))))
(term (lambda (z2) (z1 z2))))
(test-equal (term (subst (x3 5) (lambda (x2) x2)))
(term (lambda (x2) x2)))
(test-equal (term (subst (z *) (lambda (z x) 1)))
(term (lambda (z x) 1)))
(test-equal (term (subst (q (lambda (x) z)) (lambda (z x) q)))
(term (lambda (z1 x) (lambda (x) z))))
(test-equal (term (subst (x 1) (lambda (x x) x)))
(term (lambda (x x) x)))
(test-equal (term (subst (x (y z)) (lambda (z) (z (x y)))))
(term (lambda (z1) (z1 ((y z) y)))))
(test-results)
| false |
a526fef5a8028ab8771db0eee85a9c16ba8bbdd8 | 561eac844dbad77a7fa88720d8f5b9ab6e6ba4b2 | /corpse-reviver/test/double-opaque/main.rkt | 04c3096dec0321c1499c5ffec5ca0812a9204f84 | [
"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 | 72 | rkt | main.rkt | #lang typed/racket/base
(require "adapter.rkt")
(displayln (absz -23))
| false |
58fc6c6d0ff74321d354a7bdc3d6ce26cc6cfd7b | 69166a46b8dbdd418c2091eeb0ef1c5966687bfd | /decision_functions (1).rkt | cfb9e97e2b03131cf2f32991eef29e729cceb772 | []
| no_license | ParthLa/Decision-trees | 8c87b766bd7512bd1e2aebdcee90b705effbdf5f | d5406b524157854f658a4d2e8e4305c1bd91be5b | refs/heads/master | 2020-08-05T05:21:05.055261 | 2019-10-02T18:21:12 | 2019-10-02T18:21:12 | 212,411,376 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,890 | rkt | decision_functions (1).rkt | #lang racket
;candidate functions for the toy dataset
(provide y1)
(provide y2)
(provide y3)
(provide y4>62)
(define y1 (cons "feature1" (lambda (x) (first x)))) ; returns the value of feature 1 for a given test sample
(define y2 (cons "feature2" (lambda (x) (second x))))
(define y3 (cons "feature3" (lambda (x) (third x))))
(define y4>62 (cons "feature4>62" (lambda (x) (if (< 62 (fourth x)) 1 0)))) ; returns 1 if the value of feature 4 > 62, else 0
;candidate functions for the titanic dataset
(provide pclass)
(provide sex)
(provide age>25)
(provide sibsp)
(provide parch)
(provide fare>50)
(provide emb)
(define pclass (cons "pclass" (lambda (x) (first x)))) ; returns the value of pclass for a given test sample
(define sex (cons "sex" (lambda (x) (second x))))
(define age>25 (cons "age>25" (lambda (x) (if (< 25 (third x)) 1 0))))
(define sibsp (cons "sibsp" (lambda (x) (fourth x))))
(define parch (cons "parch" (lambda (x) (fifth x))))
(define fare>50 (cons "fare>50" (lambda (x) (if (< 50 (sixth x)) 1 0))))
(define emb (cons "emb" (lambda (x) (seventh x))))
;candidate functions for the mushroom dataset
(provide cshape)
(provide csurf)
(provide bruise)
(provide odor)
(provide gatch)
(provide gspace)
(provide gsize)
(provide sshape)
(provide nring)
(provide pop)
(provide hab)
(define cshape (cons "cshape" (lambda (x) (first x))))
(define csurf (cons "csurf" (lambda (x) (second x))))
(define bruise (cons "bruise" (lambda (x) (third x))))
(define odor (cons "odor" (lambda (x) (fourth x))))
(define gatch (cons "gatch" (lambda (x) (fifth x))))
(define gspace (cons "gspace" (lambda (x) (sixth x))))
(define gsize (cons "gsize" (lambda (x) (seventh x))))
(define sshape (cons "sshape" (lambda (x) (eighth x))))
(define nring (cons "nring" (lambda (x) (ninth x))))
(define pop (cons "pop" (lambda (x) (tenth x))))
(define hab (cons "hab" (lambda (x) (tenth (cdr x)))))
| false |
8002d306c5256e1f919d75e8253fd939ece85c6a | 0a578e2544100932ba7f914cec601a1528923702 | /Haskell/euler-path.rkt | 769d09f230fecab8300bb32e7c29965f35c3161a | []
| no_license | tancheto/FunctionalProgramming | 6e7c755f66e420a1f122f384105679c9091ba020 | c33550228801da239ef9eaed44f46bd110f4b46c | refs/heads/master | 2020-08-28T01:12:01.397932 | 2020-01-07T17:17:07 | 2020-01-07T17:17:07 | 217,543,556 | 2 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 2,832 | rkt | euler-path.rkt | #lang racket
(define (adj graph vertex)
(if (equal? (car (car graph))
vertex)
(cddar graph)
(adj (cdr graph) vertex)))
(define (degrees+ graph vertex)
(define (iter graph number)
(cond ((null? graph) number)
((member vertex (cddar graph))
(iter (cdr graph) (+ 1 number)))
(else (iter (cdr graph) number))))
(iter graph 0))
(define (degrees- graph vertex)
(length (adj graph vertex)))
(define (take-all-vertexes graph)
(map car graph))
(define (euler-cycle-exists? graph)
(define vertexes-in-graph (take-all-vertexes graph))
(define (helper-func vertexes)
(or (null? vertexes)
(and (= (degrees+ graph (car vertexes))
(degrees- graph (car vertexes)))
(helper-func (cdr vertexes)))))
(helper-func vertexes-in-graph))
(define G '((a 2 b c d)
(b 4 a c)
(c 1 a b)
(d 3 a)))
(define G2 '((a 2 b c)
(b 4 a c)
(c 1 a b)))
(define (find-cost vertex graph)
(if (equal? vertex
(caar graph))
(cadar graph)
(find-cost vertex (cdr graph))))
(euler-cycle-exists? G)
(define (find-cost-euler graph)
(if (euler-cycle-exists? graph)
(foldr + 0 (map (lambda (v)
(* (find-cost v graph)
(degrees+ graph v)))
(take-all-vertexes graph)))
0))
(find-cost-euler G)
(find-cost-euler G2)
;2017
(define (tree? t)
(or (null? t)
(and (list? t)
(= (length t) 3)
(tree? (cadr t))
(tree? (caddr t)))))
(define empty-tree '())
(define (make-tree root left right)
(list root left right))
(define (leaf root)
(make-tree root empty-tree empty-tree))
(define root-tree car)
(define left-tree cadr)
(define right-tree caddr)
(define empty-tree? null?)
(define (leaf? tree)
(and (not (empty-tree? tree))
(empty-tree? (left-tree tree))
(empty-tree? (right-tree tree))))
(define (transform-sum tree)
(define (sum-tree tree)
(cond ((empty-tree? tree) 0)
((leaf? tree) (root-tree tree))
(else (+ (sum-tree (left-tree tree))
(sum-tree (right-tree tree))))))
(if (or (empty-tree? tree)
(leaf? tree))
tree
(make-tree (sum-tree tree)
(transform-sum (left-tree tree))
(transform-sum (right-tree tree)))))
(define T (make-tree 1
(make-tree 2
(make-tree 4
(leaf 4)
empty-tree)
empty-tree)
(make-tree 3
(leaf 1)
empty-tree)))
(transform-sum T)
| false |
19a66c88215348e31bc54bfde7eaaf49470025ae | 9dfcdbbb23e67e514adc77832af31b053a9e62c4 | /tabular/main.rkt | 82b421ea43f43fd72da3110974e1bd069116bed9 | []
| no_license | tonyg/racket-tabular | 2af1485cc6854dc5a658204c94c3d43cc392ecdd | b0440d5443f4f0e81dcd7eba4f5709c91b873a3b | refs/heads/master | 2021-09-08T07:32:10.162016 | 2021-08-30T07:27:32 | 2021-08-30T07:27:32 | 66,162,043 | 2 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 37,292 | rkt | main.rkt | #lang racket/base
;; TODO: *lots* more tests
(provide (except-out (struct-out table) table)
(rename-out [make-table table] [table <table>])
(struct-out table-column)
(struct-out table-column-computed)
(struct-out table-column-aggregate)
(struct-out table-ordering)
(struct-out table-header)
empty-table
table-column-names
table-column-count
table-row-count
table-empty?
table-row-ref
table-column-ref
table-rename*
table-rename
table-extend*
table-extend
table-freeze-aggregate
table-select*
table-select
table-reject*
table-reject
table-filter*
table-filter
table-group-by**
table-group-by*
table-group-by
table-value<?
table-order*
table-order
table-iterator?
in-table
table-append
table-cross-join
table-equi-join
table-natural-join
->table
table->hashes
;; TODO: Nice syntax for sequences-of-structs -> table
;; struct->list*
;; structs->table
strings->table/rx
csv-expr->table
table->csv-expr
pretty-print-table
table->pretty-string)
(require racket/dict)
(require racket/format)
(require racket/function)
(require racket/match)
(require racket/pretty)
(require racket/set)
(require racket/stream)
(require racket/vector)
(require data/order)
(module+ test (require rackunit) (provide (all-defined-out)))
;; A Table is a data structure having zero or more named columns.
;;
;; Columns are named by symbol.
;; Columns must not shadow each other. Use table-rename.
(struct table-column
(name) ;; Symbol
#:prefab)
(struct table-column-computed table-column
(dependencies ;; Listof Symbol, length n
proc) ;; (Any ...n -> Any)
#:prefab)
(struct table-column-aggregate table-column
(dependencies ;; Listof Symbol, length n
seed-proc ;; (Any ...n -> Any)
combiner-proc) ;; (Any Any -> Any)
#:prefab)
(define (table-column-dependencies c)
(cond [(table-column-computed? c) (table-column-computed-dependencies c)]
[(table-column-aggregate? c) (table-column-aggregate-dependencies c)]
[(table-column? c) '()]))
(define (table-column-positional? c)
(not (table-column-aggregate? c)))
(struct table-ordering
(column ;; Symbol
less-than-proc) ;; Any Any -> Boolean
#:prefab)
(struct table-header
(columns ;; Listof Column
index) ;; Map Symbol Nat -- missing entry means aggregate.
#:transparent
#:methods gen:equal+hash
[(define (equal-proc h1 h2 =?)
(=? (characterize-table-columns h1)
(characterize-table-columns h2)))
(define (hash-proc h hash) (hash (characterize-table-columns h)))
(define (hash2-proc h hash) (hash (characterize-table-columns h)))])
(struct table
(header* ;; TableHeader
aggregates ;; Map Symbol Any
body) ;; TableBody
#:transparent
#:property prop:sequence
(lambda (t) (in-table* t (table-column-names t)))
#:methods gen:custom-write
[(define (write-proc t port mode)
(write-string (table->pretty-string t) port))]
#:methods gen:equal+hash
[(define (equal-proc t1 t2 =?)
(and (=? (table-header* t1) (table-header* t2))
(=? (table-aggregates t1) (table-aggregates t2))
(=? (vector-length (table-body t1)) (vector-length (table-body t2)))
(let* ((cs1 (filter table-column-positional? (table-columns t1)))
(dep-index (make-dep-index t2 (map table-column-name cs1))))
(for/and [(r1 (in-vector (table-body t1)))
(r2 (in-vector (table-body t2)))]
(equal? r1 (list->vector (deref-dep-index r2 dep-index)))))))
(define (hash-proc t hash) (gen-table-hash t hash bitwise-xor))
(define (hash2-proc t hash) (gen-table-hash t hash +))])
(define (gen-table-hash t hash ++)
(++ (hash (table-header* t))
(hash (table-aggregates t))
(for*/fold [(v 0)] [(row (in-vector (table-body t))) (col (in-vector row))]
(++ v (hash col)))))
;; A TableBody is a Vectorof TableRow.
;; A TableRow is a Vectorof Any, with as many elements as there are non-aggregate columns.
(define (table-columns t)
(table-header-columns (table-header* t)))
(define (table-index t)
(table-header-index (table-header* t)))
(define (table-column-names t)
(for/set [(c (table-columns t))]
(table-column-name c)))
(define (table-column-count t)
(length (table-columns t)))
(define (table-row-count t)
(vector-length (table-body t)))
(define (table-empty? t)
(zero? (table-row-count t)))
(define (table-row-ref n t)
(vector-ref (table-body t) n))
(define (table-column-ref col-name t)
(define i (make-dep-index/aggregates 'table-column-ref t (list col-name)))
(for/list [(row (in-vector (table-body t)))] (deref-dep-index-pos row (car i))))
(define (simple-table-header col-specs)
(table-header col-specs
(for/fold [(i (hasheq))]
[(c (in-list col-specs)) #:when (table-column-positional? c)]
(hash-set i (table-column-name c) (hash-count i)))))
(define-syntax-rule (make-table [col-name ...] [value ...] ...)
(table (simple-table-header (list (table-column 'col-name) ...))
(hasheq)
(vector (vector value ...) ...)))
(define empty-table (make-table []))
(define (table-rename* t name-map)
(struct-copy table t
[header* (table-header (map (rename-column name-map) (table-columns t))
(for/hasheq [((old-name i) (in-hash (table-index t)))]
(values (name-map old-name) i)))]
[aggregates (for/hasheq [((old-name v) (in-hash (table-aggregates t)))]
(values (name-map old-name) v))]))
(define ((rename-column name-map) c)
(match c
[(table-column-computed old-name deps proc)
(table-column-computed (name-map old-name) (map name-map deps) proc)]
[(table-column-aggregate old-name deps seed comb)
(table-column-aggregate (name-map old-name) (map name-map deps) seed comb)]
[(table-column old-name)
(table-column (name-map old-name))]))
(define-syntax-rule (table-rename table [new-name old-name] ...)
(let ((m (make-hasheq (list (cons 'old-name 'new-name) ...))))
(table-rename* table (lambda (n) (hash-ref m n n)))))
;; Table (Listof Symbol) -> (Listof (Option Nat))
(define (make-dep-index t deps)
(for/list [(dep (in-list deps))]
(hash-ref (table-index t) dep #f)))
;; Symbol Table (Listof Symbol) -> (Listof (U Nat (List Any)))
(define (make-dep-index/aggregates who t deps)
(if (table-empty? t)
'()
(for/list [(dep deps)]
(hash-ref (table-index t)
dep
(lambda ()
;; Wrap aggregate values in a marker list
(list (hash-ref (table-aggregates t)
dep
(lambda ()
(error who "Column ~v does not exist" dep)))))))))
(define (deref-dep-index row is)
(for/list [(i (in-list is))] (deref-dep-index-pos row i)))
(define (deref-dep-index-pos row i)
(if (list? i) ;; wrapped aggregate value
(car i)
(vector-ref row i)))
(define (extend-table-header-index h positional-col-specs)
(for/fold [(index (table-header-index h))] [(c positional-col-specs)]
(hash-set index (table-column-name c) (hash-count index))))
(define (table-extend* t deps col-specs)
;; Enforce that deps lists are eq?.
(for [(c col-specs)]
(when (not (eq? deps (table-column-dependencies c)))
(error 'table-extend*
"Dependencies of new column ~v do not match the master list ~v"
c
deps)))
;; Enforce name uniqueness.
(for/fold [(names (table-column-names t))] [(c col-specs)]
(if (set-member? names (table-column-name c))
(error 'table-extend*
"New column ~v would shadow an existing or new column"
c)
(set-add names c)))
;; Enforce that new columns are either computed or aggregate
(define bads (filter (lambda (c) (not (or (table-column-computed? c)
(table-column-aggregate? c))))
col-specs))
(when (not (null? bads))
(error 'table-extend*
"Unexpected new table column types ~v"
bads))
;; Compute dependency index.
;; Separate out new aggregates.
(define aggs (filter table-column-aggregate? col-specs))
(define maps (filter table-column-computed? col-specs))
;; Compute new aggregates and rows, if rows already exist.
(define dep-index (make-dep-index/aggregates 'table-extend* t deps))
(define-values (new-aggregates new-rows-rev)
(for/fold [(aggregates (table-aggregates t)) (rows-rev '())]
[(old-row (in-vector (table-body t)))]
(define dep-vals (deref-dep-index old-row dep-index))
(values (for/fold [(aggregates aggregates)] [(c aggs)]
(define n (table-column-name c))
(define v (apply (table-column-aggregate-seed-proc c) dep-vals))
(define v1
(if (hash-has-key? aggregates n)
((table-column-aggregate-combiner-proc c) (hash-ref aggregates n) v)
v))
(hash-set aggregates n v1))
(cons (vector-append old-row (for/vector [(c maps)]
(apply (table-column-computed-proc c) dep-vals)))
rows-rev))))
(table (table-header (append (table-columns t) col-specs)
(extend-table-header-index (table-header* t) maps))
new-aggregates
(list->vector (reverse new-rows-rev))))
(define-syntax-rule (table-extend table [col-name ...] col-spec ...)
(let ((deps (list 'col-name ...)))
(table-extend* table deps (list (parse-col-spec deps (col-name ...) col-spec) ...))))
(define-syntax parse-col-spec
(syntax-rules ()
[(_ deps args [col-name expr])
(table-column-computed 'col-name deps (lambda args expr))]
[(_ deps args [col-name combiner-fn-expr seed-expr])
(table-column-aggregate 'col-name deps (lambda args seed-expr) combiner-fn-expr)]))
(define (table-freeze-aggregate col-name t)
(define c (findf (lambda (c) (and (table-column-aggregate? c)
(eq? (table-column-name c) col-name)))
(table-columns t)))
(when (not c) (error 'table-freeze-aggregate "No such aggregate column ~v" col-name))
(define vv (vector (hash-ref (table-aggregates t) col-name 'missing-means-no-table-rows-at-all)))
(table (table-header (append (remq c (table-columns t)) (list (table-column col-name)))
(let ((i (table-index t)))
(hash-set i col-name (hash-count i))))
(hash-remove (table-aggregates t) col-name)
(for/vector [(row (in-vector (table-body t)))]
(vector-append row vv))))
(define (table-select** who col-names t)
(define new-col-specs (filter (lambda (c) (set-member? col-names (table-column-name c)))
(table-columns t)))
(when (not (= (set-count col-names) (length new-col-specs)))
(define missing (set-subtract col-names (list->set (map table-column-name new-col-specs))))
(error who "Attempted to retain nonexistent columns ~v" missing))
(define new-aggregates
(if (table-empty? t)
(hasheq)
(for/hasheq [(c new-col-specs) #:when (table-column-aggregate? c)]
(when (not (subset? (list->set (table-column-dependencies c)) col-names))
(define missing (set-subtract (list->set (table-column-dependencies c))
col-names))
(error who
"Cannot retain column ~v because it depends on columns ~v"
c
missing))
(values (table-column-name c) (hash-ref (table-aggregates t) (table-column-name c))))))
(table (simple-table-header new-col-specs)
new-aggregates
(let* ((maps (filter table-column-positional? new-col-specs))
(dep-index (make-dep-index t (map table-column-name maps))))
(for/vector [(old-row (in-vector (table-body t)))]
(for/vector [(i dep-index)] (vector-ref old-row i))))))
(define (table-select* col-names t)
(table-select** 'table-select* col-names t))
(define-syntax-rule (table-select [col-name ...] table)
(table-select* (set 'col-name ...) table))
(define (table-reject* col-names t)
(table-select** 'table-reject* (set-subtract (table-column-names t) col-names) t))
(define-syntax-rule (table-reject [col-name ...] table)
(table-reject* (set 'col-name ...) table))
(define (table-filter* t deps pred)
(recompute-aggregates
(struct-copy table t
[body
(let ((dep-index (make-dep-index/aggregates 'table-filter* t deps)))
(for/vector [(old-row (in-vector (table-body t)))
#:when (apply pred (deref-dep-index old-row dep-index))]
old-row))])))
(define-syntax-rule (table-filter table [col-name ...] expr ...)
(table-filter* table (list 'col-name ...)
(lambda (col-name ...) (and expr ...))))
(define (table-group-by** t deps class-proc #:hash-type [base-hash hash])
(define dep-index (make-dep-index/aggregates 'table-group-by** t deps))
(define classes-rev
(for/fold [(classes-rev (base-hash))] [(old-row (in-vector (table-body t)))]
(define class (apply class-proc (deref-dep-index old-row dep-index)))
(hash-set classes-rev class (cons old-row (hash-ref classes-rev class '())))))
(for/list [((class rows-rev) (in-hash classes-rev))]
(cons class
(recompute-aggregates
(struct-copy table t [body (list->vector (reverse rows-rev))])))))
(define (table-group-by* t deps class-proc #:hash-type [base-hash hash])
(map cdr (table-group-by** t deps class-proc #:hash-type base-hash)))
(define-syntax table-group-by
(syntax-rules ()
[(_ table #:hash-type base-hash [col-name ...] expr)
(table-group-by* table (list 'col-name ...) (lambda (col-name ...) expr)
#:hash-type base-hash)]
[(_ table [col-name ...] expr)
(table-group-by* table (list 'col-name ...) (lambda (col-name ...) expr))]))
(define (table-order* t orderings)
(struct-copy table t
[body
(list->vector
(foldr (lambda (o rows)
(define i (car (make-dep-index t (list (table-ordering-column o)))))
(when (not i)
(error 'table-order* "Cannot order by column ~v" (table-ordering-column o)))
(sort rows (table-ordering-less-than-proc o) #:key (lambda (r) (vector-ref r i))))
(vector->list (table-body t))
orderings))]))
(define-syntax-rule (table-order table [order-spec ...] ...)
(table-order* table (list (parse-table-ordering order-spec ...) ...)))
(define datum<? (order-<? datum-order))
(define (table-value<? a b)
(if (and (number? a) (number? b))
(< a b)
(datum<? a b)))
(define ((flip f) a b) (f b a))
(define-syntax parse-table-ordering
(syntax-rules (ascending descending)
[(_ col-name ascending) (table-ordering 'col-name table-value<?)]
[(_ col-name ascending <) (table-ordering 'col-name <)]
[(_ col-name descending) (table-ordering 'col-name (flip table-value<?))]
[(_ col-name descending <) (table-ordering 'col-name (flip <))]))
(struct table-iterator (table dep-index index)
#:transparent
#:methods gen:stream
[(define (stream-empty? i)
(>= (table-iterator-index i)
(table-row-count (table-iterator-table i))))
(define (stream-first i)
(apply values
(deref-dep-index (vector-ref (table-body (table-iterator-table i))
(table-iterator-index i))
(table-iterator-dep-index i))))
(define (stream-rest i)
(struct-copy table-iterator i [index (+ (table-iterator-index i) 1)]))])
(define (in-table* t col-names)
(table-iterator t (make-dep-index/aggregates 'in-table* t col-names) 0))
(define-syntax in-table
(syntax-rules ()
[(_ table [col-name ...]) (in-table* table (list 'col-name ...))]
[(_ table) (let ((t table)) (in-table* t (table-column-names t)))]))
(define (table-append . tables)
(if (null? tables)
empty-table
(let ((expected-characterization (characterize-table-columns (table-header* (car tables))))
(aggregate-col-specs (filter table-column-aggregate? (table-columns (car tables)))))
(foldl (table-append* expected-characterization aggregate-col-specs)
(car tables)
(cdr tables)))))
(define (characterize-table-columns h)
(make-immutable-hash (map (lambda (c) (cons (table-column-name c) (table-column-aggregate? c)))
(table-header-columns h))))
(define ((table-append* expected-characterization aggregate-col-specs) rhs lhs) ;; yes, flipped
;; We *should* check that column definitions are *identical* here,
;; except we don't have a good enough predicate to use for aggregate
;; functions. We could use `eq?` and rely on
;; syntax-local-lift-expression in `parse-col-spec`, but it seems
;; better just not to try too hard here.
;;
;; Also, TODO: repeated vector-append is O(n^2). Can do better.
;;
(when (not (equal? expected-characterization (characterize-table-columns (table-header* rhs))))
(error 'table-append "Mismatch between available columns"))
(struct-copy table lhs
[aggregates
(merge-aggregates aggregate-col-specs (table-aggregates lhs) (table-aggregates rhs))]
[body
(vector-append (table-body lhs) (adjust-table-body (table-header* lhs) rhs))]))
(define (adjust-table-body target-header source-t)
(define dep-index (make-dep-index source-t (filter table-column-positional?
(table-header-columns target-header))))
(for/vector [(source-row (in-vector (table-body source-t)))]
(deref-dep-index source-row dep-index)))
(define (recompute-aggregates t)
(struct-copy table t
[aggregates
(if (table-empty? t)
(hasheq)
(for/hasheq [(c (table-columns t))
#:when (table-column-aggregate? c)]
(define dep-index (make-dep-index/aggregates 'recompute-aggregates
t
(table-column-aggregate-dependencies c)))
(define (seed row) (apply (table-column-aggregate-seed-proc c)
(deref-dep-index row dep-index)))
(define combiner (table-column-aggregate-combiner-proc c))
(values (table-column-name c)
(for/fold [(v (seed (vector-ref (table-body t) 0)))]
[(row (in-vector (table-body t) 1))]
(combiner v (seed row))))))]))
(define *merge-sentinel* (cons '*merge-sentinel* '()))
(define (merge-aggregates col-specs a1 a2)
(for/fold [(a (hasheq))] [(c (in-list col-specs))]
(define n (table-column-name c))
(define v1 (hash-ref a1 n *merge-sentinel*))
(define v2 (hash-ref a2 n *merge-sentinel*))
(cond
[(eq? v1 *merge-sentinel*) (if (eq? v2 *merge-sentinel*) a (hash-set a n v2))]
[(eq? v2 *merge-sentinel*) (hash-set a n v1)]
[else (hash-set a n ((table-column-aggregate-combiner-proc c) v1 v2))])))
(define (ensure-no-column-name-collisions! who t1 t2 except2)
(define colliding-column-names (set-intersect (table-column-names t1)
(set-subtract (table-column-names t2)
(list->set except2))))
(when (not (set-empty? colliding-column-names))
(error who "Colliding column names: ~v" colliding-column-names)))
(define (table-cross-join* t1 t2)
(ensure-no-column-name-collisions! 'table-cross-join* t1 t2 '())
(define h1 (table-header* t1))
(define h2 (table-header* t2))
(recompute-aggregates
(table (table-header (append (table-header-columns h1) (table-header-columns h2))
(extend-table-header-index h1 (filter table-column-positional?
(table-header-columns h2))))
(for/fold [(a (table-aggregates t1))] [((k v) (in-hash (table-aggregates t2)))]
(hash-set a k v))
(for*/vector [(row1 (in-vector (table-body t1)))
(row2 (in-vector (table-body t2)))]
(vector-append row1 row2)))))
(define (table-cross-join . tables)
(if (null? tables)
empty-table
(foldl (lambda (rhs lhs) (table-cross-join* lhs rhs))
(car tables)
(cdr tables))))
;; NB. Groups of rows are in reverse order.
(define (index-rows-by t dep-index)
(for/fold [(i (hash))] [(row (in-vector (table-body t)))]
(define k (deref-dep-index row dep-index))
(hash-set i k (cons row (hash-ref i k '())))))
(define (table-equi-join* t1 t2 column-name-alist #:discard-redundant? [discard-redundant? #t])
(define ns1 (map car column-name-alist))
(define ns2 (map cdr column-name-alist))
(ensure-no-column-name-collisions! 'table-equi-join* t1 t2 (if discard-redundant? ns2 '()))
(define h1 (table-header* t1))
(define h2 (table-header* t2))
(define dep-index1 (make-dep-index/aggregates 'table-equi-join* t1 ns1))
(define dep-index2 (make-dep-index/aggregates 'table-equi-join* t2 ns2))
(define keep-col-specs (if discard-redundant?
(filter (lambda (c) (not (memq (table-column-name c) ns2)))
(table-header-columns h2))
(table-header-columns h2)))
(define keep-dep-index
(and discard-redundant?
(make-dep-index t2
(map table-column-name (filter table-column-positional? keep-col-specs)))))
(define i2 (index-rows-by t2 dep-index2))
(recompute-aggregates
(table (table-header (append (table-header-columns h1) keep-col-specs)
(extend-table-header-index h1 (filter table-column-positional?
keep-col-specs)))
(hasheq) ;; will be recomputed immediately
(for*/vector [(row1 (in-vector (table-body t1)))
(row2 (in-list
(reverse (hash-ref i2 (deref-dep-index row1 dep-index1) '()))))]
(vector-append row1
(if discard-redundant?
(list->vector (deref-dep-index row2 keep-dep-index))
row2))))))
(define-syntax-rule (table-equi-join table1 table2 [col-name1 col-name2] ...)
(table-equi-join* table1 table2 (list (cons 'col-name1 'col-name2) ...)))
(define (table-natural-join t1 t2)
(define mapping (for/list [(n (in-set (set-intersect (table-column-names t1)
(table-column-names t2))))]
(cons n n)))
(table-equi-join* t1 t2 mapping #:discard-redundant? #t))
;; sequence of rows
;; each row can be a sequence or a dict
;; column names must be supplied to work with sequence rows; may be omitted for dict rows
;; every value in a sequence row is turned into a column
;; if column names supplied, then only supplied names are extracted from dict rows
;; if column names not supplied, every name is extracted from dict rows
;; in all cases, every resulting row must have exactly the same columns available
(define (->table #:columns [col-names0 #f] raw-data)
(define col-names (or col-names0 (find-column-names raw-data)))
(define col-names-set (list->set col-names))
(table (simple-table-header (map table-column col-names))
(hasheq)
(for/vector [(raw-row raw-data)]
(cond
[(dict? raw-row)
(define ns (list->set (dict-keys raw-row)))
(when (not (equal? col-names-set ns))
(error '->table "Inconsistent column names: expected ~v, got ~v" col-names-set ns))
(for/vector [(n col-names)] (dict-ref raw-row n))]
[(sequence? raw-row)
(when (not col-names0)
(error '->table
"Explicit column names must be given to work with sequences as rows"))
(for/vector [(v raw-row)] v)]
[else
(error '->table "Unsupported raw row: ~v" raw-row)]))))
(define (find-column-names raw-data)
(define h
(for/or [(raw-row raw-data)]
(cond [(dict? raw-row) raw-row]
[(sequence? raw-row)
(error '->table
"Explicit column names must be given to work with sequences as rows")]
[else #f])))
(when (not h) (error '->table "Cannot infer column names"))
(sort (dict-keys h) table-value<?))
(define (table->hashes t)
(define col-specs (table-columns t))
(define col-names (map table-column-name col-specs))
(define dep-index (make-dep-index/aggregates 'table->hashes t col-names))
(for/list [(row (in-vector (table-body t)))]
(for/hash [(n (in-list col-names))
(v (in-list (deref-dep-index row dep-index)))]
(values n v))))
;; (define (struct->list* . accessors)
;; (lambda (s)
;; (for/list [(accessor (in-list accessors))] (accessor s))))
;; (structs->table struct:foo [field-name ...] (list (foo ...) (foo ...)))
(define (strings->table/rx r col-names strings #:strict? [strict? #t])
(table (simple-table-header (map table-column (filter symbol? col-names)))
(hasheq)
(for*/vector [(s strings)
(m (in-value (regexp-match r s)))
#:when (or m (if strict?
(error 'strings->table/rx "Regexp failed to match: ~v" s)
#f))]
(for/vector [(capture (in-list (cdr m)))
(name (in-list col-names))
#:when name]
capture))))
(define (csv-expr->table #:headings [headings0 #f] rows0)
(define guessing-headings? (not headings0))
(define headings (or headings0
(if (null? rows0)
(error 'csv-expr->table "Cannot guess headings when no rows present")
(car rows0))))
(define rows (if guessing-headings?
(cdr rows0)
rows0))
(define col-names (map (lambda (x) (string->symbol (~a x))) headings))
(define column-count (length col-names))
(table (simple-table-header (map table-column col-names))
(hasheq)
(for/vector [(row rows)]
(when (not (= (length row) column-count))
(error 'csv-expr->table "Ragged row; expected ~v columns, got: ~v" column-count row))
(list->vector row))))
(define (table->csv-expr t #:headings? [headings? #t])
(define col-specs (table-columns t))
(define col-names (map table-column-name col-specs))
(define dep-index (make-dep-index/aggregates 'table->csv-expr t col-names))
(define rows
(for/list [(row (in-vector (table-body t)))]
(deref-dep-index row dep-index)))
(if headings?
(cons col-names rows)
rows))
(define (pretty-print-table t [p (current-output-port)])
(define col-specs (table-columns t))
(define separator "|")
(define separator-width (string-length separator))
(define minimum-actual-allocation 8)
;; Rescales the column widths to try to conform to the given width limit.
(define (scale-widths requested-widths total-width-limit)
(define numbered-reqs (for/list [(i (in-naturals)) (w requested-widths)] (list w i)))
(define sorted-reqs (sort numbered-reqs #:key car <))
(define-values (_total-request sorted-reqs+totals)
(let loop ((reqs sorted-reqs))
(match reqs
['() (values 0 '())]
[(cons (list w i) reqs)
(define-values (total tail) (loop reqs))
(define next-total (+ total w separator-width))
(values next-total (cons (list w i next-total) tail))])))
(define scaled-reqs
(let loop ((reqs sorted-reqs+totals) (remaining-space total-width-limit))
(match reqs
['() '()]
[(cons (list w i total) reqs)
(if (>= remaining-space total)
(cons (list w i)
(loop reqs (- remaining-space w separator-width)))
(let ((allocation (if (< w minimum-actual-allocation)
w
(max minimum-actual-allocation
(floor (* w (/ remaining-space total)))))))
(cons (list allocation i)
(loop reqs (- remaining-space allocation separator-width)))))])))
(map car (sort scaled-reqs #:key cadr <)))
(define (column-width c)
(max (string-length (~a (table-column-name c)))
(if (table-column-aggregate? c)
(string-length (~v (hash-ref (table-aggregates t) (table-column-name c) "")))
(let ((i (hash-ref (table-index t) (table-column-name c))))
(for/fold [(acc 0)] [(row (in-vector (table-body t)))]
(max acc (string-length (~v (vector-ref row i)))))))))
(define widths (scale-widths (map column-width col-specs) (pretty-print-columns)))
(define (pad-or-truncate ->string v w k)
(define s (->string v))
(define len (string-length s))
(define padding (- w len))
(if (negative? padding)
(string-append (substring s 0 (max 0 (- w 2))) "..")
(k s padding)))
(define (centeralign ->string v w)
(pad-or-truncate
->string v w
(lambda (s padding)
(define left-padding (arithmetic-shift padding -1))
(define right-padding (- padding left-padding))
(string-append (make-string left-padding #\space) s (make-string right-padding #\space)))))
(define (leftalign ->string v w)
(pad-or-truncate
->string v w
(lambda (s padding)
(string-append s (make-string (max 0 padding) #\space)))))
(define ((output align ->string) v w)
(display (align ->string v w) p))
(define (output-columns o vs)
(for/fold [(need-sep? #f)] [(v vs) (w widths)]
(when need-sep? (display separator p))
(o v w)
#t)
(newline p))
(output-columns (output centeralign ~a) (map table-column-name col-specs))
(displayln (make-string (+ (* separator-width (- (length widths) 1))
(foldl + 0 widths))
#\-)
p)
(define dep-index (make-dep-index t (map table-column-name col-specs)))
(for [(row (in-vector (table-body t)))]
(output-columns (output leftalign ~v) (deref-dep-index row dep-index))))
(define (table->pretty-string t)
(define p (open-output-string))
(pretty-print-table t p)
(get-output-string p))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(module+ test
(require (only-in racket/string string-join))
(define my-table
(make-table [timestamp name age president]
["2016-01-01" "James McAvoy" 30 "Magneto"]
["2016-01-02" "Matt Murdock" 35 "Stick"]
["2016-01-03" "Shallan Davar" 20 "Stick"]))
(check-equal? (table->pretty-string my-table)
(string-join (list " timestamp | name |age|president"
"------------------------------------------"
"\"2016-01-01\"|\"James McAvoy\" |30 |\"Magneto\""
"\"2016-01-02\"|\"Matt Murdock\" |35 |\"Stick\" "
"\"2016-01-03\"|\"Shallan Davar\"|20 |\"Stick\" "
"")
"\n"))
(define world
(make-table [name gdp pop area]
["Atlantis" 1000 10 0]
["Amestris" 9999 1000 5000]
["Kamina City" 2000 9999 9999]))
(let ((extended-world (table-extend world [gdp pop area]
[gdp-per-pop (exact->inexact (/ gdp pop))]
[total-area + area]))
(check-world (make-table [name gdp pop area gdp-per-pop]
["Atlantis" 1000 10 0 100.0]
["Amestris" 9999 1000 5000 (exact->inexact (/ 9999 1000))]
["Kamina City" 2000 9999 9999 (exact->inexact (/ 2000 9999))])))
(check-equal? extended-world
(table-extend check-world [area] [total-area + area]))
(check-equal? (table-reject [total-area] extended-world)
check-world))
(check-equal? (table-select [name age] my-table)
(make-table [name age]
["James McAvoy" 30]
["Matt Murdock" 35]
["Shallan Davar" 20]))
(check-equal? (table-select [name age] my-table)
(make-table [age name]
[30 "James McAvoy"]
[35 "Matt Murdock"]
[20 "Shallan Davar"]))
(check-equal? (table-filter my-table [president] (equal? president "Stick"))
(make-table [timestamp name age president]
["2016-01-02" "Matt Murdock" 35 "Stick"]
["2016-01-03" "Shallan Davar" 20 "Stick"]))
(check-equal? (table-order my-table [age descending])
(make-table [timestamp name age president]
["2016-01-02" "Matt Murdock" 35 "Stick"]
["2016-01-01" "James McAvoy" 30 "Magneto"]
["2016-01-03" "Shallan Davar" 20 "Stick"]))
(check-equal? (table-column-ref 'name world)
(list "Atlantis" "Amestris" "Kamina City"))
(define emp (make-table [last-name department-id]
["Rafferty" 31]
["Jones" 33]
["Heisenberg" 33]
["Robinson" 34]
["Smith" 34]
["Williams" #f]))
(define dept (make-table [department-id department-name]
[31 "Sales"]
[33 "Engineering"]
[34 "Clerical"]
[35 "Marketing"]))
(check-equal? (table-cross-join emp (table-rename dept [d.department-id department-id]))
(make-table [last-name department-id d.department-id department-name]
["Rafferty" 31 31 "Sales"]
["Rafferty" 31 33 "Engineering"]
["Rafferty" 31 34 "Clerical"]
["Rafferty" 31 35 "Marketing"]
["Jones" 33 31 "Sales"]
["Jones" 33 33 "Engineering"]
["Jones" 33 34 "Clerical"]
["Jones" 33 35 "Marketing"]
["Heisenberg" 33 31 "Sales"]
["Heisenberg" 33 33 "Engineering"]
["Heisenberg" 33 34 "Clerical"]
["Heisenberg" 33 35 "Marketing"]
["Robinson" 34 31 "Sales"]
["Robinson" 34 33 "Engineering"]
["Robinson" 34 34 "Clerical"]
["Robinson" 34 35 "Marketing"]
["Smith" 34 31 "Sales"]
["Smith" 34 33 "Engineering"]
["Smith" 34 34 "Clerical"]
["Smith" 34 35 "Marketing"]
["Williams" #f 31 "Sales"]
["Williams" #f 33 "Engineering"]
["Williams" #f 34 "Clerical"]
["Williams" #f 35 "Marketing"]))
(let ((emp+dept-expected (make-table [last-name department-id department-name]
["Rafferty" 31 "Sales"]
["Jones" 33 "Engineering"]
["Heisenberg" 33 "Engineering"]
["Robinson" 34 "Clerical"]
["Smith" 34 "Clerical"])))
(check-equal? (table-equi-join emp (table-rename dept [d.department-id department-id])
[department-id d.department-id])
emp+dept-expected)
(check-equal? (table-natural-join emp dept)
emp+dept-expected))
)
| true |
d136e5062a6dbbfd85c5995fb933d8baa11ccd4f | 0884f0d8c2cd37d8e3a6687e462862e4063b9aa4 | /src/trove/plot.js.rkt | e8f27ab2e63c30f186d83cd13dfbc14aa161e778 | []
| no_license | brownplt/pyret-docs | 988becc73f149cbf2d14493c05d6f2f42e622130 | 6d85789a995abf8f6375cc7516406987315972d1 | refs/heads/horizon | 2023-08-17T03:32:51.329554 | 2023-08-10T20:44:14 | 2023-08-10T20:44:14 | 61,943,313 | 14 | 20 | null | 2023-09-12T20:40:41 | 2016-06-25T12:57:24 | Racket | UTF-8 | Racket | false | false | 14,428 | rkt | plot.js.rkt | #lang scribble/base
@(require "../../scribble-api.rkt" "../abbrevs.rkt")
@(require (only-in scribble/core delayed-block))
@(define (in-link T) (a-id T (xref "plot" T)))
@(define Color (a-id "Color" (xref "color" "Color")))
@(define Image (a-id "Image" (xref "image" "Image")))
@(define (t-field name ty) (a-field (tt name) ty))
@(define (t-record . rest)
(apply a-record (map tt (filter (lambda (x) (not (string=? x "\n"))) rest))))
@(append-gen-docs
`(module "plot"
(path "src/arr/trove/plot.arr")
(fun-spec (name "histogram") (arity 3))
(fun-spec (name "pie-chart") (arity 2))
(fun-spec (name "bar-chart") (arity 3))
(fun-spec (name "grouped-bar-chart") (arity 3))
(fun-spec (name "display-function") (arity 2))
(fun-spec (name "display-scatter") (arity 2))
(fun-spec (name "display-line") (arity 2))
(fun-spec (name "display-multi-plot") (arity 2))
(type-spec (name "PlotOptions"))
(type-spec (name "PlotWindowOptions"))
(data-spec
(name "Plot")
(variants ("line-plot" "scatter-plot" "function-plot")))
(constr-spec (name "line-plot"))
(constr-spec (name "scatter-plot"))
(constr-spec (name "function-plot"))
))
@docmodule["plot"]{
@margin-note{Note that the plot library has been completely rewritten as the @secref["chart"]
library to use Google Charts, which would allow us to support more features and more
types of charts easily. The current plot library will still be here for a period of time for those who
still use it, but we will not support it further.}
The Pyret Plot library. It consists of plot, chart, and data visualization tools.
The visualization will appear in a separate dialog window, and/or be returned
as an @pyret-id["Image" "image"].
@itemlist[
@item{To close the dialog, click the close button on the title bar or press @tt{esc}}
@item{To save a snapshot of the visualization, click the save button on the
title bar and choose a location to save the image}
]
Every function in this library is available on the @tt{plot} module object.
For example, if you used @pyret{import plot as P}, you would write
@pyret{P.display-function} to access @pyret{display-function} below. If you used
@pyret{include}, then you can refer to identifiers without needing to prefix
with @pyret{P.}
@;############################################################################
@section{The Plot Type}
(If you do not wish to customize the plotting, feel free to skip this section.
There will be a link referring back to this section when necessary)
@data-spec2["Plot" (list) (list
@constructor-spec["Plot" "function-plot" `(("f" ("type" "normal") ("contract" ,(a-arrow N N)))
("options" ("type" "normal") ("contract" ,(in-link "PlotOptions"))))]
@constructor-spec["Plot" "line-plot" `(("points" ("type" "normal") ("contract" ,TA))
("options" ("type" "normal") ("contract" ,(in-link "PlotOptions"))))]
@constructor-spec["Plot" "scatter-plot" `(("points" ("type" "normal") ("contract" ,TA))
("options" ("type" "normal") ("contract" ,(in-link "PlotOptions"))))])]
@nested[#:style 'inset]{
@constructor-doc["Plot" "function-plot" (list `("f" ("type" "normal") ("contract" ,(a-arrow N N)))
`("options" ("type" "normal") ("contract" ,(in-link "PlotOptions")))) (in-link "Plot")]{
A graph of a function of one variable.
@member-spec["f" #:type "normal" #:contract (a-arrow N N)]{
A function to be graphed. The function doesn't need to be total:
it can yield an error for some @pyret{x} (such as division by zero
or resulting in an imaginary number).
}
@member-spec["options" #:type "normal" #:contract (in-link "PlotOptions")]
}
@constructor-doc["Plot" "line-plot" `(("points" ("type" "normal") ("contract" ,TA))
("options" ("type" "normal") ("contract" ,(in-link "PlotOptions")))) (in-link "Plot")]{
A line plot or line chart, used to display "information as a series of data points called `markers'
connected by straight line segments." (see @url["https://en.wikipedia.org/wiki/Line_chart"])
@member-spec["points" #:type "normal" #:contract TA]{
A table of two columns: @t-field["x" N] and @t-field["y" N]
Because two consecutive data points will be connected by a line segment as they are,
the rows of the table should have been sorted by the x-value.
}
@member-spec["options" #:type "normal" #:contract (in-link "PlotOptions")]
}
@constructor-doc["Plot" "scatter-plot" `(("points" ("type" "normal") ("contract" ,TA))
("options" ("type" "normal") ("contract" ,(in-link "PlotOptions")))) (in-link "Plot")]{
A scatter plot or scatter chart, used "to display values for two variables for a set of data."
(see @url["https://en.wikipedia.org/wiki/Scatter_plot"])
@member-spec["points" #:type "normal" #:contract TA]{
A table of two columns: @t-field["x" N] and @t-field["y" N].
The order of rows in this table does not matter.
}
@member-spec["options" #:type "normal" #:contract (in-link "PlotOptions")]
}
}
@examples{
my-plot = function-plot(lam(x): num-sqrt(x + 1) end, default-options)
}
@;############################################################################
@section{Plot Functions}
All plot functions will populate a dialog with controllers (textboxes and buttons)
on the right which can be used to change the window boundaries and number of sample points.
To zoom in at a specific region, you can click and drag on the plotting
region. To zoom out, press @tt{shift} and click on the plotting region.
To reset to the initial window boundaries, simply click on the plotting
region.
All changes by the controllers will not take an effect until the redraw button
is pressed.
The window boundaries could be any kind of real number (e.g., fraction, roughnum).
However, when processing, it will be converted to a decimal number.
For example, @pyret{1/3} will be converted to @pyret{0.3333...33} which
is actually @pyret{3333...33/10000...00}. This incurs the numerical imprecision,
but allows us to read the number easily.
For function plot, we make a deliberate decision to show points (the tendency of the function)
instead of connecting lines between them. This is to avoid the problem of inaccurate plotting
causing from, for example, discontinuity of the function, or a function which oscillates infinitely.
@function["display-multi-plot"
#:contract (a-arrow (L-of (in-link "Plot"))
(in-link "PlotWindowOptions")
Image)
#:args '(("lst" #f) ("options" #f))
#:return Image
]{
Display all @pyret-id{Plot}s in @pyret{lst} on a window with the configuration
from @pyret{options}.
@examples{
import color as C
p1 = function-plot(lam(x): x * x end, _.{color: C.red})
p2 = line-plot(table: x :: Number, y :: Number
row: 1, 1
row: 2, 4
row: 3, 9
row: 4, 16
end, _.{color: C.green})
display-multi-plot(
[list: p1, p2],
_.{
title: 'quadratic function and a scatter plot',
x-min: 0,
x-max: 20,
y-min: 0,
y-max: 20
})
}
The above example will plot a function @tt{y = x^2} using red color, and show
a line chart connecting points in the table using green color. The left, right,
top, bottom window boundary are 0, 20, 0, 20 respectively.
}
@function["display-function"
#:contract (a-arrow S (a-arrow N N) Image)
#:args '(("title" #f) ("f" #f))
#:return Image
]{
A shorthand to construct an @in-link{function-plot} with default options and then
display it. See @in-link{function-plot} for more information.
@examples{
NUM_E = ~2.71828
display-function('converge to 1', lam(x): 1 - num-expt(NUM_E, 0 - x) end)
}
}
@function["display-line"
#:contract (a-arrow S TA Image)
#:args '(("title" #f) ("tab" #f))
#:return Image
]{
A shorthand to construct a @in-link{line-plot} with default options and then
display it. See @in-link{line-plot} for more information.
@examples{
display-line('My line', table: x, y
row: 1, 2
row: 2, 10
row: 2.1, 3
row: 2.4, 5
row: 5, 1
end)
}
}
@function["display-scatter"
#:contract (a-arrow S TA Image)
#:args '(("title" #f) ("tab" #f))
#:return Image
]{
A shorthand to construct a @in-link{scatter-plot} with default options and then
display it. See @in-link{scatter-plot} for more information.
@examples{
display-scatter('My scatter plot', table: x, y
row: 1, 2
row: 1, 3.1
row: 4, 1
row: 7, 3
row: 4, 6
row: 2, 5
end)
}
}
@;############################################################################
@section{Visualization Functions}
@function["histogram"
#:contract (a-arrow TA N (in-link "PlotWindowOptions") Image)
#:args '(("tab" #f) ("n" #f) ("options" #f))
#:return Image
]{
Display a histogram with @pyret{n} bins using data from @pyret{tab}
which is a table with one column: @t-field["value" N].
The range of the histogram is automatically inferred from the data.
@examples{
histogram(table: value :: Number
row: 1
row: 1.2
row: 2
row: 3
row: 10
row: 3
row: 6
row: -1
end, 4, _.{title: "A histogram with 4 bins"})
}
}
@function["pie-chart"
#:contract (a-arrow TA (in-link "PlotWindowOptions") Image)
#:args '(("tab" #f) ("options" #f))
#:return Image
]{
Display a pie chart using data from @pyret{tab} which is a table with two columns:
@t-field["label" S] and @t-field["value" N].
@examples{
pie-chart(table: label, value
row: 'EU', 10.12
row: 'Asia', 93.1
row: 'America', 56.33
row: 'Africa', 101.1
end, _.{title: "A pie chart"})
}
}
@function["bar-chart"
#:contract (a-arrow TA (in-link "PlotWindowOptions") Image)
#:args '(("tab" #f) ("options" #f))
#:return Image
]{
Display a bar chart using data from @pyret{tab} which is a table with two columns:
@t-field["label" S] and @t-field["value" N].
@examples{
bar-chart(
table: label, value
row: 'A', 11
row: 'B', 1
row: 'C', 3
row: 'D', 4
row: 'E', 9
row: 'F', 3
end, _.{title: 'Frequency of letters'})
}
}
@function["grouped-bar-chart"
#:contract (a-arrow TA (L-of S) (in-link "PlotWindowOptions") Image)
#:args '(("tab" #f) ("legends" #f) ("options" #f))
#:return Image
]{
Display a bar chart using data from @pyret{tab} which is a table with two columns:
@t-field["label" S] and @t-field["values" (L-of N)]. @pyret{legends} indicates the legends
of the data where the first value of the table column @pyret{values} corresponds to the first legend
in @pyret{legends}, and so on.
}
@examples{
grouped-bar-chart(
table: label, values
row: 'CA', [list: 2704659, 4499890, 2159981, 3853788, 10604510, 8819342, 4114496]
row: 'TX', [list: 2027307, 3277946, 1420518, 2454721, 7017731, 5656528, 2472223]
row: 'NY', [list: 1208495, 2141490, 1058031, 1999120, 5355235, 5120254, 2607672]
row: 'FL', [list: 1140516, 1938695, 925060, 1607297, 4782119, 4746856, 3187797]
row: 'IL', [list: 894368, 1558919, 725973, 1311479, 3596343, 3239173, 1575308]
row: 'PA', [list: 737462, 1345341, 679201, 1203944, 3157759, 3414001, 1910571]
end, [list:
'Under 5 Years',
'5 to 13 Years',
'14 to 17 Years',
'18 to 24 Years',
'25 to 44 Years',
'45 to 64 Years',
'65 Years and Over'],
_.{title: 'Populations of different states by age group'})
}
@;############################################################################
@section{The Options Types and Default Values}
The @pyret{PlotOptions} and @pyret{PlotWindowOptions} type is actually a function type
which consumes a default config and produces a desired config.
To use a default config, you could construct
@pyret-block{lam(default-configs): default-configs end}
which consumes a default config and merely returns it. We provide a value
@pyret{default-options} which is the polymorphic identity function for convenience, which has both type @pyret{PlotOptions} and @pyret{PlotWindowOptions}
A new Options can be constructed by the using @secref["s:extend-expr"] on
the default config.
@pyret-block{
new-options = lam(default-configs): default-configs.{val1: ..., val2: ...} end
}
Combining the @secref["s:extend-expr"] with the @secref["s:curried-apply-expr"],
the above can be rewritten as:
@pyret-block{
new-options = _.{val1: ..., val2: ...}
}
@type-spec["PlotOptions" '()]{
A config associated with @pyret-id{PlotOptions} consists of the following fields:
@a-record[(t-field "color" Color)]
The default config is @t-record{color: blue}
@examples{
import color as C
my-plot-options-1 = _.{color: C.red}
my-plot-options-2 = default-options
}
}
@type-spec["PlotWindowOptions" '()]{
A config associated with @pyret-id{PlotWindowOptions} consists of the following fields:
@a-record[(t-field "x-min" N)
(t-field "x-max" N)
(t-field "y-min" N)
(t-field "y-max" N)
(t-field "num-samples" N)
(t-field "infer-bounds" B)
(t-field "interact" B)
(t-field "title" S)]
The default config is
@t-record{x-min: -10
x-max: 10
y-min: -10
y-max: 10
num-samples: 1000
infer-bounds: false
interact: true
title: ""
}
If @pyret{infer-bounds} is true,
@pyret{x-min}, @pyret{x-max}, @pyret{y-min}, @pyret{y-max} will be inferred,
and old values will be overwritten.
@pyret{num-samples} is to control the number of sample points for
@in-link{function-plot}s.
@pyret{title} is displayed at the top of the plot window.
@pyret{interact}, when @pyret{true} (the default) shows a separate window
containing the plot. When @pyret{false}, the window does not appear; this is
useful for simply getting an @pyret-id["Image" "image"] from the plot.
}
}
| false |
7ca66e66e3ad9861971e571c36e3cf3247493c21 | e553691752e4d43e92c0818e2043234e7a61c01b | /rosette/guide/scribble/datatypes/defined-datatypes.scrbl | 5cfc16e7c5ae20093266e7d6d838349b48a22b37 | [
"BSD-2-Clause"
]
| permissive | emina/rosette | 2b8c1bcf0bf744ba01ac41049a00b21d1d5d929f | 5dd348906d8bafacef6354c2e5e75a67be0bec66 | refs/heads/master | 2023-08-30T20:16:51.221490 | 2023-08-11T01:38:48 | 2023-08-11T01:38:48 | 22,478,354 | 656 | 89 | NOASSERTION | 2023-09-14T02:27:51 | 2014-07-31T17:29:18 | Racket | UTF-8 | Racket | false | false | 4,925 | scrbl | defined-datatypes.scrbl | #lang scribble/manual
@(require (for-label
rosette/base/form/define rosette/query/query
rosette/base/core/term (only-in rosette/base/base assert)
racket racket/generic)
scribble/core scribble/html-properties scribble/examples racket/sandbox racket/runtime-path
"../util/lifted.rkt")
@(define-runtime-path root ".")
@(define rosette-eval (rosette-log-evaluator (logfile root "defined-datatypes-log")))
@(define prop-facilities (select '(make-struct-type-property struct-type-property? struct-type-property-accessor-procedure?)))
@(define props (select '(prop:arity-string prop:blame prop:chaperone-contract prop:chaperone-unsafe-undefined prop:checked-procedure prop:contract prop:contracted prop:custom-print-quotable prop:custom-write prop:dict prop:dict/contract prop:equal+hash prop:evt prop:exn:missing-module prop:exn:srclocs prop:flat-contract prop:impersonator-of prop:input-port prop:legacy-match-expander prop:liberal-define-context prop:match-expander prop:output-port prop:place-location prop:procedure prop:provide-pre-transformer prop:provide-transformer prop:rename-transformer prop:require-transformer prop:sequence prop:serializable prop:set!-transformer prop:stream prop:struct-auto-info prop:struct-info)))
@(define generics-facilities (select '(define-generics raise-support-error exn:fail:support define/generic generic-instance/c impersonate-generics chaperone-generics redirect-generics )))
@(define generics (select '(gen:custom-write gen:dict gen:equal+hash gen:set gen:stream)))
@title[#:tag "ch:programmer-defined-datatypes" #:style 'toc]{Structures}
In addition to @tech[#:key "lifted constructs"]{lifting} many
@seclink["ch:built-in-datatypes"]{built-in datatypes}
to work with symbolic values, Rosette also lifts Racket's
@racketlink[struct]{structures}.
As in Racket, a structure is an instance of a @deftech{structure type}---a
record datatype with zero or more fields.
Structure types are defined using the @racket[struct] syntax. Defining a
structure type in this way also defines the necessary procedures for
creating instances of that type and for accessing their fields.
@examples[#:eval rosette-eval #:label #f
(struct point (x y) #:transparent) (code:comment "Immutable transparent type.")
(struct pt (x y)) (code:comment "Opaque immutable type.")
(struct pnt (x y) #:mutable #:transparent) (code:comment "Mutable transparent type.")]
Rosette structures can be concrete or symbolic. Their semantics matches that of Racket,
with one important exception: immutable transparent structures are treated as values
rather than references. This @seclink["sec:equality"]{means} that two such structures are
@racket[eq?] if they belong to the same type and their corresponding field values are @racket[eq?].
Structures of opaque or mutable types are treated as references. Two such structures are
@racket[eq?] only if the point to the same instance of the same type.
@examples[#:eval rosette-eval #:label #f
(code:line (eq? (point 1 2) (point 1 2)) (code:comment "point structures are values."))
(code:line (eq? (pt 1 2) (pt 1 2)) (code:comment "pt structures are references."))
(code:line (eq? (pnt 1 2) (pnt 1 2)) (code:comment "pnt structures are references."))]
Like @tech[#:key "unsolvable type"]{unsolvable built-in datatypes},
symbolic structures cannot be created using @racket[define-symbolic]. Instead,
they are created implicitly, by, for example, using an @racket[if] expression
together with a symbolic value.
@examples[#:eval rosette-eval #:label #f
(define-symbolic b boolean?)
(code:line (define p (if b (point 1 2) (point 3 4))) (code:comment "p holds a symbolic structure."))
(point-x p)
(point-y p)
(define sol (solve (assert (= (point-x p) 3))))
(evaluate p sol)]
As well as lifting the @racket[struct] syntax, Rosette also lifts the following structure
properties, generic interfaces, and facilities for defining new properties and interfaces:
@tabular[#:style (style #f (list (attributes '((id . "lifted")(class . "boxed")))))
(list (list @elem{Defining Properties} @elem{@prop-facilities})
(list @elem{Lifted Properties} @elem{@props})
(list @elem{Defining Generics} @elem{@generics-facilities})
(list @elem{Lifted Generics} @elem{@generics} ))]
Lifted generics work as expected with symbolic values:
@examples[#:eval rosette-eval #:label #f
(define-generics viewable (view viewable))
(struct square (side)
#:methods gen:viewable
[(define (view self) (square-side self))])
(struct circle (radius)
#:transparent
#:methods gen:viewable
[(define (view self) (circle-radius self))])
(define-symbolic b boolean?)
(code:line (define p (if b (square 2) (circle 3))) (code:comment "p holds a symbolic structure."))
(view p)
(define sol (solve (assert (= (view p) 3))))
(evaluate p sol)]
@(kill-evaluator rosette-eval) | false |
ed5d0283aa8e05c6546f6045cd0fb0740b56be10 | 42ec6777fd22f1f60e713797f4ad5504feb7ffea | /langs/lang5.rkt | 95d93f0541d5d318ddaaa10bc319010ceb66ba44 | []
| no_license | hacklash/compilers-zanova | e79aae46c21d112b17e7a5d9221f3e53772b67b9 | 97f0e8402006509cb60b753f501141edb17b581f | refs/heads/master | 2021-01-02T08:19:11.715508 | 2014-05-27T01:05:07 | 2014-05-27T01:05:07 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 8,466 | rkt | lang5.rkt | #lang racket/base
(require racket/contract
racket/match
racket/list
plai/datatype
"../substitution-cipher.rkt"
(prefix-in x86: "asm.rkt"))
#| Add (define app). Functions don't return
P = (D ... K) | K
D = (define (<id> <id> ...4) K)
K = (app <id> E ...4) | (if0 E K K) | E
E = <id> | <num> | (<binop> E E) | (<unaop> E)
<binop> = + | - | bitwise-and | bitwise-ior | bitwise-xor
| * | quotient | remainder
| = | < | <= | > | >=
<unaop> = add1 | sub1 | bitwise-not
<id> = [^ ()[]{}",'`:#\| ]+ and not a reserved word
|#
(define (valid-id? pid) ;XX enforce slightly stricter than racket symbols
#;(and (regexp-match? #rx"[^\\(\\)\\[\\]{}\\\",'`;#\\|\\\\]+"
(symbol->string pid)))
(and (symbol? pid)
(not (or (unaop? pid) (binop? pid) (eq? 'if0 pid)
(eq? 'define pid) (eq? 'app pid)))))
(define-type E
[Num (n number?)]
[Binop (op binop-src?) (lhs E?) (rhs E?)]
[Unaop (opor unaop-src?) (opand E?)]
[Id (i valid-id?)])
(define-type K
[App
(function Id?)
(inputs (listof E?))]
[If0 (test E?) (trueb K?) (falsb K?)]
[Return (e E?)])
(define-type D
[Def
(naming Id?)
(variables (ฮป (vs) (andmap Id? vs)))
(body K?)])
(define-type P
[Program
(defines (ฮป (ds) (andmap D? ds)))
(body K?)]
[P-K (k K?)])
(define (binop-src->asm-helper ->asm)
(match-lambda*
[(list x86:eax (? x86:register? r))
(->asm r)]))
(define (cmpop->asm op)
(binop-src->asm-helper
(ฮป (r)
(x86:seqn
(x86:cmp x86:eax r)
#;(x86:mov x86:eax 0)
(op x86:al)))))
(define (cmpop->rkt op)
(match-lambda* [(list l r) (if (op l r) 1 0)]))
(define-subst-cipher
binop
[src rkt asm]
['+ + x86:add]
['- - x86:sub]
['bitwise-and bitwise-and x86:and]
['bitwise-ior bitwise-ior x86:or]
['bitwise-xor bitwise-xor x86:xor]
['* * (binop-src->asm-helper x86:imul)]
['quotient quotient (binop-src->asm-helper x86:idiv)]
['remainder remainder (binop-src->asm-helper
(ฮป (r)
(x86:seqn
(x86:idiv r)
(x86:mov x86:eax x86:edx))))]
['= (cmpop->rkt =) (cmpop->asm x86:sete)]
['< (cmpop->rkt <) (cmpop->asm x86:setl)]
['<= (cmpop->rkt <=) (cmpop->asm x86:setle)]
['> (cmpop->rkt >) (cmpop->asm x86:setg)]
['>= (cmpop->rkt >=) (cmpop->asm x86:setge)])
(define-subst-cipher
unaop
[src rkt asm]
['add1 add1 x86:inc]
['sub1 sub1 x86:dec]
['bitwise-not bitwise-not x86:not])
(define parse-p
(match-lambda
[(list (and (list 'define _ _) defs) ... app-body)
(Program (map parse-d defs) (parse-k app-body))]
[k-expr (P-K (parse-k k-expr))]))
(define parse-d
(match-lambda
[(list 'define (list (? valid-id? the-id) (? valid-id? ids) ...) body)
(Def (Id the-id) (map Id ids) (parse-k body))]))
(define parse-k
(match-lambda
[(list 'app (? valid-id? fid) params ...)
(App (Id fid) (map parse-e params))]
[(list 'if0 test trueb falsb)
(If0 (parse-e test) (parse-k trueb) (parse-k falsb))]
[expr (Return (parse-e expr))]))
(define parse-e
(match-lambda
[(list (? binop-src? operator) lhs rhs)
(Binop operator (parse-e lhs) (parse-e rhs))]
[(list (? unaop-src? operator) operand)
(Unaop operator (parse-e operand))]
[(? byte? b)
(Num b)]
[(? valid-id? i)
(Id i)]))
(define (Id-name e)
(type-case E e
[Id (i) i]
[Num (b) (error)][Unaop (r d) (error)][Binop (o l r) (error)]))
(define (Def-name d)
(type-case D d [Def (naming vars body) naming]))
(define (Def-vars d)
(type-case D d [Def (naming vars body) vars]))
(define end-label (x86:make-label 'program-end))
(define stack-offset (make-parameter 0))
(define to-asm (ฮป (pp) (p->asm pp (hash))))
(define (p->asm pp gamma)
(type-case P pp
[Program
(defs body)
(let ([g
(for/fold ([gm gamma])
([def defs])
(hash-set gm
(Def-name def)
(x86:make-label
(Id-name (Def-name def)))))])
(x86:seqn
(k->asm body g empty)
(apply x86:seqn
(for/list ([def defs])
(x86:seqn
(x86:label-mark (hash-ref g (Def-naming def)))
(d->asm def g))))
(x86:label-mark end-label)))]
[P-K (k) (x86:seqn (k->asm k gamma empty) (x86:label-mark end-label))]))
(define (d->asm pp gamma)
(type-case D pp
[Def
(naming vars body)
(k->asm body
(for/fold ([g gamma])
([v vars]
[n (in-naturals)])
(hash-set g v (cons 'stack-pos n)))
vars)]))
(define (k->asm pp gamma old-args)
(type-case K pp
[If0
(test trueb falsb)
(let ([falsb-start (x86:make-label 'falsb-start)])
(x86:seqn
(e->asm test gamma)
(x86:cmp x86:eax 0)
(x86:jne falsb-start)
(k->asm trueb gamma old-args)
(x86:label-mark falsb-start)
(k->asm falsb gamma old-args)))]
[App
(function inputs)
(x86:seqn
;; calculate and place on the stack the value of each input
(apply x86:seqn
(for/list ([i (reverse inputs)]
[so (in-naturals)])
(x86:seqn
(parameterize ([stack-offset so])
(e->asm i gamma))
(x86:push x86:eax))))
(if (> (length old-args) 0)
(x86:seqn
(x86:comment "Trim the old function variables from the stack")
(apply x86:seqn
(for/list ([i (in-range (sub1 (length inputs)) -1 -1)])
(x86:seqn (x86:mov x86:eax (x86:esp+ (* 4 i)))
(x86:mov (x86:esp+
(* 4 (+ i (length old-args))))
x86:eax))))
(x86:add x86:esp
(* 4 (length old-args))));sub if stack grows other way
(x86:seqn))
(x86:jmp (hash-ref gamma function)))]
[Return (e) (x86:seqn (e->asm e gamma) (x86:jmp end-label))]))
(define (e->asm pp gamma)
(type-case E pp
[Binop
(op lhs rhs)
(x86:seqn
(x86:push x86:ebx)
(parameterize ([stack-offset (add1 (stack-offset))])
(x86:seqn
(e->asm rhs gamma)
(x86:mov x86:ebx x86:eax)
(e->asm lhs gamma)
((binop-src->asm op) x86:eax x86:ebx)))
(x86:pop x86:ebx))]
[Unaop
(operator operand)
(x86:seqn
(e->asm operand gamma)
((unaop-src->asm operator) x86:eax))]
[Num
(b)
(x86:seqn
(x86:mov x86:eax b))]
[Id
(i)
(x86:seqn
(x86:mov x86:eax
(match-let ([(cons 'stack-pos sp) (hash-ref gamma (Id i))])
(x86:esp+ (* 4 (+ sp (stack-offset)))))))]))
(define (interp pp) (interp-p pp (hash)))
(define (interp-p pp gamma)
(type-case P pp
[Program
(defs body)
(interp-k body
(for/fold ([g gamma])
([def defs])
(hash-set g (Def-naming def) def)))]
[P-K (k) (interp-k k gamma)]))
(define (interp-k pp gamma)
(type-case K pp
[If0
(test trueb falsb)
(if (= 0 (interp-e test gamma))
(interp-k trueb gamma)
(interp-k falsb gamma))]
[App
(function inputs)
(let ([fd (hash-ref gamma function)])
(interp-k (Def-body fd)
(for/fold ([g gamma])
([var (Def-variables fd)]
[val (map (ฮป (i) (interp-e i gamma)) inputs)])
(hash-set g var val))))]
[Return (e) (interp-e e gamma)]))
(define (interp-e pp gamma)
(type-case E pp
[Binop
(opor lhs rhs)
((binop-src->rkt opor)
(interp-e lhs gamma)
(interp-e rhs gamma))]
[Unaop
(opor opand)
((unaop-src->rkt opor)
(interp-e opand gamma))]
[Num (b) b]
[Id (i) (let ([v (hash-ref gamma (Id i))])
(if (E? v) (interp-e v gamma) v))]))
(provide
(contract-out
[rename parse-p parse (-> any/c P?)]
[to-asm (-> P? x86:asm?)]
[interp (-> P? any/c)])) | false |
11a04a4487b323e8c7d4596bb5f35cb483feb7b3 | 9900dac194d9e0b69c666ef7af5f1885ad2e0db8 | /IndexTypes.rkt | 847c7d792045818d4fc9b80c7078057aabf6e3d8 | []
| no_license | atgeller/Wasm-prechk | b1c57616ce1c7adbb4b9a6e1077aacfa39536cd2 | 6d04a5474d3df856cf8af1877638b492ca8d0f33 | refs/heads/canon | 2023-07-20T10:58:28.382365 | 2023-07-11T22:58:49 | 2023-07-11T22:58:49 | 224,305,190 | 5 | 1 | null | 2021-07-01T18:09:17 | 2019-11-26T23:34:11 | Racket | UTF-8 | Racket | false | false | 2,582 | rkt | IndexTypes.rkt | #lang racket
(require redex/reduction-semantics "WASM-Redex/Syntax.rkt")
(provide WASMIndexTypes)
(define-extended-language WASMIndexTypes WASM
(ibinop ::= .... div-u/unsafe div-s/unsafe rem-u/unsafe rem-s/unsafe)
(e ::= .... (call-indirect/unsafe tfiann)
(t load/unsafe a o) (t load/unsafe (tp sx) a o)
(t store/unsafe a o) (t store/unsafe tp a o)
(if tf (e ...) else (e ...)) (block tf (e ...)) (loop tf (e ...)))
;; Index language
(ivar ::= variable-not-otherwise-mentioned)
(x y ::= ivar (t c) ((t binop) x y) ((t testop) x) ((t relop) x y) ((t cvtop t) x) ((t cvtop t sx) x))
(P ::= (= x y) (if P P P) (not P) (and P P) (or P P) (valid-address ivar o n n) โฅ)
(ฯ ::= empty (ฯ P))
(ฮ ::= empty (ฮ ti))
(ti ::= (t ivar))
;; Instruction index types
(locals ::= (ti ...))
;; Index-type pre/post-condition: types on stack, locals, and constraint context
(ticond ::= ((ti ...) locals ฮ ฯ))
(labelty ::= ((ti ...) locals ฯ))
(retty ::= ((ti ...) ฯ))
;; Function annotation
(tfiann ::= (retty -> retty))
(tfi ::= (ticond -> ticond))
;; Indexed module contexts
(C ::= ((func tfiann ...) (global tg ...) (table (j tfiann ...)) (memory j) (local t ...) (label labelty ...) (return retty))
((func tfiann ...) (global tg ...) (table (j tfiann ...)) (memory j) (local t ...) (label labelty ...) (return))
((func tfiann ...) (global tg ...) (table (j tfiann ...)) (memory) (local t ...) (label labelty ...) (return retty))
((func tfiann ...) (global tg ...) (table (j tfiann ...)) (memory) (local t ...) (label labelty ...) (return))
((func tfiann ...) (global tg ...) (table) (memory j) (local t ...) (label labelty ...) (return retty))
((func tfiann ...) (global tg ...) (table) (memory j) (local t ...) (label labelty ...) (return))
((func tfiann ...) (global tg ...) (table) (memory) (local t ...) (label labelty ...) (return retty))
((func tfiann ...) (global tg ...) (table) (memory) (local t ...) (label labelty ...) (return)))
(S ::= ((C ...) (table ((j (tfiann ...)) ...)) (memory (j ...))))
;; Module-level indexed declarations
(f ::= ((ex ...) (func tfiann (local (t ...) (e ...))))
((ex ...) (func tfiann im)))
(glob ::= ((ex ...) (global tg (e ...)))
((ex ...) (global tg im)))
(tab ::= ((ex ...) (table n i ...))
((ex ...) (table n im tfi ...)))
(mem ::= ((ex ...) (memory n))
((ex ...) (memory n im)))
(im ::= (import string string))
(ex ::= (export string))
(mod ::= (module (f ...) (glob ...) (tab ...) (mem ...))))
| false |
6225d1f43b6e08e70d40517641fe2d7bec38d2bc | cf32cf2d0be992b2b2e727990b6462544d26a9e4 | /odysseus/tests/type_test.rkt | ce61006f1b14341e77cfb1020c7df1dd11ad4d91 | [
"MIT-0"
]
| permissive | prozion/odysseus | ba4a89fd09d19ec1385a28211d2ca51857d84840 | 2afc96ba60fd8b50d54ce94eb27dd7ce92525360 | refs/heads/master | 2023-08-10T01:09:08.608491 | 2023-07-23T20:26:18 | 2023-07-23T20:26:18 | 319,242,860 | 1 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 4,830 | rkt | type_test.rkt | #lang racket
(require rackunit)
(require "../type.rkt")
(check-pred scalar? 1)
(check-pred scalar? 0.3)
(check-pred scalar? "key")
(check-pred scalar? 'key)
(check-equal? (scalar? '()) #f)
(check-equal? (scalar? (list 1)) #f)
(check-equal? (scalar? (hash)) #f)
(check-equal? (scalar? (hash 'a 1 'b 2)) #f)
(check-true (true-sequence? '()))
(check-true (true-sequence? '(1 2)))
(check-true (true-sequence? (hash 'a 10)))
(check-true (true-sequence? #(1 2 3)))
(check-false (true-sequence? 5))
(check-false (true-sequence? 'a))
(check-true (not-empty-list? '(1)))
(check-false (not-empty-list? '()))
(check-true (one-element? '(1)))
(check-true (one-element? '((1))))
(check-false (one-element? '(1 2)))
(check-false (one-element? '()))
(check-false (one-element? 'a))
(check-false (one-element? 10))
(check-false (more-than-one-element? '(3)))
(check-true (more-than-one-element? '(3 4)))
(check-false (more-than-one-element? #f))
(check-pred simple-cons? (cons 1 2))
(check-equal? (simple-cons? (list 1 2)) #f)
(check-equal? (simple-cons? (list 1)) #f)
(check-equal? (simple-cons? (list)) #f)
(check-pred cons-ext? (cons 1 2))
(check-equal? (cons-ext? (list 1 2)) #t)
(check-equal? (cons-ext? (list 1)) #t)
(check-equal? (cons-ext? (list)) #f)
(check-pred list2? '(()))
(check-pred list2? '((1)))
(check-pred list2? '((1 2 3 4)))
(check-pred list2? '((1 2 3 4) (3 4 5) (8 9)))
(check-pred list2? '(((9))))
(check-pred list2? '((1 2 3 4) ((3 4 5) (8 9))))
(check-false (list2? '((1 2 3 4) (3 4 5) 10 (8 9))))
(check-true (plain-list? '(1 2 3 4 5)))
(check-true (plain-list? '()))
(check-true (plain-list? (list (hash 'a 10) (hash 'b 20 'c 30))))
(check-true (plain-list? (list (hash (quote aa) 2) (hash (quote bb) 4 (quote cc) 8))))
(check-false (plain-list? '(())))
(check-false (plain-list? '(1 2 3 () 4 5)))
(check-false (plain-list? '(1 2 3 (4 5) 4 5)))
(check-false (plain-list? '(1 2 3 4 (5))))
(check-false (plain-list? '(((1)) 2 3 4 5)))
(check-false (plain-list? #f))
(check-false (plain-list? (list (cons 1 2) (cons 1 3))))
(check-pred list-of-simple-cons? (list (cons 1 2) (cons 4 5)))
(check-equal? (list-of-simple-cons? (list (cons 1 2) (cons 4 5) 10)) #f)
(check-equal? (list-of-simple-cons? '((1 2) (4 5))) #f)
(check-equal? (type '()) 'list)
(check-equal? (type 3) 'number)
(check-equal? (type #t) 'boolean)
(check-equal? (type "a str") 'string)
(check-equal? (type #"a str") 'bytes)
(check-equal? (type '((a 10) (b 20))) 'alist)
(check-equal? (type (list (cons 1 2) (cons 3 4))) 'list-of-cons)
(check-equal? (type '((a 10) (b 20 30))) 'list2)
(check-equal? (type (list '(a 10) '(b 20 30) null)) 'list2)
(check-equal? (type '((a 10) (b 20 30) 3)) 'list)
(check-equal? (type '(1 2 3)) 'list)
(check-equal? (type (cons 1 2)) 'pair)
(check-equal? (type #\a) 'char)
(check-equal? (type #\ฮป) 'char)
(check-equal? (type #\u0011) 'char)
(check-equal? (type 'a) 'symbol)
(check-equal? (type (ฮป (x) x)) 'procedure)
(check-equal? (type odd?) 'procedure)
(check-equal? (type #'(+ 1 2)) 'syntax)
(check-equal? (type #(1 2 3)) 'vector)
(check-equal? (type (hash 'a 10 'b 20)) 'hash)
(check-equal? (type (current-directory)) 'path)
(check-equal? (->number 123) 123)
(check-equal? (->number 123.789) 123.789)
(check-equal? (->number "123a") 123)
(check-equal? (->number "a123") 123)
(check-= (->number "123.54") 123.54 1e-5)
(check-= (->number "123,54") 123.54 1e-5)
(check-= (->number "2ย 850,40") 2850.4 1e-5)
(check-equal? (->number #f) #f)
(check-equal? (->number "#f") #f)
(check-equal? (->number "abc") #f)
(check-equal? (->number "0") 0)
(check-equal? (->number "00") 0)
(check-equal? (->number "~10") 10)
(check-equal? (->number ">10") 10)
(check-equal? (->number "<10") 10)
(check-equal? (->string "00") "00")
(check-equal? (->string 100) "100")
(check-equal? (->string 'a) "a")
(check-equal? (->string '()) "")
(check-equal? (->string '(a b c)) "abc")
(check-equal? (->int "3.5") 3)
(check-equal? (->int "00") 0)
(check-equal? (->int 3.5) 3)
(check-equal? (->int "3,5") 3)
(check-equal? (->int "3") 3)
(check-equal? (->int "2ย 850,40") 2850)
(check-true (atom? 3))
(check-true (atom? "abcdef"))
(check-false (atom? (cons 1 2)))
(check-pred alist? '((a 10) (b 20)))
(check-pred alist? '((a 10)))
(check-pred alist? '(((1 2) 10)))
(check-pred alist? '((null null)))
(check-false (alist? 3))
(check-false (alist? 'a))
(check-false (alist? '(3)))
(check-false (alist? '(3 4)))
(check-false (alist? '((a 10) (b 2 3))))
(check-true (clist? '((1 . 2) (3 . 4))))
(check-false (clist? '((1 2) (3 4))))
(check-false (clist? '((1 . 2) (3 4))))
(check-true (untype-equal? 3 3))
(check-true (untype-equal? 3 (- 4 1)))
(check-true (untype-equal? 3 "3"))
(check-true (untype-equal? 'a "a"))
(check-false (untype-equal? 'a 'b))
(check-false (untype-equal? 'a 'ab))
(check-false (untype-equal? "hello" "world"))
| false |
81ed78ee5965f5bcda600fe19ede5868b1bd75ea | 08fbdb00feb0191adc5db86507fdd79c2fb308e7 | /objects/point-send.rkt | b77b79b0bb26c9835117398cec4f91426dcb42e5 | []
| no_license | mkohlhaas/mflatt-macro-dsl-tutorial | dad0e24cb47811c6ec9548e612757e7525ecd1ca | b8b2ffaffe2bde27c2ff3ad25917ca250a34795d | refs/heads/master | 2022-10-21T23:28:02.799348 | 2020-06-16T03:19:32 | 2020-06-16T03:19:32 | 271,256,333 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 965 | rkt | point-send.rkt | #lang racket/base
(require "send.rkt"
racket/math)
(define point-class
(class
(hash 'get-x
(lambda (this) (get-field this 'x))
'get-y
(lambda (this) (get-field this 'y))
'set-x
(lambda (this v) (set-field! this 'x v))
'set-y
(lambda (this v) (set-field! this 'y v))
'rotate
(lambda (this degrees)
(define pt (make-rectangular
(get-field this 'x)
(get-field this 'y)))
(define new-pt (make-polar
(magnitude pt)
(+ (angle pt) (* pi (/ degrees 180)))))
(set-field! this 'x (real-part new-pt))
(set-field! this 'y (imag-part new-pt))))
(hash 'x 0
'y 1)))
(define a-pt (make-object point-class 0 5))
(send a-pt set-x 10)
(send a-pt rotate 90)
(send a-pt get-x)
(send a-pt get-y)
; (send a-pt 10)
| false |
dd77f881c9b448681f8fc5f40356198416af789d | 361084b1f598d0068e745bd7ce9e3e4fdfef7fff | /EECS 345 Programming Language Concepts - H. Connamacher - 2020 Spring/Lectures/cps-lecture2.rkt | ab9111f4d780fd460fe4c9ddbefc648853cff57e | []
| no_license | tristonerRL/Coursework | 949f49fc490decc20f0e9d40d4b28216f15d6c19 | 2e2a64c61e29da1949e2a9d8148617a0651e156a | refs/heads/master | 2022-10-09T02:59:34.329119 | 2020-06-06T14:43:52 | 2020-06-06T14:43:52 | 266,931,470 | 0 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 2,708 | rkt | cps-lecture2.rkt | #lang racket
; sumnumbers: takes a list of atoms and sums the numbers in the list
(define sumnumbers
(lambda (lis)
(cond
[(null? lis) 0]
[(number? (car lis)) (+ (car lis) (sumnumbers (cdr lis)))]
[else (sumnumbers (cdr lis))])))
(define sumnumbers-cps
(lambda (lis return)
(cond
[(null? lis) (return 0)]
[(number? (car lis)) (sumnumbers-cps (cdr lis) (lambda (v) (return (+ v (car lis)))))]
[else (sumnumbers-cps (cdr lis) return)])))
; sumnumbers*: sum the numbers in a list that contains sublists
(define sumnumbers*
(lambda (lis)
(cond
[(null? lis) 0]
[(list? (car lis)) (+ (sumnumbers* (car lis)) (sumnumbers* (cdr lis)))]
[(number? (car lis)) (+ (car lis) (sumnumbers* (cdr lis)))]
[else (sumnumbers-cps (cdr lis))])))
(define sumnumbers*-cps
(lambda (lis return)
(cond
[(null? lis) (return 0)]
[(list? (car lis)) (sumnumbers*-cps (car lis)
(lambda (v1) (sumnumbers*-cps (cdr lis)
(lambda (v2) (return (+ v1 v2))))))]
[(number? (car lis)) (sumnumbers*-cps (cdr lis) (lambda (v) (return (+ v (car lis)))))]
[else (sumnumbers*-cps (cdr lis) return)])))
; removeall*-cps: remove all copies of x from a list of lists
(define removeall*-cps
(lambda (x lis return)
(cond
[(null? lis) (return '())]
[(list? (car lis)) (removeall*-cps x (car lis) (lambda (v1) (removeall*-cps x (cdr lis) (lambda (v2) (return (cons v1 v2))))))]
[(eq? (car lis) x) (removeall*-cps x (cdr lis) return)]
[else (removeall*-cps x (cdr lis) (lambda (v) (return (cons (car lis) v))))])))
; flatten-cps (need append-cps): '((A)(B)((((C D))))) ==> (A B C D)
(define append-cps
(lambda (l1 l2 return)
(if (null? l1)
(return l2)
(append-cps (cdr l1) l2 (lambda (v) (return (cons (car l1) v)))))))
(define flatten-cps
(lambda (lis return)
(cond
[(null? lis) (return '())]
[(list? (car lis)) (flatten-cps (car lis) (lambda (v1) (flatten-cps (cdr lis) (lambda (v2) (append-cps v1 v2 return)))))]
[else (flatten-cps (cdr lis) (lambda (v) (return (cons (car lis) v))))])))
; (split-cps '(a b c d e)) => '(a c e) '(b d)
; by using cps on this method to multiply a list of numbers, we can have it immediately
; jump out of the recursion once it hits a 0. Try tracing this in the debugger so you
; can watch the call stack
(define multiply-cps
(lambda (lis return break)
(cond
[(null? lis) (return 1)]
[(zero? (car lis)) (break 0)]
[else (multiply-cps (cdr lis) (lambda (v) (return (* v (car lis)))) break)]))) | false |
b3eebf56456564b52f3221996066356bb909c7c8 | 3424ab96c3265f69191dd3a219b2b66a1e61b57d | /litonico/reasoned-ch6.rkt | 6dfaf2ae1cb715aada920dea3c30f83aed9d8e91 | []
| no_license | SeaRbSg/little-schemer | 9130db9720470c70ccddfc4803b0c14c214493c4 | 2864c2c46a546decb6e68cca92862c2d77fc6b65 | refs/heads/master | 2016-09-10T02:09:03.708360 | 2015-12-29T20:56:16 | 2015-12-29T20:56:16 | 26,874,199 | 10 | 4 | null | null | null | null | UTF-8 | Racket | false | false | 2,102 | rkt | reasoned-ch6.rkt | #lang racket
(require "../lib/mk.rkt")
(require rackunit)
(require "reasoned-prelude.rkt")
(define anyo
(lambda (g)
(conde
[g %s]
[else (anyo g)])))
(define nevero (anyo %u))
; (run 1 (q)
; (nevero
; (== #t g)))
[check-equal?
(run 1 (q)
%u
nevero)
'()]
(define alwayso (anyo %s)) ;; Why is this 'useful'?
;; Oh, because it succeeds an arbitrary number of times
[check-equal?
(run 5 (q)
(== #t q)
alwayso)
'(#t #t #t #t #t)] ;; Wait, why do I not have to unquote the truthy values?
(define salo ;; succeeds-at-least-once-o
(lambda (g)
(conde
[%s %s]
[else g])))
[check-equal?
(run 1 (q)
(salo alwayso)
(== #t q))
'(#t)]
[check-equal?
(run 1 (q)
(salo nevero) ;; these -o suffixes are getting out of hand
(== #t q))
'(#t)]
; (run* (q)
; (salo nevero)
; (== #t q))
; (run 1 (q) ;; HELP! The Reasoned explanation for this is useless
; (salo nevero)
; %u
; (== #t q))
; (run 1 (q) ;; Oh, I kinda get it
; alwayso
; %u
; (== #t q))
; (run 1 (q)
; (conde
; [(== #f q) alwayso]
; [else (anyo (== #t q))]
; (== #t q)))
[check-equal?
(run 1 (q)
(condi
[(== #f q) alwayso]
[else (== #t q)])
(== #t q))
'(#t)]
[check-equal?
(run 5 (q)
(condi
[(== #f q) alwayso]
[else (anyo (== #t q))])
(== #t q))
'(#t #t #t #t #t)]
[check-equal?
(run 5 (q)
(condi
[(teacupo q) %s]
[(== #f q) %s]
[else %u]))
'(tea #f cup)]
[check-equal?
(run 5 (q)
(condi
[(== #f q) alwayso]
[(== #t q) alwayso]
[else %u])
(== #t q))
'(#t #t #t #t #t)]
[check-equal?
(run 1 (q)
(alli
(conde
[(== #f q) %s]
[else (== #t q)])
alwayso)
(== #t q))
'(#t)]
[check-equal?
(run 5 (q)
(alli
(conde
[(== #f q) %s]
[else (== #t q)])
alwayso)
(== #t q))
'(#t #t #t #t #t)]
[check-equal?
(run 5 (q)
(all ;; but NOT alli
(conde
[%s %s]
[else nevero])
alwayso)
(== #t q))
'(#t #t #t #t #t)]
| false |
f6e2cadb12c7676d54dd441444fa28b0f24e091a | e995fce18dbdd69a757f55a2c023d07fcce3cb6b | /cpcf/heap/syntax.rkt | b2baeb2feb3e0fb4c8cb1a53f96caf3c7819f456 | []
| no_license | dvanhorn/pcf | 883deb8c60547f04027e9381d54849ee2e0acd7f | f04e2ff7f34b89a3dc6c2a70a6a3283f954d3a67 | refs/heads/master | 2021-01-18T21:52:28.126007 | 2016-03-30T09:26:31 | 2016-03-30T09:26:31 | 6,306,139 | 8 | 1 | null | 2015-07-20T20:34:58 | 2012-10-20T06:45:08 | Racket | UTF-8 | Racket | false | false | 422 | rkt | syntax.rkt | #lang racket
(provide CPCFฮฃ)
(require redex/reduction-semantics
cpcf/syntax)
(define-extended-language CPCFฮฃ CPCF
(A ::= integer)
(P ::= (& A))
(M ::= .... P)
(V ::= N F (P ... -> P))
(E ::= hole
(@ L P ... E M ...)
(if0 E M M)
(P ... E C ... -> C)
(P ... -> E)
(E L L C โ M)
(P L L C โ E))
(ฮฃ ::= (side-condition any_0 (hash? (term any_0))))) | false |
11bd9a2ce08eb4ccbb452a9f2039d8bbfa7d7f73 | ca861ad0a3e092d062bf62d479d7b2b588ac7a7e | /hackett-lib/info.rkt | 436635b8319da24a392993055ed3450bcc57d3ee | []
| no_license | mattaudesse/hackett | 06d8bc82b5e1038f49836d3b3d51f8015bf3fbc0 | 7ddf45a94b26e90cd8793b585706fc2f6e94c679 | refs/heads/master | 2021-01-12T00:49:26.225120 | 2017-02-08T19:59:44 | 2017-02-08T19:59:44 | 78,302,313 | 0 | 0 | null | 2017-01-07T20:35:42 | 2017-01-07T20:35:42 | null | UTF-8 | Racket | false | false | 214 | rkt | info.rkt | #lang info
(define collection 'multi)
(define deps
'(["base" #:version "6.5.0.900"]
"curly-fn-lib"
"srfi-lite-lib"
["syntax-classes-lib" #:version "1.1"]
"turnstile"))
(define build-deps
'())
| false |
d727fe07f416fef088e6b98c78f7182663408c15 | 0e75045c210e5eb908574d6f07749781eaa00bcd | /common/number.rkt | c6fbdd84205530b5e42bf9d7268f5e0649064864 | []
| no_license | johannes-qvarford/racket-stuff | f35ce95e7808db5b7a4506504f1159d7e06b5f7d | a3168f6f2554f64e5a02fa8c2e3e12063c56f98c | refs/heads/master | 2023-05-08T10:52:00.791634 | 2021-06-06T14:17:14 | 2021-06-06T14:17:14 | 363,372,243 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 303 | rkt | number.rkt | #lang racket/base
(provide number->digit-list)
(define (number->digit-list x)
(let ((q (quotient x 10)) (m (modulo x 10)))
(if (= q 0) (list m) (cons m (number->digit-list q)))))
(module+ test
(require rackunit)
(check-equal? (number->digit-list 123) '(3 2 1))) | false |
0d93e305f818e1d97eafd789d7f674dd40202138 | 8d4a6e37674db0b24d9ba5875545da3efb258279 | /Practice_9.rkt | 162984727d2e65493ee703ae8bddd5c96ccbad02 | [
"MIT"
]
| permissive | shiyu3169/Programming_Language | f979c53f24f05ff2ad7203cef0f7258a4780f49b | dedb30c7587303f677bc823a24833b6f323cad37 | refs/heads/master | 2021-10-26T08:47:48.063069 | 2019-04-11T15:34:12 | 2019-04-11T15:34:12 | 103,069,651 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 4,630 | rkt | Practice_9.rkt | #lang pl 09
#|
If the last thing a routine does before it returns is call another routine,
rather than doing a jump-and-add-stack-frame immediately followed by a
pop-stack-frame-and-return-to-caller, it should be safe to simply jump to
the start of the second routine, letting it re-use the first routine's
stack frame.
|#
;; we represent labels (goto targets) as thunks, and registers (or
;; memory locations in general) as integer boxes.
(define-type Label = (-> Integer))
(define-type Register = (Boxof Integer))
;; "X = Y"
;; assigns the contents of register Y to register X
(: mov : Register Register -> Void)
(define (mov X Y) (set-box! X (unbox Y)))
;; "X = N"
;; assigns the constant N (an "immediate" value) to register X
(: movi : Register Integer -> Void)
(define (movi X N) (set-box! X N))
;; "X += Y"
;; increments register X by register Y
(: add : Register Register -> Void)
(define (add X Y) (set-box! X (+ (unbox X) (unbox Y))))
;; "X += N"
;; increments register X by a constant N
(: addi : Register Integer -> Void)
(define (addi X N) (set-box! X (+ (unbox X) N)))
;; "X -= Y"
;; deccrements register X by register Y
(: sub : Register Register -> Void)
(define (sub X Y) (set-box! X (- (unbox X) (unbox Y))))
;; "X -= N"
;; decrements register X by a constant N
(: subi : Register Integer -> Void)
(define (subi X N) (set-box! X (- (unbox X) N)))
;; "X &= Y"
;; sets X to the bitwise "and" of X and Y
;;(: and : Register Register -> Void)
;;(define (and X Y) (set-box! X (bitwise-and (unbox X) (unbox Y))))
;; "X &= N"
;; sets X to the bitwise "and" of X and a constant N
(: andi : Register Integer -> Void)
(define (andi X N) (set-box! X (bitwise-and (unbox X) N)))
;; "X >>= N"
;; shifts register X right by N bits
(: shri : Register Integer -> Void)
(define (shri X N) (set-box! X (arithmetic-shift (unbox X) (- N))))
;; "goto L"
;; (goto L) jumps to the label -- labels are represented as nullary
;; functions (also called "thunks")
(: goto : Label -> Integer)
(define (goto L) (L))
;; "ret X"
;; return the contents of register X
(: ret : Register -> Integer)
(define (ret X) (unbox X))
;; "ret N"
;; return the constant N
(: reti : Integer -> Integer)
(define (reti N) N)
;; "if X=0 goto L1 else goto L2"
;; if register X is zero, jump to L1, else jump to L2
(: if0 : Register Label Label -> Integer)
(define (if0 a l1 l2) (if (zero? (unbox a)) (goto l1) (goto l2)))
;; "if X>0 goto L1 else goto L2"
;; if register X is positive, jump to L1, else jump to L2
(: ifp : Register Label Label -> Integer)
(define (ifp a l1 l2) (if (positive? (unbox a)) (goto l1) (goto l2)))
(: fib : Integer -> Integer)
;; compute the nth fibonacci number using the assembly language
(define (fib n)
(: A : Register) (define A (box 0))
(: B : Register) (define B (box 1))
(: C : Register) (define C (box 0))
(: N : Register) (define N (box n))
;;
(: main : Label)
(: step : Label)
(: done : Label)
;;
(define (main) (if0 N done step))
(define (step) (mov C A)
(add C B)
(mov A B)
(mov B C)
(subi N 1)
(goto main))
(define (done) (ret A))
;;
(main))
;; test
(test (map fib '(0 1 2 3 4 5 6 7 8 9 10))
=> '(0 1 1 2 3 5 8 13 21 34 55))
(: more-ones? : Integer Integer -> Integer)
;; returns 1 if `a' has more 1s in its binary representation than `b'
(define (more-ones? a b)
(: A : Register) (define A (box a))
(: B : Register) (define B (box b))
(: C : Register) (define C (box 0))
(: D : Register) (define D (box 0))
(: main : Label)
(: inc : Label)
(: step : Label)
(: step2 : Label)
(: check : Label)
(: swap : Label)
(: done : Label)
(: ret1 : Label)
(: ret0 : Label)
(define (main) (mov B A)
(shri A 1)
(andi B 1)
(ifp B inc step))
(define (inc) (addi C 1)
(goto main))
(define (step) (if0 A step2 main))
(define (step2) (ifp C check done))
(define (check) (ifp D done swap))
(define (swap) (movi A b)
(mov D C)
(movi C 0)
(main))
(define (done) (sub D C)
(ifp D ret1 ret0))
(define (ret1) (reti 1))
(define (ret0) (reti 0))
(main))
;; tests
(test (more-ones? 0 0) => 0)
(test (more-ones? 1 0) => 1)
(test (more-ones? 1 2) => 0)
(test (more-ones? 2 0) => 1)
(test (more-ones? 0 1) => 0)
(test (more-ones? 0 2) => 0)
(test (more-ones? 2 1) => 0)
(test (more-ones? 2 2) => 0)
(test (more-ones? 3 1) => 1)
(define minutes-spent 120) | false |
b6ec24e528ce3470c3ba20aa5b6710c82c5125fd | b4146474529ac47b8e93adabe9d61f401a481d41 | /GA/GA-forwardbackward.rkt | cbdd21f2b781bc8c6eeb419a20820eaf2c702ef3 | [
"BSD-2-Clause"
]
| permissive | mangpo/greenthumb | a2afd5f914bf19747182832606d47670ed9018db | 1158769bd0bea5cabc5c1370a14cb5db23e721dc | refs/heads/master | 2022-07-10T14:24:35.747168 | 2022-06-30T20:44:11 | 2022-06-30T20:44:11 | 17,042,314 | 90 | 11 | null | 2017-02-21T08:20:55 | 2014-02-21T01:52:55 | Racket | UTF-8 | Racket | false | false | 7,360 | rkt | GA-forwardbackward.rkt | #lang racket
(require "../forwardbackward.rkt" "../inst.rkt" "../ops-racket.rkt"
"../special.rkt" "../memory-racket.rkt"
"GA-machine.rkt")
(require (only-in "GA-simulator-racket.rkt" [GA-simulator-racket% GA-simulator-racket%]))
(require (only-in "GA-simulator-rosette.rkt" [GA-simulator-rosette% GA-simulator-rosette%]))
(provide GA-forwardbackward%)
(define GA-forwardbackward%
(class forwardbackward%
(super-new)
(inherit-field machine printer)
(override len-limit window-size
reduce-precision increase-precision reduce-precision-assume
change-inst change-inst-list)
(define (len-limit) 8)
(define (window-size) 14)
(define bit 4)
(define UP #x145)
(define DOWN #x115)
(define LEFT #x175)
(define RIGHT #x1d5)
(define IO #x15d)
(define UP-abst -2)
(define DOWN-abst -4)
(define LEFT-abst -6)
(define RIGHT-abst -8)
(define IO-abst 6)
;; (define UP-abst -3)
;; (define DOWN-abst -4)
;; (define LEFT-abst -5)
;; (define RIGHT-abst -6)
;; (define IO-abst -7)
(define opcodes (get-field opcodes machine))
(define mask (sub1 (arithmetic-shift 1 bit)))
(define mask-1 (sub1 (arithmetic-shift 1 (sub1 bit))))
(define (change-inst x change)
(define opcode-id (inst-op x))
(define opcode-name (send machine get-opcode-name opcode-id))
(if (equal? opcode-name `@p)
(inst opcode-id (vector-map change (inst-args x)))
x))
(define (change-inst-list x change)
(define opcode-id (inst-op x))
(define opcode-name (send machine get-opcode-name opcode-id))
(if (equal? opcode-name `@p)
(let ([arg (vector-ref (inst-args x) 0)])
(for/list ([new-arg (change arg)]) (inst opcode-id (vector new-arg))))
(list x)))
(define (reduce-precision prog)
(define mapping (make-hash))
(define (change arg)
(define ret
(cond
[(= arg UP) UP-abst]
[(= arg DOWN) DOWN-abst]
[(= arg LEFT) LEFT-abst]
[(= arg RIGHT) RIGHT-abst]
[(= arg IO) IO-abst]
[(> arg 0) (bitwise-and arg mask-1)]
[else (finitize (bitwise-and arg mask) bit)]))
(if (hash-has-key? mapping ret)
(let ([val (hash-ref mapping ret)])
(unless (member arg val)
(hash-set! mapping ret (cons arg val))))
(hash-set! mapping ret (list arg)))
ret)
(cons (for/vector ([x prog]) (change-inst x change)) mapping))
(define (reduce-precision-assume x)
(define (inner x)
(cond
[(boolean? x) x]
[(number? x)
(cond
[(= x 0) 0]
[(> x 0)
(define ret (bitwise-and x mask-1))
(if (= ret 0) (arithmetic-shift 1 (quotient bit 2)) ret)]
[(< x 0)
(define ret (finitize (bitwise-and x mask) bit))
(if (= ret 0) (arithmetic-shift -1 (quotient bit 2)) ret)])]
[(pair? x) (cons (inner (car x)) (inner (cdr x)))]
[else x]
))
(and x
(let ([data (progstate-data x)])
(progstate (inner (progstate-a x))
(inner (progstate-b x))
(inner (progstate-r x))
(inner (progstate-s x))
(inner (progstate-t x))
(stack (stack-sp data)
(for/vector ([i (stack-body data)])
(inner i)))
(progstate-return x)
(progstate-memory x)
(progstate-recv x)
(progstate-comm x)))))
(define (increase-precision prog mapping)
(define (change arg)
(define (finalize x)
(if (hash-has-key? mapping arg)
(let ([val (hash-ref mapping arg)])
(if (member x val) val (cons x val)))
(list x)))
(finalize arg))
(define ret (list))
(define (recurse lst final)
(if (empty? lst)
(set! ret (cons (list->vector final) ret))
(for ([x (car lst)])
(recurse (cdr lst) (cons x final)))))
(recurse (reverse (for/list ([x prog]) (change-inst-list x change)))
(list))
ret)
;; Optional but make performance better much better.
;; Without this, we will never mask-in init states
;; (mask-in init state with 'a' which is always #f in GA
;; because GA:update-live always returns #f)
(define/override (combine-live a b)
(define s (vector-ref b 3))
(define t (vector-ref b 4))
(when (and s (not t)) (vector-set! b 4 #t))
b)
;; Optional but make performance better much better.
(define/override (mask-in state-vec live-list #:keep-flag [keep #t])
(if live-list
(let* ([pass #t]
[ret
(for/vector ([x state-vec]
[v live-list] #:break (not pass))
(cond
[(number? x)
(and v x)]
[(and (vector? x) (or (number? v) (vector? v)))
(for/vector
([i x] [live v] #:break (not pass))
(when (and live (not i)) (set! pass #f))
(and live i))]
[(is-a? x memory-racket%)
(if v x (send x clone-init))]
[(is-a? x special%) x]
[(equal? v #t)
(unless x (set! pass #f)) x]
[else x]))])
(and pass ret))
state-vec))
;; ;; optional but make performance slightly better.
;; (define/override (prescreen my-inst state)
;; (define opcode-id (inst-op my-inst))
;; (define a (progstate-a state))
;; (define b (progstate-b state))
;; (define r (progstate-r state))
;; (define s (progstate-s state))
;; (define t (progstate-t state))
;; (define mem-len 64)
;; (define opcode-name (vector-ref opcodes opcode-id))
;; (define-syntax-rule (inst-eq x) (equal? x opcode-name))
;; (cond
;; [(member opcode-name '(@b))
;; (and b
;; (or (and (>= b 0) (< b mem-len))
;; (member b (list UP-abst DOWN-abst LEFT-abst RIGHT-abst))))]
;; [(member opcode-name '(!b))
;; (and b t
;; (or (and (>= b 0) (< b mem-len))
;; (member b (list UP-abst DOWN-abst LEFT-abst RIGHT-abst))))]
;; [(member opcode-name '(@ @+))
;; (and a
;; (or (and (>= a 0) (< a mem-len))
;; (member a (list UP-abst DOWN-abst LEFT-abst RIGHT-abst))))]
;; [(member opcode-name '(! !+))
;; (and a t
;; (or (and (>= a 0) (< a mem-len))
;; (member a (list UP-abst DOWN-abst LEFT-abst RIGHT-abst))))]
;; ;; TODO: up down left right for bit = 4
;; [(member opcode-name '(+*)) (and a s t)]
;; [(member opcode-name '(2* 2/ - dup push b! a!)) t]
;; [(member opcode-name '(+ and or)) (and s t)]
;; [(member opcode-name '(pop)) r]
;; [(member opcode-name '(over)) s]
;; [(member opcode-name '(a)) a]
;; [else #t]))
))
| true |
fcfb47932d5896e3cd504f4470f09159008154e7 | 471a04fa9301455c51a890b8936cc60324a51f27 | /srfi-lib/srfi/%3a54.rkt | 277bff41345376e18365f74fa29becf69e6b0656 | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0",
"MIT"
]
| permissive | racket/srfi | e79e012fda6d6bba1a9445bcef461930bc27fde8 | 25eb1c0e1ab8a1fa227750aa7f0689a2c531f8c8 | refs/heads/master | 2023-08-16T11:10:38.100847 | 2023-02-16T01:18:44 | 2023-02-16T12:34:27 | 27,413,027 | 10 | 10 | NOASSERTION | 2023-09-14T14:40:51 | 2014-12-02T03:22:45 | HTML | UTF-8 | Racket | false | false | 34 | rkt | %3a54.rkt | #lang s-exp srfi/provider srfi/54
| false |
6f6d5c3a63ba1cb32ea8d239e2af92dcca11ec4f | 67f496ff081faaa375c5000a58dd2c69d8aeec5f | /koyo-lib/koyo/hasher/error.rkt | 94b1b56abdd069c55905c9dced73e450baafdd40 | [
"BSD-3-Clause"
]
| permissive | Bogdanp/koyo | e99143dd4ee918568ed5b5b199157cd4f87f685f | a4dc1455fb1e62984e5d52635176a1464b8753d8 | refs/heads/master | 2023-08-18T07:06:59.433041 | 2023-08-12T09:24:30 | 2023-08-12T09:24:30 | 189,833,202 | 127 | 24 | null | 2023-03-12T10:24:31 | 2019-06-02T10:32:01 | Racket | UTF-8 | Racket | false | false | 266 | rkt | error.rkt | #lang racket/base
(require racket/format)
(provide
(struct-out exn:fail:hasher)
oops)
(struct exn:fail:hasher exn:fail ())
(define (oops who fmt . args)
(raise
(exn:fail:hasher
(~a who ": " (apply format fmt args))
(current-continuation-marks))))
| false |
d5411250d7d26ff5a0357707b9bbce3d44e9b39a | b08b7e3160ae9947b6046123acad8f59152375c3 | /Programming Language Detection/Experiment-2/Dataset/Train/Racket/sorting-algorithms-comb-sort.rkt | 93a3b48e9256b6b33ef422047892b94b5539deed | []
| no_license | dlaststark/machine-learning-projects | efb0a28c664419275e87eb612c89054164fe1eb0 | eaa0c96d4d1c15934d63035b837636a6d11736e3 | refs/heads/master | 2022-12-06T08:36:09.867677 | 2022-11-20T13:17:25 | 2022-11-20T13:17:25 | 246,379,103 | 9 | 5 | null | null | null | null | UTF-8 | Racket | false | false | 579 | rkt | sorting-algorithms-comb-sort.rkt | #lang racket
(require (only-in srfi/43 vector-swap!))
(define (comb-sort xs)
(define (ref i) (vector-ref xs i))
(define (swap i j) (vector-swap! xs i j))
(define (new gap) (max 1 (exact-floor (/ gap 1.25))))
(define size (vector-length xs))
(let loop ([gap size] [swaps 0])
(unless (and (= gap 1) (= swaps 0))
(loop (new gap)
(for/fold ([swaps 0]) ([i (in-range 0 (- size gap))])
(cond
[(> (ref i) (ref (+ i gap)))
(swap i (+ i gap))
(+ swaps 1)]
[swaps])))))
xs)
| false |
713bd0f606de8f32800bc480c294653f463e36d6 | 5bbc152058cea0c50b84216be04650fa8837a94b | /tools/diagnose/data/gregor-6.3.rktd | 6e0c60035b8b3829878b4511967255f325a9a7e3 | []
| 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,205,912 | rktd | gregor-6.3.rktd | (
(config ("0000000000000" "0000000000001" "0000000000010" "0000000000011" "0000000000100" "0000000000101" "0000000000110" "0000000000111" "0000000001000" "0000000001001" "0000000001010" "0000000001011" "0000000001100" "0000000001101" "0000000001110" "0000000001111" "0000000010000" "0000000010001" "0000000010010" "0000000010011" "0000000010100" "0000000010101" "0000000010110" "0000000010111" "0000000011000" "0000000011001" "0000000011010" "0000000011011" "0000000011100" "0000000011101" "0000000011110" "0000000011111" "0000000100000" "0000000100001" "0000000100010" "0000000100011" "0000000100100" "0000000100101" "0000000100110" "0000000100111" "0000000101000" "0000000101001" "0000000101010" "0000000101011" "0000000101100" "0000000101101" "0000000101110" "0000000101111" "0000000110000" "0000000110001" "0000000110010" "0000000110011" "0000000110100" "0000000110101" "0000000110110" "0000000110111" "0000000111000" "0000000111001" "0000000111010" "0000000111011" "0000000111100" "0000000111101" "0000000111110" "0000000111111" "0000001000000" "0000001000001" "0000001000010" "0000001000011" "0000001000100" "0000001000101" "0000001000110" "0000001000111" "0000001001000" "0000001001001" "0000001001010" "0000001001011" "0000001001100" "0000001001101" "0000001001110" "0000001001111" "0000001010000" "0000001010001" "0000001010010" "0000001010011" "0000001010100" "0000001010101" "0000001010110" "0000001010111" "0000001011000" "0000001011001" "0000001011010" "0000001011011" "0000001011100" "0000001011101" "0000001011110" "0000001011111" "0000001100000" "0000001100001" "0000001100010" "0000001100011" "0000001100100" "0000001100101" "0000001100110" "0000001100111" "0000001101000" "0000001101001" "0000001101010" "0000001101011" "0000001101100" "0000001101101" "0000001101110" "0000001101111" "0000001110000" "0000001110001" "0000001110010" "0000001110011" "0000001110100" "0000001110101" "0000001110110" "0000001110111" "0000001111000" "0000001111001" "0000001111010" "0000001111011" "0000001111100" "0000001111101" "0000001111110" "0000001111111" "0000010000000" "0000010000001" "0000010000010" "0000010000011" "0000010000100" "0000010000101" "0000010000110" "0000010000111" "0000010001000" "0000010001001" "0000010001010" "0000010001011" "0000010001100" "0000010001101" "0000010001110" "0000010001111" "0000010010000" "0000010010001" "0000010010010" "0000010010011" "0000010010100" "0000010010101" "0000010010110" "0000010010111" "0000010011000" "0000010011001" "0000010011010" "0000010011011" "0000010011100" "0000010011101" "0000010011110" "0000010011111" "0000010100000" "0000010100001" "0000010100010" "0000010100011" "0000010100100" "0000010100101" "0000010100110" "0000010100111" "0000010101000" "0000010101001" "0000010101010" "0000010101011" "0000010101100" "0000010101101" "0000010101110" "0000010101111" "0000010110000" "0000010110001" "0000010110010" "0000010110011" "0000010110100" "0000010110101" "0000010110110" "0000010110111" "0000010111000" "0000010111001" "0000010111010" "0000010111011" "0000010111100" "0000010111101" "0000010111110" "0000010111111" "0000011000000" "0000011000001" "0000011000010" "0000011000011" "0000011000100" "0000011000101" "0000011000110" "0000011000111" "0000011001000" "0000011001001" "0000011001010" "0000011001011" "0000011001100" "0000011001101" "0000011001110" "0000011001111" "0000011010000" "0000011010001" "0000011010010" "0000011010011" "0000011010100" "0000011010101" "0000011010110" "0000011010111" "0000011011000" "0000011011001" "0000011011010" "0000011011011" "0000011011100" "0000011011101" "0000011011110" "0000011011111" "0000011100000" "0000011100001" "0000011100010" "0000011100011" "0000011100100" "0000011100101" "0000011100110" "0000011100111" "0000011101000" "0000011101001" "0000011101010" "0000011101011" "0000011101100" "0000011101101" "0000011101110" "0000011101111" "0000011110000" "0000011110001" "0000011110010" "0000011110011" "0000011110100" "0000011110101" "0000011110110" "0000011110111" "0000011111000" "0000011111001" "0000011111010" "0000011111011" "0000011111100" "0000011111101" "0000011111110" "0000011111111" "0000100000000" "0000100000001" "0000100000010" "0000100000011" "0000100000100" "0000100000101" "0000100000110" "0000100000111" "0000100001000" "0000100001001" "0000100001010" "0000100001011" "0000100001100" "0000100001101" "0000100001110" "0000100001111" "0000100010000" "0000100010001" "0000100010010" "0000100010011" "0000100010100" "0000100010101" "0000100010110" "0000100010111" "0000100011000" "0000100011001" "0000100011010" "0000100011011" "0000100011100" "0000100011101" "0000100011110" "0000100011111" "0000100100000" "0000100100001" "0000100100010" "0000100100011" "0000100100100" "0000100100101" "0000100100110" "0000100100111" "0000100101000" "0000100101001" "0000100101010" "0000100101011" "0000100101100" "0000100101101" "0000100101110" "0000100101111" "0000100110000" "0000100110001" "0000100110010" "0000100110011" "0000100110100" "0000100110101" "0000100110110" "0000100110111" "0000100111000" "0000100111001" "0000100111010" "0000100111011" "0000100111100" "0000100111101" "0000100111110" "0000100111111" "0000101000000" "0000101000001" "0000101000010" "0000101000011" "0000101000100" "0000101000101" "0000101000110" "0000101000111" "0000101001000" "0000101001001" "0000101001010" "0000101001011" "0000101001100" "0000101001101" "0000101001110" "0000101001111" "0000101010000" "0000101010001" "0000101010010" "0000101010011" "0000101010100" "0000101010101" "0000101010110" "0000101010111" "0000101011000" "0000101011001" "0000101011010" "0000101011011" "0000101011100" "0000101011101" "0000101011110" "0000101011111" "0000101100000" "0000101100001" "0000101100010" "0000101100011" "0000101100100" "0000101100101" "0000101100110" "0000101100111" "0000101101000" "0000101101001" "0000101101010" "0000101101011" "0000101101100" "0000101101101" "0000101101110" "0000101101111" "0000101110000" "0000101110001" "0000101110010" "0000101110011" "0000101110100" "0000101110101" "0000101110110" "0000101110111" "0000101111000" "0000101111001" "0000101111010" "0000101111011" "0000101111100" "0000101111101" "0000101111110" "0000101111111" "0000110000000" "0000110000001" "0000110000010" "0000110000011" "0000110000100" "0000110000101" "0000110000110" "0000110000111" "0000110001000" "0000110001001" "0000110001010" "0000110001011" "0000110001100" "0000110001101" "0000110001110" "0000110001111" "0000110010000" "0000110010001" "0000110010010" "0000110010011" "0000110010100" "0000110010101" "0000110010110" "0000110010111" "0000110011000" "0000110011001" "0000110011010" "0000110011011" "0000110011100" "0000110011101" "0000110011110" "0000110011111" "0000110100000" "0000110100001" "0000110100010" "0000110100011" "0000110100100" "0000110100101" "0000110100110" "0000110100111" "0000110101000" "0000110101001" "0000110101010" "0000110101011" "0000110101100" "0000110101101" "0000110101110" "0000110101111" "0000110110000" "0000110110001" "0000110110010" "0000110110011" "0000110110100" "0000110110101" "0000110110110" "0000110110111" "0000110111000" "0000110111001" "0000110111010" "0000110111011" "0000110111100" "0000110111101" "0000110111110" "0000110111111" "0000111000000" "0000111000001" "0000111000010" "0000111000011" "0000111000100" "0000111000101" "0000111000110" "0000111000111" "0000111001000" "0000111001001" "0000111001010" "0000111001011" "0000111001100" "0000111001101" "0000111001110" "0000111001111" "0000111010000" "0000111010001" "0000111010010" "0000111010011" "0000111010100" "0000111010101" "0000111010110" "0000111010111" "0000111011000" "0000111011001" "0000111011010" "0000111011011" "0000111011100" "0000111011101" "0000111011110" "0000111011111" "0000111100000" "0000111100001" "0000111100010" "0000111100011" "0000111100100" "0000111100101" "0000111100110" "0000111100111" "0000111101000" "0000111101001" "0000111101010" "0000111101011" "0000111101100" "0000111101101" "0000111101110" "0000111101111" "0000111110000" "0000111110001" "0000111110010" "0000111110011" "0000111110100" "0000111110101" "0000111110110" "0000111110111" "0000111111000" "0000111111001" "0000111111010" "0000111111011" "0000111111100" "0000111111101" "0000111111110" "0000111111111" "0001000000000" "0001000000001" "0001000000010" "0001000000011" "0001000000100" "0001000000101" "0001000000110" "0001000000111" "0001000001000" "0001000001001" "0001000001010" "0001000001011" "0001000001100" "0001000001101" "0001000001110" "0001000001111" "0001000010000" "0001000010001" "0001000010010" "0001000010011" "0001000010100" "0001000010101" "0001000010110" "0001000010111" "0001000011000" "0001000011001" "0001000011010" "0001000011011" "0001000011100" "0001000011101" "0001000011110" "0001000011111" "0001000100000" "0001000100001" "0001000100010" "0001000100011" "0001000100100" "0001000100101" "0001000100110" "0001000100111" "0001000101000" "0001000101001" "0001000101010" "0001000101011" "0001000101100" "0001000101101" "0001000101110" "0001000101111" "0001000110000" "0001000110001" "0001000110010" "0001000110011" "0001000110100" "0001000110101" "0001000110110" "0001000110111" "0001000111000" "0001000111001" "0001000111010" "0001000111011" "0001000111100" "0001000111101" "0001000111110" "0001000111111" "0001001000000" "0001001000001" "0001001000010" "0001001000011" "0001001000100" "0001001000101" "0001001000110" "0001001000111" "0001001001000" "0001001001001" "0001001001010" "0001001001011" "0001001001100" "0001001001101" "0001001001110" "0001001001111" "0001001010000" "0001001010001" "0001001010010" "0001001010011" "0001001010100" "0001001010101" "0001001010110" "0001001010111" "0001001011000" "0001001011001" "0001001011010" "0001001011011" "0001001011100" "0001001011101" "0001001011110" "0001001011111" "0001001100000" "0001001100001" "0001001100010" "0001001100011" "0001001100100" "0001001100101" "0001001100110" "0001001100111" "0001001101000" "0001001101001" "0001001101010" "0001001101011" "0001001101100" "0001001101101" "0001001101110" "0001001101111" "0001001110000" "0001001110001" "0001001110010" "0001001110011" "0001001110100" "0001001110101" "0001001110110" "0001001110111" "0001001111000" "0001001111001" "0001001111010" "0001001111011" "0001001111100" "0001001111101" "0001001111110" "0001001111111" "0001010000000" "0001010000001" "0001010000010" "0001010000011" "0001010000100" "0001010000101" "0001010000110" "0001010000111" "0001010001000" "0001010001001" "0001010001010" "0001010001011" "0001010001100" "0001010001101" "0001010001110" "0001010001111" "0001010010000" "0001010010001" "0001010010010" "0001010010011" "0001010010100" "0001010010101" "0001010010110" "0001010010111" "0001010011000" "0001010011001" "0001010011010" "0001010011011" "0001010011100" "0001010011101" "0001010011110" "0001010011111" "0001010100000" "0001010100001" "0001010100010" "0001010100011" "0001010100100" "0001010100101" "0001010100110" "0001010100111" "0001010101000" "0001010101001" "0001010101010" "0001010101011" "0001010101100" "0001010101101" "0001010101110" "0001010101111" "0001010110000" "0001010110001" "0001010110010" "0001010110011" "0001010110100" "0001010110101" "0001010110110" "0001010110111" "0001010111000" "0001010111001" "0001010111010" "0001010111011" "0001010111100" "0001010111101" "0001010111110" "0001010111111" "0001011000000" "0001011000001" "0001011000010" "0001011000011" "0001011000100" "0001011000101" "0001011000110" "0001011000111" "0001011001000" "0001011001001" "0001011001010" "0001011001011" "0001011001100" "0001011001101" "0001011001110" "0001011001111" "0001011010000" "0001011010001" "0001011010010" "0001011010011" "0001011010100" "0001011010101" "0001011010110" "0001011010111" "0001011011000" "0001011011001" "0001011011010" "0001011011011" "0001011011100" "0001011011101" "0001011011110" "0001011011111" "0001011100000" "0001011100001" "0001011100010" "0001011100011" "0001011100100" "0001011100101" "0001011100110" "0001011100111" "0001011101000" "0001011101001" "0001011101010" "0001011101011" "0001011101100" "0001011101101" "0001011101110" "0001011101111" "0001011110000" "0001011110001" "0001011110010" "0001011110011" "0001011110100" "0001011110101" "0001011110110" "0001011110111" "0001011111000" "0001011111001" "0001011111010" "0001011111011" "0001011111100" "0001011111101" "0001011111110" "0001011111111" "0001100000000" "0001100000001" "0001100000010" "0001100000011" "0001100000100" "0001100000101" "0001100000110" "0001100000111" "0001100001000" "0001100001001" "0001100001010" "0001100001011" "0001100001100" "0001100001101" "0001100001110" "0001100001111" "0001100010000" "0001100010001" "0001100010010" "0001100010011" "0001100010100" "0001100010101" "0001100010110" "0001100010111" "0001100011000" "0001100011001" "0001100011010" "0001100011011" "0001100011100" "0001100011101" "0001100011110" "0001100011111" "0001100100000" "0001100100001" "0001100100010" "0001100100011" "0001100100100" "0001100100101" "0001100100110" "0001100100111" "0001100101000" "0001100101001" "0001100101010" "0001100101011" "0001100101100" "0001100101101" "0001100101110" "0001100101111" "0001100110000" "0001100110001" "0001100110010" "0001100110011" "0001100110100" "0001100110101" "0001100110110" "0001100110111" "0001100111000" "0001100111001" "0001100111010" "0001100111011" "0001100111100" "0001100111101" "0001100111110" "0001100111111" "0001101000000" "0001101000001" "0001101000010" "0001101000011" "0001101000100" "0001101000101" "0001101000110" "0001101000111" "0001101001000" "0001101001001" "0001101001010" "0001101001011" "0001101001100" "0001101001101" "0001101001110" "0001101001111" "0001101010000" "0001101010001" "0001101010010" "0001101010011" "0001101010100" "0001101010101" "0001101010110" "0001101010111" "0001101011000" "0001101011001" "0001101011010" "0001101011011" "0001101011100" "0001101011101" "0001101011110" "0001101011111" "0001101100000" "0001101100001" "0001101100010" "0001101100011" "0001101100100" "0001101100101" "0001101100110" "0001101100111" "0001101101000" "0001101101001" "0001101101010" "0001101101011" "0001101101100" "0001101101101" "0001101101110" "0001101101111" "0001101110000" "0001101110001" "0001101110010" "0001101110011" "0001101110100" "0001101110101" "0001101110110" "0001101110111" "0001101111000" "0001101111001" "0001101111010" "0001101111011" "0001101111100" "0001101111101" "0001101111110" "0001101111111" "0001110000000" "0001110000001" "0001110000010" "0001110000011" "0001110000100" "0001110000101" "0001110000110" "0001110000111" "0001110001000" "0001110001001" "0001110001010" "0001110001011" "0001110001100" "0001110001101" "0001110001110" "0001110001111" "0001110010000" "0001110010001" "0001110010010" "0001110010011" "0001110010100" "0001110010101" "0001110010110" "0001110010111" "0001110011000" "0001110011001" "0001110011010" "0001110011011" "0001110011100" "0001110011101" "0001110011110" "0001110011111" "0001110100000" "0001110100001" "0001110100010" "0001110100011" "0001110100100" "0001110100101" "0001110100110" "0001110100111" "0001110101000" "0001110101001" "0001110101010" "0001110101011" "0001110101100" "0001110101101" "0001110101110" "0001110101111" "0001110110000" "0001110110001" "0001110110010" "0001110110011" "0001110110100" "0001110110101" "0001110110110" "0001110110111" "0001110111000" "0001110111001" "0001110111010" "0001110111011" "0001110111100" "0001110111101" "0001110111110" "0001110111111" "0001111000000" "0001111000001" "0001111000010" "0001111000011" "0001111000100" "0001111000101" "0001111000110" "0001111000111" "0001111001000" "0001111001001" "0001111001010" "0001111001011" "0001111001100" "0001111001101" "0001111001110" "0001111001111" "0001111010000" "0001111010001" "0001111010010" "0001111010011" "0001111010100" "0001111010101" "0001111010110" "0001111010111" "0001111011000" "0001111011001" "0001111011010" "0001111011011" "0001111011100" "0001111011101" "0001111011110" "0001111011111" "0001111100000" "0001111100001" "0001111100010" "0001111100011" "0001111100100" "0001111100101" "0001111100110" "0001111100111" "0001111101000" "0001111101001" "0001111101010" "0001111101011" "0001111101100" "0001111101101" "0001111101110" "0001111101111" "0001111110000" "0001111110001" "0001111110010" "0001111110011" "0001111110100" "0001111110101" "0001111110110" "0001111110111" "0001111111000" "0001111111001" "0001111111010" "0001111111011" "0001111111100" "0001111111101" "0001111111110" "0001111111111" "0010000000000" "0010000000001" "0010000000010" "0010000000011" "0010000000100" "0010000000101" "0010000000110" "0010000000111" "0010000001000" "0010000001001" "0010000001010" "0010000001011" "0010000001100" "0010000001101" "0010000001110" "0010000001111" "0010000010000" "0010000010001" "0010000010010" "0010000010011" "0010000010100" "0010000010101" "0010000010110" "0010000010111" "0010000011000" "0010000011001" "0010000011010" "0010000011011" "0010000011100" "0010000011101" "0010000011110" "0010000011111" "0010000100000" "0010000100001" "0010000100010" "0010000100011" "0010000100100" "0010000100101" "0010000100110" "0010000100111" "0010000101000" "0010000101001" "0010000101010" "0010000101011" "0010000101100" "0010000101101" "0010000101110" "0010000101111" "0010000110000" "0010000110001" "0010000110010" "0010000110011" "0010000110100" "0010000110101" "0010000110110" "0010000110111" "0010000111000" "0010000111001" "0010000111010" "0010000111011" "0010000111100" "0010000111101" "0010000111110" "0010000111111" "0010001000000" "0010001000001" "0010001000010" "0010001000011" "0010001000100" "0010001000101" "0010001000110" "0010001000111" "0010001001000" "0010001001001" "0010001001010" "0010001001011" "0010001001100" "0010001001101" "0010001001110" "0010001001111" "0010001010000" "0010001010001" "0010001010010" "0010001010011" "0010001010100" "0010001010101" "0010001010110" "0010001010111" "0010001011000" "0010001011001" "0010001011010" "0010001011011" "0010001011100" "0010001011101" "0010001011110" "0010001011111" "0010001100000" "0010001100001" "0010001100010" "0010001100011" "0010001100100" "0010001100101" "0010001100110" "0010001100111" "0010001101000" "0010001101001" "0010001101010" "0010001101011" "0010001101100" "0010001101101" "0010001101110" "0010001101111" "0010001110000" "0010001110001" "0010001110010" "0010001110011" "0010001110100" "0010001110101" "0010001110110" "0010001110111" "0010001111000" "0010001111001" "0010001111010" "0010001111011" "0010001111100" "0010001111101" "0010001111110" "0010001111111" "0010010000000" "0010010000001" "0010010000010" "0010010000011" "0010010000100" "0010010000101" "0010010000110" "0010010000111" "0010010001000" "0010010001001" "0010010001010" "0010010001011" "0010010001100" "0010010001101" "0010010001110" "0010010001111" "0010010010000" "0010010010001" "0010010010010" "0010010010011" "0010010010100" "0010010010101" "0010010010110" "0010010010111" "0010010011000" "0010010011001" "0010010011010" "0010010011011" "0010010011100" "0010010011101" "0010010011110" "0010010011111" "0010010100000" "0010010100001" "0010010100010" "0010010100011" "0010010100100" "0010010100101" "0010010100110" "0010010100111" "0010010101000" "0010010101001" "0010010101010" "0010010101011" "0010010101100" "0010010101101" "0010010101110" "0010010101111" "0010010110000" "0010010110001" "0010010110010" "0010010110011" "0010010110100" "0010010110101" "0010010110110" "0010010110111" "0010010111000" "0010010111001" "0010010111010" "0010010111011" "0010010111100" "0010010111101" "0010010111110" "0010010111111" "0010011000000" "0010011000001" "0010011000010" "0010011000011" "0010011000100" "0010011000101" "0010011000110" "0010011000111" "0010011001000" "0010011001001" "0010011001010" "0010011001011" "0010011001100" "0010011001101" "0010011001110" "0010011001111" "0010011010000" "0010011010001" "0010011010010" "0010011010011" "0010011010100" "0010011010101" "0010011010110" "0010011010111" "0010011011000" "0010011011001" "0010011011010" "0010011011011" "0010011011100" "0010011011101" "0010011011110" "0010011011111" "0010011100000" "0010011100001" "0010011100010" "0010011100011" "0010011100100" "0010011100101" "0010011100110" "0010011100111" "0010011101000" "0010011101001" "0010011101010" "0010011101011" "0010011101100" "0010011101101" "0010011101110" "0010011101111" "0010011110000" "0010011110001" "0010011110010" "0010011110011" "0010011110100" "0010011110101" "0010011110110" "0010011110111" "0010011111000" "0010011111001" "0010011111010" "0010011111011" "0010011111100" "0010011111101" "0010011111110" "0010011111111" "0010100000000" "0010100000001" "0010100000010" "0010100000011" "0010100000100" "0010100000101" "0010100000110" "0010100000111" "0010100001000" "0010100001001" "0010100001010" "0010100001011" "0010100001100" "0010100001101" "0010100001110" "0010100001111" "0010100010000" "0010100010001" "0010100010010" "0010100010011" "0010100010100" "0010100010101" "0010100010110" "0010100010111" "0010100011000" "0010100011001" "0010100011010" "0010100011011" "0010100011100" "0010100011101" "0010100011110" "0010100011111" "0010100100000" "0010100100001" "0010100100010" "0010100100011" "0010100100100" "0010100100101" "0010100100110" "0010100100111" "0010100101000" "0010100101001" "0010100101010" "0010100101011" "0010100101100" "0010100101101" "0010100101110" "0010100101111" "0010100110000" "0010100110001" "0010100110010" "0010100110011" "0010100110100" "0010100110101" "0010100110110" "0010100110111" "0010100111000" "0010100111001" "0010100111010" "0010100111011" "0010100111100" "0010100111101" "0010100111110" "0010100111111" "0010101000000" "0010101000001" "0010101000010" "0010101000011" "0010101000100" "0010101000101" "0010101000110" "0010101000111" "0010101001000" "0010101001001" "0010101001010" "0010101001011" "0010101001100" "0010101001101" "0010101001110" "0010101001111" "0010101010000" "0010101010001" "0010101010010" "0010101010011" "0010101010100" "0010101010101" "0010101010110" "0010101010111" "0010101011000" "0010101011001" "0010101011010" "0010101011011" "0010101011100" "0010101011101" "0010101011110" "0010101011111" "0010101100000" "0010101100001" "0010101100010" "0010101100011" "0010101100100" "0010101100101" "0010101100110" "0010101100111" "0010101101000" "0010101101001" "0010101101010" "0010101101011" "0010101101100" "0010101101101" "0010101101110" "0010101101111" "0010101110000" "0010101110001" "0010101110010" "0010101110011" "0010101110100" "0010101110101" "0010101110110" "0010101110111" "0010101111000" "0010101111001" "0010101111010" "0010101111011" "0010101111100" "0010101111101" "0010101111110" "0010101111111" "0010110000000" "0010110000001" "0010110000010" "0010110000011" "0010110000100" "0010110000101" "0010110000110" "0010110000111" "0010110001000" "0010110001001" "0010110001010" "0010110001011" "0010110001100" "0010110001101" "0010110001110" "0010110001111" "0010110010000" "0010110010001" "0010110010010" "0010110010011" "0010110010100" "0010110010101" "0010110010110" "0010110010111" "0010110011000" "0010110011001" "0010110011010" "0010110011011" "0010110011100" "0010110011101" "0010110011110" "0010110011111" "0010110100000" "0010110100001" "0010110100010" "0010110100011" "0010110100100" "0010110100101" "0010110100110" "0010110100111" "0010110101000" "0010110101001" "0010110101010" "0010110101011" "0010110101100" "0010110101101" "0010110101110" "0010110101111" "0010110110000" "0010110110001" "0010110110010" "0010110110011" "0010110110100" "0010110110101" "0010110110110" "0010110110111" "0010110111000" "0010110111001" "0010110111010" "0010110111011" "0010110111100" "0010110111101" "0010110111110" "0010110111111" "0010111000000" "0010111000001" "0010111000010" "0010111000011" "0010111000100" "0010111000101" "0010111000110" "0010111000111" "0010111001000" "0010111001001" "0010111001010" "0010111001011" "0010111001100" "0010111001101" "0010111001110" "0010111001111" "0010111010000" "0010111010001" "0010111010010" "0010111010011" "0010111010100" "0010111010101" "0010111010110" "0010111010111" "0010111011000" "0010111011001" "0010111011010" "0010111011011" "0010111011100" "0010111011101" "0010111011110" "0010111011111" "0010111100000" "0010111100001" "0010111100010" "0010111100011" "0010111100100" "0010111100101" "0010111100110" "0010111100111" "0010111101000" "0010111101001" "0010111101010" "0010111101011" "0010111101100" "0010111101101" "0010111101110" "0010111101111" "0010111110000" "0010111110001" "0010111110010" "0010111110011" "0010111110100" "0010111110101" "0010111110110" "0010111110111" "0010111111000" "0010111111001" "0010111111010" "0010111111011" "0010111111100" "0010111111101" "0010111111110" "0010111111111" "0011000000000" "0011000000001" "0011000000010" "0011000000011" "0011000000100" "0011000000101" "0011000000110" "0011000000111" "0011000001000" "0011000001001" "0011000001010" "0011000001011" "0011000001100" "0011000001101" "0011000001110" "0011000001111" "0011000010000" "0011000010001" "0011000010010" "0011000010011" "0011000010100" "0011000010101" "0011000010110" "0011000010111" "0011000011000" "0011000011001" "0011000011010" "0011000011011" "0011000011100" "0011000011101" "0011000011110" "0011000011111" "0011000100000" "0011000100001" "0011000100010" "0011000100011" "0011000100100" "0011000100101" "0011000100110" "0011000100111" "0011000101000" "0011000101001" "0011000101010" "0011000101011" "0011000101100" "0011000101101" "0011000101110" "0011000101111" "0011000110000" "0011000110001" "0011000110010" "0011000110011" "0011000110100" "0011000110101" "0011000110110" "0011000110111" "0011000111000" "0011000111001" "0011000111010" "0011000111011" "0011000111100" "0011000111101" "0011000111110" "0011000111111" "0011001000000" "0011001000001" "0011001000010" "0011001000011" "0011001000100" "0011001000101" "0011001000110" "0011001000111" "0011001001000" "0011001001001" "0011001001010" "0011001001011" "0011001001100" "0011001001101" "0011001001110" "0011001001111" "0011001010000" "0011001010001" "0011001010010" "0011001010011" "0011001010100" "0011001010101" "0011001010110" "0011001010111" "0011001011000" "0011001011001" "0011001011010" "0011001011011" "0011001011100" "0011001011101" "0011001011110" "0011001011111" "0011001100000" "0011001100001" "0011001100010" "0011001100011" "0011001100100" "0011001100101" "0011001100110" "0011001100111" "0011001101000" "0011001101001" "0011001101010" "0011001101011" "0011001101100" "0011001101101" "0011001101110" "0011001101111" "0011001110000" "0011001110001" "0011001110010" "0011001110011" "0011001110100" "0011001110101" "0011001110110" "0011001110111" "0011001111000" "0011001111001" "0011001111010" "0011001111011" "0011001111100" "0011001111101" "0011001111110" "0011001111111" "0011010000000" "0011010000001" "0011010000010" "0011010000011" "0011010000100" "0011010000101" "0011010000110" "0011010000111" "0011010001000" "0011010001001" "0011010001010" "0011010001011" "0011010001100" "0011010001101" "0011010001110" "0011010001111" "0011010010000" "0011010010001" "0011010010010" "0011010010011" "0011010010100" "0011010010101" "0011010010110" "0011010010111" "0011010011000" "0011010011001" "0011010011010" "0011010011011" "0011010011100" "0011010011101" "0011010011110" "0011010011111" "0011010100000" "0011010100001" "0011010100010" "0011010100011" "0011010100100" "0011010100101" "0011010100110" "0011010100111" "0011010101000" "0011010101001" "0011010101010" "0011010101011" "0011010101100" "0011010101101" "0011010101110" "0011010101111" "0011010110000" "0011010110001" "0011010110010" "0011010110011" "0011010110100" "0011010110101" "0011010110110" "0011010110111" "0011010111000" "0011010111001" "0011010111010" "0011010111011" "0011010111100" "0011010111101" "0011010111110" "0011010111111" "0011011000000" "0011011000001" "0011011000010" "0011011000011" "0011011000100" "0011011000101" "0011011000110" "0011011000111" "0011011001000" "0011011001001" "0011011001010" "0011011001011" "0011011001100" "0011011001101" "0011011001110" "0011011001111" "0011011010000" "0011011010001" "0011011010010" "0011011010011" "0011011010100" "0011011010101" "0011011010110" "0011011010111" "0011011011000" "0011011011001" "0011011011010" "0011011011011" "0011011011100" "0011011011101" "0011011011110" "0011011011111" "0011011100000" "0011011100001" "0011011100010" "0011011100011" "0011011100100" "0011011100101" "0011011100110" "0011011100111" "0011011101000" "0011011101001" "0011011101010" "0011011101011" "0011011101100" "0011011101101" "0011011101110" "0011011101111" "0011011110000" "0011011110001" "0011011110010" "0011011110011" "0011011110100" "0011011110101" "0011011110110" "0011011110111" "0011011111000" "0011011111001" "0011011111010" "0011011111011" "0011011111100" "0011011111101" "0011011111110" "0011011111111" "0011100000000" "0011100000001" "0011100000010" "0011100000011" "0011100000100" "0011100000101" "0011100000110" "0011100000111" "0011100001000" "0011100001001" "0011100001010" "0011100001011" "0011100001100" "0011100001101" "0011100001110" "0011100001111" "0011100010000" "0011100010001" "0011100010010" "0011100010011" "0011100010100" "0011100010101" "0011100010110" "0011100010111" "0011100011000" "0011100011001" "0011100011010" "0011100011011" "0011100011100" "0011100011101" "0011100011110" "0011100011111" "0011100100000" "0011100100001" "0011100100010" "0011100100011" "0011100100100" "0011100100101" "0011100100110" "0011100100111" "0011100101000" "0011100101001" "0011100101010" "0011100101011" "0011100101100" "0011100101101" "0011100101110" "0011100101111" "0011100110000" "0011100110001" "0011100110010" "0011100110011" "0011100110100" "0011100110101" "0011100110110" "0011100110111" "0011100111000" "0011100111001" "0011100111010" "0011100111011" "0011100111100" "0011100111101" "0011100111110" "0011100111111" "0011101000000" "0011101000001" "0011101000010" "0011101000011" "0011101000100" "0011101000101" "0011101000110" "0011101000111" "0011101001000" "0011101001001" "0011101001010" "0011101001011" "0011101001100" "0011101001101" "0011101001110" "0011101001111" "0011101010000" "0011101010001" "0011101010010" "0011101010011" "0011101010100" "0011101010101" "0011101010110" "0011101010111" "0011101011000" "0011101011001" "0011101011010" "0011101011011" "0011101011100" "0011101011101" "0011101011110" "0011101011111" "0011101100000" "0011101100001" "0011101100010" "0011101100011" "0011101100100" "0011101100101" "0011101100110" "0011101100111" "0011101101000" "0011101101001" "0011101101010" "0011101101011" "0011101101100" "0011101101101" "0011101101110" "0011101101111" "0011101110000" "0011101110001" "0011101110010" "0011101110011" "0011101110100" "0011101110101" "0011101110110" "0011101110111" "0011101111000" "0011101111001" "0011101111010" "0011101111011" "0011101111100" "0011101111101" "0011101111110" "0011101111111" "0011110000000" "0011110000001" "0011110000010" "0011110000011" "0011110000100" "0011110000101" "0011110000110" "0011110000111" "0011110001000" "0011110001001" "0011110001010" "0011110001011" "0011110001100" "0011110001101" "0011110001110" "0011110001111" "0011110010000" "0011110010001" "0011110010010" "0011110010011" "0011110010100" "0011110010101" "0011110010110" "0011110010111" "0011110011000" "0011110011001" "0011110011010" "0011110011011" "0011110011100" "0011110011101" "0011110011110" "0011110011111" "0011110100000" "0011110100001" "0011110100010" "0011110100011" "0011110100100" "0011110100101" "0011110100110" "0011110100111" "0011110101000" "0011110101001" "0011110101010" "0011110101011" "0011110101100" "0011110101101" "0011110101110" "0011110101111" "0011110110000" "0011110110001" "0011110110010" "0011110110011" "0011110110100" "0011110110101" "0011110110110" "0011110110111" "0011110111000" "0011110111001" "0011110111010" "0011110111011" "0011110111100" "0011110111101" "0011110111110" "0011110111111" "0011111000000" "0011111000001" "0011111000010" "0011111000011" "0011111000100" "0011111000101" "0011111000110" "0011111000111" "0011111001000" "0011111001001" "0011111001010" "0011111001011" "0011111001100" "0011111001101" "0011111001110" "0011111001111" "0011111010000" "0011111010001" "0011111010010" "0011111010011" "0011111010100" "0011111010101" "0011111010110" "0011111010111" "0011111011000" "0011111011001" "0011111011010" "0011111011011" "0011111011100" "0011111011101" "0011111011110" "0011111011111" "0011111100000" "0011111100001" "0011111100010" "0011111100011" "0011111100100" "0011111100101" "0011111100110" "0011111100111" "0011111101000" "0011111101001" "0011111101010" "0011111101011" "0011111101100" "0011111101101" "0011111101110" "0011111101111" "0011111110000" "0011111110001" "0011111110010" "0011111110011" "0011111110100" "0011111110101" "0011111110110" "0011111110111" "0011111111000" "0011111111001" "0011111111010" "0011111111011" "0011111111100" "0011111111101" "0011111111110" "0011111111111" "0100000000000" "0100000000001" "0100000000010" "0100000000011" "0100000000100" "0100000000101" "0100000000110" "0100000000111" "0100000001000" "0100000001001" "0100000001010" "0100000001011" "0100000001100" "0100000001101" "0100000001110" "0100000001111" "0100000010000" "0100000010001" "0100000010010" "0100000010011" "0100000010100" "0100000010101" "0100000010110" "0100000010111" "0100000011000" "0100000011001" "0100000011010" "0100000011011" "0100000011100" "0100000011101" "0100000011110" "0100000011111" "0100000100000" "0100000100001" "0100000100010" "0100000100011" "0100000100100" "0100000100101" "0100000100110" "0100000100111" "0100000101000" "0100000101001" "0100000101010" "0100000101011" "0100000101100" "0100000101101" "0100000101110" "0100000101111" "0100000110000" "0100000110001" "0100000110010" "0100000110011" "0100000110100" "0100000110101" "0100000110110" "0100000110111" "0100000111000" "0100000111001" "0100000111010" "0100000111011" "0100000111100" "0100000111101" "0100000111110" "0100000111111" "0100001000000" "0100001000001" "0100001000010" "0100001000011" "0100001000100" "0100001000101" "0100001000110" "0100001000111" "0100001001000" "0100001001001" "0100001001010" "0100001001011" "0100001001100" "0100001001101" "0100001001110" "0100001001111" "0100001010000" "0100001010001" "0100001010010" "0100001010011" "0100001010100" "0100001010101" "0100001010110" "0100001010111" "0100001011000" "0100001011001" "0100001011010" "0100001011011" "0100001011100" "0100001011101" "0100001011110" "0100001011111" "0100001100000" "0100001100001" "0100001100010" "0100001100011" "0100001100100" "0100001100101" "0100001100110" "0100001100111" "0100001101000" "0100001101001" "0100001101010" "0100001101011" "0100001101100" "0100001101101" "0100001101110" "0100001101111" "0100001110000" "0100001110001" "0100001110010" "0100001110011" "0100001110100" "0100001110101" "0100001110110" "0100001110111" "0100001111000" "0100001111001" "0100001111010" "0100001111011" "0100001111100" "0100001111101" "0100001111110" "0100001111111" "0100010000000" "0100010000001" "0100010000010" "0100010000011" "0100010000100" "0100010000101" "0100010000110" "0100010000111" "0100010001000" "0100010001001" "0100010001010" "0100010001011" "0100010001100" "0100010001101" "0100010001110" "0100010001111" "0100010010000" "0100010010001" "0100010010010" "0100010010011" "0100010010100" "0100010010101" "0100010010110" "0100010010111" "0100010011000" "0100010011001" "0100010011010" "0100010011011" "0100010011100" "0100010011101" "0100010011110" "0100010011111" "0100010100000" "0100010100001" "0100010100010" "0100010100011" "0100010100100" "0100010100101" "0100010100110" "0100010100111" "0100010101000" "0100010101001" "0100010101010" "0100010101011" "0100010101100" "0100010101101" "0100010101110" "0100010101111" "0100010110000" "0100010110001" "0100010110010" "0100010110011" "0100010110100" "0100010110101" "0100010110110" "0100010110111" "0100010111000" "0100010111001" "0100010111010" "0100010111011" "0100010111100" "0100010111101" "0100010111110" "0100010111111" "0100011000000" "0100011000001" "0100011000010" "0100011000011" "0100011000100" "0100011000101" "0100011000110" "0100011000111" "0100011001000" "0100011001001" "0100011001010" "0100011001011" "0100011001100" "0100011001101" "0100011001110" "0100011001111" "0100011010000" "0100011010001" "0100011010010" "0100011010011" "0100011010100" "0100011010101" "0100011010110" "0100011010111" "0100011011000" "0100011011001" "0100011011010" "0100011011011" "0100011011100" "0100011011101" "0100011011110" "0100011011111" "0100011100000" "0100011100001" "0100011100010" "0100011100011" "0100011100100" "0100011100101" "0100011100110" "0100011100111" "0100011101000" "0100011101001" "0100011101010" "0100011101011" "0100011101100" "0100011101101" "0100011101110" "0100011101111" "0100011110000" "0100011110001" "0100011110010" "0100011110011" "0100011110100" "0100011110101" "0100011110110" "0100011110111" "0100011111000" "0100011111001" "0100011111010" "0100011111011" "0100011111100" "0100011111101" "0100011111110" "0100011111111" "0100100000000" "0100100000001" "0100100000010" "0100100000011" "0100100000100" "0100100000101" "0100100000110" "0100100000111" "0100100001000" "0100100001001" "0100100001010" "0100100001011" "0100100001100" "0100100001101" "0100100001110" "0100100001111" "0100100010000" "0100100010001" "0100100010010" "0100100010011" "0100100010100" "0100100010101" "0100100010110" "0100100010111" "0100100011000" "0100100011001" "0100100011010" "0100100011011" "0100100011100" "0100100011101" "0100100011110" "0100100011111" "0100100100000" "0100100100001" "0100100100010" "0100100100011" "0100100100100" "0100100100101" "0100100100110" "0100100100111" "0100100101000" "0100100101001" "0100100101010" "0100100101011" "0100100101100" "0100100101101" "0100100101110" "0100100101111" "0100100110000" "0100100110001" "0100100110010" "0100100110011" "0100100110100" "0100100110101" "0100100110110" "0100100110111" "0100100111000" "0100100111001" "0100100111010" "0100100111011" "0100100111100" "0100100111101" "0100100111110" "0100100111111" "0100101000000" "0100101000001" "0100101000010" "0100101000011" "0100101000100" "0100101000101" "0100101000110" "0100101000111" "0100101001000" "0100101001001" "0100101001010" "0100101001011" "0100101001100" "0100101001101" "0100101001110" "0100101001111" "0100101010000" "0100101010001" "0100101010010" "0100101010011" "0100101010100" "0100101010101" "0100101010110" "0100101010111" "0100101011000" "0100101011001" "0100101011010" "0100101011011" "0100101011100" "0100101011101" "0100101011110" "0100101011111" "0100101100000" "0100101100001" "0100101100010" "0100101100011" "0100101100100" "0100101100101" "0100101100110" "0100101100111" "0100101101000" "0100101101001" "0100101101010" "0100101101011" "0100101101100" "0100101101101" "0100101101110" "0100101101111" "0100101110000" "0100101110001" "0100101110010" "0100101110011" "0100101110100" "0100101110101" "0100101110110" "0100101110111" "0100101111000" "0100101111001" "0100101111010" "0100101111011" "0100101111100" "0100101111101" "0100101111110" "0100101111111" "0100110000000" "0100110000001" "0100110000010" "0100110000011" "0100110000100" "0100110000101" "0100110000110" "0100110000111" "0100110001000" "0100110001001" "0100110001010" "0100110001011" "0100110001100" "0100110001101" "0100110001110" "0100110001111" "0100110010000" "0100110010001" "0100110010010" "0100110010011" "0100110010100" "0100110010101" "0100110010110" "0100110010111" "0100110011000" "0100110011001" "0100110011010" "0100110011011" "0100110011100" "0100110011101" "0100110011110" "0100110011111" "0100110100000" "0100110100001" "0100110100010" "0100110100011" "0100110100100" "0100110100101" "0100110100110" "0100110100111" "0100110101000" "0100110101001" "0100110101010" "0100110101011" "0100110101100" "0100110101101" "0100110101110" "0100110101111" "0100110110000" "0100110110001" "0100110110010" "0100110110011" "0100110110100" "0100110110101" "0100110110110" "0100110110111" "0100110111000" "0100110111001" "0100110111010" "0100110111011" "0100110111100" "0100110111101" "0100110111110" "0100110111111" "0100111000000" "0100111000001" "0100111000010" "0100111000011" "0100111000100" "0100111000101" "0100111000110" "0100111000111" "0100111001000" "0100111001001" "0100111001010" "0100111001011" "0100111001100" "0100111001101" "0100111001110" "0100111001111" "0100111010000" "0100111010001" "0100111010010" "0100111010011" "0100111010100" "0100111010101" "0100111010110" "0100111010111" "0100111011000" "0100111011001" "0100111011010" "0100111011011" "0100111011100" "0100111011101" "0100111011110" "0100111011111" "0100111100000" "0100111100001" "0100111100010" "0100111100011" "0100111100100" "0100111100101" "0100111100110" "0100111100111" "0100111101000" "0100111101001" "0100111101010" "0100111101011" "0100111101100" "0100111101101" "0100111101110" "0100111101111" "0100111110000" "0100111110001" "0100111110010" "0100111110011" "0100111110100" "0100111110101" "0100111110110" "0100111110111" "0100111111000" "0100111111001" "0100111111010" "0100111111011" "0100111111100" "0100111111101" "0100111111110" "0100111111111" "0101000000000" "0101000000001" "0101000000010" "0101000000011" "0101000000100" "0101000000101" "0101000000110" "0101000000111" "0101000001000" "0101000001001" "0101000001010" "0101000001011" "0101000001100" "0101000001101" "0101000001110" "0101000001111" "0101000010000" "0101000010001" "0101000010010" "0101000010011" "0101000010100" "0101000010101" "0101000010110" "0101000010111" "0101000011000" "0101000011001" "0101000011010" "0101000011011" "0101000011100" "0101000011101" "0101000011110" "0101000011111" "0101000100000" "0101000100001" "0101000100010" "0101000100011" "0101000100100" "0101000100101" "0101000100110" "0101000100111" "0101000101000" "0101000101001" "0101000101010" "0101000101011" "0101000101100" "0101000101101" "0101000101110" "0101000101111" "0101000110000" "0101000110001" "0101000110010" "0101000110011" "0101000110100" "0101000110101" "0101000110110" "0101000110111" "0101000111000" "0101000111001" "0101000111010" "0101000111011" "0101000111100" "0101000111101" "0101000111110" "0101000111111" "0101001000000" "0101001000001" "0101001000010" "0101001000011" "0101001000100" "0101001000101" "0101001000110" "0101001000111" "0101001001000" "0101001001001" "0101001001010" "0101001001011" "0101001001100" "0101001001101" "0101001001110" "0101001001111" "0101001010000" "0101001010001" "0101001010010" "0101001010011" "0101001010100" "0101001010101" "0101001010110" "0101001010111" "0101001011000" "0101001011001" "0101001011010" "0101001011011" "0101001011100" "0101001011101" "0101001011110" "0101001011111" "0101001100000" "0101001100001" "0101001100010" "0101001100011" "0101001100100" "0101001100101" "0101001100110" "0101001100111" "0101001101000" "0101001101001" "0101001101010" "0101001101011" "0101001101100" "0101001101101" "0101001101110" "0101001101111" "0101001110000" "0101001110001" "0101001110010" "0101001110011" "0101001110100" "0101001110101" "0101001110110" "0101001110111" "0101001111000" "0101001111001" "0101001111010" "0101001111011" "0101001111100" "0101001111101" "0101001111110" "0101001111111" "0101010000000" "0101010000001" "0101010000010" "0101010000011" "0101010000100" "0101010000101" "0101010000110" "0101010000111" "0101010001000" "0101010001001" "0101010001010" "0101010001011" "0101010001100" "0101010001101" "0101010001110" "0101010001111" "0101010010000" "0101010010001" "0101010010010" "0101010010011" "0101010010100" "0101010010101" "0101010010110" "0101010010111" "0101010011000" "0101010011001" "0101010011010" "0101010011011" "0101010011100" "0101010011101" "0101010011110" "0101010011111" "0101010100000" "0101010100001" "0101010100010" "0101010100011" "0101010100100" "0101010100101" "0101010100110" "0101010100111" "0101010101000" "0101010101001" "0101010101010" "0101010101011" "0101010101100" "0101010101101" "0101010101110" "0101010101111" "0101010110000" "0101010110001" "0101010110010" "0101010110011" "0101010110100" "0101010110101" "0101010110110" "0101010110111" "0101010111000" "0101010111001" "0101010111010" "0101010111011" "0101010111100" "0101010111101" "0101010111110" "0101010111111" "0101011000000" "0101011000001" "0101011000010" "0101011000011" "0101011000100" "0101011000101" "0101011000110" "0101011000111" "0101011001000" "0101011001001" "0101011001010" "0101011001011" "0101011001100" "0101011001101" "0101011001110" "0101011001111" "0101011010000" "0101011010001" "0101011010010" "0101011010011" "0101011010100" "0101011010101" "0101011010110" "0101011010111" "0101011011000" "0101011011001" "0101011011010" "0101011011011" "0101011011100" "0101011011101" "0101011011110" "0101011011111" "0101011100000" "0101011100001" "0101011100010" "0101011100011" "0101011100100" "0101011100101" "0101011100110" "0101011100111" "0101011101000" "0101011101001" "0101011101010" "0101011101011" "0101011101100" "0101011101101" "0101011101110" "0101011101111" "0101011110000" "0101011110001" "0101011110010" "0101011110011" "0101011110100" "0101011110101" "0101011110110" "0101011110111" "0101011111000" "0101011111001" "0101011111010" "0101011111011" "0101011111100" "0101011111101" "0101011111110" "0101011111111" "0101100000000" "0101100000001" "0101100000010" "0101100000011" "0101100000100" "0101100000101" "0101100000110" "0101100000111" "0101100001000" "0101100001001" "0101100001010" "0101100001011" "0101100001100" "0101100001101" "0101100001110" "0101100001111" "0101100010000" "0101100010001" "0101100010010" "0101100010011" "0101100010100" "0101100010101" "0101100010110" "0101100010111" "0101100011000" "0101100011001" "0101100011010" "0101100011011" "0101100011100" "0101100011101" "0101100011110" "0101100011111" "0101100100000" "0101100100001" "0101100100010" "0101100100011" "0101100100100" "0101100100101" "0101100100110" "0101100100111" "0101100101000" "0101100101001" "0101100101010" "0101100101011" "0101100101100" "0101100101101" "0101100101110" "0101100101111" "0101100110000" "0101100110001" "0101100110010" "0101100110011" "0101100110100" "0101100110101" "0101100110110" "0101100110111" "0101100111000" "0101100111001" "0101100111010" "0101100111011" "0101100111100" "0101100111101" "0101100111110" "0101100111111" "0101101000000" "0101101000001" "0101101000010" "0101101000011" "0101101000100" "0101101000101" "0101101000110" "0101101000111" "0101101001000" "0101101001001" "0101101001010" "0101101001011" "0101101001100" "0101101001101" "0101101001110" "0101101001111" "0101101010000" "0101101010001" "0101101010010" "0101101010011" "0101101010100" "0101101010101" "0101101010110" "0101101010111" "0101101011000" "0101101011001" "0101101011010" "0101101011011" "0101101011100" "0101101011101" "0101101011110" "0101101011111" "0101101100000" "0101101100001" "0101101100010" "0101101100011" "0101101100100" "0101101100101" "0101101100110" "0101101100111" "0101101101000" "0101101101001" "0101101101010" "0101101101011" "0101101101100" "0101101101101" "0101101101110" "0101101101111" "0101101110000" "0101101110001" "0101101110010" "0101101110011" "0101101110100" "0101101110101" "0101101110110" "0101101110111" "0101101111000" "0101101111001" "0101101111010" "0101101111011" "0101101111100" "0101101111101" "0101101111110" "0101101111111" "0101110000000" "0101110000001" "0101110000010" "0101110000011" "0101110000100" "0101110000101" "0101110000110" "0101110000111" "0101110001000" "0101110001001" "0101110001010" "0101110001011" "0101110001100" "0101110001101" "0101110001110" "0101110001111" "0101110010000" "0101110010001" "0101110010010" "0101110010011" "0101110010100" "0101110010101" "0101110010110" "0101110010111" "0101110011000" "0101110011001" "0101110011010" "0101110011011" "0101110011100" "0101110011101" "0101110011110" "0101110011111" "0101110100000" "0101110100001" "0101110100010" "0101110100011" "0101110100100" "0101110100101" "0101110100110" "0101110100111" "0101110101000" "0101110101001" "0101110101010" "0101110101011" "0101110101100" "0101110101101" "0101110101110" "0101110101111" "0101110110000" "0101110110001" "0101110110010" "0101110110011" "0101110110100" "0101110110101" "0101110110110" "0101110110111" "0101110111000" "0101110111001" "0101110111010" "0101110111011" "0101110111100" "0101110111101" "0101110111110" "0101110111111" "0101111000000" "0101111000001" "0101111000010" "0101111000011" "0101111000100" "0101111000101" "0101111000110" "0101111000111" "0101111001000" "0101111001001" "0101111001010" "0101111001011" "0101111001100" "0101111001101" "0101111001110" "0101111001111" "0101111010000" "0101111010001" "0101111010010" "0101111010011" "0101111010100" "0101111010101" "0101111010110" "0101111010111" "0101111011000" "0101111011001" "0101111011010" "0101111011011" "0101111011100" "0101111011101" "0101111011110" "0101111011111" "0101111100000" "0101111100001" "0101111100010" "0101111100011" "0101111100100" "0101111100101" "0101111100110" "0101111100111" "0101111101000" "0101111101001" "0101111101010" "0101111101011" "0101111101100" "0101111101101" "0101111101110" "0101111101111" "0101111110000" "0101111110001" "0101111110010" "0101111110011" "0101111110100" "0101111110101" "0101111110110" "0101111110111" "0101111111000" "0101111111001" "0101111111010" "0101111111011" "0101111111100" "0101111111101" "0101111111110" "0101111111111" "0110000000000" "0110000000001" "0110000000010" "0110000000011" "0110000000100" "0110000000101" "0110000000110" "0110000000111" "0110000001000" "0110000001001" "0110000001010" "0110000001011" "0110000001100" "0110000001101" "0110000001110" "0110000001111" "0110000010000" "0110000010001" "0110000010010" "0110000010011" "0110000010100" "0110000010101" "0110000010110" "0110000010111" "0110000011000" "0110000011001" "0110000011010" "0110000011011" "0110000011100" "0110000011101" "0110000011110" "0110000011111" "0110000100000" "0110000100001" "0110000100010" "0110000100011" "0110000100100" "0110000100101" "0110000100110" "0110000100111" "0110000101000" "0110000101001" "0110000101010" "0110000101011" "0110000101100" "0110000101101" "0110000101110" "0110000101111" "0110000110000" "0110000110001" "0110000110010" "0110000110011" "0110000110100" "0110000110101" "0110000110110" "0110000110111" "0110000111000" "0110000111001" "0110000111010" "0110000111011" "0110000111100" "0110000111101" "0110000111110" "0110000111111" "0110001000000" "0110001000001" "0110001000010" "0110001000011" "0110001000100" "0110001000101" "0110001000110" "0110001000111" "0110001001000" "0110001001001" "0110001001010" "0110001001011" "0110001001100" "0110001001101" "0110001001110" "0110001001111" "0110001010000" "0110001010001" "0110001010010" "0110001010011" "0110001010100" "0110001010101" "0110001010110" "0110001010111" "0110001011000" "0110001011001" "0110001011010" "0110001011011" "0110001011100" "0110001011101" "0110001011110" "0110001011111" "0110001100000" "0110001100001" "0110001100010" "0110001100011" "0110001100100" "0110001100101" "0110001100110" "0110001100111" "0110001101000" "0110001101001" "0110001101010" "0110001101011" "0110001101100" "0110001101101" "0110001101110" "0110001101111" "0110001110000" "0110001110001" "0110001110010" "0110001110011" "0110001110100" "0110001110101" "0110001110110" "0110001110111" "0110001111000" "0110001111001" "0110001111010" "0110001111011" "0110001111100" "0110001111101" "0110001111110" "0110001111111" "0110010000000" "0110010000001" "0110010000010" "0110010000011" "0110010000100" "0110010000101" "0110010000110" "0110010000111" "0110010001000" "0110010001001" "0110010001010" "0110010001011" "0110010001100" "0110010001101" "0110010001110" "0110010001111" "0110010010000" "0110010010001" "0110010010010" "0110010010011" "0110010010100" "0110010010101" "0110010010110" "0110010010111" "0110010011000" "0110010011001" "0110010011010" "0110010011011" "0110010011100" "0110010011101" "0110010011110" "0110010011111" "0110010100000" "0110010100001" "0110010100010" "0110010100011" "0110010100100" "0110010100101" "0110010100110" "0110010100111" "0110010101000" "0110010101001" "0110010101010" "0110010101011" "0110010101100" "0110010101101" "0110010101110" "0110010101111" "0110010110000" "0110010110001" "0110010110010" "0110010110011" "0110010110100" "0110010110101" "0110010110110" "0110010110111" "0110010111000" "0110010111001" "0110010111010" "0110010111011" "0110010111100" "0110010111101" "0110010111110" "0110010111111" "0110011000000" "0110011000001" "0110011000010" "0110011000011" "0110011000100" "0110011000101" "0110011000110" "0110011000111" "0110011001000" "0110011001001" "0110011001010" "0110011001011" "0110011001100" "0110011001101" "0110011001110" "0110011001111" "0110011010000" "0110011010001" "0110011010010" "0110011010011" "0110011010100" "0110011010101" "0110011010110" "0110011010111" "0110011011000" "0110011011001" "0110011011010" "0110011011011" "0110011011100" "0110011011101" "0110011011110" "0110011011111" "0110011100000" "0110011100001" "0110011100010" "0110011100011" "0110011100100" "0110011100101" "0110011100110" "0110011100111" "0110011101000" "0110011101001" "0110011101010" "0110011101011" "0110011101100" "0110011101101" "0110011101110" "0110011101111" "0110011110000" "0110011110001" "0110011110010" "0110011110011" "0110011110100" "0110011110101" "0110011110110" "0110011110111" "0110011111000" "0110011111001" "0110011111010" "0110011111011" "0110011111100" "0110011111101" "0110011111110" "0110011111111" "0110100000000" "0110100000001" "0110100000010" "0110100000011" "0110100000100" "0110100000101" "0110100000110" "0110100000111" "0110100001000" "0110100001001" "0110100001010" "0110100001011" "0110100001100" "0110100001101" "0110100001110" "0110100001111" "0110100010000" "0110100010001" "0110100010010" "0110100010011" "0110100010100" "0110100010101" "0110100010110" "0110100010111" "0110100011000" "0110100011001" "0110100011010" "0110100011011" "0110100011100" "0110100011101" "0110100011110" "0110100011111" "0110100100000" "0110100100001" "0110100100010" "0110100100011" "0110100100100" "0110100100101" "0110100100110" "0110100100111" "0110100101000" "0110100101001" "0110100101010" "0110100101011" "0110100101100" "0110100101101" "0110100101110" "0110100101111" "0110100110000" "0110100110001" "0110100110010" "0110100110011" "0110100110100" "0110100110101" "0110100110110" "0110100110111" "0110100111000" "0110100111001" "0110100111010" "0110100111011" "0110100111100" "0110100111101" "0110100111110" "0110100111111" "0110101000000" "0110101000001" "0110101000010" "0110101000011" "0110101000100" "0110101000101" "0110101000110" "0110101000111" "0110101001000" "0110101001001" "0110101001010" "0110101001011" "0110101001100" "0110101001101" "0110101001110" "0110101001111" "0110101010000" "0110101010001" "0110101010010" "0110101010011" "0110101010100" "0110101010101" "0110101010110" "0110101010111" "0110101011000" "0110101011001" "0110101011010" "0110101011011" "0110101011100" "0110101011101" "0110101011110" "0110101011111" "0110101100000" "0110101100001" "0110101100010" "0110101100011" "0110101100100" "0110101100101" "0110101100110" "0110101100111" "0110101101000" "0110101101001" "0110101101010" "0110101101011" "0110101101100" "0110101101101" "0110101101110" "0110101101111" "0110101110000" "0110101110001" "0110101110010" "0110101110011" "0110101110100" "0110101110101" "0110101110110" "0110101110111" "0110101111000" "0110101111001" "0110101111010" "0110101111011" "0110101111100" "0110101111101" "0110101111110" "0110101111111" "0110110000000" "0110110000001" "0110110000010" "0110110000011" "0110110000100" "0110110000101" "0110110000110" "0110110000111" "0110110001000" "0110110001001" "0110110001010" "0110110001011" "0110110001100" "0110110001101" "0110110001110" "0110110001111" "0110110010000" "0110110010001" "0110110010010" "0110110010011" "0110110010100" "0110110010101" "0110110010110" "0110110010111" "0110110011000" "0110110011001" "0110110011010" "0110110011011" "0110110011100" "0110110011101" "0110110011110" "0110110011111" "0110110100000" "0110110100001" "0110110100010" "0110110100011" "0110110100100" "0110110100101" "0110110100110" "0110110100111" "0110110101000" "0110110101001" "0110110101010" "0110110101011" "0110110101100" "0110110101101" "0110110101110" "0110110101111" "0110110110000" "0110110110001" "0110110110010" "0110110110011" "0110110110100" "0110110110101" "0110110110110" "0110110110111" "0110110111000" "0110110111001" "0110110111010" "0110110111011" "0110110111100" "0110110111101" "0110110111110" "0110110111111" "0110111000000" "0110111000001" "0110111000010" "0110111000011" "0110111000100" "0110111000101" "0110111000110" "0110111000111" "0110111001000" "0110111001001" "0110111001010" "0110111001011" "0110111001100" "0110111001101" "0110111001110" "0110111001111" "0110111010000" "0110111010001" "0110111010010" "0110111010011" "0110111010100" "0110111010101" "0110111010110" "0110111010111" "0110111011000" "0110111011001" "0110111011010" "0110111011011" "0110111011100" "0110111011101" "0110111011110" "0110111011111" "0110111100000" "0110111100001" "0110111100010" "0110111100011" "0110111100100" "0110111100101" "0110111100110" "0110111100111" "0110111101000" "0110111101001" "0110111101010" "0110111101011" "0110111101100" "0110111101101" "0110111101110" "0110111101111" "0110111110000" "0110111110001" "0110111110010" "0110111110011" "0110111110100" "0110111110101" "0110111110110" "0110111110111" "0110111111000" "0110111111001" "0110111111010" "0110111111011" "0110111111100" "0110111111101" "0110111111110" "0110111111111" "0111000000000" "0111000000001" "0111000000010" "0111000000011" "0111000000100" "0111000000101" "0111000000110" "0111000000111" "0111000001000" "0111000001001" "0111000001010" "0111000001011" "0111000001100" "0111000001101" "0111000001110" "0111000001111" "0111000010000" "0111000010001" "0111000010010" "0111000010011" "0111000010100" "0111000010101" "0111000010110" "0111000010111" "0111000011000" "0111000011001" "0111000011010" "0111000011011" "0111000011100" "0111000011101" "0111000011110" "0111000011111" "0111000100000" "0111000100001" "0111000100010" "0111000100011" "0111000100100" "0111000100101" "0111000100110" "0111000100111" "0111000101000" "0111000101001" "0111000101010" "0111000101011" "0111000101100" "0111000101101" "0111000101110" "0111000101111" "0111000110000" "0111000110001" "0111000110010" "0111000110011" "0111000110100" "0111000110101" "0111000110110" "0111000110111" "0111000111000" "0111000111001" "0111000111010" "0111000111011" "0111000111100" "0111000111101" "0111000111110" "0111000111111" "0111001000000" "0111001000001" "0111001000010" "0111001000011" "0111001000100" "0111001000101" "0111001000110" "0111001000111" "0111001001000" "0111001001001" "0111001001010" "0111001001011" "0111001001100" "0111001001101" "0111001001110" "0111001001111" "0111001010000" "0111001010001" "0111001010010" "0111001010011" "0111001010100" "0111001010101" "0111001010110" "0111001010111" "0111001011000" "0111001011001" "0111001011010" "0111001011011" "0111001011100" "0111001011101" "0111001011110" "0111001011111" "0111001100000" "0111001100001" "0111001100010" "0111001100011" "0111001100100" "0111001100101" "0111001100110" "0111001100111" "0111001101000" "0111001101001" "0111001101010" "0111001101011" "0111001101100" "0111001101101" "0111001101110" "0111001101111" "0111001110000" "0111001110001" "0111001110010" "0111001110011" "0111001110100" "0111001110101" "0111001110110" "0111001110111" "0111001111000" "0111001111001" "0111001111010" "0111001111011" "0111001111100" "0111001111101" "0111001111110" "0111001111111" "0111010000000" "0111010000001" "0111010000010" "0111010000011" "0111010000100" "0111010000101" "0111010000110" "0111010000111" "0111010001000" "0111010001001" "0111010001010" "0111010001011" "0111010001100" "0111010001101" "0111010001110" "0111010001111" "0111010010000" "0111010010001" "0111010010010" "0111010010011" "0111010010100" "0111010010101" "0111010010110" "0111010010111" "0111010011000" "0111010011001" "0111010011010" "0111010011011" "0111010011100" "0111010011101" "0111010011110" "0111010011111" "0111010100000" "0111010100001" "0111010100010" "0111010100011" "0111010100100" "0111010100101" "0111010100110" "0111010100111" "0111010101000" "0111010101001" "0111010101010" "0111010101011" "0111010101100" "0111010101101" "0111010101110" "0111010101111" "0111010110000" "0111010110001" "0111010110010" "0111010110011" "0111010110100" "0111010110101" "0111010110110" "0111010110111" "0111010111000" "0111010111001" "0111010111010" "0111010111011" "0111010111100" "0111010111101" "0111010111110" "0111010111111" "0111011000000" "0111011000001" "0111011000010" "0111011000011" "0111011000100" "0111011000101" "0111011000110" "0111011000111" "0111011001000" "0111011001001" "0111011001010" "0111011001011" "0111011001100" "0111011001101" "0111011001110" "0111011001111" "0111011010000" "0111011010001" "0111011010010" "0111011010011" "0111011010100" "0111011010101" "0111011010110" "0111011010111" "0111011011000" "0111011011001" "0111011011010" "0111011011011" "0111011011100" "0111011011101" "0111011011110" "0111011011111" "0111011100000" "0111011100001" "0111011100010" "0111011100011" "0111011100100" "0111011100101" "0111011100110" "0111011100111" "0111011101000" "0111011101001" "0111011101010" "0111011101011" "0111011101100" "0111011101101" "0111011101110" "0111011101111" "0111011110000" "0111011110001" "0111011110010" "0111011110011" "0111011110100" "0111011110101" "0111011110110" "0111011110111" "0111011111000" "0111011111001" "0111011111010" "0111011111011" "0111011111100" "0111011111101" "0111011111110" "0111011111111" "0111100000000" "0111100000001" "0111100000010" "0111100000011" "0111100000100" "0111100000101" "0111100000110" "0111100000111" "0111100001000" "0111100001001" "0111100001010" "0111100001011" "0111100001100" "0111100001101" "0111100001110" "0111100001111" "0111100010000" "0111100010001" "0111100010010" "0111100010011" "0111100010100" "0111100010101" "0111100010110" "0111100010111" "0111100011000" "0111100011001" "0111100011010" "0111100011011" "0111100011100" "0111100011101" "0111100011110" "0111100011111" "0111100100000" "0111100100001" "0111100100010" "0111100100011" "0111100100100" "0111100100101" "0111100100110" "0111100100111" "0111100101000" "0111100101001" "0111100101010" "0111100101011" "0111100101100" "0111100101101" "0111100101110" "0111100101111" "0111100110000" "0111100110001" "0111100110010" "0111100110011" "0111100110100" "0111100110101" "0111100110110" "0111100110111" "0111100111000" "0111100111001" "0111100111010" "0111100111011" "0111100111100" "0111100111101" "0111100111110" "0111100111111" "0111101000000" "0111101000001" "0111101000010" "0111101000011" "0111101000100" "0111101000101" "0111101000110" "0111101000111" "0111101001000" "0111101001001" "0111101001010" "0111101001011" "0111101001100" "0111101001101" "0111101001110" "0111101001111" "0111101010000" "0111101010001" "0111101010010" "0111101010011" "0111101010100" "0111101010101" "0111101010110" "0111101010111" "0111101011000" "0111101011001" "0111101011010" "0111101011011" "0111101011100" "0111101011101" "0111101011110" "0111101011111" "0111101100000" "0111101100001" "0111101100010" "0111101100011" "0111101100100" "0111101100101" "0111101100110" "0111101100111" "0111101101000" "0111101101001" "0111101101010" "0111101101011" "0111101101100" "0111101101101" "0111101101110" "0111101101111" "0111101110000" "0111101110001" "0111101110010" "0111101110011" "0111101110100" "0111101110101" "0111101110110" "0111101110111" "0111101111000" "0111101111001" "0111101111010" "0111101111011" "0111101111100" "0111101111101" "0111101111110" "0111101111111" "0111110000000" "0111110000001" "0111110000010" "0111110000011" "0111110000100" "0111110000101" "0111110000110" "0111110000111" "0111110001000" "0111110001001" "0111110001010" "0111110001011" "0111110001100" "0111110001101" "0111110001110" "0111110001111" "0111110010000" "0111110010001" "0111110010010" "0111110010011" "0111110010100" "0111110010101" "0111110010110" "0111110010111" "0111110011000" "0111110011001" "0111110011010" "0111110011011" "0111110011100" "0111110011101" "0111110011110" "0111110011111" "0111110100000" "0111110100001" "0111110100010" "0111110100011" "0111110100100" "0111110100101" "0111110100110" "0111110100111" "0111110101000" "0111110101001" "0111110101010" "0111110101011" "0111110101100" "0111110101101" "0111110101110" "0111110101111" "0111110110000" "0111110110001" "0111110110010" "0111110110011" "0111110110100" "0111110110101" "0111110110110" "0111110110111" "0111110111000" "0111110111001" "0111110111010" "0111110111011" "0111110111100" "0111110111101" "0111110111110" "0111110111111" "0111111000000" "0111111000001" "0111111000010" "0111111000011" "0111111000100" "0111111000101" "0111111000110" "0111111000111" "0111111001000" "0111111001001" "0111111001010" "0111111001011" "0111111001100" "0111111001101" "0111111001110" "0111111001111" "0111111010000" "0111111010001" "0111111010010" "0111111010011" "0111111010100" "0111111010101" "0111111010110" "0111111010111" "0111111011000" "0111111011001" "0111111011010" "0111111011011" "0111111011100" "0111111011101" "0111111011110" "0111111011111" "0111111100000" "0111111100001" "0111111100010" "0111111100011" "0111111100100" "0111111100101" "0111111100110" "0111111100111" "0111111101000" "0111111101001" "0111111101010" "0111111101011" "0111111101100" "0111111101101" "0111111101110" "0111111101111" "0111111110000" "0111111110001" "0111111110010" "0111111110011" "0111111110100" "0111111110101" "0111111110110" "0111111110111" "0111111111000" "0111111111001" "0111111111010" "0111111111011" "0111111111100" "0111111111101" "0111111111110" "0111111111111" "1000000000000" "1000000000001" "1000000000010" "1000000000011" "1000000000100" "1000000000101" "1000000000110" "1000000000111" "1000000001000" "1000000001001" "1000000001010" "1000000001011" "1000000001100" "1000000001101" "1000000001110" "1000000001111" "1000000010000" "1000000010001" "1000000010010" "1000000010011" "1000000010100" "1000000010101" "1000000010110" "1000000010111" "1000000011000" "1000000011001" "1000000011010" "1000000011011" "1000000011100" "1000000011101" "1000000011110" "1000000011111" "1000000100000" "1000000100001" "1000000100010" "1000000100011" "1000000100100" "1000000100101" "1000000100110" "1000000100111" "1000000101000" "1000000101001" "1000000101010" "1000000101011" "1000000101100" "1000000101101" "1000000101110" "1000000101111" "1000000110000" "1000000110001" "1000000110010" "1000000110011" "1000000110100" "1000000110101" "1000000110110" "1000000110111" "1000000111000" "1000000111001" "1000000111010" "1000000111011" "1000000111100" "1000000111101" "1000000111110" "1000000111111" "1000001000000" "1000001000001" "1000001000010" "1000001000011" "1000001000100" "1000001000101" "1000001000110" "1000001000111" "1000001001000" "1000001001001" "1000001001010" "1000001001011" "1000001001100" "1000001001101" "1000001001110" "1000001001111" "1000001010000" "1000001010001" "1000001010010" "1000001010011" "1000001010100" "1000001010101" "1000001010110" "1000001010111" "1000001011000" "1000001011001" "1000001011010" "1000001011011" "1000001011100" "1000001011101" "1000001011110" "1000001011111" "1000001100000" "1000001100001" "1000001100010" "1000001100011" "1000001100100" "1000001100101" "1000001100110" "1000001100111" "1000001101000" "1000001101001" "1000001101010" "1000001101011" "1000001101100" "1000001101101" "1000001101110" "1000001101111" "1000001110000" "1000001110001" "1000001110010" "1000001110011" "1000001110100" "1000001110101" "1000001110110" "1000001110111" "1000001111000" "1000001111001" "1000001111010" "1000001111011" "1000001111100" "1000001111101" "1000001111110" "1000001111111" "1000010000000" "1000010000001" "1000010000010" "1000010000011" "1000010000100" "1000010000101" "1000010000110" "1000010000111" "1000010001000" "1000010001001" "1000010001010" "1000010001011" "1000010001100" "1000010001101" "1000010001110" "1000010001111" "1000010010000" "1000010010001" "1000010010010" "1000010010011" "1000010010100" "1000010010101" "1000010010110" "1000010010111" "1000010011000" "1000010011001" "1000010011010" "1000010011011" "1000010011100" "1000010011101" "1000010011110" "1000010011111" "1000010100000" "1000010100001" "1000010100010" "1000010100011" "1000010100100" "1000010100101" "1000010100110" "1000010100111" "1000010101000" "1000010101001" "1000010101010" "1000010101011" "1000010101100" "1000010101101" "1000010101110" "1000010101111" "1000010110000" "1000010110001" "1000010110010" "1000010110011" "1000010110100" "1000010110101" "1000010110110" "1000010110111" "1000010111000" "1000010111001" "1000010111010" "1000010111011" "1000010111100" "1000010111101" "1000010111110" "1000010111111" "1000011000000" "1000011000001" "1000011000010" "1000011000011" "1000011000100" "1000011000101" "1000011000110" "1000011000111" "1000011001000" "1000011001001" "1000011001010" "1000011001011" "1000011001100" "1000011001101" "1000011001110" "1000011001111" "1000011010000" "1000011010001" "1000011010010" "1000011010011" "1000011010100" "1000011010101" "1000011010110" "1000011010111" "1000011011000" "1000011011001" "1000011011010" "1000011011011" "1000011011100" "1000011011101" "1000011011110" "1000011011111" "1000011100000" "1000011100001" "1000011100010" "1000011100011" "1000011100100" "1000011100101" "1000011100110" "1000011100111" "1000011101000" "1000011101001" "1000011101010" "1000011101011" "1000011101100" "1000011101101" "1000011101110" "1000011101111" "1000011110000" "1000011110001" "1000011110010" "1000011110011" "1000011110100" "1000011110101" "1000011110110" "1000011110111" "1000011111000" "1000011111001" "1000011111010" "1000011111011" "1000011111100" "1000011111101" "1000011111110" "1000011111111" "1000100000000" "1000100000001" "1000100000010" "1000100000011" "1000100000100" "1000100000101" "1000100000110" "1000100000111" "1000100001000" "1000100001001" "1000100001010" "1000100001011" "1000100001100" "1000100001101" "1000100001110" "1000100001111" "1000100010000" "1000100010001" "1000100010010" "1000100010011" "1000100010100" "1000100010101" "1000100010110" "1000100010111" "1000100011000" "1000100011001" "1000100011010" "1000100011011" "1000100011100" "1000100011101" "1000100011110" "1000100011111" "1000100100000" "1000100100001" "1000100100010" "1000100100011" "1000100100100" "1000100100101" "1000100100110" "1000100100111" "1000100101000" "1000100101001" "1000100101010" "1000100101011" "1000100101100" "1000100101101" "1000100101110" "1000100101111" "1000100110000" "1000100110001" "1000100110010" "1000100110011" "1000100110100" "1000100110101" "1000100110110" "1000100110111" "1000100111000" "1000100111001" "1000100111010" "1000100111011" "1000100111100" "1000100111101" "1000100111110" "1000100111111" "1000101000000" "1000101000001" "1000101000010" "1000101000011" "1000101000100" "1000101000101" "1000101000110" "1000101000111" "1000101001000" "1000101001001" "1000101001010" "1000101001011" "1000101001100" "1000101001101" "1000101001110" "1000101001111" "1000101010000" "1000101010001" "1000101010010" "1000101010011" "1000101010100" "1000101010101" "1000101010110" "1000101010111" "1000101011000" "1000101011001" "1000101011010" "1000101011011" "1000101011100" "1000101011101" "1000101011110" "1000101011111" "1000101100000" "1000101100001" "1000101100010" "1000101100011" "1000101100100" "1000101100101" "1000101100110" "1000101100111" "1000101101000" "1000101101001" "1000101101010" "1000101101011" "1000101101100" "1000101101101" "1000101101110" "1000101101111" "1000101110000" "1000101110001" "1000101110010" "1000101110011" "1000101110100" "1000101110101" "1000101110110" "1000101110111" "1000101111000" "1000101111001" "1000101111010" "1000101111011" "1000101111100" "1000101111101" "1000101111110" "1000101111111" "1000110000000" "1000110000001" "1000110000010" "1000110000011" "1000110000100" "1000110000101" "1000110000110" "1000110000111" "1000110001000" "1000110001001" "1000110001010" "1000110001011" "1000110001100" "1000110001101" "1000110001110" "1000110001111" "1000110010000" "1000110010001" "1000110010010" "1000110010011" "1000110010100" "1000110010101" "1000110010110" "1000110010111" "1000110011000" "1000110011001" "1000110011010" "1000110011011" "1000110011100" "1000110011101" "1000110011110" "1000110011111" "1000110100000" "1000110100001" "1000110100010" "1000110100011" "1000110100100" "1000110100101" "1000110100110" "1000110100111" "1000110101000" "1000110101001" "1000110101010" "1000110101011" "1000110101100" "1000110101101" "1000110101110" "1000110101111" "1000110110000" "1000110110001" "1000110110010" "1000110110011" "1000110110100" "1000110110101" "1000110110110" "1000110110111" "1000110111000" "1000110111001" "1000110111010" "1000110111011" "1000110111100" "1000110111101" "1000110111110" "1000110111111" "1000111000000" "1000111000001" "1000111000010" "1000111000011" "1000111000100" "1000111000101" "1000111000110" "1000111000111" "1000111001000" "1000111001001" "1000111001010" "1000111001011" "1000111001100" "1000111001101" "1000111001110" "1000111001111" "1000111010000" "1000111010001" "1000111010010" "1000111010011" "1000111010100" "1000111010101" "1000111010110" "1000111010111" "1000111011000" "1000111011001" "1000111011010" "1000111011011" "1000111011100" "1000111011101" "1000111011110" "1000111011111" "1000111100000" "1000111100001" "1000111100010" "1000111100011" "1000111100100" "1000111100101" "1000111100110" "1000111100111" "1000111101000" "1000111101001" "1000111101010" "1000111101011" "1000111101100" "1000111101101" "1000111101110" "1000111101111" "1000111110000" "1000111110001" "1000111110010" "1000111110011" "1000111110100" "1000111110101" "1000111110110" "1000111110111" "1000111111000" "1000111111001" "1000111111010" "1000111111011" "1000111111100" "1000111111101" "1000111111110" "1000111111111" "1001000000000" "1001000000001" "1001000000010" "1001000000011" "1001000000100" "1001000000101" "1001000000110" "1001000000111" "1001000001000" "1001000001001" "1001000001010" "1001000001011" "1001000001100" "1001000001101" "1001000001110" "1001000001111" "1001000010000" "1001000010001" "1001000010010" "1001000010011" "1001000010100" "1001000010101" "1001000010110" "1001000010111" "1001000011000" "1001000011001" "1001000011010" "1001000011011" "1001000011100" "1001000011101" "1001000011110" "1001000011111" "1001000100000" "1001000100001" "1001000100010" "1001000100011" "1001000100100" "1001000100101" "1001000100110" "1001000100111" "1001000101000" "1001000101001" "1001000101010" "1001000101011" "1001000101100" "1001000101101" "1001000101110" "1001000101111" "1001000110000" "1001000110001" "1001000110010" "1001000110011" "1001000110100" "1001000110101" "1001000110110" "1001000110111" "1001000111000" "1001000111001" "1001000111010" "1001000111011" "1001000111100" "1001000111101" "1001000111110" "1001000111111" "1001001000000" "1001001000001" "1001001000010" "1001001000011" "1001001000100" "1001001000101" "1001001000110" "1001001000111" "1001001001000" "1001001001001" "1001001001010" "1001001001011" "1001001001100" "1001001001101" "1001001001110" "1001001001111" "1001001010000" "1001001010001" "1001001010010" "1001001010011" "1001001010100" "1001001010101" "1001001010110" "1001001010111" "1001001011000" "1001001011001" "1001001011010" "1001001011011" "1001001011100" "1001001011101" "1001001011110" "1001001011111" "1001001100000" "1001001100001" "1001001100010" "1001001100011" "1001001100100" "1001001100101" "1001001100110" "1001001100111" "1001001101000" "1001001101001" "1001001101010" "1001001101011" "1001001101100" "1001001101101" "1001001101110" "1001001101111" "1001001110000" "1001001110001" "1001001110010" "1001001110011" "1001001110100" "1001001110101" "1001001110110" "1001001110111" "1001001111000" "1001001111001" "1001001111010" "1001001111011" "1001001111100" "1001001111101" "1001001111110" "1001001111111" "1001010000000" "1001010000001" "1001010000010" "1001010000011" "1001010000100" "1001010000101" "1001010000110" "1001010000111" "1001010001000" "1001010001001" "1001010001010" "1001010001011" "1001010001100" "1001010001101" "1001010001110" "1001010001111" "1001010010000" "1001010010001" "1001010010010" "1001010010011" "1001010010100" "1001010010101" "1001010010110" "1001010010111" "1001010011000" "1001010011001" "1001010011010" "1001010011011" "1001010011100" "1001010011101" "1001010011110" "1001010011111" "1001010100000" "1001010100001" "1001010100010" "1001010100011" "1001010100100" "1001010100101" "1001010100110" "1001010100111" "1001010101000" "1001010101001" "1001010101010" "1001010101011" "1001010101100" "1001010101101" "1001010101110" "1001010101111" "1001010110000" "1001010110001" "1001010110010" "1001010110011" "1001010110100" "1001010110101" "1001010110110" "1001010110111" "1001010111000" "1001010111001" "1001010111010" "1001010111011" "1001010111100" "1001010111101" "1001010111110" "1001010111111" "1001011000000" "1001011000001" "1001011000010" "1001011000011" "1001011000100" "1001011000101" "1001011000110" "1001011000111" "1001011001000" "1001011001001" "1001011001010" "1001011001011" "1001011001100" "1001011001101" "1001011001110" "1001011001111" "1001011010000" "1001011010001" "1001011010010" "1001011010011" "1001011010100" "1001011010101" "1001011010110" "1001011010111" "1001011011000" "1001011011001" "1001011011010" "1001011011011" "1001011011100" "1001011011101" "1001011011110" "1001011011111" "1001011100000" "1001011100001" "1001011100010" "1001011100011" "1001011100100" "1001011100101" "1001011100110" "1001011100111" "1001011101000" "1001011101001" "1001011101010" "1001011101011" "1001011101100" "1001011101101" "1001011101110" "1001011101111" "1001011110000" "1001011110001" "1001011110010" "1001011110011" "1001011110100" "1001011110101" "1001011110110" "1001011110111" "1001011111000" "1001011111001" "1001011111010" "1001011111011" "1001011111100" "1001011111101" "1001011111110" "1001011111111" "1001100000000" "1001100000001" "1001100000010" "1001100000011" "1001100000100" "1001100000101" "1001100000110" "1001100000111" "1001100001000" "1001100001001" "1001100001010" "1001100001011" "1001100001100" "1001100001101" "1001100001110" "1001100001111" "1001100010000" "1001100010001" "1001100010010" "1001100010011" "1001100010100" "1001100010101" "1001100010110" "1001100010111" "1001100011000" "1001100011001" "1001100011010" "1001100011011" "1001100011100" "1001100011101" "1001100011110" "1001100011111" "1001100100000" "1001100100001" "1001100100010" "1001100100011" "1001100100100" "1001100100101" "1001100100110" "1001100100111" "1001100101000" "1001100101001" "1001100101010" "1001100101011" "1001100101100" "1001100101101" "1001100101110" "1001100101111" "1001100110000" "1001100110001" "1001100110010" "1001100110011" "1001100110100" "1001100110101" "1001100110110" "1001100110111" "1001100111000" "1001100111001" "1001100111010" "1001100111011" "1001100111100" "1001100111101" "1001100111110" "1001100111111" "1001101000000" "1001101000001" "1001101000010" "1001101000011" "1001101000100" "1001101000101" "1001101000110" "1001101000111" "1001101001000" "1001101001001" "1001101001010" "1001101001011" "1001101001100" "1001101001101" "1001101001110" "1001101001111" "1001101010000" "1001101010001" "1001101010010" "1001101010011" "1001101010100" "1001101010101" "1001101010110" "1001101010111" "1001101011000" "1001101011001" "1001101011010" "1001101011011" "1001101011100" "1001101011101" "1001101011110" "1001101011111" "1001101100000" "1001101100001" "1001101100010" "1001101100011" "1001101100100" "1001101100101" "1001101100110" "1001101100111" "1001101101000" "1001101101001" "1001101101010" "1001101101011" "1001101101100" "1001101101101" "1001101101110" "1001101101111" "1001101110000" "1001101110001" "1001101110010" "1001101110011" "1001101110100" "1001101110101" "1001101110110" "1001101110111" "1001101111000" "1001101111001" "1001101111010" "1001101111011" "1001101111100" "1001101111101" "1001101111110" "1001101111111" "1001110000000" "1001110000001" "1001110000010" "1001110000011" "1001110000100" "1001110000101" "1001110000110" "1001110000111" "1001110001000" "1001110001001" "1001110001010" "1001110001011" "1001110001100" "1001110001101" "1001110001110" "1001110001111" "1001110010000" "1001110010001" "1001110010010" "1001110010011" "1001110010100" "1001110010101" "1001110010110" "1001110010111" "1001110011000" "1001110011001" "1001110011010" "1001110011011" "1001110011100" "1001110011101" "1001110011110" "1001110011111" "1001110100000" "1001110100001" "1001110100010" "1001110100011" "1001110100100" "1001110100101" "1001110100110" "1001110100111" "1001110101000" "1001110101001" "1001110101010" "1001110101011" "1001110101100" "1001110101101" "1001110101110" "1001110101111" "1001110110000" "1001110110001" "1001110110010" "1001110110011" "1001110110100" "1001110110101" "1001110110110" "1001110110111" "1001110111000" "1001110111001" "1001110111010" "1001110111011" "1001110111100" "1001110111101" "1001110111110" "1001110111111" "1001111000000" "1001111000001" "1001111000010" "1001111000011" "1001111000100" "1001111000101" "1001111000110" "1001111000111" "1001111001000" "1001111001001" "1001111001010" "1001111001011" "1001111001100" "1001111001101" "1001111001110" "1001111001111" "1001111010000" "1001111010001" "1001111010010" "1001111010011" "1001111010100" "1001111010101" "1001111010110" "1001111010111" "1001111011000" "1001111011001" "1001111011010" "1001111011011" "1001111011100" "1001111011101" "1001111011110" "1001111011111" "1001111100000" "1001111100001" "1001111100010" "1001111100011" "1001111100100" "1001111100101" "1001111100110" "1001111100111" "1001111101000" "1001111101001" "1001111101010" "1001111101011" "1001111101100" "1001111101101" "1001111101110" "1001111101111" "1001111110000" "1001111110001" "1001111110010" "1001111110011" "1001111110100" "1001111110101" "1001111110110" "1001111110111" "1001111111000" "1001111111001" "1001111111010" "1001111111011" "1001111111100" "1001111111101" "1001111111110" "1001111111111" "1010000000000" "1010000000001" "1010000000010" "1010000000011" "1010000000100" "1010000000101" "1010000000110" "1010000000111" "1010000001000" "1010000001001" "1010000001010" "1010000001011" "1010000001100" "1010000001101" "1010000001110" "1010000001111" "1010000010000" "1010000010001" "1010000010010" "1010000010011" "1010000010100" "1010000010101" "1010000010110" "1010000010111" "1010000011000" "1010000011001" "1010000011010" "1010000011011" "1010000011100" "1010000011101" "1010000011110" "1010000011111" "1010000100000" "1010000100001" "1010000100010" "1010000100011" "1010000100100" "1010000100101" "1010000100110" "1010000100111" "1010000101000" "1010000101001" "1010000101010" "1010000101011" "1010000101100" "1010000101101" "1010000101110" "1010000101111" "1010000110000" "1010000110001" "1010000110010" "1010000110011" "1010000110100" "1010000110101" "1010000110110" "1010000110111" "1010000111000" "1010000111001" "1010000111010" "1010000111011" "1010000111100" "1010000111101" "1010000111110" "1010000111111" "1010001000000" "1010001000001" "1010001000010" "1010001000011" "1010001000100" "1010001000101" "1010001000110" "1010001000111" "1010001001000" "1010001001001" "1010001001010" "1010001001011" "1010001001100" "1010001001101" "1010001001110" "1010001001111" "1010001010000" "1010001010001" "1010001010010" "1010001010011" "1010001010100" "1010001010101" "1010001010110" "1010001010111" "1010001011000" "1010001011001" "1010001011010" "1010001011011" "1010001011100" "1010001011101" "1010001011110" "1010001011111" "1010001100000" "1010001100001" "1010001100010" "1010001100011" "1010001100100" "1010001100101" "1010001100110" "1010001100111" "1010001101000" "1010001101001" "1010001101010" "1010001101011" "1010001101100" "1010001101101" "1010001101110" "1010001101111" "1010001110000" "1010001110001" "1010001110010" "1010001110011" "1010001110100" "1010001110101" "1010001110110" "1010001110111" "1010001111000" "1010001111001" "1010001111010" "1010001111011" "1010001111100" "1010001111101" "1010001111110" "1010001111111" "1010010000000" "1010010000001" "1010010000010" "1010010000011" "1010010000100" "1010010000101" "1010010000110" "1010010000111" "1010010001000" "1010010001001" "1010010001010" "1010010001011" "1010010001100" "1010010001101" "1010010001110" "1010010001111" "1010010010000" "1010010010001" "1010010010010" "1010010010011" "1010010010100" "1010010010101" "1010010010110" "1010010010111" "1010010011000" "1010010011001" "1010010011010" "1010010011011" "1010010011100" "1010010011101" "1010010011110" "1010010011111" "1010010100000" "1010010100001" "1010010100010" "1010010100011" "1010010100100" "1010010100101" "1010010100110" "1010010100111" "1010010101000" "1010010101001" "1010010101010" "1010010101011" "1010010101100" "1010010101101" "1010010101110" "1010010101111" "1010010110000" "1010010110001" "1010010110010" "1010010110011" "1010010110100" "1010010110101" "1010010110110" "1010010110111" "1010010111000" "1010010111001" "1010010111010" "1010010111011" "1010010111100" "1010010111101" "1010010111110" "1010010111111" "1010011000000" "1010011000001" "1010011000010" "1010011000011" "1010011000100" "1010011000101" "1010011000110" "1010011000111" "1010011001000" "1010011001001" "1010011001010" "1010011001011" "1010011001100" "1010011001101" "1010011001110" "1010011001111" "1010011010000" "1010011010001" "1010011010010" "1010011010011" "1010011010100" "1010011010101" "1010011010110" "1010011010111" "1010011011000" "1010011011001" "1010011011010" "1010011011011" "1010011011100" "1010011011101" "1010011011110" "1010011011111" "1010011100000" "1010011100001" "1010011100010" "1010011100011" "1010011100100" "1010011100101" "1010011100110" "1010011100111" "1010011101000" "1010011101001" "1010011101010" "1010011101011" "1010011101100" "1010011101101" "1010011101110" "1010011101111" "1010011110000" "1010011110001" "1010011110010" "1010011110011" "1010011110100" "1010011110101" "1010011110110" "1010011110111" "1010011111000" "1010011111001" "1010011111010" "1010011111011" "1010011111100" "1010011111101" "1010011111110" "1010011111111" "1010100000000" "1010100000001" "1010100000010" "1010100000011" "1010100000100" "1010100000101" "1010100000110" "1010100000111" "1010100001000" "1010100001001" "1010100001010" "1010100001011" "1010100001100" "1010100001101" "1010100001110" "1010100001111" "1010100010000" "1010100010001" "1010100010010" "1010100010011" "1010100010100" "1010100010101" "1010100010110" "1010100010111" "1010100011000" "1010100011001" "1010100011010" "1010100011011" "1010100011100" "1010100011101" "1010100011110" "1010100011111" "1010100100000" "1010100100001" "1010100100010" "1010100100011" "1010100100100" "1010100100101" "1010100100110" "1010100100111" "1010100101000" "1010100101001" "1010100101010" "1010100101011" "1010100101100" "1010100101101" "1010100101110" "1010100101111" "1010100110000" "1010100110001" "1010100110010" "1010100110011" "1010100110100" "1010100110101" "1010100110110" "1010100110111" "1010100111000" "1010100111001" "1010100111010" "1010100111011" "1010100111100" "1010100111101" "1010100111110" "1010100111111" "1010101000000" "1010101000001" "1010101000010" "1010101000011" "1010101000100" "1010101000101" "1010101000110" "1010101000111" "1010101001000" "1010101001001" "1010101001010" "1010101001011" "1010101001100" "1010101001101" "1010101001110" "1010101001111" "1010101010000" "1010101010001" "1010101010010" "1010101010011" "1010101010100" "1010101010101" "1010101010110" "1010101010111" "1010101011000" "1010101011001" "1010101011010" "1010101011011" "1010101011100" "1010101011101" "1010101011110" "1010101011111" "1010101100000" "1010101100001" "1010101100010" "1010101100011" "1010101100100" "1010101100101" "1010101100110" "1010101100111" "1010101101000" "1010101101001" "1010101101010" "1010101101011" "1010101101100" "1010101101101" "1010101101110" "1010101101111" "1010101110000" "1010101110001" "1010101110010" "1010101110011" "1010101110100" "1010101110101" "1010101110110" "1010101110111" "1010101111000" "1010101111001" "1010101111010" "1010101111011" "1010101111100" "1010101111101" "1010101111110" "1010101111111" "1010110000000" "1010110000001" "1010110000010" "1010110000011" "1010110000100" "1010110000101" "1010110000110" "1010110000111" "1010110001000" "1010110001001" "1010110001010" "1010110001011" "1010110001100" "1010110001101" "1010110001110" "1010110001111" "1010110010000" "1010110010001" "1010110010010" "1010110010011" "1010110010100" "1010110010101" "1010110010110" "1010110010111" "1010110011000" "1010110011001" "1010110011010" "1010110011011" "1010110011100" "1010110011101" "1010110011110" "1010110011111" "1010110100000" "1010110100001" "1010110100010" "1010110100011" "1010110100100" "1010110100101" "1010110100110" "1010110100111" "1010110101000" "1010110101001" "1010110101010" "1010110101011" "1010110101100" "1010110101101" "1010110101110" "1010110101111" "1010110110000" "1010110110001" "1010110110010" "1010110110011" "1010110110100" "1010110110101" "1010110110110" "1010110110111" "1010110111000" "1010110111001" "1010110111010" "1010110111011" "1010110111100" "1010110111101" "1010110111110" "1010110111111" "1010111000000" "1010111000001" "1010111000010" "1010111000011" "1010111000100" "1010111000101" "1010111000110" "1010111000111" "1010111001000" "1010111001001" "1010111001010" "1010111001011" "1010111001100" "1010111001101" "1010111001110" "1010111001111" "1010111010000" "1010111010001" "1010111010010" "1010111010011" "1010111010100" "1010111010101" "1010111010110" "1010111010111" "1010111011000" "1010111011001" "1010111011010" "1010111011011" "1010111011100" "1010111011101" "1010111011110" "1010111011111" "1010111100000" "1010111100001" "1010111100010" "1010111100011" "1010111100100" "1010111100101" "1010111100110" "1010111100111" "1010111101000" "1010111101001" "1010111101010" "1010111101011" "1010111101100" "1010111101101" "1010111101110" "1010111101111" "1010111110000" "1010111110001" "1010111110010" "1010111110011" "1010111110100" "1010111110101" "1010111110110" "1010111110111" "1010111111000" "1010111111001" "1010111111010" "1010111111011" "1010111111100" "1010111111101" "1010111111110" "1010111111111" "1011000000000" "1011000000001" "1011000000010" "1011000000011" "1011000000100" "1011000000101" "1011000000110" "1011000000111" "1011000001000" "1011000001001" "1011000001010" "1011000001011" "1011000001100" "1011000001101" "1011000001110" "1011000001111" "1011000010000" "1011000010001" "1011000010010" "1011000010011" "1011000010100" "1011000010101" "1011000010110" "1011000010111" "1011000011000" "1011000011001" "1011000011010" "1011000011011" "1011000011100" "1011000011101" "1011000011110" "1011000011111" "1011000100000" "1011000100001" "1011000100010" "1011000100011" "1011000100100" "1011000100101" "1011000100110" "1011000100111" "1011000101000" "1011000101001" "1011000101010" "1011000101011" "1011000101100" "1011000101101" "1011000101110" "1011000101111" "1011000110000" "1011000110001" "1011000110010" "1011000110011" "1011000110100" "1011000110101" "1011000110110" "1011000110111" "1011000111000" "1011000111001" "1011000111010" "1011000111011" "1011000111100" "1011000111101" "1011000111110" "1011000111111" "1011001000000" "1011001000001" "1011001000010" "1011001000011" "1011001000100" "1011001000101" "1011001000110" "1011001000111" "1011001001000" "1011001001001" "1011001001010" "1011001001011" "1011001001100" "1011001001101" "1011001001110" "1011001001111" "1011001010000" "1011001010001" "1011001010010" "1011001010011" "1011001010100" "1011001010101" "1011001010110" "1011001010111" "1011001011000" "1011001011001" "1011001011010" "1011001011011" "1011001011100" "1011001011101" "1011001011110" "1011001011111" "1011001100000" "1011001100001" "1011001100010" "1011001100011" "1011001100100" "1011001100101" "1011001100110" "1011001100111" "1011001101000" "1011001101001" "1011001101010" "1011001101011" "1011001101100" "1011001101101" "1011001101110" "1011001101111" "1011001110000" "1011001110001" "1011001110010" "1011001110011" "1011001110100" "1011001110101" "1011001110110" "1011001110111" "1011001111000" "1011001111001" "1011001111010" "1011001111011" "1011001111100" "1011001111101" "1011001111110" "1011001111111" "1011010000000" "1011010000001" "1011010000010" "1011010000011" "1011010000100" "1011010000101" "1011010000110" "1011010000111" "1011010001000" "1011010001001" "1011010001010" "1011010001011" "1011010001100" "1011010001101" "1011010001110" "1011010001111" "1011010010000" "1011010010001" "1011010010010" "1011010010011" "1011010010100" "1011010010101" "1011010010110" "1011010010111" "1011010011000" "1011010011001" "1011010011010" "1011010011011" "1011010011100" "1011010011101" "1011010011110" "1011010011111" "1011010100000" "1011010100001" "1011010100010" "1011010100011" "1011010100100" "1011010100101" "1011010100110" "1011010100111" "1011010101000" "1011010101001" "1011010101010" "1011010101011" "1011010101100" "1011010101101" "1011010101110" "1011010101111" "1011010110000" "1011010110001" "1011010110010" "1011010110011" "1011010110100" "1011010110101" "1011010110110" "1011010110111" "1011010111000" "1011010111001" "1011010111010" "1011010111011" "1011010111100" "1011010111101" "1011010111110" "1011010111111" "1011011000000" "1011011000001" "1011011000010" "1011011000011" "1011011000100" "1011011000101" "1011011000110" "1011011000111" "1011011001000" "1011011001001" "1011011001010" "1011011001011" "1011011001100" "1011011001101" "1011011001110" "1011011001111" "1011011010000" "1011011010001" "1011011010010" "1011011010011" "1011011010100" "1011011010101" "1011011010110" "1011011010111" "1011011011000" "1011011011001" "1011011011010" "1011011011011" "1011011011100" "1011011011101" "1011011011110" "1011011011111" "1011011100000" "1011011100001" "1011011100010" "1011011100011" "1011011100100" "1011011100101" "1011011100110" "1011011100111" "1011011101000" "1011011101001" "1011011101010" "1011011101011" "1011011101100" "1011011101101" "1011011101110" "1011011101111" "1011011110000" "1011011110001" "1011011110010" "1011011110011" "1011011110100" "1011011110101" "1011011110110" "1011011110111" "1011011111000" "1011011111001" "1011011111010" "1011011111011" "1011011111100" "1011011111101" "1011011111110" "1011011111111" "1011100000000" "1011100000001" "1011100000010" "1011100000011" "1011100000100" "1011100000101" "1011100000110" "1011100000111" "1011100001000" "1011100001001" "1011100001010" "1011100001011" "1011100001100" "1011100001101" "1011100001110" "1011100001111" "1011100010000" "1011100010001" "1011100010010" "1011100010011" "1011100010100" "1011100010101" "1011100010110" "1011100010111" "1011100011000" "1011100011001" "1011100011010" "1011100011011" "1011100011100" "1011100011101" "1011100011110" "1011100011111" "1011100100000" "1011100100001" "1011100100010" "1011100100011" "1011100100100" "1011100100101" "1011100100110" "1011100100111" "1011100101000" "1011100101001" "1011100101010" "1011100101011" "1011100101100" "1011100101101" "1011100101110" "1011100101111" "1011100110000" "1011100110001" "1011100110010" "1011100110011" "1011100110100" "1011100110101" "1011100110110" "1011100110111" "1011100111000" "1011100111001" "1011100111010" "1011100111011" "1011100111100" "1011100111101" "1011100111110" "1011100111111" "1011101000000" "1011101000001" "1011101000010" "1011101000011" "1011101000100" "1011101000101" "1011101000110" "1011101000111" "1011101001000" "1011101001001" "1011101001010" "1011101001011" "1011101001100" "1011101001101" "1011101001110" "1011101001111" "1011101010000" "1011101010001" "1011101010010" "1011101010011" "1011101010100" "1011101010101" "1011101010110" "1011101010111" "1011101011000" "1011101011001" "1011101011010" "1011101011011" "1011101011100" "1011101011101" "1011101011110" "1011101011111" "1011101100000" "1011101100001" "1011101100010" "1011101100011" "1011101100100" "1011101100101" "1011101100110" "1011101100111" "1011101101000" "1011101101001" "1011101101010" "1011101101011" "1011101101100" "1011101101101" "1011101101110" "1011101101111" "1011101110000" "1011101110001" "1011101110010" "1011101110011" "1011101110100" "1011101110101" "1011101110110" "1011101110111" "1011101111000" "1011101111001" "1011101111010" "1011101111011" "1011101111100" "1011101111101" "1011101111110" "1011101111111" "1011110000000" "1011110000001" "1011110000010" "1011110000011" "1011110000100" "1011110000101" "1011110000110" "1011110000111" "1011110001000" "1011110001001" "1011110001010" "1011110001011" "1011110001100" "1011110001101" "1011110001110" "1011110001111" "1011110010000" "1011110010001" "1011110010010" "1011110010011" "1011110010100" "1011110010101" "1011110010110" "1011110010111" "1011110011000" "1011110011001" "1011110011010" "1011110011011" "1011110011100" "1011110011101" "1011110011110" "1011110011111" "1011110100000" "1011110100001" "1011110100010" "1011110100011" "1011110100100" "1011110100101" "1011110100110" "1011110100111" "1011110101000" "1011110101001" "1011110101010" "1011110101011" "1011110101100" "1011110101101" "1011110101110" "1011110101111" "1011110110000" "1011110110001" "1011110110010" "1011110110011" "1011110110100" "1011110110101" "1011110110110" "1011110110111" "1011110111000" "1011110111001" "1011110111010" "1011110111011" "1011110111100" "1011110111101" "1011110111110" "1011110111111" "1011111000000" "1011111000001" "1011111000010" "1011111000011" "1011111000100" "1011111000101" "1011111000110" "1011111000111" "1011111001000" "1011111001001" "1011111001010" "1011111001011" "1011111001100" "1011111001101" "1011111001110" "1011111001111" "1011111010000" "1011111010001" "1011111010010" "1011111010011" "1011111010100" "1011111010101" "1011111010110" "1011111010111" "1011111011000" "1011111011001" "1011111011010" "1011111011011" "1011111011100" "1011111011101" "1011111011110" "1011111011111" "1011111100000" "1011111100001" "1011111100010" "1011111100011" "1011111100100" "1011111100101" "1011111100110" "1011111100111" "1011111101000" "1011111101001" "1011111101010" "1011111101011" "1011111101100" "1011111101101" "1011111101110" "1011111101111" "1011111110000" "1011111110001" "1011111110010" "1011111110011" "1011111110100" "1011111110101" "1011111110110" "1011111110111" "1011111111000" "1011111111001" "1011111111010" "1011111111011" "1011111111100" "1011111111101" "1011111111110" "1011111111111" "1100000000000" "1100000000001" "1100000000010" "1100000000011" "1100000000100" "1100000000101" "1100000000110" "1100000000111" "1100000001000" "1100000001001" "1100000001010" "1100000001011" "1100000001100" "1100000001101" "1100000001110" "1100000001111" "1100000010000" "1100000010001" "1100000010010" "1100000010011" "1100000010100" "1100000010101" "1100000010110" "1100000010111" "1100000011000" "1100000011001" "1100000011010" "1100000011011" "1100000011100" "1100000011101" "1100000011110" "1100000011111" "1100000100000" "1100000100001" "1100000100010" "1100000100011" "1100000100100" "1100000100101" "1100000100110" "1100000100111" "1100000101000" "1100000101001" "1100000101010" "1100000101011" "1100000101100" "1100000101101" "1100000101110" "1100000101111" "1100000110000" "1100000110001" "1100000110010" "1100000110011" "1100000110100" "1100000110101" "1100000110110" "1100000110111" "1100000111000" "1100000111001" "1100000111010" "1100000111011" "1100000111100" "1100000111101" "1100000111110" "1100000111111" "1100001000000" "1100001000001" "1100001000010" "1100001000011" "1100001000100" "1100001000101" "1100001000110" "1100001000111" "1100001001000" "1100001001001" "1100001001010" "1100001001011" "1100001001100" "1100001001101" "1100001001110" "1100001001111" "1100001010000" "1100001010001" "1100001010010" "1100001010011" "1100001010100" "1100001010101" "1100001010110" "1100001010111" "1100001011000" "1100001011001" "1100001011010" "1100001011011" "1100001011100" "1100001011101" "1100001011110" "1100001011111" "1100001100000" "1100001100001" "1100001100010" "1100001100011" "1100001100100" "1100001100101" "1100001100110" "1100001100111" "1100001101000" "1100001101001" "1100001101010" "1100001101011" "1100001101100" "1100001101101" "1100001101110" "1100001101111" "1100001110000" "1100001110001" "1100001110010" "1100001110011" "1100001110100" "1100001110101" "1100001110110" "1100001110111" "1100001111000" "1100001111001" "1100001111010" "1100001111011" "1100001111100" "1100001111101" "1100001111110" "1100001111111" "1100010000000" "1100010000001" "1100010000010" "1100010000011" "1100010000100" "1100010000101" "1100010000110" "1100010000111" "1100010001000" "1100010001001" "1100010001010" "1100010001011" "1100010001100" "1100010001101" "1100010001110" "1100010001111" "1100010010000" "1100010010001" "1100010010010" "1100010010011" "1100010010100" "1100010010101" "1100010010110" "1100010010111" "1100010011000" "1100010011001" "1100010011010" "1100010011011" "1100010011100" "1100010011101" "1100010011110" "1100010011111" "1100010100000" "1100010100001" "1100010100010" "1100010100011" "1100010100100" "1100010100101" "1100010100110" "1100010100111" "1100010101000" "1100010101001" "1100010101010" "1100010101011" "1100010101100" "1100010101101" "1100010101110" "1100010101111" "1100010110000" "1100010110001" "1100010110010" "1100010110011" "1100010110100" "1100010110101" "1100010110110" "1100010110111" "1100010111000" "1100010111001" "1100010111010" "1100010111011" "1100010111100" "1100010111101" "1100010111110" "1100010111111" "1100011000000" "1100011000001" "1100011000010" "1100011000011" "1100011000100" "1100011000101" "1100011000110" "1100011000111" "1100011001000" "1100011001001" "1100011001010" "1100011001011" "1100011001100" "1100011001101" "1100011001110" "1100011001111" "1100011010000" "1100011010001" "1100011010010" "1100011010011" "1100011010100" "1100011010101" "1100011010110" "1100011010111" "1100011011000" "1100011011001" "1100011011010" "1100011011011" "1100011011100" "1100011011101" "1100011011110" "1100011011111" "1100011100000" "1100011100001" "1100011100010" "1100011100011" "1100011100100" "1100011100101" "1100011100110" "1100011100111" "1100011101000" "1100011101001" "1100011101010" "1100011101011" "1100011101100" "1100011101101" "1100011101110" "1100011101111" "1100011110000" "1100011110001" "1100011110010" "1100011110011" "1100011110100" "1100011110101" "1100011110110" "1100011110111" "1100011111000" "1100011111001" "1100011111010" "1100011111011" "1100011111100" "1100011111101" "1100011111110" "1100011111111" "1100100000000" "1100100000001" "1100100000010" "1100100000011" "1100100000100" "1100100000101" "1100100000110" "1100100000111" "1100100001000" "1100100001001" "1100100001010" "1100100001011" "1100100001100" "1100100001101" "1100100001110" "1100100001111" "1100100010000" "1100100010001" "1100100010010" "1100100010011" "1100100010100" "1100100010101" "1100100010110" "1100100010111" "1100100011000" "1100100011001" "1100100011010" "1100100011011" "1100100011100" "1100100011101" "1100100011110" "1100100011111" "1100100100000" "1100100100001" "1100100100010" "1100100100011" "1100100100100" "1100100100101" "1100100100110" "1100100100111" "1100100101000" "1100100101001" "1100100101010" "1100100101011" "1100100101100" "1100100101101" "1100100101110" "1100100101111" "1100100110000" "1100100110001" "1100100110010" "1100100110011" "1100100110100" "1100100110101" "1100100110110" "1100100110111" "1100100111000" "1100100111001" "1100100111010" "1100100111011" "1100100111100" "1100100111101" "1100100111110" "1100100111111" "1100101000000" "1100101000001" "1100101000010" "1100101000011" "1100101000100" "1100101000101" "1100101000110" "1100101000111" "1100101001000" "1100101001001" "1100101001010" "1100101001011" "1100101001100" "1100101001101" "1100101001110" "1100101001111" "1100101010000" "1100101010001" "1100101010010" "1100101010011" "1100101010100" "1100101010101" "1100101010110" "1100101010111" "1100101011000" "1100101011001" "1100101011010" "1100101011011" "1100101011100" "1100101011101" "1100101011110" "1100101011111" "1100101100000" "1100101100001" "1100101100010" "1100101100011" "1100101100100" "1100101100101" "1100101100110" "1100101100111" "1100101101000" "1100101101001" "1100101101010" "1100101101011" "1100101101100" "1100101101101" "1100101101110" "1100101101111" "1100101110000" "1100101110001" "1100101110010" "1100101110011" "1100101110100" "1100101110101" "1100101110110" "1100101110111" "1100101111000" "1100101111001" "1100101111010" "1100101111011" "1100101111100" "1100101111101" "1100101111110" "1100101111111" "1100110000000" "1100110000001" "1100110000010" "1100110000011" "1100110000100" "1100110000101" "1100110000110" "1100110000111" "1100110001000" "1100110001001" "1100110001010" "1100110001011" "1100110001100" "1100110001101" "1100110001110" "1100110001111" "1100110010000" "1100110010001" "1100110010010" "1100110010011" "1100110010100" "1100110010101" "1100110010110" "1100110010111" "1100110011000" "1100110011001" "1100110011010" "1100110011011" "1100110011100" "1100110011101" "1100110011110" "1100110011111" "1100110100000" "1100110100001" "1100110100010" "1100110100011" "1100110100100" "1100110100101" "1100110100110" "1100110100111" "1100110101000" "1100110101001" "1100110101010" "1100110101011" "1100110101100" "1100110101101" "1100110101110" "1100110101111" "1100110110000" "1100110110001" "1100110110010" "1100110110011" "1100110110100" "1100110110101" "1100110110110" "1100110110111" "1100110111000" "1100110111001" "1100110111010" "1100110111011" "1100110111100" "1100110111101" "1100110111110" "1100110111111" "1100111000000" "1100111000001" "1100111000010" "1100111000011" "1100111000100" "1100111000101" "1100111000110" "1100111000111" "1100111001000" "1100111001001" "1100111001010" "1100111001011" "1100111001100" "1100111001101" "1100111001110" "1100111001111" "1100111010000" "1100111010001" "1100111010010" "1100111010011" "1100111010100" "1100111010101" "1100111010110" "1100111010111" "1100111011000" "1100111011001" "1100111011010" "1100111011011" "1100111011100" "1100111011101" "1100111011110" "1100111011111" "1100111100000" "1100111100001" "1100111100010" "1100111100011" "1100111100100" "1100111100101" "1100111100110" "1100111100111" "1100111101000" "1100111101001" "1100111101010" "1100111101011" "1100111101100" "1100111101101" "1100111101110" "1100111101111" "1100111110000" "1100111110001" "1100111110010" "1100111110011" "1100111110100" "1100111110101" "1100111110110" "1100111110111" "1100111111000" "1100111111001" "1100111111010" "1100111111011" "1100111111100" "1100111111101" "1100111111110" "1100111111111" "1101000000000" "1101000000001" "1101000000010" "1101000000011" "1101000000100" "1101000000101" "1101000000110" "1101000000111" "1101000001000" "1101000001001" "1101000001010" "1101000001011" "1101000001100" "1101000001101" "1101000001110" "1101000001111" "1101000010000" "1101000010001" "1101000010010" "1101000010011" "1101000010100" "1101000010101" "1101000010110" "1101000010111" "1101000011000" "1101000011001" "1101000011010" "1101000011011" "1101000011100" "1101000011101" "1101000011110" "1101000011111" "1101000100000" "1101000100001" "1101000100010" "1101000100011" "1101000100100" "1101000100101" "1101000100110" "1101000100111" "1101000101000" "1101000101001" "1101000101010" "1101000101011" "1101000101100" "1101000101101" "1101000101110" "1101000101111" "1101000110000" "1101000110001" "1101000110010" "1101000110011" "1101000110100" "1101000110101" "1101000110110" "1101000110111" "1101000111000" "1101000111001" "1101000111010" "1101000111011" "1101000111100" "1101000111101" "1101000111110" "1101000111111" "1101001000000" "1101001000001" "1101001000010" "1101001000011" "1101001000100" "1101001000101" "1101001000110" "1101001000111" "1101001001000" "1101001001001" "1101001001010" "1101001001011" "1101001001100" "1101001001101" "1101001001110" "1101001001111" "1101001010000" "1101001010001" "1101001010010" "1101001010011" "1101001010100" "1101001010101" "1101001010110" "1101001010111" "1101001011000" "1101001011001" "1101001011010" "1101001011011" "1101001011100" "1101001011101" "1101001011110" "1101001011111" "1101001100000" "1101001100001" "1101001100010" "1101001100011" "1101001100100" "1101001100101" "1101001100110" "1101001100111" "1101001101000" "1101001101001" "1101001101010" "1101001101011" "1101001101100" "1101001101101" "1101001101110" "1101001101111" "1101001110000" "1101001110001" "1101001110010" "1101001110011" "1101001110100" "1101001110101" "1101001110110" "1101001110111" "1101001111000" "1101001111001" "1101001111010" "1101001111011" "1101001111100" "1101001111101" "1101001111110" "1101001111111" "1101010000000" "1101010000001" "1101010000010" "1101010000011" "1101010000100" "1101010000101" "1101010000110" "1101010000111" "1101010001000" "1101010001001" "1101010001010" "1101010001011" "1101010001100" "1101010001101" "1101010001110" "1101010001111" "1101010010000" "1101010010001" "1101010010010" "1101010010011" "1101010010100" "1101010010101" "1101010010110" "1101010010111" "1101010011000" "1101010011001" "1101010011010" "1101010011011" "1101010011100" "1101010011101" "1101010011110" "1101010011111" "1101010100000" "1101010100001" "1101010100010" "1101010100011" "1101010100100" "1101010100101" "1101010100110" "1101010100111" "1101010101000" "1101010101001" "1101010101010" "1101010101011" "1101010101100" "1101010101101" "1101010101110" "1101010101111" "1101010110000" "1101010110001" "1101010110010" "1101010110011" "1101010110100" "1101010110101" "1101010110110" "1101010110111" "1101010111000" "1101010111001" "1101010111010" "1101010111011" "1101010111100" "1101010111101" "1101010111110" "1101010111111" "1101011000000" "1101011000001" "1101011000010" "1101011000011" "1101011000100" "1101011000101" "1101011000110" "1101011000111" "1101011001000" "1101011001001" "1101011001010" "1101011001011" "1101011001100" "1101011001101" "1101011001110" "1101011001111" "1101011010000" "1101011010001" "1101011010010" "1101011010011" "1101011010100" "1101011010101" "1101011010110" "1101011010111" "1101011011000" "1101011011001" "1101011011010" "1101011011011" "1101011011100" "1101011011101" "1101011011110" "1101011011111" "1101011100000" "1101011100001" "1101011100010" "1101011100011" "1101011100100" "1101011100101" "1101011100110" "1101011100111" "1101011101000" "1101011101001" "1101011101010" "1101011101011" "1101011101100" "1101011101101" "1101011101110" "1101011101111" "1101011110000" "1101011110001" "1101011110010" "1101011110011" "1101011110100" "1101011110101" "1101011110110" "1101011110111" "1101011111000" "1101011111001" "1101011111010" "1101011111011" "1101011111100" "1101011111101" "1101011111110" "1101011111111" "1101100000000" "1101100000001" "1101100000010" "1101100000011" "1101100000100" "1101100000101" "1101100000110" "1101100000111" "1101100001000" "1101100001001" "1101100001010" "1101100001011" "1101100001100" "1101100001101" "1101100001110" "1101100001111" "1101100010000" "1101100010001" "1101100010010" "1101100010011" "1101100010100" "1101100010101" "1101100010110" "1101100010111" "1101100011000" "1101100011001" "1101100011010" "1101100011011" "1101100011100" "1101100011101" "1101100011110" "1101100011111" "1101100100000" "1101100100001" "1101100100010" "1101100100011" "1101100100100" "1101100100101" "1101100100110" "1101100100111" "1101100101000" "1101100101001" "1101100101010" "1101100101011" "1101100101100" "1101100101101" "1101100101110" "1101100101111" "1101100110000" "1101100110001" "1101100110010" "1101100110011" "1101100110100" "1101100110101" "1101100110110" "1101100110111" "1101100111000" "1101100111001" "1101100111010" "1101100111011" "1101100111100" "1101100111101" "1101100111110" "1101100111111" "1101101000000" "1101101000001" "1101101000010" "1101101000011" "1101101000100" "1101101000101" "1101101000110" "1101101000111" "1101101001000" "1101101001001" "1101101001010" "1101101001011" "1101101001100" "1101101001101" "1101101001110" "1101101001111" "1101101010000" "1101101010001" "1101101010010" "1101101010011" "1101101010100" "1101101010101" "1101101010110" "1101101010111" "1101101011000" "1101101011001" "1101101011010" "1101101011011" "1101101011100" "1101101011101" "1101101011110" "1101101011111" "1101101100000" "1101101100001" "1101101100010" "1101101100011" "1101101100100" "1101101100101" "1101101100110" "1101101100111" "1101101101000" "1101101101001" "1101101101010" "1101101101011" "1101101101100" "1101101101101" "1101101101110" "1101101101111" "1101101110000" "1101101110001" "1101101110010" "1101101110011" "1101101110100" "1101101110101" "1101101110110" "1101101110111" "1101101111000" "1101101111001" "1101101111010" "1101101111011" "1101101111100" "1101101111101" "1101101111110" "1101101111111" "1101110000000" "1101110000001" "1101110000010" "1101110000011" "1101110000100" "1101110000101" "1101110000110" "1101110000111" "1101110001000" "1101110001001" "1101110001010" "1101110001011" "1101110001100" "1101110001101" "1101110001110" "1101110001111" "1101110010000" "1101110010001" "1101110010010" "1101110010011" "1101110010100" "1101110010101" "1101110010110" "1101110010111" "1101110011000" "1101110011001" "1101110011010" "1101110011011" "1101110011100" "1101110011101" "1101110011110" "1101110011111" "1101110100000" "1101110100001" "1101110100010" "1101110100011" "1101110100100" "1101110100101" "1101110100110" "1101110100111" "1101110101000" "1101110101001" "1101110101010" "1101110101011" "1101110101100" "1101110101101" "1101110101110" "1101110101111" "1101110110000" "1101110110001" "1101110110010" "1101110110011" "1101110110100" "1101110110101" "1101110110110" "1101110110111" "1101110111000" "1101110111001" "1101110111010" "1101110111011" "1101110111100" "1101110111101" "1101110111110" "1101110111111" "1101111000000" "1101111000001" "1101111000010" "1101111000011" "1101111000100" "1101111000101" "1101111000110" "1101111000111" "1101111001000" "1101111001001" "1101111001010" "1101111001011" "1101111001100" "1101111001101" "1101111001110" "1101111001111" "1101111010000" "1101111010001" "1101111010010" "1101111010011" "1101111010100" "1101111010101" "1101111010110" "1101111010111" "1101111011000" "1101111011001" "1101111011010" "1101111011011" "1101111011100" "1101111011101" "1101111011110" "1101111011111" "1101111100000" "1101111100001" "1101111100010" "1101111100011" "1101111100100" "1101111100101" "1101111100110" "1101111100111" "1101111101000" "1101111101001" "1101111101010" "1101111101011" "1101111101100" "1101111101101" "1101111101110" "1101111101111" "1101111110000" "1101111110001" "1101111110010" "1101111110011" "1101111110100" "1101111110101" "1101111110110" "1101111110111" "1101111111000" "1101111111001" "1101111111010" "1101111111011" "1101111111100" "1101111111101" "1101111111110" "1101111111111" "1110000000000" "1110000000001" "1110000000010" "1110000000011" "1110000000100" "1110000000101" "1110000000110" "1110000000111" "1110000001000" "1110000001001" "1110000001010" "1110000001011" "1110000001100" "1110000001101" "1110000001110" "1110000001111" "1110000010000" "1110000010001" "1110000010010" "1110000010011" "1110000010100" "1110000010101" "1110000010110" "1110000010111" "1110000011000" "1110000011001" "1110000011010" "1110000011011" "1110000011100" "1110000011101" "1110000011110" "1110000011111" "1110000100000" "1110000100001" "1110000100010" "1110000100011" "1110000100100" "1110000100101" "1110000100110" "1110000100111" "1110000101000" "1110000101001" "1110000101010" "1110000101011" "1110000101100" "1110000101101" "1110000101110" "1110000101111" "1110000110000" "1110000110001" "1110000110010" "1110000110011" "1110000110100" "1110000110101" "1110000110110" "1110000110111" "1110000111000" "1110000111001" "1110000111010" "1110000111011" "1110000111100" "1110000111101" "1110000111110" "1110000111111" "1110001000000" "1110001000001" "1110001000010" "1110001000011" "1110001000100" "1110001000101" "1110001000110" "1110001000111" "1110001001000" "1110001001001" "1110001001010" "1110001001011" "1110001001100" "1110001001101" "1110001001110" "1110001001111" "1110001010000" "1110001010001" "1110001010010" "1110001010011" "1110001010100" "1110001010101" "1110001010110" "1110001010111" "1110001011000" "1110001011001" "1110001011010" "1110001011011" "1110001011100" "1110001011101" "1110001011110" "1110001011111" "1110001100000" "1110001100001" "1110001100010" "1110001100011" "1110001100100" "1110001100101" "1110001100110" "1110001100111" "1110001101000" "1110001101001" "1110001101010" "1110001101011" "1110001101100" "1110001101101" "1110001101110" "1110001101111" "1110001110000" "1110001110001" "1110001110010" "1110001110011" "1110001110100" "1110001110101" "1110001110110" "1110001110111" "1110001111000" "1110001111001" "1110001111010" "1110001111011" "1110001111100" "1110001111101" "1110001111110" "1110001111111" "1110010000000" "1110010000001" "1110010000010" "1110010000011" "1110010000100" "1110010000101" "1110010000110" "1110010000111" "1110010001000" "1110010001001" "1110010001010" "1110010001011" "1110010001100" "1110010001101" "1110010001110" "1110010001111" "1110010010000" "1110010010001" "1110010010010" "1110010010011" "1110010010100" "1110010010101" "1110010010110" "1110010010111" "1110010011000" "1110010011001" "1110010011010" "1110010011011" "1110010011100" "1110010011101" "1110010011110" "1110010011111" "1110010100000" "1110010100001" "1110010100010" "1110010100011" "1110010100100" "1110010100101" "1110010100110" "1110010100111" "1110010101000" "1110010101001" "1110010101010" "1110010101011" "1110010101100" "1110010101101" "1110010101110" "1110010101111" "1110010110000" "1110010110001" "1110010110010" "1110010110011" "1110010110100" "1110010110101" "1110010110110" "1110010110111" "1110010111000" "1110010111001" "1110010111010" "1110010111011" "1110010111100" "1110010111101" "1110010111110" "1110010111111" "1110011000000" "1110011000001" "1110011000010" "1110011000011" "1110011000100" "1110011000101" "1110011000110" "1110011000111" "1110011001000" "1110011001001" "1110011001010" "1110011001011" "1110011001100" "1110011001101" "1110011001110" "1110011001111" "1110011010000" "1110011010001" "1110011010010" "1110011010011" "1110011010100" "1110011010101" "1110011010110" "1110011010111" "1110011011000" "1110011011001" "1110011011010" "1110011011011" "1110011011100" "1110011011101" "1110011011110" "1110011011111" "1110011100000" "1110011100001" "1110011100010" "1110011100011" "1110011100100" "1110011100101" "1110011100110" "1110011100111" "1110011101000" "1110011101001" "1110011101010" "1110011101011" "1110011101100" "1110011101101" "1110011101110" "1110011101111" "1110011110000" "1110011110001" "1110011110010" "1110011110011" "1110011110100" "1110011110101" "1110011110110" "1110011110111" "1110011111000" "1110011111001" "1110011111010" "1110011111011" "1110011111100" "1110011111101" "1110011111110" "1110011111111" "1110100000000" "1110100000001" "1110100000010" "1110100000011" "1110100000100" "1110100000101" "1110100000110" "1110100000111" "1110100001000" "1110100001001" "1110100001010" "1110100001011" "1110100001100" "1110100001101" "1110100001110" "1110100001111" "1110100010000" "1110100010001" "1110100010010" "1110100010011" "1110100010100" "1110100010101" "1110100010110" "1110100010111" "1110100011000" "1110100011001" "1110100011010" "1110100011011" "1110100011100" "1110100011101" "1110100011110" "1110100011111" "1110100100000" "1110100100001" "1110100100010" "1110100100011" "1110100100100" "1110100100101" "1110100100110" "1110100100111" "1110100101000" "1110100101001" "1110100101010" "1110100101011" "1110100101100" "1110100101101" "1110100101110" "1110100101111" "1110100110000" "1110100110001" "1110100110010" "1110100110011" "1110100110100" "1110100110101" "1110100110110" "1110100110111" "1110100111000" "1110100111001" "1110100111010" "1110100111011" "1110100111100" "1110100111101" "1110100111110" "1110100111111" "1110101000000" "1110101000001" "1110101000010" "1110101000011" "1110101000100" "1110101000101" "1110101000110" "1110101000111" "1110101001000" "1110101001001" "1110101001010" "1110101001011" "1110101001100" "1110101001101" "1110101001110" "1110101001111" "1110101010000" "1110101010001" "1110101010010" "1110101010011" "1110101010100" "1110101010101" "1110101010110" "1110101010111" "1110101011000" "1110101011001" "1110101011010" "1110101011011" "1110101011100" "1110101011101" "1110101011110" "1110101011111" "1110101100000" "1110101100001" "1110101100010" "1110101100011" "1110101100100" "1110101100101" "1110101100110" "1110101100111" "1110101101000" "1110101101001" "1110101101010" "1110101101011" "1110101101100" "1110101101101" "1110101101110" "1110101101111" "1110101110000" "1110101110001" "1110101110010" "1110101110011" "1110101110100" "1110101110101" "1110101110110" "1110101110111" "1110101111000" "1110101111001" "1110101111010" "1110101111011" "1110101111100" "1110101111101" "1110101111110" "1110101111111" "1110110000000" "1110110000001" "1110110000010" "1110110000011" "1110110000100" "1110110000101" "1110110000110" "1110110000111" "1110110001000" "1110110001001" "1110110001010" "1110110001011" "1110110001100" "1110110001101" "1110110001110" "1110110001111" "1110110010000" "1110110010001" "1110110010010" "1110110010011" "1110110010100" "1110110010101" "1110110010110" "1110110010111" "1110110011000" "1110110011001" "1110110011010" "1110110011011" "1110110011100" "1110110011101" "1110110011110" "1110110011111" "1110110100000" "1110110100001" "1110110100010" "1110110100011" "1110110100100" "1110110100101" "1110110100110" "1110110100111" "1110110101000" "1110110101001" "1110110101010" "1110110101011" "1110110101100" "1110110101101" "1110110101110" "1110110101111" "1110110110000" "1110110110001" "1110110110010" "1110110110011" "1110110110100" "1110110110101" "1110110110110" "1110110110111" "1110110111000" "1110110111001" "1110110111010" "1110110111011" "1110110111100" "1110110111101" "1110110111110" "1110110111111" "1110111000000" "1110111000001" "1110111000010" "1110111000011" "1110111000100" "1110111000101" "1110111000110" "1110111000111" "1110111001000" "1110111001001" "1110111001010" "1110111001011" "1110111001100" "1110111001101" "1110111001110" "1110111001111" "1110111010000" "1110111010001" "1110111010010" "1110111010011" "1110111010100" "1110111010101" "1110111010110" "1110111010111" "1110111011000" "1110111011001" "1110111011010" "1110111011011" "1110111011100" "1110111011101" "1110111011110" "1110111011111" "1110111100000" "1110111100001" "1110111100010" "1110111100011" "1110111100100" "1110111100101" "1110111100110" "1110111100111" "1110111101000" "1110111101001" "1110111101010" "1110111101011" "1110111101100" "1110111101101" "1110111101110" "1110111101111" "1110111110000" "1110111110001" "1110111110010" "1110111110011" "1110111110100" "1110111110101" "1110111110110" "1110111110111" "1110111111000" "1110111111001" "1110111111010" "1110111111011" "1110111111100" "1110111111101" "1110111111110" "1110111111111" "1111000000000" "1111000000001" "1111000000010" "1111000000011" "1111000000100" "1111000000101" "1111000000110" "1111000000111" "1111000001000" "1111000001001" "1111000001010" "1111000001011" "1111000001100" "1111000001101" "1111000001110" "1111000001111" "1111000010000" "1111000010001" "1111000010010" "1111000010011" "1111000010100" "1111000010101" "1111000010110" "1111000010111" "1111000011000" "1111000011001" "1111000011010" "1111000011011" "1111000011100" "1111000011101" "1111000011110" "1111000011111" "1111000100000" "1111000100001" "1111000100010" "1111000100011" "1111000100100" "1111000100101" "1111000100110" "1111000100111" "1111000101000" "1111000101001" "1111000101010" "1111000101011" "1111000101100" "1111000101101" "1111000101110" "1111000101111" "1111000110000" "1111000110001" "1111000110010" "1111000110011" "1111000110100" "1111000110101" "1111000110110" "1111000110111" "1111000111000" "1111000111001" "1111000111010" "1111000111011" "1111000111100" "1111000111101" "1111000111110" "1111000111111" "1111001000000" "1111001000001" "1111001000010" "1111001000011" "1111001000100" "1111001000101" "1111001000110" "1111001000111" "1111001001000" "1111001001001" "1111001001010" "1111001001011" "1111001001100" "1111001001101" "1111001001110" "1111001001111" "1111001010000" "1111001010001" "1111001010010" "1111001010011" "1111001010100" "1111001010101" "1111001010110" "1111001010111" "1111001011000" "1111001011001" "1111001011010" "1111001011011" "1111001011100" "1111001011101" "1111001011110" "1111001011111" "1111001100000" "1111001100001" "1111001100010" "1111001100011" "1111001100100" "1111001100101" "1111001100110" "1111001100111" "1111001101000" "1111001101001" "1111001101010" "1111001101011" "1111001101100" "1111001101101" "1111001101110" "1111001101111" "1111001110000" "1111001110001" "1111001110010" "1111001110011" "1111001110100" "1111001110101" "1111001110110" "1111001110111" "1111001111000" "1111001111001" "1111001111010" "1111001111011" "1111001111100" "1111001111101" "1111001111110" "1111001111111" "1111010000000" "1111010000001" "1111010000010" "1111010000011" "1111010000100" "1111010000101" "1111010000110" "1111010000111" "1111010001000" "1111010001001" "1111010001010" "1111010001011" "1111010001100" "1111010001101" "1111010001110" "1111010001111" "1111010010000" "1111010010001" "1111010010010" "1111010010011" "1111010010100" "1111010010101" "1111010010110" "1111010010111" "1111010011000" "1111010011001" "1111010011010" "1111010011011" "1111010011100" "1111010011101" "1111010011110" "1111010011111" "1111010100000" "1111010100001" "1111010100010" "1111010100011" "1111010100100" "1111010100101" "1111010100110" "1111010100111" "1111010101000" "1111010101001" "1111010101010" "1111010101011" "1111010101100" "1111010101101" "1111010101110" "1111010101111" "1111010110000" "1111010110001" "1111010110010" "1111010110011" "1111010110100" "1111010110101" "1111010110110" "1111010110111" "1111010111000" "1111010111001" "1111010111010" "1111010111011" "1111010111100" "1111010111101" "1111010111110" "1111010111111" "1111011000000" "1111011000001" "1111011000010" "1111011000011" "1111011000100" "1111011000101" "1111011000110" "1111011000111" "1111011001000" "1111011001001" "1111011001010" "1111011001011" "1111011001100" "1111011001101" "1111011001110" "1111011001111" "1111011010000" "1111011010001" "1111011010010" "1111011010011" "1111011010100" "1111011010101" "1111011010110" "1111011010111" "1111011011000" "1111011011001" "1111011011010" "1111011011011" "1111011011100" "1111011011101" "1111011011110" "1111011011111" "1111011100000" "1111011100001" "1111011100010" "1111011100011" "1111011100100" "1111011100101" "1111011100110" "1111011100111" "1111011101000" "1111011101001" "1111011101010" "1111011101011" "1111011101100" "1111011101101" "1111011101110" "1111011101111" "1111011110000" "1111011110001" "1111011110010" "1111011110011" "1111011110100" "1111011110101" "1111011110110" "1111011110111" "1111011111000" "1111011111001" "1111011111010" "1111011111011" "1111011111100" "1111011111101" "1111011111110" "1111011111111" "1111100000000" "1111100000001" "1111100000010" "1111100000011" "1111100000100" "1111100000101" "1111100000110" "1111100000111" "1111100001000" "1111100001001" "1111100001010" "1111100001011" "1111100001100" "1111100001101" "1111100001110" "1111100001111" "1111100010000" "1111100010001" "1111100010010" "1111100010011" "1111100010100" "1111100010101" "1111100010110" "1111100010111" "1111100011000" "1111100011001" "1111100011010" "1111100011011" "1111100011100" "1111100011101" "1111100011110" "1111100011111" "1111100100000" "1111100100001" "1111100100010" "1111100100011" "1111100100100" "1111100100101" "1111100100110" "1111100100111" "1111100101000" "1111100101001" "1111100101010" "1111100101011" "1111100101100" "1111100101101" "1111100101110" "1111100101111" "1111100110000" "1111100110001" "1111100110010" "1111100110011" "1111100110100" "1111100110101" "1111100110110" "1111100110111" "1111100111000" "1111100111001" "1111100111010" "1111100111011" "1111100111100" "1111100111101" "1111100111110" "1111100111111" "1111101000000" "1111101000001" "1111101000010" "1111101000011" "1111101000100" "1111101000101" "1111101000110" "1111101000111" "1111101001000" "1111101001001" "1111101001010" "1111101001011" "1111101001100" "1111101001101" "1111101001110" "1111101001111" "1111101010000" "1111101010001" "1111101010010" "1111101010011" "1111101010100" "1111101010101" "1111101010110" "1111101010111" "1111101011000" "1111101011001" "1111101011010" "1111101011011" "1111101011100" "1111101011101" "1111101011110" "1111101011111" "1111101100000" "1111101100001" "1111101100010" "1111101100011" "1111101100100" "1111101100101" "1111101100110" "1111101100111" "1111101101000" "1111101101001" "1111101101010" "1111101101011" "1111101101100" "1111101101101" "1111101101110" "1111101101111" "1111101110000" "1111101110001" "1111101110010" "1111101110011" "1111101110100" "1111101110101" "1111101110110" "1111101110111" "1111101111000" "1111101111001" "1111101111010" "1111101111011" "1111101111100" "1111101111101" "1111101111110" "1111101111111" "1111110000000" "1111110000001" "1111110000010" "1111110000011" "1111110000100" "1111110000101" "1111110000110" "1111110000111" "1111110001000" "1111110001001" "1111110001010" "1111110001011" "1111110001100" "1111110001101" "1111110001110" "1111110001111" "1111110010000" "1111110010001" "1111110010010" "1111110010011" "1111110010100" "1111110010101" "1111110010110" "1111110010111" "1111110011000" "1111110011001" "1111110011010" "1111110011011" "1111110011100" "1111110011101" "1111110011110" "1111110011111" "1111110100000" "1111110100001" "1111110100010" "1111110100011" "1111110100100" "1111110100101" "1111110100110" "1111110100111" "1111110101000" "1111110101001" "1111110101010" "1111110101011" "1111110101100" "1111110101101" "1111110101110" "1111110101111" "1111110110000" "1111110110001" "1111110110010" "1111110110011" "1111110110100" "1111110110101" "1111110110110" "1111110110111" "1111110111000" "1111110111001" "1111110111010" "1111110111011" "1111110111100" "1111110111101" "1111110111110" "1111110111111" "1111111000000" "1111111000001" "1111111000010" "1111111000011" "1111111000100" "1111111000101" "1111111000110" "1111111000111" "1111111001000" "1111111001001" "1111111001010" "1111111001011" "1111111001100" "1111111001101" "1111111001110" "1111111001111" "1111111010000" "1111111010001" "1111111010010" "1111111010011" "1111111010100" "1111111010101" "1111111010110" "1111111010111" "1111111011000" "1111111011001" "1111111011010" "1111111011011" "1111111011100" "1111111011101" "1111111011110" "1111111011111" "1111111100000" "1111111100001" "1111111100010" "1111111100011" "1111111100100" "1111111100101" "1111111100110" "1111111100111" "1111111101000" "1111111101001" "1111111101010" "1111111101011" "1111111101100" "1111111101101" "1111111101110" "1111111101111" "1111111110000" "1111111110001" "1111111110010" "1111111110011" "1111111110100" "1111111110101" "1111111110110" "1111111110111" "1111111111000" "1111111111001" "1111111111010" "1111111111011" "1111111111100" "1111111111101" "1111111111110" "1111111111111"))
(time ms (1941/4 2175/4 2167/4 2263/4 1037/2 2101/4 552 2241/4 550 2271/4 2267/4 586 530 560 2291/4 581 1027/2 1105/2 546 570 529 1097/2 2231/4 2321/4 2145/4 2277/4 572 596 2165/4 566 2291/4 582 550 2255/4 2291/4 2327/4 2191/4 2287/4 1137/2 580 2277/4 2351/4 582 1225/2 2251/4 582 1187/2 607 2185/4 2287/4 2277/4 2387/4 550 2315/4 1197/2 2391/4 1117/2 566 1179/2 2441/4 2261/4 2377/4 587 2401/4 2067/4 2193/4 1087/2 2273/4 2101/4 1129/2 1117/2 2327/4 2223/4 1147/2 1149/2 1197/2 2217/4 2291/4 580 2395/4 2177/4 2227/4 2257/4 1177/2 2233/4 2281/4 1115/2 1157/2 1137/2 575 1185/2 2417/4 2277/4 585 1145/2 2397/4 2271/4 1189/2 2331/4 599 572 591 2327/4 2461/4 2347/4 2387/4 1195/2 2463/4 2277/4 2405/4 2381/4 2473/4 2321/4 2357/4 2351/4 1197/2 1137/2 590 2381/4 1237/2 2317/4 597 1161/2 616 1157/2 2357/4 2357/4 2391/4 575 585 566 592 1139/2 581 582 2417/4 2293/4 1195/2 2377/4 613 2297/4 2407/4 2363/4 596 1139/2 2341/4 1149/2 2381/4 2297/4 591 1159/2 2317/4 565 2401/4 2327/4 1177/2 1149/2 600 2361/4 2441/4 2321/4 2411/4 2417/4 606 596 1247/2 2387/4 2481/4 2427/4 2447/4 601 2517/4 1215/2 1239/2 1207/2 622 1195/2 2413/4 600 1249/2 1199/2 2471/4 2447/4 2457/4 2311/4 2451/4 597 2487/4 1207/2 610 2347/4 2491/4 2331/4 2361/4 2335/4 595 2347/4 599 2357/4 2407/4 2361/4 2441/4 595 1225/2 2377/4 620 2321/4 2453/4 572 2407/4 577 1167/2 1171/2 2401/4 2347/4 606 2351/4 2421/4 2357/4 600 2343/4 1219/2 2405/4 2431/4 2431/4 2497/4 602 612 1237/2 2465/4 2381/4 2521/4 2471/4 1277/2 2407/4 2501/4 2481/4 2527/4 610 2497/4 606 1229/2 2441/4 2501/4 621 2503/4 2451/4 1245/2 1237/2 1279/2 2397/4 2471/4 1215/2 2531/4 596 1235/2 557 2307/4 570 591 2231/4 1165/2 1169/2 2371/4 2327/4 620 2477/4 1225/2 571 2497/4 1217/2 1235/2 2273/4 596 2327/4 2461/4 2295/4 1175/2 587 620 1167/2 2373/4 625 1269/2 1167/2 1245/2 1223/2 1317/2 1195/2 582 2453/4 2411/4 2377/4 627 627 2541/4 621 2391/4 627 2561/4 2417/4 2425/4 1283/2 2645/4 2413/4 2451/4 1307/2 2571/4 2457/4 637 2497/4 2651/4 2405/4 1265/2 2561/4 2587/4 2441/4 2537/4 641 651 2357/4 2523/4 613 626 1227/2 631 2457/4 2607/4 606 2541/4 2543/4 1347/2 2497/4 642 2551/4 1317/2 625 2481/4 1219/2 656 1199/2 636 2545/4 2605/4 1255/2 2621/4 2567/4 672 2505/4 2595/4 2601/4 672 631 2571/4 648 1317/2 627 646 2575/4 660 1245/2 2625/4 667 1349/2 2553/4 660 2647/4 1347/2 646 2621/4 2611/4 2691/4 2571/4 2621/4 1307/2 1339/2 2587/4 2631/4 2607/4 2707/4 641 2537/4 611 641 2353/4 2387/4 2367/4 2427/4 2407/4 1227/2 2415/4 2397/4 602 635 2457/4 2471/4 2431/4 615 2443/4 631 2371/4 2441/4 1183/2 2431/4 2391/4 2467/4 2387/4 2485/4 582 2453/4 2433/4 2493/4 1187/2 606 596 2527/4 2465/4 1235/2 1237/2 1255/2 622 2517/4 617 616 611 621 2421/4 1247/2 621 1267/2 2483/4 2551/4 612 2507/4 616 1247/2 2443/4 2513/4 1235/2 2567/4 2451/4 2501/4 2473/4 631 2403/4 1257/2 1209/2 1257/2 2401/4 2481/4 2411/4 1245/2 611 2487/4 2407/4 2487/4 2443/4 1237/2 2471/4 1277/2 616 1247/2 627 1249/2 2427/4 626 2387/4 1245/2 1247/2 2507/4 2391/4 2481/4 2461/4 2507/4 1199/2 2541/4 1227/2 1257/2 2457/4 2561/4 2537/4 629 1217/2 1245/2 2477/4 1279/2 2487/4 2545/4 2551/4 1257/2 636 2547/4 2561/4 1289/2 2517/4 2593/4 1247/2 2597/4 1229/2 1283/2 1247/2 2543/4 2467/4 1275/2 2501/4 1287/2 625 651 2507/4 1269/2 617 1269/2 591 611 602 2477/4 2413/4 2487/4 1185/2 2497/4 1217/2 2507/4 621 2493/4 615 2517/4 2471/4 636 1205/2 2467/4 2413/4 616 2371/4 1241/2 2427/4 621 2377/4 2481/4 626 2543/4 2415/4 1287/2 1227/2 2553/4 2427/4 2473/4 2421/4 636 2451/4 2541/4 2487/4 2487/4 2457/4 2497/4 2507/4 2627/4 620 625 1245/2 2531/4 1217/2 631 1249/2 1287/2 625 635 621 636 2481/4 2497/4 2491/4 641 620 636 1249/2 2551/4 2381/4 1227/2 1197/2 616 2411/4 2487/4 2407/4 616 2461/4 2547/4 2471/4 2541/4 621 1287/2 2501/4 2531/4 2391/4 2501/4 1197/2 1267/2 606 1255/2 612 1247/2 2451/4 2543/4 630 2527/4 2491/4 2491/4 622 2561/4 606 2517/4 621 632 607 1275/2 2487/4 647 2517/4 1267/2 2463/4 627 2533/4 2527/4 2511/4 637 611 1285/2 2571/4 2541/4 637 640 2551/4 2581/4 631 2547/4 625 2591/4 2521/4 2657/4 1337/2 1379/2 1165/2 1199/2 2281/4 615 2301/4 1229/2 602 612 616 2443/4 2361/4 2421/4 2461/4 2487/4 2401/4 2403/4 1177/2 2517/4 1195/2 1215/2 590 2501/4 2511/4 2521/4 2481/4 626 585 2547/4 612 1249/2 1219/2 2491/4 2477/4 2621/4 621 621 2535/4 678 1243/2 651 1273/2 659 632 2611/4 635 2617/4 635 2665/4 2561/4 1317/2 2507/4 2587/4 1295/2 1319/2 1277/2 2601/4 2341/4 2371/4 2301/4 2345/4 2317/4 2477/4 586 1199/2 2367/4 1195/2 1127/2 2317/4 2361/4 2437/4 2311/4 1189/2 2373/4 2495/4 575 2385/4 606 2471/4 2335/4 1219/2 1137/2 2431/4 580 2363/4 2415/4 2431/4 2291/4 2387/4 590 622 2323/4 601 2371/4 611 2357/4 2501/4 617 2523/4 2401/4 606 2531/4 645 1175/2 1215/2 2391/4 1273/2 2401/4 2417/4 2497/4 646 2397/4 610 1217/2 661 2385/4 2467/4 625 2507/4 1197/2 2511/4 2367/4 2417/4 587 596 592 1267/2 592 620 586 2347/4 597 1217/2 1157/2 1187/2 597 1209/2 2447/4 607 600 635 2371/4 1269/2 1211/2 2521/4 2313/4 631 591 2507/4 2351/4 616 2387/4 612 606 632 611 1257/2 1197/2 641 606 2557/4 2337/4 2471/4 592 2511/4 1177/2 621 2543/4 605 2351/4 1207/2 2391/4 1209/2 1199/2 2477/4 2401/4 1225/2 1195/2 607 1187/2 1229/2 1187/2 2427/4 1207/2 630 2381/4 1227/2 1199/2 1215/2 2335/4 602 601 613 1167/2 1207/2 1169/2 595 605 2471/4 1177/2 612 2463/4 2493/4 1235/2 1267/2 1223/2 1251/2 2397/4 2457/4 596 1215/2 601 612 2357/4 2467/4 610 2497/4 2421/4 2545/4 1225/2 636 2431/4 2507/4 2423/4 642 598 632 1215/2 611 2401/4 2477/4 1187/2 2445/4 2427/4 626 2445/4 2475/4 1217/2 2477/4 2441/4 620 1235/2 2517/4 1199/2 2477/4 621 2517/4 1235/2 1229/2 1215/2 621 2491/4 2553/4 2455/4 635 1209/2 2537/4 585 1177/2 2271/4 2387/4 591 611 2315/4 581 1205/2 1201/2 1197/2 1219/2 1167/2 2457/4 2321/4 1187/2 2337/4 590 591 2351/4 1177/2 601 2291/4 1215/2 591 606 1167/2 2375/4 589 2421/4 2337/4 595 1217/2 611 1177/2 597 596 2437/4 2371/4 2435/4 2347/4 2451/4 2341/4 2403/4 2451/4 2491/4 1195/2 2443/4 2401/4 1219/2 1169/2 1177/2 2357/4 2477/4 2405/4 2361/4 592 2421/4 2291/4 595 587 2411/4 1165/2 1187/2 586 1203/2 2297/4 606 1179/2 621 2277/4 1167/2 1205/2 2463/4 2407/4 2401/4 611 2457/4 2327/4 596 2341/4 601 1157/2 2367/4 2387/4 2495/4 2295/4 1207/2 2527/4 2481/4 2367/4 1245/2 2353/4 2411/4 1177/2 1225/2 1227/2 2531/4 2421/4 2487/4 1277/2 636 601 2617/4 1289/2 1265/2 636 646 637 2621/4 2521/4 656 2577/4 1337/2 636 2647/4 2607/4 2691/4 641 2547/4 656 2707/4 1249/2 645 2607/4 2667/4 2495/4 2651/4 2397/4 2441/4 2447/4 2557/4 1217/2 2441/4 2537/4 636 2521/4 1247/2 1289/2 656 1155/2 2381/4 2427/4 650 1159/2 1145/2 2321/4 611 1115/2 2311/4 585 2371/4 577 2497/4 606 1249/2 2297/4 2375/4 611 1205/2 618 611 1197/2 2431/4 2401/4 2441/4 1225/2 2607/4 590 2357/4 624 2547/4 611 1277/2 2447/4 635 2443/4 2347/4 1257/2 1235/2 590 574 1167/2 2363/4 2317/4 572 616 601 2297/4 581 1171/2 2375/4 2165/4 2231/4 2221/4 2277/4 2181/4 2353/4 1119/2 2321/4 2271/4 1167/2 2317/4 2367/4 2261/4 2391/4 1159/2 2477/4 551 1117/2 2247/4 2267/4 2205/4 1165/2 2351/4 2235/4 2307/4 2241/4 567 2351/4 555 1117/2 566 2297/4 553 2221/4 2247/4 1085/2 2131/4 1077/2 1077/2 2203/4 2163/4 1097/2 1115/2 2243/4 1077/2 2183/4 2217/4 567 1065/2 541 2183/4 557 1069/2 2161/4 2207/4 1127/2 2181/4 1115/2 2225/4 2235/4 2177/4 2213/4 1127/2 1145/2 2065/4 1047/2 1027/2 1057/2 510 2115/4 1039/2 2087/4 2117/4 2107/4 2101/4 530 520 2135/4 1057/2 2165/4 1007/2 2081/4 511 515 511 2057/4 1027/2 1035/2 512 2097/4 2071/4 2137/4 1039/2 526 2117/4 2151/4 2111/4 536 2107/4 2135/4 526 2161/4 2151/4 554 2141/4 1095/2 546 542 1057/2 546 536 2217/4 1069/2 541 2131/4 2167/4 2151/4 542 541 2171/4 1055/2 536 1059/2 1097/2 2131/4 1069/2 2125/4 2175/4 2097/4 1059/2 521 531 2097/4 1065/2 526 1055/2 546 2191/4 2141/4 541 530 2201/4 537 546 2087/4 536 2121/4 2093/4 1057/2 1065/2 1057/2 1079/2 2131/4 1089/2 2113/4 537 2143/4 2221/4 526 2171/4 2163/4 546 1087/2 2241/4 1069/2 2241/4 2167/4 2211/4 2211/4 2245/4 2191/4 2227/4 2183/4 2213/4 1085/2 545 2157/4 555 545 2227/4 2127/4 1107/2 536 2197/4 1097/2 2237/4 556 2237/4 2185/4 1115/2 1087/2 554 2077/4 527 1083/2 2167/4 1039/2 532 2171/4 2157/4 2157/4 1097/2 556 2241/4 2151/4 546 1117/2 1145/2 526 2117/4 2193/4 2177/4 521 2137/4 549 2221/4 2157/4 1089/2 562 2267/4 2185/4 1087/2 2227/4 1137/2 2127/4 1075/2 565 2281/4 1067/2 546 2251/4 2263/4 2181/4 2217/4 1169/2 1159/2 2207/4 2193/4 2341/4 1167/2 2165/4 547 2267/4 2307/4 2181/4 2227/4 2261/4 2287/4 2213/4 2221/4 2271/4 1159/2 2151/4 1109/2 575 1155/2 2097/4 2151/4 537 2227/4 1089/2 1087/2 1115/2 2243/4 2241/4 1117/2 2321/4 1167/2 2247/4 567 582 2343/4 2161/4 2187/4 562 1135/2 546 556 1127/2 1139/2 557 1107/2 2287/4 2291/4 560 2281/4 1157/2 1175/2 2183/4 2231/4 562 567 546 560 567 1137/2 2231/4 1125/2 1159/2 2327/4 2245/4 2263/4 2287/4 2287/4 2205/4 556 2263/4 1167/2 1117/2 2257/4 2317/4 2307/4 2231/4 2247/4 1155/2 2361/4 2227/4 570 1135/2 2315/4 1067/2 2165/4 2161/4 2165/4 1065/2 2171/4 539 2211/4 2181/4 1097/2 1095/2 2243/4 2175/4 2185/4 2203/4 1111/2 1075/2 535 1079/2 2191/4 1079/2 2171/4 2181/4 550 2167/4 1107/2 549 556 2177/4 1117/2 1097/2 1099/2 2181/4 2237/4 1097/2 1129/2 2205/4 2267/4 2235/4 2257/4 2213/4 557 2231/4 1145/2 2231/4 565 1107/2 1125/2 1077/2 562 1097/2 1107/2 2161/4 2211/4 2225/4 2247/4 1095/2 1099/2 2181/4 2261/4 2187/4 2261/4 2211/4 562 2221/4 2211/4 1087/2 545 546 560 2231/4 2217/4 1127/2 2271/4 566 1129/2 1129/2 1129/2 2213/4 2251/4 2177/4 551 536 1079/2 2201/4 2191/4 541 551 2221/4 1119/2 1095/2 557 551 557 1097/2 1099/2 561 2215/4 2223/4 2251/4 561 2247/4 566 2287/4 2277/4 571 2283/4 2291/4 571 582 1117/2 1125/2 561 567 1107/2 556 2231/4 2261/4 2231/4 2261/4 2245/4 571 551 2223/4 2215/4 562 2217/4 2237/4 2141/4 1077/2 2181/4 2187/4 541 545 2181/4 2201/4 2197/4 551 2247/4 1137/2 2207/4 560 566 1145/2 2181/4 2237/4 2227/4 1127/2 2217/4 2203/4 2237/4 2301/4 568 566 2265/4 2283/4 561 2253/4 565 566 1087/2 1117/2 1117/2 1127/2 2215/4 560 2251/4 1147/2 560 2283/4 2281/4 2301/4 1119/2 1117/2 2261/4 571 560 1127/2 570 2311/4 561 1157/2 2301/4 2315/4 2251/4 571 2305/4 590 2241/4 2275/4 1149/2 2297/4 2201/4 567 1089/2 576 2233/4 2247/4 2221/4 2241/4 2247/4 2261/4 1149/2 1165/2 576 2303/4 1137/2 2297/4 1117/2 2265/4 550 2271/4 2231/4 1147/2 1111/2 1149/2 1127/2 571 565 570 2311/4 576 1165/2 2307/4 2261/4 1167/2 2303/4 1157/2 1137/2 2317/4 2281/4 1621/4 1621/4 825/2 1607/4 809/2 1627/4 1697/4 1601/4 406 1587/4 415 777/2 801/2 777/2 1593/4 1597/4 400 795/2 807/2 396 1601/4 400 1645/4 1585/4 807/2 1443/4 1465/4 1471/4 1423/4 1451/4 747/2 365 1477/4 723/2 1541/4 372 372 757/2 1511/4 1447/4 1475/4 1445/4 1447/4 1425/4 747/2 373 1507/4 735/2 737/2 725/2 749/2 1473/4 1461/4 1491/4 382 735/2 1497/4 735/2 380 1491/4 757/2 381 1557/4 755/2 747/2 1481/4 376 1507/4 1521/4 1511/4 1525/4 365 747/2 1467/4 1521/4 1481/4 371 386 381 755/2 1503/4 739/2 759/2 1491/4 1481/4 1501/4 1491/4 1477/4 366 371 757/2 1467/4 370 376 767/2 1447/4 1461/4 375 1521/4 1491/4 749/2 1505/4 1541/4 1497/4 755/2 375 1527/4 366 747/2 757/2 1497/4 725/2 727/2 1481/4 1551/4 370 377 1547/4 757/2 372 1491/4 767/2 1571/4 1495/4 767/2 390 395 765/2 1541/4 1567/4 1581/4 1511/4 1491/4 777/2 1577/4 373 1531/4 767/2 395 1527/4 747/2 384 787/2 380 385 376 767/2 757/2 1525/4 757/2 1557/4 1487/4 1515/4 376 386 387 381 381 384 1541/4 385 1577/4 395 1591/4 1557/4 386 1573/4 1561/4 1601/4 1527/4 1531/4 381 1541/4 1491/4 759/2 775/2 1525/4 1547/4 1525/4 1547/4 1571/4 759/2 1547/4 391 777/2 1531/4 749/2 385 1515/4 1493/4 381 1537/4 1561/4 381 785/2 775/2 797/2 1541/4 789/2 765/2 386 1507/4 785/2 1571/4 391 1521/4 1581/4 380 1555/4 387 1537/4 1537/4 1561/4 1541/4 1547/4 1581/4 787/2 1551/4 1571/4 1557/4 1557/4 779/2 390 785/2 1587/4 787/2 1625/4 1587/4 391 1585/4 799/2 1587/4 1597/4 395 1551/4 1577/4 1565/4 1571/4 795/2 1537/4 1575/4 1611/4 1563/4 799/2 815/2 391 785/2 391 795/2 767/2 1587/4 396 1577/4 1591/4 1591/4 1557/4 1543/4 386 1583/4 1567/4 1577/4 785/2 1603/4 397 799/2 797/2 807/2 1537/4 1567/4 1595/4 1607/4 1587/4 400 1547/4 797/2 769/2 386 1601/4 1583/4 391 779/2 361 1471/4 719/2 725/2 373 365 1453/4 1465/4 1457/4 747/2 1443/4 1497/4 1457/4 747/2 1471/4 1481/4 1467/4 1481/4 1437/4 364 737/2 755/2 717/2 1465/4 370 1505/4 1471/4 371 1463/4 1501/4 717/2 1445/4 1517/4 1507/4 1471/4 1511/4 1481/4 1527/4 747/2 1493/4 1531/4 1517/4 376 755/2 376 375 749/2 366 379 1521/4 1473/4 1507/4 1517/4 1611/4 775/2 759/2 1487/4 1467/4 727/2 1467/4 1477/4 755/2 1471/4 725/2 366 1491/4 366 361 1507/4 1543/4 727/2 1491/4 747/2 1551/4 365 1497/4 385 749/2 362 1551/4 1497/4 799/2 767/2 1497/4 1483/4 1491/4 1437/4 729/2 1501/4 400 1547/4 749/2 1611/4 380 1477/4 370 376 381 745/2 745/2 376 1567/4 379 757/2 777/2 378 376 1507/4 1527/4 807/2 396 765/2 372 1541/4 1503/4 1581/4 400 397 755/2 1485/4 1561/4 777/2 1551/4 797/2 391 767/2 737/2 1531/4 1401/4 1441/4 1517/4 361 366 729/2 1537/4 749/2 375 757/2 801/2 1607/4 1537/4 1561/4 381 1587/4 1431/4 1461/4 1557/4 366 1517/4 376 795/2 381 1527/4 755/2 1581/4 757/2 1571/4 376 1581/4 807/2 1521/4 771/2 769/2 787/2 779/2 1581/4 406 785/2 1597/4 1571/4 809/2 777/2 1545/4 371 1623/4 821/2 1551/4 1575/4 1587/4 1617/4 1577/4 1585/4 1621/4 402 803/2 779/2 1631/4 397 391 765/2 827/2 396 1487/4 1475/4 376 745/2 375 735/2 386 747/2 795/2 1527/4 1587/4 1561/4 1537/4 1531/4 797/2 1615/4 1525/4 1491/4 381 1575/4 1541/4 747/2 1557/4 1577/4 1541/4 1561/4 396 1593/4 777/2 1571/4 407 1593/4 390 1521/4 400 1595/4 1595/4 775/2 1597/4 391 1571/4 392 1611/4 807/2 1597/4 1597/4 819/2 1611/4 785/2 787/2 805/2 1587/4 400 1573/4 412 1591/4 397 787/2 785/2 397 789/2 1603/4 1621/4 395 1587/4 789/2 1611/4 797/2 1601/4 366 767/2 1467/4 1543/4 1497/4 1527/4 1501/4 379 1511/4 755/2 382 367 749/2 1463/4 1515/4 1517/4 1495/4 729/2 1475/4 749/2 757/2 1523/4 1477/4 1491/4 1491/4 1501/4 377 1543/4 769/2 1557/4 382 1541/4 1527/4 777/2 1503/4 1527/4 381 1547/4 376 1531/4 1531/4 763/2 390 765/2 385 386 759/2 1557/4 767/2 1527/4 777/2 1531/4 1535/4 787/2 1553/4 1567/4 1551/4 1563/4 1547/4 1477/4 1437/4 1453/4 739/2 729/2 737/2 371 725/2 372 1487/4 366 371 1505/4 376 1473/4 1475/4 1461/4 1471/4 1487/4 1467/4 1461/4 737/2 1473/4 737/2 1493/4 366 370 1497/4 1461/4 371 1491/4 741/2 376 765/2 1491/4 371 1531/4 390 759/2 1511/4 769/2 380 386 775/2 387 755/2 1527/4 1495/4 1507/4 737/2 1477/4 757/2 1523/4 1527/4 1491/4 381 767/2 1537/4 386 371 376 387 1521/4 1531/4 1451/4 357 739/2 1511/4 1481/4 1447/4 1533/4 739/2 1521/4 1507/4 1537/4 1541/4 767/2 382 1547/4 390 360 747/2 1521/4 747/2 367 1441/4 1491/4 366 376 1497/4 787/2 1527/4 380 371 379 1541/4 370 1461/4 1501/4 1515/4 759/2 372 1533/4 1547/4 1497/4 371 1551/4 787/2 375 381 1591/4 1567/4 757/2 1507/4 1567/4 767/2 385 1501/4 1551/4 376 1571/4 1541/4 799/2 1581/4 785/2 767/2 775/2 1533/4 1447/4 1421/4 757/2 745/2 1477/4 1481/4 747/2 735/2 1501/4 743/2 769/2 1527/4 376 376 761/2 757/2 1451/4 361 1487/4 1507/4 1481/4 737/2 1491/4 1531/4 755/2 735/2 1521/4 745/2 376 747/2 1571/4 1531/4 1487/4 370 1517/4 380 377 1493/4 1543/4 1487/4 1523/4 1521/4 1585/4 777/2 1501/4 765/2 1537/4 777/2 1547/4 1517/4 386 385 1555/4 1527/4 1501/4 1561/4 1533/4 1491/4 777/2 387 757/2 1527/4 1541/4 1507/4 1507/4 375 749/2 767/2 380 1531/4 391 387 799/2 1567/4 785/2 777/2 785/2 779/2 775/2 1561/4 1505/4 757/2 767/2 777/2 783/2 775/2 1557/4 1531/4 1527/4 777/2 1555/4 1547/4 1593/4 391 795/2 787/2 1581/4 1587/4 777/2 391 1573/4 1557/4 799/2 1591/4 787/2 400 1571/4 1561/4 1621/4 1607/4 1631/4 1581/4 1551/4 1571/4 1595/4 1551/4 777/2 769/2 779/2 395 1571/4 1561/4 781/2 789/2 1547/4 1541/4 795/2 787/2 366 745/2 1507/4 749/2 375 1521/4 1505/4 1487/4 1523/4 385 777/2 382 1547/4 1517/4 1517/4 747/2 1527/4 381 1501/4 380 1521/4 1501/4 765/2 757/2 385 759/2 1537/4 375 1557/4 387 376 370 765/2 757/2 1531/4 377 1557/4 1563/4 392 1517/4 1587/4 777/2 769/2 387 1571/4 1577/4 1547/4 787/2 390 1551/4 777/2 1531/4 1557/4 1561/4 1585/4 391 785/2 1601/4 785/2 390 406 1573/4 807/2 795/2 1601/4 1531/4 765/2 381 1531/4 387 773/2 787/2 789/2 1567/4 787/2 1557/4 401 1557/4 1587/4 1567/4 1561/4 785/2 787/2 1547/4 779/2 1561/4 1571/4 1553/4 819/2 787/2 1583/4 397 1581/4 777/2 1571/4 1577/4 395 1575/4 807/2 1585/4 395 397 1611/4 797/2 1577/4 787/2 1591/4 1605/4 797/2 416 1631/4 839/2 817/2 1587/4 411 839/2 404 410 1667/4 1611/4 1713/4 1705/4 1687/4 1647/4 415 1697/4 1691/4 426 1591/4 1597/4 1591/4 795/2 809/2 1585/4 411 401 426 416 1671/4 410 1687/4 415 1681/4 835/2 401 799/2 815/2 411 837/2 1597/4 1663/4 1611/4 1651/4 416 416 1687/4 845/2 847/2 1701/4 1687/4 1663/4 420 1677/4 857/2 431 1671/4 847/2 827/2 1725/4 1677/4 432 426 425 1691/4 426 1681/4 1707/4 845/2 1701/4 1667/4 1727/4 1721/4 425 426 1595/4 777/2 1563/4 1571/4 789/2 789/2 1577/4 1591/4 737/2 1493/4 1497/4 1455/4 376 1491/4 1481/4 1481/4 757/2 1505/4 1477/4 745/2 376 380 757/2 1477/4 1507/4 1495/4 739/2 365 1547/4 391 767/2 367 771/2 759/2 1487/4 370 376 767/2 749/2 1491/4 1551/4 386 1523/4 1511/4 1555/4 1537/4 775/2 1501/4 1571/4 1587/4 381 390 1551/4 391 1535/4 1557/4 396 1555/4 1517/4 371 1547/4 775/2 775/2 775/2 386 1601/4 1511/4 771/2 1543/4 1511/4 381 1511/4 737/2 1481/4 1437/4 1437/4 745/2 376 1461/4 1501/4 1627/4 1537/4 372 1487/4 1501/4 1501/4 747/2 745/2 1495/4 737/2 361 1451/4 1501/4 1533/4 1507/4 1497/4 386 1511/4 747/2 737/2 1487/4 1497/4 371 376 1681/4 765/2 371 1473/4 392 795/2 1481/4 1477/4 799/2 1521/4 1497/4 1505/4 1537/4 392 745/2 747/2 1537/4 1543/4 1491/4 1487/4 773/2 767/2 1487/4 745/2 1515/4 1521/4 1501/4 1583/4 779/2 1535/4 370 757/2 382 1483/4 371 1491/4 376 757/2 757/2 1551/4 1541/4 1537/4 391 1551/4 777/2 386 391 413 1507/4 1545/4 777/2 767/2 765/2 382 1541/4 391 1557/4 382 1527/4 380 763/2 1547/4 386 381 381 1507/4 1547/4 1567/4 1587/4 767/2 765/2 1537/4 767/2 1551/4 769/2 385 386 1497/4 1545/4 381 767/2 765/2 1537/4 381 775/2 1571/4 386 1521/4 1541/4 380 785/2 381 382 380 386 381 370 370 745/2 1501/4 1501/4 749/2 369 745/2 1523/4 765/2 757/2 382 391 1521/4 757/2 377 377 371 377 739/2 1511/4 376 1501/4 747/2 1531/4 385 773/2 779/2 767/2 385 763/2 1521/4 381 747/2 1511/4 1501/4 1531/4 1501/4 1501/4 1481/4 769/2 1527/4 391 757/2 380 385 379 1521/4 1577/4 380 755/2 1527/4 1533/4 1543/4 779/2 757/2 383 1561/4 1527/4 380 379 1527/4 1547/4 1545/4 1487/4 1477/4 370 1447/4 1481/4 1495/4 1461/4 715/2 372 371 737/2 1455/4 376 1487/4 1487/4 1475/4 1511/4 371 1481/4 362 737/2 372 1473/4 725/2 377 757/2 1461/4 1491/4 1557/4 737/2 1471/4 1471/4 757/2 1501/4 1541/4 373 380 386 376 372 387 377 749/2 1513/4 1551/4 381 1513/4 1467/4 1541/4 755/2 757/2 1503/4 1561/4 383 1501/4 1517/4 1525/4 767/2 1513/4 371 382 767/2 1511/4 755/2 1501/4 371 367 1521/4 1531/4 737/2 735/2 361 1525/4 377 1487/4 1501/4 1573/4 1547/4 376 739/2 375 380 725/2 1475/4 1485/4 737/2 375 737/2 1547/4 381 1507/4 371 761/2 1507/4 369 745/2 765/2 380 767/2 1527/4 380 1527/4 1487/4 753/2 787/2 386 747/2 1501/4 767/2 1521/4 1527/4 759/2 396 1525/4 757/2 1493/4 775/2 777/2 1501/4 1511/4 769/2 380 366 727/2 390 1497/4 365 735/2 739/2 1415/4 376 729/2 1477/4 356 747/2 747/2 759/2 1507/4 767/2 1547/4 1527/4 1497/4 388 1513/4 1447/4 1455/4 376 757/2 366 749/2 382 1511/4 1537/4 757/2 385 777/2 747/2 755/2 1571/4 1541/4 767/2 1517/4 390 379 777/2 380 777/2 769/2 775/2 1561/4 787/2 1541/4 783/2 1561/4 1587/4 1557/4 761/2 381 1581/4 1545/4 1541/4 767/2 1591/4 1577/4 1531/4 1511/4 1611/4 1537/4 1561/4 1545/4 426 1583/4 375 347 717/2 352 1473/4 1461/4 749/2 727/2 1535/4 777/2 789/2 1571/4 405 1471/4 1507/4 1507/4 370 1521/4 1547/4 769/2 1491/4 1555/4 1601/4 1605/4 1647/4 1591/4 396 807/2 797/2 1617/4 410 1637/4 1587/4 1573/4 415 407 795/2 1621/4 412 817/2 1671/4 829/2 1697/4 839/2 1637/4 412 1695/4 1681/4 411 1647/4 1661/4 817/2 829/2 407 422 1641/4 1621/4 411 1701/4 837/2 1657/4 1661/4 845/2 1681/4 1631/4 1571/4 795/2 1577/4 1617/4 397 819/2 1577/4 411 406 1661/4 1641/4 817/2 411 1647/4 1641/4 401 1593/4 757/2 360 1503/4 1471/4 1501/4 1481/4 1525/4 751/2 767/2 377 789/2 757/2 1515/4 747/2 1527/4 1511/4 797/2 1527/4 767/2 747/2 387 759/2 767/2 381 785/2 1557/4 779/2 767/2 386 381 381 1541/4 765/2 769/2 809/2 397 386 1511/4 388 1551/4 789/2 1551/4 767/2 381 765/2 1511/4 727/2 361 376 729/2 1461/4 1447/4 1461/4 362 1497/4 1457/4 1571/4 753/2 757/2 1511/4 1487/4 1473/4 729/2 1437/4 370 1427/4 370 366 739/2 1457/4 737/2 1461/4 729/2 1471/4 1501/4 1475/4 1471/4 725/2 1521/4 1497/4 747/2 371 1511/4 747/2 381 745/2 1543/4 747/2 765/2 1477/4 769/2 1531/4 1583/4 1563/4 785/2 1497/4 386 375 1507/4 375 1517/4 1521/4 1541/4 1521/4 393 381 1521/4 1551/4 387 769/2 375 372 1491/4 1527/4 1511/4 1503/4 386 381 1561/4 1527/4 1625/4 1541/4 787/2 765/2 1651/4 1593/4 1501/4 1507/4 775/2 1505/4 385 1477/4 787/2 1537/4 1553/4 1511/4 1607/4 1557/4 787/2 387 1627/4 785/2 767/2 1491/4 395 381 1547/4 371 1607/4 1547/4 795/2 1517/4 1597/4 1567/4 777/2 1527/4 1661/4 787/2 1533/4 757/2 1601/4 396 787/2 391 791/2 1547/4 1591/4 777/2 799/2 1571/4 1587/4 765/2 1615/4 401 370 1447/4 1523/4 757/2 382 737/2 386 757/2 1565/4 1491/4 396 1557/4 787/2 769/2 799/2 1551/4 381 377 1547/4 745/2 1517/4 1521/4 1547/4 757/2 1551/4 381 795/2 1531/4 785/2 765/2 1577/4 1543/4 1557/4 779/2 797/2 1527/4 805/2 1535/4 1571/4 769/2 1577/4 1511/4 807/2 1571/4 787/2 385 1617/4 396 1537/4 1513/4 795/2 777/2 402 380 1591/4 391 391 1497/4 1547/4 779/2 777/2 1521/4 395 1547/4 1497/4 727/2 370 739/2 1527/4 1487/4 1565/4 381 1557/4 777/2 775/2 747/2 1547/4 386 777/2 755/2 386 739/2 755/2 739/2 380 382 1527/4 1477/4 1551/4 1501/4 385 377 749/2 1521/4 757/2 376 1561/4 1521/4 777/2 376 389 386 1601/4 380 401 392 797/2 396 397 1555/4 401 392 1567/4 1541/4 1581/4 1557/4 785/2 1583/4 1581/4 1571/4 390 389 395 1531/4 391 391 795/2 789/2 1515/4 366 1521/4 1437/4 372 735/2 759/2 370 779/2 1541/4 1527/4 1511/4 1587/4 1541/4 777/2 381 759/2 1491/4 1511/4 1481/4 767/2 380 1547/4 1505/4 1565/4 1511/4 777/2 1477/4 1517/4 372 382 1497/4 386 1531/4 787/2 370 382 779/2 777/2 749/2 781/2 1527/4 777/2 1505/4 391 381 1565/4 759/2 757/2 371 1557/4 747/2 787/2 390 1547/4 1517/4 387 1531/4 1551/4 1547/4 1573/4 1517/4 383 1533/4 386 376 1551/4 1517/4 779/2 1527/4 1571/4 385 815/2 395 807/2 1577/4 1627/4 397 1621/4 809/2 1575/4 386 797/2 1583/4 391 779/2 799/2 1557/4 803/2 1573/4 406 1601/4 1591/4 795/2 1633/4 1591/4 813/2 801/2 807/2 1553/4 405 396 1633/4 1621/4 411 1611/4 1611/4 1591/4 797/2 397 1603/4 1581/4 1635/4 405 1633/4 1601/4 1641/4 1577/4 1601/4 1591/4 805/2 1607/4 1621/4 392 395 795/2 807/2 797/2 767/2 401 765/2 757/2 386 1571/4 1571/4 1535/4 1561/4 789/2 1553/4 1591/4 1643/4 815/2 1677/4 1631/4 795/2 411 1567/4 757/2 1597/4 1527/4 1585/4 1551/4 397 1621/4 1717/4 1595/4 1671/4 406 835/2 402 400 1571/4 1557/4 1571/4 831/2 819/2 412 1561/4 837/2 420 815/2 1641/4 1681/4 1617/4 827/2 1627/4 1627/4 410 1647/4 1627/4 1661/4 839/2 411 1641/4 1701/4 1611/4 1687/4 421 1627/4 1657/4 1683/4 819/2 799/2 376 787/2 1485/4 1587/4 777/2 1587/4 1557/4 1581/4 797/2 805/2 775/2 787/2 787/2 1567/4 1577/4 765/2 1557/4 1511/4 1497/4 797/2 396 1541/4 1547/4 405 797/2 392 1525/4 1571/4 1567/4 1543/4 1567/4 414 1583/4 396 797/2 831/2 1607/4 807/2 1575/4 817/2 1601/4 817/2 1591/4 1627/4 799/2 1597/4 797/2 416 817/2 1611/4 1591/4 1661/4 1631/4 1621/4 1597/4 415 406 1631/4 1561/4 1587/4 1593/4 807/2 397 797/2 767/2 1577/4 1541/4 807/2 1581/4 397 1571/4 1637/4 807/2 1571/4 386 1617/4 395 1591/4 787/2 1587/4 785/2 787/2 1517/4 1587/4 1583/4 1555/4 753/2 1607/4 1587/4 1587/4 1537/4 821/2 369 376 707/2 1523/4 1527/4 1467/4 1453/4 1541/4 377 380 376 1561/4 1543/4 1487/4 1471/4 1513/4 1521/4 757/2 360 1531/4 371 737/2 365 391 1515/4 1507/4 1457/4 1517/4 1493/4 361 1445/4 382 376 745/2 366 1527/4 747/2 1533/4 377 1527/4 375 1527/4 749/2 1557/4 387 797/2 767/2 1587/4 775/2 797/2 1553/4 777/2 1517/4 1583/4 380 1555/4 381 1551/4 375 1547/4 1535/4 1577/4 381 775/2 1523/4 391 1561/4 390 375 381 747/2 1531/4 1531/4 397 377 1571/4 1511/4 397 1561/4 1551/4 381 765/2 1555/4 797/2 378 387 1541/4 1563/4 779/2 1543/4 1501/4 785/2 749/2 390 387 785/2 755/2 1547/4 390 757/2 745/2 1507/4 367 757/2 1467/4 375 729/2 1581/4 1521/4 1541/4 1531/4 1571/4 1537/4 1561/4 757/2 789/2 1491/4 1531/4 1487/4 767/2 1473/4 1491/4 1501/4 1551/4 381 1521/4 374 1527/4 1547/4 785/2 1501/4 757/2 747/2 759/2 379 380 747/2 769/2 727/2 380 1521/4 1533/4 1501/4 1547/4 747/2 755/2 1537/4 396 1587/4 773/2 757/2 1601/4 387 787/2 370 1587/4 396 779/2 1537/4 797/2 759/2 1537/4 1497/4 1461/4 361 1481/4 1427/4 727/2 715/2 356 719/2 1461/4 1475/4 1461/4 361 747/2 729/2 1487/4 1437/4 369 367 1451/4 351 376 717/2 362 1471/4 1513/4 1467/4 1531/4 1447/4 739/2 365 727/2 707/2 1465/4 372 1531/4 365 769/2 1541/4 1491/4 1447/4 376 1501/4 747/2 1475/4 381 1471/4 366 1457/4 378 1481/4 737/2 707/2 749/2 1495/4 1491/4 713/2 1487/4 729/2 715/2 1441/4 1471/4 1487/4 745/2 367 747/2 717/2 1441/4 1387/4 1491/4 1435/4 1437/4 1437/4 1501/4 1485/4 1485/4 727/2 761/2 373 1481/4 707/2 370 717/2 1437/4 1405/4 376 1465/4 727/2 351 367 735/2 1427/4 705/2 1497/4 360 1467/4 699/2 376 745/2 741/2 705/2 1507/4 361 1491/4 1461/4 370 366 1451/4 1441/4 373 1457/4 1481/4 705/2 1491/4 1481/4 725/2 356 747/2 1471/4 1461/4 356 1477/4 727/2 1431/4 697/2 1481/4 357 362 1411/4 1307/4 1383/4 356 1461/4 1371/4 355 697/2 717/2 689/2 1447/4 1437/4 1477/4 352 1437/4 370 769/2 346 1387/4 1431/4 1485/4 669/2 362 1451/4 729/2 1387/4 1447/4 739/2 378 1415/4 1457/4 1451/4 371 1391/4 365 747/2 1501/4 705/2 1455/4 1461/4 1521/4 351 371 1497/4 387 707/2 745/2 1491/4 787/2 1451/4 377 727/2 376 717/2 1471/4 1543/4 1537/4 1451/4 1493/4 365 381 1411/4 371 372 380 346 356 1405/4 1447/4 347 709/2 352 1477/4 1475/4 1481/4 370 377 709/2 747/2 1491/4 767/2 1401/4 1437/4 365 729/2 1441/4 1445/4 365 381 1461/4 1461/4 371 381 361 1497/4 727/2 1531/4 1465/4 1491/4 1453/4 378 727/2 1477/4 1481/4 1533/4 1507/4 381 1547/4 1557/4 1467/4 1517/4 757/2 1517/4 376 386 1471/4 381 1487/4 1585/4 1617/4 1597/4 1563/4 1591/4 787/2 805/2 1527/4 1607/4 819/2 1635/4 1491/4 401 1541/4 1587/4 1497/4 382 401 395 1581/4 1627/4 807/2 1671/4 1541/4 1651/4 1621/4 805/2 1517/4 1547/4 377 789/2 787/2 819/2 785/2 1657/4 1601/4 1617/4 402 827/2 401 417 805/2 1673/4 1591/4 1661/4 1603/4 1677/4 807/2 420 1621/4 837/2 1627/4 1661/4 1633/4 1667/4 805/2 411 406 1725/4 406 1651/4 1627/4 1651/4 382 759/2 1487/4 1527/4 1497/4 1517/4 1495/4 767/2 1461/4 381 747/2 1543/4 1471/4 1497/4 727/2 745/2 1457/4 767/2 727/2 1511/4 376 785/2 377 1537/4 386 1571/4 1515/4 795/2 1531/4 391 1467/4 1491/4 1497/4 1523/4 1487/4 1497/4 1497/4 1541/4 737/2 789/2 1483/4 1571/4 747/2 1547/4 1547/4 394 1515/4 1551/4 777/2 1535/4 1517/4 1597/4 1527/4 386 380 387 382 1557/4 1501/4 777/2 1517/4 1577/4 775/2 1551/4 1517/4 401 1523/4 387 381 388 375 1537/4 1515/4 777/2 377 1557/4 1417/4 739/2 367 755/2 1515/4 727/2 1467/4 380 729/2 377 392 1607/4 727/2 1517/4 1527/4 775/2 729/2 739/2 1521/4 1577/4 725/2 1531/4 1491/4 1527/4 366 375 1533/4 1547/4 1521/4 1497/4 1507/4 1551/4 727/2 382 386 765/2 356 759/2 1517/4 781/2 1461/4 382 1547/4 1571/4 1477/4 757/2 380 386 1461/4 376 396 387 1461/4 749/2 1501/4 1547/4 729/2 381 1511/4 390 1481/4 376 380 1557/4 1427/4 370 1487/4 767/2 727/2 1491/4 1471/4 757/2 374 1541/4 767/2 1561/4 1521/4 1557/4 1537/4 390 1471/4 759/2 1511/4 1577/4 1511/4 1497/4 376 1527/4 1527/4 379 1525/4 807/2 1491/4 1507/4 381 402 1577/4 757/2 767/2 1597/4 372 376 377 383 371 1527/4 383 1535/4 1495/4 779/2 381 1585/4 370 380 767/2 385 1491/4 382 1551/4 1567/4 372 769/2 1545/4 787/2 755/2 380 1531/4 402 381 1527/4 1517/4 769/2 745/2 1527/4 767/2 1551/4 386 390 1547/4 787/2 1551/4 785/2 1517/4 1571/4 1493/4 1551/4 769/2 799/2 1497/4 381 1533/4 777/2 1525/4 787/2 1535/4 787/2 1513/4 1561/4 755/2 1565/4 385 391 1547/4 785/2 382 789/2 385 1561/4 387 1597/4 1541/4 397 767/2 392 1551/4 1581/4 1541/4 785/2 1567/4 807/2 1581/4 1571/4 387 1621/4 1521/4 1567/4 783/2 789/2 392 1573/4 1587/4 799/2 1531/4 1581/4 387 787/2 1537/4 391 1507/4 389 1567/4 396 386 1601/4 1561/4 401 1591/4 1581/4 1547/4 1607/4 1517/4 1527/4 1511/4 797/2 1517/4 1615/4 386 392 388 795/2 1545/4 405 1547/4 1581/4 785/2 805/2 1573/4 811/2 795/2 397 789/2 807/2 1607/4 411 799/2 817/2 1581/4 1611/4 1591/4 1673/4 401 1637/4 396 396 799/2 1653/4 396 807/2 1597/4 827/2 1577/4 1607/4 395 1647/4 1561/4 807/2 387 1533/4 757/2 386 375 787/2 1531/4 797/2 1565/4 815/2 391 405 767/2 1605/4 1541/4 389 1531/4 795/2 392 787/2 775/2 799/2 1567/4 807/2 1567/4 805/2 1547/4 1625/4 1531/4 797/2 1581/4 805/2 769/2 1611/4 1597/4 1613/4 387 402 1551/4 1611/4 386 402 390 1625/4 1543/4 775/2 789/2 1607/4 1587/4 1597/4 1551/4 809/2 1591/4 817/2 1597/4 401 392 405 1571/4 391 1517/4 787/2 1537/4 795/2 381 791/2 1555/4 400 1555/4 391 755/2 787/2 1577/4 407 1561/4 817/2 397 789/2 1581/4 1611/4 777/2 1571/4 395 395 390 1607/4 1567/4 405 1597/4 1611/4 789/2 405 1573/4 817/2 1557/4 401 1587/4 813/2 1567/4 406 385 797/2 1573/4 799/2 1571/4 405 779/2 1591/4 406 1607/4 1571/4 1597/4 1551/4 1613/4 775/2 1631/4 1581/4 412 1593/4 1637/4 1561/4 809/2 387 1635/4 1587/4 793/2 1547/4 412 1477/4 386 739/2 1511/4 1551/4 1561/4 757/2 777/2 375 1641/4 395 1625/4 1541/4 795/2 765/2 1571/4 1547/4 395 396 1587/4 1507/4 785/2 385 1557/4 1607/4 1631/4 1543/4 392 1567/4 1657/4 1611/4 775/2 1591/4 821/2 397 1657/4 1641/4 426 1627/4 1657/4 1651/4 1671/4 1625/4 412 410 829/2 1605/4 1613/4 1627/4 1701/4 1597/4 817/2 407 829/2 1631/4 1681/4 1627/4 412 405 411 809/2 837/2 1621/4 817/2 408 420 401 827/2 410 1647/4 819/2 1647/4 1651/4 1693/4 1635/4 1547/4 787/2 777/2 1513/4 385 386 404 370 1517/4 781/2 1577/4 1527/4 1557/4 377 390 1461/4 1525/4 1523/4 1567/4 747/2 759/2 771/2 1617/4 1521/4 386 1567/4 791/2 1553/4 386 1647/4 847/2 757/2 395 795/2 1581/4 1521/4 1547/4 387 395 747/2 1557/4 1551/4 1581/4 755/2 1565/4 1527/4 386 381 775/2 1521/4 386 735/2 767/2 755/2 725/2 367 737/2 1437/4 371 737/2 380 1451/4 1501/4 1471/4 376 757/2 769/2 1517/4 1573/4 1481/4 759/2 377 386 717/2 376 1507/4 387 1521/4 385 757/2 390 387 777/2 1541/4 1531/4 371 1507/4 737/2 1527/4 1477/4 1521/4 1497/4 1513/4 1465/4 1507/4 1545/4 396 1463/4 381 367 769/2 755/2 1647/4 777/2 416 1485/4 1513/4 1505/4 1557/4 1455/4 1545/4 1501/4 759/2 370 1521/4 749/2 376 747/2 759/2 1471/4 1527/4 377 767/2 371 385 767/2 396 381 1561/4 382 1553/4 1507/4 391 747/2 1557/4 372 379 371 755/2 749/2 767/2 1491/4 391 1525/4 1561/4 381 1581/4 377 1551/4 372 1531/4 1487/4 765/2 376 1557/4 1487/4 749/2 1481/4 382 747/2 1491/4 737/2 1501/4 1501/4 1547/4 372 769/2 376 1551/4 379 787/2 1531/4 769/2 386 759/2 747/2 382 371 1513/4 745/2 1575/4 1457/4 1487/4 1431/4 1451/4 357 1471/4 1427/4 366 367 373 1447/4 1481/4 1471/4 372 737/2 1471/4 725/2 1475/4 715/2 361 715/2 1485/4 1431/4 739/2 360 747/2 1431/4 1457/4 1445/4 741/2 1435/4 1467/4 737/2 1517/4 1461/4 757/2 1441/4 1497/4 1451/4 1517/4 729/2 1477/4 1421/4 1471/4 1447/4 1511/4 360 1487/4 735/2 1491/4 1427/4 1467/4 1461/4 1497/4 725/2 745/2 1437/4 739/2 1427/4 1465/4 356 729/2 1417/4 366 1461/4 1497/4 361 737/2 1501/4 376 1461/4 749/2 1537/4 385 1477/4 377 735/2 1521/4 366 1491/4 371 1487/4 1437/4 1497/4 1485/4 1517/4 1463/4 1485/4 1471/4 1517/4 361 745/2 370 1527/4 729/2 755/2 747/2 380 363 1511/4 375 1547/4 366 386 735/2 1513/4 362 371 735/2 1501/4 1445/4 1477/4 747/2 1535/4 366 1477/4 372 1527/4 1447/4 1491/4 1473/4 1511/4 1451/4 367 370 1517/4 717/2 371 687/2 1401/4 361 735/2 350 1411/4 360 1481/4 1457/4 365 735/2 1503/4 1421/4 1467/4 1465/4 1487/4 707/2 352 361 366 1407/4 1441/4 362 1473/4 357 363 749/2 757/2 1441/4 727/2 1481/4 749/2 715/2 360 371 1491/4 361 1451/4 729/2 759/2 1441/4 1487/4 767/2 1511/4 1467/4 371 1511/4 1531/4 1455/4 1467/4 1491/4 1531/4 1441/4 737/2 376 380 737/2 1473/4 1501/4 1541/4 1461/4 1473/4 376 380 352 361 1435/4 735/2 1431/4 1445/4 365 1477/4 1461/4 1471/4 755/2 1541/4 371 1511/4 1507/4 767/2 356 1467/4 1461/4 1497/4 1461/4 1477/4 737/2 1507/4 1477/4 1481/4 1497/4 1517/4 366 1501/4 767/2 1517/4 1461/4 371 1481/4 749/2 1483/4 1491/4 375 1537/4 1477/4 749/2 1523/4 767/2 370 1517/4 767/2 1557/4 371 1511/4 1527/4 767/2 1487/4 769/2 380 1541/4 374 757/2 376 1527/4 371 757/2 759/2 779/2 1423/4 372 725/2 1461/4 1437/4 1477/4 745/2 1477/4 729/2 1481/4 1461/4 1467/4 362 735/2 1471/4 372 360 739/2 1451/4 737/2 717/2 1445/4 361 1457/4 721/2 1461/4 1477/4 1501/4 739/2 367 370 1505/4 372 372 1465/4 751/2 1477/4 372 373 375 1481/4 759/2 1491/4 1521/4 1491/4 1537/4 737/2 1521/4 366 382 1487/4 1507/4 1501/4 1501/4 767/2 397 1471/4 767/2 395 789/2 392 1577/4 1521/4 1567/4 1551/4 745/2 1511/4 376 769/2 797/2 367 377 1501/4 385 382 389 1515/4 1507/4 1495/4 787/2 386 1493/4 1513/4 1487/4 745/2 377 745/2 376 1531/4 747/2 386 1517/4 1531/4 1601/4 1525/4 1581/4 1561/4 809/2 787/2 396 785/2 1587/4 377 1611/4 1607/4 1611/4 397 789/2 1581/4 401 799/2 385 1567/4 819/2 1577/4 1617/4 775/2 405 797/2 813/2 759/2 405 787/2 1563/4 392 799/2 1605/4 1581/4 729/2 1537/4 1601/4 807/2 389 1607/4 787/2 1585/4 1577/4 1623/4 406 405 1591/4 1607/4 1633/4 1667/4 1531/4 749/2 1567/4 789/2 391 797/2 1627/4 415 1597/4 1601/4 1647/4 1643/4 411 1631/4 1647/4 1657/4 1577/4 797/2 1637/4 817/2 807/2 1611/4 1647/4 1651/4 410 1637/4 1697/4 411 805/2 411 1667/4 849/2 1615/4 1651/4 416 416 1623/4 411 839/2 421 402 1651/4 1681/4 849/2 1685/4 1627/4 1701/4 1713/4 1611/4 405 821/2 1681/4 1623/4 406 1661/4 1687/4 827/2 1685/4 1717/4 849/2 1667/4 1691/4 847/2 1771/4 1495/4 1531/4 777/2 1541/4 1507/4 1535/4 779/2 1537/4 767/2 380 1577/4 1591/4 384 1531/4 797/2 789/2 1527/4 1507/4 1557/4 1561/4 386 1567/4 1555/4 787/2 777/2 777/2 1581/4 807/2 381 1547/4 1553/4 795/2 1545/4 1541/4 1591/4 777/2 1585/4 767/2 391 1601/4 391 1537/4 1557/4 1587/4 381 1537/4 1591/4 1597/4 1497/4 1501/4 371 1511/4 763/2 1505/4 1497/4 1505/4 376 1523/4 1557/4 1551/4 1537/4 395 767/2 1577/4 1475/4 757/2 747/2 382 1501/4 755/2 747/2 1515/4 757/2 375 1497/4 381 1491/4 1537/4 1503/4 1567/4 1531/4 759/2 1527/4 765/2 765/2 1541/4 767/2 767/2 390 392 1551/4 1571/4 1561/4 1527/4 1547/4 767/2 1511/4 1527/4 775/2 395 777/2 395 386 381 751/2 777/2 1531/4 769/2 1517/4 1537/4 1527/4 767/2 1557/4 777/2 376 375 1545/4 1551/4 787/2 390 1543/4 1591/4 385 1575/4 1547/4 1537/4 386 400 757/2 385 381 377 1541/4 395 1527/4 1513/4 769/2 1561/4 1535/4 765/2 769/2 380 381 1541/4 765/2 386 765/2 1565/4 1561/4 1551/4 767/2 785/2 1571/4 1557/4 1553/4 1577/4 1585/4 1567/4 785/2 1563/4 391 1555/4 757/2 386 1551/4 1621/4 1577/4 395 386 1565/4 386 391 385 1535/4 769/2 396 1501/4 767/2 1517/4 386 375 1523/4 1515/4 387 386 1577/4 797/2 795/2 1557/4 387 1561/4 1587/4 757/2 1547/4 390 1597/4 1527/4 777/2 767/2 775/2 1551/4 392 789/2 392 1567/4 797/2 1591/4 799/2 1541/4 1581/4 1553/4 1551/4 1527/4 392 1535/4 1561/4 1527/4 1541/4 1541/4 391 1555/4 1563/4 1553/4 1587/4 787/2 807/2 787/2 396 769/2 1565/4 1555/4 1565/4 382 383 380 1561/4 1537/4 783/2 386 1587/4 757/2 1557/4 1507/4 777/2 759/2 386 1517/4 1557/4 1577/4 797/2 1565/4 1597/4 392 1611/4 1563/4 1591/4 1541/4 1571/4 1527/4 1551/4 789/2 775/2 1527/4 1551/4 1563/4 1553/4 391 1573/4 386 390 1561/4 1551/4 777/2 787/2 775/2 1577/4 775/2 392 387 1551/4 1541/4 395 1537/4 390 787/2 1587/4 391 395 396 1631/4 1601/4 795/2 795/2 815/2 390 1627/4 396 392 395 395 1537/4 1605/4 1577/4 1595/4 366 735/2 717/2 1433/4 735/2 1491/4 362 739/2 1473/4 1477/4 1437/4 371 717/2 1467/4 366 747/2 1435/4 365 360 717/2 1503/4 1497/4 360 1457/4 727/2 735/2 1453/4 1447/4 1465/4 1487/4 356 357 1501/4 739/2 1461/4 1471/4 1487/4 376 1521/4 739/2 1467/4 1485/4 1433/4 1471/4 1467/4 759/2 755/2 366 735/2 374 1467/4 1511/4 367 749/2 1433/4 1471/4 727/2 371 1425/4 372 1477/4 381 365 1467/4 739/2 1511/4 362 743/2 376 381 737/2 371 381 381 1531/4 395 391 1597/4 1517/4 1507/4 1497/4 763/2 719/2 1521/4 386 1527/4 370 1561/4 384 807/2 1487/4 1531/4 1525/4 1561/4 1447/4 757/2 767/2 1597/4 1551/4 386 1541/4 817/2 1577/4 797/2 783/2 410 795/2 1581/4 1601/4 406 1587/4 1581/4 1647/4 1607/4 1571/4 412 411 1597/4 1573/4 1601/4 817/2 1647/4 391 1617/4 797/2 402 1547/4 793/2 813/2 807/2 827/2 1645/4 1663/4 406 1633/4 411 807/2 408 829/2 1681/4 827/2 837/2 1677/4 1667/4 817/2 1647/4 835/2 1657/4 417 1643/4 795/2 1575/4 1531/4 795/2 386 777/2 386 767/2 1583/4 390 371 1513/4 381 777/2 1531/4 1507/4 1537/4 783/2 1521/4 1497/4 755/2 382 1527/4 1537/4 1545/4 1531/4 757/2 769/2 386 775/2 1537/4 1551/4 1527/4 385 759/2 1507/4 382 380 1521/4 380 1501/4 382 1527/4 777/2 1517/4 1527/4 775/2 1561/4 1527/4 395 387 391 399 779/2 386 1581/4 777/2 769/2 1557/4 390 767/2 1577/4 799/2 392 392 787/2 785/2 1617/4 787/2 777/2 1561/4 392 385 787/2 1561/4 1557/4 1537/4 757/2 1557/4 1541/4 769/2 397 379 787/2 381 767/2 1551/4 775/2 777/2 777/2 1573/4 1567/4 1605/4 1557/4 1567/4 396 1571/4 397 384 1581/4 767/2 386 380 785/2 1547/4 1545/4 362 1497/4 1441/4 362 365 727/2 1447/4 1453/4 360 1497/4 361 1455/4 745/2 371 367 1481/4 1463/4 747/2 1507/4 361 380 1467/4 1481/4 1447/4 749/2 749/2 371 1511/4 1497/4 745/2 1451/4 1441/4 1517/4 1487/4 735/2 376 1471/4 1517/4 1481/4 775/2 1477/4 385 1511/4 1423/4 737/2 745/2 368 1493/4 755/2 1493/4 376 1487/4 1477/4 371 717/2 365 755/2 1521/4 1451/4 361 1437/4 1477/4 352 707/2 737/2 1493/4 1471/4 366 735/2 376 737/2 1461/4 1481/4 1541/4 368 381 1513/4 1531/4 365 1527/4 1491/4 372 729/2 1451/4 1505/4 371 1457/4 1473/4 747/2 757/2 1433/4 1481/4 1491/4 1501/4 1447/4 360 366 1505/4 1447/4 749/2 747/2 769/2 366 365 1471/4 372 1461/4 757/2 1521/4 767/2 747/2 371 378 1513/4 366 1487/4 1503/4 1537/4 749/2 1467/4 376 759/2 1407/4 367 739/2 745/2 1427/4 363 695/2 1371/4 1417/4 1433/4 346 1381/4 1467/4 719/2 368 361 1503/4 1453/4 372 739/2 1501/4 1473/4 1381/4 1385/4 745/2 1477/4 737/2 699/2 1441/4 729/2 727/2 1431/4 735/2 767/2 1507/4 375 727/2 1477/4 727/2 361 1531/4 737/2 715/2 361 1483/4 1467/4 1481/4 729/2 1521/4 377 1461/4 1471/4 1517/4 1481/4 372 1501/4 1571/4 1521/4 1453/4 366 757/2 1473/4 1473/4 367 380 1531/4 1531/4 1491/4 1547/4 382 345 350 351 719/2 346 1361/4 1411/4 1421/4 1467/4 1467/4 719/2 717/2 719/2 354 737/2 1447/4 1397/4 1387/4 1411/4 1447/4 1441/4 356 739/2 356 1411/4 360 1447/4 737/2 727/2 729/2 1471/4 365 1441/4 1431/4 1487/4 1487/4 747/2 1483/4 1511/4 1461/4 1441/4 715/2 381 370 727/2 1461/4 1477/4 372 709/2 733/2 371 1487/4 371 1475/4 1515/4 1463/4 1457/4 1447/4 1491/4 745/2 372 715/2 1507/4 1495/4 1477/4 365 737/2 1467/4 361 360 1477/4 1491/4 1507/4 1495/4 1487/4 737/2 1531/4 749/2 377 1567/4 1477/4 375 749/2 1461/4 375 1507/4 743/2 371 779/2 376 377 1511/4 385 1561/4 765/2 787/2 382 390 1567/4 390 1551/4 1537/4 799/2 1587/4 779/2 1577/4 396 1577/4 1567/4 775/2 785/2 396 390 777/2 1545/4 1591/4 789/2 787/2 807/2 396 1561/4 380 757/2 759/2 1567/4 387 767/2 1547/4 367 1435/4 739/2 1437/4 739/2 1427/4 380 1457/4 757/2 1537/4 1511/4 747/2 370 1503/4 1501/4 783/2 1487/4 1495/4 1491/4 375 1495/4 371 1511/4 1447/4 1547/4 1487/4 1513/4 1527/4 1561/4 1531/4 1537/4 376 1501/4 1527/4 1531/4 1521/4 1611/4 789/2 386 1531/4 397 395 1621/4 787/2 1647/4 1553/4 1651/4 395 1643/4 1625/4 817/2 1613/4 827/2 809/2 405 1647/4 827/2 817/2 1623/4 817/2 411 418 415 1617/4 1557/4 1561/4 785/2 397 787/2 1567/4 411 1617/4 410 785/2 825/2 407 1637/4 411 839/2 417 1561/4 1551/4 406 1641/4 1591/4 805/2 815/2 1607/4 412 1621/4 1655/4 410 817/2 1647/4 1571/4 395 747/2 1457/4 757/2 375 1507/4 1463/4 1525/4 1497/4 1483/4 1487/4 386 381 1517/4 377 1517/4 767/2 376 773/2 777/2 391 1521/4 1517/4 400 787/2 1525/4 745/2 391 785/2 1491/4 371 1567/4 785/2 366 1493/4 1503/4 757/2 1501/4 355 739/2 729/2 392 366 1555/4 386 1523/4 1551/4 767/2 765/2 365 727/2 747/2 1531/4 775/2 1461/4 1557/4 745/2 745/2 703/2 1451/4 1481/4 1463/4 1451/4 361 365 1445/4 699/2 1433/4 1437/4 1427/4 1375/4 727/2 711/2 719/2 1465/4 725/2 719/2 366 1401/4 727/2 1461/4 717/2 1431/4 1431/4 1431/4 1461/4 705/2 1461/4 733/2 1427/4 351 1477/4 1471/4 1477/4 1487/4 1461/4 360 1437/4 1427/4 1451/4 727/2 371 361 361 1455/4 367 1463/4 361 1407/4 705/2 727/2 725/2 709/2 1407/4 689/2 1401/4 1411/4 346 709/2 697/2 1425/4 1427/4 1405/4 1437/4 695/2 2387/4 1187/2 590 2367/4 602 2407/4 2433/4 2431/4 1217/2 2411/4 1217/2 2411/4 2407/4 611 2447/4 2387/4 2441/4 2371/4 2397/4 606 1197/2 593 2453/4 2411/4 2385/4 2381/4 622 2367/4 2431/4 586 2401/4 590 1195/2 582 2445/4 1185/2 2381/4 1157/2 2317/4 2267/4 1167/2 1169/2 2357/4 1167/2 2367/4 598 1195/2 1197/2 2397/4 596 1181/2 1171/2 586 581 1147/2 2311/4 1165/2 2305/4 2345/4 1157/2 1185/2 2341/4 2371/4 575 2361/4 1189/2 1169/2 577 596 2345/4 2331/4 2351/4 590 590 2367/4 2403/4 2401/4 2367/4 2327/4 592 2331/4 2391/4 1189/2 2367/4 1205/2 1169/2 587 1177/2 2413/4 596 1185/2 1165/2 611 2337/4 2371/4 1177/2 2381/4 2371/4 2391/4 1167/2 1227/2 596 1199/2 2413/4 2387/4 2391/4 2407/4 2437/4 606 2447/4 2481/4 2467/4 2487/4 2453/4 2461/4 2421/4 2431/4 2443/4 2461/4 2421/4 607 1207/2 607 2421/4 606 611 1247/2 620 2451/4 2461/4 2515/4 610 2437/4 2407/4 1219/2 606 1239/2 2437/4 615 605 612 606 2455/4 2411/4 1217/2 606 1207/2 2431/4 612 1235/2 617 2447/4 2471/4 2455/4 2457/4 1227/2 2417/4 2447/4 611 2427/4 2467/4 2501/4 2501/4 2421/4 1195/2 592 586 1167/2 1177/2 596 2413/4 606 2435/4 2427/4 2457/4 2451/4 1249/2 2413/4 616 2421/4 606 602 1209/2 2377/4 1199/2 2421/4 602 607 2461/4 611 616 2431/4 2457/4 1227/2 2431/4 2413/4 2405/4 2431/4 1199/2 596 2443/4 2435/4 2407/4 1205/2 1235/2 2447/4 2407/4 1207/2 611 2431/4 1217/2 596 627 2421/4 2463/4 2403/4 2461/4 620 2421/4 2411/4 2457/4 606 2431/4 1207/2 1231/2 606 1209/2 612 2421/4 2293/4 2311/4 2387/4 2337/4 586 1149/2 2307/4 1177/2 596 1147/2 2381/4 601 621 1175/2 2335/4 1177/2 2405/4 1197/2 2281/4 2445/4 586 610 1169/2 2381/4 1231/2 2351/4 1189/2 616 2397/4 595 2451/4 606 1245/2 2327/4 2523/4 1267/2 2407/4 2473/4 2457/4 2407/4 2483/4 2523/4 1239/2 610 631 610 1247/2 631 616 2351/4 2391/4 2577/4 637 2541/4 2487/4 631 2541/4 611 1207/2 1247/2 612 606 2461/4 2501/4 2427/4 602 2351/4 1227/2 2497/4 2451/4 1215/2 1289/2 2531/4 2521/4 1247/2 2471/4 2581/4 605 2487/4 2471/4 2521/4 1249/2 611 617 1257/2 2497/4 2511/4 637 1295/2 2467/4 611 1277/2 2531/4 617 2417/4 2593/4 2537/4 626 2515/4 1289/2 2527/4 1253/2 2531/4 1273/2 2591/4 1265/2 2273/4 591 2347/4 2307/4 2311/4 2357/4 2371/4 2305/4 1189/2 2431/4 2361/4 2311/4 2341/4 1185/2 2321/4 2271/4 2267/4 1177/2 584 2303/4 1147/2 2393/4 2375/4 1189/2 2347/4 2397/4 2393/4 2347/4 2331/4 1203/2 621 601 1205/2 1211/2 2427/4 2481/4 2503/4 2491/4 2457/4 2435/4 1197/2 2411/4 1187/2 617 596 1217/2 601 1239/2 1217/2 2471/4 2467/4 625 2427/4 1207/2 2367/4 2417/4 601 2411/4 2437/4 601 2407/4 2445/4 1179/2 2383/4 1195/2 2441/4 1219/2 600 591 2431/4 1187/2 2391/4 1205/2 611 2483/4 1219/2 2467/4 605 1197/2 601 2411/4 2403/4 2387/4 615 2395/4 2341/4 591 2361/4 2335/4 2327/4 2327/4 2397/4 592 2427/4 597 1217/2 594 1219/2 2421/4 2401/4 2377/4 2441/4 2341/4 2397/4 1213/2 2391/4 1189/2 2351/4 1189/2 601 2387/4 1205/2 1227/2 2413/4 2397/4 596 1217/2 580 2353/4 595 590 2421/4 2361/4 1167/2 581 2401/4 2383/4 2343/4 585 2411/4 601 2357/4 1169/2 1197/2 1207/2 2395/4 1177/2 2367/4 1197/2 601 602 2391/4 1185/2 1175/2 592 1185/2 1187/2 586 2303/4 2327/4 2317/4 2235/4 2211/4 580 1147/2 577 557 581 2307/4 567 572 1177/2 582 2307/4 567 1147/2 576 1125/2 562 2321/4 2277/4 2287/4 2247/4 592 2301/4 570 565 2333/4 1149/2 567 2261/4 2407/4 587 1155/2 2291/4 1187/2 580 577 572 2347/4 581 2263/4 2291/4 2367/4 2311/4 2361/4 2301/4 2351/4 2351/4 586 2277/4 2401/4 2371/4 1167/2 575 581 2335/4 2277/4 2267/4 1177/2 580 2255/4 570 586 2301/4 2247/4 1123/2 580 595 1117/2 2231/4 2343/4 2337/4 1129/2 2351/4 2327/4 2467/4 578 2311/4 2317/4 2305/4 1157/2 567 606 2371/4 1157/2 1187/2 1179/2 586 1187/2 2431/4 1157/2 2295/4 2277/4 556 2431/4 603 581 2327/4 2487/4 2431/4 1211/2 2445/4 2497/4 2531/4 1207/2 2491/4 641 2471/4 2477/4 2441/4 645 1235/2 1235/2 1207/2 2571/4 2543/4 620 2457/4 2497/4 2471/4 2451/4 2395/4 2561/4 2493/4 1227/2 2441/4 1235/2 2433/4 641 626 2481/4 1217/2 590 2341/4 2383/4 590 2453/4 2417/4 1175/2 580 2443/4 2397/4 586 2267/4 1187/2 1165/2 1167/2 1141/2 2487/4 2347/4 591 2321/4 2451/4 2381/4 2491/4 1167/2 2465/4 2385/4 2367/4 2327/4 2397/4 2361/4 597 1179/2 2461/4 2451/4 1187/2 591 1229/2 2577/4 586 2361/4 615 605 2387/4 2321/4 2471/4 607 2441/4 2313/4 2427/4 2443/4 1199/2 596 655 2437/4 2537/4 1167/2 615 2423/4 2247/4 586 1145/2 2425/4 2253/4 1117/2 2367/4 2261/4 2377/4 591 622 2383/4 2441/4 1149/2 2391/4 616 570 2257/4 2371/4 581 2287/4 601 2411/4 2421/4 587 606 1197/2 1197/2 2357/4 2307/4 1225/2 2487/4 1165/2 582 2501/4 1217/2 2361/4 580 2591/4 2511/4 1209/2 2371/4 635 2491/4 591 1205/2 2471/4 2597/4 1177/2 2347/4 2431/4 1209/2 597 1197/2 1235/2 1227/2 1187/2 2395/4 1229/2 1217/2 2401/4 2333/4 615 615 2345/4 2287/4 1169/2 591 2347/4 572 595 1157/2 595 591 1215/2 1177/2 2413/4 1179/2 1185/2 592 2323/4 2291/4 2323/4 1135/2 2365/4 2367/4 1199/2 1159/2 2393/4 586 2461/4 2347/4 2427/4 1177/2 2421/4 2385/4 2431/4 1187/2 1245/2 1187/2 2421/4 2377/4 2373/4 2397/4 2421/4 2381/4 2407/4 2443/4 611 1175/2 1211/2 2413/4 2417/4 2431/4 2401/4 2447/4 617 596 2427/4 1195/2 2437/4 1209/2 1189/2 1207/2 606 586 2441/4 2405/4 1169/2 2237/4 2301/4 567 1177/2 2277/4 2315/4 571 1213/2 611 586 1147/2 581 2361/4 2361/4 2317/4 2311/4 1125/2 1137/2 566 1177/2 2277/4 2281/4 2285/4 1177/2 2341/4 581 2297/4 592 1177/2 581 1165/2 1215/2 2383/4 1185/2 1159/2 606 2363/4 1197/2 2381/4 1205/2 596 1187/2 577 2437/4 1177/2 606 2351/4 596 2361/4 2313/4 2343/4 1209/2 582 592 1165/2 605 2407/4 2365/4 1175/2 2463/4 2367/4 597 2337/4 595 2337/4 610 2391/4 591 1165/2 2441/4 2385/4 616 2401/4 1269/2 2567/4 625 2447/4 635 621 2397/4 2367/4 631 2407/4 591 595 1237/2 1235/2 2453/4 605 2571/4 1309/2 2475/4 1217/2 656 2601/4 611 1227/2 2547/4 1267/2 621 1219/2 631 655 1277/2 2377/4 1351/2 2537/4 1287/2 2581/4 686 657 1315/2 2465/4 2687/4 2637/4 1329/2 647 2727/4 2647/4 2671/4 1275/2 2807/4 2641/4 2671/4 2617/4 681 1335/2 1261/2 2453/4 1287/2 2441/4 2591/4 1245/2 2615/4 1281/2 2661/4 2341/4 646 1239/2 2423/4 2363/4 2541/4 2515/4 2347/4 1169/2 2427/4 2501/4 2421/4 576 2527/4 590 607 2497/4 2565/4 2441/4 2471/4 2445/4 2507/4 2367/4 601 1147/2 633 607 1257/2 1245/2 642 1217/2 2501/4 2465/4 2517/4 596 1207/2 576 1283/2 597 1183/2 2317/4 590 2361/4 596 2281/4 590 594 1155/2 566 1219/2 591 2311/4 2267/4 604 2397/4 2301/4 557 570 1159/2 581 1215/2 2361/4 587 561 2237/4 2307/4 2221/4 571 1127/2 1137/2 2271/4 560 1097/2 2191/4 1047/2 2161/4 2141/4 1077/2 530 2211/4 2147/4 2171/4 1065/2 1083/2 2171/4 546 2127/4 2231/4 2137/4 551 2177/4 560 2171/4 552 1077/2 1117/2 2221/4 2277/4 1097/2 2261/4 2177/4 2287/4 551 2243/4 2201/4 1097/2 2171/4 1117/2 2177/4 2241/4 1087/2 2235/4 2181/4 1105/2 537 2237/4 547 555 2155/4 1087/2 2117/4 1055/2 1049/2 2177/4 2111/4 541 2091/4 2201/4 1069/2 2191/4 2133/4 2211/4 2177/4 2217/4 541 541 1055/2 1089/2 1065/2 1099/2 1077/2 541 524 2201/4 2157/4 2151/4 2117/4 1089/2 536 2201/4 531 2207/4 1089/2 2177/4 2137/4 551 546 2187/4 2137/4 546 2187/4 1097/2 1077/2 2193/4 1097/2 1089/2 1087/2 2211/4 1087/2 2217/4 1065/2 2253/4 550 2227/4 1087/2 556 2171/4 2197/4 542 2191/4 2171/4 2195/4 546 2271/4 1105/2 2283/4 1097/2 566 556 2287/4 2227/4 2297/4 570 1175/2 1149/2 576 557 576 2307/4 1137/2 2217/4 2297/4 2231/4 2331/4 2251/4 1165/2 571 1167/2 2271/4 586 1159/2 580 576 1169/2 2303/4 2313/4 1119/2 1147/2 1125/2 2291/4 1137/2 2301/4 2297/4 575 1139/2 576 1155/2 586 566 580 570 1177/2 567 2307/4 1147/2 2321/4 1147/2 2347/4 577 588 1165/2 582 1159/2 2321/4 565 1153/2 2261/4 2287/4 2231/4 2233/4 1109/2 561 544 1127/2 2191/4 2285/4 2261/4 1127/2 1123/2 1145/2 560 2251/4 2235/4 2217/4 2181/4 2221/4 2201/4 2245/4 546 1125/2 2181/4 571 2237/4 1127/2 551 1149/2 2261/4 2261/4 2281/4 1159/2 2281/4 1127/2 2197/4 1139/2 2275/4 2285/4 1117/2 2291/4 557 2267/4 557 1145/2 2227/4 2217/4 1117/2 2311/4 563 566 2221/4 2311/4 2255/4 2261/4 571 1151/2 1127/2 2307/4 2211/4 567 565 571 562 527 2107/4 1045/2 2061/4 1077/2 2111/4 1027/2 1027/2 541 2097/4 1035/2 1049/2 2177/4 1079/2 1047/2 1015/2 2113/4 2037/4 1027/2 2021/4 2167/4 2095/4 2071/4 2031/4 2121/4 1045/2 1039/2 2031/4 1065/2 2073/4 2067/4 500 2131/4 526 1047/2 1017/2 2117/4 2131/4 531 1045/2 2157/4 1057/2 1065/2 1033/2 2151/4 1047/2 1059/2 516 2147/4 2147/4 530 521 540 1065/2 1047/2 2071/4 532 1029/2 1027/2 2021/4 1059/2 520 521 1007/2 527 1037/2 511 498 526 1037/2 2041/4 503 541 1055/2 1029/2 2047/4 1075/2 2113/4 2085/4 2037/4 2131/4 521 2063/4 2001/4 2141/4 2077/4 2057/4 985/2 2111/4 1025/2 507 500 2117/4 515 506 979/2 1049/2 526 2051/4 496 526 1039/2 2037/4 2005/4 526 522 1039/2 2037/4 536 2111/4 2067/4 2075/4 2151/4 2117/4 516 2035/4 1089/2 2127/4 2123/4 2087/4 2151/4 525 2061/4 1005/2 2117/4 2087/4 1035/2 2007/4 1089/2 2093/4 555 2133/4 2225/4 2153/4 1097/2 1059/2 2221/4 2161/4 1117/2 2213/4 1129/2 547 1127/2 2245/4 2267/4 1105/2 1115/2 2207/4 1107/2 2197/4 565 2211/4 1137/2 2211/4 566 1117/2 1137/2 2203/4 566 1087/2 545 537 2177/4 2133/4 2201/4 541 1077/2 540 2217/4 2191/4 1099/2 1089/2 2177/4 2157/4 1097/2 2181/4 1105/2 545 2237/4 545 2247/4 2181/4 560 2211/4 1105/2 1111/2 1117/2 2167/4 2167/4 1065/2 1103/2 547 1085/2 2107/4 1077/2 2121/4 542 531 2157/4 1053/2 1119/2 2201/4 2217/4 1067/2 1109/2 1097/2 2201/4 540 2211/4 531 540 535 2221/4 2157/4 2201/4 541 2251/4 2161/4 2187/4 2137/4 2247/4 2197/4 341 329 331 1315/4 1335/4 647/2 669/2 655/2 1345/4 323 667/2 657/2 1327/4 320 330 1291/4 1301/4 1271/4 679/2 657/2 671/2 649/2 1341/4 1321/4 1331/4 1295/4 1335/4 649/2 326 1277/4 331 649/2 323 647/2 1283/4 309 1257/4 609/2 1267/4 1241/4 311 643/2 1301/4 321 635/2 1237/4 322 316 1267/4 1237/4 320 1263/4 1261/4 1227/4 1273/4 316 1277/4 615/2 1283/4 1251/4 317 1237/4 1311/4 1271/4 1273/4 311 649/2 1291/4 637/2 315 332 645/2 1287/4 1233/4 1297/4 1281/4 1281/4 311 319 1281/4 1265/4 1237/4 1297/4 312 1291/4 615/2 326 321 1261/4 310 1271/4 312 627/2 1207/4 635/2 1237/4 1227/4 611/2 635/2 1265/4 627/2 1221/4 637/2 1257/4 311 609/2 323 1265/4 312 1227/4 1297/4 316 629/2 615/2 1277/4 1251/4 1247/4 1215/4 320 311 1255/4 310 321 310 627/2 1207/4 655/2 1281/4 1251/4 1243/4 1303/4 649/2 321 617/2 1327/4 322 1261/4 1241/4 667/2 1261/4 1247/4 1217/4 657/2 1307/4 1253/4 1221/4 1307/4 629/2 1267/4 1237/4 667/2 1267/4 316 1241/4 1301/4 317 310 302 637/2 625/2 307 597/2))
(gctime ms (5805618985863/4 5805619018209/4 5805619051357/4 5805619090773/4 5805619127927/4 1451404792758 5805619212501/4 2902809629849/2 5805619295921/4 2902809669613/2 1451404845010 5805619426163/4 5805619467357/4 1451404878404 2902809778979/2 2902809804001/2 2902809820187/2 1451404919612 5805619715489/4 5805619757801/4 5805619798091/4 1451404960585 5805619885703/4 1451404983563 2902809987333/2 1451405004946 2902810031603/2 1451405028334 1451405039359 5805620206993/4 2902810127069/2 2902810153261/2 5805620345937/4 5805620389415/4 5805620432011/4 5805620478643/4 5805620522385/4 5805620570817/4 5805620617065/4 5805620667145/4 2902810355373/2 5805620759389/4 1451405201512 2902810428505/2 5805620905463/4 5805620958003/4 2902810504061/2 1451405266011 1451405276376 2902810576251/2 1451405299436 2902810623341/2 5805621292337/4 1451405335708 1451405348111 2902810723597/2 1451405373094 5805621542587/4 1451405397788 2902810822287/2 1451405423498 5805621748461/4 5805621800787/4 2902810929467/2 1451405472062 1451405480639 1451405489633 5805622000215/4 2902811020273/2 5805622086331/4 5805622128375/4 2902811088509/2 5805622216047/4 2902811130649/2 5805622304939/4 5805622353599/4 1451405599466 2902811223123/2 2902811246577/2 2902811272875/2 5805622580963/4 2902811311031/2 2902811330385/2 5805622705445/4 2902811374389/2 5805622795633/4 1451405710070 5805622890885/4 1451405733502 5805622981833/4 5805623027361/4 5805623079363/4 1451405781490 1451405794435 5805623226623/4 1451405820649 5805623324635/4 1451405843130 5805623418759/4 1451405867480 2902811758423/2 2902811784123/2 2902811808693/2 1451405917825 1451405929396 5805623768623/4 5805623817795/4 5805623872039/4 1451405980458 1451405994551 1451406008148 5805624092097/4 5805624137533/4 1451406046921 5805624234881/4 2902812143927/2 2902812168179/2 2902812194783/2 1451406110738 5805624501061/4 5805624549385/4 5805624603701/4 1451406164161 5805624714401/4 2902812383065/2 1451406206193 5805624879827/4 5805624940257/4 1451406242620 1451406251535 5805625041195/4 2902812541051/2 2902812561169/2 5805625165975/4 5805625209343/4 1451406314111 1451406324040 5805625341001/4 2902812692463/2 1451406358346 5805625477125/4 2902812763743/2 2902812787477/2 1451406406705 2902812831437/2 5805625703677/4 2902812870871/2 5805625785367/4 5805625828027/4 5805625876525/4 1451406480769 5805625973785/4 2902813007655/2 5805626064013/4 5805626110587/4 5805626161669/4 1451406551991 5805626260467/4 5805626310727/4 5805626366245/4 2902813204065/2 5805626455017/4 1451406625091 5805626552733/4 5805626599357/4 5805626652977/4 1451406675639 1451406689534 1451406701168 5805626858193/4 5805626906857/4 5805626962613/4 2902813506429/2 2902813535083/2 5805627122997/4 5805627182301/4 2902813613751/2 5805627277477/4 5805627325933/4 2902813690109/2 5805627428959/4 2902813742237/2 2902813768947/2 5805627596385/4 5805627644561/4 5805627699491/4 1451406937886 2902813904949/2 1451406965465 5805627921261/4 5805627977621/4 5805628039509/4 2902814036821/2 5805628112483/4 5805628151437/4 5805628195119/4 5805628237465/4 5805628285475/4 5805628330727/4 5805628382449/4 5805628424139/4 1451407117612 5805628516415/4 5805628568565/4 2902814307063/2 2902814333429/2 5805628718095/4 2902814386451/2 2902814405721/2 1451407213624 5805628895331/4 1451407235088 5805628984487/4 2902814517353/2 1451407270772 5805629136421/4 1451407295569 5805629233029/4 5805629281775/4 5805629335655/4 1451407346306 5805629440205/4 5805629493395/4 2902814775209/2 1451407398860 5805629645153/4 5805629693413/4 2902814873575/2 5805629796469/4 2902814925927/2 2902814952157/2 1451407490613 1451407502882 2902815033531/2 1451407529572 5805630175909/4 5805630231017/4 5805630290381/4 5805630347253/4 5805630408909/4 5805630457233/4 5805630510373/4 5805630562193/4 5805630618517/4 2902815335045/2 5805630727221/4 1451407695709 5805630843551/4 2902815448067/2 5805630953897/4 1451407752237 5805631068533/4 2902815562517/2 2902815592541/2 1451407810819 1451407826452 1451407835260 5805631381685/4 5805631419619/4 5805631462675/4 2902815751425/2 1451407887550 5805631594479/4 1451407911139 1451407921421 5805631733049/4 2902815888937/2 5805631828355/4 1451407968333 1451407980891 1451407993069 1451408006427 5805632062931/4 5805632105377/4 2902816072877/2 5805632192599/4 5805632237439/4 2902816142905/2 5805632332391/4 5805632384895/4 5805632428125/4 5805632477367/4 1451408131191 5805632578143/4 2902816312869/2 2902816340927/2 5805632735085/4 5805632794257/4 1451408209626 2902816443135/2 5805632933095/4 5805632983841/4 5805633030935/4 1451408270803 1451408283439 5805633190267/4 1451408309509 5805633289357/4 1451408335076 5805633396583/4 5805633448069/4 1451408376068 2902816778947/2 5805633618073/4 2902816832189/2 2902816857581/2 2902816882483/2 5805633818269/4 2902816934185/2 5805633923549/4 5805633976381/4 1451408508798 5805634084719/4 1451408534777 1451408548067 1451408562750 2902817152193/2 5805634364173/4 2902817210999/2 1451408621114 5805634521489/4 1451408641370 5805634606261/4 5805634652435/4 5805634697743/4 5805634748177/4 2902817397859/2 5805634849723/4 5805634894315/4 2902817471933/2 1451408747999 1451408761337 2902817547229/2 5805635147701/4 1451408800180 5805635260089/4 2902817650847/2 1451408836765 5805635390209/4 1451408859911 5805635487783/4 5805635539791/4 2902817794799/2 2902817822407/2 5805635692083/4 2902817872143/2 5805635795791/4 5805635853909/4 5805635904701/4 1451408990561 2902818008951/2 2902818039033/2 1451409031248 1451409044283 5805636227175/4 5805636281609/4 5805636332591/4 2902818194801/2 2902818222553/2 5805636505777/4 2902818278207/2 1451409153034 1451409166939 2902818364025/2 1451409195635 1451409210880 5805636902671/4 5805636967175/4 1451409254269 5805637072295/4 2902818563213/2 1451409296511 5805637239391/4 5805637299537/4 5805637357531/4 5805637420079/4 2902818736543/2 1451409383079 5805637589967/4 5805637652677/4 5805637710571/4 2902818886661/2 2902818916055/2 2902818947621/2 1451409482845 2902818985999/2 2902819005317/2 5805638054421/4 2902819048817/2 5805638146503/4 2902819096831/2 5805638245337/4 5805638287781/4 5805638336417/4 5805638383487/4 1451409608769 1451409620258 5805638533677/4 1451409646125 1451409660126 2902819340043/2 2902819361851/2 2902819382925/2 5805638811579/4 5805638856513/4 5805638906869/4 5805638956267/4 5805639009393/4 5805639056299/4 5805639107487/4 5805639156641/4 5805639210921/4 1451409815121 2902819657827/2 2902819684329/2 2902819713753/2 1451409868316 2902819762599/2 5805639573819/4 1451409907256 5805639678451/4 5805639734395/4 1451409946962 2902819922459/2 2902819946701/2 2902819974197/2 5805639999243/4 5805640056095/4 1451410027577 2902820085129/2 1451410056745 2902820144003/2 1451410083933 5805640389545/4 5805640442001/4 5805640498147/4 5805640549847/4 2902820303599/2 5805640662419/4 5805640722443/4 1451410193530 5805640830717/4 1451410221534 5805640946901/4 1451410250783 5805641062939/4 5805641121999/4 5805641185159/4 5805641223649/4 1451410316707 2902820654291/2 2902820678453/2 5805641402237/4 5805641453829/4 2902820751857/2 5805641557725/4 5805641602535/4 5805641654513/4 5805641704295/4 5805641759399/4 5805641810981/4 1451410466652 1451410480140 1451410494530 5805642019233/4 5805642067383/4 5805642110921/4 2902821080615/2 1451410552610 1451410565983 1451410578704 2902821185297/2 5805642419793/4 1451410618616 5805642526171/4 5805642582147/4 1451410658772 5805642692275/4 5805642748509/4 1451410701949 5805642856427/4 2902821455325/2 1451410740150 1451410754175 5805643069917/4 2902821563975/2 5805643184367/4 5805643244939/4 5805643299301/4 1451410839283 5805643412799/4 1451410868572 5805643531879/4 5805643594433/4 5805643653023/4 1451410929242 5805643768897/4 2902821913247/2 5805643881029/4 5805643940003/4 1451410998733 2902822026699/2 5805644111629/4 1451411043518 1451411057479 5805644290461/4 5805644348741/4 5805644411673/4 5805644470509/4 2902822266589/2 5805644594501/4 1451411165282 5805644696177/4 2902822368923/2 1451411194235 2902822410547/2 5805644863561/4 1451411228097 5805644956457/4 2902822503237/2 5805645049899/4 5805645098887/4 1451411286179 5805645195237/4 2902822620807/2 5805645294477/4 2902822671687/2 5805645399091/4 5805645437731/4 1451411370586 2902822761923/2 1451411392522 1451411403596 5805645664113/4 2902822855273/2 2902822881959/2 1451411452220 5805645858939/4 2902822952989/2 5805645959201/4 2902823003961/2 5805646063275/4 5805646115243/4 2902823086283/2 2902823108749/2 5805646266423/4 5805646312949/4 1451411591016 2902823206237/2 5805646465973/4 5805646516297/4 2902823285763/2 5805646619251/4 5805646671429/4 1451411680329 1451411694466 5805646829403/4 5805646887253/4 2902823470825/2 5805647000499/4 2902823523707/2 2902823550109/2 5805647149659/4 5805647204759/4 1451411813912 2902823656331/2 2902823683193/2 1451411856120 2902823737481/2 2902823765127/2 1451411895754 5805647640487/4 1451411923381 2902823876573/2 1451411952436 2902823935159/2 5805647909939/4 5805647953395/4 5805647993725/4 5805648040101/4 5805648085411/4 1451412033821 2902824091393/2 2902824118143/2 5805648281463/4 1451412082875 5805648378781/4 2902824216653/2 5805648481915/4 2902824268675/2 1451412147450 2902824323329/2 5805648688109/4 5805648733913/4 2902824388381/2 1451412206376 2902824436281/2 5805648923931/4 5805648973417/4 5805649028185/4 5805649075555/4 1451412282055 5805649178543/4 5805649234805/4 1451412321201 5805649340569/4 5805649393879/4 1451412363297 2902824749855/2 2902824775623/2 2902824799941/2 5805649652601/4 2902824851455/2 5805649757031/4 1451412452762 2902824934877/2 2902824960107/2 2902824987475/2 1451412506938 5805650085113/4 1451412534976 2902825099487/2 5805650256295/4 5805650317845/4 5805650366917/4 5805650420795/4 1451412617874 1451412632365 5805650583293/4 1451412660628 5805650698745/4 5805650759161/4 1451412703424 2902825436017/2 5805650927425/4 2902825494121/2 1451412761228 5805651106777/4 5805651166269/4 5805651230589/4 5805651268657/4 5805651310477/4 5805651349873/4 5805651394809/4 1451412859983 1451412872005 2902825767707/2 1451412896920 2902825816901/2 1451412920897 2902825865459/2 2902825892045/2 2902825917141/2 5805651887981/4 1451412984806 5805651995929/4 5805652035971/4 5805652080919/4 5805652123027/4 2902826085713/2 5805652219797/4 2902826136511/2 5805652323111/4 1451413094852 1451413107233 5805652482319/4 1451413133051 5805652587907/4 5805652639457/4 5805652696135/4 5805652750253/4 5805652809109/4 5805652856179/4 5805652909011/4 5805652959315/4 5805653014307/4 5805653064913/4 2902826561247/2 5805653177599/4 1451413309504 5805653289899/4 5805653347561/4 5805653402483/4 5805653462349/4 1451413379594 5805653578909/4 5805653637601/4 5805653700991/4 5805653751079/4 1451413451817 1451413465342 5805653919691/4 2902826987115/2 2902827017253/2 5805654092413/4 5805654154395/4 5805654207607/4 5805654264131/4 5805654318195/4 2902827188691/2 5805654433127/4 2902827246527/2 1451413637852 1451413653482 5805654653261/4 5805654697633/4 1451413684706 2902827392103/2 5805654830603/4 5805654883101/4 5805654932287/4 1451413746557 1451413757991 1451413771019 5805655133163/4 5805655187577/4 2902827618897/2 5805655292921/4 5805655345565/4 5805655401885/4 1451413860995 5805655491513/4 5805655534877/4 1451413896259 2902827817355/2 1451413922220 2902827870363/2 2902827898459/2 1451413961547 5805655901485/4 2902827976519/2 5805656008955/4 5805656061499/4 5805656118909/4 2902828086927/2 2902828116491/2 5805656282657/4 5805656337327/4 2902828194033/2 5805656444663/4 5805656498457/4 1451414139250 2902828306451/2 1451414168118 2902828362565/2 5805656782959/4 5805656838361/4 2902828448885/2 2902828477173/2 2902828507521/2 2902828537119/2 5805657136993/4 5805657187309/4 1451414311129 1451414324724 2902828679093/2 5805657414141/4 5805657474215/4 5805657531425/4 1451414398177 1451414412060 2902828854109/2 2902828882671/2 2902828913101/2 1451414471019 1451414486573 5805658007429/4 5805658071719/4 5805658110673/4 1451414538613 2902829097403/2 2902829120331/2 5805658285053/4 1451414583626 5805658380707/4 1451414608079 5805658476955/4 1451414631756 5805658573909/4 5805658628619/4 5805658676465/4 5805658731593/4 5805658784151/4 5805658841195/4 5805658881691/4 5805658928067/4 2902829485713/2 1451414754826 5805659065783/4 5805659117413/4 1451414792113 5805659223635/4 1451414817726 2902829662597/2 5805659376049/4 2902829716269/2 2902829741169/2 5805659539853/4 5805659593897/4 1451414913169 5805659698199/4 1451414937290 2902829898883/2 5805659850319/4 5805659899949/4 5805659956137/4 2902830004689/2 5805660066665/4 5805660115949/4 2902830085173/2 2902830111203/2 2902830139403/2 1451415082475 5805660387949/4 5805660443673/4 5805660503145/4 2902830275727/2 5805660606501/4 5805660657643/4 5805660713485/4 5805660764611/4 5805660821643/4 5805660876569/4 1451415233869 1451415246520 5805661042649/4 2902830548967/2 5805661156173/4 1451415302846 5805661270991/4 1451415332052 5805661390105/4 5805661430339/4 1451415368841 2902830758847/2 5805661565573/4 2902830805927/2 5805661663521/4 2902830856529/2 5805661767879/4 5805661815549/4 5805661866597/4 5805661917699/4 1451415493330 5805662024423/4 5805662080927/4 5805662134433/4 5805662192723/4 1451415558837 5805662282593/4 1451415581725 2902831188399/2 2902831213123/2 5805662479949/4 2902831265669/2 1451415647149 5805662637745/4 5805662693241/4 5805662745197/4 1451415700750 1451415714152 5805662913771/4 5805662969045/4 5805663030181/4 5805663078163/4 1451415783376 5805663184135/4 1451415809788 5805663292109/4 1451415837505 5805663405395/4 5805663464569/4 2902831758479/2 5805663573807/4 2902831814219/2 1451415922057 2902831872513/2 1451415951368 1451415965852 1451415981395 1451415994231 1451416008429 1451416021985 5805664147561/4 1451416050809 2902832131855/2 5805664320965/4 1451416095812 5805664439041/4 1451416124742 5805664556315/4 1451416154470 2902832338341/2 5805664740539/4 2902832400255/2 1451416216222 1451416226094 5805664948511/4 2902832495081/2 1451416259121 5805665083449/4 5805665134305/4 5805665183073/4 1451416309324 5805665284475/4 5805665336327/4 5805665386769/4 1451416360454 5805665493639/4 5805665549527/4 2902832801281/2 1451416415054 5805665704019/4 5805665751605/4 5805665797839/4 5805665849109/4 2902832949627/2 1451416488326 5805666004543/4 2902833030599/2 5805666111363/4 2902833082657/2 5805666217609/4 5805666274961/4 1451416582138 5805666386317/4 2902833220745/2 2902833250615/2 5805666549621/4 2902833302203/2 2902833328575/2 1451416678375 1451416691766 2902833412447/2 1451416720198 5805666941355/4 2902833497057/2 5805667050521/4 5805667105913/4 1451416791561 1451416805578 5805667283839/4 5805667343533/4 5805667407155/4 1451416864893 5805667516547/4 2902833785177/2 2902833814447/2 5805667683817/4 2902833872009/2 2902833900999/2 5805667863665/4 1451416979580 2902833988741/2 5805668034937/4 5805668097041/4 5805668154365/4 2902834108169/2 5805668275831/4 5805668340407/4 5805668382921/4 1451417107967 5805668475853/4 1451417131464 2902834287631/2 5805668630817/4 5805668682105/4 2902834369063/2 1451417197029 1451417210681 1451417223812 5805668950799/4 5805669003435/4 5805669061009/4 5805669116041/4 2902834588055/2 2902834610851/2 5805669271625/4 5805669319117/4 5805669370809/4 1451417355661 5805669480201/4 5805669534243/4 2902834796265/2 5805669644517/4 5805669701915/4 5805669756483/4 5805669815103/4 5805669869551/4 1451417482241 1451417496589 2902835024089/2 2902835050967/2 5805670159135/4 1451417553378 1451417568126 2902835164293/2 2902835195103/2 2902835224171/2 2902835255565/2 1451417642115 2902835314911/2 1451417672168 5805670752099/4 5805670812335/4 5805670877219/4 5805670939569/4 5805671005613/4 5805671062259/4 1451417780963 1451417795740 2902835623005/2 5805671305351/4 2902835684955/2 5805671431763/4 5805671497255/4 2902835778587/2 1451417905510 2902835842201/2 5805671749967/4 5805671812545/4 2902835940089/2 1451417986376 1451418004092 5805672051945/4 5805672093609/4 5805672133393/4 1451418044323 2902836110585/2 5805672268639/4 5805672315503/4 5805672367923/4 2902836206137/2 5805672460679/4 1451418126977 1451418140008 5805672607525/4 2902836328591/2 2902836353103/2 2902836380725/2 2902836399949/2 5805672842771/4 5805672884323/4 5805672929665/4 2902836487089/2 5805673022653/4 5805673070437/4 2902836561529/2 2902836584033/2 5805673217821/4 2902836632875/2 2902836659447/2 2902836683427/2 1451418355280 2902836736617/2 2902836765107/2 1451418393403 2902836810333/2 5805673666645/4 5805673716589/4 5805673763613/4 1451418453966 2902836933483/2 2902836961571/2 5805673970079/4 5805674020225/4 1451418517704 5805674124121/4 5805674174081/4 5805674230639/4 2902837142505/2 2902837171657/2 5805674389643/4 5805674438801/4 5805674486793/4 5805674540785/4 2902837294641/2 5805674640567/4 5805674691251/4 1451418686506 5805674793197/4 2902837422529/2 5805674895607/4 5805674950783/4 5805675001633/4 5805675056385/4 2902837555095/2 5805675168323/4 5805675204857/4 5805675245159/4 2902837641779/2 5805675326911/4 5805675369365/4 5805675416573/4 5805675461781/4 5805675511265/4 5805675554485/4 5805675601243/4 5805675646951/4 1451418924467 5805675744133/4 1451418949089 5805675844961/4 5805675900951/4 5805675940587/4 2902837991831/2 2902838012585/2 1451419017842 5805676116081/4 1451419041915 1451419053679 2902838134009/2 2902838155713/2 5805676361163/4 2902838203355/2 5805676459211/4 2902838253783/2 5805676559887/4 1451419152151 1451419165968 5805676706221/4 5805676752237/4 5805676796951/4 5805676843543/4 5805676886879/4 1451419233440 5805676979399/4 5805677030105/4 5805677073393/4 5805677121817/4 5805677167583/4 5805677218737/4 5805677266657/4 2902838659051/2 5805677368323/4 5805677422511/4 5805677464831/4 5805677512351/4 5805677556667/4 5805677605973/4 5805677652991/4 1451419425822 5805677752487/4 5805677805661/4 5805677852415/4 5805677902261/4 1451419487848 5805678003745/4 5805678052891/4 5805678106725/4 5805678159033/4 5805678215265/4 2902839123767/2 2902839141865/2 1451419579529 5805678356871/4 1451419598850 5805678438685/4 5805678479681/4 5805678525425/4 5805678565081/4 2902839304387/2 5805678650033/4 5805678695919/4 1451419684574 5805678784739/4 1451419707350 2902839438999/2 1451419727968 5805678950669/4 1451419746691 5805679028165/4 5805679068935/4 5805679114157/4 1451419789452 5805679204547/4 5805679245567/4 5805679290803/4 2902839667025/2 1451419845283 5805679425265/4 5805679473917/4 5805679520617/4 5805679570631/4 5805679610695/4 5805679654797/4 1451419924182 5805679744649/4 1451419946867 1451419958999 2902839941365/2 5805679934865/4 5805679978231/4 1451420006778 2902840037213/2 5805680125503/4 2902840086245/2 1451420056196 2902840137335/2 2902840164413/2 2902840185429/2 5805680418701/4 5805680464663/4 5805680514947/4 2902840280877/2 2902840306233/2 2902840330605/2 2902840357585/2 1451420190270 5805680811459/4 1451420214874 5805680912341/4 2902840480685/2 5805681014945/4 5805681066075/4 1451420280456 2902840578221/2 1451420298678 2902840615563/2 2902840636061/2 2902840656645/2 1451420339715 2902840701319/2 5805681450263/4 1451420372906 2902840768543/2 5805681581235/4 2902840814483/2 2902840836799/2 1451420430536 1451420442215 2902840910095/2 5805681856497/4 2902840948915/2 5805681938041/4 1451420495717 5805682026495/4 5805682074041/4 5805682119829/4 2902841085275/2 5805682214717/4 2902841131373/2 5805682308457/4 2902841179177/2 1451420601336 5805682455571/4 1451420626134 5805682557903/4 5805682600509/4 2902841323407/2 5805682690819/4 2902841370393/2 5805682786367/4 2902841418713/2 5805682886345/4 1451420734843 5805682984497/4 1451420758811 2902841541723/2 1451420784089 5805683186177/4 2902841620245/2 5805683291879/4 5805683347799/4 1451420847889 5805683441291/4 5805683489119/4 5805683540963/4 5805683587891/4 5805683640345/4 2902841845661/2 5805683746207/4 1451420948680 5805683847629/4 5805683898519/4 1451420988709 1451421001613 2902842031363/2 1451421029139 1451421043800 5805684209529/4 5805684247779/4 1451421071212 5805684325065/4 2902842182547/2 5805684408549/4 2902842225733/2 5805684498833/4 1451421134697 5805684582491/4 1451421156460 5805684673353/4 1451421179248 2902842382183/2 1451421202796 2902842430965/2 5805684898173/4 5805684938357/4 5805684977945/4 2902842510031/2 2902842530855/2 1451421276891 5805685152539/4 1451421300515 5805685244815/4 1451421323118 5805685337103/4 1451421346725 5805685432207/4 5805685482137/4 5805685531641/4 1451421396200 1451421406582 5805685670211/4 5805685713077/4 5805685759955/4 1451421451102 5805685853977/4 1451421475799 5805685955235/4 2902842999533/2 2902843023917/2 5805686095871/4 1451421536957 2902843098209/2 5805686248429/4 5805686299611/4 5805686354511/4 5805686398023/4 5805686446229/4 5805686493183/4 1451421636003 5805686590547/4 2902843320799/2 2902843345669/2 5805686744549/4 5805686790921/4 2902843420695/2 5805686890931/4 2902843472163/2 1451421748671 1451421762161 2902843550397/2 5805687157951/4 5805687194553/4 5805687235281/4 5805687273823/4 2902843658623/2 5805687359963/4 5805687407411/4 5805687451811/4 5805687501831/4 1451421886154 2902843796173/2 5805687637213/4 5805687688365/4 1451421934049 1451421946816 5805687837407/4 5805687892029/4 2902843965643/2 5805687975495/4 5805688016897/4 5805688062091/4 5805688107255/4 5805688157503/4 1451422051074 5805688256939/4 1451422075430 5805688351711/4 5805688398733/4 5805688450717/4 5805688499635/4 1451422138141 5805688603847/4 5805688660073/4 2902844351489/2 1451422187335 5805688795065/4 5805688844993/4 5805688893221/4 1451422236034 5805688994043/4 5805689047023/4 1451422273751 1451422286526 1451422299056 1451422312415 2902844650019/2 1451422338502 5805689407297/4 5805689463863/4 1451422377675 1451422390188 5805689609507/4 5805689662041/4 5805689711787/4 5805689764749/4 5805689817203/4 5805689873945/4 2902844962233/2 1451422494337 5805690029293/4 5805690085109/4 5805690137483/4 5805690193349/4 1451422562233 5805690307153/4 1451422585558 2902845190947/2 2902845209459/2 2902845230787/2 2902845251575/2 1451422637238 5805690592741/4 5805690641257/4 2902845341503/2 5805690729721/4 5805690774237/4 2902845411143/2 5805690867317/4 1451422729174 1451422741275 2902845508155/2 1451422763275 1451422773776 1451422784083 5805691180481/4 5805691224277/4 1451422818260 2902845659895/2 5805691370161/4 1451422853626 1451422865726 5805691510019/4 5805691560933/4 1451422902141 1451422915068 2902845854949/2 5805691763323/4 5805691805817/4 5805691854547/4 1451422974938 5805691950643/4 2902845998557/2 1451423012479 5805692100155/4 5805692154601/4 5805692201675/4 1451423063374 1451423075755 5805692356955/4 5805692407011/4 2902846230893/2 5805692514449/4 1451423142791 5805692617267/4 5805692667241/4 1451423178932 2902846384119/2 2902846408727/2 2902846435245/2 2902846460779/2 2902846488597/2 5805693026357/4 5805693078989/4 5805693129819/4 5805693185043/4 2902846618473/2 5805693293005/4 5805693347135/4 5805693406055/4 2902846722303/2 2902846743845/2 5805693528835/4 2902846786787/2 1451423404436 5805693666711/4 5805693714283/4 5805693765127/4 1451423452382 5805693858717/4 1451423476460 5805693957519/4 2902847002623/2 2902847028939/2 5805694107003/4 1451423540144 2902847100045/2 5805694244477/4 5805694286897/4 5805694333355/4 5805694379531/4 5805694428663/4 2902847238525/2 2902847265005/2 5805694576611/4 2902847313525/2 5805694675967/4 1451423682068 5805694777793/4 2902847416403/2 5805694884567/4 2902847470617/2 1451423746605 2902847518571/2 1451423771295 2902847568579/2 5805695186901/4 5805695240269/4 1451423823012 5805695348233/4 5805695397823/4 2902847725873/2 2902847751797/2 2902847779835/2 5805695612839/4 1451423917580 5805695725293/4 5805695784167/4 1451423957726 2902847941559/2 5805695933625/4 1451423997078 5805696038925/4 5805696094475/4 2902848073837/2 2902848102671/2 1451424064272 1451424078037 2902848182199/2 5805696421881/4 5805696475335/4 5805696533857/4 5805696589829/4 5805696650221/4 1451424171310 5805696724293/4 2902848380783/2 5805696802279/4 5805696843039/4 2902848444167/2 5805696930659/4 5805696977971/4 5805697018803/4 1451424265709 1451424276405 2902848576195/2 1451424299108 5805697244759/4 5805697290493/4 1451424335346 5805697379475/4 2902848710455/2 2902848730347/2 1451424375875 5805697546443/4 5805697593853/4 1451424409713 1451424422372 5805697733031/4 2902848890441/2 2902848912819/2 2902848937703/2 5805697921283/4 2902848986001/2 1451424505101 5805698072811/4 1451424528601 5805698159055/4 2902849101095/2 2902849124403/2 5805698293177/4 1451424585535 2902849193905/2 2902849219387/2 2902849241443/2 5805698531831/4 5805698579523/4 1451424657649 2902849339605/2 2902849365521/2 5805698780923/4 2902849417903/2 2902849439771/2 5805698927607/4 5805698972727/4 5805699023275/4 1451424767793 1451424780668 5805699172753/4 2902849613155/2 1451424818702 1451424831529 5805699375699/4 2902849714573/2 1451424869900 1451424883521 2902849793227/2 5805699643123/4 2902849840407/2 2902849861415/2 2902849881117/2 5805699805999/4 1451424962461 5805699897863/4 5805699941567/4 2902849995783/2 2902850017347/2 5805700083319/4 5805700129717/4 5805700179953/4 5805700226459/4 2902850138815/2 5805700327123/4 2902850190237/2 5805700419579/4 5805700463211/4 1451425126069 5805700550085/4 5805700594723/4 1451425161170 2902850346535/2 1451425186208 1451425197380 5805700840209/4 2902850444311/2 1451425235150 5805700989275/4 2902850521355/2 5805701094489/4 5805701149925/4 5805701193607/4 1451425310135 1451425322110 5805701339537/4 1451425346967 5805701440039/4 1451425372735 2902809500645/2 1451404759039 2902809536271/2 2902809553925/2 2902809573125/2 5805619181553/4 1451404805092 1451404814629 2902809649195/2 5805619329941/4 2902809682839/2 2902809700047/2 5805619436711/4 2902809735703/2 5805619508801/4 5805619545329/4 5805619583943/4 2902809809251/2 1451404914107 5805619693143/4 2902809865849/2 2902809884027/2 1451404951904 2902809923221/2 1451404971810 5805619911913/4 2902809969943/2 5805619966719/4 5805619996433/4 2902810013227/2 1451405014744 2902810045517/2 5805620124973/4 1451405038650 2902810093579/2 2902810109497/2 2902810126551/2 2902810142609/2 5805620319319/4 5805620352823/4 5805620388331/4 1451405103769 2902810222705/2 5805620473935/4 1451405126389 2902810268545/2 5805620571417/4 2902810302087/2 5805620639221/4 1451405167663 2902810352283/2 2902810368953/2 5805620773371/4 1451405201798 2902810421883/2 5805620879049/4 5805620917477/4 5805620947931/4 5805620982039/4 1451405253393 2902810524495/2 2902810540709/2 2902810558985/2 5805621152763/4 1451405297654 5805621222407/4 1451405314570 2902810646409/2 1451405332703 1451405341493 2902810702411/2 5805621441579/4 2902810740409/2 2902810755979/2 5805621547309/4 5805621580837/4 1451405404539 1451405413150 5805621690957/4 1451405431966 5805621767773/4 1451405450476 1451405459877 2902810937481/2 5805621914075/4 2902810975025/2 5805621989097/4 5805622027015/4 5805622067285/4 5805622093999/4 5805622123667/4 1451405538051 5805622183821/4 5805622215085/4 5805622249315/4 5805622281589/4 2902811158437/2 2902811173893/2 5805622381863/4 5805622414659/4 2902811224663/2 5805622483191/4 1451405629909 5805622554873/4 5805622592409/4 5805622621285/4 1451405663259 1451405670951 5805622716745/4 5805622749571/4 2902811392403/2 1451405704713 1451405713540 1451405721848 5805622923169/4 2902811478879/2 1451405748743 5805623030071/4 1451405767010 2902811552045/2 2902811571581/2 1451405793792 5805623211651/4 2902811622607/2 2902811641157/2 2902811658399/2 1451405839016 5805623392809/4 5805623432379/4 1451405867005 1451405876653 1451405885689 2902811790949/2 5805623618877/4 5805623658723/4 5805623696863/4 2902811868839/2 5805623771991/4 5805623810319/4 5805623846139/4 5805623884753/4 5805623920733/4 2902811980177/2 5805623998431/4 1451406009754 5805624075787/4 1451406028923 1451406038264 5805624193679/4 5805624231783/4 5805624273649/4 2902812156241/2 2902812177289/2 5805624380755/4 5805624410169/4 5805624438847/4 5805624469519/4 1451406124987 5805624534309/4 2902812283135/2 2902812300853/2 2902812316231/2 1451406166427 5805624697371/4 1451406183170 5805624765311/4 5805624801893/4 5805624837049/4 5805624873749/4 2902812450895/2 2902812466337/2 1451406240480 5805624994943/4 1451406256477 2902812530319/2 2902812547609/2 5805625131827/4 5805625163651/4 5805625198993/4 5805625232283/4 5805625269255/4 1451406326004 2902812670449/2 5805625376889/4 1451406353855 5805625446673/4 1451406370188 2902812756669/2 5805625548585/4 5805625581087/4 2902812808123/2 1451406412673 2902812844369/2 5805625722509/4 5805625758613/4 5805625794197/4 5805625831807/4 5805625868299/4 5805625906091/4 1451406485820 1451406495684 5805626014229/4 2902813024989/2 1451406521204 5805626121477/4 5805626156723/4 5805626193743/4 1451406557487 2902813134599/2 1451406576180 1451406585619 5805626378291/4 5805626416639/4 2902813226553/2 5805626492195/4 2902813265579/2 2902813285981/2 1451406650069 1451406657997 5805626662075/4 1451406673674 2902813363719/2 5805626763673/4 5805626798033/4 2902813418007/2 5805626869381/4 2902813452705/2 1451406734958 1451406744267 5805627011719/4 5805627049957/4 2902813543363/2 1451406781641 5805627156361/4 1451406797397 5805627220367/4 2902813628027/2 2902813644905/2 2902813663617/2 5805627363169/4 2902813701177/2 5805627436397/4 5805627474467/4 2902813755161/2 1451406887238 5805627584479/4 2902813811615/2 2902813830129/2 5805627701021/4 2902813866371/2 5805627768055/4 5805627803387/4 5805627840109/4 2902813937977/2 2902813957085/2 5805627951667/4 5805627990395/4 5805628025549/4 2902814031773/2 2902814050473/2 2902814069635/2 5805628177075/4 5805628217131/4 2902814128217/2 2902814148949/2 2902814166469/2 5805628370437/4 1451407101608 2902814222161/2 5805628480507/4 2902814259803/2 5805628558167/4 5805628598111/4 1451407158500 2902814336701/2 5805628711879/4 5805628751633/4 5805628789743/4 5805628830539/4 2902814435453/2 2902814456379/2 5805628940319/4 5805628970369/4 5805628999613/4 5805629030877/4 5805629062145/4 2902814548187/2 2902814564571/2 5805629164701/4 5805629195775/4 2902814614519/2 5805629261395/4 2902814648307/2 2902814664979/2 5805629365431/4 5805629400285/4 5805629438203/4 5805629467153/4 5805629498589/4 1451407382138 2902814780745/2 5805629593861/4 1451407407245 1451407415815 5805629700911/4 2902814866817/2 2902814884383/2 5805629803387/4 1451407460031 2902814937165/2 2902814956179/2 1451407487024 5805629987721/4 2902815010333/2 5805630056975/4 1451407522762 5805630128153/4 5805630163123/4 5805630201437/4 1451407559541 5805630277753/4 1451407578313 5805630351141/4 5805630387149/4 1451407606642 5805630463353/4 5805630502813/4 1451407635165 1451407645443 2902815307639/2 5805630653201/4 5805630688863/4 2902815363919/2 1451407691010 5805630803973/4 1451407710574 5805630882483/4 1451407729706 5805630957613/4 2902815497367/2 2902815517215/2 5805631071959/4 1451407778480 1451407788252 5805631195721/4 5805631224105/4 5805631255477/4 5805631285039/4 2902815658631/2 5805631350115/4 5805631385763/4 2902815709881/2 5805631456953/4 5805631489573/4 5805631525581/4 5805631560185/4 5805631597779/4 5805631632761/4 1451407917446 2902815852787/2 5805631745149/4 5805631775253/4 1451407952281 2902815920937/2 5805631876087/4 1451407977434 2902815973333/2 2902815991023/2 5805632020555/4 5805632055019/4 5805632093525/4 5805632129793/4 2902816084543/2 2902816102979/2 5805632246443/4 5805632285801/4 5805632325985/4 5805632360315/4 5805632397381/4 2902816216511/2 5805632471881/4 2902816254155/2 1451408137158 1451408146602 2902816313507/2 2902816332293/2 2902816352077/2 5805632741729/4 2902816391359/2 5805632821775/4 5805632863689/4 2902816451631/2 1451408236583 5805632982917/4 5805633021631/4 2902816529489/2 5805633099171/4 5805633137265/4 5805633179181/4 2902816609067/2 2902816629911/2 5805633297327/4 5805633339047/4 5805633378433/4 5805633420115/4 5805633460461/4 5805633504361/4 5805633545371/4 5805633588463/4 5805633606151/4 2902816814267/2 1451408413073 2902816839321/2 5805633704711/4 1451408433172 1451408440279 5805633791223/4 2902816908503/2 5805633845693/4 2902816937249/2 5805633905925/4 5805633933955/4 5805633965033/4 5805633995543/4 5805634029253/4 2902817026287/2 5805634078583/4 5805634103561/4 1451408532937 1451408539649 5805634188237/4 5805634218535/4 1451408562908 2902817139233/2 5805634308333/4 2902817169205/2 5805634370861/4 2902817200373/2 5805634433621/4 5805634466395/4 5805634502055/4 2902817264203/2 1451408639441 2902817292961/2 5805634616723/4 1451408661452 5805634677805/4 5805634709741/4 2902817371965/2 1451408693149 1451408701048 2902817417761/2 1451408717382 5805634900613/4 5805634934825/4 5805634968619/4 1451408751331 1451408758364 5805635063865/4 2902817546815/2 5805635127529/4 5805635157949/4 5805635191455/4 5805635223711/4 5805635259629/4 1451408822535 1451408831027 5805635357031/4 5805635392531/4 2902817712475/2 1451408865209 1451408874111 1451408883682 5805635556731/4 5805635581289/4 5805635606025/4 5805635634085/4 5805635660789/4 5805635690249/4 1451408929931 5805635752589/4 5805635780199/4 5805635810635/4 2902817920347/2 5805635873715/4 2902817951693/2 5805635935859/4 5805635967987/4 5805636003973/4 2902818014405/2 5805636056045/4 5805636082199/4 2902818055959/2 5805636140789/4 2902818086013/2 2902818101791/2 5805636238023/4 2902818133285/2 5805636297901/4 2902818164793/2 5805636364257/4 5805636396381/4 5805636431639/4 2902818232809/2 5805636502563/4 1451409132772 2902818280617/2 2902818295707/2 5805636625117/4 5805636656563/4 5805636690925/4 2902818361849/2 5805636759981/4 1451409197629 5805636824557/4 5805636856627/4 2902818446279/2 2902818462841/2 5805636961857/4 5805636997445/4 1451409258962 1451409266417 5805637098019/4 5805637130989/4 2902818583149/2 1451409299582 5805637233601/4 5805637269123/4 1451409326607 2902818669231/2 5805637373813/4 5805637408077/4 5805637444719/4 5805637479869/4 1451409379274 5805637554167/4 1451409398336 2902818807407/2 2902818819797/2 2902818832337/2 5805637692577/4 5805637720175/4 2902818875049/2 5805637778697/4 5805637810251/4 2902818918391/2 1451409466438 1451409473481 5805637924519/4 5805637953381/4 5805637984133/4 2902819007295/2 1451409512224 1451409518273 5805638100083/4 1451409531461 5805638154035/4 5805638182111/4 5805638212783/4 5805638241829/4 1451409568579 5805638302483/4 5805638332457/4 2902819181151/2 5805638395363/4 5805638425439/4 1451409614292 5805638488249/4 5805638524337/4 5805638551015/4 5805638581283/4 5805638610157/4 5805638641595/4 5805638671857/4 2902819352847/2 5805638736489/4 1451409692777 1451409700222 5805638833821/4 5805638864165/4 5805638898345/4 5805638931031/4 2902819483273/2 5805639000159/4 2902819518731/2 1451409766304 2902819548773/2 5805639128029/4 1451409790574 1451409798500 1451409807236 1451409815582 5805639299157/4 5805639330205/4 5805639365089/4 5805639398441/4 1451409858687 1451409867135 2902819752731/2 5805639540313/4 5805639580393/4 2902819801819/2 2902819814435/2 5805639653817/4 5805639682035/4 5805639709931/4 1451409934965 2902819884145/2 1451409950147 5805639828233/4 2902819929571/2 2902819944371/2 1451409980333 5805639951203/4 1451409996247 5805640017553/4 2902820026417/2 2902820038967/2 1451410026415 1451410033155 5805640162451/4 1451410047881 5805640223451/4 2902820127643/2 5805640289295/4 1451410079674 2902820176053/2 5805640383741/4 2902820209541/2 5805640451121/4 2902820242827/2 5805640519757/4 5805640556509/4 5805640584863/4 5805640617085/4 2902820323363/2 5805640679989/4 5805640710379/4 1451410186319 5805640778899/4 5805640814541/4 1451410211272 5805640879471/4 5805640913035/4 2902820474601/2 5805640983401/4 5805641019753/4 1451410263556 5805641092961/4 5805641122347/4 1451410288811 2902820593091/2 1451410305231 5805641252193/4 1451410321795 1451410330340 1451410339706 5805641390195/4 1451410356631 5805641461253/4 5805641498377/4 5805641533303/4 5805641570297/4 1451410401600 5805641646137/4 5805641669391/4 1451410423789 5805641719655/4 1451410436854 2902820887731/2 5805641805581/4 5805641835107/4 5805641866977/4 5805641893821/4 1451410480942 2902820976531/2 2902820992777/2 5805642015395/4 5805642048549/4 5805642080679/4 2902821057621/2 2902821069845/2 5805642166903/4 5805642193859/4 1451410555890 5805642251331/4 5805642281563/4 1451410577949 1451410586301 5805642372875/4 5805642404699/4 1451410608972 5805642470403/4 2902821250467/2 5805642534367/4 2902821283541/2 5805642603171/4 5805642630389/4 5805642659953/4 5805642688667/4 5805642721597/4 2902821375799/2 5805642784441/4 2902821408613/2 5805642852399/4 5805642882143/4 5805642915535/4 1451410736867 5805642982727/4 5805643015337/4 2902821525165/2 2902821542389/2 5805643122491/4 1451410787950 2902821592227/2 5805643215937/4 2902821625311/2 5805643282529/4 5805643317817/4 2902821676065/2 5805643387587/4 5805643418705/4 2902821727411/2 5805643489189/4 5805643525347/4 5805643560747/4 1451410899472 2902821816849/2 5805643672267/4 5805643696719/4 5805643723667/4 1451410937452 1451410944659 5805643807109/4 5805643837999/4 2902821934073/2 1451410975365 5805643930663/4 5805643962871/4 2902821996405/2 5805644026321/4 1451411014268 5805644091209/4 5805644123845/4 5805644159905/4 2902822092641/2 1451411053377 1451411060180 5805644272401/4 2902822151347/2 2902822167949/2 5805644367605/4 2902822201291/2 5805644434139/4 1451411116743 2902822249469/2 1451411133687 1451411141834 5805644602435/4 2902822318649/2 1451411168640 1451411175937 5805644735717/4 2902822383345/2 1451411200340 5805644832471/4 5805644866967/4 1451411225413 5805644938381/4 5805644969941/4 5805645005427/4 1451411260170 5805645077117/4 1451411277943 5805645148683/4 1451411296247 1451411306038 5805645255105/4 2902822644739/2 1451411330940 1451411339934 5805645393985/4 5805645430325/4 5805645465985/4 5805645504399/4 5805645538631/4 5805645574495/4 2902822804915/2 5805645647373/4 5805645683499/4 2902822860593/2 2902822879205/2 5805645798115/4 5805645822579/4 5805645849093/4 1451411468691 1451411475853 5805645932125/4 2902822981721/2 5805645994025/4 1451411506997 5805646057277/4 5805646088551/4 1451411529606 2902823076287/2 5805646183329/4 5805646217405/4 5805646250745/4 1451411571610 2902823156361/2 5805646341225/4 2902823184703/2 5805646399951/4 5805646430267/4 2902823232189/2 5805646496175/4 2902823265571/2 5805646562791/4 2902823297663/2 5805646627847/4 1451411665727 1451411674016 2902823365835/2 1451411691659 5805646805099/4 5805646833979/4 1451411716973 2902823449149/2 5805646932241/4 2902823482619/2 5805647000325/4 2902823517301/2 5805647071541/4 5805647104487/4 2902823569927/2 2902823586835/2 5805647210539/4 2902823622915/2 1451411820888 5805647320751/4 5805647359521/4 2902823695543/2 2902823712745/2 5805647459097/4 2902823747727/2 1451411882172 5805647564937/4 5805647600347/4 5805647638635/4 5805647671865/4 1451411927232 1451411935966 1451411945353 5805647816729/4 5805647854651/4 5805647892361/4 5805647932777/4 5805647958499/4 2902823993037/2 1451412003347 5805648043149/4 2902824036559/2 5805648106453/4 5805648137743/4 5805648172363/4 1451412050477 5805648234823/4 2902824133193/2 1451412075355 1451412083723 1451412092472 2902824202307/2 5805648441743/4 2902824234623/2 2902824249239/2 2902824264353/2 1451412140000 2902824295559/2 5805648624665/4 1451412164562 1451412173472 1451412181599 5805648760871/4 5805648794035/4 5805648830019/4 2902824432321/2 5805648901809/4 5805648937791/4 5805648975823/4 2902824502833/2 5805649038931/4 2902824535769/2 1451412276709 5805649140141/4 2902824587931/2 2902824605633/2 2902824624589/2 1451412320771 5805649318977/4 5805649353393/4 5805649390917/4 2902824713287/2 2902824732797/2 5805649502155/4 5805649542657/4 1451412393700 2902824805275/2 5805649644105/4 1451412420244 5805649715661/4 5805649752809/4 5805649789213/4 1451412457159 5805649864231/4 5805649902261/4 5805649939665/4 5805649978289/4 5805650015907/4 5805650054387/4 5805650092519/4 5805650133259/4 5805650157557/4 5805650184199/4 2902825104615/2 5805650237973/4 5805650265229/4 1451412573759 2902825162601/2 5805650357985/4 5805650386321/4 2902825209003/2 1451412611973 1451412620296 1451412627938 5805650545323/4 5805650577607/4 5805650613061/4 5805650638745/4 1451412666682 5805650694283/4 1451412681022 1451412688464 5805650786979/4 5805650818877/4 5805650853963/4 5805650883723/4 1451412729144 5805650948051/4 5805650982691/4 5805651014639/4 5805651049321/4 1451412770737 2902825559863/2 5805651149135/4 5805651181593/4 2902825605819/2 2902825622845/2 5805651277651/4 5805651312127/4 1451412836368 5805651381865/4 5805651412543/4 5805651447195/4 5805651480525/4 2902825757859/2 1451412887413 2902825793233/2 5805651622651/4 1451412915178 2902825845673/2 5805651725371/4 5805651758097/4 5805651793509/4 5805651826599/4 5805651862987/4 2902825948989/2 1451412983820 5805651968967/4 5805652005503/4 1451413010164 2902826038909/2 5805652113075/4 5805652151889/4 1451413047357 1451413057508 5805652256375/4 5805652285081/4 5805652312789/4 5805652343473/4 2902826186945/2 5805652407701/4 1451413110079 2902826237923/2 5805652506483/4 1451413135068 5805652572607/4 5805652607573/4 5805652641035/4 5805652677593/4 1451413178094 1451413187492 5805652777551/4 2902826404105/2 5805652838027/4 2902826435429/2 5805652903407/4 5805652938215/4 5805652971715/4 2902826503997/2 2902826519997/2 1451413268746 5805653108965/4 1451413286546 2902826590385/2 5805653218577/4 2902826627371/2 2902826646903/2 5805653325223/4 2902826680073/2 1451413348160 2902826714481/2 2902826731197/2 5805653499187/4 2902826767469/2 5805653573463/4 5805653606861/4 5805653643433/4 2902826839515/2 2902826858811/2 5805653753837/4 5805653792977/4 2902826915243/2 5805653870531/4 1451413475795 2902826969483/2 5805653973809/4 2902827005699/2 5805654047163/4 1451413521489 1451413530895 5805654162891/4 1451413549481 5805654234433/4 1451413567342 2902827153433/2 1451413585619 2902827190333/2 5805654418239/4 2902827228549/2 2902827240995/2 5805654509453/4 5805654536083/4 5805654564941/4 1451413648399 1451413656444 5805654656649/4 1451413672421 2902827358853/2 5805654749803/4 5805654780493/4 5805654813757/4 5805654845165/4 2902827439751/2 5805654913075/4 5805654949613/4 5805654975777/4 2902827502223/2 5805655032157/4 5805655061993/4 1451413772992 1451413781720 5805655160039/4 2902827597843/2 1451413806438 5805655260223/4 5805655292339/4 1451413831870 5805655359971/4 1451413848872 5805655430089/4 5805655466793/4 5805655495891/4 2902827764519/2 2902827780565/2 2902827797889/2 5805655627261/4 2902827831887/2 5805655697575/4 1451413933525 1451413941647 1451413950603 1451413958935 5805655872335/4 2902827953369/2 1451413985879 1451413994811 5805656017449/4 5805656048961/4 1451414020904 2902828058229/2 5805656151785/4 1451414046376 5805656222081/4 5805656258279/4 1451414074219 2902828165199/2 1451414091671 1451414100528 5805656439811/4 5805656475005/4 2902828256771/2 5805656550179/4 5805656590277/4 5805656616423/4 5805656644907/4 5805656671781/4 2902828350835/2 1451414183007 5805656764545/4 2902828398545/2 1451414208293 5805656864643/4 2902828449165/2 5805656930809/4 5805656965701/4 1451414249649 5805657034443/4 1451414267215 5805657106325/4 1451414283472 1451414291006 1451414298355 5805657225893/4 5805657258977/4 5805657294175/4 5805657328135/4 1451414341259 5805657398149/4 2902828716591/2 5805657466699/4 2902828751815/2 5805657538035/4 5805657574779/4 5805657610155/4 5805657648597/4 1451414419901 5805657713955/4 2902828872665/2 1451414445115 5805657814183/4 5805657850737/4 5805657885949/4 5805657923637/4 1451414489238 2902828996801/2 5805658028165/4 1451414516360 1451414525414 5805658140835/4 5805658177313/4 5805658216211/4 2902829124089/2 5805658283835/4 5805658318007/4 5805658354493/4 2902829194625/2 5805658426765/4 2902829231239/2 5805658501265/4 5805658535655/4 5805658573433/4 1451414652296 5805658648353/4 2902829342583/2 5805658724937/4 5805658763005/4 1451414700831 1451414707091 2902829428099/2 2902829441693/2 2902829456603/2 5805658942599/4 5805658974769/4 1451414751569 5805659040765/4 1451414767668 2902829551751/2 1451414783684 5805659169615/4 2902829600593/2 5805659235879/4 1451414817582 5805659307787/4 2902829667515/2 2902829682089/2 5805659393189/4 5805659425209/4 5805659456507/4 5805659490303/4 5805659523079/4 2902829779771/2 2902829795433/2 5805659624473/4 1451414914223 2902829846205/2 5805659725395/4 2902829880399/2 2902829898075/2 5805659833817/4 5805659863883/4 5805659897213/4 5805659928979/4 5805659963493/4 5805659996639/4 1451415008074 5805660066449/4 1451415025874 2902830067741/2 1451415042596 5805660203771/4 5805660239603/4 2902830136801/2 2902830155033/2 5805660345235/4 5805660383249/4 1451415103803 5805660449723/4 1451415120694 2902830259073/2 5805660551839/4 2902830294577/2 1451415156153 5805660661773/4 2902830347717/2 5805660731731/4 2902830383365/2 1451415200981 2902830419477/2 5805660877187/4 5805660914261/4 5805660953803/4 5805660979975/4 2902830504409/2 1451415259315 5805661069431/4 5805661099995/4 5805661133355/4 5805661165479/4 2902830600165/2 5805661231199/4 5805661264777/4 5805661296823/4 2902830665949/2 5805661365259/4 5805661401079/4 2902830717481/2 5805661471765/4 5805661500523/4 5805661531597/4 1451415390229 1451415398240 5805661625317/4 2902830830151/2 5805661693561/4 2902830864693/2 5805661761459/4 2902830898291/2 5805661830267/4 5805661866785/4 5805661901407/4 2902830969035/2 1451415493312 1451415502910 2902831021147/2 5805662077221/4 1451415527610 5805662145281/4 2902831089467/2 5805662214729/4 5805662249269/4 2902831143203/2 2902831160031/2 2902831177841/2 2902831195399/2 2902831214387/2 5805662464179/4 1451415625664 2902831269799/2 5805662578629/4 2902831306127/2 5805662647223/4 5805662681553/4 2902831359141/2 5805662753561/4 5805662791761/4 2902831414591/2 1451415717016 5805662903303/4 1451415735248 2902831488651/2 2902831508001/2 5805663053209/4 5805663092135/4 5805663131455/4 5805663172299/4 2902831599427/2 2902831613793/2 5805663255297/4 5805663285715/4 5805663315911/4 2902831674819/2 5805663381847/4 5805663415933/4 5805663445137/4 5805663477961/4 1451415877513 5805663545107/4 2902831788917/2 5805663612757/4 5805663646785/4 2902831841907/2 1451415927836 2902831871175/2 1451415943116 1451415951355 5805663837403/4 2902831936029/2 5805663905659/4 5805663941975/4 1451415993595 5805664009171/4 5805664042725/4 2902832039519/2 2902832056387/2 5805664150187/4 5805664185585/4 5805664223891/4 5805664254559/4 2902832144513/2 5805664322071/4 5805664357957/4 5805664391049/4 5805664428109/4 1451416115699 5805664500615/4 1451416133556 2902832285519/2 1451416151394 5805664643841/4 5805664679523/4 5805664718515/4 1451416188941 5805664795361/4 5805664828455/4 1451416216085 5805664898495/4 5805664936681/4 1451416243013 2902832504935/2 5805665047173/4 2902832543229/2 1451416280106 2902832579131/2 1451416298677 5805665233697/4 2902832634917/2 2902832655393/2 5805665348725/4 2902832695689/2 5805665419149/4 5805665449609/4 5805665479831/4 5805665512833/4 1451416386385 1451416395251 1451416403701 5805665651013/4 2902832841555/2 2902832859373/2 2902832876025/2 1451416447342 1451416456136 1451416465535 1451416474654 5805665937073/4 5805665966851/4 2902832999619/2 5805666030067/4 2902833032273/2 5805666098819/4 2902833067503/2 1451416542479 1451416552016 1451416560653 1451416569745 1451416578562 2902833176291/2 1451416597083 2902833213611/2 5805666463931/4 5805666503827/4 5805666537093/4 2902833286507/2 2902833303973/2 1451416661453 1451416670329 2902833359597/2 1451416689124 5805666795457/4 1451416707772 5805666869289/4 2902833452653/2 5805666944271/4 2902833490875/2 5805667020923/4 5805667059161/4 5805667099571/4 5805667134683/4 5805667172293/4 2902833603813/2 5805667246149/4 5805667283081/4 1451416830760 5805667361075/4 1451416850281 5805667437651/4 2902833738759/2 5805667514807/4 5805667554347/4 1451416898197 2902833816779/2 1451416918131 1451416928456 5805667737699/4 5805667763861/4 5805667789659/4 2902833908975/2 1451416961329 2902833937943/2 1451416976296 1451416984449 2902833982905/2 1451416999270 5805668026463/4 5805668058681/4 1451417022241 5805668122401/4 5805668155139/4 5805668190059/4 5805668215139/4 1451417060603 1451417067255 1451417074683 2902834163769/2 5805668360457/4 5805668391133/4 1451417106477 5805668455579/4 5805668488191/4 1451417129883 1451417138617 5805668585871/4 5805668621183/4 1451417163866 1451417172987 5805668719621/4 5805668750193/4 1451417195099 2902834406469/2 1451417210708 5805668877629/4 1451417227699 1451417236415 1451417243974 2902834504899/2 5805669041739/4 5805669077623/4 5805669111209/4 1451417286924 5805669182591/4 1451417305068 5805669249845/4 1451417320729 5805669315077/4 5805669349751/4 2902834691071/2 2902834708757/2 5805669452483/4 5805669490259/4 5805669522141/4 5805669557329/4 5805669592243/4 1451417407293 1451417415974 5805669701559/4 1451417434560 2902834889137/2 1451417450859 2902834915373/2 1451417464402 5805669886651/4 1451417479069 5805669947625/4 1451417494621 5805670012983/4 2902835021401/2 5805670074737/4 5805670106307/4 5805670141333/4 2902835087317/2 1451417552398 5805670243769/4 5805670280413/4 5805670307173/4 1451417584087 2902835182729/2 5805670397383/4 1451417607302 5805670464161/4 5805670498403/4 2902835267761/2 5805670568179/4 2902835301613/2 5805670637749/4 2902835337601/2 5805670710089/4 2902835374085/2 5805670785505/4 1451417706217 5805670855137/4 5805670887767/4 2902835459779/2 2902835477173/2 5805670986609/4 5805671023183/4 5805671058241/4 1451417774147 5805671129013/4 2902835582905/2 5805671201389/4 1451417809974 5805671275423/4 1451417828520 5805671351717/4 2902835696319/2 1451417856273 1451417864959 2902835747143/2 5805671532039/4 2902835783675/2 2902835802755/2 5805671643139/4 5805671683833/4 5805671718827/4 5805671756661/4 2902835896781/2 2902835916869/2 5805671871577/4 2902835956147/2 2902835975609/2 2902835996691/2 2902836009705/2 5805672047331/4 2902836037245/2 5805672104047/4 2902836066769/2 1451418041583 1451418049369 5805672231803/4 5805672261545/4 2902836147277/2 1451418081459 5805672361271/4 1451418098285 5805672428883/4 5805672463301/4 5805672500669/4 2902836263907/2 5805672557193/4 5805672585609/4 5805672615595/4 5805672645157/4 2902836339139/2 5805672709361/4 5805672744473/4 5805672774543/4 5805672808269/4 5805672840115/4 2902836437515/2 5805672908043/4 2902836471851/2 2902836488561/2 1451418253672 5805673043837/4 1451418268830 1451418276451 2902836570003/2 1451418292804 5805673206297/4 1451418310219 1451418319358 5805673309447/4 5805673344131/4 5805673377833/4 5805673414783/4 5805673449407/4 2902836743259/2 5805673523205/4 1451418390391 2902836796623/2 1451418406778 5805673660541/4 5805673696041/4 2902836865047/2 1451418441705 5805673802169/4 5805673839979/4 5805673873501/4 5805673909941/4 2902836972765/2 5805673983511/4 1451418504954 2902837029275/2 5805674095653/4 5805674135233/4 5805674160681/4 5805674188787/4 1451418554051 5805674246157/4 2902837137705/2 5805674306777/4 1451418584219 1451418592895 1451418600244 1451418608426 5805674465935/4 5805674500979/4 2902837266707/2 1451418642171 5805618995211/4 1451404758301 5805619059817/4 1451404772314 5805619118009/4 2902809574941/2 5805619181099/4 1451404804033 2902809625325/2 1451404821717 5805619318611/4 5805619353155/4 5805619386489/4 2902809711001/2 5805619455493/4 2902809745895/2 5805619526999/4 5805619565067/4 2902809798081/2 2902809814909/2 5805619662611/4 2902809848887/2 1451404932783 5805619767031/4 5805619802509/4 5805619840923/4 1451404968676 1451404977669 2902809972787/2 5805619983267/4 5805620019183/4 5805620057741/4 2902810048007/2 5805620136071/4 5805620168749/4 1451405051109 5805620239997/4 5805620277119/4 2902810156081/2 5805620349917/4 5805620386243/4 2902810212741/2 5805620460593/4 1451405124563 5805620535619/4 1451405143735 5805620612705/4 2902810326289/2 2902810345533/2 2902810366415/2 5805620758709/4 5805620786687/4 2902810406975/2 2902810421741/2 1451405218343 5805620906967/4 5805620939865/4 5805620974543/4 2902810502125/2 5805621037303/4 5805621070339/4 5805621104993/4 5805621137451/4 2902810586487/2 1451405301828 5805621244279/4 5805621271825/4 1451405325602 5805621331065/4 5805621363425/4 5805621395099/4 1451405357406 2902810731509/2 5805621498797/4 2902810765109/2 5805621564349/4 5805621598313/4 5805621634293/4 1451405417344 5805621706027/4 2902810871311/2 5805621781855/4 1451405452849 1451405461151 1451405468964 5805621911197/4 2902810971807/2 5805621979083/4 2902811006887/2 1451405512701 5805622083695/4 5805622119195/4 5805622154071/4 5805622192057/4 5805622226865/4 5805622264871/4 1451405575346 5805622340421/4 1451405593137 2902811203805/2 2902811220839/2 5805622478099/4 5805622512507/4 2902811275127/2 5805622586447/4 2902811312779/2 2902811329849/2 1451405674304 2902811366777/2 5805622772489/4 1451405702264 5805622847963/4 5805622886427/4 5805622927659/4 1451405738699 1451405746108 5805623013487/4 5805623046417/4 2902811539111/2 5805623112925/4 2902811573237/2 1451405795677 5805623214627/4 2902811624317/2 1451405820648 5805623318299/4 5805623353597/4 5805623390927/4 5805623427459/4 5805623466819/4 2902811747587/2 2902811763937/2 1451405889553 5805623591811/4 2902811812497/2 1451405915218 1451405924162 5805623734103/4 2902811883615/2 5805623803487/4 5805623839405/4 5805623877647/4 5805623913187/4 2902811975625/2 5805623989345/4 5805624029309/4 1451406015211 5805624096015/4 1451406032465 5805624166613/4 5805624201645/4 5805624238121/4 5805624274477/4 1451406078352 5805624347247/4 1451406096057 5805624420295/4 2902812229677/2 2902812248109/2 5805624535393/4 5805624574211/4 2902812307895/2 2902812324901/2 2902812342685/2 1451406180117 5805624758713/4 1451406198863 5805624834181/4 5805624871285/4 1451406227875 5805624947179/4 1451406246299 5805625021563/4 5805625061173/4 5805625099353/4 5805625139607/4 1451406294787 2902812610593/2 5805625246981/4 5805625275445/4 1451406325612 1451406332950 2902812680735/2 1451406348648 5805625425871/4 5805625461413/4 5805625491687/4 5805625525439/4 2902812778363/2 1451406398027 1451406406364 5805625660805/4 5805625696221/4 2902812867061/2 1451406440501 5805625792121/4 1451406455253 5805625854343/4 5805625887295/4 5805625922655/4 5805625955661/4 2902812996105/2 5805626023171/4 5805626058609/4 1451406523298 1451406532474 1451406540940 1451406550076 5805626235863/4 2902813137285/2 1451406576332 5805626340003/4 2902813186855/2 5805626409625/4 5805626443139/4 2902813239865/2 2902813258351/2 5805626555709/4 1451406647537 1451406656893 2902813331955/2 1451406675656 2902813369451/2 5805626778267/4 2902813408593/2 1451406714735 5805626892911/4 1451406732189 1451406741019 1451406750345 2902813518861/2 1451406769043 1451406778530 1451406788491 5805627189221/4 1451406806738 1451406816127 5805627303893/4 1451406835473 2902813691031/2 5805627422001/4 2902813732511/2 2902813746439/2 1451406880753 1451406888030 1451406895906 5805627615789/4 5805627650455/4 5805627684715/4 2902813860813/2 5805627752369/4 5805627787833/4 2902813911093/2 5805627859117/4 1451406973570 1451406982998 5805627968301/4 5805628006953/4 5805628035741/4 1451407016830 5805628099735/4 2902814066439/2 5805628167145/4 1451407051029 5805628240363/4 5805628279111/4 5805628313269/4 2902814174987/2 5805628386167/4 5805628423637/4 1451407114666 2902814248597/2 1451407133699 5805628575159/4 5805628608363/4 2902814321793/2 5805628678885/4 1451407179116 2902814375723/2 2902814394983/2 2902814413551/2 1451407216769 2902814451117/2 1451407235047 2902814488487/2 5805629016503/4 2902814526949/2 5805629093985/4 1451407283241 5805629174503/4 5805629208353/4 5805629244697/4 2902814640265/2 2902814659369/2 1451407338828 2902814697299/2 2902814716543/2 2902814737071/2 5805629510647/4 1451407387508 2902814794023/2 1451407407158 1451407416945 5805629710939/4 5805629750845/4 2902814897287/2 5805629821045/4 1451407462564 2902814938853/2 2902814954083/2 5805629937861/4 2902814985975/2 5805630002917/4 5805630039189/4 5805630070333/4 5805630104665/4 5805630136777/4 5805630172197/4 2902815103239/2 5805630243317/4 1451407569636 1451407579226 5805630345161/4 5805630376535/4 2902815203059/2 2902815219687/2 1451407618291 1451407626976 1451407635597 2902815289799/2 5805630612181/4 2902815324103/2 5805630682853/4 2902815360197/2 5805630755781/4 5805630793239/4 5805630829765/4 5805630867993/4 1451407724885 5805630933109/4 5805630965735/4 1451407750177 1451407758492 5805631070567/4 1451407776644 5805631144809/4 5805631178373/4 5805631215083/4 2902815624579/2 5805631286221/4 1451407830225 5805631359311/4 1451407849178 2902815718301/2 2902815734575/2 2902815752085/2 5805631539101/4 5805631575883/4 5805631611095/4 5805631648797/4 2902815842425/2 5805631723615/4 5805631758707/4 5805631795995/4 2902815916311/2 5805631871657/4 5805631908225/4 5805631947851/4 2902815993177/2 5805632027303/4 5805632055205/4 5805632085697/4 5805632115349/4 5805632147749/4 2902816090509/2 5805632216955/4 1451408062768 1451408072188 1451408080416 1451408089256 5805632389957/4 5805632426501/4 5805632461953/4 2902816249689/2 5805632536303/4 2902816288057/2 5805632605957/4 5805632638015/4 5805632669949/4 5805632704679/4 5805632739283/4 2902816388503/2 1451408203371 5805632851847/4 5805632885739/4 5805632923739/4 2902816480203/2 1451408249718 1451408258798 1451408268660 1451408278281 1451408288475 2902816593639/2 1451408305722 2902816628389/2 5805633293123/4 5805633328949/4 2902816683661/2 5805633404289/4 5805633443071/4 2902816738997/2 2902816758269/2 5805633553097/4 2902816796029/2 5805633629841/4 5805633670147/4 1451408427182 1451408437542 5805633785087/4 2902816911487/2 2902816929583/2 5805633898385/4 1451408483913 5805633975591/4 2902817006691/2 2902817026929/2 5805634091285/4 5805634131061/4 2902817084751/2 2902817105161/2 5805634249419/4 2902817145563/2 1451408582841 1451408593339 2902817200539/2 5805634430689/4 5805634459399/4 5805634490289/4 5805634521223/4 5805634556177/4 5805634590065/4 5805634626945/4 5805634658337/4 1451408673363 2902817363629/2 1451408690849 1451408699394 2902817417407/2 5805634870451/4 2902817454383/2 5805634937477/4 5805634968593/4 5805634998745/4 5805635032053/4 1451408766348 1451408775500 1451408784305 2902817587365/2 5805635208151/4 2902817622201/2 1451408819866 1451408829357 5805635353139/4 5805635390987/4 2902817714091/2 1451408867066 1451408875451 2902817769013/2 5805635572383/4 5805635609945/4 5805635645263/4 2902817841857/2 5805635720643/4 2902817879853/2 2902817897579/2 1451408958298 2902817934831/2 2902817954401/2 2902817973055/2 5805635986077/4 1451409006193 5805636065773/4 2902818050177/2 5805636138433/4 1451409043610 1451409053402 5805636250813/4 1451409072517 2902818164023/2 1451409092229 5805636405691/4 1451409111391 1451409121028 5805636524531/4 2902818281361/2 5805636604101/4 2902818321929/2 5805636686529/4 5805636715519/4 5805636747257/4 5805636777335/4 1451409202513 5805636842903/4 1451409219883 5805636915103/4 5805636952993/4 2902818493497/2 5805637022867/4 1451409264510 5805637095915/4 5805637131791/4 5805637170461/4 5805637208027/4 1451409311932 1451409319582 5805637310991/4 1451409335837 5805637378441/4 5805637413535/4 2902818725471/2 1451409371848 2902818762875/2 2902818780485/2 5805637598575/4 5805637635173/4 2902818837233/2 5805637711483/4 1451409437762 1451409447245 2902818914249/2 5805637861487/4 2902818948913/2 5805637931809/4 5805637968811/4 2902819002225/2 1451409510580 5805638078561/4 5805638118023/4 1451409538407 1451409547978 5805638228123/4 2902819133307/2 1451409575952 1451409585806 1451409595424 1451409605728 2902819228791/2 1451409623700 2902819265547/2 5805638568961/4 5805638606331/4 5805638646155/4 5805638683581/4 5805638723739/4 5805638761047/4 5805638800513/4 1451409709415 5805638877799/4 1451409728964 5805638956621/4 2902819497565/2 5805639037521/4 5805639064859/4 1451409773954 5805639124673/4 5805639157407/4 5805639190191/4 2902819612477/2 5805639258223/4 2902819647545/2 5805639327515/4 2902819681407/2 5805639396513/4 5805639433973/4 5805639468629/4 5805639505863/4 2902819770775/2 5805639580557/4 1451409902576 1451409910589 1451409918208 5805639707023/4 5805639741603/4 5805639777501/4 5805639812691/4 5805639849923/4 1451409970965 1451409980067 1451409988792 5805639992797/4 1451410007059 5805640066211/4 5805640103871/4 1451410036072 1451410044376 1451410053121 5805640245943/4 1451410070418 5805640315985/4 2902820176859/2 5805640389967/4 1451410107245 2902820231465/2 5805640499521/4 5805640535745/4 1451410143552 5805640610359/4 5805640649263/4 1451410171690 5805640727601/4 2902820380899/2 5805640797439/4 1451410208094 5805640870405/4 5805640906603/4 5805640945149/4 5805640982795/4 5805641021973/4 2902820528407/2 5805641095381/4 1451410283035 1451410292795 1451410302100 5805641248549/4 5805641287171/4 2902820664429/2 5805641357987/4 5805641390101/4 2902820710141/2 1451410363436 5805641487593/4 5805641523489/4 5805641557823/4 5805641594643/4 5805641628253/4 1451410416057 1451410424822 1451410434226 2902820886613/2 1451410453000 5805641849541/4 1451410472242 1451410480132 5805641953767/4 1451410496561 2902821010495/2 5805642056579/4 1451410523530 5805642130465/4 5805642168779/4 5805642203191/4 5805642241513/4 5805642277707/4 1451410578945 1451410587989 1451410597795 5805642429841/4 2902821235243/2 5805642503871/4 5805642540277/4 5805642574171/4 5805642611255/4 5805642646891/4 5805642684839/4 2902821361011/2 5805642761357/4 5805642796269/4 5805642834395/4 5805642871655/4 5805642910879/4 1451410736967 5805642988241/4 1451410756597 5805643067747/4 2902821551609/2 1451410785505 2902821589149/2 5805643216773/4 1451410813673 2902821647713/2 2902821666967/2 2902821687209/2 1451410852709 1451410862927 5805643490889/4 1451410882843 5805643572083/4 5805643615143/4 2902821827325/2 5805643696735/4 2902821862281/2 1451410938719 1451410946008 5805643817455/4 1451410962646 2902821942809/2 2902821959433/2 5805643955369/4 5805643988059/4 2902822011551/2 5805644056507/4 1451411023326 1451411031904 5805644164765/4 2902822100241/2 5805644238491/4 5805644268131/4 5805644300869/4 2902822165961/2 1451411091341 1451411099838 2902822218429/2 1451411117970 5805644509757/4 2902822271925/2 5805644580445/4 1451411154003 2902822327247/2 2902822345137/2 1451411182154 5805644766791/4 2902822403285/2 1451411209986 5805644875913/4 5805644911199/4 5805644948605/4 1451411245908 1451411255703 2902822530051/2 5805645099893/4 2902822567441/2 2902822586631/2 5805645209923/4 5805645249173/4 5805645287253/4 5805645327439/4 5805645366483/4 5805645407851/4 5805645442217/4 5805645479211/4 1451411378821 5805645554095/4 5805645590549/4 5805645629433/4 2902822833637/2 5805645707149/4 2902822871727/2 2902822891189/2 2902822909851/2 2902822929787/2 1451411474409 2902822969545/2 2902822989661/2 5805646023187/4 5805646052809/4 5805646084765/4 1451411529038 1451411537332 5805646183537/4 5805646220507/4 1451411563854 5805646293391/4 1451411581732 5805646363683/4 5805646399733/4 2902823219091/2 2902823237269/2 5805646514057/4 2902823275929/2 2902823295473/2 1451411655739 5805646656877/4 2902823344593/2 2902823362165/2 5805646759889/4 5805646798757/4 2902823417809/2 5805646875647/4 2902823455453/2 2902823474099/2 5805646985119/4 5805647024085/4 2902823530687/2 1451411775434 5805647140023/4 1451411795118 1451411803795 1451411813249 1451411822303 2902823663839/2 1451411841120 5805647403207/4 2902823720369/2 1451411870334 5805647517249/4 1451411889060 1451411898532 5805647633673/4 5805647672009/4 2902823856771/2 1451411938240 5805647795907/4 5805647832053/4 1451411967580 5805647908159/4 5805647947359/4 2902823992335/2 5805648025523/4 5805648064049/4 5805648104997/4 5805648142457/4 5805648182589/4 5805648220475/4 5805648261615/4 5805648300991/4 1451412085723 5805648383605/4 2902824213833/2 2902824225503/2 5805648478097/4 2902824251715/2 5805648532365/4 1451412139431 2902824293731/2 2902824307449/2 2902824322853/2 5805648670659/4 2902824349767/2 2902824363353/2 1451412189356 5805648784871/4 1451412204018 1451412211499 2902824439525/2 2902824452209/2 1451412232992 5805648958509/4 2902824494467/2 1451412253983 1451412261333 5805649074799/4 2902824554069/2 5805649134695/4 5805649164643/4 5805649193549/4 1451412306502 5805649255367/4 5805649288303/4 2902824659957/2 2902824677517/2 5805649381253/4 2902824705223/2 2902824719223/2 2902824734899/2 5805649498547/4 2902824765077/2 5805649560991/4 5805649595175/4 1451412405902 5805649654607/4 2902824842355/2 1451412429560 2902824874563/2 1451412445797 2902824908009/2 5805649852915/4 5805649881197/4 1451412478231 5805649943455/4 2902824987951/2 2902825003369/2 5805650039493/4 5805650071049/4 1451412526635 1451412534049 5805650168949/4 2902825100259/2 5805650235797/4 1451412566941 5805650303915/4 2902825169207/2 1451412593931 1451412600365 1451412607437 1451412613939 5805650485583/4 1451412628361 5805650543761/4 5805650572419/4 2902825302141/2 1451412657871 5805650661673/4 2902825345373/2 5805650722947/4 1451412688035 2902825392163/2 2902825408239/2 2902825426181/2 2902825439415/2 1451412727094 5805650936061/4 1451412741853 2902825498141/2 1451412757080 5805651058677/4 5805651092963/4 5805651121589/4 5805651153223/4 2902825591717/2 2902825608951/2 1451412812260 1451412820900 5805651317431/4 2902825677153/2 2902825691575/2 2902825707409/2 5805651444997/4 1451412869601 2902825754531/2 5805651544165/4 5805651577681/4 5805651615061/4 5805651645713/4 5805651680615/4 5805651713045/4 5805651749353/4 5805651781887/4 1451412954739 5805651854209/4 5805651892985/4 2902825961677/2 5805651956739/4 2902825995141/2 5805652026243/4 5805652058515/4 2902826047487/2 2902826065431/2 5805652169733/4 2902826101043/2 1451413059700 5805652274239/4 1451413078154 1451413086917 1451413096559 2902826211849/2 2902826232233/2 5805652489535/4 1451413129379 2902826272665/2 1451413143965 5805652603289/4 1451413158662 2902826332663/2 2902826349259/2 5805652725887/4 1451413189446 5805652787905/4 2902826410793/2 5805652851069/4 1451413221285 5805652917951/4 2902826476769/2 1451413245159 2902826505443/2 5805653040353/4 5805653072973/4 5805653103689/4 5805653137085/4 2902826584583/2 2902826602145/2 2902826617401/2 2902826634015/2 5805653300083/4 5805653335419/4 2902826684067/2 2902826701945/2 1451413359572 5805653475863/4 2902826752517/2 1451413384594 5805653569799/4 1451413401474 5805653637835/4 1451413418626 5805653709627/4 2902826873655/2 2902826889511/2 1451413453663 2902826923799/2 2902826942163/2 2902826959789/2 1451413489277 2902826996765/2 1451413508161 2902827032099/2 1451413524892 1451413533390 5805654170615/4 2902827101491/2 2902827119287/2 5805654272605/4 5805654309889/4 1451413585195 1451413593930 5805654410051/4 1451413611663 5805654480605/4 1451413629403 5805654554369/4 5805654593537/4 1451413655080 5805654650089/4 5805654677511/4 1451413677252 1451413684218 1451413692260 5805654799783/4 5805654833565/4 1451413715317 2902827446873/2 1451413731337 1451413739801 5805654990935/4 5805655025569/4 2902827529399/2 5805655095601/4 5805655124575/4 1451413789277 5805655186929/4 5805655219785/4 5805655251249/4 2902827642325/2 5805655317035/4 2902827676163/2 2902827691365/2 5805655416707/4 5805655448935/4 5805655483885/4 2902827758319/2 2902827776283/2 5805655587465/4 1451413906085 2902827827449/2 5805655688849/4 2902827860367/2 5805655756373/4 5805655789983/4 5805655826095/4 5805655860591/4 5805655899285/4 5805655932339/4 2902827984083/2 2902828001163/2 2902828019589/2 1451414018494 2902828055667/2 5805656147433/4 5805656187159/4 1451414054637 5805656254059/4 5805656288809/4 1451414081485 5805656360543/4 5805656397943/4 5805656434247/4 5805656473371/4 5805656507595/4 5805656544135/4 1451414145169 2902828309509/2 5805656655209/4 2902828346393/2 5805656729973/4 1451414192747 1451414199204 5805656826015/4 1451414213360 5805656883697/4 2902828455619/2 5805656942659/4 2902828486161/2 1451414251344 5805657032881/4 2902828531921/2 5805657093517/4 1451414281677 5805657156445/4 2902828594607/2 1451414305532 5805657258769/4 5805657285535/4 5805657315363/4 2902828672311/2 5805657378833/4 1451414352171 2902828720971/2 5805657474445/4 2902828755121/2 5805657539065/4 5805657571117/4 5805657603509/4 5805657639077/4 1451414417493 5805657705793/4 2902828869857/2 1451414444225 2902828902733/2 2902828918055/2 2902828933193/2 2902828949873/2 5805657930395/4 5805657963751/4 5805657996429/4 5805658032615/4 2902829031511/2 5805658096305/4 1451414532108 2902829082011/2 2902829098345/2 1451414558147 5805658266447/4 5805658304185/4 5805658333583/4 5805658366307/4 2902829198821/2 5805658432907/4 1451414616193 5805658500467/4 5805658535211/4 5805658572669/4 1451414650998 5805658639551/4 2902829337085/2 2902829355373/2 5805658744147/4 1451414695427 2902829409285/2 2902829428881/2 5805658885069/4 5805658915453/4 1451414736022 5805658976129/4 5805659005451/4 2902829519087/2 1451414767336 2902829552335/2 5805659133465/4 5805659165225/4 5805659197379/4 5805659232469/4 1451414816079 2902829649863/2 1451414833557 5805659371511/4 1451414850037 1451414857915 5805659462049/4 2902829747837/2 5805659526833/4 5805659561605/4 2902829797599/2 1451414907891 1451414915397 5805659696037/4 1451414932316 1451414941365 1451414949720 5805659835117/4 2902829935023/2 1451414977114 5805659938513/4 5805659971561/4 1451415001074 2902830020213/2 2902830036307/2 5805660109273/4 5805660143855/4 5805660181291/4 2902830106207/2 5805660247943/4 2902830140999/2 2902830159339/2 2902830176603/2 1451415097708 5805660426965/4 5805660466127/4 1451415124286 5805660532321/4 1451415141606 5805660603827/4 2902830319009/2 5805660674693/4 2902830355285/2 5805660749649/4 2902830391455/2 5805660819565/4 5805660855237/4 5805660893881/4 5805660929989/4 5805660969059/4 5805661006381/4 5805661046579/4 2902830536733/2 2902830551841/2 5805661132161/4 5805661163863/4 1451415298096 5805661224237/4 1451415313701 5805661288749/4 2902830658437/2 5805661349175/4 5805661379949/4 1451415353492 5805661445455/4 2902830739815/2 5805661512261/4 1451415386927 5805661576043/4 1451415401769 1451415409437 2902830835727/2 1451415425594 2902830867653/2 5805661767427/4 1451415450782 1451415458388 2902830933419/2 2902830949647/2 2902830967157/2 5805661966937/4 5805662002711/4 2902831018317/2 1451415518547 5805662103897/4 5805662137433/4 5805662169967/4 5805662205361/4 5805662238397/4 1451415568554 1451415577211 2902831173161/2 2902831188765/2 5805662414049/4 5805662447963/4 5805662484599/4 5805662519485/4 5805662557127/4 1451415648471 5805662632893/4 2902831331993/2 5805662699709/4 5805662733737/4 1451415692674 1451415701525 1451415710960 5805662880051/4 5805662919353/4 2902831476739/2 2902831495031/2 2902831513051/2 1451415766187 1451415775245 1451415785213 2902831589579/2 5805663220343/4 2902831624611/2 5805663280869/4 1451415828004 5805663346143/4 2902831688697/2 1451415852722 1451415860815 2902831739301/2 2902831754309/2 1451415885590 1451415893718 2902831804893/2 5805663642765/4 5805663678407/4 5805663713477/4 5805663751631/4 5805663782189/4 5805663815961/4 5805663847783/4 5805663882369/4 5805663914689/4 5805663949801/4 5805663984163/4 5805664021543/4 1451416013450 1451416022349 5805664123647/4 2902832080371/2 5805664195031/4 5805664232935/4 5805664269701/4 5805664308999/4 5805664342667/4 5805664377999/4 5805664412297/4 5805664449277/4 5805664484769/4 5805664522273/4 5805664559361/4 2902832299305/2 2902832316945/2 2902832336029/2 5805664709209/4 2902832374161/2 1451416196178 5805664823993/4 1451416215586 5805664903119/4 2902832469121/2 5805664975951/4 2902832505701/2 5805665050553/4 2902832543401/2 2902832562495/2 2902832581687/2 1451416301159 5805665240455/4 2902832639555/2 2902832658817/2 5805665358393/4 1451416349287 5805665437703/4 5805665477917/4 5805665521401/4 2902832774159/2 1451416394514 1451416401378 5805665636389/4 5805665664917/4 5805665696797/4 5805665726723/4 5805665760055/4 5805665788901/4 1451416455303 1451416462920 2902832943031/2 2902832958347/2 5805665951101/4 2902832991899/2 5805666019613/4 2902833023531/2 1451416519669 2902833054127/2 5805666141531/4 1451416542951 5805666205323/4 5805666238237/4 5805666274059/4 5805666303779/4 5805666337533/4 1451416592318 5805666404659/4 1451416609072 1451416618168 5805666507177/4 2902833272291/2 1451416643545 2902833303367/2 5805666638085/4 1451416667988 5805666703571/4 5805666739323/4 5805666773455/4 2902833404989/2 5805666841147/4 5805666876337/4 5805666909855/4 1451416736637 5805666979651/4 5805667016193/4 2902833525655/2 2902833544675/2 2902833560351/2 5805667156499/4 1451416797434 5805667225765/4 2902833629527/2 5805667296835/4 5805667332975/4 5805667371549/4 1451416851070 5805667441253/4 5805667476841/4 2902833757069/2 1451416887088 1451416896613 1451416905742 2902833831087/2 5805667690041/4 1451416930170 1451416937527 2902833891637/2 2902833907039/2 2902833924179/2 1451416970066 5805667916401/4 5805667946683/4 5805667980663/4 1451417003314 5805668048695/4 5805668080865/4 2902834058527/2 1451417037903 2902834094245/2 5805668217817/4 5805668249929/4 5805668281535/4 5805668317427/4 1451417087187 1451417096243 5805668418969/4 2902834228033/2 5805668487339/4 5805668522339/4 5805668556157/4 1451417148112 2902834313391/2 1451417165985 5805668698749/4 1451417184281 2902834384201/2 5805668803765/4 5805668836159/4 5805668872289/4 5805668906613/4 2902834471591/2 5805668978805/4 5805669017627/4 2902834525617/2 5805669087375/4 5805669122533/4 5805669160957/4 5805669196387/4 2902834617195/2 5805669270927/4 5805669310487/4 5805669342187/4 2902834688997/2 5805669412471/4 5805669450431/4 2902834743317/2 2902834762495/2 2902834780585/2 5805669601717/4 5805669636571/4 5805669674411/4 2902834855373/2 1451417437636 5805669787641/4 5805669827313/4 5805669864701/4 2902834952729/2 1451417483492 2902834982443/2 1451417498726 5805670027633/4 5805670058529/4 5805670092623/4 2902835062031/2 5805670159037/4 5805670189347/4 1451417555498 5805670253745/4 5805670288815/4 2902835160923/2 5805670357299/4 5805670391291/4 5805670428359/4 2902835229539/2 5805670492255/4 1451417631050 1451417639932 2902835296087/2 5805670627355/4 5805670661055/4 2902835349169/2 2902835365395/2 5805670766403/4 5805670799741/4 5805670836377/4 5805670870685/4 5805670907935/4 5805670944477/4 2902835491895/2 5805671015375/4 5805671051007/4 2902835542507/2 1451417780622 1451417789375 2902835597917/2 5805671232837/4 1451417818037 5805671306625/4 5805671343983/4 1451417845004 5805671418839/4 5805671455699/4 1451417873801 2902835766737/2 5805671574331/4 2902835804321/2 5805671646189/4 5805671682423/4 2902835860377/2 1451417939407 2902835898663/2 5805671835701/4 5805671876757/4 5805671913299/4 5805671951635/4 5805671989069/4 1451418007443 2902836033903/2 1451418027175 1451418037044 5805672190657/4 5805672221745/4 5805672255773/4 2902836144039/2 2902836161771/2 1451418089243 5805672393491/4 5805672428301/4 2902836232969/2 5805672498879/4 2902836267417/2 1451418142363 5805672605833/4 1451418159784 2902836337917/2 5805672710653/4 1451418187093 5805672780403/4 1451418203696 2902836423959/2 5805672883239/4 2902836458549/2 2902836476659/2 5805672988491/4 2902836513007/2 5805673059337/4 1451418273739 1451418282170 2902836582767/2 1451418300111 1451418309414 1451418318393 2902836655999/2 5805673345341/4 5805673381235/4 5805673416781/4 5805673454225/4 2902836744911/2 5805673528741/4 5805673565121/4 2902836802053/2 5805673639795/4 5805673678079/4 5805673714603/4 5805673753313/4 1451418447484 5805673829253/4 1451418466769 1451418476925 1451418485821 5805673981045/4 5805674017127/4 5805674055835/4 5805674092347/4 5805674131365/4 5805674168581/4 2902837104527/2 1451418561336 1451418571065 2902837160791/2 5805674361515/4 2902837199501/2 5805674439473/4 2902837239393/2 2902837260355/2 1451418637158 2902837289691/2 1451418651948 2902837319785/2 2902837334399/2 1451418674985 2902837364931/2 5805674763679/4 5805674792175/4 5805674823701/4 1451418713543 5805674887681/4 1451418729574 5805674952997/4 2902837492885/2 5805675021269/4 2902837524623/2 2902837540157/2 1451418777502 5805675143211/4 5805675172709/4 5805675206891/4 5805675239285/4 2902837637297/2 5805675304375/4 5805675338635/4 5805675371257/4 2902837703095/2 2902837719779/2 2902837737847/2 2902837755085/2 2902837773565/2 1451418893984 2902837804663/2 2902837820341/2 5805675674751/4 5805675706001/4 5805675741133/4 2902837887395/2 1451418952727 1451418960383 5805675876179/4 2902837954865/2 5805675946113/4 5805675980061/4 2902838008263/2 5805676051653/4 5805676088849/4 2902838060185/2 5805676155593/4 1451419047300 5805676225181/4 5805676259135/4 2902809501001/2 1451404759846 5805619077581/4 2902809555161/2 5805619146719/4 1451404795537 5805619219129/4 2902809627277/2 1451404823149 1451404832391 5805619368843/4 1451404849405 1451404857317 5805619460355/4 5805619494579/4 5805619525595/4 2902809780261/2 2902809796625/2 5805619629261/4 5805619660189/4 5805619695043/4 5805619727855/4 1451404940958 2902809898761/2 5805619833851/4 1451404967131 1451404976556 5805619936145/4 5805619970417/4 1451405000694 1451405009604 1451405017894 2902810053369/2 5805620140517/4 1451405044395 5805620210499/4 1451405061526 5805620279767/4 5805620317049/4 1451405087780 1451405097013 1451405105887 5805620462497/4 5805620495565/4 2902810265841/2 5805620565427/4 5805620602371/4 2902810318501/2 5805620674201/4 2902810354999/2 2902810373987/2 2902810391053/2 5805620818329/4 5805620853395/4 1451405222752 5805620926509/4 1451405241229 5805621001527/4 1451405260290 2902810537831/2 2902810556183/2 5805621146689/4 5805621184485/4 5805621220207/4 1451405314651 2902810647921/2 5805621335435/4 2902810685455/2 1451405352111 2902810722383/2 1451405370891 5805621520133/4 1451405389887 5805621597283/4 2902810818997/2 2902810833585/2 5805621698339/4 5805621727955/4 5805621761161/4 1451405447930 1451405456312 5805621857103/4 1451405473025 5805621922697/4 5805621955567/4 5805621987515/4 1451405505529 2902811027611/2 5805622090393/4 5805622124335/4 2902811080613/2 2902811095715/2 5805622224499/4 5805622256085/4 2902811145177/2 5805622322483/4 1451405589271 1451405597541 2902811213357/2 5805622458467/4 5805622492887/4 2902811262831/2 2902811280841/2 1451405648892 5805622631945/4 2902811333387/2 2902811352863/2 5805622737489/4 5805622772407/4 1451405701543 2902811421255/2 1451405719147 1451405728297 5805622948417/4 5805622986361/4 2902811510113/2 5805623056167/4 5805623090621/4 2902811563915/2 5805623163325/4 5805623201121/4 1451405809538 5805623277443/4 1451405827721 5805623346871/4 2902811690665/2 2902811708965/2 5805623452939/4 1451405872748 1451405881930 2902811783603/2 1451405900468 5805623639121/4 1451405918704 1451405928423 5805623749979/4 2902811894415/2 5805623826325/4 2902811933423/2 5805623897071/4 1451405982581 1451405990385 5805623995797/4 2902812013831/2 5805624062969/4 5805624096399/4 1451406033212 5805624164817/4 5805624200067/4 2902812117099/2 5805624269617/4 2902812151673/2 1451406085118 5805624375387/4 1451406103256 5805624444723/4 2902812239385/2 5805624512037/4 2902812273613/2 2902812290497/2 5805624617201/4 1451406163071 5805624689989/4 5805624723165/4 5805624759031/4 2902812396583/2 2902812415083/2 1451406216312 5805624904463/4 5805624941273/4 1451406245347 1451406253810 5805625051563/4 2902812543287/2 5805625123687/4 2902812579721/2 1451406299526 5805625234865/4 5805625275307/4 5805625310859/4 1451406337182 1451406346206 2902812711567/2 5805625459369/4 2902812749305/2 2902812768145/2 5805625577667/4 5805625612735/4 1451406412703 5805625686863/4 5805625725427/4 2902812880999/2 5805625801139/4 2902812919357/2 5805625880225/4 1451406479068 2902812977599/2 2902812996301/2 5805626032405/4 5805626070395/4 5805626111761/4 5805626151019/4 5805626194039/4 5805626219651/4 1451406561927 5805626274927/4 1451406576397 5805626333045/4 5805626363047/4 1451406598154 1451406606355 2902813226583/2 5805626483273/4 5805626512747/4 1451406636271 5805626575007/4 2902813303767/2 5805626639801/4 5805626674325/4 2902813350407/2 1451406682488 5805626758605/4 5805626791539/4 5805626820615/4 5805626852551/4 2902813441873/2 5805626917981/4 2902813473397/2 5805626977563/4 5805627007947/4 5805627041713/4 1451406768060 1451406776578 5805627140263/4 2902813588045/2 5805627204165/4 5805627233993/4 1451406815740 1451406823715 5805627325099/4 5805627358561/4 2902813695689/2 2902813713431/2 5805627456165/4 5805627488965/4 1451406880260 5805627555573/4 2902813793629/2 1451406905619 5805627656829/4 1451406923376 2902813861499/2 5805627755491/4 5805627787119/4 1451406955412 2902813926759/2 5805627888125/4 1451406980543 5805627958751/4 2902813995167/2 5805628024591/4 5805628057887/4 2902814046997/2 5805628128353/4 5805628165001/4 2902814100119/2 5805628238631/4 5805628265269/4 5805628295753/4 5805628323621/4 1451407088706 1451407095959 2902814208399/2 1451407111835 2902814241079/2 2902814255673/2 5805628544001/4 5805628574255/4 5805628608751/4 5805628640737/4 5805628675317/4 1451407177206 2902814373085/2 1451407193674 5805628807141/4 1451407209257 2902814435221/2 2902814450677/2 5805628936015/4 1451407242009 2902814501845/2 5805629034231/4 2902814534361/2 1451407275392 2902814568753/2 1451407292731 1451407301810 2902814621349/2 1451407320300 1451407327589 5805629342323/4 2902814686645/2 5805629407407/4 2902814720125/2 2902814737625/2 2902814754859/2 5805629546329/4 5805629579105/4 5805629613743/4 5805629647605/4 5805629684063/4 2902814859245/2 5805629755003/4 5805629790869/4 5805629829721/4 1451407465475 1451407474085 1451407482551 5805629966215/4 5805630000477/4 1451407509203 5805630072825/4 5805630110899/4 1451407536205 2902815090541/2 1451407554110 2902815126879/2 1451407572258 1451407581796 5805630364697/4 5805630404405/4 5805630431033/4 2902815230303/2 1451407622072 5805630519815/4 2902815274467/2 5805630581159/4 1451407652956 1451407661379 2902815337127/2 5805630705855/4 5805630736241/4 5805630769195/4 1451407700019 1451407708420 2902815433209/2 5805630901287/4 5805630929603/4 5805630961065/4 1451407747821 5805631023717/4 5805631054223/4 5805631087715/4 2902815559895/2 2902815577231/2 2902815592231/2 5805631217705/4 1451407812372 5805631284059/4 1451407829069 5805631351565/4 5805631385771/4 5805631422055/4 5805631451419/4 2902815742349/2 2902815757699/2 1451407887604 5805631582237/4 2902815809153/2 5805631652561/4 5805631690309/4 5805631721707/4 5805631757291/4 2902815895717/2 2902815914121/2 5805631862731/4 5805631900675/4 5805631936537/4 5805631975347/4 1451408001976 5805632043165/4 1451408019181 2902816056609/2 1451408037007 1451408046278 5805632220927/4 2902816130243/2 5805632294739/4 1451408082966 5805632367675/4 5805632406709/4 1451408110863 1451408120659 1451408130115 5805632561733/4 2902816295737/2 5805632623471/4 5805632654007/4 5805632686809/4 1451408179467 5805632752431/4 5805632785273/4 2902816410225/2 5805632851365/4 1451408221218 1451408229307 1451408238053 1451408246343 1451408255260 5805633055503/4 5805633092793/4 5805633123547/4 5805633156289/4 2902816593899/2 2902816611209/2 2902816627681/2 5805633290291/4 2902816662007/2 5805633361865/4 2902816697159/2 1451408357383 1451408365832 5805633499997/4 2902816767219/2 5805633573217/4 5805633609001/4 1451408412333 5805633681301/4 1451408429346 5805633752079/4 5805633789441/4 1451408456175 1451408465719 5805633899003/4 5805633939395/4 5805633974303/4 5805634011991/4 5805634048657/4 1451408521874 1451408531193 5805634164891/4 5805634203185/4 5805634244715/4 2902817139641/2 5805634316855/4 1451408588357 1451408598226 1451408607385 1451408617270 5805634507249/4 2902817274467/2 1451408646190 5805634624089/4 5805634661229/4 5805634702093/4 1451408684961 1451408695344 5805634821683/4 1451408716273 1451408723344 2902817461961/2 5805634953815/4 1451408746815 5805635018189/4 2902817526199/2 1451408771273 5805635120429/4 2902817575555/2 5805635185297/4 5805635217985/4 2902817626543/2 5805635286113/4 5805635322251/4 5805635358023/4 1451408848976 5805635425419/4 5805635457009/4 5805635488461/4 5805635523651/4 5805635555661/4 5805635591221/4 5805635626877/4 5805635665197/4 2902817848671/2 1451408933189 1451408942068 5805635805371/4 2902817920457/2 5805635879023/4 2902817958225/2 1451408988989 2902817993507/2 1451409005356 5805636055047/4 5805636091267/4 1451409031228 1451409040370 5805636197625/4 5805636235989/4 1451409067257 5805636306139/4 1451409085453 1451409095119 5805636416991/4 2902818227909/2 5805636493349/4 2902818267081/2 5805636567163/4 1451409150861 5805636639123/4 5805636676973/4 2902818356909/2 1451409188099 5805636790287/4 5805636830389/4 1451409216545 1451409226073 2902818470845/2 5805636981619/4 5805637019907/4 5805637059941/4 5805637098723/4 5805637141287/4 5805637171761/4 5805637205549/4 5805637237101/4 5805637273071/4 5805637306101/4 5805637342107/4 5805637377335/4 2902818707849/2 5805637449033/4 2902818742607/2 2902818759793/2 1451409389592 2902818797041/2 5805637632179/4 2902818834897/2 5805637710727/4 1451409435560 5805637776555/4 1451409452166 2902818922179/2 1451409469541 2902818957333/2 5805637949809/4 5805637987807/4 5805638021619/4 1451409514360 1451409523093 5805638130567/4 5805638166111/4 1451409551098 1451409560285 1451409570396 5805638314325/4 5805638349219/4 2902819191731/2 5805638419657/4 5805638454529/4 5805638491275/4 1451409631799 5805638565647/4 5805638599821/4 5805638635971/4 2902819335969/2 1451409677595 5805638746751/4 1451409696306 1451409705782 2902819431855/2 1451409724420 5805638933737/4 5805638969335/4 5805639007287/4 5805639043737/4 2902819541371/2 5805639120201/4 1451409790117 2902819597995/2 2902819617065/2 1451409817890 1451409827884 5805639348521/4 5805639388403/4 2902819713839/2 2902819734459/2 2902819748769/2 5805639529563/4 5805639559819/4 2902819796357/2 2902819811945/2 5805639657785/4 2902819845047/2 1451409931478 5805639756287/4 2902819895025/2 1451409955597 1451409964646 1451409973022 5805639928643/4 1451409990897 1451410000553 1451410008334 5805640066153/4 1451410024556 1451410033233 5805640165355/4 1451410050156 2902820117505/2 1451410067924 5805640303711/4 5805640338961/4 5805640372447/4 2902820204319/2 5805640443063/4 5805640480179/4 5805640515993/4 2902820277715/2 5805640587529/4 5805640623463/4 2902820328831/2 5805640694095/4 1451410182216 5805640765847/4 5805640802371/4 2902820420955/2 2902820438019/2 2902820456707/2 1451410237276 5805640987481/4 1451410256165 5805641064009/4 5805641101279/4 1451410285419 1451410293905 5805641212341/4 5805641247709/4 2902820642895/2 5805641321417/4 2902820680195/2 5805641398069/4 2902820719091/2 5805641473829/4 2902820756141/2 1451410387219 5805641588711/4 5805641625777/4 1451410416522 5805641705137/4 5805641747395/4 2902820889029/2 2902820905809/2 1451410460938 5805641878201/4 5805641910351/4 5805641945871/4 5805641981355/4 2902821009025/2 2902821025157/2 5805642085381/4 2902821059671/2 2902821078003/2 2902821095205/2 5805642228767/4 5805642264529/4 1451410576145 5805642336311/4 5805642371691/4 5805642404893/4 2902821220655/2 1451410618763 5805642511331/4 1451410636817 5805642586817/4 5805642620183/4 5805642657871/4 5805642693309/4 2902821366099/2 1451410692046 2902821403837/2 1451410711549 5805642887209/4 5805642920995/4 5805642958015/4 5805642993207/4 2902821515683/2 2902821533739/2 2902821553213/2 2902821571789/2 2902821591947/2 5805643219525/4 5805643257511/4 5805643294355/4 1451410833507 5805643372619/4 2902821706721/2 1451410862948 5805643493509/4 1451410882201 5805643566103/4 2902821801331/2 5805643642299/4 5805643679645/4 2902821860253/2 2902821879493/2 2902821900707/2 1451410959590 1451410969501 5805643915827/4 5805643957153/4 1451410998942 2902822018577/2 2902822038637/2 5805644121507/4 2902822074955/2 1451411045128 5805644210105/4 1451411060388 5805644271803/4 5805644305859/4 5805644337227/4 5805644372955/4 2902822201433/2 2902822217981/2 5805644467177/4 5805644502147/4 5805644534143/4 5805644569449/4 1451411150932 1451411160003 2902822334861/2 1451411175757 2902822366941/2 5805644768695/4 5805644799983/4 5805644834911/4 1451411217199 5805644905253/4 2902822468197/2 1451411242831 5805645004539/4 5805645040257/4 2902822537399/2 5805645111601/4 5805645146883/4 5805645185919/4 5805645216585/4 5805645250187/4 5805645281679/4 5805645317351/4 5805645350603/4 5805645386491/4 5805645420945/4 5805645458279/4 1451411372625 5805645525823/4 1451411389899 2902822798409/2 5805645632839/4 2902822835319/2 5805645706519/4 2902822872687/2 1451411444394 1451411453305 5805645847247/4 5805645884177/4 5805645919761/4 2902822978433/2 5805645992789/4 2902823015607/2 1451411516366 1451411525454 5805646137265/4 5805646175111/4 5805646210775/4 5805646249621/4 5805646286755/4 2902823163333/2 5805646356043/4 5805646389961/4 5805646421477/4 2902823228037/2 5805646488645/4 2902823261963/2 5805646557431/4 5805646594461/4 1451411656705 5805646661931/4 5805646695801/4 5805646732355/4 1451411691521 5805646802747/4 5805646838705/4 5805646877185/4 5805646908595/4 5805646943247/4 1451411744123 2902823506579/2 2902823523537/2 1451411770923 1451411779762 5805647157099/4 2902823595237/2 2902823613585/2 1451411815526 1451411824924 2902823667413/2 5805647373203/4 1451411852557 1451411862454 5805647481659/4 5805647516961/4 5805647551587/4 5805647587781/4 5805647623037/4 5805647660789/4 5805647697155/4 5805647735389/4 5805647769827/4 5805647806363/4 5805647842411/4 5805647880229/4 5805647916839/4 5805647955463/4 5805647993605/4 2902824016613/2 2902824033561/2 5805648103957/4 2902824069895/2 2902824088859/2 1451412053437 1451412063370 1451412072995 1451412082968 5805648367679/4 2902824202919/2 2902824221345/2 5805648482221/4 1451412129792 2902824279703/2 1451412149737 5805648640103/4 5805648669441/4 2902824350781/2 2902824366081/2 5805648765023/4 5805648796527/4 1451412207679 2902824431825/2 1451412224623 1451412232478 5805648963559/4 1451412249082 2902824515785/2 1451412266073 2902824550191/2 1451412283634 5805649172415/4 1451412300686 1451412308930 2902824633761/2 5805649302125/4 2902824667617/2 5805649370721/4 5805649405199/4 5805649442483/4 1451412368710 5805649510085/4 2902824771963/2 5805649580005/4 2902824806969/2 2902824826047/2 5805649687427/4 5805649726877/4 1451412439872 5805649794567/4 1451412457009 5805649864737/4 2902824949581/2 5805649936047/4 5805649972193/4 2902825005799/2 1451412511398 5805650082837/4 1451412529470 5805650156093/4 5805650192063/4 5805650231217/4 5805650268601/4 2902825154447/2 5805650342371/4 1451412594821 5805650414463/4 2902825226501/2 1451412622149 5805650527509/4 2902825282331/2 1451412651245 1451412660060 5805650678505/4 2902825357467/2 5805650754755/4 5805650791999/4 5805650832463/4 5805650871509/4 5805650913669/4 5805650944679/4 2902825489063/2 2902825505259/2 2902825522615/2 5805651078701/4 1451412778692 5805651149065/4 1451412796787 1451412804950 2902825627839/2 1451412822505 1451412832098 1451412840983 5805651402851/4 5805651440047/4 5805651479165/4 5805651511955/4 5805651547247/4 2902825790511/2 5805651618045/4 2902825826655/2 2902825845377/2 5805651726353/4 1451412941320 2902825900075/2 1451412959597 5805651875183/4 1451412978624 5805651950973/4 5805651991373/4 5805652030055/4 2902826035247/2 2902826052609/2 5805652143613/4 2902826090109/2 5805652219125/4 1451413064050 2902826148353/2 5805652335341/4 5805652376725/4 2902826206805/2 1451413113463 1451413122943 2902826266351/2 1451413142895 2902826306891/2 5805652654283/4 2902826348881/2 1451413183847 5805652776101/4 5805652814239/4 5805652855835/4 5805652894743/4 1451413234256 2902826488979/2 5805653021337/4 5805653059457/4 2902826550651/2 1451413285252 2902826591773/2 5805653223753/4 2902826634379/2 5805653310137/4 5805653354341/4 5805653384865/4 5805653419831/4 5805653452083/4 1451413372114 2902826760881/2 2902826779257/2 5805653593473/4 2902826815655/2 2902826832281/2 5805653700529/4 5805653736295/4 5805653774021/4 1451413452655 5805653848727/4 1451413471664 1451413481617 5805653958949/4 2902826997561/2 2902827014737/2 5805654067525/4 5805654102991/4 5805654140991/4 2902827089103/2 1451413554152 5805654251439/4 5805654288591/4 2902827162055/2 1451413590482 5805654397981/4 5805654436887/4 5805654474145/4 5805654513805/4 5805654546565/4 5805654581689/4 2902827308071/2 1451413663368 2902827344405/2 2902827363289/2 1451413690764 2902827400971/2 1451413709263 2902827436777/2 1451413727205 5805654947485/4 5805654984275/4 1451413755727 5805655060699/4 5805655100729/4 5805655135229/4 1451413792947 1451413801914 1451413811475 5805655282645/4 5805655321399/4 1451413839828 2902827699971/2 2902827718059/2 5805655474409/4 1451413877838 5805655550473/4 2902827794201/2 2902827814685/2 5805655667761/4 5805655709465/4 2902827871121/2 1451413944295 5805655811107/4 5805655847683/4 2902827940789/2 5805655918731/4 1451413988646 2902827996935/2 1451414007034 2902828032349/2 1451414025059 2902828069459/2 2902828087381/2 2902828107351/2 2902828125931/2 5805656292065/4 1451414081315 2902828181175/2 5805656397087/4 5805656435209/4 1451414117645 5805656509167/4 2902828273411/2 2902828293245/2 1451414155570 5805656660875/4 5805656698381/4 5805656738167/4 1451414193781 1451414204117 2902828427695/2 1451414224298 2902828466125/2 5805656969019/4 5805657005649/4 5805657043871/4 5805657080801/4 2902828559853/2 5805657157867/4 2902828599407/2 2902828617653/2 2902828636847/2 5805657311411/4 1451414337763 5805657389419/4 2902828714803/2 5805657469271/4 5805657511293/4 5805657547309/4 2902828792987/2 5805657623839/4 2902828831911/2 5805657701209/4 1451414435471 2902828890807/2 1451414455732 5805657859983/4 5805657900005/4 5805657940023/4 5805657981351/4 5805658020461/4 2902829031185/2 1451414525685 1451414536672 5805658177691/4 5805658211695/4 1451414561071 5805658278695/4 5805658312001/4 5805658347829/4 2902829191225/2 2902829209881/2 5805658452531/4 2902829243951/2 5805658522477/4 1451414639951 5805658594417/4 5805658633119/4 2902829334775/2 5805658709593/4 1451414685495 5805658777235/4 1451414702752 1451414711804 5805658881545/4 5805658918943/4 5805658954809/4 2902829497227/2 5805659028667/4 2902829533617/2 2902829551431/2 5805659143245/4 5805659179391/4 5805659219969/4 2902829629019/2 5805659299183/4 1451414833373 1451414842897 5805659406711/4 1451414861295 1451414870368 1451414880332 5805659558937/4 1451414900023 1451414909233 5805659676545/4 5805659713609/4 1451414938550 5805659791403/4 5805659832805/4 5805659871521/4 5805659914237/4 1451414987521 2902829994565/2 5805660026541/4 5805660067505/4 5805660105269/4 5805660146087/4 2902830092255/2 2902830113231/2 5805660263149/4 2902830151767/2 2902830171141/2 1451415095778 1451415105426 5805660463279/4 5805660503551/4 5805660546945/4 5805660578985/4 5805660613877/4 5805660647319/4 1451415171087 5805660719111/4 5805660756259/4 5805660792561/4 5805660831545/4 5805660865085/4 2902830450999/2 2902830468961/2 1451415244313 2902830506797/2 5805661053937/4 5805661092297/4 5805661132901/4 5805661167091/4 1451415300890 5805661239243/4 5805661277985/4 1451415328466 5805661353007/4 5805661391055/4 5805661431519/4 2902830733523/2 5805661506293/4 1451415386051 5805661584623/4 5805661622177/4 5805661663107/4 5805661701895/4 5805661743479/4 5805661779091/4 1451415454244 5805661853123/4 2902830946123/2 1451415482443 5805661970347/4 5805662008229/4 2902831024669/2 1451415521525 5805662125477/4 5805662163711/4 5805662205553/4 5805662245499/4 1451415572041 5805662328557/4 1451415593108 5805662409393/4 1451415612521 5805662487407/4 5805662528401/4 5805662566675/4 5805662609341/4 2902831324735/2 2902831346629/2 5805662731769/4 2902831386687/2 2902831406371/2 5805662854779/4 2902831447765/2 5805662939779/4 2902831490195/2 2902831512233/2 2902831524523/2 1451415769149 2902831551363/2 1451415782841 5805663158691/4 1451415796942 1451415804243 5805663249111/4 5805663275719/4 5805663305217/4 5805663334037/4 1451415841494 1451415848874 5805663428499/4 2902831730333/2 2902831747607/2 5805663521057/4 1451415887364 1451415894655 1451415902830 2902831820137/2 2902831835763/2 5805663702349/4 5805663735759/4 5805663764971/4 1451415949211 1451415956901 5805663861609/4 1451415973295 5805663927077/4 1451415989995 5805663995905/4 5805664022785/4 1451416013158 5805664082265/4 2902832057075/2 2902832071667/2 5805664176333/4 5805664208663/4 5805664244263/4 5805664273439/4 2902832152821/2 5805664337305/4 5805664371917/4 5805664404039/4 2902832219249/2 1451416118074 1451416127280 5805664538365/4 5805664571355/4 1451416150801 5805664637363/4 5805664667709/4 5805664702401/4 1451416184038 5805664771853/4 5805664802219/4 1451416209037 1451416217299 5805664904677/4 5805664936863/4 1451416243134 5805665008233/4 2902832522877/2 2902832535955/2 5805665101137/4 5805665129813/4 5805665160561/4 5805665188137/4 2902832609181/2 5805665248523/4 2902832640655/2 5805665309377/4 2902832670477/2 5805665371261/4 1451416351088 2902832717305/2 5805665467987/4 5805665500187/4 5805665535415/4 5805665562365/4 5805665591529/4 1451416405286 5805665653573/4 2902832841947/2 5805665716801/4 5805665748581/4 1451416445826 1451416453258 5805665845229/4 5805665876343/4 5805665911155/4 5805665943451/4 1451416494522 5805666012457/4 5805666048613/4 5805666077385/4 5805666109581/4 5805666139931/4 5805666174395/4 2902833103243/2 5805666241173/4 5805666274063/4 2902833155025/2 5805666341069/4 5805666375177/4 5805666408549/4 2902833222529/2 5805666479099/4 2902833257391/2 1451416637563 2902833294355/2 5805666618821/4 1451416663014 5805666685645/4 5805666721573/4 1451416688436 5805666789623/4 5805666824861/4 5805666862139/4 1451416723863 1451416732574 5805666964873/4 5805667002001/4 5805667037809/4 2902833537407/2 2902833555639/2 5805667149271/4 2902833587645/2 5805667203391/4 2902833615295/2 5805667260727/4 1451416822187 1451416829800 5805667348753/4 2902833691287/2 5805667410775/4 5805667440791/4 2902833735041/2 5805667503217/4 5805667533633/4 5805667566265/4 2902833799571/2 5805667635681/4 5805667663235/4 2902833846665/2 2902833861161/2 1451416938710 2902833892393/2 5805667818337/4 1451416962291 1451416971109 5805667915221/4 5805667948135/4 5805667979613/4 5805668014143/4 1451417011812 1451417020672 2902834058743/2 5805668155301/4 2902834092159/2 2902834108673/2 1451417062131 2902834141417/2 1451417078771 2902834175161/2 5805668384825/4 1451417105393 5805668453637/4 2902834244155/2 5805668521235/4 2902834278581/2 5805668591513/4 5805668627699/4 2902834331817/2 5805668703197/4 2902834367341/2 1451417192434 2902834401521/2 5805668839337/4 5805668873229/4 2902834454765/2 5805668945417/4 5805668983959/4 1451417254209 2902834526625/2 5805669087719/4 5805669124879/4 5805669159141/4 2902834598531/2 2902834617159/2 2902834637477/2 1451417325714 5805669333495/4 1451417340753 1451417348966 1451417356614 5805669459619/4 1451417372926 2902834763675/2 5805669556793/4 5805669589823/4 1451417405462 5805669656809/4 2902834844401/2 1451417431081 5805669758385/4 5805669795961/4 5805669825725/4 5805669859139/4 2902834945989/2 5805669927015/4 5805669958333/4 1451417498284 5805670027749/4 5805670064091/4 5805670096961/4 2902835066277/2 1451417541675 1451417551054 1451417559813 2902835138387/2 2902835156555/2 5805670352371/4 2902835191277/2 1451417604165 5805670450235/4 1451417621673 2902835260631/2 5805670558587/4 5805670594831/4 5805670633773/4 5805670667329/4 1451417675951 5805670740115/4 5805670778245/4 1451417703696 2902835426883/2 2902835445817/2 5805670932279/4 5805670965217/4 1451417750583 5805671038027/4 5805671076295/4 1451417778097 5805671150683/4 5805671188163/4 5805671228863/4 1451417816175 1451417825780 2902835670209/2 1451417845083 2902835708999/2 5805671457949/4 5805671496947/4 5805671539099/4 2902835783671/2 2902835799195/2 5805671628971/4 5805671661169/4 2902835845843/2 2902835862299/2 2902835878599/2 2902835896257/2 5805671823227/4 5805671857121/4 5805671889485/4 5805671925683/4 5805671958647/4 1451417998590 2902836014405/2 5805672066967/4 2902836048391/2 2902836064521/2 1451418040282 2902836098419/2 1451418057346 5805672264765/4 2902836149571/2 5805672336755/4 5805672368503/4 5805672403589/4 5805672437697/4 5805672474807/4 1451418127338 5805672546951/4 2902836291789/2 5805672621561/4 5805672650943/4 5805672683453/4 5805672715349/4 5805672749801/4 5805672782369/4 1451418204443 5805672852603/4 5805672889539/4 5805672921551/4 5805672956431/4 1451418247564 5805673027039/4 5805673061343/4 2902836549031/2 5805673134345/4 2902836586471/2 2902836601731/2 2902836619067/2 5805673272263/4 5805673308239/4 5805673342107/4 2902836689259/2 5805673413853/4 5805673451639/4 5805673485215/4 5805673521001/4 5805673556605/4 5805673594313/4 5805673630321/4 2902836834049/2 1451418426291 5805673745505/4 5805673774737/4 5805673806367/4 5805673837235/4 5805673870515/4 5805673901131/4 5805673934495/4 2902836983239/2 5805674002023/4 5805674033115/4 1451418516641 5805674099421/4 5805674134937/4 5805674168735/4 2902837102199/2 5805674238981/4 2902837138535/2 1451418576727 1451418584667 5805674370847/4 1451418601567 2902837219913/2 5805674475177/4 1451418627350 2902837273539/2 5805674579139/4 5805674612475/4 5805674644565/4 5805674679917/4 5805674713015/4 5805674748321/4 1451418695564 5805674819123/4 5805674848629/4 2902837440935/2 1451418728466 2902837473913/2 5805674980383/4 5805675015021/4 5805675048871/4 5805675085421/4 2902837558697/2 5805675152307/4 5805675186113/4 5805675221909/4 5805675256059/4 5805675292119/4 5805675327625/4 5805675365819/4 1451418849330 1451418857738 5805675464507/4 2902837749877/2 5805675533723/4 5805675570173/4 1451418901350 1451418910699 2902837838029/2 2902837855829/2 2902837873329/2 1451418945889 5805675819187/4 1451418964240 1451418973454 1451418983132 5805675959201/4 1451418997007 2902838008487/2 5805676048815/4 5805676078219/4 5805676109539/4 2902838070299/2 1451419043712 5805676204077/4 5805676235747/4 2902838133903/2 5805676300183/4 5805676330551/4 2902838181695/2 1451419098888 5805676430039/4 5805676457003/4 5805676487345/4 1451419128905 1451419136784 5805676577269/4 5805676610197/4 5805676641473/4 5805676675161/4 1451419176282 1451419184261 1451419192063 2902838400905/2 5805619012573/4 1451404767606 2902809563155/2 2902809593693/2 5805619235967/4 2902809645071/2 1451404835624 2902809699499/2 1451404863180 5805619510613/4 1451404891773 1451404906699 5805619679097/4 5805619735999/4 2902809895131/2 2902809924507/2 2902809952143/2 1451404991125 5805620022597/4 5805620084959/4 1451405033880 5805620191341/4 2902810122711/2 5805620304291/4 1451405089682 5805620417865/4 2902810237869/2 1451405134690 5805620592825/4 1451405162852 5805620708235/4 5805620768079/4 1451405206168 1451405221531 5805620945815/4 1451405252631 2902810528963/2 2902810554631/2 5805621157969/4 5805621211767/4 1451405315692 5805621318165/4 5805621370735/4 5805621427995/4 1451405369702 5805621532817/4 5805621585177/4 5805621642607/4 5805621696417/4 1451405438424 5805621809559/4 5805621870071/4 1451405479914 2902810986407/2 2902811012111/2 5805622080331/4 5805622133181/4 5805622189135/4 2902811122445/2 2902811151993/2 5805622356693/4 5805622412957/4 2902811233837/2 5805622526201/4 5805622582143/4 5805622642083/4 5805622700065/4 5805622762445/4 5805622814419/4 1451405717505 5805622923461/4 5805622980981/4 2902811518113/2 1451405773732 1451405788007 5805623214103/4 1451405817125 2902811663501/2 2902811691511/2 1451405860732 5805623500151/4 1451405890489 5805623621227/4 1451405921309 5805623739059/4 2902811898279/2 2902811926199/2 2902811955891/2 5805623968839/4 5805624029065/4 5805624087655/4 2902812075319/2 2902812103317/2 2902812133731/2 2902812162697/2 5805624388199/4 1451406111643 2902812254625/2 5805624570795/4 1451406159077 2902812339847/2 5805624727583/4 1451406193453 1451406206140 5805624871581/4 5805624923155/4 2902812486471/2 2902812513931/2 1451406268719 1451406281457 5805625175019/4 1451406307426 2902812639989/2 1451406333769 2902812693883/2 5805625445093/4 5805625491051/4 1451406385489 2902812795235/2 5805625645225/4 5805625694475/4 5805625748441/4 5805625800313/4 2902812928815/2 2902812953243/2 5805625959899/4 1451406502863 2902813034085/2 2902813060187/2 1451406544348 2902813116025/2 5805626291775/4 5805626339273/4 1451406597980 2902813221609/2 5805626498331/4 1451406637548 5805626605961/4 5805626659145/4 5805626717073/4 5805626767697/4 1451406705806 2902813438099/2 5805626932861/4 1451406746653 2902813522153/2 2902813549827/2 5805627159953/4 1451406802645 5805627265569/4 5805627318365/4 2902813687411/2 2902813714669/2 2902813743733/2 5805627543751/4 2902813801837/2 2902813828469/2 5805627713841/4 5805627768665/4 5805627827141/4 2902813941155/2 5805627942505/4 5805628000923/4 2902814031107/2 1451407026995 5805628158645/4 5805628206677/4 5805628259245/4 5805628308361/4 5805628362521/4 5805628414435/4 1451407117811 1451407130020 2902814286739/2 1451407156179 5805628680355/4 2902814366867/2 2902814395395/2 2902814422605/2 5805628904091/4 1451407238227 5805629005923/4 5805629056435/4 5805629111055/4 5805629162357/4 5805629218403/4 5805629272581/4 5805629330753/4 2902814691063/2 2902814718719/2 5805629490941/4 1451407387267 5805629603351/4 1451407415452 1451407429383 2902814888977/2 1451407456888 1451407470680 5805629935977/4 5805629992083/4 2902815022831/2 5805630103199/4 5805630159443/4 1451407554851 5805630272541/4 2902815164383/2 1451407596042 5805630442881/4 5805630499639/4 1451407640226 5805630619827/4 2902815340941/2 1451407683755 2902815395733/2 2902815423053/2 2902815452397/2 5805630961225/4 1451407755436 2902815540259/2 5805631142123/4 1451407799461 2902815628643/2 5805631315195/4 2902815687933/2 5805631433959/4 2902815748013/2 1451407889045 5805631620331/4 1451407916327 1451407928749 1451407940786 1451407954005 5805631865249/4 1451407979808 5805631970999/4 2902816013443/2 5805632075035/4 1451408032111 5805632179503/4 5805632235365/4 5805632287941/4 5805632345549/4 1451408100163 2902816230597/2 5805632508529/4 2902816281061/2 1451408153623 2902816334945/2 1451408180564 1451408194570 5805632832833/4 5805632891807/4 2902816471661/2 5805632999761/4 2902816527033/2 2902816556197/2 1451408291701 5805633226183/4 5805633284313/4 5805633345491/4 1451408349022 5805633452387/4 2902816752539/2 5805633563119/4 1451408404358 1451408418969 5805633732367/4 5805633794267/4 5805633847685/4 1451408476392 5805633961769/4 1451408505548 1451408519758 5805634140045/4 5805634199283/4 5805634262911/4 5805634316213/4 5805634374525/4 5805634429925/4 5805634490349/4 5805634546983/4 2902817304191/2 2902817334075/2 2902817365787/2 5805634787123/4 5805634847645/4 5805634905767/4 5805634968463/4 5805635027477/4 2902817545869/2 1451408788243 5805635219443/4 2902817634363/2 1451408830574 5805635374537/4 1451408857658 5805635483217/4 2902817769907/2 1451408898847 1451408914046 2902817854603/2 2902817882961/2 5805635820637/4 5805635879845/4 5805635936201/4 5805635996423/4 2902818027317/2 5805636117235/4 5805636170167/4 5805636226575/4 2902818140445/2 1451409085054 5805636396623/4 5805636456581/4 2902818257423/2 2902818288689/2 5805636632955/4 5805636692329/4 1451409187520 5805636812335/4 1451409217792 2902818467095/2 5805636994805/4 5805637059627/4 1451409278414 1451409293036 5805637228953/4 5805637289489/4 5805637347393/4 5805637410771/4 5805637470925/4 5805637535587/4 1451409398109 5805637654245/4 5805637713521/4 2902818887439/2 1451409458154 1451409473828 5805637954851/4 2902819008957/2 2902819036039/2 1451409532753 5805638186511/4 1451409561715 2902819152201/2 5805638366303/4 1451409606468 1451409622444 2902819273007/2 1451409651769 5805638665533/4 5805638728559/4 5805638788105/4 5805638852313/4 2902819457047/2 5805638979513/4 1451409756414 1451409769333 2902819563029/2 5805639179941/4 1451409807478 2902819642217/2 5805639336971/4 1451409848418 5805639442765/4 2902819748041/2 2902819774077/2 1451409901177 2902819828381/2 1451409928477 2902819884461/2 2902819914623/2 1451409969762 5805639933545/4 2902819992239/2 1451410010521 1451410023631 5805640151011/4 2902820102745/2 1451410066286 5805640316937/4 5805640372657/4 5805640426515/4 2902820242681/2 5805640539825/4 1451410149862 5805640657331/4 1451410180037 5805640770417/4 2902820412909/2 2902820439117/2 5805640935661/4 2902820495161/2 5805641049859/4 5805641105677/4 5805641166731/4 1451410305097 5805641278683/4 5805641333867/4 2902820696621/2 1451410362454 1451410377699 5805641569315/4 5805641632231/4 2902820842995/2 1451410435872 5805641798685/4 5805641857895/4 5805641913919/4 5805641975729/4 2902821017255/2 5805642097467/4 2902821076609/2 2902821106415/2 5805642269981/4 1451410582882 1451410597553 2902821226331/2 1451410628271 2902821288989/2 2902821313143/2 2902821339633/2 2902821365051/2 5805642785801/4 2902821418395/2 2902821446557/2 5805642948119/4 5805643007179/4 2902821529347/2 5805643114257/4 1451410791881 1451410806392 5805643279965/4 2902821669619/2 1451410849246 1451410864257 5805643507705/4 5805643562329/4 5805643614661/4 1451410918010 5805643726763/4 1451410946200 2902821920343/2 5805643901385/4 5805643955165/4 2902822006357/2 1451411017328 5805644129993/4 5805644186885/4 1451411061910 5805644306657/4 2902822185693/2 2902822211953/2 1451411120134 2902822267723/2 5805644593875/4 5805644649785/4 2902822354673/2 1451411191847 2902822414449/2 5805644884525/4 2902822471559/2 5805644999941/4 5805645060253/4 5805645118563/4 5805645181867/4 5805645242937/4 2902822653445/2 5805645362253/4 1451411355151 5805645478161/4 5805645538785/4 5805645597729/4 1451411415295 5805645721835/4 5805645786267/4 5805645844143/4 5805645906175/4 2902822982621/2 5805646028333/4 5805646087837/4 2902823075951/2 5805646213321/4 5805646280569/4 5805646327181/4 2902823189679/2 1451411607353 1451411620922 2902823267509/2 2902823295255/2 1451411660978 5805646701425/4 2902823376283/2 5805646807055/4 5805646859795/4 5805646916945/4 2902823485395/2 5805647029627/4 5805647085903/4 5805647146337/4 1451411799148 5805647250591/4 5805647303493/4 1451411840025 1451411853388 5805647470963/4 2902823763657/2 5805647587371/4 5805647640603/4 2902823848789/2 5805647752187/4 2902823905743/2 5805647867443/4 2902823963911/2 5805647986377/4 1451412012160 5805648100819/4 2902824079011/2 2902824106027/2 1451412067887 1451412081727 5805648387817/4 1451412111191 1451412126654 2902824280305/2 2902824310205/2 1451412169193 2902824368871/2 5805648794631/4 5805648856785/4 1451412229087 5805648980899/4 2902824517695/2 1451412273541 1451412287601 5805649211027/4 5805649268513/4 1451412332767 5805649391799/4 5805649456639/4 2902824756461/2 5805649573923/4 5805649632609/4 5805649695907/4 5805649755545/4 5805649819323/4 5805649881297/4 2902824974131/2 5805649999185/4 2902825027037/2 5805650106935/4 1451412541033 2902825109123/2 5805650276195/4 5805650332763/4 5805650393807/4 5805650447481/4 5805650504851/4 2902825279731/2 5805650619195/4 2902825337857/2 5805650736501/4 5805650795505/4 5805650858871/4 5805650912893/4 5805650970563/4 2902825512611/2 2902825542621/2 2902825571339/2 1451412800999 5805651262419/4 5805651325829/4 2902825691231/2 2902825721619/2 2902825751169/2 1451412891460 5805651625233/4 2902825844329/2 2902825875905/2 2902825909531/2 5805651875397/4 5805651935077/4 1451412998242 2902826027555/2 5805652114135/4 5805652178029/4 2902826119757/2 5805652305631/4 5805652364279/4 2902826213755/2 5805652488051/4 5805652553547/4 2902826308203/2 5805652683801/4 2902826374155/2 5805652818611/4 2902826439211/2 5805652941539/4 5805653003475/4 1451413267123 1451413282632 5805653198577/4 5805653262885/4 1451413332706 2902826695891/2 1451413364363 2902826760173/2 5805653587067/4 5805653651391/4 5805653720837/4 5805653786873/4 2902826929277/2 1451413475915 1451413488606 5805654001959/4 5805654055927/4 1451413526173 2902827079901/2 1451413552782 2902827133405/2 5805654313711/4 5805654365501/4 5805654416445/4 5805654471383/4 1451413630362 5805654577329/4 2902827315937/2 1451413672667 2902827368609/2 2902827394371/2 2902827418431/2 5805654890847/4 2902827470209/2 2902827497599/2 5805655048493/4 1451413776433 1451413788620 2902827604019/2 5805655261419/4 5805655319161/4 1451413843524 5805655432085/4 5805655488603/4 2902827774881/2 2902827798263/2 5805655650099/4 1451413925315 5805655757179/4 2902827904441/2 2902827932801/2 1451413979921 1451413994740 2902828015347/2 5805656086363/4 5805656140675/4 5805656199493/4 5805656254723/4 5805656313499/4 5805656371193/4 5805656433257/4 5805656483863/4 5805656539781/4 5805656593535/4 2902828325937/2 2902828353459/2 1451414191459 5805656822895/4 2902828442049/2 1451414234449 5805656996535/4 5805657053237/4 1451414278437 5805657171283/4 1451414308375 5805657293247/4 1451414339295 1451414350947 2902828726633/2 2902828751317/2 5805657557931/4 1451414402107 5805657662817/4 5805657716667/4 2902828887281/2 5805657824481/4 5805657878951/4 5805657933267/4 5805657990679/4 1451414511305 5805658103161/4 5805658159821/4 2902829110219/2 2902829134835/2 5805658323279/4 5805658375625/4 5805658432289/4 2902829242453/2 5805658542781/4 5805658599347/4 5805658659199/4 5805658711809/4 5805658769187/4 5805658825025/4 2902829442229/2 5805658940493/4 5805659000727/4 1451414764996 2902829562067/2 5805659173419/4 1451414807475 2902829641983/2 5805659342009/4 2902829698523/2 5805659456139/4 5805659513425/4 1451414894058 2902829814785/2 1451414922189 5805659745123/4 1451414951510 5805659864147/4 5805659926695/4 5805659986875/4 1451415013246 2902830053269/2 2902830082151/2 2902830109907/2 5805660280849/4 2902830169653/2 5805660400473/4 5805660460937/4 2902830262923/2 5805660581341/4 5805660641125/4 2902830349995/2 2902830381783/2 5805660823875/4 2902830443939/2 5805660950521/4 5805661017817/4 2902830531033/2 5805661111073/4 5805661158307/4 1451415302791 5805661259475/4 2902830656363/2 1451415340784 2902830709647/2 5805661467037/4 1451415380071 2902830785861/2 5805661627191/4 5805661679755/4 5805661736777/4 2902830895711/2 1451415462655 5805661897157/4 2902830974491/2 2902830999357/2 5805662053687/4 2902831052215/2 5805662160827/4 5805662215009/4 5805662274757/4 5805662325715/4 2902831190855/2 2902831217819/2 5805662493871/4 5805662549043/4 2902831303665/2 2902831332241/2 5805662726131/4 2902831387515/2 1451415707500 2902831441603/2 5805662940853/4 1451415748721 5805663053251/4 5805663110487/4 5805663171245/4 5805663224397/4 2902831641117/2 5805663337943/4 2902831698521/2 1451415863636 5805663516261/4 5805663576431/4 5805663641539/4 1451415923787 1451415937918 5805663807239/4 5805663867605/4 2902831962725/2 1451415996410 5805664044121/4 1451416027019 2902832081541/2 1451416055540 2902832140023/2 5805664341943/4 5805664401955/4 5805664464273/4 1451416131492 1451416148360 5805664639639/4 2902832344453/2 1451416184185 2902832395385/2 5805664841457/4 1451416224231 2902832475217/2 5805665009389/4 5805665057919/4 2902832557381/2 5805665167633/4 5805665225099/4 5805665278945/4 5805665337927/4 5805665394237/4 5805665455125/4 2902832752475/2 5805665558747/4 2902832805627/2 2902832833611/2 1451416430078 1451416444574 5805665833867/4 5805665893357/4 2902832973659/2 5805666004819/4 5805666059891/4 5805666119443/4 2902833088133/2 1451416559288 1451416573993 2902833179321/2 5805666411277/4 5805666468745/4 5805666523369/4 5805666582045/4 1451416659336 5805666698519/4 1451416689221 5805666819719/4 1451416718661 5805666933801/4 2902833495507/2 5805667053717/4 1451416778149 5805667175067/4 2902833618023/2 1451416825200 1451416838730 5805667413417/4 2902833734973/2 1451416882675 5805667589507/4 2902833826571/2 5805667714545/4 5805667779833/4 1451416959213 5805667899203/4 5805667960173/4 5805668023951/4 5805668085111/4 5805668153721/4 5805668217713/4 5805668287943/4 5805668334053/4 5805668386201/4 2902834217627/2 1451417122393 2902834269819/2 5805668595675/4 1451417162360 5805668708557/4 2902834379373/2 2902834407071/2 1451417217184 5805668927213/4 1451417245780 1451417260742 5805669100565/4 1451417290401 5805669213033/4 2902834634007/2 5805669321533/4 1451417344751 2902834716729/2 5805669490533/4 5805669546969/4 1451417401955 5805669661909/4 1451417429826 5805669775735/4 1451417459344 5805669897263/4 2902834979479/2 5805670019087/4 2902835041763/2 5805670135999/4 5805670192825/4 5805670248933/4 2902835154539/2 5805670365161/4 5805670424981/4 2902835241781/2 2902835273217/2 2902835301039/2 5805670661679/4 2902835360095/2 2902835391221/2 1451417710516 1451417726544 5805670968407/4 5805671035605/4 1451417772884 5805671151115/4 2902835604955/2 5805671272527/4 1451417832984 1451417848893 2902835728775/2 1451417881011 1451417895759 5805671646181/4 5805671707059/4 5805671772697/4 2902835917023/2 5805671900447/4 5805671965035/4 1451418008443 1451418021324 5805672141081/4 5805672196085/4 2902836127559/2 5805672310181/4 5805672369313/4 1451418106954 5805672490877/4 2902836273325/2 5805672605247/4 5805672661603/4 1451418180451 2902836389271/2 5805672839169/4 5805672898401/4 1451418240559 1451418253663 2902836535245/2 5805673126461/4 2902836592399/2 5805673240911/4 2902836650799/2 1451418340211 5805673422575/4 2902836738935/2 1451418384333 5805673597077/4 5805673659683/4 5805673718407/4 5805673782299/4 5805673845381/4 5805673911193/4 1451418491139 2902837011609/2 2902837039839/2 1451418535065 2902837099453/2 2902837130643/2 1451418580371 1451418596535 5805674444135/4 5805674506447/4 5805674565727/4 5805674626785/4 5805674685027/4 1451418686907 5805674808071/4 2902837436901/2 5805674927859/4 5805674985219/4 5805675040993/4 5805675102033/4 5805675159847/4 2902837610331/2 2902837639997/2 5805675343781/4 2902837699949/2 5805675459863/4 1451418879526 5805675581963/4 1451418910354 5805675704751/4 5805675766841/4 2902837917253/2 5805675879729/4 5805675929401/4 5805675976625/4 1451419007438 5805676079173/4 2902838066671/2 2902838093265/2 2902838122081/2 5805676292609/4 2902838171975/2 5805676394589/4 5805676449285/4 5805676501391/4 5805676556485/4 2902838305365/2 5805676668697/4 5805676715211/4 5805676766465/4 5805676816969/4 2902838434255/2 1451419229244 2902838484689/2 5805677020287/4 1451419268781 2902838561835/2 5805677175175/4 1451419306367 2902838639637/2 2902838665353/2 5805677385557/4 5805677439077/4 1451419374085 1451419385970 2902838797623/2 2902838822415/2 5805677698045/4 5805677749317/4 1451419450924 1451419464253 5805677914353/4 5805677964397/4 5805678018905/4 2902839036169/2 2902839064329/2 1451419545672 5805678240731/4 2902839148763/2 5805678357083/4 2902839204193/2 2902839231407/2 5805678515667/4 5805678571299/4 5805678624611/4 5805678682037/4 1451419684615 1451419699405 1451419712550 1451419726481 5805678960121/4 2902839509629/2 2902839537651/2 1451419783598 5805679192031/4 2902839627977/2 5805679302149/4 2902839675655/2 2902839699315/2 2902839725059/2 2902839749391/2 5805679551889/4 5805679603067/4 1451419914602 1451419926699 2902839879675/2 5805679810277/4 5805679864827/4 1451419978975 2902839985729/2 2902840012977/2 5805680084575/4 5805680133093/4 5805680185391/4 1451420059077 5805680290319/4 2902840170889/2 2902840198531/2 5805680451071/4 5805680508599/4 1451420139867 5805680614041/4 1451420166687 1451420180692 5805680776427/4 2902840417137/2 5805680890663/4 5805680950525/4 2902840499933/2 5805681053541/4 2902840552687/2 5805681161005/4 2902840607179/2 1451420317758 5805681326573/4 5805681385419/4 5805681437109/4 1451420373462 2902840774297/2 1451420401696 1451420415723 5805681722485/4 2902840890179/2 2902840921259/2 1451420473666 5805681950233/4 1451420501227 1451420515722 5805682118481/4 5805682177105/4 5805682234825/4 5805682297145/4 1451420587876 2902841205145/2 5805682467323/4 1451420632375 2902841293519/2 5805682649689/4 5805682710505/4 1451420693775 5805682819689/4 5805682867545/4 1451420728450 2902841482059/2 1451420752837 1451420765640 5805683111805/4 2902841582537/2 5805683211869/4 1451420815681 1451420827956 5805683365481/4 5805683416127/4 1451420867320 5805683521481/4 2902841788779/2 5805683624607/4 5805683674023/4 1451420930684 2902841887265/2 5805683824857/4 5805683878173/4 5805683929961/4 5805683985077/4 1451421008576 2902842043547/2 2902842069177/2 5805684193695/4 1451421061511 2902842150967/2 2902842178273/2 5805684414425/4 5805684462553/4 5805684514255/4 1451421140893 2902842308001/2 5805684666189/4 5805684721201/4 1451421193543 5805684830663/4 2902842440083/2 2902842466769/2 2902842492203/2 5805685039807/4 2902842546205/2 2902842574441/2 2902842601725/2 5805685261449/4 1451421327702 5805685364585/4 2902842707581/2 2902842734951/2 5805685522353/4 5805685578703/4 5805685632559/4 5805685690173/4 5805685741761/4 2902842898847/2 5805685851347/4 1451421477375 5805685964373/4 5805686021709/4 5805686078359/4 5805686137553/4 5805686183519/4 2902843116959/2 1451421570408 2902843166205/2 5805686381473/4 5805686433709/4 1451421620936 1451421634426 1451421646439 2902843318503/2 5805686687189/4 5805686741799/4 5805686793609/4 1451421712049 1451421725302 5805686957833/4 5805687005839/4 5805687056609/4 5805687106719/4 2902843579635/2 2902843604761/2 2902843631611/2 1451421828959 5805687371419/4 2902843710531/2 2902843737529/2 1451421881764 5805687583295/4 1451421908939 5805687692701/4 1451421937072 5805687807519/4 5805687856433/4 2902843954591/2 2902843979895/2 5805688013813/4 1451422016390 5805688122131/4 5805688175941/4 5805688232859/4 5805688283993/4 2902844169655/2 5805688392283/4 1451422112130 2902844251409/2 5805688560905/4 5805688615945/4 2902844337333/2 2902844362869/2 1451422195086 5805688832999/4 2902844444407/2 2902844471445/2 1451422250180 1451422264013 5805689115133/4 2902844584121/2 1451422306128 5805689279747/4 5805689338483/4 1451422348426 5805689454129/4 5805689511229/4 1451422393594 5805689618715/4 1451422416693 5805689713415/4 1451422440933 5805689811781/4 1451422465681 5805689911725/4 2902844982617/2 1451422503054 5805690062315/4 5805690110801/4 1451422540823 5805690213115/4 1451422566787 5805690318489/4 2902845186491/2 5805690418971/4 5805690468189/4 1451422628917 1451422641804 1451422653951 5805690668621/4 5805690719553/4 2902845387135/2 5805690822465/4 1451422718528 5805690925081/4 1451422744688 5805691030259/4 1451422771243 5805691137501/4 1451422798506 5805691241821/4 2902845646551/2 5805691342349/4 5805691395513/4 5805691445675/4 1451422875338 5805691554505/4 1451422902770 2902845830433/2 5805691715411/4 5805691767337/4 1451422955742 5805691876503/4 1451422983453 2902845994511/2 5805692046687/4 2902846048161/2 2902846074867/2 5805692201525/4 5805692256479/4 5805692309661/4 5805692365083/4 5805692419613/4 5805692477185/4 1451423132170 2902846292135/2 1451423159519 5805692695159/4 1451423187399 5805692807729/4 2902846431901/2 1451423231273 2902846485691/2 5805693021231/4 1451423267326 5805693120177/4 2902846584217/2 2902846610393/2 2902846635875/2 5805693326003/4 5805693374555/4 5805693427373/4 5805693478281/4 1451423383182 5805693584621/4 5805693640413/4 2902846846989/2 5805693750973/4 1451423449979 5805693851793/4 1451423475324 1451423488581 2902847002673/2 1451423515039 5805694113139/4 5805694169483/4 2902847109881/2 5805694273737/4 1451423581375 1451423595130 2902847216951/2 5805694490133/4 5805694544001/4 1451423650422 5805694650467/4 2902847351641/2 5805694753693/4 2902847403971/2 2902847430413/2 1451423729125 5805694970017/4 1451423756955 1451423769880 5805695135057/4 1451423796941 1451423811102 5805695299115/4 2902847678621/2 2902847706837/2 1451423868852 5805695527805/4 5805695583369/4 1451423909268 1451423923571 5805695748849/4 1451423952109 2902847932663/2 5805695925619/4 1451423994912 5805696038099/4 1451424023164 2902848076191/2 5805696210425/4 2902848135101/2 5805696328921/4 2902848195855/2 1451424109270 5805696486387/4 2902848266893/2 5805696584865/4 1451424158415 5805696686399/4 2902848368453/2 5805696791589/4 5805696840193/4 5805696892267/4 5805696942375/4 2902848498555/2 5805697049371/4 5805697104451/4 2902848578971/2 2902848607351/2 5805697263705/4 5805697315263/4 5805697366065/4 2902848709983/2 5805697471423/4 5805697526603/4 5805697580375/4 1451424409347 1451424422052 5805697742905/4 2902848897989/2 5805697853261/4 5805697907865/4 1451424491519 2902849010775/2 2902849040765/2 5805698130005/4 5805698182279/4 5805698233265/4 5805698286763/4 5805698338677/4 2902849197307/2 5805698448845/4 5805698506299/4 5805698556611/4 5805698611507/4 5805698664003/4 5805698720793/4 5805698774281/4 5805698831615/4 2902849443651/2 5805698946135/4 5805698996355/4 1451424762660 1451424775771 5805699159547/4 5805699213747/4 2902849635771/2 2902849663937/2 5805699388809/4 5805699441843/4 5805699498407/4 2902849777017/2 1451424903350 5805699669373/4 5805699729329/4 2902849893505/2 1451424961824 1451424973715 2902849973239/2 5805699996619/4 2902850024665/2 5805700100407/4 5805700154239/4 1451425051683 5805700262815/4 5805700313109/4 1451425091714 2902850209609/2 1451425118840 5805700528945/4 5805700585703/4 5805700641209/4 2902850350473/2 2902850375473/2 5805700803945/4 1451425213928 5805700910561/4 2902850481577/2 1451425254747 5805701073789/4 2902850566681/2 5805701185933/4 5805701242209/4 5805701296065/4 2902850676763/2 1451425351881 5805701467247/4 5805701513081/4 1451425387478 5805701580089/4 5805701612687/4 2902850821889/2 1451425419459 5805701709781/4 5805701743793/4 5805701776997/4 5805701812269/4 5805701843539/4 5805701876737/4 1451425477288 5805701943723/4 1451425494204 1451425503109 2902851023249/2 5805702083313/4 5805702114659/4 1451425537090 5805702180577/4 5805702214865/4 2902851123893/2 1451425571099 5805702318091/4 5805702354581/4 1451425596733 5805702421785/4 5805702455435/4 5805702491709/4 5805702525699/4 2902851281511/2 2902851299053/2 5805702635765/4 5805702663681/4 2902851346833/2 1451425680613 5805702753385/4 2902851391431/2 2902851407473/2 2902851422575/2 2902851438959/2 5805702907121/4 2902851469125/2 5805702968599/4 5805703001065/4 5805703031723/4 1451425766160 5805703096487/4 2902851565227/2 5805703159601/4 5805703190313/4 1451425805143 2902851626377/2 2902851641657/2 5805703316057/4 5805703348325/4 5805703382605/4 5805703412739/4 5805703444803/4 5805703476433/4 1451425877542 1451425885652 2902851788265/2 5805703609949/4 2902851822719/2 2902851837643/2 2902851853635/2 5805703737839/4 5805703770749/4 5805703802043/4 1451425959000 2902851934493/2 1451425976203 5805703935643/4 5805703968973/4 5805704001087/4 5805704035581/4 2902852034219/2 1451426025979 5805704137805/4 5805704174351/4 2902852102393/2 2902852118759/2 5805704269317/4 2902852151733/2 2902852168241/2 2902852185481/2 2902852202269/2 5805704441399/4 5805704473359/4 1451426126792 5805704540323/4 5805704575319/4 5805704609363/4 2902852322341/2 5805704679599/4 5805704717015/4 5805704745873/4 1451426194180 5805704806749/4 5805704838565/4 1451426217238 2902852450939/2 5805704933551/4 1451426241828 5805704997363/4 1451426257439 1451426265413 5805705095053/4 1451426281732 5805705161033/4 2902852597073/2 5805705229243/4 5805705259771/4 2902852646041/2 1451426330809 1451426339047 2902852694061/2 2902852710877/2 5805705454507/4 1451426372338 5805705521009/4 2902852777111/2 5805705586781/4 2902852811161/2 2902852827649/2 1451426422628 5805705724161/4 5805705760999/4 2902852896039/2 5805705824883/4 5805705856799/4 2902852945257/2 2902852961719/2 5805705958333/4 5805705991531/4 1451426507061 1451426515184 5805706095091/4 5805706127917/4 5805706164003/4 2902853099029/2 5805706234049/4 2902853134761/2 5805706306791/4 2902853169499/2 2902853186651/2 5805706406493/4 5805706441189/4 5805706475461/4 5805706512581/4 1451426637090 2902853292943/2 2902853309705/2 5805706655647/4 5805706690625/4 1451426681888 2902853381991/2 2902853400803/2 5805706838233/4 2902853438553/2))
(num-gc* count (375/4 451/4 107 225/2 98 221/2 469/4 433/4 453/4 455/4 457/4 237/2 227/2 109 221/2 461/4 97 441/4 227/2 443/4 111 217/2 451/4 108 451/4 445/4 118 449/4 231/2 433/4 115 219/2 463/4 477/4 231/2 219/2 227/2 122 449/4 453/4 233/2 115 459/4 473/4 467/4 475/4 237/2 119 117 477/4 116 223/2 227/2 243/2 509/4 119 107 453/4 223/2 483/4 465/4 233/2 119 119 401/4 115 449/4 233/2 110 223/2 229/2 431/4 417/4 211/2 431/4 441/4 459/4 111 447/4 110 219/2 483/4 445/4 463/4 453/4 233/2 459/4 459/4 445/4 445/4 229/2 237/2 457/4 461/4 445/4 463/4 473/4 235/2 227/2 231/2 237/2 485/4 113 121 223/2 459/4 465/4 233/2 235/2 115 487/4 121 233/2 467/4 439/4 443/4 465/4 241/2 487/4 481/4 233/2 463/4 461/4 467/4 459/4 455/4 459/4 439/4 114 225/2 116 447/4 459/4 110 441/4 465/4 109 221/2 481/4 465/4 113 465/4 223/2 231/2 453/4 111 465/4 467/4 112 449/4 467/4 221/2 229/2 491/4 223/2 433/4 111 485/4 469/4 233/2 431/4 437/4 483/4 457/4 465/4 123 118 117 121 443/4 483/4 471/4 477/4 115 479/4 117 469/4 453/4 473/4 469/4 475/4 481/4 241/2 119 120 473/4 121 120 245/2 469/4 455/4 475/4 113 445/4 475/4 229/2 119 237/2 116 455/4 229/2 221/2 465/4 463/4 217/2 235/2 231/2 231/2 219/2 229/2 112 113 112 451/4 223/2 471/4 225/2 433/4 457/4 451/4 115 471/4 118 453/4 485/4 493/4 123 117 475/4 113 235/2 235/2 251/2 465/4 455/4 491/4 483/4 487/4 113 225/2 235/2 221/2 239/2 463/4 233/2 491/4 235/2 487/4 471/4 229/2 239/2 469/4 451/4 501/4 465/4 473/4 459/4 116 233/2 221/2 231/2 463/4 113 112 441/4 245/2 251/2 229/2 453/4 117 119 473/4 457/4 257/2 111 247/2 459/4 467/4 469/4 243/2 471/4 483/4 459/4 509/4 233/2 523/4 483/4 501/4 257/2 223/2 513/4 445/4 495/4 257/2 253/2 129 563/4 455/4 497/4 122 543/4 481/4 503/4 543/4 541/4 127 547/4 511/4 523/4 283/2 505/4 138 483/4 529/4 263/2 263/2 513/4 132 261/2 527/4 119 289/2 515/4 249/2 267/2 559/4 257/2 275/2 243/2 129 491/4 277/2 130 515/4 523/4 129 275/2 525/4 487/4 581/4 515/4 128 271/2 551/4 539/4 271/2 533/4 557/4 533/4 541/4 135 533/4 569/4 563/4 147 287/2 565/4 138 567/4 309/2 547/4 295/2 140 571/4 585/4 565/4 291/2 553/4 141 577/4 144 561/4 555/4 581/4 281/2 563/4 140 289/2 291/2 147 137 120 233/2 116 110 223/2 465/4 117 467/4 117 118 453/4 477/4 117 219/2 213/2 119 227/2 465/4 225/2 471/4 467/4 443/4 115 451/4 457/4 113 469/4 423/4 439/4 241/2 451/4 459/4 459/4 455/4 475/4 471/4 119 120 457/4 475/4 493/4 255/2 481/4 461/4 487/4 114 113 475/4 235/2 495/4 245/2 243/2 119 120 459/4 247/2 481/4 505/4 483/4 455/4 485/4 119 479/4 455/4 118 235/2 457/4 457/4 114 233/2 425/4 467/4 231/2 118 467/4 115 225/2 120 443/4 455/4 457/4 465/4 439/4 447/4 113 227/2 233/2 451/4 477/4 225/2 479/4 437/4 459/4 110 467/4 471/4 113 229/2 114 475/4 115 469/4 233/2 491/4 237/2 227/2 239/2 479/4 459/4 481/4 235/2 491/4 493/4 122 120 123 471/4 117 481/4 237/2 485/4 115 233/2 120 459/4 483/4 491/4 469/4 447/4 247/2 463/4 471/4 223/2 465/4 471/4 459/4 485/4 111 112 113 459/4 120 457/4 111 237/2 449/4 473/4 112 231/2 443/4 113 110 115 229/2 439/4 219/2 119 451/4 111 229/2 473/4 229/2 231/2 117 245/2 115 117 117 233/2 481/4 118 463/4 115 487/4 127 465/4 253/2 116 465/4 231/2 481/4 116 120 235/2 475/4 114 485/4 473/4 239/2 117 239/2 469/4 235/2 483/4 239/2 457/4 449/4 435/4 243/2 457/4 114 227/2 451/4 233/2 115 225/2 115 116 231/2 459/4 455/4 223/2 113 439/4 465/4 116 115 459/4 455/4 447/4 229/2 457/4 225/2 441/4 441/4 223/2 115 227/2 237/2 110 116 477/4 125 471/4 499/4 235/2 461/4 461/4 471/4 467/4 115 465/4 237/2 469/4 477/4 469/4 119 243/2 243/2 497/4 451/4 483/4 451/4 122 119 469/4 261/2 277/2 565/4 235/2 112 111 517/4 115 233/2 513/4 245/2 493/4 113 489/4 121 130 455/4 251/2 118 473/4 263/2 479/4 531/4 469/4 112 551/4 523/4 134 473/4 245/2 279/2 259/2 515/4 261/2 549/4 499/4 281/2 539/4 535/4 273/2 295/2 127 577/4 137 577/4 275/2 139 577/4 126 529/4 275/2 275/2 142 141 143 577/4 287/2 591/4 557/4 465/4 217/2 451/4 119 114 241/2 465/4 123 115 453/4 108 109 223/2 463/4 107 471/4 116 457/4 437/4 427/4 223/2 463/4 114 485/4 225/2 453/4 229/2 433/4 475/4 463/4 451/4 225/2 217/2 119 453/4 239/2 461/4 116 231/2 477/4 121 499/4 491/4 455/4 125 245/2 469/4 471/4 461/4 471/4 123 227/2 487/4 519/4 233/2 243/2 243/2 135 481/4 461/4 457/4 487/4 116 126 113 471/4 443/4 461/4 111 126 481/4 489/4 463/4 425/4 453/4 114 431/4 233/2 225/2 461/4 439/4 457/4 455/4 239/2 433/4 121 475/4 445/4 437/4 465/4 111 497/4 461/4 113 213/2 106 109 114 223/2 227/2 437/4 123 441/4 235/2 479/4 118 445/4 131 114 114 259/2 229/2 447/4 461/4 465/4 447/4 463/4 451/4 229/2 227/2 457/4 465/4 445/4 449/4 243/2 471/4 465/4 112 443/4 229/2 227/2 233/2 449/4 119 225/2 111 449/4 219/2 451/4 439/4 439/4 439/4 449/4 459/4 459/4 227/2 457/4 449/4 111 213/2 223/2 108 106 471/4 463/4 113 107 431/4 455/4 115 217/2 233/2 443/4 116 227/2 108 427/4 223/2 115 469/4 471/4 118 219/2 119 117 225/2 463/4 445/4 109 115 457/4 237/2 112 115 457/4 475/4 451/4 233/2 120 112 118 108 433/4 112 116 471/4 459/4 483/4 465/4 243/2 119 431/4 227/2 239/2 225/2 465/4 223/2 445/4 469/4 471/4 111 453/4 439/4 119 459/4 487/4 463/4 112 461/4 475/4 109 121 469/4 115 237/2 221/2 463/4 439/4 215/2 231/2 471/4 447/4 481/4 237/2 229/2 223/2 473/4 469/4 239/2 477/4 471/4 235/2 221/2 465/4 489/4 122 124 122 491/4 443/4 118 239/2 437/4 511/4 123 233/2 223/2 113 116 235/2 461/4 459/4 471/4 471/4 229/2 457/4 110 121 111 467/4 225/2 433/4 114 449/4 475/4 108 491/4 449/4 437/4 109 449/4 469/4 477/4 433/4 487/4 239/2 106 473/4 493/4 453/4 463/4 131 457/4 439/4 119 120 481/4 475/4 481/4 523/4 263/2 495/4 122 277/2 273/2 122 565/4 575/4 551/4 525/4 539/4 142 271/2 553/4 565/4 146 583/4 283/2 289/2 263/2 591/4 589/4 553/4 142 575/4 561/4 277/2 297/2 543/4 135 549/4 543/4 559/4 143 591/4 265/2 545/4 545/4 138 275/2 110 225/2 116 521/4 455/4 439/4 443/4 469/4 113 461/4 113 445/4 116 563/4 455/4 117 437/4 465/4 443/4 215/2 539/4 235/2 118 227/2 525/4 507/4 475/4 539/4 243/2 235/2 479/4 115 116 551/4 114 237/2 535/4 433/4 543/4 239/2 229/2 225/2 405/4 437/4 447/4 107 243/2 106 447/4 111 211/2 215/2 413/4 107 417/4 401/4 108 483/4 104 437/4 113 421/4 447/4 217/2 443/4 441/4 105 227/2 105 203/2 419/4 103 431/4 473/4 445/4 102 451/4 100 104 419/4 205/2 403/4 433/4 397/4 215/2 219/2 102 203/2 199/2 403/4 395/4 413/4 383/4 387/4 99 201/2 395/4 387/4 393/4 191/2 99 389/4 389/4 102 98 403/4 99 395/4 387/4 203/2 104 193/2 407/4 104 203/2 209/2 393/4 183/2 387/4 98 201/2 195/2 395/4 381/4 100 383/4 101 98 371/4 98 195/2 191/2 94 379/4 191/2 395/4 92 383/4 375/4 193/2 195/2 187/2 381/4 401/4 389/4 94 187/2 393/4 199/2 101 399/4 96 195/2 409/4 201/2 407/4 101 401/4 407/4 401/4 97 401/4 201/2 413/4 413/4 381/4 97 371/4 98 401/4 193/2 201/2 193/2 101 375/4 195/2 189/2 99 391/4 199/2 385/4 377/4 365/4 95 397/4 407/4 393/4 405/4 100 387/4 397/4 95 375/4 365/4 379/4 383/4 363/4 193/2 189/2 391/4 97 407/4 102 199/2 393/4 401/4 183/2 98 403/4 96 193/2 407/4 96 393/4 395/4 399/4 387/4 99 403/4 100 403/4 397/4 391/4 211/2 383/4 205/2 100 395/4 381/4 203/2 104 387/4 100 411/4 102 403/4 409/4 99 100 203/2 95 103 411/4 391/4 185/2 87 189/2 383/4 385/4 189/2 391/4 375/4 403/4 383/4 383/4 92 391/4 391/4 385/4 385/4 385/4 189/2 383/4 94 387/4 93 95 395/4 373/4 405/4 397/4 187/2 100 395/4 197/2 199/2 199/2 399/4 97 397/4 405/4 393/4 102 199/2 395/4 205/2 405/4 102 395/4 401/4 99 401/4 381/4 203/2 203/2 413/4 419/4 405/4 397/4 371/4 199/2 409/4 409/4 98 405/4 197/2 411/4 99 197/2 95 391/4 359/4 197/2 401/4 383/4 387/4 369/4 189/2 409/4 199/2 193/2 199/2 199/2 393/4 375/4 385/4 387/4 199/2 99 397/4 99 393/4 375/4 373/4 193/2 95 391/4 99 391/4 395/4 96 102 397/4 207/2 397/4 415/4 201/2 395/4 401/4 199/2 99 98 103 387/4 101 100 195/2 201/2 199/2 395/4 102 419/4 100 381/4 189/2 391/4 199/2 391/4 199/2 207/2 189/2 393/4 375/4 93 391/4 389/4 403/4 98 391/4 101 379/4 411/4 387/4 393/4 395/4 96 97 387/4 187/2 397/4 399/4 185/2 191/2 197/2 205/2 417/4 103 407/4 393/4 399/4 381/4 201/2 389/4 399/4 401/4 102 397/4 401/4 207/2 409/4 413/4 395/4 99 397/4 197/2 395/4 201/2 413/4 419/4 197/2 405/4 387/4 193/2 391/4 393/4 409/4 417/4 383/4 201/2 104 197/2 393/4 96 423/4 395/4 201/2 391/4 381/4 102 393/4 391/4 399/4 391/4 413/4 96 395/4 415/4 201/2 421/4 93 98 191/2 401/4 387/4 393/4 385/4 391/4 391/4 199/2 205/2 367/4 98 379/4 389/4 383/4 98 397/4 96 101 393/4 401/4 101 397/4 403/4 191/2 104 403/4 197/2 205/2 399/4 97 100 379/4 397/4 401/4 201/2 387/4 389/4 411/4 201/2 101 98 211/2 201/2 383/4 102 100 391/4 391/4 97 99 385/4 395/4 379/4 195/2 381/4 94 97 193/2 97 373/4 377/4 375/4 373/4 93 397/4 191/2 373/4 401/4 405/4 199/2 177/2 193/2 371/4 197/2 100 96 399/4 387/4 191/2 377/4 359/4 393/4 97 407/4 98 397/4 365/4 100 205/2 381/4 391/4 99 385/4 383/4 383/4 104 393/4 391/4 97 103 201/2 102 100 387/4 195/2 98 407/4 96 101 195/2 201/2 401/4 195/2 391/4 385/4 391/4 385/4 191/2 393/4 379/4 191/2 401/4 401/4 395/4 395/4 193/2 385/4 389/4 99 373/4 197/2 389/4 383/4 95 405/4 389/4 401/4 369/4 403/4 381/4 391/4 381/4 187/2 393/4 405/4 387/4 205/2 427/4 385/4 399/4 102 100 84 161/2 371/4 319/4 321/4 83 341/4 361/4 161/2 169/2 185/2 329/4 84 313/4 181/2 345/4 167/2 84 85 347/4 87 179/2 75 88 345/4 171/2 85 171/2 335/4 337/4 313/4 175/2 163/2 339/4 317/4 347/4 343/4 89 86 161/2 78 165/2 163/2 80 323/4 339/4 331/4 307/4 337/4 171/2 84 85 80 341/4 337/4 329/4 321/4 87 345/4 86 321/4 83 83 171/2 82 173/2 359/4 355/4 341/4 341/4 171/2 347/4 169/2 341/4 88 329/4 165/2 347/4 337/4 79 313/4 351/4 84 343/4 343/4 317/4 173/2 79 321/4 81 341/4 319/4 343/4 311/4 347/4 313/4 79 351/4 84 333/4 84 337/4 165/2 159/2 79 165/2 323/4 171/2 77 76 159/2 80 325/4 323/4 159/2 83 329/4 167/2 325/4 84 329/4 171/2 331/4 185/2 89 159/2 171/2 167/2 327/4 341/4 87 325/4 161/2 359/4 169/2 325/4 171/2 345/4 83 86 163/2 347/4 341/4 83 321/4 167/2 339/4 85 345/4 159/2 82 161/2 329/4 153/2 323/4 327/4 145/2 331/4 323/4 325/4 331/4 87 84 80 327/4 319/4 165/2 167/2 167/2 153/2 311/4 82 319/4 347/4 81 325/4 159/2 78 80 337/4 84 331/4 85 317/4 163/2 82 165/2 343/4 82 165/2 349/4 82 321/4 171/2 335/4 323/4 329/4 331/4 82 159/2 323/4 365/4 323/4 161/2 329/4 351/4 321/4 165/2 82 161/2 325/4 341/4 331/4 82 337/4 321/4 169/2 331/4 325/4 345/4 325/4 319/4 81 157/2 325/4 82 327/4 333/4 327/4 84 79 151/2 71 325/4 337/4 325/4 159/2 81 343/4 167/2 169/2 331/4 163/2 315/4 319/4 327/4 331/4 77 82 153/2 365/4 83 161/2 84 167/2 335/4 311/4 331/4 337/4 331/4 339/4 319/4 157/2 337/4 305/4 339/4 80 329/4 78 83 345/4 319/4 321/4 161/2 331/4 325/4 341/4 86 317/4 82 321/4 85 76 321/4 329/4 171/2 329/4 161/2 319/4 83 319/4 82 337/4 313/4 83 329/4 341/4 73 80 335/4 311/4 335/4 315/4 78 161/2 319/4 339/4 355/4 311/4 321/4 311/4 339/4 147/2 313/4 337/4 167/2 79 329/4 345/4 83 83 165/2 83 84 351/4 333/4 86 161/2 313/4 169/2 80 339/4 167/2 87 387/4 195/2 339/4 82 157/2 331/4 331/4 321/4 303/4 83 353/4 165/2 311/4 79 161/2 163/2 315/4 161/2 313/4 317/4 88 317/4 325/4 329/4 81 331/4 175/2 325/4 93 361/4 337/4 165/2 169/2 153/2 315/4 161/2 183/2 365/4 339/4 88 349/4 319/4 171/2 325/4 347/4 84 331/4 163/2 339/4 345/4 87 333/4 341/4 169/2 329/4 87 88 373/4 171/2 311/4 329/4 88 183/2 175/2 88 177/2 339/4 175/2 355/4 379/4 383/4 89 337/4 179/2 90 319/4 181/2 86 319/4 343/4 337/4 90 333/4 179/2 89 375/4 347/4 355/4 367/4 329/4 377/4 309/4 339/4 193/2 333/4 175/2 181/2 92 339/4 351/4 90 357/4 333/4 371/4 367/4 181/2 351/4 345/4 90 343/4 94 371/4 387/4 371/4 93 383/4 355/4 195/2 349/4 161/2 331/4 367/4 185/2 357/4 381/4 361/4 97 381/4 197/2 383/4 357/4 397/4 88 363/4 173/2 85 331/4 195/2 329/4 95 363/4 333/4 88 371/4 359/4 96 185/2 197/2 187/2 365/4 381/4 355/4 379/4 95 199/2 199/2 84 177/2 373/4 373/4 329/4 351/4 101 165/2 187/2 371/4 195/2 93 369/4 93 367/4 191/2 359/4 94 401/4 403/4 201/2 98 187/2 183/2 185/2 393/4 371/4 95 379/4 367/4 399/4 379/4 389/4 193/2 191/2 102 191/2 100 377/4 191/2 181/2 361/4 181/2 189/2 191/2 193/2 335/4 91 369/4 403/4 93 387/4 167/2 165/2 299/4 321/4 81 159/2 77 79 325/4 303/4 82 309/4 86 157/2 167/2 167/2 347/4 159/2 161/2 327/4 329/4 313/4 153/2 307/4 311/4 313/4 81 165/2 315/4 313/4 327/4 341/4 331/4 323/4 309/4 333/4 317/4 335/4 329/4 319/4 83 291/4 171/2 80 95 339/4 77 349/4 345/4 81 315/4 165/2 90 353/4 84 169/2 87 345/4 87 167/2 323/4 81 323/4 329/4 327/4 167/2 87 157/2 83 287/4 165/2 161/2 313/4 74 307/4 76 80 339/4 169/2 309/4 77 157/2 307/4 151/2 313/4 163/2 80 317/4 325/4 347/4 159/2 311/4 80 319/4 79 333/4 86 87 337/4 86 163/2 343/4 85 157/2 319/4 81 159/2 79 161/2 317/4 80 329/4 347/4 321/4 327/4 82 335/4 179/2 78 315/4 339/4 333/4 341/4 157/2 159/2 307/4 315/4 85 325/4 169/2 165/2 163/2 86 78 169/2 333/4 341/4 78 167/2 311/4 327/4 169/2 315/4 167/2 315/4 165/2 149/2 337/4 325/4 82 313/4 331/4 323/4 317/4 319/4 82 79 333/4 331/4 157/2 307/4 329/4 321/4 321/4 307/4 337/4 343/4 73 169/2 323/4 86 82 171/2 321/4 81 333/4 167/2 327/4 78 89 169/2 87 341/4 337/4 317/4 83 155/2 317/4 81 335/4 337/4 327/4 321/4 151/2 325/4 171/2 321/4 81 75 155/2 313/4 79 82 161/2 327/4 167/2 337/4 86 303/4 317/4 169/2 333/4 79 83 77 163/2 81 361/4 82 171/2 333/4 343/4 357/4 347/4 349/4 87 84 167/2 323/4 335/4 359/4 335/4 353/4 341/4 159/2 341/4 85 82 169/2 343/4 171/2 165/2 87 171/2 309/4 165/2 341/4 343/4 343/4 315/4 307/4 80 307/4 75 331/4 335/4 81 339/4 173/2 83 159/2 157/2 169/2 84 351/4 83 165/2 315/4 81 329/4 169/2 85 347/4 79 83 167/2 169/2 159/2 76 355/4 337/4 351/4 169/2 327/4 355/4 85 325/4 155/2 333/4 83 331/4 341/4 341/4 323/4 343/4 167/2 337/4 333/4 335/4 309/4 163/2 347/4 337/4 321/4 81 321/4 169/2 78 169/2 315/4 343/4 327/4 157/2 82 335/4 329/4 161/2 83 339/4 84 155/2 349/4 78 76 80 323/4 337/4 159/2 319/4 309/4 81 173/2 337/4 81 331/4 161/2 329/4 86 319/4 329/4 159/2 337/4 163/2 155/2 343/4 79 305/4 339/4 83 313/4 157/2 165/2 327/4 335/4 83 327/4 323/4 333/4 167/2 83 323/4 335/4 169/2 333/4 79 327/4 323/4 329/4 87 353/4 349/4 82 83 353/4 88 363/4 86 369/4 185/2 185/2 82 317/4 161/2 293/4 167/2 82 325/4 331/4 321/4 331/4 81 315/4 337/4 323/4 321/4 73 78 81 317/4 80 82 327/4 161/2 331/4 81 315/4 315/4 319/4 331/4 297/4 159/2 317/4 365/4 335/4 341/4 169/2 161/2 325/4 335/4 173/2 329/4 84 167/2 307/4 349/4 353/4 173/2 323/4 325/4 87 91 84 87 91 88 99 377/4 90 351/4 371/4 185/2 183/2 100 333/4 365/4 93 94 341/4 339/4 379/4 349/4 377/4 189/2 379/4 183/2 367/4 92 197/2 371/4 161/2 88 179/2 367/4 93 90 189/2 94 86 92 185/2 185/2 365/4 179/2 96 191/2 185/2 369/4 373/4 191/2 401/4 387/4 94 383/4 405/4 393/4 193/2 385/4 403/4 193/2 209/2 389/4 395/4 193/2 205/2 94 391/4 189/2 391/4 101 165/2 333/4 159/2 337/4 331/4 321/4 83 335/4 155/2 323/4 80 83 317/4 79 161/2 157/2 159/2 309/4 161/2 317/4 76 319/4 85 301/4 331/4 333/4 81 82 335/4 185/2 165/2 171/2 327/4 151/2 321/4 84 165/2 157/2 337/4 82 327/4 343/4 82 87 161/2 337/4 159/2 167/2 169/2 333/4 325/4 345/4 82 163/2 85 171/2 159/2 337/4 327/4 323/4 327/4 337/4 357/4 347/4 317/4 361/4 83 173/2 353/4 325/4 339/4 339/4 161/2 80 301/4 313/4 339/4 345/4 163/2 169/2 369/4 319/4 313/4 79 79 323/4 76 163/2 80 311/4 313/4 329/4 325/4 337/4 159/2 159/2 359/4 159/2 159/2 331/4 341/4 325/4 323/4 92 397/4 353/4 161/2 81 335/4 84 325/4 325/4 351/4 319/4 323/4 331/4 311/4 351/4 159/2 159/2 169/2 81 329/4 82 80 331/4 163/2 81 161/2 83 351/4 90 173/2 325/4 333/4 355/4 161/2 169/2 80 307/4 159/2 79 325/4 325/4 161/2 80 321/4 317/4 165/2 81 81 90 323/4 86 169/2 161/2 147/2 161/2 331/4 339/4 81 82 82 313/4 307/4 79 333/4 165/2 83 321/4 153/2 91 175/2 325/4 85 163/2 339/4 85 301/4 171/2 161/2 315/4 81 173/2 161/2 80 331/4 157/2 323/4 161/2 317/4 167/2 79 171/2 167/2 163/2 161/2 305/4 325/4 163/2 159/2 153/2 309/4 75 81 333/4 80 159/2 339/4 157/2 307/4 323/4 315/4 319/4 163/2 313/4 159/2 301/4 349/4 323/4 299/4 311/4 161/2 79 313/4 169/2 83 319/4 82 80 317/4 317/4 81 82 313/4 171/2 79 329/4 323/4 321/4 331/4 157/2 169/2 325/4 82 83 343/4 335/4 173/2 169/2 76 80 167/2 325/4 337/4 321/4 77 157/2 323/4 165/2 321/4 335/4 333/4 335/4 78 319/4 317/4 78 155/2 169/2 317/4 153/2 155/2 159/2 169/2 78 163/2 80 78 81 319/4 337/4 153/2 78 311/4 309/4 309/4 80 325/4 157/2 327/4 80 88 77 319/4 165/2 82 327/4 333/4 309/4 313/4 331/4 343/4 337/4 161/2 309/4 84 339/4 80 81 165/2 77 323/4 333/4 317/4 86 80 83 78 83 81 169/2 347/4 321/4 317/4 357/4 161/2 321/4 161/2 80 347/4 345/4 319/4 159/2 82 81 163/2 319/4 317/4 329/4 325/4 81 325/4 163/2 159/2 317/4 75 159/2 325/4 75 317/4 317/4 341/4 333/4 90 85 345/4 317/4 305/4 335/4 175/2 79 89 84 333/4 161/2 151/2 91 83 85 313/4 353/4 82 331/4 339/4 339/4 86 319/4 167/2 325/4 171/2 331/4 331/4 349/4 339/4 87 329/4 325/4 347/4 77 159/2 325/4 157/2 319/4 325/4 159/2 335/4 321/4 319/4 319/4 303/4 169/2 321/4 171/2 157/2 83 301/4 319/4 73 78 163/2 335/4 153/2 81 155/2 165/2 165/2 301/4 315/4 161/2 80 157/2 82 80 84 333/4 341/4 161/2 183/2 345/4 313/4 167/2 161/2 171/2 84 313/4 335/4 82 321/4 159/2 327/4 327/4 83 335/4 331/4 81 335/4 165/2 331/4 83 163/2 82 325/4 351/4 191/2 331/4 175/2 297/4 151/2 297/4 329/4 169/2 315/4 161/2 319/4 177/2 347/4 84 98 78 311/4 163/2 325/4 353/4 169/2 90 157/2 93 181/2 393/4 355/4 189/2 315/4 90 177/2 353/4 193/2 367/4 351/4 345/4 369/4 397/4 377/4 395/4 95 193/2 379/4 389/4 403/4 97 94 99 189/2 395/4 94 199/2 403/4 379/4 397/4 395/4 94 381/4 175/2 419/4 409/4 381/4 379/4 207/2 95 385/4 193/2 187/2 97 199/2 379/4 407/4 399/4 179/2 93 361/4 389/4 403/4 367/4 100 387/4 195/2 191/2 179/2 85 299/4 81 167/2 167/2 155/2 83 171/2 80 337/4 80 151/2 161/2 341/4 315/4 163/2 87 319/4 305/4 319/4 83 337/4 329/4 327/4 321/4 163/2 333/4 337/4 78 81 157/2 347/4 153/2 84 325/4 87 313/4 171/2 335/4 159/2 83 357/4 315/4 80 79 313/4 295/4 80 157/2 325/4 165/2 77 155/2 321/4 80 301/4 90 335/4 333/4 89 81 167/2 313/4 163/2 169/2 157/2 81 83 82 323/4 83 329/4 337/4 167/2 321/4 329/4 321/4 88 171/2 325/4 333/4 359/4 167/2 167/2 171/2 90 329/4 355/4 329/4 179/2 361/4 347/4 86 369/4 94 353/4 353/4 161/2 343/4 343/4 79 349/4 327/4 82 165/2 173/2 167/2 79 173/2 177/2 315/4 327/4 309/4 321/4 173/2 78 345/4 337/4 161/2 325/4 169/2 169/2 88 357/4 355/4 89 163/2 87 323/4 335/4 359/4 315/4 165/2 353/4 337/4 155/2 81 78 167/2 80 79 82 317/4 80 91 82 167/2 165/2 343/4 349/4 339/4 349/4 87 87 337/4 345/4 375/4 331/4 359/4 171/2 84 315/4 329/4 341/4 171/2 78 85 329/4 347/4 159/2 85 309/4 337/4 78 77 331/4 83 325/4 331/4 303/4 81 315/4 81 167/2 79 319/4 82 323/4 83 153/2 335/4 163/2 163/2 329/4 341/4 82 163/2 169/2 85 82 331/4 159/2 331/4 323/4 163/2 311/4 171/2 361/4 187/2 317/4 389/4 82 325/4 341/4 355/4 335/4 86 83 307/4 159/2 85 335/4 337/4 173/2 333/4 343/4 169/2 323/4 327/4 343/4 331/4 341/4 325/4 339/4 311/4 331/4 82 179/2 78 327/4 315/4 337/4 163/2 323/4 329/4 167/2 313/4 167/2 85 167/2 315/4 339/4 161/2 161/2 337/4 311/4 77 80 155/2 165/2 79 82 84 77 165/2 82 171/2 319/4 81 329/4 161/2 311/4 335/4 169/2 171/2 77 349/4 341/4 339/4 331/4 343/4 327/4 339/4 159/2 335/4 161/2 369/4 171/2 339/4 329/4 165/2 327/4 83 335/4 78 84 84 179/2 87 157/2 83 327/4 333/4 311/4 171/2 323/4 86 327/4 161/2 79 84 307/4 317/4 87 333/4 331/4 321/4 88 83 333/4 75 83 78 173/2 165/2 315/4 82 153/2 347/4 317/4 329/4 78 79 325/4 343/4 341/4 87 84 335/4 331/4 169/2 327/4 333/4 85 163/2 333/4 333/4 335/4 337/4 80 321/4 84 351/4 87 86 343/4 86 323/4 77 86 353/4 333/4 85 173/2 327/4 327/4 157/2 161/2 313/4 303/4 319/4 157/2 337/4 327/4 84 317/4 87 331/4 80 345/4 341/4 161/2 159/2 333/4 311/4 77 76 323/4 319/4 317/4 317/4 155/2 331/4 161/2 149/2 329/4 305/4 321/4 81 341/4 311/4 331/4 89 167/2 163/2 169/2 85 87 347/4 177/2 323/4 84 82 86 85 169/2 311/4 337/4 179/2 89 335/4 169/2 335/4 84 171/2 163/2 353/4 341/4 169/2 327/4 88 83 315/4 305/4 325/4 307/4 331/4 323/4 319/4 327/4 83 84 173/2 92 361/4 89 319/4 357/4 79 335/4 167/2 305/4 327/4 315/4 153/2 83 95 327/4 345/4 175/2 175/2 357/4 169/2 345/4 335/4 325/4 365/4 369/4 359/4 83 365/4 383/4 173/2 85 355/4 345/4 79 363/4 347/4 88 173/2 345/4 183/2 193/2 341/4 87 361/4 345/4 185/2 375/4 349/4 363/4 381/4 359/4 391/4 315/4 96 86 87 179/2 90 189/2 169/2 92 95 367/4 369/4 355/4 175/2 379/4 84 367/4 167/2 86 361/4 369/4 179/2 383/4 191/2 181/2 90 345/4 165/2 94 337/4 383/4 389/4 93 363/4 98 383/4 381/4 391/4 359/4 185/2 197/2 377/4 96 93 96 98 381/4 102 197/2 99 375/4 401/4 197/2 379/4 373/4 99 403/4 385/4 94 187/2 197/2 104 391/4 94 343/4 98 373/4 373/4 385/4 363/4 99 357/4 409/4 363/4 89 94 371/4 187/2 97 389/4 399/4 96 175/2 94 399/4 373/4 359/4 193/2 387/4 205/2 393/4 407/4 325/4 317/4 315/4 82 337/4 163/2 301/4 337/4 339/4 86 339/4 343/4 171/2 161/2 169/2 325/4 84 329/4 171/2 179/2 359/4 315/4 80 349/4 83 171/2 81 167/2 325/4 337/4 161/2 335/4 327/4 325/4 313/4 337/4 83 329/4 165/2 165/2 337/4 161/2 85 78 163/2 171/2 319/4 81 317/4 171/2 333/4 157/2 317/4 84 85 79 297/4 323/4 327/4 159/2 159/2 319/4 323/4 335/4 311/4 323/4 339/4 351/4 331/4 83 82 163/2 175/2 359/4 323/4 93 329/4 353/4 163/2 317/4 159/2 317/4 169/2 345/4 333/4 331/4 337/4 84 88 82 159/2 333/4 161/2 319/4 87 309/4 311/4 331/4 355/4 333/4 159/2 78 311/4 339/4 157/2 149/2 155/2 347/4 317/4 80 321/4 163/2 82 80 155/2 165/2 84 317/4 313/4 297/4 161/2 311/4 329/4 309/4 155/2 79 80 169/2 165/2 171/2 77 79 79 149/2 341/4 333/4 335/4 333/4 161/2 331/4 81 157/2 165/2 317/4 78 331/4 371/4 355/4 365/4 315/4 339/4 177/2 325/4 175/2 83 179/2 177/2 343/4 349/4 175/2 163/2 165/2 321/4 299/4 325/4 321/4 331/4 79 303/4 153/2 163/2 303/4 82 82 83 161/2 321/4 339/4 315/4 87 83 333/4 331/4 313/4 327/4 329/4 337/4 339/4 181/2 337/4 345/4 87 165/2 165/2 321/4 309/4 163/2 91 177/2 179/2 88 165/2 159/2 353/4 84 165/2 341/4 355/4 84 177/2 85 82 345/4 82 323/4 319/4 84 177/2 327/4 157/2 171/2 329/4 83 325/4 83 347/4 173/2 327/4 319/4 171/2 163/2 84 80 321/4 337/4 163/2 173/2 84 167/2 84 173/2 331/4 325/4 341/4 323/4 309/4 163/2 171/2 343/4 329/4 157/2 165/2 83 325/4 337/4 169/2 331/4 353/4 84 88 355/4 87 337/4 321/4 325/4 79 333/4 335/4 321/4 83 349/4 82 83 343/4 329/4 341/4 343/4 319/4 86 321/4 86 357/4 161/2 321/4 347/4 325/4 319/4 165/2 331/4 171/2 341/4 139/2 161/2 323/4 317/4 80 335/4 325/4 157/2 317/4 161/2 163/2 315/4 323/4 323/4 163/2 321/4 169/2 149/2 157/2 319/4 153/2 175/2 335/4 321/4 321/4 289/4 319/4 83 329/4 80 81 327/4 173/2 319/4 335/4 171/2 89 83 161/2 167/2 327/4 341/4 333/4 341/4 149/2 333/4 309/4 82 337/4 331/4 81 327/4 339/4 83 169/2 167/2 327/4 345/4 325/4 329/4 315/4 165/2 315/4 317/4 307/4 313/4 319/4 78 78 83 313/4 329/4 335/4 161/2 80 343/4 81 305/4 161/2 85 319/4 167/2 331/4 80 337/4 80 161/2 179/2 347/4 85 83 77 349/4 83 79 165/2 343/4 88 321/4 165/2 159/2 339/4 155/2 317/4 85 357/4 347/4 169/2 323/4 321/4 175/2 307/4 337/4 329/4 163/2 79 347/4 94 399/4 351/4 385/4 181/2 185/2 185/2 173/2 399/4 201/2 387/4 85 94 367/4 375/4 327/4 181/2 405/4 177/2 92 361/4 399/4 379/4 339/4 375/4 195/2 365/4 173/2 351/4 349/4 343/4 375/4 91 92 187/2 389/4 349/4 92 95 365/4 93 365/4 96 371/4 97 373/4 387/4 191/2 377/4 193/2 189/2 187/2 98 373/4 393/4 395/4 345/4 367/4 105 379/4 193/2 393/4 95 84 86 86 327/4 339/4 301/4 331/4 333/4 157/2 163/2 323/4 161/2 335/4 80 83 81 165/2 321/4 167/2 319/4 325/4 167/2 163/2 319/4 83 337/4 165/2 319/4 327/4 165/2 86 323/4 159/2 323/4 155/2 299/4 83 331/4 155/2 167/2 331/4 81 327/4 80 82 339/4 87 323/4 173/2 83 155/2 86 84 81 333/4 339/4 313/4 83 161/2 157/2 331/4 78 173/2 167/2 159/2 333/4 339/4 165/2 325/4 175/2 317/4 83 84 335/4 321/4 171/2 81 82 307/4 329/4 353/4 165/2 321/4 311/4 341/4 84 349/4 337/4 325/4 339/4 321/4 82 163/2 311/4 161/2 84 349/4 183/2 325/4 157/2 325/4 333/4 345/4 78 167/2 327/4 80 82 315/4 84 88 81 313/4 341/4 167/2 163/2 82 79 169/2 335/4 333/4 343/4 339/4 337/4 319/4 335/4 343/4 85 323/4 83 81 323/4 325/4 81 331/4 309/4 155/2 167/2 167/2 299/4 157/2 78 171/2 83 317/4 80 297/4 79 311/4 311/4 79 325/4 81 159/2 163/2 325/4 80 331/4 163/2 84 321/4 155/2 337/4 309/4 82 85 84 345/4 327/4 321/4 84 347/4 357/4 315/4 325/4 361/4 321/4 83 311/4 157/2 311/4 321/4 317/4 82 80 319/4 161/2 163/2 327/4 319/4 319/4 315/4 77 165/2 321/4 321/4 325/4 305/4 313/4 81 325/4 83 165/2 84 79 78 75 321/4 159/2 321/4 321/4 83 81 307/4 323/4 329/4 80 327/4 143/2 77 84 169/2 155/2 85 77 159/2 321/4 82 343/4 331/4 331/4 81 87 81 153/2 153/2 335/4 165/2 325/4 329/4 321/4 313/4 75 79 313/4 163/2 325/4 337/4 321/4 78 333/4 159/2 163/2 169/2 167/2 86 89 335/4 84 329/4 143/2 77 323/4 79 80 171/2 89 319/4 337/4 157/2 157/2 321/4 80 161/2 325/4 341/4 78 81 157/2 313/4 86 78 313/4 309/4 157/2 159/2 305/4 315/4 161/2 327/4 307/4 337/4 161/2 159/2 167/2 76 78 325/4 83 79 84 163/2 313/4 337/4 86 345/4 341/4 82 339/4 323/4 79 169/2 323/4 343/4 313/4 343/4 173/2 345/4 339/4 82 83 87 337/4 325/4 77 83 163/2 81 167/2 167/2 80 84 329/4 335/4 79 313/4 84 313/4 315/4 345/4 167/2 353/4 319/4 78 319/4 331/4 80 301/4 333/4 80 299/4 329/4 85 165/2 80 167/2 84 347/4 84 163/2 315/4 333/4 331/4 167/2 82 87 351/4 341/4 327/4 333/4 335/4 329/4 85 331/4 325/4 341/4 329/4 337/4 333/4 165/2 339/4 87 79 345/4 337/4 88 177/2 77 339/4 353/4 81 80 82 319/4 327/4 325/4 171/2 335/4 311/4 351/4 327/4 75 301/4 311/4 333/4 307/4 85 327/4 82 147/2 313/4 153/2 311/4 323/4 167/2 80 82 321/4 78 77 171/2 303/4 323/4 153/2 331/4 317/4 155/2 79 347/4 161/2 337/4 169/2 329/4 311/4 173/2 81 165/2 85 309/4 313/4 339/4 165/2 315/4 319/4 307/4 157/2 319/4 339/4 325/4 80 81 345/4 79 347/4 80 167/2 327/4 321/4 82 323/4 315/4 321/4 77 327/4 345/4 169/2 341/4 86 311/4 363/4 357/4 365/4 337/4 353/4 353/4 187/2 343/4 331/4 371/4 347/4 161/2 339/4 85 331/4 181/2 369/4 173/2 177/2 341/4 91 367/4 171/2 171/2 375/4 373/4 383/4 373/4 98 413/4 193/2 96 95 367/4 199/2 97 393/4 363/4 179/2 94 391/4 381/4 92 96 367/4 191/2 94 99 383/4 377/4 189/2 385/4 377/4 415/4 369/4 391/4 90 95 92 95 381/4 189/2 387/4 385/4 355/4 381/4 333/4 169/2 323/4 299/4 325/4 181/2 183/2 159/2 325/4 339/4 163/2 333/4 165/2 321/4 325/4 147/2 169/2 325/4 327/4 315/4 341/4 309/4 349/4 80 321/4 175/2 161/2 365/4 165/2 96 369/4 309/4 347/4 90 84 345/4 325/4 311/4 82 163/2 84 79 319/4 78 327/4 347/4 327/4 87 339/4 307/4 159/2 75 82 165/2 73 301/4 289/4 157/2 303/4 72 173/2 147/2 307/4 153/2 76 84 83 175/2 327/4 82 78 317/4 85 315/4 155/2 79 81 329/4 83 319/4 321/4 337/4 163/2 325/4 165/2 89 86 319/4 357/4 339/4 171/2 167/2 331/4 347/4 325/4 169/2 90 325/4 87 155/2 333/4 351/4 401/4 181/2 383/4 78 321/4 321/4 84 169/2 80 87 339/4 341/4 329/4 171/2 81 163/2 311/4 299/4 323/4 153/2 337/4 317/4 79 331/4 83 83 321/4 165/2 161/2 333/4 159/2 311/4 309/4 80 83 313/4 313/4 78 79 80 321/4 157/2 161/2 84 86 345/4 309/4 331/4 345/4 161/2 169/2 78 83 315/4 157/2 309/4 77 307/4 309/4 285/4 149/2 82 77 179/2 319/4 83 83 86 337/4 167/2 81 327/4 81 307/4 337/4 82 81 79 85 81 341/4 151/2 315/4 165/2 313/4 159/2 161/2 323/4 167/2 169/2 159/2 339/4 84 317/4 303/4 149/2 329/4 79 157/2 357/4 151/2 86 171/2 331/4 157/2 327/4 301/4 163/2 301/4 331/4 327/4 335/4 159/2 78 337/4 307/4 161/2 335/4 317/4 325/4 333/4 72 171/2 317/4 175/2 317/4 175/2 82 315/4 331/4 349/4 165/2 325/4 327/4 161/2 82 333/4 167/2 81 87 159/2 163/2 355/4 83 153/2 84 319/4 341/4 293/4 331/4 327/4 327/4 329/4 325/4 167/2 309/4 341/4 145/2 337/4 321/4 81 159/2 337/4 157/2 167/2 159/2 321/4 79 325/4 75 313/4 149/2 163/2 77 155/2 81 79 333/4 337/4 343/4 313/4 86 165/2 309/4 81 78 321/4 347/4 80 331/4 337/4 335/4 321/4 84 325/4 155/2 163/2 319/4 163/2 323/4 323/4 81 317/4 311/4 79 82 163/2 75 305/4 153/2 155/2 157/2 159/2 80 319/4 297/4 79 321/4 321/4 78 79 307/4 161/2 293/4 75 147/2 147/2 301/4 309/4 307/4 81 311/4 305/4 88 319/4 307/4 305/4 321/4 307/4 315/4 325/4 313/4 167/2 311/4 329/4 319/4 155/2 313/4 80 305/4 78 315/4 153/2 83 80 81 151/2 319/4 85 317/4 159/2 327/4 161/2 77 323/4 161/2 81 337/4 157/2 313/4 319/4 139/2 319/4 295/4 77 287/4 78 159/2 323/4 72 299/4 305/4 311/4 167/2 77 75 77 153/2 75 319/4 315/4 335/4 307/4 86 157/2 315/4 307/4 321/4 83 157/2 75 331/4 155/2 79 163/2 81 317/4 86 333/4 315/4 155/2 151/2 159/2 337/4 323/4 74 327/4 75 82 81 301/4 159/2 323/4 319/4 78 333/4 163/2 337/4 339/4 313/4 309/4 299/4 327/4 327/4 81 323/4 159/2 327/4 159/2 149/2 76 81 69 153/2 76 313/4 317/4 313/4 285/4 321/4 77 317/4 337/4 79 307/4 167/2 321/4 161/2 309/4 311/4 81 75 347/4 315/4 153/2 159/2 321/4 317/4 319/4 313/4 78 161/2 157/2 78 163/2 80 325/4 317/4 155/2 313/4 345/4 151/2 153/2 319/4 163/2 80 311/4 163/2 327/4 89 369/4 339/4 173/2 185/2 90 187/2 353/4 159/2 327/4 357/4 315/4 89 78 163/2 363/4 80 81 311/4 335/4 84 171/2 151/2 291/4 319/4 88 181/2 80 171/2 157/2 80 325/4 85 329/4 175/2 165/2 173/2 157/2 359/4 369/4 79 349/4 169/2 355/4 89 85 175/2 87 339/4 94 363/4 339/4 323/4 323/4 84 86 185/2 331/4 369/4 345/4 359/4 92 169/2 351/4 93 92 341/4 351/4 351/4 355/4 361/4 91 387/4 355/4 327/4 85 89 361/4 395/4 405/4 87 83 339/4 379/4 171/2 171/2 373/4 91 87 357/4 88 327/4 159/2 171/2 355/4 183/2 193/2 96 383/4 343/4 177/2 183/2 393/4 91 363/4 89 345/4 351/4 89 371/4 393/4 93 99 383/4 185/2 189/2 405/4 365/4 199/2 395/4 383/4 103 94 187/2 100 385/4 189/2 94 201/2 385/4 359/4 393/4 405/4 399/4 379/4 381/4 207/2 102 183/2 399/4 100 193/2 189/2 179/2 379/4 379/4 369/4 387/4 199/2 365/4 101 92 100 203/2 339/4 323/4 325/4 347/4 325/4 317/4 79 333/4 349/4 155/2 347/4 339/4 339/4 159/2 339/4 79 167/2 331/4 169/2 171/2 82 347/4 157/2 333/4 341/4 81 335/4 349/4 327/4 82 329/4 337/4 315/4 315/4 345/4 331/4 179/2 81 163/2 88 88 88 167/2 329/4 81 87 161/2 181/2 79 325/4 87 327/4 335/4 165/2 151/2 323/4 151/2 159/2 84 84 171/2 335/4 82 361/4 81 81 157/2 327/4 86 76 347/4 327/4 335/4 337/4 173/2 333/4 353/4 311/4 157/2 357/4 165/2 321/4 173/2 171/2 337/4 171/2 163/2 319/4 325/4 345/4 323/4 341/4 169/2 333/4 321/4 335/4 173/2 165/2 175/2 323/4 165/2 329/4 337/4 361/4 339/4 317/4 161/2 315/4 163/2 335/4 167/2 165/2 165/2 86 335/4 165/2 78 339/4 83 323/4 345/4 341/4 343/4 329/4 81 331/4 80 335/4 305/4 171/2 337/4 323/4 331/4 159/2 81 169/2 327/4 339/4 159/2 311/4 335/4 79 353/4 82 84 347/4 337/4 347/4 323/4 321/4 327/4 173/2 359/4 171/2 339/4 169/2 367/4 343/4 347/4 165/2 337/4 333/4 331/4 167/2 85 343/4 181/2 343/4 85 351/4 163/2 78 343/4 341/4 341/4 169/2 159/2 325/4 85 169/2 355/4 82 83 347/4 159/2 85 157/2 83 87 161/2 82 315/4 81 169/2 315/4 155/2 84 333/4 319/4 327/4 351/4 327/4 327/4 157/2 163/2 177/2 319/4 173/2 357/4 84 337/4 85 331/4 81 169/2 345/4 175/2 149/2 339/4 85 331/4 89 84 155/2 331/4 337/4 337/4 343/4 165/2 341/4 337/4 321/4 163/2 333/4 163/2 79 329/4 347/4 327/4 169/2 329/4 167/2 169/2 83 361/4 81 329/4 335/4 319/4 321/4 84 84 323/4 163/2 167/2 333/4 161/2 335/4 87 313/4 325/4 325/4 82 165/2 333/4 82 76 84 153/2 341/4 84 173/2 173/2 157/2 171/2 309/4 87 161/2 80 327/4 167/2 79 303/4 82 159/2 85 167/2 331/4 325/4 345/4 167/2 173/2 349/4 167/2 163/2 167/2 349/4 333/4 341/4 329/4 169/2 335/4 163/2 337/4 169/2 85 345/4 325/4 327/4 88 88 359/4 167/2 88 349/4 83 165/2 83 329/4 341/4 319/4 337/4 355/4 84 167/2 167/2 347/4 333/4 89 85 335/4 165/2 347/4 86 85 159/2 171/2 321/4 341/4 85 85 325/4 88 337/4 165/2 87 88 84 337/4 343/4 88 163/2 161/2 353/4 83 359/4 82 175/2 341/4 345/4 169/2 169/2 325/4 307/4 163/2 345/4 83 331/4 353/4 355/4 343/4 327/4 335/4 86 343/4 323/4 84 317/4 371/4 86 361/4 361/4 175/2 311/4 157/2 335/4 169/2 161/2 92 343/4 351/4 187/2 91 353/4 335/4 91 89 335/4 81 163/2 85 91 88 89 87 187/2 393/4 361/4 353/4 191/2 93 91 395/4 191/2 391/4 373/4 197/2 88 371/4 96 95 87 381/4 393/4 102 98 195/2 187/2 369/4 89 375/4 97 375/4 100 191/2 385/4 383/4 383/4 361/4 179/2 91 361/4 94 383/4 193/2 189/2 385/4 381/4 395/4 377/4 99 363/4 389/4 96 341/4 169/2 173/2 359/4 337/4 335/4 343/4 169/2 309/4 163/2 153/2 155/2 331/4 88 311/4 321/4 86 349/4 173/2 173/2 325/4 339/4 82 333/4 84 333/4 155/2 327/4 173/2 163/2 327/4 349/4 347/4 80 335/4 317/4 341/4 329/4 86 347/4 333/4 155/2 171/2 343/4 161/2 165/2 333/4 333/4 82 333/4 84 163/2 90 169/2 80 173/2 159/2 79 84 347/4 333/4 89 157/2 313/4 85 85 351/4 351/4 343/4 331/4 81 82 163/2 161/2 89 85 343/4 86 171/2 329/4 78 333/4 329/4 349/4 327/4 169/2 179/2 339/4 319/4 169/2 359/4 89 351/4 84 84 163/2 351/4 335/4 343/4 88 167/2 349/4 337/4 327/4 353/4 82 349/4 169/2 167/2 159/2 163/2 81 80 86 345/4 85 321/4 311/4 86 159/2 325/4 327/4 171/2 377/4 337/4 82 171/2 84 349/4 343/4 331/4 331/4 317/4 181/2 177/2 337/4 81 82 83 171/2 357/4 167/2 171/2 339/4 181/2 363/4 79 341/4 351/4 165/2 325/4 85 317/4 88 325/4 87 341/4 349/4 86 82 317/4 351/4 349/4 333/4 169/2 327/4 347/4 85 83 82 337/4 319/4 77 163/2 157/2 329/4 171/2 86 323/4 307/4 327/4 81 86 317/4 331/4 80 341/4 361/4 353/4 317/4 351/4 167/2 325/4 329/4 327/4 319/4 337/4 165/2 333/4 341/4 345/4 87 171/2 339/4 86 315/4 325/4 369/4 169/2 86 361/4 353/4 79 349/4 337/4 331/4 351/4 341/4 317/4 167/2 323/4 171/2 345/4 329/4 155/2 317/4 177/2 159/2 81 82 329/4 163/2 155/2 313/4 84 331/4 317/4 339/4 319/4 169/2 335/4 331/4 343/4 317/4 341/4 327/4 82 313/4 86 327/4 331/4 79 335/4 165/2 169/2 331/4 159/2 81 157/2 163/2 87 343/4 177/2 321/4 301/4 79 83 151/2 169/2 337/4 337/4 159/2 315/4 85 323/4 337/4 165/2 339/4 78 335/4 161/2 87 333/4 331/4 83 171/2 337/4 339/4 361/4 167/2 319/4 82 317/4 305/4 337/4 79 88 337/4 317/4 327/4 339/4 331/4 337/4 83 157/2 81 159/2 177/2 159/2 76 82 329/4 317/4 319/4 169/2 319/4 335/4 331/4 167/2 163/2 341/4 83 161/2 80 307/4 321/4 347/4 80 161/2 297/4 82 167/2 85 331/4 367/4 91 347/4 341/4 321/4 335/4 165/2 333/4 171/2 167/2 173/2 321/4 357/4 173/2 157/2 337/4 161/2 84 339/4 329/4 83 321/4 79 77 79 161/2 327/4 87 81 325/4 171/2 335/4 321/4 329/4 86 327/4 167/2 333/4 171/2 313/4 329/4 335/4 82 333/4 163/2 333/4 349/4 331/4 331/4 76 337/4 327/4 333/4 329/4 309/4 329/4 165/2 84 171/2 335/4 80 169/2 173/2 89 341/4 167/2 88 347/4 345/4 181/2 167/2 165/2 85 325/4 349/4 155/2 349/4 83 85 345/4 351/4 84 86 341/4 163/2 293/4 343/4 351/4 86 85 169/2 335/4 305/4 323/4 87 309/4 78 341/4 335/4 89 173/2 171/2 319/4 347/4 167/2 86 323/4 167/2 165/2 339/4 311/4 82 323/4 327/4 317/4 153/2 339/4 171/2 86 321/4 81 347/4 87 321/4 89 323/4 185/2 331/4 82 351/4 335/4 85 179/2 85 373/4 175/2 375/4 90 95 91 389/4 189/2 405/4 359/4 399/4 98 381/4 100 197/2 361/4 96 401/4 203/2 199/2 99 98 359/4 399/4 371/4 92 385/4 191/2 379/4 96 385/4 367/4 389/4 183/2 393/4 195/2 197/2 96 363/4 185/2 387/4 387/4 375/4 199/2 185/2 383/4 189/2 389/4 389/4 95 389/4 395/4 85 327/4 341/4 155/2 171/2 329/4 76 173/2 161/2 83 321/4 331/4 333/4 157/2 83 323/4 85 353/4 325/4 331/4 169/2 82 159/2 169/2 333/4 339/4 333/4 341/4 317/4 80 321/4 86 343/4 85 161/2 86 157/2 163/2 329/4 319/4 345/4 79 185/2 157/2 339/4 84 83 80 165/2 161/2 329/4 81 339/4 339/4 345/4 167/2 341/4 315/4 315/4 309/4 161/2 295/4 79 149/2 76 143/2 81 297/4 78 317/4 299/4 155/2 151/2 301/4 309/4 335/4 319/4 73 323/4 299/4 153/2 313/4 143/2 305/4 76 72 323/4 157/2 75 311/4 77 76 311/4 313/4 157/2 349/4 153/2 303/4 75 293/4 71 305/4 319/4 309/4 291/4 321/4 313/4 149/2 149/2 287/4 74 287/4 297/4 155/2 299/4 287/4 153/2 72 65 141/2 151/2 75 149/2 70 157/2 317/4 219/2 221/2 107 447/4 439/4 491/4 469/4 233/2 113 109 235/2 477/4 229/2 237/2 459/4 451/4 111 483/4 223/2 447/4 459/4 469/4 449/4 237/2 479/4 239/2 221/2 223/2 114 453/4 113 471/4 459/4 449/4 233/2 223/2 117 467/4 121 221/2 449/4 445/4 229/2 465/4 225/2 437/4 433/4 120 441/4 435/4 447/4 453/4 445/4 445/4 457/4 229/2 114 427/4 441/4 215/2 479/4 213/2 425/4 439/4 111 109 107 227/2 111 112 219/2 227/2 451/4 111 115 467/4 219/2 441/4 451/4 427/4 433/4 445/4 455/4 457/4 117 443/4 443/4 427/4 237/2 118 463/4 223/2 112 227/2 441/4 112 439/4 121 229/2 431/4 112 225/2 209/2 429/4 473/4 215/2 112 461/4 445/4 215/2 431/4 449/4 425/4 229/2 112 417/4 435/4 427/4 439/4 459/4 435/4 459/4 223/2 447/4 215/2 109 443/4 114 439/4 109 109 427/4 455/4 447/4 227/2 429/4 433/4 451/4 435/4 449/4 219/2 110 463/4 449/4 447/4 439/4 106 423/4 107 449/4 451/4 107 465/4 223/2 467/4 435/4 441/4 223/2 437/4 441/4 431/4 457/4 449/4 433/4 108 433/4 221/2 425/4 455/4 453/4 215/2 107 107 425/4 223/2 207/2 223/2 217/2 449/4 111 207/2 425/4 223/2 223/2 215/2 110 451/4 427/4 443/4 469/4 439/4 217/2 219/2 457/4 112 215/2 443/4 116 225/2 459/4 451/4 435/4 463/4 443/4 435/4 225/2 113 443/4 221/2 108 219/2 105 451/4 217/2 437/4 217/2 116 475/4 435/4 445/4 235/2 435/4 453/4 441/4 469/4 453/4 445/4 459/4 120 215/2 229/2 481/4 433/4 223/2 108 453/4 445/4 243/2 110 441/4 463/4 483/4 113 441/4 435/4 237/2 122 219/2 495/4 451/4 489/4 477/4 475/4 527/4 465/4 251/2 523/4 120 473/4 123 235/2 138 229/2 271/2 509/4 124 130 141 489/4 511/4 507/4 129 497/4 271/2 255/2 527/4 133 128 465/4 231/2 273/2 265/2 549/4 133 136 553/4 275/2 523/4 259/2 489/4 521/4 553/4 555/4 515/4 271/2 533/4 479/4 527/4 527/4 539/4 265/2 128 563/4 541/4 481/4 575/4 124 279/2 523/4 539/4 133 543/4 547/4 281/2 142 555/4 551/4 565/4 543/4 263/2 573/4 143 547/4 527/4 569/4 138 535/4 583/4 555/4 128 271/2 151 141 295/2 283/2 115 119 471/4 239/2 119 483/4 237/2 477/4 123 463/4 119 475/4 241/2 487/4 116 115 491/4 471/4 475/4 239/2 225/2 112 467/4 443/4 233/2 455/4 467/4 447/4 229/2 112 120 115 114 233/2 223/2 116 237/2 237/2 115 114 469/4 473/4 453/4 479/4 112 231/2 469/4 483/4 473/4 227/2 231/2 115 455/4 229/2 229/2 451/4 231/2 119 467/4 229/2 449/4 235/2 111 112 487/4 235/2 239/2 115 117 453/4 117 465/4 487/4 449/4 235/2 116 251/2 112 113 237/2 467/4 221/2 108 237/2 225/2 443/4 457/4 111 439/4 465/4 457/4 487/4 447/4 453/4 231/2 113 467/4 455/4 227/2 455/4 115 235/2 219/2 459/4 119 481/4 465/4 453/4 223/2 443/4 469/4 113 118 449/4 479/4 215/2 447/4 435/4 239/2 115 115 445/4 455/4 481/4 463/4 457/4 435/4 465/4 227/2 117 451/4 227/2 233/2 231/2 229/2 118 116 471/4 225/2 239/2 473/4 113 117 473/4 463/4 109 471/4 114 116 449/4 109 435/4 227/2 112 217/2 439/4 465/4 439/4 117 231/2 441/4 461/4 119 465/4 437/4 223/2 111 433/4 225/2 453/4 437/4 237/2 449/4 473/4 111 219/2 435/4 227/2 217/2 449/4 233/2 229/2 223/2 237/2 449/4 231/2 235/2 463/4 120 449/4 469/4 475/4 443/4 227/2 227/2 119 467/4 116 447/4 483/4 461/4 119 479/4 122 116 437/4 237/2 457/4 209/2 475/4 116 107 113 453/4 471/4 471/4 457/4 107 119 112 223/2 453/4 233/2 112 120 221/2 507/4 109 475/4 231/2 112 243/2 465/4 231/2 491/4 461/4 243/2 443/4 441/4 239/2 271/2 477/4 443/4 433/4 443/4 126 535/4 449/4 471/4 267/2 479/4 285/2 138 265/2 571/4 126 551/4 277/2 487/4 563/4 275/2 139 517/4 523/4 529/4 287/2 144 134 537/4 134 261/2 275/2 545/4 291/2 283/2 553/4 537/4 135 537/4 549/4 547/4 553/4 553/4 441/4 233/2 111 461/4 117 112 231/2 106 469/4 431/4 459/4 217/2 449/4 437/4 114 219/2 445/4 227/2 229/2 221/2 435/4 451/4 245/2 435/4 453/4 107 439/4 487/4 471/4 465/4 119 467/4 229/2 229/2 112 457/4 447/4 493/4 443/4 449/4 112 423/4 465/4 243/2 112 449/4 483/4 441/4 119 239/2 227/2 118 527/4 117 507/4 118 223/2 215/2 445/4 249/2 114 253/2 207/2 233/2 463/4 223/2 469/4 435/4 463/4 108 235/2 213/2 457/4 487/4 437/4 108 225/2 231/2 425/4 489/4 114 459/4 453/4 481/4 111 229/2 113 417/4 103 241/2 457/4 231/2 499/4 455/4 111 113 261/2 128 115 451/4 253/2 247/2 117 467/4 483/4 136 229/2 231/2 227/2 447/4 219/2 469/4 483/4 481/4 451/4 235/2 453/4 451/4 437/4 227/2 115 465/4 449/4 459/4 110 437/4 419/4 459/4 459/4 441/4 215/2 219/2 441/4 116 443/4 108 451/4 439/4 437/4 447/4 225/2 439/4 115 477/4 455/4 219/2 115 219/2 463/4 111 461/4 229/2 453/4 118 493/4 477/4 120 459/4 109 431/4 465/4 115 217/2 453/4 231/2 233/2 117 227/2 443/4 453/4 463/4 119 112 487/4 121 437/4 479/4 112 239/2 122 231/2 463/4 111 485/4 461/4 459/4 449/4 411/4 441/4 421/4 223/2 221/2 437/4 461/4 116 471/4 427/4 455/4 453/4 115 219/2 231/2 427/4 105 107 225/2 453/4 465/4 213/2 229/2 223/2 227/2 215/2 229/2 441/4 465/4 235/2 115 120 119 469/4 115 118 453/4 477/4 241/2 455/4 473/4 229/2 111 447/4 451/4 120 229/2 237/2 483/4 229/2 455/4 453/4 459/4 231/2 122 114 251/2 467/4 115 447/4 225/2 465/4 455/4 110 469/4 455/4 227/2 229/2 116 108 463/4 463/4 449/4 469/4 469/4 453/4 110 114 471/4 441/4 439/4 469/4 111 229/2 465/4 113 118 112 114 459/4 247/2 463/4 113 253/2 253/2 479/4 239/2 237/2 493/4 126 233/2 116 545/4 255/2 459/4 289/2 229/2 543/4 551/4 565/4 549/4 143 507/4 285/2 139 149 145 141 565/4 146 557/4 585/4 547/4 567/4 146 144 573/4 271/2 555/4 527/4 261/2 142 555/4 559/4 277/2 143 445/4 128 233/2 113 114 503/4 249/2 225/2 225/2 453/4 535/4 463/4 110 501/4 219/2 223/2 249/2 120 225/2 235/2 117 125 215/2 239/2 115 125 126 131 133 257/2 479/4 489/4 231/2 121 465/4 237/2 403/4 503/4 209/2 219/2 105 213/2 467/4 243/2 435/4 110 439/4 211/2 407/4 114 479/4 207/2 451/4 433/4 439/4 437/4 213/2 427/4 219/2 429/4 519/4 219/2 123 423/4 219/2 429/4 105 421/4 195/2 100 409/4 205/2 433/4 203/2 385/4 185/2 369/4 102 365/4 381/4 193/2 393/4 385/4 385/4 101 187/2 97 199/2 201/2 193/2 395/4 403/4 411/4 401/4 203/2 399/4 211/2 409/4 391/4 411/4 199/2 389/4 415/4 415/4 201/2 203/2 197/2 425/4 415/4 401/4 413/4 199/2 405/4 411/4 201/2 106 95 201/2 389/4 389/4 387/4 197/2 193/2 403/4 209/2 199/2 197/2 96 98 415/4 97 199/2 195/2 399/4 203/2 99 393/4 99 399/4 427/4 99 395/4 98 413/4 104 387/4 395/4 101 98 393/4 203/2 102 99 393/4 93 102 100 94 209/2 98 205/2 101 101 104 95 399/4 409/4 385/4 211/2 203/2 207/2 419/4 419/4 209/2 419/4 409/4 407/4 411/4 405/4 201/2 401/4 102 98 191/2 101 213/2 377/4 100 383/4 193/2 383/4 385/4 411/4 99 397/4 97 387/4 401/4 397/4 193/2 189/2 393/4 377/4 409/4 393/4 199/2 96 199/2 203/2 385/4 99 191/2 97 96 369/4 391/4 389/4 105 197/2 393/4 101 193/2 100 397/4 407/4 197/2 399/4 383/4 407/4 191/2 94 203/2 193/2 411/4 191/2 199/2 207/2 403/4 101 415/4 417/4 201/2 102 397/4 201/2 203/2 395/4 197/2 403/4 98 385/4 103 395/4 371/4 97 98 407/4 397/4 195/2 383/4 395/4 389/4 199/2 383/4 189/2 191/2 94 387/4 189/2 207/2 409/4 97 205/2 201/2 197/2 419/4 387/4 383/4 403/4 409/4 397/4 97 385/4 385/4 411/4 389/4 401/4 201/2 193/2 97 373/4 99 197/2 187/2 397/4 393/4 103 199/2 201/2 103 385/4 97 419/4 401/4 195/2 403/4 94 391/4 377/4 101 405/4 195/2 415/4 97 401/4 199/2 377/4 100 199/2 193/2 397/4 391/4 393/4 389/4 203/2 189/2 401/4 199/2 391/4 94 96 100 97 94 98 381/4 191/2 195/2 409/4 381/4 403/4 191/2 193/2 413/4 403/4 399/4 389/4 397/4 99 387/4 411/4 403/4 193/2 101 403/4 103 393/4 191/2 100 395/4 409/4 101 100 403/4 409/4 201/2 193/2 389/4 403/4 98 102 409/4 197/2 101 193/2 97 419/4 197/2 97 383/4 389/4 389/4 102 99 98 197/2 403/4 379/4 409/4 413/4 201/2 96 99 97 397/4 387/4 103 407/4 191/2 203/2 393/4 187/2 96 98 379/4 93 409/4 191/2 405/4 391/4 387/4 100 201/2 405/4 105 409/4 393/4 193/2 401/4 425/4 407/4 197/2 413/4 399/4 95 385/4 401/4 387/4 429/4 102 411/4 395/4 102 195/2 381/4 101 97 403/4 207/2 393/4 375/4 407/4 379/4 409/4 97 197/2 193/2 191/2 387/4 373/4 97 99 391/4 379/4 401/4 193/2 195/2 193/2 96 197/2 199/2 205/2 423/4 193/2 197/2 197/2 403/4 103 199/2 393/4 355/4 103 389/4 189/2 395/4 100 103 395/4 387/4 393/4 103 387/4 102 387/4 413/4 375/4 96 197/2 100 193/2 98 104 405/4 423/4 405/4 407/4 417/4 407/4 197/2 397/4 100 399/4 415/4 417/4 98 94 401/4 103 407/4 393/4 195/2 407/4 407/4 99 385/4 101 389/4 197/2 98 199/2 399/4 98 197/2 193/2 201/2 199/2 415/4 395/4 401/4 193/2 407/4 98 199/2 257/4 61 137/2 119/2 249/4 66 285/4 139/2 293/4 291/4 257/4 73 70 66 239/4 67 263/4 245/4 73 147/2 73 277/4 297/4 295/4 131/2 65 125/2 287/4 65 119/2 279/4 62 271/4 74 147/2 265/4 271/4 285/4 267/4 251/4 63 267/4 309/4 64 249/4 67 287/4 62 69 273/4 265/4 143/2 58 65 263/4 125/2 269/4 281/4 129/2 145/2 74 133/2 63 257/4 269/4 273/4 263/4 281/4 301/4 73 153/2 285/4 70 245/4 67 72 147/2 75 65 133/2 71 269/4 139/2 289/4 289/4 251/4 253/4 64 131/2 267/4 133/2 133/2 137/2 69 64 291/4 249/4 265/4 123/2 241/4 281/4 261/4 64 117/2 235/4 247/4 62 65 247/4 259/4 257/4 62 245/4 59 127/2 281/4 253/4 59 275/4 235/4 65 137/2 58 119/2 293/4 65 71 139/2 143/2 143/2 257/4 71 287/4 139/2 141/2 133/2 277/4 267/4 77 141/2 67 271/4 66 72 277/4 139/2 74 78 287/4 287/4 141/2 65 303/4 279/4 70 291/4 271/4 273/4 123/2 277/4 65 121/2))
(peak-bytes* bytes (46053898 69801042 69885638 69885252 46055988 70004684 69000934 70053990 68993754 70042972 70160472 70152868 69061162 70110052 70219092 70220680 46089092 69869430 68868104 69934086 70036918 68993816 70082956 70096350 69032710 70078660 70319498 70327970 69097100 70142154 70390946 70391864 70257742 70261476 70288910 70456434 69330120 70382552 70409152 70577392 70334962 70343654 70372148 70374514 70398352 70407890 70436098 70439090 70259440 70259882 70290610 70458160 70376486 70379852 70408004 70575252 70326418 70329862 70341796 70345662 70387844 70391440 70414470 70406272 46059654 69801802 68829008 69873782 70009512 70008568 70039546 70044182 70070948 70065250 70146960 70144780 70110338 70103840 70197402 70206342 69883124 69882248 69920046 69914720 70041698 70039220 70076752 70087808 70074116 70079880 70311546 70319516 70143342 70140622 70375404 70376826 70262538 70265130 70282074 70284504 70383104 70385062 70402506 70398556 70342534 70345090 70361176 70362854 70400194 70406894 70414158 70416538 70264300 70266720 70283580 70285054 70380730 70384278 70400464 70402508 70327814 70330466 70341930 70345114 70388150 70390800 70403358 70404416 68872898 69916398 69961286 69953970 70087458 70081832 70131016 70127636 70108576 70114212 70364812 70359962 70174094 70169344 70426940 70427242 69889226 69902978 70007958 70012732 70049070 70067456 70175920 70178334 70154806 70146046 70410080 70409766 70213174 70207988 70469488 70467926 70281584 70282878 70295662 70297906 70399014 70403244 70418648 70419080 70354892 70358018 70370534 70370940 70420118 70422336 70431094 70435110 70282460 70283154 70297816 70298302 70400888 70401928 70414902 70416376 70340650 70349358 70356348 70362818 70389004 70394618 70424682 70424244 69923622 69924994 69950054 69958192 70083462 70095198 70122208 70117958 70142574 70150100 70354864 70350590 70178022 70174432 70414944 70408330 69909620 69909880 70004072 70005108 70070814 70067904 70164978 70164554 70134208 70147292 70398538 70394384 70216006 70211572 70449186 70457924 70286332 70287096 70287802 70289090 70406814 70407988 70407998 70409308 70356768 70358746 70357788 70359378 70420828 70421678 70418478 70421804 70287230 70288854 70288354 70290430 70403802 70405216 70405326 70407078 70349194 70346808 70346608 70351342 70409082 70411220 70409920 70412012 68845958 69880832 70002736 70002106 70060180 70036368 70154626 70164374 70162834 70156880 70409712 70408580 70230234 70220542 70474476 70479738 69942070 69926590 70047428 70042892 70105264 70092274 70208352 70211508 70332658 70331386 70440572 70434262 70389102 70392198 70500160 70498202 70324748 70318884 70360784 70513708 70443810 70437270 70481248 70635040 70405390 70400638 70416396 70412864 70469282 70463594 70480038 70477004 70322854 70320340 70361434 70515982 70434996 70437222 70480468 70632868 70391314 70391968 70407104 70404250 70457036 70453530 70468174 70465618 69894942 69890002 69993298 69990222 70060970 70055754 70148644 70157352 70154350 70150160 70404048 70397842 70224834 70215496 70465948 70461808 69938068 69932382 70037120 70026488 70104948 70095968 70194448 70199540 70338014 70327852 70420020 70420348 70393770 70385786 70493700 70480162 70324426 70320902 70467208 70502436 70444340 70441284 70627724 70622256 70404146 70399758 70401206 70398120 70467032 70463660 70465204 70462174 70323504 70321508 70507482 70502228 70439646 70438734 70624276 70621480 70394654 70391568 70393658 70389442 70455550 70451258 70454004 70450744 69971670 69969230 70080636 70071668 70138070 70134710 70275024 70244680 70377372 70368356 70483444 70481452 70439244 70431338 70557040 70548468 70004796 70013994 70132132 70116594 70163704 70181734 70296750 70284174 70418924 70407484 70523028 70516318 70480772 70474578 70581766 70581162 70336504 70327656 70354964 70358462 70458424 70449484 70476358 70479156 70406318 70404050 70446348 70437858 70472106 70469224 70511634 70507428 70337298 70329826 70357958 70359126 70455494 70446318 70473502 70477022 70399000 70396036 70423134 70432250 70463416 70456816 70485282 70480184 69975930 69970224 70077804 70069162 70133600 70137976 70228200 70233066 70365880 70363844 70478696 70471692 70438664 70424036 70538514 70525726 70022952 70000610 70110108 70111154 70183414 70168930 70276432 70271618 70411604 70405340 70509358 70498690 70471440 70466740 70558340 70565074 70337636 70329856 70346046 70346742 70458908 70450274 70471382 70468214 70403738 70403876 70432312 70428656 70466222 70467308 70496632 70476068 70337962 70330850 70348086 70348592 70455468 70448000 70464846 70459864 70395954 70395894 70424622 70405052 70453886 70456198 70468726 70464446 69997578 70005430 70077616 70078320 70114110 70121462 70195350 70195472 70377792 70378696 70446952 70453434 70390846 70397272 70457950 70469002 70052596 70057916 70245962 70255414 70149734 70152228 70344554 70346146 70397088 70398418 70462342 70476014 70392994 70394282 70448488 70468304 70520758 70522438 70478908 70490456 70588778 70594310 70552006 70562392 70557114 70558788 70509144 70513232 70571964 70573756 70524050 70526156 70522728 70525012 70484418 70492476 70575524 70575856 70542736 70545522 70541594 70546936 70500982 70500428 70538574 70538708 70495818 70499042 70001510 69993414 70051524 70061784 70116234 70120244 70174390 70178030 70366822 70377014 70426908 70429924 70388344 70389774 70437792 70436614 70045466 70050320 70074902 70242042 70151296 70153680 70172618 70336552 70392100 70395546 70443858 70459910 70389924 70384966 70440632 70449284 70520106 70524656 70464890 70468080 70591860 70593642 70537072 70542796 70554332 70556876 70488648 70495564 70568806 70570712 70507518 70509580 70522766 70519764 70469362 70472958 70567070 70577492 70522822 70526634 70532056 70542302 70484412 70487266 70524548 70534994 70476554 70477854 70076108 70068226 70291506 70291374 70181562 70181602 70405760 70407496 70449326 70448006 70513942 70517206 70464002 70463842 70529782 70529696 70128098 70257070 70328774 70323676 70216062 70357942 70412170 70415638 70473474 70471086 70534804 70542842 70463778 70460452 70534568 70525794 70367054 70370422 70305440 70313566 70433794 70441426 70373980 70384296 70394122 70392742 70329584 70331678 70408800 70406978 70361062 70345712 70367034 70370564 70305632 70312828 70421390 70423528 70358720 70367508 70383816 70384374 70338084 70341674 70380262 70376528 70332076 70336288 70075376 70073282 70273698 70277964 70190918 70187668 70387070 70394630 70451396 70440972 70502482 70492670 70459588 70456772 70511290 70514004 70126054 70247734 70311404 70309178 70220064 70355192 70414550 70409434 70472662 70467618 70520394 70520306 70470794 70462666 70506254 70517028 70367592 70370030 70295912 70299206 70437638 70440838 70366368 70371204 70391400 70389820 70333056 70315476 70405452 70403856 70345840 70347928 70369234 70371088 70297092 70300348 70421964 70418018 70350076 70353664 70381646 70380438 70322774 70323968 70374176 70372842 70314704 70316548 70051010 70064232 70264920 70265858 70170970 70179688 70378526 70380440 70429774 70426612 70494406 70496232 70440892 70442932 70504096 70512846 70226748 70224222 70288082 70287464 70331180 70319942 70393576 70379986 70456080 70450952 70529414 70507042 70449588 70446450 70524444 70503580 70538416 70534750 70492206 70480450 70610332 70606784 70562574 70551682 70565592 70560306 70515864 70512004 70580406 70574834 70531318 70526208 70538716 70536372 70492254 70483014 70593288 70589800 70545970 70535470 70554714 70551708 70506754 70503652 70548318 70546916 70502846 70498678 70061462 70051652 70251554 70249312 70178544 70176396 70368810 70362138 70425328 70416606 70481346 70479140 70439554 70432012 70492678 70490622 70231256 70072860 70269686 70273376 70328046 70174856 70372040 70363114 70431866 70437810 70485746 70489240 70431874 70432736 70480150 70476626 70535112 70532720 70468388 70462726 70606732 70602040 70537280 70535284 70559066 70555046 70494972 70493122 70572778 70568310 70512362 70507100 70536832 70533640 70469462 70465262 70589094 70586052 70524462 70519348 70548860 70545376 70484348 70485206 70529796 70538080 70480456 70476146 70277830 70269324 70338612 70327122 70389212 70388610 70447606 70445106 70503120 70497390 70557842 70559816 70515968 70499000 70578362 70572014 70310118 70299148 70360548 70360880 70400490 70395360 70456592 70459698 70520240 70515960 70583866 70580854 70512610 70506060 70577390 70571276 70372970 70369242 70330154 70323034 70444542 70440366 70400662 70393506 70401484 70396716 70342862 70352288 70415812 70410610 70369686 70365994 70371202 70370072 70330374 70324606 70428330 70423334 70383204 70377430 70393772 70386954 70346912 70343484 70388576 70381456 70341204 70338396 70260362 70260750 70327256 70319914 70392452 70382808 70447938 70429118 70496586 70489492 70548116 70541370 70512344 70505224 70557930 70555934 70307494 70294384 70337480 70345814 70400902 70395964 70432348 70444836 70518984 70509006 70561998 70560968 70510686 70506696 70554924 70553558 70368270 70367128 70314166 70307134 70441594 70437786 70384808 70378166 70396406 70390608 70339466 70332414 70409910 70404696 70352778 70348166 70370722 70367410 70315020 70308262 70420690 70418030 70368144 70360830 70387324 70381106 70329260 70323564 70379608 70374330 70320866 70316884 68871942 69889182 70037498 69995236 70088244 70058956 70194500 70173260 70322334 70282936 70440732 70404710 70386170 70343796 70501020 70472096 69976292 69929454 70083374 70050320 70139146 70099344 70245328 70217620 70364456 70342894 70468952 70442974 70426768 70394470 70527260 70500538 70473866 70286656 70508936 70485530 70595142 70407782 70629786 70607522 70392222 70369668 70414088 70392168 70456588 70432590 70644082 70430278 70473054 70287062 70509268 70487064 70590390 70402116 70626812 70605134 70383686 70350166 70570690 70537688 70443234 70411524 70632350 70599022 69928134 69884700 70037668 69999836 70094396 70061492 70200200 70164744 70322378 70289896 70431734 70397022 70381898 70355110 70492088 70456182 69970474 69945354 70073844 70037756 70140152 70105350 70236692 70199888 70365164 70343530 70456992 70422940 70427582 70404652 70513470 70489468 70477988 70291626 70500212 70477318 70599342 70410754 70620806 70597686 70392868 70370350 70403180 70444262 70457432 70433482 70629124 70597712 70480358 70292426 70500934 70477994 70597142 70408234 70618130 70593822 70381842 70352404 70558524 70526510 70445420 70412454 70617432 70412846 69990698 69970382 70115624 70082414 70159388 70133634 70414386 70254734 70394980 70360028 70510272 70494246 70456124 70440640 70575138 70558804 70050030 70023352 70253900 70262426 70204804 70185384 70425724 70427558 70438736 70416566 70528594 70521966 70497214 70478718 70596738 70581366 70317198 70288590 70351730 70307556 70437974 70409202 70474650 70429674 70388638 70363834 70410588 70381818 70450044 70428700 70474510 70444898 70318508 70289022 70353410 70307762 70436748 70406010 70470684 70419210 70376846 70355780 70402146 70372492 70436944 70417006 70463900 70435040 70009164 69977554 70106328 70079566 70169842 70144212 70272018 70235638 70393222 70375320 70498122 70482104 70455474 70435892 70559532 70546490 70029358 70020020 70258482 70252792 70207326 70188674 70416398 70412900 70440076 70417460 70508540 70504066 70502062 70477864 70574788 70568926 70322418 70297982 70343036 70298920 70443132 70418478 70464968 70420006 70388496 70365136 70399348 70375248 70445918 70428408 70462336 70433452 70323106 70299308 70345150 70300468 70440114 70415278 70462218 70417082 70374246 70356770 70390750 70364520 70437378 70417684 70450908 70423446 70000024 69986008 70259432 70094194 70171606 70151456 70425526 70260306 70417872 70380416 70522380 70496774 70489134 70439822 70589686 70566622 70050796 70024066 70295024 70260812 70216306 70183468 70458276 70420998 70446718 70419016 70552586 70529136 70509330 70476548 70611884 70586726 70373342 70382968 70552332 70516542 70494768 70617652 70674136 70638466 70424064 70400034 70465716 70437618 70493070 70460750 70531670 70501634 70373942 70501436 70553382 70517650 70491190 70619998 70670496 70635886 70418610 70391720 70458836 70411600 70480616 70450202 70520268 70471408 70006044 69981794 70231922 70093172 70170466 70153214 70395808 70256262 70423096 70383598 70510144 70488120 70486728 70449196 70571674 70552576 70042474 70029240 70289808 70242540 70214240 70182588 70451804 70402108 70448842 70415272 70539548 70506232 70509724 70476086 70594024 70572868 70413354 70385444 70550698 70512290 70651660 70466868 70671514 70632872 70424712 70396376 70452166 70419520 70490576 70461846 70516836 70487966 70531816 70347250 70551100 70513034 70491304 70619778 70668606 70629514 70418388 70390462 70443768 70396782 70477908 70450094 70504770 70456854 70086030 70066534 70333650 70316450 70247810 70223900 70497370 70469392 70489548 70474188 70589944 70578360 70551344 70538640 70651012 70638302 70252914 70097814 70361366 70336176 70417340 70261536 70523014 70498214 70511362 70499580 70623638 70599482 70573728 70562596 70686608 70656932 70376074 70347546 70402038 70349876 70497530 70468928 70521854 70478488 70610196 70421404 70637250 70431174 70510092 70474888 70702232 70493882 70377020 70347506 70403560 70357636 70495510 70465798 70677564 70475478 70448330 70402454 70622682 70422604 70509012 70463742 70679662 70483394 70084978 70061362 70315450 70301314 70247754 70224344 70472760 70467688 70484936 70470348 70571316 70557432 70556696 70528346 70643024 70624864 70252992 70094982 70347506 70333174 70413308 70267480 70506356 70486280 70511812 70497058 70604766 70585282 70573044 70557364 70670848 70643794 70378430 70349620 70375844 70347496 70498534 70469494 70496420 70468276 70607492 70420996 70619642 70415984 70518336 70478266 70517062 70480914 70378236 70349834 70374596 70347990 70496056 70467216 70493608 70465184 70446178 70406814 70437712 70409250 70506616 70466312 70498730 70469314 70240742 70093120 70301012 70299366 70346462 70213038 70438822 70411126 70475330 70460896 70547030 70523316 70487340 70475186 70556448 70543966 70270816 70255090 70349770 70321110 70371650 70353178 70443594 70418776 70500752 70477186 70586012 70538142 70488430 70480410 70572438 70535248 70559400 70525682 70495796 70473686 70624328 70600318 70567788 70540782 70580618 70558100 70525324 70497154 70595678 70571868 70539732 70516802 70560176 70528482 70497790 70474618 70613178 70583470 70550430 70527414 70572610 70548662 70516342 70481348 70568532 70544600 70512212 70488602 70252384 70096858 70302908 70282808 70367418 70210672 70419098 70397860 70467680 70454788 70522416 70509766 70484306 70470358 70540516 70511548 70269960 70259254 70325166 70304786 70370954 70361282 70423802 70399232 70496548 70468756 70562522 70521304 70488416 70473978 70559690 70507104 70559674 70528718 70479642 70276600 70630258 70601536 70550012 70348278 70568886 70555344 70502006 70483464 70588602 70568704 70508280 70315960 70561076 70530844 70480730 70278744 70613030 70584448 70533040 70332104 70567850 70546276 70494532 70473990 70559934 70537132 70488766 70287364 70329540 70305292 70391090 70367724 70445698 70423694 70506518 70480474 70543568 70528270 70604304 70593510 70557466 70543376 70616612 70601032 70348032 70329782 70421830 70396766 70443870 70433334 70514406 70488674 70556008 70551998 70642890 70607688 70552216 70538776 70565078 70520616 70386486 70349676 70331380 70312842 70456298 70428534 70402190 70383276 70403240 70379302 70367380 70338292 70417926 70410442 70382300 70353138 70386982 70356524 70328492 70312556 70439332 70412314 70384472 70364958 70393972 70387816 70358280 70325868 70389260 70382542 70270558 70238078 70327758 70294606 70374378 70345872 70440672 70416068 70479688 70466708 70541874 70526280 70586826 70566176 70562822 70536798 70597456 70588576 70339690 70332864 70401112 70381204 70442806 70423186 70499708 70474562 70566178 70547846 70630498 70578740 70545802 70533068 70534198 70500394 70377484 70357928 70315132 70295312 70447918 70429104 70385004 70359998 70399884 70392590 70348096 70319550 70413878 70407614 70361550 70331916 70378574 70359508 70315600 70297268 70431202 70407122 70363706 70349114 70390706 70379880 70337124 70305832 70383128 70375612 70237460 70222564 70279780 70267366 70357248 70321262 70403464 70372076 70465078 70439142 70521052 70498658 70608426 70569816 70533206 70513640 70618256 70568520 70324542 70289588 70391000 70353808 70418416 70386616 70485648 70452450 70562514 70517088 70603940 70577306 70549624 70503368 70588736 70565664 70522762 70485510 70475068 70444690 70594638 70557184 70546054 70515566 70547650 70516912 70500850 70471466 70555574 70529586 70510352 70484732 70525426 70485690 70476216 70446392 70577918 70535176 70527610 70499214 70538864 70507742 70492362 70458816 70532434 70500086 70481940 70457744 70280768 70262208 70332652 70301914 70390098 70376872 70447066 70414782 70509942 70480634 70579694 70539754 70526654 70502028 70598930 70539928 70320766 70282046 70364628 70329734 70417626 70380012 70465016 70424640 70554830 70496578 70576982 70554296 70547160 70490746 70568732 70545696 70519774 70479536 70455782 70245248 70591206 70551318 70525856 70311910 70537808 70509622 70479620 70269526 70552872 70522594 70485510 70280402 70521224 70481120 70456020 70240696 70573828 70536102 70509210 70295084 70532904 70499326 70467020 70265812 70524768 70311146 70462990 70259312 70357578 70339268 70418314 70393560 70470194 70454674 70536950 70508838 70570610 70564942 70672276 70641630 70594962 70571962 70681906 70637556 70397752 70362838 70463600 70428528 70496256 70463580 70559072 70521320 70615986 70579130 70659522 70647044 70619242 70573212 70580146 70561730 70361060 70330366 70305118 70272698 70432624 70401070 70376496 70343370 70377444 70359242 70328674 70297752 70390646 70373202 70343780 70319200 70362718 70331494 70306626 70270640 70416248 70383624 70357592 70324918 70367418 70348828 70320242 70284560 70363208 70343894 70232296 70197248 70339288 70332546 70400448 70377578 70461894 70444282 70512670 70471226 70577826 70556562 70638978 70595740 70591380 70569482 70655368 70612194 70392504 70360560 70440692 70407580 70486670 70458868 70539220 70501008 70624846 70572388 70644430 70613264 70609890 70564048 70547606 70527686 70358182 70322302 70279620 70248270 70429610 70393890 70356938 70311752 70370356 70348066 70307280 70278488 70384260 70364454 70321040 70294558 70356776 70325436 70286788 70252826 70412626 70378406 70332684 70304018 70373932 70335476 70297610 70258562 70366250 70331752 70204326 70169556 69835646 69847188 69925956 69934838 68999730 69006224 70087110 70100524 70112988 70119988 70196834 70335022 70163292 70184412 70265666 70266942 68874490 69923926 69970310 69980934 70085660 69039164 70137930 70143528 70119426 70117024 70374466 70379450 70179834 70183708 70438616 70439032 70309178 70310720 70508262 70509814 70424452 70426868 70628896 70630794 70388336 70390856 70413552 70413330 70452796 70454854 70478778 70478164 70309694 70310966 70507720 70511184 70428810 70428330 70625518 70628766 70379724 70382196 70382696 70404702 70439152 70443462 70444420 70445756 69844572 69846192 69918666 68878246 69000792 70057420 70085438 70091810 70095684 70113058 70181002 70181624 70167790 70179972 70253058 70254146 68866536 69926620 69966502 69973748 70085768 69041058 70123390 70135664 70119266 70124204 70356624 70371506 70178968 70177676 70418220 70427696 70314286 70355392 70320704 70323216 70427620 70434350 70445740 70445484 70385806 70391320 70402530 70401664 70449274 70455582 70458766 70465574 70314584 70317682 70324490 70325882 70431404 70432334 70439714 70617104 70377386 70383442 70386808 70387514 70436956 70444526 70448200 70449742 69910076 69911362 69942488 69953094 70071866 70079944 70115244 70119290 70131840 70130842 70349142 70354290 70172148 70199604 70413762 70416098 69896728 69894812 69995098 69988176 70059122 70058520 70157364 70152642 70137408 70141272 70398554 70388198 70203454 70198964 70457472 70449300 70262582 70265022 70284790 70286758 70384410 70386296 70405458 70408272 70338130 70340432 70344326 70348646 70403536 70404824 70409016 70412944 70264184 70266656 70285448 70287566 70382514 70384246 70403582 70405512 70329928 70331900 70336484 70339920 70391070 70393358 70397530 70401232 69909082 69911392 69940078 69934398 70070412 70068188 70101768 70105442 70122448 70132060 70333088 70336860 70197882 70198116 70397688 70394016 69887074 69894916 69986230 69984758 70059872 70059086 70139732 70142284 70136616 70139302 70381796 70372902 70201462 70195536 70439108 70435966 70267396 70269322 70274010 70277982 70387812 70390964 70394336 70395676 70338794 70340836 70331012 70336348 70403302 70404754 70394890 70400350 70268160 70270086 70275626 70279010 70385204 70387216 70392412 70396604 70330406 70332034 70324244 70328456 70391334 70393406 70384406 70389252 69929738 69936082 70047216 70041292 70100206 70100730 70216310 70209280 70205450 70205892 70462280 70453434 70268280 70271916 70521192 70509298 69984792 69983568 70087196 70094584 70134600 70143556 70245966 70256724 70383552 70384804 70485648 70486646 70445674 70439854 70548784 70544724 70367202 70361678 70402406 70557938 70488612 70483822 70523466 70679098 70447302 70440040 70462720 70455290 70512312 70502956 70527040 70526892 70367696 70360706 70403154 70560240 70485672 70481412 70560648 70673892 70437440 70435350 70453946 70450916 70500514 70493572 70515386 70512068 69933430 69927998 70035060 70038096 70101276 70098442 70193162 70202670 70195860 70198916 70445432 70439244 70266982 70270504 70506274 70502214 69977538 69970620 70080964 70081756 70134934 70137456 70238948 70244150 70383348 70378272 70475598 70474198 70444478 70433000 70529872 70529664 70368556 70358406 70553418 70547776 70488274 70482180 70672460 70666690 70444938 70442646 70451702 70446722 70509828 70510458 70515452 70508104 70369992 70365098 70550544 70546796 70486794 70474658 70668810 70665102 70436892 70433426 70441936 70435510 70497972 70494774 70502960 70497186 69963520 69949504 70057242 70065720 70130330 70123148 70247450 70231022 70356050 70354396 70472250 70472674 70417508 70418890 70538752 70534832 70008122 69987464 70227942 70105068 70167142 70143768 70411782 70268832 70401048 70395218 70509538 70493340 70462114 70449068 70570502 70554636 70318738 70316314 70342330 70329882 70441158 70437096 70463244 70459086 70393722 70387386 70424944 70422498 70458922 70452696 70490600 70486164 70321060 70316102 70343006 70338388 70438064 70435076 70460662 70456764 70385664 70379674 70415254 70413126 70446566 70441196 70470946 70474368 69959874 69960058 70052002 70047938 70121186 70109984 70218560 70221226 70356092 70350094 70454092 70455282 70412992 70420728 70519766 70515524 69991538 69982536 70095532 70090196 70158468 70150528 70260724 70252306 70406418 70389104 70489982 70474638 70466214 70452912 70547576 70537420 70320836 70316964 70331438 70326370 70440926 70437386 70450446 70446570 70390188 70385454 70411456 70406562 70455462 70449334 70473808 70470712 70321552 70314966 70331310 70326412 70438084 70434542 70448820 70444820 70384094 70376860 70402382 70391282 70442422 70438088 70453206 70451954 70047130 70048618 70112456 70131574 70161746 70164488 70232058 70249300 70427526 70430246 70493270 70494962 70439438 70437506 70504616 70506426 70094624 70092704 70295410 70300506 70196204 70190008 70397260 70388686 70447336 70454882 70518836 70522060 70439578 70441082 70511058 70517206 70571248 70571766 70530238 70531028 70641658 70637350 70601026 70602620 70608634 70612954 70553428 70552904 70619242 70627692 70568776 70567702 70573494 70571622 70531578 70533226 70624404 70625974 70584262 70586194 70599232 70603438 70545020 70544260 70595238 70599488 70540936 70543652 70046264 70055666 70104254 70111478 70160864 70171450 70221150 70222846 70422384 70422966 70468822 70482930 70436938 70439002 70491272 70496922 70101690 70104810 70277414 70287228 70193938 70205512 70370498 70386702 70438096 70448426 70493422 70500646 70431890 70442834 70491460 70497546 70569812 70574132 70506902 70517112 70640302 70641346 70576952 70589492 70605438 70610078 70541098 70540472 70616764 70622818 70554244 70552980 70570594 70574084 70510662 70519272 70623590 70624326 70569638 70572596 70596132 70590452 70527868 70528698 70586028 70592998 70520688 70522604 70062604 70070210 70267012 70281808 70184588 70186354 70383530 70399832 70437646 70440562 70509868 70498210 70449426 70451054 70518822 70505974 70230664 70236210 70313812 70305184 70328698 70341644 70410194 70403556 70467890 70454654 70524338 70524612 70456316 70444330 70515734 70523942 70357908 70359890 70297592 70299366 70428266 70431502 70369606 70368158 70392146 70394506 70311522 70313144 70406694 70408996 70325064 70327482 70359212 70360880 70299152 70299684 70411342 70413038 70351978 70354232 70372104 70373318 70319892 70303944 70367176 70368836 70315062 70298754 70067110 70054278 70257362 70260316 70167638 70176718 70371872 70380104 70433624 70436840 70493874 70484090 70448530 70445938 70506416 70493444 70245034 70246238 70304878 70289160 70335398 70331598 70401388 70377642 70459084 70452548 70507722 70514566 70455402 70442760 70501914 70503954 70357794 70359642 70283948 70285884 70428010 70463286 70355438 70355384 70376812 70384132 70294042 70295532 70390978 70391918 70323442 70310706 70357620 70360616 70284760 70287750 70411930 70446262 70336486 70339774 70367864 70368474 70302930 70302576 70360006 70362570 70294818 70296030 70110928 70106490 70310082 70310154 70217072 70222020 70424642 70426076 70469788 70466700 70535106 70543038 70488620 70489042 70561430 70553184 70273474 70277526 70336524 70330396 70372708 70374424 70437586 70423476 70499814 70494976 70578044 70541110 70497764 70489872 70570482 70537502 70581250 70577514 70538464 70524242 70652972 70648724 70609216 70595636 70611744 70605548 70558904 70551506 70626334 70620438 70574124 70566778 70582936 70578040 70539040 70525294 70636030 70629192 70592354 70578402 70603496 70601328 70550166 70543306 70600276 70597930 70546290 70539534 70111704 70109804 70294038 70298650 70223734 70226338 70413756 70413856 70463744 70468690 70520084 70513016 70477958 70481000 70536180 70528100 70266896 70271010 70317976 70309496 70365120 70365834 70401704 70407850 70492554 70484594 70534410 70525540 70485594 70475942 70529446 70514528 70577010 70573844 70512486 70507888 70648354 70643192 70582184 70576244 70606708 70603824 70539358 70533356 70621440 70611518 70553944 70546832 70578648 70575584 70513192 70509268 70629634 70628008 70565544 70561256 70599362 70595236 70530316 70520978 70591942 70583820 70523316 70516926 70257182 70249560 70322516 70307720 70375452 70379808 70445968 70429848 70495148 70478038 70550570 70546150 70506218 70488228 70562558 70558148 70283910 70278550 70351000 70332872 70376282 70383376 70447336 70443724 70508722 70504770 70564010 70559462 70504780 70494234 70559252 70554022 70350426 70348594 70315956 70311790 70422086 70420414 70385700 70382564 70383548 70377072 70329872 70329990 70396730 70392066 70349306 70344984 70351606 70348928 70316592 70312774 70405478 70402796 70369374 70366448 70373554 70363820 70324246 70320212 70368570 70363080 70321246 70316144 70259558 70252436 70316676 70303598 70371562 70372610 70433818 70414216 70486134 70473036 70527532 70532286 70499900 70480686 70547232 70541114 70295502 70276142 70337154 70325570 70388518 70369536 70430656 70423382 70506250 70500524 70545720 70538402 70496090 70489818 70536780 70528740 70347288 70345222 70298248 70295598 70417502 70416644 70369088 70366368 70375716 70370662 70315780 70305102 70389530 70380444 70327130 70324020 70347630 70346918 70298556 70296174 70401654 70399372 70351076 70349412 70367630 70361966 70305890 70300452 70359160 70354464 70299202 70294584 69965446 69929140 70089782 70048420 70133610 70089670 70252370 70214452 70359226 70339758 70478744 70456826 70422408 70408378 70541196 70522366 70007970 69985390 70113784 70097798 70178592 70144638 70270850 70255158 70405792 70388354 70502204 70492356 70467524 70450094 70564298 70548080 70527482 70327728 70555086 70528594 70649094 70449362 70677326 70649134 70434180 70410798 70456212 70597728 70500406 70475344 70520044 70662554 70522920 70329658 70557362 70533552 70646554 70534760 70674506 70651718 70426700 70402472 70612266 70582532 70487536 70463886 70673798 70643914 69976096 69928508 70058588 70042508 70137018 70094704 70223204 70201282 70363860 70339198 70471836 70445456 70415088 70401816 70530822 70508278 70005954 69972636 70100176 70089642 70182206 70137264 70267296 70245540 70406374 70384220 70488926 70475392 70460382 70448362 70546256 70540370 70529954 70508330 70546492 70524152 70652588 70629116 70667942 70643926 70435538 70411278 70607754 70420916 70502058 70478346 70673076 70642448 70531364 70506150 70546068 70524706 70649496 70626846 70665074 70641752 70427096 70403874 70602148 70571162 70489240 70465852 70662708 70631328 69988500 69958140 70248424 70070318 70154824 70123020 70396936 70234106 70377834 70352422 70489096 70471470 70433946 70418980 70551786 70532788 70024608 69990778 70259826 70242792 70178120 70158078 70421818 70404200 70425060 70394818 70521886 70501648 70482194 70447614 70585974 70556838 70304782 70279062 70335494 70292062 70426256 70400452 70457334 70410948 70373604 70343250 70392150 70363312 70437952 70407142 70452724 70427654 70305406 70279944 70335834 70292938 70423102 70390716 70449686 70405636 70365872 70334994 70379850 70354546 70419204 70395276 70440858 70415958 69987550 69961726 70082306 70053104 70152562 70122418 70250004 70223266 70381190 70358214 70477026 70453724 70447868 70424536 70543784 70517804 70028816 69996958 70248884 70239110 70187086 70158130 70421708 70401574 70412624 70399018 70512790 70489606 70480038 70465248 70574792 70554880 70306912 70283502 70327280 70275810 70423164 70404572 70446126 70402602 70374912 70344248 70379418 70350610 70438122 70406072 70439476 70411586 70308654 70284438 70318154 70283318 70424896 70401918 70444052 70397740 70364014 70336228 70367370 70342430 70417216 70396160 70423616 70403380 70042768 70020544 70293024 70149098 70211096 70195708 70462918 70300798 70464754 70433546 70569650 70543428 70533092 70501298 70616308 70605856 70095898 70066512 70328586 70308152 70261302 70240756 70489502 70466366 70487048 70469058 70584070 70566906 70547474 70530126 70645118 70616168 70414694 70545924 70603398 70564220 70534788 70667778 70724870 70685440 70476994 70447496 70501944 70477254 70541726 70513622 70570486 70541646 70411304 70547500 70605130 70565732 70533236 70664358 70720144 70678468 70468556 70441344 70495348 70448762 70526330 70498396 70558254 70505366 70051328 70025090 70285950 70073748 70212400 70191922 70448696 70237934 70459984 70434384 70553306 70471076 70527882 70493080 70602260 70533970 70100798 70063708 70318342 70234730 70260940 70229322 70480136 70393290 70483964 70462334 70567886 70496540 70540100 70525292 70626142 70553070 70415972 70545802 70591862 70502722 70536510 70508764 70704672 70607670 70473180 70442012 70490756 70402994 70539738 70511656 70553332 70465886 70417322 70389428 70592936 70503290 70533858 70505280 70710292 70620506 70463096 70438188 70481958 70384348 70527740 70499542 70540194 70443516 70069194 70048436 70321688 70299472 70233750 70231784 70485806 70447236 70474800 70457698 70579382 70548852 70526968 70513940 70655578 70616552 70243992 70222290 70353408 70322966 70398376 70371950 70516200 70484514 70508862 70475860 70604450 70586536 70558366 70529128 70664818 70641626 70351168 70323986 70376852 70332812 70475434 70445670 70498976 70454566 70600588 70407654 70618202 70406694 70640346 70464972 70683280 70469522 70353526 70325846 70377770 70333210 70472524 70440482 70657970 70451780 70430246 70391768 70611074 70396316 70491076 70453066 70671970 70456516 70068658 70048090 70297992 70281908 70229458 70205038 70467408 70449018 70473158 70449738 70564070 70547192 70536970 70518464 70640216 70611548 70243914 70229386 70342384 70313526 70409114 70390256 70496632 70475372 70508918 70479558 70592926 70555400 70568358 70543950 70653892 70619030 70351442 70325396 70351264 70321214 70473150 70446540 70471948 70442166 70573978 70407020 70606144 70391800 70638720 70461920 70497018 70455582 70353074 70326710 70350730 70321758 70469130 70444120 70468926 70439388 70426828 70390300 70411124 70384430 70487526 70449978 70471384 70444442 70277698 70120300 70356710 70337624 70396310 70245138 70473612 70456606 70512418 70500200 70581780 70562386 70528264 70518674 70596974 70587680 70308546 70304604 70385600 70355176 70413024 70405868 70484228 70459938 70527978 70515604 70614200 70600882 70534912 70523844 70625168 70594846 70593882 70576774 70543962 70520456 70672342 70648844 70614712 70591860 70628040 70603152 70573388 70549544 70645642 70614686 70587406 70557674 70602832 70579468 70544830 70521858 70654764 70632142 70595588 70573474 70620960 70597848 70563856 70540894 70617566 70590402 70559014 70530768 70272646 70133856 70338954 70322572 70391524 70257390 70455386 70434418 70509682 70490890 70562390 70551766 70516148 70512632 70585344 70566044 70314854 70298968 70362026 70341536 70412208 70392994 70466230 70439580 70528768 70524494 70610026 70583386 70525790 70515002 70603202 70548356 70601690 70577506 70527010 70328478 70660050 70647112 70594752 70396856 70624650 70600820 70553054 70527452 70638686 70615976 70567780 70543612 70602596 70578542 70528444 70327876 70647340 70628708 70580898 70381230 70617534 70589904 70544376 70520800 70608018 70585722 70537142 70332516 70305422 70285146 70377852 70342970 70404842 70406362 70481120 70463126 70533582 70506054 70599394 70575766 70544300 70521928 70614210 70593230 70332474 70314182 70403084 70375510 70431694 70403858 70494254 70476190 70557824 70529504 70631946 70590490 70553638 70530214 70609738 70564370 70367572 70345730 70308210 70277148 70437846 70415436 70378106 70359668 70381846 70357720 70347562 70319582 70395906 70371818 70363946 70338854 70369142 70345650 70308984 70284066 70421934 70398464 70361682 70341410 70373304 70365754 70339516 70315502 70366928 70359104 70312026 70282056 70316636 70291210 70360940 70333390 70420212 70405952 70475736 70448252 70530188 70514198 70571498 70558526 70542252 70528900 70592806 70567112 70337566 70324726 70388384 70352332 70431408 70415980 70484354 70452732 70555770 70539738 70615216 70565032 70533872 70531314 70585508 70533314 70364316 70340610 70291236 70271796 70435660 70411866 70361844 70342938 70379508 70354120 70329050 70305064 70392806 70362982 70338942 70318676 70364256 70341818 70292266 70272928 70411854 70389104 70339670 70320170 70369248 70362214 70320044 70287910 70358612 70354758 70287264 70261922 70318132 70308548 70395044 70364260 70439240 70423846 70509532 70477132 70556174 70528828 70641988 70612350 70572228 70557274 70663370 70627808 70363624 70328570 70426532 70384630 70460636 70429946 70525002 70490860 70597914 70544172 70640890 70608024 70593540 70539920 70640378 70618486 70565766 70528620 70518788 70487266 70640780 70599288 70589676 70559606 70590242 70559610 70545990 70515166 70604758 70573686 70559474 70529198 70571472 70529678 70519664 70489370 70623354 70583146 70573066 70542220 70581284 70550892 70537130 70506230 70577598 70546174 70532528 70501416 70315010 70308900 70371968 70279896 70435416 70416942 70486270 70395080 70550256 70528040 70618018 70500066 70556890 70539252 70639704 70522194 70359062 70326022 70399464 70304716 70454204 70416184 70503914 70403720 70598284 70536286 70622716 70525204 70587230 70520144 70614662 70524154 70566292 70522702 70499278 70230582 70637210 70592948 70569840 70300938 70583682 70550302 70523170 70253956 70597632 70565118 70537620 70263442 70566452 70523550 70500738 70232050 70620408 70577274 70553110 70280900 70573752 70541324 70513630 70241192 70567292 70351840 70506818 70233402 70337046 70313250 70403106 70373894 70456348 70423394 70521424 70495338 70577834 70547128 70647364 70600274 70590132 70561086 70669856 70618188 70381492 70344560 70442946 70404884 70476594 70448838 70535326 70506632 70613458 70562610 70646748 70626410 70606368 70558910 70621862 70602874 70346718 70314056 70284900 70246630 70413932 70386022 70356152 70311610 70361346 70333784 70311078 70274462 70372774 70348428 70325364 70298276 70343444 70313464 70286132 70242088 70396916 70368348 70338838 70297714 70352724 70324830 70302332 70257048 70344190 70320476 70271022 70229814 70341282 70319506 70388564 70357996 70448996 70433196 70506070 69424936 70570840 70541536 70628090 70574228 70581168 70551182 70646198 70593524 70377376 70341848 70420920 70377062 70476084 70441316 70521120 69429166 70609444 70548402 70626646 69555954 70590070 70536964 70596990 69455554 70340884 70307820 70264640 70228092 70412374 70375092 70335936 70298838 70353834 70324886 70287120 70253988 70369562 70339062 70296932 70268220 70341902 70308924 70266100 70229228 70394154 70354194 70314858 70281982 70350278 70315188 70273646 70239058 70343212 70308052 70243700 69102914 46034632 69965212 69027954 70078346 70085806 69032104 69144500 70193836 69072392 70122654 70373782 70371550 69137044 70180012 70440316 70446446 69990938 68957986 70101172 70099240 70122782 70119278 70216088 70217668 69242424 70295260 70385522 70396078 70353516 70355068 70450120 70453426 70242602 70245954 70274428 70276924 69314996 70367794 70373974 70398288 70184430 70183852 70217502 70224356 70248308 70251654 70272100 70274142 70243348 70244624 70275078 70277824 70360906 70365202 70393842 70396056 70170308 70177830 70198196 70199936 70231966 70235826 70258732 70261880 69992942 69970946 69017524 70068782 70095890 70093704 70189956 70190750 70109690 70125654 70354662 70369074 70181514 70189622 70417592 70425572 70021208 70007430 70083278 70090144 69081484 70132750 70194818 70217188 70290734 70298348 70377292 70377002 70354774 70358014 70442722 70442898 70244400 70250520 70266318 70267872 70368224 70371122 70387090 70389728 70185702 70188244 70196056 70197780 70248130 70252350 70259014 70260292 70248770 70251218 70266724 70269772 70365582 70368724 70383796 70387078 70175950 70179352 70186864 70185284 70232892 70235268 70247286 70249256 70057024 70054054 70158654 70150212 70157158 70168822 70280170 70272606 70353792 70350856 70455308 70447646 70419178 70415288 70518672 70514916 70082968 70090008 70311702 70311966 70200412 70211082 70427410 70429444 70367904 70363630 70466958 70468908 70431002 70429426 70523882 70534608 70249438 70251810 70280462 70291694 70369394 70373408 70401688 70412048 70195862 70196584 70211782 70212658 70259682 70262182 70290516 70294732 70253618 70253278 70279912 70292492 70372034 70371112 70399252 70409952 70187602 70191808 70216578 70222594 70248674 70245000 70277928 70283378 70059820 70053602 70145822 70149140 70180272 70181732 70270910 70263736 70347954 70354326 70439198 70430838 70411528 70413088 70493462 70503486 70080194 70082646 70298300 70301258 70191798 70193552 70420106 70420682 70367978 70364008 70456242 70453266 70423666 70424188 70513502 70516984 70256542 70252804 70277474 70283068 70377832 70376408 70396650 70404410 70203420 70197168 70200076 70201106 70267272 70261508 70278564 70282664 70258280 70256916 70277868 70284890 70372472 70390530 70395716 70401588 70187580 70191960 70206436 70210568 70249298 70253472 70263650 70270834 70079678 70077950 70318336 70320512 70207930 70185676 70445776 70439144 70371656 70372262 70484670 70487876 70438998 70440862 70553850 70552536 70094490 70092658 70353770 70331324 70208928 70209406 70466090 70461206 70404166 70395852 70500392 70505010 70460496 70457134 70566370 70562388 70318158 70314492 70333278 70329594 70439252 70435238 70454652 70451944 70249242 70247320 70276866 70269628 70313652 70310206 70380344 70337548 70319534 70316586 70334648 70330656 70436546 70433568 70452424 70448886 70239932 70236538 70268488 70341000 70301652 70290830 70369076 70364546 70089004 70072224 70303770 70307214 70208222 70201610 70426516 70434330 70368808 70376342 70474720 70462410 70432858 70438086 70547558 70537856 70091620 70099524 70335834 70331952 70212814 70217252 70457730 70452020 70408966 70392660 70489496 70481916 70444790 70451776 70554230 70547772 70319064 70316146 70321006 70319056 70440616 70436584 70439452 70439748 70251370 70243148 70262840 70258498 70311430 70307284 70326184 70323034 70320576 70318064 70323356 70318596 70438000 70434994 70440816 70436578 70238942 70234700 70254530 70326772 70299796 70291170 70393638 70347822 70151122 70164310 70410438 70395352 70268454 70285270 70530156 70513224 70453056 70452428 70564574 70564074 70520012 70513972 70637572 70632568 70326312 70323430 70420826 70427618 70447036 70441562 70539960 70540944 70490162 70471256 70572310 70578534 70553902 70538534 70640088 70643412 70329526 70320524 70347768 70353744 70451494 70441858 70469190 70474878 70265420 70261204 70281416 70279960 70330550 70326156 70346318 70344178 70329474 70321752 70347928 70354454 70449168 70440616 70466284 70470296 70256952 70252426 70272538 70270268 70318352 70314196 70333940 70332088 70156444 70165738 70394408 70385446 70276866 70270408 70521582 70498430 70448162 70451256 70560846 70551960 70515706 70513118 70612572 70617414 70336104 70308136 70398788 70406272 70451714 70433794 70525142 70534290 70484376 70474674 70558646 70560806 70541632 70526624 70615568 70623296 70328256 70325032 70342264 70342272 70448134 70439204 70461810 70463256 70264596 70259690 70266742 70265822 70324386 70324100 70331734 70329016 70329756 70323456 70342726 70343562 70446438 70437484 70460656 70460442 70256564 70251524 70258258 70257188 70311650 70311846 70319400 70309746 70328374 70332510 70370422 70394178 70395000 70400838 70454734 70460852 70435574 70441788 70482706 70497908 70448178 70459614 70499126 70514466 70344844 70350102 70415040 70406486 70405746 70404220 70470146 70473782 70449848 70452978 70514106 70520480 70444962 70456214 70512214 70520616 70327378 70329954 70269274 70276778 70395192 70401470 70338574 70347914 70399416 70402438 70168582 70351390 70413188 70418678 70181690 70184934 70326968 70325002 70274040 70274424 70381902 70379418 70327088 70507480 70391468 70393788 70158768 70344576 70216950 70389332 70154322 70157454 70327472 70332504 70363046 70380054 70398352 70399398 70441250 70444386 70429348 70431344 70475798 70482878 70455014 70453818 70487840 70493718 70349142 70356290 70401270 70401038 70394980 70408164 70458516 70454166 70429722 70444774 70499004 70510164 70430902 70446796 70498602 70502120 70323654 70323258 70256220 70258856 70394798 70393544 70323814 70328670 70396500 70400974 70151856 70154498 70241374 70414550 70166082 70167696 70312378 70322762 70257468 70259700 70374570 70376974 70310386 70312728 70216688 70390968 70142164 70145076 70210820 70212016 70134884 70137966 70402330 70395436 70467396 70468268 70467102 70468780 70537404 70540152 70512322 70517102 70564036 70561856 70531040 70528436 70573174 70573738 70419812 70432914 70492670 70494398 70475612 70487894 70545038 70546482 70515496 70518314 70571980 70584922 70508444 70508314 70568418 70583364 70337134 70339186 70291814 70294808 70407480 70410886 70362204 70365270 70234112 70234224 70181828 70187936 70250112 70253674 70196120 70202344 70335898 70340916 70285090 70295764 70391590 70393908 70344720 70347360 70226408 70229524 70166756 70177618 70220964 70225886 70181210 70183536 70400642 70397072 70453666 70453518 70472730 70470310 70516866 70526392 70520376 70515434 70546316 70546546 70532978 70531976 70571668 70560232 70416230 70430646 70472422 70480668 70482200 70484472 70523296 70534568 70529508 70528460 70562114 70567460 70520934 70525258 70564678 70573000 70337448 70339958 70280672 70280810 70408104 70411126 70349946 70346562 70226344 70235080 70166318 70171366 70247522 70248894 70191472 70185526 70338224 70341120 70280656 70282072 70388934 70393530 70333400 70334952 70223520 70225508 70163394 70173152 70216916 70219004 70157186 70165758 70371458 70369576 70426810 70426352 70441532 70434422 70508760 70495862 70477678 70471146 70548628 70546192 70489736 70489306 70564672 70562646 70395788 70380252 70466260 70448608 70451958 70446798 70514970 70509822 70497584 70494586 70569698 70571836 70495864 70493484 70570676 70567032 70347274 70342844 70470888 70466926 70417800 70410470 70543436 70539430 70409274 70404812 70354056 70351334 70422932 70419910 70369256 70364880 70345842 70337878 70470190 70468622 70401242 70393106 70525782 70521314 70399520 70396308 70345514 70341844 70341962 70338170 70287560 70283246 70370818 70365400 70415782 70413234 70441340 70434954 70490668 70484562 70462808 70467190 70525888 70527792 70475528 70479032 70544828 70543340 70392396 70390928 70449790 70437674 70448634 70441488 70498696 70493042 70489424 70493198 70561514 70554336 70486332 70484978 70551034 70544990 70343292 70340404 70445104 70441268 70412934 70410066 70515234 70511726 70397518 70395490 70172754 70166234 70405434 70413738 70186548 70178796 70345070 70338530 70445224 70442866 70393278 70389922 70498772 70494334 70386346 70389902 70162128 70158490 70326230 70151690 70097572 70096900 70451126 70447404 70507900 70504952 70522238 70518352 70580506 70576570 70549752 70538558 70599524 70611842 70559520 70569596 70613938 70618322 70476346 70473370 70537808 70538112 70530286 70519856 70588058 70583914 70562352 70565026 70641390 70650674 70554078 70559462 70645412 70640322 70351074 70348950 70293182 70293520 70424022 70419652 70368766 70364966 70248056 70235246 70193612 70192358 70257282 70250306 70207456 70207636 70353738 70349930 70295508 70294978 70406546 70398148 70350474 70343792 70234496 70226134 70185158 70191060 70175140 70166354 70124560 70132420 70442698 70443600 70492528 70489046 70514488 70511616 70562506 70559838 70543334 70529788 70589802 70582986 70548232 70567112 70600382 70604740 70470162 70467188 70523536 70521870 70527888 70523676 70577468 70576186 70560490 70558196 70635348 70624872 70551330 70562422 70627550 70613310 70349328 70345854 70284570 70279074 70418366 70416700 70355190 70342686 70238512 70230542 70175100 70181208 70252060 70244972 70194936 70194720 70350970 70346964 70285760 70279412 70401404 70398984 70337558 70331972 70229002 70222868 70174738 70166552 70168618 70161278 70114334 70106960 70097184 70084498 70356170 70331510 70220968 70205736 70476284 70452928 70397216 70384482 70512076 70486526 70461300 70450972 70584238 70553746 70283390 70097620 70380814 70353340 70397600 70220160 70500456 70473552 70435054 70393110 70518224 70507902 70498488 70448726 70584950 70567092 70294198 70270880 70320018 70291854 70415680 70389540 70440606 70414060 70393432 70218714 70431632 70408942 70461284 70283154 70496590 70292266 70294972 70271656 70320274 70294496 70412764 70390784 70436252 70411988 70390262 70194978 70422316 70217916 70299354 70256542 70484306 70280708 70099488 70081002 70347678 70311562 70221820 70207566 70464306 70425690 70397240 70376936 70502446 70480716 70456014 70452932 70575410 70542230 70287826 70258348 70364570 70344190 70404870 70368118 70476012 70459692 70437442 70394852 70512252 70492198 70499482 70454768 70569354 70549876 70298304 70275240 70311156 70285582 70419110 70396898 70432742 70405478 70398316 70219674 70420468 70215972 70460578 70267926 70479758 70279236 70299162 70276958 70312978 70286376 70417022 70393492 70429340 70403810 70391134 70196742 70411384 70207284 70450568 70257590 70472050 70267944 70318992 70290996 70430390 70396980 70441004 70419648 70549004 70522086 70462876 70453860 70580768 70569542 70538742 70523800 70640460 70633762 70354220 70321238 70451952 70429016 70473592 70447576 70575068 70549052 70502786 70467742 70595462 70586422 70566292 70527298 70664002 70646960 70309350 70284370 70323256 70293298 70430814 70406328 70444660 70415944 70232686 70220786 70243530 70242118 70297980 70285804 70309192 70305574 70309486 70284438 70324214 70293968 70427988 70402476 70441354 70412022 70225156 70213366 70254412 70233242 70300746 70268476 70314814 70293732 70325852 70293204 70427286 70394274 70449740 70422304 70540612 70512656 70479988 70454002 70575518 70553468 70542204 70522082 70625668 70622160 70355862 70331204 70449534 70427550 70478314 70449636 70565332 70544536 70503710 70474332 70574824 70574468 70564820 70534064 70640480 70633464 70312326 70291318 70315078 70287522 70434020 70412928 70428938 70407914 70235210 70227586 70230196 70230192 70297914 70290952 70293252 70294140 70315200 70292798 70315678 70288008 70430910 70410268 70430350 70404840 70226504 70218422 70240078 70221510 70300718 70279656 70300474 70282078 70335764 70308730 70437518 70407984 70451300 70432598 70563628 70530862 70509964 70465690 70590976 70561572 70562194 70524478 70652464 70629538 70362888 70333332 70459346 70439398 70482432 70447418 70580184 70555436 70498370 70484212 70620738 70583862 70570456 70533900 70679486 70640200 70339698 70317324 70373802 70344170 70467392 70438754 70495854 70467180 70285402 70261248 70483550 70458312 70350440 70324880 70548816 70523792 70346032 70317672 70374814 70346598 70464214 70436792 70493750 70464212 70277082 70245666 70479440 70450036 70342760 70313582 70540550 70511386 70340052 70308170 70429154 70394950 70460320 70429090 70551028 70511924 70495834 70462704 70580046 70548332 70556228 70533396 70640082 70610078 70360584 70334942 70443136 70425278 70481032 70451726 70565786 70539250 70507082 70483878 70607058 70559542 70567256 70544514 70666246 70628364 70347248 70317448 70363190 70334122 70467738 70438958 70483340 70449372 70283430 70259172 70478830 70444510 70352148 70323364 70537042 70508086 70348546 70315906 70363504 70324426 70465474 70436678 70481468 70446696 70278472 70409142 70463364 70435846 70495236 70311356 70524972 70496170 70421794 70385722 70506870 70476472 70543284 70509090 70625798 70603102 70565702 70547152 70662938 70634644 70642040 70617500 70726688 70695772 70444016 70406188 70532450 70515666 70562746 70534068 70658498 70628306 70571300 70565038 70692074 70664266 70633266 70623564 70749698 70723022 70369948 70337860 70553692 70335482 70493090 70462474 70675628 70457398 70288338 70263244 70303584 70292974 70352492 70330364 70361780 70357360 70371330 70341628 70554910 70335974 70489432 70458174 70673468 70454544 70279732 70257424 70300988 70284148 70341066 70318484 70362516 70345328 70418964 70385548 70498542 70478218 70539526 70500562 70615648 70597892 70558432 70551722 70648660 70616872 70628504 70611620 70707730 70682696 70444858 70417072 70530658 70504558 70559410 70534346 70645450 70621986 70579368 70557140 70675316 70640840 70638500 70617024 70733372 70706670 70372184 70314426 70364572 70331906 70492662 70435504 70488620 70453388 70294224 70261460 70303694 70277648 70357832 70328170 70366998 70341266 70373370 70315702 70364682 70333812 70490862 70461862 70486030 70449924 70285652 70255824 70298110 70267948 70346664 70316048 70358862 70328442 70424750 70397040 70489518 70460002 70485950 70469238 70557674 70535860 70530916 70498110 70603264 70571550 70542338 70521182 70613724 70586922 70441350 70429444 70512458 70490434 70494238 70483714 70569140 70534256 70557356 70518746 70628410 70592206 70544276 70522460 70626448 70590766 70358966 70317944 70462340 70438898 70426128 70389630 70532950 70511064 70423466 70217824 70371022 70171220 70437676 70232184 70384774 70185222 70360436 70318398 70463864 70440326 70413002 70371932 70515654 70493928 70415378 70208724 70361926 70161652 70409968 70204538 70357386 70157290 70425770 70390530 70471750 70449938 70496712 70468220 70539194 70520420 70526264 70501450 70578724 70548382 70531142 70512038 70596816 70553536 70448088 70429700 70501506 70467308 70506710 70482582 70545792 70530576 70553040 70512962 70605316 70575244 70545562 70514178 70601524 70568258 70341804 70317380 70438834 70271288 70412102 70388302 70516108 70340570 70420616 70214880 70175604 70151936 70432324 70228568 70189880 70165416 70341874 70318044 70441548 70271158 70394354 70361144 70495486 70324760 70410826 70204742 70165730 70141292 70403934 70198352 70158538 70128258 70489174 70473820 70558018 70535426 70564652 70547276 70632576 70607060 70587276 70575310 70667630 70644400 70606300 70584958 70677396 70659138 70528318 70505190 70588562 70560630 70583362 70559788 70643784 70620740 70611238 70600044 70702784 70672522 70620098 70592646 70613518 70586618 70364562 70341118 70308624 70287818 70435166 70410310 70378830 70346416 70257216 70234236 70202920 70177908 70271526 70260712 70216428 70192188 70364874 70340602 70305368 70287668 70418052 70393338 70362538 70338690 70247936 70232276 70192712 70156868 70243254 70228368 70105194 70081250 70486236 70474294 70543962 70521826 70557170 70548740 70611902 70578980 70589340 70571920 70642836 70624956 70603020 70585496 70653512 70635398 70526254 70495738 70574514 70545572 70579244 70553118 70622692 70595272 70622610 70592552 70680374 70659426 70608258 70592450 70590824 70553424 70363566 70340122 70287412 70264386 70427618 70412062 70362260 70339522 70256308 70243460 70180560 70157780 70271100 70256550 70196604 70168506 70364936 70341962 70293412 70272880 70417774 70392912 70345820 70324716 70247878 70225728 70172800 70089440 70239388 70222058 70083130 69994170 70464998 70428142 70524738 70494516 70532274 70503830 70599094 70561182 70578130 70539988 70651400 70601486 70589312 70554534 70663806 70620502 70483142 70460012 70567876 70534010 70544942 70499558 70600390 70589456 70605420 70564472 70665550 70632966 70602172 70559774 70657140 70632506 70329658 70298692 70447882 70417760 70400012 70370074 70520102 70489312 70387642 70190608 70196468 70189702 70402676 70204014 70220166 70205296 70330184 70299334 70449632 70418948 70383358 70353180 70500492 70472156 70379362 70178316 70198254 70180302 70320994 70120538 70141980 70120670 70461912 70426380 70504058 70472232 70530730 70497966 70570842 70545676 70564742 70530226 70621760 70574014 70585800 70541164 70636274 70600396 70488228 70456008 70543934 70513856 70541008 70505698 70603058 70564666 70599332 70551488 70639208 70611530 70586942 70546868 70635974 70601284 70324286 70293700 70428948 70231568 70395968 70363210 70499470 70302756 70380954 70181552 70177060 70154690 70395634 70192946 70188954 70165856 70325944 70294168 70430242 70232104 70380394 70347218 70482848 70286088 70371652 70168006 70165762 70141710 70311496 70109860 70128582 70081640 70537720 70505790 70590830 70566510 70611822 70581364 70670150 70640686 70644134 70613640 70723424 70692206 70656908 70629586 70732450 70703382 70558174 70532260 70630076 70598900 70616750 70591608 70683372 70653630 70677112 70643294 70734470 70702690 70667846 70639052 70648022 70617920 70325742 70305480 70278176 70250260 70401234 70372838 70351490 70319814 70228914 70198380 70198708 70204550 70243170 70213584 70212760 70214190 70331088 70302494 70279670 70250184 70384392 70355614 70334448 70300208 70219874 70185434 70189746 70192028 70161666 70127504 70049028 70030888 70531668 70495304 70577850 70547790 70594746 70562832 70628646 70610834 70640206 70605820 70694912 70664310 70652374 70617244 70709654 70679576 70565316 70529710 70615036 70585402 70614274 70578248 70654728 70635554 70672870 70641602 70714956 70684118 70666040 70626950 70620572 70593144 70327078 70294968 70262396 70224838 70398522 70365852 70332344 70296732 70224442 70186488 70211594 70195004 70239524 70199988 70228948 70216988 70329312 70296124 70263368 70228170 70381402 70346926 70314046 70280462 70215244 70177474 70202030 70196238 70154758 70116544 70056888 70055702 68978874 68962190 70117584 70117152 70146232 69090302 70240180 70242790 70323180 70328724 70417344 70417566 70230848 70386370 70488062 70491138 70054208 70058486 70141002 70146238 70171130 70166568 70257666 70257918 70339016 70344726 70438888 70435538 70395948 70404518 70496376 70497720 70290388 70290068 70319238 70318594 70412156 70412184 70440436 70440628 70240600 70239752 70269474 70310172 70305144 70306042 70334008 70331678 70290900 70291988 70319214 70319556 70409874 70409124 70439328 70437244 70231624 70234268 70237306 70239868 70293824 70293956 70300774 70302194 68967108 68970690 70109172 70118196 70129626 69096654 70228506 70238578 70320672 70321856 70412134 70410188 70228050 70386394 70475736 70476118 70052360 69006144 70140588 70139092 70163564 70165318 70254842 70259176 70339636 70343654 70419630 70419792 70399634 70402194 70479678 70485814 70295280 70294746 70310960 70310814 70415782 70416224 70430826 70431304 70241806 70242196 70257810 70255106 70305242 70306138 70298930 70300784 70297008 70296550 70310922 70311240 70413170 70410828 70428418 70428710 70233076 70231518 70226496 70229098 70293688 70296678 70285908 70288692 70046534 70047152 70133462 70263834 70166538 70163744 70385906 70389244 70337684 70338694 70442636 70424880 70400024 70391530 70507310 70492950 70079206 70066974 70284054 70283124 70178296 70181902 70405802 70407934 70361152 70352410 70449922 70454540 70413800 70405592 70510972 70514990 70248176 70250758 70271184 70271564 70370912 70372120 70392802 70397086 70187944 70174670 70195488 70202526 70252176 70254070 70263618 70267730 70249402 70251768 70271468 70278254 70367506 70367176 70389952 70395472 70175096 70165308 70203594 70193744 70235400 70227004 70263830 70255062 70035082 70025248 70128032 70127130 70167166 70156814 70242540 70246176 70342612 70340394 70428062 70410876 70408864 70401466 70491182 70478774 70066400 70071012 70285678 70290482 70178482 70187370 70401004 70405386 70362924 70349740 70433136 70444660 70423494 70412362 70495672 70497666 70253602 70255560 70263212 70263632 70373746 70376122 70382798 70384346 70188792 70190184 70186670 70190414 70251984 70252968 70262504 70253974 70253592 70256670 70263164 70264562 70371468 70370436 70379138 70382362 70176160 70181966 70190566 70174798 70235640 70227104 70250950 70241402 70110150 70128616 70376338 70367886 70249056 70246008 70490504 70485912 70420106 70428344 70536598 70530538 70478160 70493066 70605480 70603612 70140764 70138534 70399846 70387200 70249544 70250692 70517260 70502712 70444440 70452612 70535902 70535436 70500924 70494472 70614112 70604284 70363278 70360996 70377400 70378328 70485098 70479484 70500926 70499284 70295012 70291470 70320070 70316102 70359016 70355898 70388630 70539518 70361792 70361710 70380688 70377410 70482330 70480082 70498070 70496440 70284758 70281810 70470344 70465866 70346078 70342700 70531368 70528112 70118806 70126836 70356138 70354522 70240370 70250658 70476114 70476776 70415038 70404144 70516074 70520348 70481440 70489574 70578632 70583256 70139024 70134482 70389010 70375120 70248410 70247538 70505074 70483874 70456520 70450632 70530766 70524552 70507356 70489908 70589586 70591326 70358622 70362172 70369212 70367148 70484882 70483218 70490728 70486474 70293232 70289380 70309872 70455156 70355770 70352060 70527182 70523506 70364560 70362298 70370722 70367888 70482376 70480068 70483858 70478078 70278050 70279548 70455046 70451690 70340198 70341026 70515844 70512324 70267460 70146126 70390778 70373186 70400748 70267036 70516544 70497638 70436326 70440936 70552742 70539330 70497782 70489232 70624530 70610498 70320298 70293688 70408380 70401978 70431946 70420468 70531854 70525406 70480072 70460754 70559976 70563440 70533072 70518520 70623258 70622892 70302590 70306314 70336912 70332348 70425536 70427058 70458222 70454142 70246880 70242286 70264420 70254794 70311378 70306622 70327948 70319786 70304618 70307060 70337028 70332998 70422168 70424772 70455106 70451854 70237220 70233814 70255868 70245932 70299034 70295014 70315520 70307906 70285258 70289760 70380528 70363460 70411118 70409622 70500398 70482282 70437474 70433836 70546382 70524200 70500084 70494642 70608904 70590220 70315198 70307724 70407508 70393018 70436882 70421568 70523434 70512814 70478396 70451966 70541410 70549398 70536982 70519532 70606966 70603546 70305290 70305486 70326464 70321206 70425360 70427268 70446120 70441704 70244106 70240482 70249558 70235544 70308048 70303362 70312760 70301176 70306472 70308104 70325546 70321338 70422632 70424676 70443754 70438856 70235728 70231592 70239816 70231344 70296364 70289546 70301500 70297684 70370498 70381112 70433462 70433246 70449860 70452282 70507192 70497150 70481002 70484540 70536914 70546742 70495398 70501306 70550572 70556554 70398964 70398946 70460366 70466356 70454800 70446414 70516294 70518168 70495164 70501224 70567094 70570294 70492324 70491694 70559492 70563866 70369182 70371482 70360902 70333886 70438478 70442884 70391126 70405498 70447916 70450316 70400700 70402946 70462758 70465366 70415606 70417820 70370522 70372696 70321728 70335376 70423894 70425974 70373610 70388508 70439514 70441036 70386976 70393094 70434948 70436734 70202966 70389976 70377568 70374868 70417752 70418138 70441976 70448110 70493532 70489232 70486346 70491896 70521412 70518868 70498356 70502176 70535816 70542030 70397950 70392572 70448252 70451660 70452566 70444254 70499458 70504664 70485308 70490404 70546980 70548506 70481220 70482308 70544408 70546886 70369812 70366918 70305600 70308646 70440232 70441974 70379764 70381316 70445102 70446400 70200230 70204352 70457296 70461006 70215462 70216084 70371404 70371998 70306954 70311196 70423592 70425332 70361480 70363734 70435072 70435722 70187930 70189358 70425788 70429384 70184940 70185372 70387624 70380124 70444716 70444578 70465162 70454442 70516284 70519906 70505166 70495500 70548126 70551118 70527778 70512894 70559096 70560204 70418698 70409948 70470830 70472806 70469126 70471216 70522724 70528730 70509348 70507458 70581842 70566000 70498438 70497062 70568380 70565634 70326912 70329388 70272766 70274608 70398236 70400756 70344408 70345730 70224532 70225754 70167642 70169734 70238690 70240446 70182590 70184136 70328194 70327608 70274274 70276254 70381876 70382838 70326488 70329200 70209600 70209756 70158094 70159936 70205526 70204656 70153908 70156528 70393916 70382384 70436078 70433858 70459828 70451524 70503276 70498856 70496596 70491536 70527466 70537896 70521006 70509324 70544636 70547196 70418956 70411248 70459504 70467796 70464566 70459654 70509050 70514484 70504852 70505416 70549008 70556066 70494686 70495434 70550288 70545648 70327138 70329004 70259448 70260508 70397066 70399484 70330056 70331908 70216592 70222062 70151584 70152132 70230924 70228838 70165054 70166052 70323646 70329448 70260232 70262874 70380978 70383720 70308594 70314838 70207700 70205082 70150984 70140516 70200314 70198534 70144088 70136526 70418416 70409542 70478626 70475206 70490688 70479098 70552926 70544972 70515656 70521726 70591724 70586714 70536798 70530048 70601768 70597818 70440062 70442818 70495236 70494412 70502120 70490248 70558280 70548258 70544976 70547482 70624220 70608042 70543542 70535318 70612876 70602524 70387758 70382692 70514360 70508334 70456240 70453954 70586194 70577148 70458484 70452430 70402274 70395544 70473024 70466876 70413452 70409390 70388680 70383710 70516786 70508946 70441508 70436324 70569360 70562592 70449942 70442900 70392208 70386600 70391968 70386002 70334306 70328558 70414804 70406054 70465684 70453854 70483520 70472376 70528540 70527412 70514064 70511040 70571180 70571604 70521808 70526722 70586018 70585586 70443562 70431900 70487680 70470060 70498016 70479678 70542596 70532212 70540092 70536492 70596816 70590930 70527258 70531614 70587952 70577100 70381674 70376290 70497964 70490094 70454296 70450084 70569388 70560086 70447658 70445810 70211402 70208550 70465796 70460506 70225182 70222788 70385114 70379876 70499906 70493060 70437874 70433710 70552420 70546162 70441876 70436700 70202382 70199746 70382438 70376722 70140682 70139146 70431926 70423144 70485568 70489834 70504642 70495766 70557632 70564274 70534510 70531912 70609394 70589644 70549012 70541100 70617008 70598498 70458558 70453620 70519890 70520514 70510452 70515680 70577670 70559988 70567032 70546320 70633918 70630938 70555132 70534934 70629714 70625050 70341510 70336058 70277000 70273426 70412566 70407890 70348806 70344912 70228472 70223494 70177314 70173244 70243018 70239998 70191868 70187362 70341456 70337884 70278258 70273806 70394398 70391552 70328634 70327944 70221306 70211472 70167632 70161796 70163282 70158922 70110758 70106098 70430686 70425222 70466872 70469852 70501212 70490334 70543698 70544642 70528318 70525078 70583014 70572986 70542714 70533576 70597838 70585412 70448078 70458266 70508016 70494146 70509572 70505796 70555528 70557112 70553922 70545338 70615216 70611872 70551098 70525404 70598120 70604054 70337432 70333562 70261098 70256950 70408334 70404860 70331734 70324654 70223870 70221596 70157996 70153098 70237664 70233950 70172354 70174750 70335234 70334118 70262246 70258284 70392482 70384880 70307528 70311450 70213986 70213536 70155984 70150038 70152856 70150250 70096352 70086830 70146504 70119888 70397756 70364900 70268500 70249886 70522984 70492278 70431386 70412716 70542612 70539860 70508136 70492980 70607214 70603790 70326550 70293228 70412396 70398088 70446584 70405262 70537542 70513004 70480586 70460084 70567762 70546714 70538484 70507008 70628740 70602666 70337540 70316114 70360840 70338414 70459188 70436354 70482432 70459022 70453258 70266548 70471086 70447270 70517142 70329424 70536036 70511156 70338980 70316876 70362058 70339592 70457032 70435214 70479118 70457448 70434362 70258548 70467684 70254300 70495682 70318044 70519882 70316202 70143220 70127902 70394318 70346286 70417622 70248432 70511964 70481088 70443638 70414816 70540942 70532082 70500888 70493740 70603844 70586320 70331346 70301610 70408564 70374844 70447536 70415246 70524944 70493414 70478354 70455640 70554210 70541346 70533816 70499676 70611724 70600302 70340948 70318854 70352082 70326636 70461292 70439486 70472922 70446732 70453814 70267126 70455886 70268670 70505828 70330260 70523266 70311748 70341904 70319598 70351296 70317820 70460832 70436180 70463658 70443974 70434614 70259174 70452302 70240376 70496090 70296790 70513498 70302770 70298162 70266940 70410110 70385060 70418044 70396426 70528288 70502388 70453718 70439654 70569880 70546272 70523486 70503558 70637964 70613678 70345128 70303234 70442266 70410232 70462032 70419604 70559982 70534304 70493186 70465148 70574066 70560894 70549902 70518782 70633438 70621478 70292120 70262704 70316820 70281292 70414728 70387868 70438030 70401958 70220984 70195708 70223560 70219074 70281872 70272314 70287700 70283576 70293986 70267128 70315840 70281834 70411784 70381220 70435808 70400408 70212016 70199932 70234082 70210758 70272538 70261676 70295342 70271104 70312022 70293898 70403414 70379348 70443882 70411760 70517946 70500766 70459806 70446448 70557256 70540046 70520232 70508400 70625886 70604644 70347134 70322624 70432660 70407778 70466184 70434328 70542142 70525410 70493480 70477904 70560660 70542468 70551574 70536064 70624796 70606388 70299300 70271418 70304734 70271884 70419374 70392364 70428698 70392936 70220210 70196200 70211122 70206928 70283660 70260210 70274772 70270122 70296752 70271700 70304420 70273788 70417536 70389632 70425304 70384290 70211644 70200708 70222618 70197066 70271994 70259716 70282106 70258630 70382856 70344842 70473164 70445136 70506384 70464668 70592352 70570824 70539082 70507162 70627384 70601490 70595656 70585752 70690062 70661268 70397628 70375420 70507286 70476576 70521966 70491626 70623356 70600320 70553084 70528244 70660890 70631738 70613042 70589198 70722978 70685028 70393104 70360210 70409036 70379028 70514578 70488712 70530358 70501264 70331052 70305932 70536362 70501508 70396334 70371924 70599764 70566050 70396468 70368302 70410586 70381384 70513640 70485240 70529184 70499254 70324294 70298424 70522240 70493122 70384026 70360284 70583478 70554546 70381860 70346082 70466860 70374678 70503132 70463546 70587744 70489436 70540190 70516040 70615844 70530560 70595734 70579754 70681840 70592676 70405362 70377402 70497622 70396374 70522586 70494050 70612246 70520228 70549812 70516940 70641428 70549244 70605326 70580510 70697968 70606802 70394320 70366294 70398324 70307278 70518916 70489716 70519518 70428844 70327646 70305590 70475012 70426552 70393804 70368614 70579960 70489382 70398342 70367626 70399256 70308610 70511132 70484060 70515140 70426178 70327462 70297866 70508134 70416362 70386380 70511018 70568228 70477158 70401688 70366716 70499330 70468420 70524564 70483964 70619438 70585918 70555646 70528492 70638416 70615736 70615140 70594696 70700918 70682136 70422506 70387200 70519048 70493538 70539810 70515022 70643718 70615884 70564456 70549494 70672218 70638658 70613038 70602948 70726988 70699592 70521496 70318988 70534802 70314892 70642026 70439912 70656670 70436140 70267764 70245394 70300676 70270048 70332612 70311434 70365372 70335140 70520872 70319534 70535108 70315774 70639268 70435338 70653972 70433734 70259568 70239834 70290200 70261536 70320250 70301464 70351044 70322588 70402854 70371990 70485358 70456470 70522308 70497158 70604432 70575238 70563826 70534190 70627758 70594872 70622678 70596712 70694106 70656408 70425430 70395848 70509542 70487466 70546048 70510574 70614688 70603742 70557030 70531692 70656576 70625730 70619244 70588394 70717598 70693232 70496914 70320660 70350800 70304236 70618052 70441834 70472752 70424672 70264956 70244660 70279848 70255470 70328998 70305430 70346438 70318776 70497636 70321188 70352242 70304284 70614992 70439394 70469548 70422010 70257308 70241364 70276542 70246520 70317974 70301804 70336276 70307022 70462694 70440306 70527448 70500016 70543438 70515874 70602582 70574692 70574288 70552998 70637516 70617044 70591390 70567952 70660932 70632124 70489796 70469822 70554268 70524518 70550616 70529234 70600126 70584802 70596430 70564804 70669334 70639136 70599294 70565134 70666520 70642014 70394336 70365502 70513840 70486840 70473540 70441508 70583996 70558008 70467060 70265324 70421480 70217544 70488072 70281744 70434722 70230404 70403688 70369540 70514618 70487426 70455048 70423350 70567168 70536736 70465160 70257764 70412000 70208464 70460180 70254180 70407650 70202444 70457242 70444494 70498714 70490478 70532490 70511236 70576780 70550938 70573052 70545292 70618412 70597694 70578746 70556656 70641142 70613082 70495114 70474646 70542268 70511800 70548308 70526476 70584504 70565664 70598562 70570822 70646922 70622206 70588898 70554020 70641760 70618184 70402410 70366696 70496708 70302434 70472536 70438888 70566920 70374102 70470172 70259188 70402362 70196048 70483794 70277944 70237036 70210142 70403388 70371284 70496900 70303502 70454256 70421956 70548542 70357050 70458128 70251350 70209022 70185892 70453360 70247396 70201814 70179730 70481972 70455188 70541478 70518056 70546798 70526960 70607194 70588374 70571794 70558988 70639866 70616858 70590538 70575954 70668030 70640848 70507354 70489220 70566146 70544368 70564834 70543580 70621356 70591624 70611728 70571094 70681582 70657418 70605628 70571534 70654740 70627220 70342326 70318404 70281798 70265316 70413718 70390060 70357796 70336918 70240160 70216732 70188194 70159806 70255444 70230680 70201840 70169566 70343232 70319876 70287726 70266626 70393282 70372800 70341434 70320088 70231910 70216234 70171298 70147206 70226686 70211150 70132450 70119880 70478206 70455948 70514474 70500790 70557794 70530426 70597064 70564196 70571480 70558830 70628118 70590972 70585792 70569992 70647250 70625098 70510566 70487676 70550308 70531250 70564014 70541488 70604906 70571542 70608786 70581566 70657440 70640406 70591046 70577180 70635136 70610006 70343136 70318124 70273196 70248084 70414282 70389616 70343192 70318582 70230498 70212226 70165930 70135810 70247996 70225610 70175150 70152194 70343688 70312038 70273434 70246498 70397374 70372980 70326606 70301602 70224048 70212224 70152726 70070548 70217914 70204610 70122342 70038206 70499706 70474750 70560596 70529300 70576736 70548584 70629048 70601246 70620462 70570932 70681686 70656844 70633148 70589832 70702560 70673442 70525300 70490176 70598946 70575960 70580098 70550694 70664188 70635046 70642628 70612456 70706060 70679452 70641124 70611240 70704422 70671180 70373004 70340988 70492560 70462184 70443830 70412084 70563280 70533334 70434174 70402342 70250260 70235360 70448144 70246562 70261160 70250112 70374066 70342424 70493246 70463362 70427648 70395272 70546288 70515588 70424636 70223180 70239822 70222108 70368158 70165040 70181840 70159868 70500734 70471842 70547636 70450648 70574170 70538918 70614978 70518028 70613118 70577538 70662730 70573256 70621352 70589458 70677512 70582942 70529408 70495150 70589544 70487886 70579284 70547704 70636288 70551230 70640066 70606330 70683110 70593048 70628260 70591370 70673392 70585276 70366468 70335210 70473086 70216270 70438046 70404976 70543844 70286596 70426432 70223558 70222586 70135606 70441052 70237678 70231650 70146050 70368822 70335584 70473774 70214876 70419790 70389160 70526650 70269102 70417338 70225760 70212550 70122566 70356912 70164848 70162820 70060642 70518066 70488602 70577320 70546036 70590510 70557686 70644030 70610972 70629224 70587732 70698338 70666636 70644208 70605334 70715944 70683752 70538888 70508050 70608018 70588830 70596058 70566020 70665458 70646752 70664286 70623268 70712706 70684730 70654722 70617782 70685124 70656194 70306820 70275624 70263436 70231982 70377490 70346550 70334584 70302520 70209680 70183638 70179980 70177472 70224192 70198626 70195130 70185154 70307548 70277234 70264502 70231572 70357570 70326686 70308864 70271516 70200476 70171918 70171464 69117092 70142464 70113326 70077562 69019252 70512736 70481312 70552640 69480956 70586440 70551754 70627490 70593970 70624146 70592226 70680644 70647936 70638180 70608562 70692540 70655866 70542362 70510366 70594372 69522112 70594922 70564328 70647194 70616666 70652076 70613400 70682002 69615782 70648076 70592308 70663362 69523108 70304658 70269378 70238716 70209050 70374962 70340840 70304620 70279194 70199294 70174608 70183630 69131778 70214066 70189140 70197000 69158426 70304118 70270926 70234194 70210622 70358086 70323620 70289870 70262748 70190698 70161724 70177968 70183920 70130514 70101770 69050600 70043144))
(proc-makes* count (325 353 371 388 397 414 414 431 402 419 419 436 410 427 427 444 361 378 378 395 400 417 417 434 405 422 422 439 409 426 426 443 408 425 419 436 431 448 442 459 429 446 440 457 437 454 448 465 414 431 425 442 433 450 444 461 431 448 442 459 432 449 443 460 340 357 371 388 401 418 414 431 406 423 419 436 414 431 427 444 365 382 378 395 404 421 417 434 409 426 422 439 413 430 426 443 412 429 419 436 435 452 442 459 433 450 440 457 441 458 448 465 418 435 425 442 437 454 444 461 435 452 442 459 436 453 443 460 377 394 390 407 419 436 432 449 421 438 434 451 428 445 441 458 379 396 392 409 417 434 430 447 419 436 432 449 422 439 435 452 431 448 438 455 453 470 460 477 448 465 455 472 455 472 462 479 432 449 439 456 450 467 457 474 445 462 452 469 445 462 452 469 381 398 390 407 423 440 432 449 425 442 434 451 432 449 441 458 383 400 392 409 421 438 430 447 423 440 432 449 426 443 435 452 435 452 438 455 457 474 460 477 452 469 455 472 459 476 462 479 436 453 439 456 454 471 457 474 449 466 452 469 449 466 452 469 369 384 386 401 412 427 429 444 417 432 434 449 425 440 442 457 376 391 393 408 415 430 432 447 420 435 437 452 424 439 441 456 414 429 425 440 437 452 448 463 435 450 446 461 443 458 454 469 420 435 431 446 439 454 450 465 437 452 448 463 438 453 449 464 373 388 386 401 416 431 429 444 421 436 434 449 429 444 442 457 380 395 393 408 419 434 432 447 424 439 437 452 428 443 441 456 418 433 425 440 441 456 448 463 439 454 446 461 447 462 454 469 424 439 431 446 443 458 450 465 441 456 448 463 442 457 449 464 392 407 405 420 434 449 447 462 436 451 449 464 443 458 456 471 394 409 407 422 432 447 445 460 434 449 447 462 437 452 450 465 437 452 444 459 459 474 466 481 454 469 461 476 461 476 468 483 438 453 445 460 456 471 463 478 451 466 458 473 451 466 458 473 396 411 405 420 438 453 447 462 440 455 449 464 447 462 456 471 398 413 407 422 436 451 445 460 438 453 447 462 441 456 450 465 441 456 444 459 463 478 466 481 458 473 461 476 465 480 468 483 442 457 445 460 460 475 463 478 455 470 458 473 455 470 458 473 403 420 411 428 437 454 445 462 441 458 449 466 440 457 448 465 408 425 416 433 438 455 446 463 442 459 450 467 437 454 445 462 443 460 437 454 457 474 451 468 454 471 448 465 453 470 447 464 447 464 441 458 457 474 451 468 454 471 448 465 446 463 440 457 407 424 411 428 441 458 445 462 445 462 449 466 444 461 448 465 412 429 416 433 442 459 446 463 446 463 450 467 441 458 445 462 447 464 437 454 461 478 451 468 458 475 448 465 457 474 447 464 451 468 441 458 461 478 451 468 458 475 448 465 450 467 440 457 421 438 425 442 454 471 458 475 455 472 459 476 453 470 457 474 421 438 425 442 450 467 454 471 451 468 455 472 445 462 449 466 461 478 451 468 474 491 464 481 468 485 458 475 466 483 456 473 460 477 450 467 469 486 459 476 463 480 453 470 454 471 444 461 425 442 425 442 458 475 458 475 459 476 459 476 457 474 457 474 425 442 425 442 454 471 454 471 455 472 455 472 449 466 449 466 465 482 451 468 478 495 464 481 472 489 458 475 470 487 456 473 464 481 450 467 473 490 459 476 467 484 453 470 458 475 444 461 406 421 414 429 440 455 448 463 444 459 452 467 443 458 451 466 411 426 419 434 441 456 449 464 445 460 453 468 440 455 448 463 437 452 431 446 451 466 445 460 448 463 442 457 447 462 441 456 441 456 435 450 451 466 445 460 448 463 442 457 440 455 434 449 410 425 414 429 444 459 448 463 448 463 452 467 447 462 449 464 415 430 419 434 445 460 449 464 449 464 453 468 444 459 446 461 441 456 431 446 455 470 445 460 452 467 442 457 451 466 439 454 445 460 435 450 455 470 445 460 452 467 442 457 444 459 432 447 424 439 428 443 457 472 461 476 458 473 462 477 456 471 460 475 424 439 428 443 453 468 457 472 454 469 458 473 448 463 452 467 455 470 445 460 468 483 458 473 462 477 452 467 460 475 450 465 454 469 444 459 463 478 453 468 457 472 447 462 448 463 438 453 428 443 428 443 461 476 461 476 462 477 462 477 460 475 458 473 428 443 428 443 457 472 457 472 458 473 458 473 452 467 450 465 459 474 445 460 472 487 458 473 466 481 452 467 464 479 448 463 458 473 444 459 467 482 453 468 461 476 447 462 452 467 436 451 378 385 395 402 421 428 438 445 426 433 443 450 434 441 451 458 385 392 402 409 424 431 441 448 429 436 446 453 433 440 450 457 426 433 437 444 449 456 460 467 447 454 458 465 455 462 466 473 432 439 443 450 451 458 462 469 449 456 460 467 450 457 461 468 382 389 395 402 425 432 438 445 430 437 443 450 438 445 451 458 389 396 402 409 428 435 441 448 433 440 446 453 437 444 450 457 430 437 437 444 453 460 460 467 451 458 458 465 459 466 466 473 436 443 443 450 455 462 462 469 453 460 460 467 454 461 461 468 397 404 410 417 439 446 452 459 441 448 454 461 448 455 461 468 399 406 412 419 437 444 450 457 439 446 452 459 442 449 455 462 445 452 452 459 467 474 474 481 462 469 469 476 469 476 476 483 446 453 453 460 464 471 471 478 459 466 466 473 459 466 466 473 401 408 410 417 443 450 452 459 445 452 454 461 452 459 461 468 403 410 412 419 441 448 450 457 443 450 452 459 446 453 455 462 449 456 452 459 471 478 474 481 466 473 469 476 473 480 476 483 450 457 453 460 468 475 471 478 463 470 466 473 463 470 466 473 389 383 406 400 432 426 449 443 437 431 454 448 445 439 462 456 396 390 413 407 435 429 452 446 440 434 457 451 444 438 461 455 428 422 439 433 451 445 462 456 449 443 460 454 457 451 468 462 434 428 445 439 453 447 464 458 451 445 462 456 452 446 463 457 393 387 406 400 436 430 449 443 441 435 454 448 449 443 462 456 400 394 413 407 439 433 452 446 444 438 457 451 448 442 461 455 432 426 439 433 455 449 462 456 453 447 460 454 461 455 468 462 438 432 445 439 457 451 464 458 455 449 462 456 456 450 463 457 408 402 421 415 450 444 463 457 452 446 465 459 459 453 472 466 410 404 423 417 448 442 461 455 450 444 463 457 453 447 466 460 447 441 454 448 469 463 476 470 464 458 471 465 471 465 478 472 448 442 455 449 466 460 473 467 461 455 468 462 461 455 468 462 412 406 421 415 454 448 463 457 456 450 465 459 463 457 472 466 414 408 423 417 452 446 461 455 454 448 463 457 457 451 466 460 451 445 454 448 473 467 476 470 468 462 471 465 475 469 478 472 452 446 455 449 470 464 473 467 465 459 468 462 465 459 468 462 417 424 425 432 451 458 459 466 455 462 463 470 454 461 462 469 422 429 430 437 452 459 460 467 456 463 464 471 451 458 459 466 451 458 445 452 465 472 459 466 462 469 456 463 461 468 455 462 455 462 449 456 465 472 459 466 462 469 456 463 454 461 448 455 421 428 425 432 455 462 459 466 459 466 463 470 458 465 462 469 426 433 430 437 456 463 460 467 460 467 464 471 455 462 459 466 455 462 445 452 469 476 459 466 466 473 456 463 465 472 455 462 459 466 449 456 469 476 459 466 466 473 456 463 458 465 448 455 431 438 435 442 464 471 468 475 465 472 469 476 463 470 467 474 431 438 435 442 460 467 464 471 461 468 465 472 455 462 441 448 465 472 455 462 478 485 468 475 472 479 462 469 470 477 460 467 464 471 454 461 473 480 463 470 467 474 457 464 458 465 430 437 435 442 435 442 468 475 468 475 469 476 469 476 467 474 467 474 435 442 435 442 464 471 464 471 465 472 465 472 459 466 441 448 469 476 455 462 482 489 468 475 476 483 462 469 474 481 460 467 468 475 454 461 477 484 463 470 471 478 457 464 462 469 430 437 416 410 424 418 450 444 458 452 454 448 462 456 453 447 461 455 421 415 429 423 451 445 459 453 455 449 463 457 450 444 458 452 431 425 425 419 445 439 439 433 442 436 436 430 441 435 435 429 435 429 429 423 445 439 439 433 442 436 436 430 434 428 428 422 420 414 424 418 454 448 458 452 458 452 462 456 457 451 459 453 425 419 429 423 455 449 459 453 459 453 463 457 454 448 456 450 435 429 425 419 449 443 439 433 446 440 436 430 445 439 433 427 439 433 429 423 449 443 439 433 446 440 436 430 438 432 426 420 430 424 434 428 463 457 467 461 464 458 468 462 462 456 466 460 430 424 434 428 459 453 463 457 460 454 464 458 454 448 440 434 445 439 435 429 458 452 448 442 452 446 442 436 450 444 440 434 444 438 434 428 453 447 443 437 447 441 437 431 438 432 410 404 434 428 434 428 467 461 467 461 468 462 468 462 466 460 464 458 434 428 434 428 463 457 463 457 464 458 464 458 458 452 438 432 449 443 435 429 462 456 448 442 456 450 442 436 454 448 438 432 448 442 434 428 457 451 443 437 451 445 437 431 442 436 408 402 362 374 391 403 423 435 434 446 428 440 439 451 436 448 447 459 387 399 398 410 426 438 437 449 431 443 442 454 435 447 446 458 434 446 439 451 457 469 462 474 455 467 460 472 463 475 468 480 440 452 445 457 459 471 464 476 457 469 462 474 458 470 463 475 360 372 385 397 421 433 428 440 426 438 433 445 434 446 441 453 385 397 392 404 424 436 431 443 429 441 436 448 433 445 440 452 432 444 433 445 455 467 456 468 453 465 454 466 461 473 462 474 438 450 439 451 457 469 458 470 455 467 456 468 456 468 457 469 403 415 410 422 445 457 452 464 447 459 454 466 454 466 461 473 405 417 412 424 443 455 450 462 445 457 452 464 448 460 455 467 457 469 458 470 479 491 480 492 474 486 475 487 481 493 482 494 458 470 459 471 476 488 477 489 471 483 472 484 471 483 472 484 401 413 404 416 443 455 446 458 445 457 448 460 452 464 455 467 403 415 406 418 441 453 444 456 443 455 446 458 446 458 449 461 455 467 452 464 477 489 474 486 472 484 469 481 479 491 476 488 456 468 453 465 474 486 471 483 469 481 466 478 469 481 466 478 391 401 402 412 434 444 445 455 439 449 450 460 447 457 458 468 398 408 409 419 437 447 448 458 442 452 453 463 446 456 457 467 436 446 441 451 459 469 464 474 457 467 462 472 465 475 470 480 442 452 447 457 461 471 466 476 459 469 464 474 460 470 465 475 389 399 396 406 432 442 439 449 437 447 444 454 445 455 452 462 396 406 403 413 435 445 442 452 440 450 447 457 444 454 451 461 434 444 435 445 457 467 458 468 455 465 456 466 463 473 464 474 440 450 441 451 459 469 460 470 457 467 458 468 458 468 459 469 414 424 421 431 456 466 463 473 458 468 465 475 465 475 472 482 416 426 423 433 454 464 461 471 456 466 463 473 459 469 466 476 459 469 460 470 481 491 482 492 476 486 477 487 483 493 484 494 460 470 461 471 478 488 479 489 473 483 474 484 473 483 474 484 412 422 415 425 454 464 457 467 456 466 459 469 463 473 466 476 414 424 417 427 452 462 455 465 454 464 457 467 457 467 460 470 457 467 454 464 479 489 476 486 474 484 471 481 481 491 478 488 458 468 455 465 476 486 473 483 471 481 468 478 471 481 468 478 429 441 431 443 463 475 465 477 467 479 469 481 466 478 468 480 434 446 436 448 464 476 466 478 468 480 470 482 463 475 465 477 469 481 457 469 483 495 471 483 480 492 468 480 479 491 467 479 473 485 461 473 483 495 471 483 480 492 468 480 472 484 460 472 427 439 425 437 461 473 459 471 465 477 463 475 464 476 462 474 432 444 430 442 462 474 460 472 466 478 464 476 461 473 459 471 467 479 451 463 481 493 465 477 478 490 462 474 477 489 461 473 471 483 455 467 481 493 465 477 478 490 462 474 470 482 454 466 447 459 445 457 480 492 478 490 481 493 479 491 479 491 477 489 447 459 445 457 476 488 474 486 477 489 475 487 471 483 469 481 487 499 471 483 500 512 484 496 494 506 478 490 492 504 476 488 486 498 470 482 495 507 479 491 489 501 473 485 480 492 464 476 445 457 439 451 478 490 472 484 479 491 473 485 477 489 471 483 445 457 439 451 474 486 468 480 475 487 469 481 469 481 463 475 485 497 465 477 498 510 478 490 492 504 472 484 490 502 470 482 484 496 464 476 493 505 473 485 487 499 467 479 478 490 458 470 428 438 430 440 462 472 464 474 466 476 468 478 465 475 467 477 433 443 435 445 463 473 465 475 467 477 469 479 462 472 464 474 459 469 447 457 473 483 461 471 470 480 458 468 469 479 457 467 463 473 451 461 473 483 461 471 470 480 458 468 462 472 450 460 426 436 424 434 460 470 458 468 464 474 462 472 463 473 459 469 431 441 429 439 461 471 459 469 465 475 463 473 460 470 456 466 457 467 441 451 471 481 455 465 468 478 452 462 467 477 449 459 461 471 445 455 471 481 455 465 468 478 452 462 460 470 442 452 446 456 444 454 479 489 477 487 480 490 478 488 478 488 476 486 446 456 444 454 475 485 473 483 476 486 474 484 470 480 468 478 477 487 461 471 490 500 474 484 484 494 468 478 482 492 466 476 476 486 460 470 485 495 469 479 479 489 463 473 470 480 454 464 444 454 438 448 477 487 471 481 478 488 472 482 476 486 468 478 444 454 438 448 473 483 467 477 474 484 468 478 468 478 460 470 475 485 455 465 488 498 468 478 482 492 462 472 480 490 458 468 474 484 454 464 483 493 463 473 477 487 457 467 468 478 446 456 399 401 410 412 442 444 453 455 447 449 458 460 455 457 466 468 406 408 417 419 445 447 456 458 450 452 461 463 454 456 465 467 447 449 452 454 470 472 475 477 468 470 473 475 476 478 481 483 453 455 458 460 472 474 477 479 470 472 475 477 471 473 476 478 397 399 404 406 440 442 447 449 445 447 452 454 453 455 460 462 404 406 411 413 443 445 450 452 448 450 455 457 452 454 459 461 445 447 446 448 468 470 469 471 466 468 467 469 474 476 475 477 451 453 452 454 470 472 471 473 468 470 469 471 469 471 470 472 418 420 425 427 460 462 467 469 462 464 469 471 469 471 476 478 420 422 427 429 458 460 465 467 460 462 467 469 463 465 470 472 466 468 467 469 488 490 489 491 483 485 484 486 490 492 491 493 467 469 468 470 485 487 486 488 480 482 481 483 480 482 481 483 416 418 419 421 458 460 461 463 460 462 463 465 467 469 470 472 418 420 421 423 456 458 459 461 458 460 461 463 461 463 464 466 464 466 461 463 486 488 483 485 481 483 478 480 488 490 485 487 465 467 462 464 483 485 480 482 478 480 475 477 478 480 475 477 406 395 417 406 449 438 460 449 454 443 465 454 462 451 473 462 413 402 424 413 452 441 463 452 457 446 468 457 461 450 472 461 445 434 450 439 468 457 473 462 466 455 471 460 474 463 479 468 451 440 456 445 470 459 475 464 468 457 473 462 469 458 474 463 404 393 411 389 447 436 454 432 452 441 459 437 460 449 467 445 411 400 418 396 450 439 457 435 455 444 462 440 459 448 466 444 443 432 444 422 466 455 467 445 464 453 465 443 472 461 473 451 449 438 450 428 468 457 469 447 466 455 467 445 467 456 468 446 425 414 432 421 467 456 474 463 469 458 476 465 476 465 483 472 427 416 434 423 465 454 472 461 467 456 474 463 470 459 477 466 464 453 465 454 486 475 487 476 481 470 482 471 488 477 489 478 465 454 466 455 483 472 484 473 478 467 479 468 478 467 479 468 423 412 426 404 465 454 468 446 467 456 470 448 474 463 477 455 425 414 428 406 463 452 466 444 465 454 468 446 468 457 471 449 462 451 459 437 484 473 481 459 479 468 476 454 486 475 483 461 463 452 460 438 481 470 478 456 476 465 473 451 476 465 473 451 438 440 440 442 472 474 474 476 476 478 478 480 475 477 477 479 443 445 445 447 473 475 475 477 477 479 479 481 472 474 474 476 472 474 460 462 486 488 474 476 483 485 471 473 482 484 470 472 476 478 464 466 486 488 474 476 483 485 471 473 475 477 463 465 436 438 434 436 470 472 468 470 474 476 472 474 473 475 471 473 441 443 439 441 471 473 469 471 475 477 473 475 470 472 468 470 470 472 454 456 484 486 468 470 481 483 465 467 480 482 464 466 474 476 458 460 484 486 468 470 481 483 465 467 473 475 457 459 452 454 450 452 485 487 483 485 486 488 484 486 484 486 482 484 452 454 450 452 481 483 479 481 482 484 480 482 476 478 456 458 486 488 470 472 499 501 483 485 493 495 477 479 491 493 475 477 485 487 469 471 494 496 478 480 488 490 472 474 479 481 445 447 450 452 444 446 483 485 477 479 484 486 478 480 482 484 476 478 450 452 444 446 479 481 473 475 480 482 474 476 474 476 450 452 484 486 464 466 497 499 477 479 491 493 471 473 489 491 469 471 483 485 463 465 492 494 472 474 486 488 466 468 477 479 439 441 433 422 435 424 467 456 469 458 471 460 473 462 470 459 472 461 438 427 440 429 468 457 470 459 472 461 474 463 467 456 469 458 448 437 436 425 462 451 450 439 459 448 447 436 458 447 446 435 452 441 440 429 462 451 450 439 459 448 447 436 451 440 439 428 431 420 429 407 465 454 463 441 469 458 467 445 468 457 464 442 436 425 434 412 466 455 464 442 470 459 468 446 465 454 461 439 446 435 430 408 460 449 444 422 457 446 441 419 456 445 438 416 450 439 434 412 460 449 444 422 457 446 441 419 449 438 431 409 447 436 445 434 480 469 478 467 481 470 479 468 479 468 477 466 447 436 445 434 476 465 474 463 477 466 475 464 471 460 451 440 462 451 446 435 475 464 459 448 469 458 453 442 467 456 451 440 461 450 445 434 470 459 454 443 464 453 448 437 455 444 421 410 445 434 439 417 478 467 472 450 479 468 473 451 477 466 469 447 445 434 439 417 474 463 468 446 475 464 469 447 469 458 443 421 460 449 440 418 473 462 453 431 467 456 447 425 465 454 443 421 459 448 439 417 468 457 448 426 462 451 442 420 453 442 413 391 399 416 416 433 422 439 439 456 420 437 437 454 428 445 445 462 406 423 423 440 425 442 442 459 423 440 440 457 427 444 444 461 402 419 413 430 425 442 436 453 402 419 413 430 410 427 421 438 408 425 419 436 427 444 438 455 404 421 415 432 405 422 416 433 403 420 416 433 426 443 439 456 424 441 437 454 432 449 445 462 410 427 423 440 429 446 442 459 427 444 440 457 431 448 444 461 406 423 413 430 429 446 436 453 406 423 413 430 414 431 421 438 412 429 419 436 431 448 438 455 408 425 415 432 409 426 416 433 422 439 435 452 444 461 457 474 439 456 452 469 446 463 459 476 424 441 437 454 442 459 455 472 437 454 450 467 440 457 453 470 425 442 432 449 447 464 454 471 421 438 428 445 428 445 435 452 426 443 433 450 444 461 451 468 418 435 425 442 418 435 425 442 426 443 435 452 448 465 457 474 443 460 452 469 450 467 459 476 428 445 437 454 446 463 455 472 441 458 450 467 444 461 453 470 429 446 432 449 451 468 454 471 425 442 428 445 432 449 435 452 430 447 433 450 448 465 451 468 422 439 425 442 422 439 425 442 414 429 431 446 437 452 454 469 435 450 452 467 443 458 460 475 421 436 438 453 440 455 457 472 438 453 455 470 442 457 459 474 408 423 419 434 431 446 442 457 408 423 419 434 416 431 427 442 414 429 425 440 433 448 444 459 410 425 421 436 411 426 422 437 418 433 431 446 441 456 454 469 439 454 452 467 447 462 460 475 425 440 438 453 444 459 457 472 442 457 455 470 446 461 459 474 412 427 419 434 435 450 442 457 412 427 419 434 420 435 427 442 418 433 425 440 437 452 444 459 414 429 421 436 415 430 422 437 437 452 450 465 459 474 472 487 454 469 467 482 461 476 474 489 439 454 452 467 457 472 470 485 452 467 465 480 455 470 468 483 431 446 438 453 453 468 460 475 427 442 434 449 434 449 441 456 432 447 439 454 450 465 457 472 424 439 431 446 424 439 431 446 441 456 450 465 463 478 472 487 458 473 467 482 465 480 474 489 443 458 452 467 461 476 470 485 456 471 465 480 459 474 468 483 435 450 438 453 457 472 460 475 431 446 434 449 438 453 441 456 436 451 439 454 454 469 457 472 428 443 431 446 428 443 431 446 444 461 452 469 458 475 466 483 455 472 463 480 454 471 462 479 449 466 457 474 459 476 467 484 456 473 464 481 451 468 459 476 433 450 427 444 447 464 441 458 423 440 417 434 422 439 416 433 437 454 431 448 447 464 441 458 423 440 417 434 415 432 409 426 448 465 452 469 462 479 466 483 459 476 463 480 458 475 462 479 453 470 457 474 463 480 467 484 460 477 464 481 455 472 459 476 437 454 427 444 451 468 441 458 427 444 417 434 426 443 416 433 441 458 431 448 451 468 441 458 427 444 417 434 419 436 409 426 462 479 466 483 475 492 479 496 469 486 473 490 467 484 471 488 462 479 466 483 471 488 475 492 465 482 469 486 459 476 463 480 451 468 441 458 464 481 454 471 437 454 427 444 435 452 425 442 450 467 440 457 459 476 449 466 432 449 422 439 423 440 413 430 466 483 466 483 479 496 479 496 473 490 473 490 471 488 471 488 466 483 466 483 475 492 475 492 469 486 469 486 463 480 463 480 455 472 441 458 468 485 454 471 441 458 427 444 439 456 425 442 454 471 440 457 463 480 449 466 436 453 422 439 427 444 413 430 447 462 455 470 461 476 469 484 458 473 466 481 457 472 465 480 452 467 460 475 462 477 470 485 459 474 467 482 454 469 462 477 427 442 421 436 441 456 435 450 417 432 411 426 416 431 410 425 431 446 425 440 441 456 435 450 417 432 411 426 395 410 389 404 451 466 455 470 465 480 469 484 462 477 466 481 461 476 463 478 456 471 460 475 466 481 470 485 463 478 467 482 458 473 460 475 431 446 421 436 445 460 435 450 421 436 411 426 420 435 408 423 435 450 425 440 445 460 435 450 421 436 411 426 399 414 387 402 465 480 469 484 478 493 482 497 472 487 476 491 470 485 474 489 465 480 469 484 474 489 478 493 468 483 472 487 462 477 466 481 445 460 435 450 458 473 448 463 431 446 421 436 429 444 419 434 444 459 434 449 453 468 443 458 426 441 416 431 403 418 393 408 469 484 469 484 482 497 482 497 476 491 476 491 474 489 472 487 469 484 469 484 478 493 478 493 472 487 472 487 466 481 464 479 449 464 435 450 462 477 448 463 435 450 421 436 433 448 417 432 448 463 434 449 457 472 443 458 430 445 416 431 407 422 391 406 423 430 440 447 446 453 463 470 444 451 461 468 452 459 469 476 430 437 447 454 449 456 466 473 447 454 464 471 451 458 468 475 420 427 431 438 443 450 454 461 420 427 431 438 428 435 439 446 426 433 437 444 445 452 456 463 422 429 433 440 423 430 434 441 427 434 440 447 450 457 463 470 448 455 461 468 456 463 469 476 434 441 447 454 453 460 466 473 451 458 464 471 455 462 468 475 424 431 431 438 447 454 454 461 424 431 431 438 432 439 439 446 430 437 437 444 449 456 456 463 426 433 433 440 427 434 434 441 442 449 455 462 464 471 477 484 459 466 472 479 466 473 479 486 444 451 457 464 462 469 475 482 457 464 470 477 460 467 473 480 439 446 446 453 461 468 468 475 435 442 442 449 442 449 449 456 440 447 447 454 458 465 465 472 432 439 439 446 432 439 439 446 446 453 455 462 468 475 477 484 463 470 472 479 470 477 479 486 448 455 457 464 466 473 475 482 461 468 470 477 464 471 473 480 443 450 446 453 465 472 468 475 439 446 442 449 446 453 449 456 444 451 447 454 462 469 465 472 436 443 439 446 436 443 439 446 434 428 451 445 457 451 474 468 455 449 472 466 463 457 480 474 441 435 458 452 460 454 477 471 458 452 475 469 462 456 479 473 422 416 433 427 445 439 456 450 422 416 433 427 430 424 441 435 428 422 439 433 447 441 458 452 424 418 435 429 425 419 436 430 438 432 451 445 461 455 474 468 459 453 472 466 467 461 480 474 445 439 458 452 464 458 477 471 462 456 475 469 466 460 479 473 426 420 433 427 449 443 456 450 426 420 433 427 434 428 441 435 432 426 439 433 451 445 458 452 428 422 435 429 429 423 436 430 453 447 466 460 475 469 488 482 470 464 483 477 477 471 490 484 455 449 468 462 473 467 486 480 468 462 481 475 471 465 484 478 441 435 448 442 463 457 470 464 437 431 444 438 444 438 451 445 442 436 449 443 460 454 467 461 434 428 441 435 434 428 441 435 457 451 466 460 479 473 488 482 474 468 483 477 481 475 490 484 459 453 468 462 477 471 486 480 472 466 481 475 475 469 484 478 445 439 448 442 467 461 470 464 441 435 444 438 448 442 451 445 446 440 449 443 464 458 467 461 438 432 441 435 438 432 441 435 458 465 466 473 472 479 480 487 469 476 477 484 468 475 476 483 463 470 471 478 473 480 481 488 470 477 478 485 465 472 473 480 441 448 435 442 455 462 449 456 431 438 425 432 430 437 424 431 445 452 439 446 455 462 449 456 431 438 425 432 423 430 417 424 462 469 466 473 476 483 480 487 473 480 477 484 472 479 476 483 467 474 471 478 477 484 481 488 474 481 478 485 469 476 473 480 445 452 435 442 459 466 449 456 435 442 425 432 434 441 424 431 449 456 439 446 459 466 449 456 435 442 425 432 427 434 417 424 472 479 476 483 485 492 489 496 479 486 483 490 477 484 481 488 472 479 476 483 481 488 485 492 475 482 479 486 469 476 455 462 455 462 445 452 468 475 458 465 441 448 431 438 439 446 429 436 454 461 444 451 463 470 453 460 436 443 426 433 427 434 399 406 476 483 476 483 489 496 489 496 483 490 483 490 481 488 481 488 476 483 476 483 485 492 485 492 479 486 479 486 473 480 455 462 459 466 445 452 472 479 458 465 445 452 431 438 443 450 429 436 458 465 444 451 467 474 453 460 440 447 426 433 431 438 399 406 457 451 465 459 471 465 479 473 468 462 476 470 467 461 475 469 462 456 470 464 472 466 480 474 469 463 477 471 464 458 472 466 421 415 415 409 435 429 429 423 411 405 405 399 410 404 404 398 425 419 419 413 435 429 429 423 411 405 405 399 389 383 383 377 461 455 465 459 475 469 479 473 472 466 476 470 471 465 473 467 466 460 470 464 476 470 480 474 473 467 477 471 468 462 470 464 425 419 415 409 439 433 429 423 415 409 405 399 414 408 402 396 429 423 419 413 439 433 429 423 415 409 405 399 393 387 381 375 471 465 475 469 484 478 488 482 478 472 482 476 476 470 480 474 471 465 475 469 480 474 484 478 474 468 478 472 468 462 454 448 435 429 425 419 448 442 438 432 421 415 411 405 419 413 409 403 434 428 424 418 443 437 433 427 416 410 406 400 393 387 365 359 475 469 475 469 488 482 488 482 482 476 482 476 480 474 478 472 475 469 475 469 484 478 484 478 478 472 478 472 472 466 452 446 439 433 425 419 452 446 438 432 425 419 411 405 423 417 407 401 438 432 424 418 447 441 433 427 420 414 406 400 397 391 363 357 425 437 436 448 448 460 459 471 446 458 457 469 454 466 465 477 432 444 443 455 451 463 462 474 449 461 460 472 453 465 464 476 428 440 433 445 451 463 456 468 428 440 433 445 436 448 441 453 434 446 439 451 453 465 458 470 430 442 435 447 431 443 436 448 423 435 430 442 446 458 453 465 444 456 451 463 452 464 459 471 430 442 437 449 449 461 456 468 447 459 454 466 451 463 458 470 426 438 427 439 449 461 450 462 426 438 427 439 434 446 435 447 432 444 433 445 451 463 452 464 428 440 429 441 429 441 430 442 448 460 455 467 470 482 477 489 465 477 472 484 472 484 479 491 450 462 457 469 468 480 475 487 463 475 470 482 466 478 473 485 451 463 452 464 473 485 474 486 447 459 448 460 454 466 455 467 452 464 453 465 470 482 471 483 444 456 445 457 444 456 445 457 446 458 449 461 468 480 471 483 463 475 466 478 470 482 473 485 448 460 451 463 466 478 469 481 461 473 464 476 464 476 467 479 449 461 446 458 471 483 468 480 445 457 442 454 452 464 449 461 450 462 447 459 468 480 465 477 442 454 439 451 442 454 439 451 436 446 447 457 459 469 470 480 457 467 468 478 465 475 476 486 443 453 454 464 462 472 473 483 460 470 471 481 464 474 475 485 430 440 435 445 453 463 458 468 430 440 435 445 438 448 443 453 436 446 441 451 455 465 460 470 432 442 437 447 433 443 438 448 434 444 441 451 457 467 464 474 455 465 462 472 463 473 470 480 441 451 448 458 460 470 467 477 458 468 465 475 462 472 469 479 428 438 429 439 451 461 452 462 428 438 429 439 436 446 437 447 434 444 435 445 453 463 454 464 430 440 431 441 431 441 432 442 459 469 466 476 481 491 488 498 476 486 483 493 483 493 490 500 461 471 468 478 479 489 486 496 474 484 481 491 477 487 484 494 453 463 454 464 475 485 476 486 449 459 450 460 456 466 457 467 454 464 455 465 472 482 473 483 446 456 447 457 446 456 447 457 457 467 460 470 479 489 482 492 474 484 477 487 481 491 484 494 459 469 462 472 477 487 480 490 472 482 475 485 475 485 478 488 451 461 448 458 473 483 470 480 447 457 444 454 454 464 451 461 452 462 449 459 470 480 467 477 444 454 441 451 444 454 441 451 470 482 472 484 484 496 486 498 481 493 483 495 480 492 482 494 475 487 477 489 485 497 487 499 482 494 484 496 477 489 479 491 459 471 447 459 473 485 461 473 449 461 437 449 448 460 436 448 463 475 451 463 473 485 461 473 449 461 437 449 441 453 429 441 468 480 466 478 482 494 480 492 479 491 477 489 478 490 476 488 473 485 471 483 483 495 481 493 480 492 478 490 475 487 473 485 457 469 441 453 471 483 455 467 447 459 431 443 446 458 430 442 461 473 445 457 471 483 455 467 447 459 431 443 439 451 423 435 488 500 486 498 501 513 499 511 495 507 493 505 493 505 491 503 488 500 486 498 497 509 495 507 491 503 489 501 485 497 483 495 477 489 461 473 490 502 474 486 463 475 447 459 461 473 445 457 476 488 460 472 485 497 469 481 458 470 442 454 449 461 433 445 486 498 480 492 499 511 493 505 493 505 487 499 491 503 485 497 486 498 480 492 495 507 489 501 489 501 483 495 483 495 477 489 475 487 455 467 488 500 468 480 461 473 441 453 459 471 439 451 474 486 454 466 483 495 463 475 456 468 436 448 447 459 427 439 469 479 471 481 483 493 485 495 480 490 482 492 479 489 481 491 474 484 476 486 484 494 486 496 481 491 483 493 476 486 478 488 449 459 437 447 463 473 451 461 439 449 427 437 438 448 426 436 453 463 441 451 463 473 451 461 439 449 427 437 417 427 405 415 467 477 465 475 481 491 479 489 478 488 476 486 477 487 473 483 472 482 470 480 482 492 480 490 479 489 477 487 474 484 470 480 447 457 431 441 461 471 445 455 437 447 421 431 436 446 418 428 451 461 435 445 461 471 445 455 437 447 421 431 415 425 397 407 487 497 485 495 500 510 498 508 494 504 492 502 492 502 490 500 487 497 485 495 496 506 494 504 490 500 488 498 484 494 482 492 467 477 451 461 480 490 464 474 453 463 437 447 451 461 435 445 466 476 450 460 475 485 459 469 448 458 432 442 425 435 409 419 485 495 479 489 498 508 492 502 492 502 486 496 490 500 482 492 485 495 479 489 494 504 488 498 488 498 482 492 482 492 474 484 465 475 445 455 478 488 458 468 451 461 431 441 449 459 427 437 464 474 444 454 473 483 453 463 446 456 426 436 423 433 401 411 444 446 455 457 467 469 478 480 465 467 476 478 473 475 484 486 451 453 462 464 470 472 481 483 468 470 479 481 472 474 483 485 441 443 446 448 464 466 469 471 441 443 446 448 449 451 454 456 447 449 452 454 466 468 471 473 443 445 448 450 444 446 449 451 442 444 449 451 465 467 472 474 463 465 470 472 471 473 478 480 449 451 456 458 468 470 475 477 466 468 473 475 470 472 477 479 439 441 440 442 462 464 463 465 439 441 440 442 447 449 448 450 445 447 446 448 464 466 465 467 441 443 442 444 442 444 443 445 463 465 470 472 485 487 492 494 480 482 487 489 487 489 494 496 465 467 472 474 483 485 490 492 478 480 485 487 481 483 488 490 460 462 461 463 482 484 483 485 456 458 457 459 463 465 464 466 461 463 462 464 479 481 480 482 453 455 454 456 453 455 454 456 461 463 464 466 483 485 486 488 478 480 481 483 485 487 488 490 463 465 466 468 481 483 484 486 476 478 479 481 479 481 482 484 458 460 455 457 480 482 477 479 454 456 451 453 461 463 458 460 459 461 456 458 477 479 474 476 451 453 448 450 451 453 448 450 451 440 462 451 474 463 485 474 472 461 483 472 480 469 491 480 458 447 469 458 477 466 488 477 475 464 486 475 479 468 490 479 439 428 444 433 462 451 467 456 439 428 444 433 447 436 452 441 445 434 450 439 464 453 469 458 441 430 446 435 442 431 447 436 449 438 456 434 472 461 479 457 470 459 477 455 478 467 485 463 456 445 463 441 475 464 482 460 473 462 480 458 477 466 484 462 437 426 438 416 460 449 461 439 437 426 438 416 445 434 446 424 443 432 444 422 462 451 463 441 439 428 440 418 440 429 441 419 470 459 477 466 492 481 499 488 487 476 494 483 494 483 501 490 472 461 479 468 490 479 497 486 485 474 492 481 488 477 495 484 458 447 459 448 480 469 481 470 454 443 455 444 461 450 462 451 459 448 460 449 477 466 478 467 451 440 452 441 451 440 452 441 468 457 471 449 490 479 493 471 485 474 488 466 492 481 495 473 470 459 473 451 488 477 491 469 483 472 486 464 486 475 489 467 456 445 453 431 478 467 475 453 452 441 449 427 459 448 456 434 457 446 454 432 475 464 472 450 449 438 446 424 449 438 446 424 479 481 481 483 493 495 495 497 490 492 492 494 489 491 491 493 484 486 486 488 494 496 496 498 491 493 493 495 486 488 488 490 462 464 450 452 476 478 464 466 452 454 440 442 451 453 439 441 466 468 454 456 476 478 464 466 452 454 440 442 444 446 432 434 477 479 475 477 491 493 489 491 488 490 486 488 487 489 485 487 482 484 480 482 492 494 490 492 489 491 487 489 484 486 482 484 460 462 444 446 474 476 458 460 450 452 434 436 449 451 433 435 464 466 448 450 474 476 458 460 450 452 434 436 442 444 426 428 493 495 491 493 506 508 504 506 500 502 498 500 498 500 496 498 493 495 491 493 502 504 500 502 496 498 494 496 490 492 470 472 476 478 460 462 489 491 473 475 462 464 446 448 460 462 444 446 475 477 459 461 484 486 468 470 457 459 441 443 448 450 414 416 491 493 485 487 504 506 498 500 498 500 492 494 496 498 490 492 491 493 485 487 500 502 494 496 494 496 488 490 488 490 464 466 474 476 454 456 487 489 467 469 460 462 440 442 458 460 438 440 473 475 453 455 482 484 462 464 455 457 435 437 446 448 408 410 474 463 476 465 488 477 490 479 485 474 487 476 484 473 486 475 479 468 481 470 489 478 491 480 486 475 488 477 481 470 483 472 438 427 426 415 452 441 440 429 428 417 416 405 427 416 415 404 442 431 430 419 452 441 440 429 428 417 416 405 406 395 394 383 472 461 470 448 486 475 484 462 483 472 481 459 482 471 478 456 477 466 475 453 487 476 485 463 484 473 482 460 479 468 475 453 436 425 420 398 450 439 434 412 426 415 410 388 425 414 407 385 440 429 424 402 450 439 434 412 426 415 410 388 404 393 386 364 488 477 486 475 501 490 499 488 495 484 493 482 493 482 491 480 488 477 486 475 497 486 495 484 491 480 489 478 485 474 465 454 452 441 436 425 465 454 449 438 438 427 422 411 436 425 420 409 451 440 435 424 460 449 444 433 433 422 417 406 410 399 376 365 486 475 480 458 499 488 493 471 493 482 487 465 491 480 483 461 486 475 480 458 495 484 489 467 489 478 483 461 483 472 457 435 450 439 430 408 463 452 443 421 436 425 416 394 434 423 412 390 449 438 429 407 458 447 438 416 431 420 411 389 408 397 368 346))
(proc-apps* count (0 35435 54618 90053 0 35435 54618 90053 42037 77472 96655 132090 42037 77472 96655 132090 11613 47048 66231 101666 11613 47048 66231 101666 42049 77484 96667 132102 42049 77484 96667 132102 16285 51720 70772 106207 16285 51720 70772 106207 43874 79309 98361 133796 43874 79309 98361 133796 27896 63331 82383 117818 27896 63331 82383 117818 43884 79319 98371 133806 43884 79319 98371 133806 29214 64649 66342 101777 29214 64649 66342 101777 71251 106686 108379 143814 71251 106686 108379 143814 40827 76262 77955 113390 40827 76262 77955 113390 71263 106698 108391 143826 71263 106698 108391 143826 45499 80934 82496 117931 45499 80934 82496 117931 73088 108523 110085 145520 73088 108523 110085 145520 57110 92545 94107 129542 57110 92545 94107 129542 73098 108533 110095 145530 73098 108533 110095 145530 130745 166180 132623 168058 130745 166180 132623 168058 146716 182151 148594 184029 146716 182151 148594 184029 130739 166174 132617 168052 130739 166174 132617 168052 140909 176344 142787 178222 140909 176344 142787 178222 144010 179445 145802 181237 144010 179445 145802 181237 151312 186747 153104 188539 151312 186747 153104 188539 144003 179438 145795 181230 144003 179438 145795 181230 145504 180939 147296 182731 145504 180939 147296 182731 159959 195394 144347 179782 159959 195394 144347 179782 175930 211365 160318 195753 175930 211365 160318 195753 159953 195388 144341 179776 159953 195388 144341 179776 170123 205558 154511 189946 170123 205558 154511 189946 173224 208659 157526 192961 173224 208659 157526 192961 180526 215961 164828 200263 180526 215961 164828 200263 173217 208652 157519 192954 173217 208652 157519 192954 174718 210153 159020 194455 174718 210153 159020 194455 64727 99186 119345 153804 64727 99186 119345 153804 106764 141223 161382 195841 106764 141223 161382 195841 76340 110799 130958 165417 76340 110799 130958 165417 106776 141235 161394 195853 106776 141235 161394 195853 63684 98143 118171 152630 63684 98143 118171 152630 91273 125732 145760 180219 91273 125732 145760 180219 75295 109754 129782 164241 75295 109754 129782 164241 91283 125742 145770 180229 91283 125742 145770 180229 93941 128400 131069 165528 93941 128400 131069 165528 135978 170437 173106 207565 135978 170437 173106 207565 105554 140013 142682 177141 105554 140013 142682 177141 135990 170449 173118 207577 135990 170449 173118 207577 92898 127357 129895 164354 92898 127357 129895 164354 120487 154946 157484 191943 120487 154946 157484 191943 104509 138968 141506 175965 104509 138968 141506 175965 120497 154956 157494 191953 120497 154956 157494 191953 176700 211159 178578 213037 176700 211159 178578 213037 192671 227130 194549 229008 192671 227130 194549 229008 176694 211153 178572 213031 176694 211153 178572 213031 186864 221323 188742 223201 186864 221323 188742 223201 181301 215760 183093 217552 181301 215760 183093 217552 188603 223062 190395 224854 188603 223062 190395 224854 181294 215753 183086 217545 181294 215753 183086 217545 182795 217254 184587 219046 182795 217254 184587 219046 205914 240373 190302 224761 205914 240373 190302 224761 221885 256344 206273 240732 221885 256344 206273 240732 205908 240367 190296 224755 205908 240367 190296 224755 216078 250537 200466 234925 216078 250537 200466 234925 210515 244974 194817 229276 210515 244974 194817 229276 217817 252276 202119 236578 217817 252276 202119 236578 210508 244967 194810 229269 210508 244967 194810 229269 212009 246468 196311 230770 212009 246468 196311 230770 150494 185929 165692 201127 150494 185929 165692 201127 175158 210593 190356 225791 175158 210593 190356 225791 162104 197539 177302 212737 162104 197539 177302 212737 175167 210602 190365 225800 175167 210602 190365 225800 151790 187225 166857 202292 151790 187225 166857 202292 162006 197441 177073 212508 162006 197441 177073 212508 163398 198833 178465 213900 163398 198833 178465 213900 162013 197448 177080 212515 162013 197448 177080 212515 179708 215143 177416 212851 179708 215143 177416 212851 204372 239807 202080 237515 204372 239807 202080 237515 191318 226753 189026 224461 191318 226753 189026 224461 204381 239816 202089 237524 204381 239816 202089 237524 181004 216439 178581 214016 181004 216439 178581 214016 191220 226655 188797 224232 191220 226655 188797 224232 192612 228047 190189 225624 192612 228047 190189 225624 191227 226662 188804 224239 191227 226662 188804 224239 128875 164310 104473 139908 128875 164310 104473 139908 133264 168699 108862 144297 133264 168699 108862 144297 128867 164302 104465 139900 128867 164302 104465 139900 127455 162890 103053 138488 127455 162890 103053 138488 133162 168597 108674 144109 133162 168597 108674 144109 128882 164317 104394 139829 128882 164317 104394 139829 133153 168588 108665 144100 133153 168588 108665 144100 123072 158507 98584 134019 123072 158507 98584 134019 158089 193524 116197 151632 158089 193524 116197 151632 162478 197913 120586 156021 162478 197913 120586 156021 158081 193516 116189 151624 158081 193516 116189 151624 156669 192104 114777 150212 156669 192104 114777 150212 162376 197811 120398 155833 162376 197811 120398 155833 158096 193531 116118 151553 158096 193531 116118 151553 162367 197802 120389 155824 162367 197802 120389 155824 152286 187721 110308 145743 152286 187721 110308 145743 138765 173224 153963 188422 138765 173224 153963 188422 163429 197888 178627 213086 163429 197888 178627 213086 150375 184834 165573 200032 150375 184834 165573 200032 163438 197897 178636 213095 163438 197897 178636 213095 122733 157192 137800 172259 122733 157192 137800 172259 132949 167408 148016 182475 132949 167408 148016 182475 134341 168800 149408 183867 134341 168800 149408 183867 132956 167415 148023 182482 132956 167415 148023 182482 167979 202438 165687 200146 167979 202438 165687 200146 192643 227102 190351 224810 192643 227102 190351 224810 179589 214048 177297 211756 179589 214048 177297 211756 192652 227111 190360 224819 192652 227111 190360 224819 151947 186406 149524 183983 151947 186406 149524 183983 162163 196622 159740 194199 162163 196622 159740 194199 163555 198014 161132 195591 163555 198014 161132 195591 162170 196629 159747 194206 162170 196629 159747 194206 130104 164563 105702 140161 130104 164563 105702 140161 134493 168952 110091 144550 134493 168952 110091 144550 130096 164555 105694 140153 130096 164555 105694 140153 128684 163143 104282 138741 128684 163143 104282 138741 125727 160186 101239 135698 125727 160186 101239 135698 121447 155906 96959 131418 121447 155906 96959 131418 125718 160177 101230 135689 125718 160177 101230 135689 115637 150096 91149 125608 115637 150096 91149 125608 159318 193777 117426 151885 159318 193777 117426 151885 163707 198166 121815 156274 163707 198166 121815 156274 159310 193769 117418 151877 159310 193769 117418 151877 157898 192357 116006 150465 157898 192357 116006 150465 154941 189400 112963 147422 154941 189400 112963 147422 150661 185120 108683 143142 150661 185120 108683 143142 154932 189391 112954 147413 154932 189391 112954 147413 144851 179310 102873 137332 144851 179310 102873 137332 74755 88368 129373 142986 74755 88368 129373 142986 116792 130405 171410 185023 116792 130405 171410 185023 86368 99981 140986 154599 86368 99981 140986 154599 116804 130417 171422 185035 116804 130417 171422 185035 90909 104522 145396 159009 90909 104522 145396 159009 118498 132111 172985 186598 118498 132111 172985 186598 102520 116133 157007 170620 102520 116133 157007 170620 118508 132121 172995 186608 118508 132121 172995 186608 103969 117582 141097 154710 103969 117582 141097 154710 146006 159619 183134 196747 146006 159619 183134 196747 115582 129195 152710 166323 115582 129195 152710 166323 146018 159631 183146 196759 146018 159631 183146 196759 120123 133736 157120 170733 120123 133736 157120 170733 147712 161325 184709 198322 147712 161325 184709 198322 131734 145347 168731 182344 131734 145347 168731 182344 147722 161335 184719 198332 147722 161335 184719 198332 135432 149045 137310 150923 135432 149045 137310 150923 151403 165016 153281 166894 151403 165016 153281 166894 135426 149039 137304 150917 135426 149039 137304 150917 145596 159209 147474 161087 145596 159209 147474 161087 148611 162224 150403 164016 148611 162224 150403 164016 155913 169526 157705 171318 155913 169526 157705 171318 148604 162217 150396 164009 148604 162217 150396 164009 150105 163718 151897 165510 150105 163718 151897 165510 164646 178259 149034 162647 164646 178259 149034 162647 180617 194230 165005 178618 180617 194230 165005 178618 164640 178253 149028 162641 164640 178253 149028 162641 174810 188423 159198 172811 174810 188423 159198 172811 177825 191438 162127 175740 177825 191438 162127 175740 185127 198740 169429 183042 185127 198740 169429 183042 177818 191431 162120 175733 177818 191431 162120 175733 179319 192932 163621 177234 179319 192932 163621 177234 123598 136235 178216 190853 123598 136235 178216 190853 165635 178272 220253 232890 165635 178272 220253 232890 135211 147848 189829 202466 135211 147848 189829 202466 165647 178284 220265 232902 165647 178284 220265 232902 122424 135061 176911 189548 122424 135061 176911 189548 150013 162650 204500 217137 150013 162650 204500 217137 134035 146672 188522 201159 134035 146672 188522 201159 150023 162660 204510 217147 150023 162660 204510 217147 152812 165449 189940 202577 152812 165449 189940 202577 194849 207486 231977 244614 194849 207486 231977 244614 164425 177062 201553 214190 164425 177062 201553 214190 194861 207498 231989 244626 194861 207498 231989 244626 151638 164275 188635 201272 151638 164275 188635 201272 179227 191864 216224 228861 179227 191864 216224 228861 163249 175886 200246 212883 163249 175886 200246 212883 179237 191874 216234 228871 179237 191874 216234 228871 169835 182472 171713 184350 169835 182472 171713 184350 185806 198443 187684 200321 185806 198443 187684 200321 169829 182466 171707 184344 169829 182466 171707 184344 179999 192636 181877 194514 179999 192636 181877 194514 174350 186987 176142 188779 174350 186987 176142 188779 181652 194289 183444 196081 181652 194289 183444 196081 174343 186980 176135 188772 174343 186980 176135 188772 175844 188481 177636 190273 175844 188481 177636 190273 199049 211686 183437 196074 199049 211686 183437 196074 215020 227657 199408 212045 215020 227657 199408 212045 199043 211680 183431 196068 199043 211680 183431 196068 209213 221850 193601 206238 209213 221850 193601 206238 203564 216201 187866 200503 203564 216201 187866 200503 210866 223503 195168 207805 210866 223503 195168 207805 203557 216194 187859 200496 203557 216194 187859 200496 205058 217695 189360 201997 205058 217695 189360 201997 185829 199442 201027 214640 185829 199442 201027 214640 210493 224106 225691 239304 210493 224106 225691 239304 197439 211052 212637 226250 197439 211052 212637 226250 210502 224115 225700 239313 210502 224115 225700 239313 186994 200607 202061 215674 186994 200607 202061 215674 197210 210823 212277 225890 197210 210823 212277 225890 198602 212215 213669 227282 198602 212215 213669 227282 197217 210830 212284 225897 197217 210830 212284 225897 215043 228656 212751 226364 215043 228656 212751 226364 239707 253320 237415 251028 239707 253320 237415 251028 226653 240266 224361 237974 226653 240266 224361 237974 239716 253329 237424 251037 239716 253329 237424 251037 216208 229821 213785 227398 216208 229821 213785 227398 226424 240037 224001 237614 226424 240037 224001 237614 227816 241429 225393 239006 227816 241429 225393 239006 226431 240044 224008 237621 226431 240044 224008 237621 107282 120895 82880 96493 107282 120895 82880 96493 111671 125284 87269 100882 111671 125284 87269 100882 107274 120887 82872 96485 107274 120887 82872 96485 105862 119475 81460 95073 105862 119475 81460 95073 111483 125096 86995 100608 111483 125096 86995 100608 107203 120816 82715 96328 107203 120816 82715 96328 111474 125087 86986 100599 111474 125087 86986 100599 101393 115006 76905 90518 101393 115006 76905 90518 136496 150109 94604 108217 136496 150109 94604 108217 140885 154498 98993 112606 140885 154498 98993 112606 136488 150101 94596 108209 136488 150101 94596 108209 135076 148689 93184 106797 135076 148689 93184 106797 140697 154310 98719 112332 140697 154310 98719 112332 136417 150030 94439 108052 136417 150030 94439 108052 140688 154301 98710 112323 140688 154301 98710 112323 130607 144220 88629 102242 130607 144220 88629 102242 158216 170853 173414 186051 158216 170853 173414 186051 182880 195517 198078 210715 182880 195517 198078 210715 169826 182463 185024 197661 169826 182463 185024 197661 182889 195526 198087 210724 182889 195526 198087 210724 142053 154690 157120 169757 142053 154690 157120 169757 152269 164906 167336 179973 152269 164906 167336 179973 153661 166298 168728 181365 153661 166298 168728 181365 152276 164913 167343 179980 152276 164913 167343 179980 187430 200067 185138 197775 187430 200067 185138 197775 212094 224731 209802 222439 212094 224731 209802 222439 199040 211677 196748 209385 199040 211677 196748 209385 212103 224740 209811 222448 212103 224740 209811 222448 171267 183904 168844 181481 171267 183904 168844 181481 181483 194120 179060 191697 181483 194120 179060 191697 182875 195512 180452 193089 182875 195512 180452 193089 181490 194127 179067 191704 181490 194127 179067 191704 96959 109596 72557 85194 96959 109596 72557 85194 101348 113985 76946 89583 101348 113985 76946 89583 96951 109588 72549 85186 96951 109588 72549 85186 95539 108176 71137 83774 95539 108176 71137 83774 92496 105133 68008 80645 92496 105133 68008 80645 88216 100853 63728 76365 88216 100853 63728 76365 92487 105124 67999 80636 92487 105124 67999 80636 82406 95043 57918 70555 82406 95043 57918 70555 126173 138810 84281 96918 126173 138810 84281 96918 130562 143199 88670 101307 130562 143199 88670 101307 126165 138802 84273 96910 126165 138802 84273 96910 124753 137390 82861 95498 124753 137390 82861 95498 121710 134347 79732 92369 121710 134347 79732 92369 117430 130067 75452 88089 117430 130067 75452 88089 121701 134338 79723 92360 121701 134338 79723 92360 111620 124257 69642 82279 111620 124257 69642 82279 57522 44885 99579 86942 57522 44885 99579 86942 99559 86922 141616 128979 99559 86922 141616 128979 69135 56498 111192 98555 69135 56498 111192 98555 99571 86934 141628 128991 99571 86934 141628 128991 73807 61170 115733 103096 73807 61170 115733 103096 101396 88759 143322 130685 101396 88759 143322 130685 85418 72781 127344 114707 85418 72781 127344 114707 101406 88769 143332 130695 101406 88769 143332 130695 45798 33161 76195 63558 45798 33161 76195 63558 87835 75198 118232 105595 87835 75198 118232 105595 57411 44774 87808 75171 57411 44774 87808 75171 87847 75210 118244 105607 87847 75210 118244 105607 62083 49446 92349 79712 62083 49446 92349 79712 89672 77035 119938 107301 89672 77035 119938 107301 73694 61057 103960 91323 73694 61057 103960 91323 89682 77045 119948 107311 89682 77045 119948 107311 175163 162526 170389 157752 175163 162526 170389 157752 191134 178497 186360 173723 191134 178497 186360 173723 175157 162520 170383 157746 175157 162520 170383 157746 185327 172690 180553 167916 185327 172690 180553 167916 188428 175791 183568 170931 188428 175791 183568 170931 195730 183093 190870 178233 195730 183093 190870 178233 188421 175784 183561 170924 188421 175784 183561 170924 189922 177285 185062 172425 189922 177285 185062 172425 163439 150802 147005 134368 163439 150802 147005 134368 179410 166773 162976 150339 179410 166773 162976 150339 163433 150796 146999 134362 163433 150796 146999 134362 173603 160966 157169 144532 173603 160966 157169 144532 176704 164067 160184 147547 176704 164067 160184 147547 184006 171369 167486 154849 184006 171369 167486 154849 176697 164060 160177 147540 176697 164060 160177 147540 178198 165561 161678 149041 178198 165561 161678 149041 96257 82644 138314 124701 96257 82644 138314 124701 138294 124681 180351 166738 138294 124681 180351 166738 107870 94257 149927 136314 107870 94257 149927 136314 138306 124693 180363 166750 138306 124693 180363 166750 95214 81601 137140 123527 95214 81601 137140 123527 122803 109190 164729 151116 122803 109190 164729 151116 106825 93212 148751 135138 106825 93212 148751 135138 122813 109200 164739 151126 122813 109200 164739 151126 84533 70920 114930 101317 84533 70920 114930 101317 126570 112957 156967 143354 126570 112957 156967 143354 96146 82533 126543 112930 96146 82533 126543 112930 126582 112969 156979 143366 126582 112969 156979 143366 83490 69877 113756 100143 83490 69877 113756 100143 111079 97466 141345 127732 111079 97466 141345 127732 95101 81488 125367 111754 95101 81488 125367 111754 111089 97476 141355 127742 111089 97476 141355 127742 195126 181513 190352 176739 195126 181513 190352 176739 211097 197484 206323 192710 211097 197484 206323 192710 195120 181507 190346 176733 195120 181507 190346 176733 205290 191677 200516 186903 205290 191677 200516 186903 199727 186114 194867 181254 199727 186114 194867 181254 207029 193416 202169 188556 207029 193416 202169 188556 199720 186107 194860 181247 199720 186107 194860 181247 201221 187608 196361 182748 201221 187608 196361 182748 183402 169789 166968 153355 183402 169789 166968 153355 199373 185760 182939 169326 199373 185760 182939 169326 183396 169783 166962 153349 183396 169783 166962 153349 193566 179953 177132 163519 193566 179953 177132 163519 188003 174390 171483 157870 188003 174390 171483 157870 195305 181692 178785 165172 195305 181692 178785 165172 187996 174383 171476 157863 187996 174383 171476 157863 189497 175884 172977 159364 189497 175884 172977 159364 208016 195379 210653 198016 208016 195379 210653 198016 232680 220043 235317 222680 232680 220043 235317 222680 219626 206989 222263 209626 219626 206989 222263 209626 232689 220052 235326 222689 232689 220052 235326 222689 209312 196675 211818 199181 209312 196675 211818 199181 219528 206891 222034 209397 219528 206891 222034 209397 220920 208283 223426 210789 220920 208283 223426 210789 219535 206898 222041 209404 219535 206898 222041 209404 196292 183655 187269 174632 196292 183655 187269 174632 220956 208319 211933 199296 220956 208319 211933 199296 207902 195265 198879 186242 207902 195265 198879 186242 220965 208328 211942 199305 220965 208328 211942 199305 197588 184951 188434 175797 197588 184951 188434 175797 207804 195167 198650 186013 207804 195167 198650 186013 209196 196559 200042 187405 209196 196559 200042 187405 207811 195174 198657 186020 207811 195174 198657 186020 173293 160656 142239 129602 173293 160656 142239 129602 177682 165045 146628 133991 177682 165045 146628 133991 173285 160648 142231 129594 173285 160648 142231 129594 171873 159236 140819 128182 171873 159236 140819 128182 177580 164943 146440 133803 177580 164943 146440 133803 173300 160663 142160 129523 173300 160663 142160 129523 177571 164934 146431 133794 177571 164934 146431 133794 167490 154853 136350 123713 167490 154853 136350 123713 161569 148932 118855 106218 161569 148932 118855 106218 165958 153321 123244 110607 165958 153321 123244 110607 161561 148924 118847 106210 161561 148924 118847 106210 160149 147512 117435 104798 160149 147512 117435 104798 165856 153219 123056 110419 165856 153219 123056 110419 161576 148939 118776 106139 161576 148939 118776 106139 165847 153210 123047 110410 165847 153210 123047 110410 155766 143129 112966 100329 155766 143129 112966 100329 170295 156682 172932 159319 170295 156682 172932 159319 194959 181346 197596 183983 194959 181346 197596 183983 181905 168292 184542 170929 181905 168292 184542 170929 194968 181355 197605 183992 194968 181355 197605 183992 154263 140650 156769 143156 154263 140650 156769 143156 164479 150866 166985 153372 164479 150866 166985 153372 165871 152258 168377 154764 165871 152258 168377 154764 164486 150873 166992 153379 164486 150873 166992 153379 158571 144958 149548 135935 158571 144958 149548 135935 183235 169622 174212 160599 183235 169622 174212 160599 170181 156568 161158 147545 170181 156568 161158 147545 183244 169631 174221 160608 183244 169631 174221 160608 142539 128926 133385 119772 142539 128926 133385 119772 152755 139142 143601 129988 152755 139142 143601 129988 154147 140534 144993 131380 154147 140534 144993 131380 152762 139149 143608 129995 152762 139149 143608 129995 148530 134917 117476 103863 148530 134917 117476 103863 152919 139306 121865 108252 152919 139306 121865 108252 148522 134909 117468 103855 148522 134909 117468 103855 147110 133497 116056 102443 147110 133497 116056 102443 144153 130540 113013 99400 144153 130540 113013 99400 139873 126260 108733 95120 139873 126260 108733 95120 144144 130531 113004 99391 144144 130531 113004 99391 134063 120450 102923 89310 134063 120450 102923 89310 136806 123193 94092 80479 136806 123193 94092 80479 141195 127582 98481 84868 141195 127582 98481 84868 136798 123185 94084 80471 136798 123185 94084 80471 135386 121773 92672 79059 135386 121773 92672 79059 132429 118816 89629 76016 132429 118816 89629 76016 128149 114536 85349 71736 128149 114536 85349 71736 132420 118807 89620 76007 132420 118807 89620 76007 122339 108726 79539 65926 122339 108726 79539 65926 112654 85469 154711 127526 112654 85469 154711 127526 154691 127506 196748 169563 154691 127506 196748 169563 124267 97082 166324 139139 124267 97082 166324 139139 154703 127518 196760 169575 154703 127518 196760 169575 128808 101623 170734 143549 128808 101623 170734 143549 156397 129212 198323 171138 156397 129212 198323 171138 140419 113234 182345 155160 140419 113234 182345 155160 156407 129222 198333 171148 156407 129222 198333 171148 100930 73745 131327 104142 100930 73745 131327 104142 142967 115782 173364 146179 142967 115782 173364 146179 112543 85358 142940 115755 112543 85358 142940 115755 142979 115794 173376 146191 142979 115794 173376 146191 117084 89899 147350 120165 117084 89899 147350 120165 144673 117488 174939 147754 144673 117488 174939 147754 128695 101510 158961 131776 128695 101510 158961 131776 144683 117498 174949 147764 144683 117498 174949 147764 170468 143283 165694 138509 170468 143283 165694 138509 186439 159254 181665 154480 186439 159254 181665 154480 170462 143277 165688 138503 170462 143277 165688 138503 180632 153447 175858 148673 180632 153447 175858 148673 183647 156462 178787 151602 183647 156462 178787 151602 190949 163764 186089 158904 190949 163764 186089 158904 183640 156455 178780 151595 183640 156455 178780 151595 185141 157956 180281 153096 185141 157956 180281 153096 158744 131559 142310 115125 158744 131559 142310 115125 174715 147530 158281 131096 174715 147530 158281 131096 158738 131553 142304 115119 158738 131553 142304 115119 168908 141723 152474 125289 168908 141723 152474 125289 171923 144738 155403 128218 171923 144738 155403 128218 179225 152040 162705 135520 179225 152040 162705 135520 171916 144731 155396 128211 171916 144731 155396 128211 173417 146232 156897 129712 173417 146232 156897 129712 138393 110232 180450 152289 138393 110232 180450 152289 180430 152269 222487 194326 180430 152269 222487 194326 150006 121845 192063 163902 150006 121845 192063 163902 180442 152281 222499 194338 180442 152281 222499 194338 137219 109058 179145 150984 137219 109058 179145 150984 164808 136647 206734 178573 164808 136647 206734 178573 148830 120669 190756 162595 148830 120669 190756 162595 164818 136657 206744 178583 164818 136657 206744 178583 126669 98508 157066 128905 126669 98508 157066 128905 168706 140545 199103 170942 168706 140545 199103 170942 138282 110121 168679 140518 138282 110121 168679 140518 168718 140557 199115 170954 168718 140557 199115 170954 125495 97334 155761 127600 125495 97334 155761 127600 153084 124923 183350 155189 153084 124923 183350 155189 137106 108945 167372 139211 137106 108945 167372 139211 153094 124933 183360 155199 153094 124933 183360 155199 181767 153606 176993 148832 181767 153606 176993 148832 197738 169577 192964 164803 197738 169577 192964 164803 181761 153600 176987 148826 181761 153600 176987 148826 191931 163770 187157 158996 191931 163770 187157 158996 186282 158121 181422 153261 186282 158121 181422 153261 193584 165423 188724 160563 193584 165423 188724 160563 186275 158114 181415 153254 186275 158114 181415 153254 187776 159615 182916 154755 187776 159615 182916 154755 170043 141882 153609 125448 170043 141882 153609 125448 186014 157853 169580 141419 186014 157853 169580 141419 170037 141876 153603 125442 170037 141876 153603 125442 180207 152046 163773 135612 180207 152046 163773 135612 174558 146397 158038 129877 174558 146397 158038 129877 181860 153699 165340 137179 181860 153699 165340 137179 174551 146390 158031 129870 174551 146390 158031 129870 176052 147891 159532 131371 176052 147891 159532 131371 223728 196543 226365 199180 223728 196543 226365 199180 248392 221207 251029 223844 248392 221207 251029 223844 235338 208153 237975 210790 235338 208153 237975 210790 248401 221216 251038 223853 248401 221216 251038 223853 224893 197708 227399 200214 224893 197708 227399 200214 235109 207924 237615 210430 235109 207924 237615 210430 236501 209316 239007 211822 236501 209316 239007 211822 235116 207931 237622 210437 235116 207931 237622 210437 212004 184819 202981 175796 212004 184819 202981 175796 236668 209483 227645 200460 236668 209483 227645 200460 223614 196429 214591 187406 223614 196429 214591 187406 236677 209492 227654 200469 236677 209492 227654 200469 213169 185984 204015 176830 213169 185984 204015 176830 223385 196200 214231 187046 223385 196200 214231 187046 224777 197592 215623 188438 224777 197592 215623 188438 223392 196207 214238 187053 223392 196207 214238 187053 142318 115133 111264 84079 142318 115133 111264 84079 146707 119522 115653 88468 146707 119522 115653 88468 142310 115125 111256 84071 142310 115125 111256 84071 140898 113713 109844 82659 140898 113713 109844 82659 146519 119334 115379 88194 146519 119334 115379 88194 142239 115054 111099 83914 142239 115054 111099 83914 146510 119325 115370 88185 146510 119325 115370 88185 136429 109244 105289 78104 136429 109244 105289 78104 130594 103409 87880 60695 130594 103409 87880 60695 134983 107798 92269 65084 134983 107798 92269 65084 130586 103401 87872 60687 130586 103401 87872 60687 129174 101989 86460 59275 129174 101989 86460 59275 134795 107610 91995 64810 134795 107610 91995 64810 130515 103330 87715 60530 130515 103330 87715 60530 134786 107601 91986 64801 134786 107601 91986 64801 124705 97520 81905 54720 124705 97520 81905 54720 173011 144850 175648 147487 173011 144850 175648 147487 197675 169514 200312 172151 197675 169514 200312 172151 184621 156460 187258 159097 184621 156460 187258 159097 197684 169523 200321 172160 197684 169523 200321 172160 156848 128687 159354 131193 156848 128687 159354 131193 167064 138903 169570 141409 167064 138903 169570 141409 168456 140295 170962 142801 168456 140295 170962 142801 167071 138910 169577 141416 167071 138910 169577 141416 161287 133126 152264 124103 161287 133126 152264 124103 185951 157790 176928 148767 185951 157790 176928 148767 172897 144736 163874 135713 172897 144736 163874 135713 185960 157799 176937 148776 185960 157799 176937 148776 145124 116963 135970 107809 145124 116963 135970 107809 155340 127179 146186 118025 155340 127179 146186 118025 156732 128571 147578 119417 156732 128571 147578 119417 155347 127186 146193 118032 155347 127186 146193 118032 108891 80730 77837 49676 108891 80730 77837 49676 113280 85119 82226 54065 113280 85119 82226 54065 108883 80722 77829 49668 108883 80722 77829 49668 107471 79310 76417 48256 107471 79310 76417 48256 104428 76267 73288 45127 104428 76267 73288 45127 100148 71987 69008 40847 100148 71987 69008 40847 104419 76258 73279 45118 104419 76258 73279 45118 94338 66177 63198 35037 94338 66177 63198 35037 97167 69006 54453 26292 97167 69006 54453 26292 101556 73395 58842 30681 101556 73395 58842 30681 97159 68998 54445 26284 97159 68998 54445 26284 95747 67586 53033 24872 95747 67586 53033 24872 92704 64543 49904 21743 92704 64543 49904 21743 88424 60263 45624 17463 88424 60263 45624 17463 92695 64534 49895 21734 92695 64534 49895 21734 82614 54453 39814 11653 82614 54453 39814 11653 74 35509 54692 90127 74 35509 54692 90127 42042 77477 96660 132095 42042 77477 96660 132095 11687 47122 66305 101740 11687 47122 66305 101740 42054 77489 96672 132107 42054 77489 96672 132107 16304 51739 70791 106226 16304 51739 70791 106226 43824 79259 98311 133746 43824 79259 98311 133746 27915 63350 82402 117837 27915 63350 82402 117837 43834 79269 98321 133756 43834 79269 98321 133756 29288 64723 66416 101851 29288 64723 66416 101851 71256 106691 108384 143819 71256 106691 108384 143819 40901 76336 78029 113464 40901 76336 78029 113464 71268 106703 108396 143831 71268 106703 108396 143831 45518 80953 82515 117950 45518 80953 82515 117950 73038 108473 110035 145470 73038 108473 110035 145470 57129 92564 94126 129561 57129 92564 94126 129561 73048 108483 110045 145480 73048 108483 110045 145480 130793 166228 132671 168106 130793 166228 132671 168106 146724 182159 148602 184037 146724 182159 148602 184037 130787 166222 132665 168100 130787 166222 132665 168100 140917 176352 142795 178230 140917 176352 142795 178230 144014 179449 145806 181241 144014 179449 145806 181241 151276 186711 153068 188503 151276 186711 153068 188503 144007 179442 145799 181234 144007 179442 145799 181234 145468 180903 147260 182695 145468 180903 147260 182695 160007 195442 144395 179830 160007 195442 144395 179830 175938 211373 160326 195761 175938 211373 160326 195761 160001 195436 144389 179824 160001 195436 144389 179824 170131 205566 154519 189954 170131 205566 154519 189954 173228 208663 157530 192965 173228 208663 157530 192965 180490 215925 164792 200227 180490 215925 164792 200227 173221 208656 157523 192958 173221 208656 157523 192958 174682 210117 158984 194419 174682 210117 158984 194419 64801 99260 119419 153878 64801 99260 119419 153878 106769 141228 161387 195846 106769 141228 161387 195846 76414 110873 131032 165491 76414 110873 131032 165491 106781 141240 161399 195858 106781 141240 161399 195858 63703 98162 118190 152649 63703 98162 118190 152649 91223 125682 145710 180169 91223 125682 145710 180169 75314 109773 129801 164260 75314 109773 129801 164260 91233 125692 145720 180179 91233 125692 145720 180179 94015 128474 131143 165602 94015 128474 131143 165602 135983 170442 173111 207570 135983 170442 173111 207570 105628 140087 142756 177215 105628 140087 142756 177215 135995 170454 173123 207582 135995 170454 173123 207582 92917 127376 129914 164373 92917 127376 129914 164373 120437 154896 157434 191893 120437 154896 157434 191893 104528 138987 141525 175984 104528 138987 141525 175984 120447 154906 157444 191903 120447 154906 157444 191903 176748 211207 178626 213085 176748 211207 178626 213085 192679 227138 194557 229016 192679 227138 194557 229016 176742 211201 178620 213079 176742 211201 178620 213079 186872 221331 188750 223209 186872 221331 188750 223209 181305 215764 183097 217556 181305 215764 183097 217556 188567 223026 190359 224818 188567 223026 190359 224818 181298 215757 183090 217549 181298 215757 183090 217549 182759 217218 184551 219010 182759 217218 184551 219010 205962 240421 190350 224809 205962 240421 190350 224809 221893 256352 206281 240740 221893 256352 206281 240740 205956 240415 190344 224803 205956 240415 190344 224803 216086 250545 200474 234933 216086 250545 200474 234933 210519 244978 194821 229280 210519 244978 194821 229280 217781 252240 202083 236542 217781 252240 202083 236542 210512 244971 194814 229273 210512 244971 194814 229273 211973 246432 196275 230734 211973 246432 196275 230734 150544 185979 165742 201177 150544 185979 165742 201177 175139 210574 190337 225772 175139 210574 190337 225772 162154 197589 177352 212787 162154 197589 177352 212787 175148 210583 190346 225781 175148 210583 190346 225781 151785 187220 166852 202287 151785 187220 166852 202287 161932 197367 176999 212434 161932 197367 176999 212434 163393 198828 178460 213895 163393 198828 178460 213895 161939 197374 177006 212441 161939 197374 177006 212441 179758 215193 177466 212901 179758 215193 177466 212901 204353 239788 202061 237496 204353 239788 202061 237496 191368 226803 189076 224511 191368 226803 189076 224511 204362 239797 202070 237505 204362 239797 202070 237505 180999 216434 178576 214011 180999 216434 178576 214011 191146 226581 188723 224158 191146 226581 188723 224158 192607 228042 190184 225619 192607 228042 190184 225619 191153 226588 188730 224165 191153 226588 188730 224165 128911 164346 104509 139944 128911 164346 104509 139944 133260 168695 108858 144293 133260 168695 108858 144293 128903 164338 104501 139936 128903 164338 104501 139936 127451 162886 103049 138484 127451 162886 103049 138484 133154 168589 108666 144101 133154 168589 108666 144101 128834 164269 104346 139781 128834 164269 104346 139781 133145 168580 108657 144092 133145 168580 108657 144092 123024 158459 98536 133971 123024 158459 98536 133971 158125 193560 116233 151668 158125 193560 116233 151668 162474 197909 120582 156017 162474 197909 120582 156017 158117 193552 116225 151660 158117 193552 116225 151660 156665 192100 114773 150208 156665 192100 114773 150208 162368 197803 120390 155825 162368 197803 120390 155825 158048 193483 116070 151505 158048 193483 116070 151505 162359 197794 120381 155816 162359 197794 120381 155816 152238 187673 110260 145695 152238 187673 110260 145695 138815 173274 154013 188472 138815 173274 154013 188472 163410 197869 178608 213067 163410 197869 178608 213067 150425 184884 165623 200082 150425 184884 165623 200082 163419 197878 178617 213076 163419 197878 178617 213076 122728 157187 137795 172254 122728 157187 137795 172254 132875 167334 147942 182401 132875 167334 147942 182401 134336 168795 149403 183862 134336 168795 149403 183862 132882 167341 147949 182408 132882 167341 147949 182408 168029 202488 165737 200196 168029 202488 165737 200196 192624 227083 190332 224791 192624 227083 190332 224791 179639 214098 177347 211806 179639 214098 177347 211806 192633 227092 190341 224800 192633 227092 190341 224800 151942 186401 149519 183978 151942 186401 149519 183978 162089 196548 159666 194125 162089 196548 159666 194125 163550 198009 161127 195586 163550 198009 161127 195586 162096 196555 159673 194132 162096 196555 159673 194132 130140 164599 105738 140197 130140 164599 105738 140197 134489 168948 110087 144546 134489 168948 110087 144546 130132 164591 105730 140189 130132 164591 105730 140189 128680 163139 104278 138737 128680 163139 104278 138737 125719 160178 101231 135690 125719 160178 101231 135690 121399 155858 96911 131370 121399 155858 96911 131370 125710 160169 101222 135681 125710 160169 101222 135681 115589 150048 91101 125560 115589 150048 91101 125560 159354 193813 117462 151921 159354 193813 117462 151921 163703 198162 121811 156270 163703 198162 121811 156270 159346 193805 117454 151913 159346 193805 117454 151913 157894 192353 116002 150461 157894 192353 116002 150461 154933 189392 112955 147414 154933 189392 112955 147414 150613 185072 108635 143094 150613 185072 108635 143094 154924 189383 112946 147405 154924 189383 112946 147405 144803 179262 102825 137284 144803 179262 102825 137284 74829 88442 129447 143060 74829 88442 129447 143060 116797 130410 171415 185028 116797 130410 171415 185028 86442 100055 141060 154673 86442 100055 141060 154673 116809 130422 171427 185040 116809 130422 171427 185040 90928 104541 145415 159028 90928 104541 145415 159028 118448 132061 172935 186548 118448 132061 172935 186548 102539 116152 157026 170639 102539 116152 157026 170639 118458 132071 172945 186558 118458 132071 172945 186558 104043 117656 141171 154784 104043 117656 141171 154784 146011 159624 183139 196752 146011 159624 183139 196752 115656 129269 152784 166397 115656 129269 152784 166397 146023 159636 183151 196764 146023 159636 183151 196764 120142 133755 157139 170752 120142 133755 157139 170752 147662 161275 184659 198272 147662 161275 184659 198272 131753 145366 168750 182363 131753 145366 168750 182363 147672 161285 184669 198282 147672 161285 184669 198282 135480 149093 137358 150971 135480 149093 137358 150971 151411 165024 153289 166902 151411 165024 153289 166902 135474 149087 137352 150965 135474 149087 137352 150965 145604 159217 147482 161095 145604 159217 147482 161095 148615 162228 150407 164020 148615 162228 150407 164020 155877 169490 157669 171282 155877 169490 157669 171282 148608 162221 150400 164013 148608 162221 150400 164013 150069 163682 151861 165474 150069 163682 151861 165474 164694 178307 149082 162695 164694 178307 149082 162695 180625 194238 165013 178626 180625 194238 165013 178626 164688 178301 149076 162689 164688 178301 149076 162689 174818 188431 159206 172819 174818 188431 159206 172819 177829 191442 162131 175744 177829 191442 162131 175744 185091 198704 169393 183006 185091 198704 169393 183006 177822 191435 162124 175737 177822 191435 162124 175737 179283 192896 163585 177198 179283 192896 163585 177198 123672 136309 178290 190927 123672 136309 178290 190927 165640 178277 220258 232895 165640 178277 220258 232895 135285 147922 189903 202540 135285 147922 189903 202540 165652 178289 220270 232907 165652 178289 220270 232907 122443 135080 176930 189567 122443 135080 176930 189567 149963 162600 204450 217087 149963 162600 204450 217087 134054 146691 188541 201178 134054 146691 188541 201178 149973 162610 204460 217097 149973 162610 204460 217097 152886 165523 190014 202651 152886 165523 190014 202651 194854 207491 231982 244619 194854 207491 231982 244619 164499 177136 201627 214264 164499 177136 201627 214264 194866 207503 231994 244631 194866 207503 231994 244631 151657 164294 188654 201291 151657 164294 188654 201291 179177 191814 216174 228811 179177 191814 216174 228811 163268 175905 200265 212902 163268 175905 200265 212902 179187 191824 216184 228821 179187 191824 216184 228821 169883 182520 171761 184398 169883 182520 171761 184398 185814 198451 187692 200329 185814 198451 187692 200329 169877 182514 171755 184392 169877 182514 171755 184392 180007 192644 181885 194522 180007 192644 181885 194522 174354 186991 176146 188783 174354 186991 176146 188783 181616 194253 183408 196045 181616 194253 183408 196045 174347 186984 176139 188776 174347 186984 176139 188776 175808 188445 177600 190237 175808 188445 177600 190237 199097 211734 183485 196122 199097 211734 183485 196122 215028 227665 199416 212053 215028 227665 199416 212053 199091 211728 183479 196116 199091 211728 183479 196116 209221 221858 193609 206246 209221 221858 193609 206246 203568 216205 187870 200507 203568 216205 187870 200507 210830 223467 195132 207769 210830 223467 195132 207769 203561 216198 187863 200500 203561 216198 187863 200500 205022 217659 189324 201961 205022 217659 189324 201961 185879 199492 201077 214690 185879 199492 201077 214690 210474 224087 225672 239285 210474 224087 225672 239285 197489 211102 212687 226300 197489 211102 212687 226300 210483 224096 225681 239294 210483 224096 225681 239294 186989 200602 202056 215669 186989 200602 202056 215669 197136 210749 212203 225816 197136 210749 212203 225816 198597 212210 213664 227277 198597 212210 213664 227277 197143 210756 212210 225823 197143 210756 212210 225823 215093 228706 212801 226414 215093 228706 212801 226414 239688 253301 237396 251009 239688 253301 237396 251009 226703 240316 224411 238024 226703 240316 224411 238024 239697 253310 237405 251018 239697 253310 237405 251018 216203 229816 213780 227393 216203 229816 213780 227393 226350 239963 223927 237540 226350 239963 223927 237540 227811 241424 225388 239001 227811 241424 225388 239001 226357 239970 223934 237547 226357 239970 223934 237547 107318 120931 82916 96529 107318 120931 82916 96529 111667 125280 87265 100878 111667 125280 87265 100878 107310 120923 82908 96521 107310 120923 82908 96521 105858 119471 81456 95069 105858 119471 81456 95069 111475 125088 86987 100600 111475 125088 86987 100600 107155 120768 82667 96280 107155 120768 82667 96280 111466 125079 86978 100591 111466 125079 86978 100591 101345 114958 76857 90470 101345 114958 76857 90470 136532 150145 94640 108253 136532 150145 94640 108253 140881 154494 98989 112602 140881 154494 98989 112602 136524 150137 94632 108245 136524 150137 94632 108245 135072 148685 93180 106793 135072 148685 93180 106793 140689 154302 98711 112324 140689 154302 98711 112324 136369 149982 94391 108004 136369 149982 94391 108004 140680 154293 98702 112315 140680 154293 98702 112315 130559 144172 88581 102194 130559 144172 88581 102194 158266 170903 173464 186101 158266 170903 173464 186101 182861 195498 198059 210696 182861 195498 198059 210696 169876 182513 185074 197711 169876 182513 185074 197711 182870 195507 198068 210705 182870 195507 198068 210705 142048 154685 157115 169752 142048 154685 157115 169752 152195 164832 167262 179899 152195 164832 167262 179899 153656 166293 168723 181360 153656 166293 168723 181360 152202 164839 167269 179906 152202 164839 167269 179906 187480 200117 185188 197825 187480 200117 185188 197825 212075 224712 209783 222420 212075 224712 209783 222420 199090 211727 196798 209435 199090 211727 196798 209435 212084 224721 209792 222429 212084 224721 209792 222429 171262 183899 168839 181476 171262 183899 168839 181476 181409 194046 178986 191623 181409 194046 178986 191623 182870 195507 180447 193084 182870 195507 180447 193084 181416 194053 178993 191630 181416 194053 178993 191630 96995 109632 72593 85230 96995 109632 72593 85230 101344 113981 76942 89579 101344 113981 76942 89579 96987 109624 72585 85222 96987 109624 72585 85222 95535 108172 71133 83770 95535 108172 71133 83770 92488 105125 68000 80637 92488 105125 68000 80637 88168 100805 63680 76317 88168 100805 63680 76317 92479 105116 67991 80628 92479 105116 67991 80628 82358 94995 57870 70507 82358 94995 57870 70507 126209 138846 84317 96954 126209 138846 84317 96954 130558 143195 88666 101303 130558 143195 88666 101303 126201 138838 84309 96946 126201 138838 84309 96946 124749 137386 82857 95494 124749 137386 82857 95494 121702 134339 79724 92361 121702 134339 79724 92361 117382 130019 75404 88041 117382 130019 75404 88041 121693 134330 79715 92352 121693 134330 79715 92352 111572 124209 69594 82231 111572 124209 69594 82231 57596 44959 99653 87016 57596 44959 99653 87016 99564 86927 141621 128984 99564 86927 141621 128984 69209 56572 111266 98629 69209 56572 111266 98629 99576 86939 141633 128996 99576 86939 141633 128996 73826 61189 115752 103115 73826 61189 115752 103115 101346 88709 143272 130635 101346 88709 143272 130635 85437 72800 127363 114726 85437 72800 127363 114726 101356 88719 143282 130645 101356 88719 143282 130645 45872 33235 76269 63632 45872 33235 76269 63632 87840 75203 118237 105600 87840 75203 118237 105600 57485 44848 87882 75245 57485 44848 87882 75245 87852 75215 118249 105612 87852 75215 118249 105612 62102 49465 92368 79731 62102 49465 92368 79731 89622 76985 119888 107251 89622 76985 119888 107251 73713 61076 103979 91342 73713 61076 103979 91342 89632 76995 119898 107261 89632 76995 119898 107261 175211 162574 170437 157800 175211 162574 170437 157800 191142 178505 186368 173731 191142 178505 186368 173731 175205 162568 170431 157794 175205 162568 170431 157794 185335 172698 180561 167924 185335 172698 180561 167924 188432 175795 183572 170935 188432 175795 183572 170935 195694 183057 190834 178197 195694 183057 190834 178197 188425 175788 183565 170928 188425 175788 183565 170928 189886 177249 185026 172389 189886 177249 185026 172389 163487 150850 147053 134416 163487 150850 147053 134416 179418 166781 162984 150347 179418 166781 162984 150347 163481 150844 147047 134410 163481 150844 147047 134410 173611 160974 157177 144540 173611 160974 157177 144540 176708 164071 160188 147551 176708 164071 160188 147551 183970 171333 167450 154813 183970 171333 167450 154813 176701 164064 160181 147544 176701 164064 160181 147544 178162 165525 161642 149005 178162 165525 161642 149005 96331 82718 138388 124775 96331 82718 138388 124775 138299 124686 180356 166743 138299 124686 180356 166743 107944 94331 150001 136388 107944 94331 150001 136388 138311 124698 180368 166755 138311 124698 180368 166755 95233 81620 137159 123546 95233 81620 137159 123546 122753 109140 164679 151066 122753 109140 164679 151066 106844 93231 148770 135157 106844 93231 148770 135157 122763 109150 164689 151076 122763 109150 164689 151076 84607 70994 115004 101391 84607 70994 115004 101391 126575 112962 156972 143359 126575 112962 156972 143359 96220 82607 126617 113004 96220 82607 126617 113004 126587 112974 156984 143371 126587 112974 156984 143371 83509 69896 113775 100162 83509 69896 113775 100162 111029 97416 141295 127682 111029 97416 141295 127682 95120 81507 125386 111773 95120 81507 125386 111773 111039 97426 141305 127692 111039 97426 141305 127692 195174 181561 190400 176787 195174 181561 190400 176787 211105 197492 206331 192718 211105 197492 206331 192718 195168 181555 190394 176781 195168 181555 190394 176781 205298 191685 200524 186911 205298 191685 200524 186911 199731 186118 194871 181258 199731 186118 194871 181258 206993 193380 202133 188520 206993 193380 202133 188520 199724 186111 194864 181251 199724 186111 194864 181251 201185 187572 196325 182712 201185 187572 196325 182712 183450 169837 167016 153403 183450 169837 167016 153403 199381 185768 182947 169334 199381 185768 182947 169334 183444 169831 167010 153397 183444 169831 167010 153397 193574 179961 177140 163527 193574 179961 177140 163527 188007 174394 171487 157874 188007 174394 171487 157874 195269 181656 178749 165136 195269 181656 178749 165136 188000 174387 171480 157867 188000 174387 171480 157867 189461 175848 172941 159328 189461 175848 172941 159328 208066 195429 210703 198066 208066 195429 210703 198066 232661 220024 235298 222661 232661 220024 235298 222661 219676 207039 222313 209676 219676 207039 222313 209676 232670 220033 235307 222670 232670 220033 235307 222670 209307 196670 211813 199176 209307 196670 211813 199176 219454 206817 221960 209323 219454 206817 221960 209323 220915 208278 223421 210784 220915 208278 223421 210784 219461 206824 221967 209330 219461 206824 221967 209330 196342 183705 187319 174682 196342 183705 187319 174682 220937 208300 211914 199277 220937 208300 211914 199277 207952 195315 198929 186292 207952 195315 198929 186292 220946 208309 211923 199286 220946 208309 211923 199286 197583 184946 188429 175792 197583 184946 188429 175792 207730 195093 198576 185939 207730 195093 198576 185939 209191 196554 200037 187400 209191 196554 200037 187400 207737 195100 198583 185946 207737 195100 198583 185946 173329 160692 142275 129638 173329 160692 142275 129638 177678 165041 146624 133987 177678 165041 146624 133987 173321 160684 142267 129630 173321 160684 142267 129630 171869 159232 140815 128178 171869 159232 140815 128178 177572 164935 146432 133795 177572 164935 146432 133795 173252 160615 142112 129475 173252 160615 142112 129475 177563 164926 146423 133786 177563 164926 146423 133786 167442 154805 136302 123665 167442 154805 136302 123665 161605 148968 118891 106254 161605 148968 118891 106254 165954 153317 123240 110603 165954 153317 123240 110603 161597 148960 118883 106246 161597 148960 118883 106246 160145 147508 117431 104794 160145 147508 117431 104794 165848 153211 123048 110411 165848 153211 123048 110411 161528 148891 118728 106091 161528 148891 118728 106091 165839 153202 123039 110402 165839 153202 123039 110402 155718 143081 112918 100281 155718 143081 112918 100281 170345 156732 172982 159369 170345 156732 172982 159369 194940 181327 197577 183964 194940 181327 197577 183964 181955 168342 184592 170979 181955 168342 184592 170979 194949 181336 197586 183973 194949 181336 197586 183973 154258 140645 156764 143151 154258 140645 156764 143151 164405 150792 166911 153298 164405 150792 166911 153298 165866 152253 168372 154759 165866 152253 168372 154759 164412 150799 166918 153305 164412 150799 166918 153305 158621 145008 149598 135985 158621 145008 149598 135985 183216 169603 174193 160580 183216 169603 174193 160580 170231 156618 161208 147595 170231 156618 161208 147595 183225 169612 174202 160589 183225 169612 174202 160589 142534 128921 133380 119767 142534 128921 133380 119767 152681 139068 143527 129914 152681 139068 143527 129914 154142 140529 144988 131375 154142 140529 144988 131375 152688 139075 143534 129921 152688 139075 143534 129921 148566 134953 117512 103899 148566 134953 117512 103899 152915 139302 121861 108248 152915 139302 121861 108248 148558 134945 117504 103891 148558 134945 117504 103891 147106 133493 116052 102439 147106 133493 116052 102439 144145 130532 113005 99392 144145 130532 113005 99392 139825 126212 108685 95072 139825 126212 108685 95072 144136 130523 112996 99383 144136 130523 112996 99383 134015 120402 102875 89262 134015 120402 102875 89262 136842 123229 94128 80515 136842 123229 94128 80515 141191 127578 98477 84864 141191 127578 98477 84864 136834 123221 94120 80507 136834 123221 94120 80507 135382 121769 92668 79055 135382 121769 92668 79055 132421 118808 89621 76008 132421 118808 89621 76008 128101 114488 85301 71688 128101 114488 85301 71688 132412 118799 89612 75999 132412 118799 89612 75999 122291 108678 79491 65878 122291 108678 79491 65878 112728 85543 154785 127600 112728 85543 154785 127600 154696 127511 196753 169568 154696 127511 196753 169568 124341 97156 166398 139213 124341 97156 166398 139213 154708 127523 196765 169580 154708 127523 196765 169580 128827 101642 170753 143568 128827 101642 170753 143568 156347 129162 198273 171088 156347 129162 198273 171088 140438 113253 182364 155179 140438 113253 182364 155179 156357 129172 198283 171098 156357 129172 198283 171098 101004 73819 131401 104216 101004 73819 131401 104216 142972 115787 173369 146184 142972 115787 173369 146184 112617 85432 143014 115829 112617 85432 143014 115829 142984 115799 173381 146196 142984 115799 173381 146196 117103 89918 147369 120184 117103 89918 147369 120184 144623 117438 174889 147704 144623 117438 174889 147704 128714 101529 158980 131795 128714 101529 158980 131795 144633 117448 174899 147714 144633 117448 174899 147714 170516 143331 165742 138557 170516 143331 165742 138557 186447 159262 181673 154488 186447 159262 181673 154488 170510 143325 165736 138551 170510 143325 165736 138551 180640 153455 175866 148681 180640 153455 175866 148681 183651 156466 178791 151606 183651 156466 178791 151606 190913 163728 186053 158868 190913 163728 186053 158868 183644 156459 178784 151599 183644 156459 178784 151599 185105 157920 180245 153060 185105 157920 180245 153060 158792 131607 142358 115173 158792 131607 142358 115173 174723 147538 158289 131104 174723 147538 158289 131104 158786 131601 142352 115167 158786 131601 142352 115167 168916 141731 152482 125297 168916 141731 152482 125297 171927 144742 155407 128222 171927 144742 155407 128222 179189 152004 162669 135484 179189 152004 162669 135484 171920 144735 155400 128215 171920 144735 155400 128215 173381 146196 156861 129676 173381 146196 156861 129676 138467 110306 180524 152363 138467 110306 180524 152363 180435 152274 222492 194331 180435 152274 222492 194331 150080 121919 192137 163976 150080 121919 192137 163976 180447 152286 222504 194343 180447 152286 222504 194343 137238 109077 179164 151003 137238 109077 179164 151003 164758 136597 206684 178523 164758 136597 206684 178523 148849 120688 190775 162614 148849 120688 190775 162614 164768 136607 206694 178533 164768 136607 206694 178533 126743 98582 157140 128979 126743 98582 157140 128979 168711 140550 199108 170947 168711 140550 199108 170947 138356 110195 168753 140592 138356 110195 168753 140592 168723 140562 199120 170959 168723 140562 199120 170959 125514 97353 155780 127619 125514 97353 155780 127619 153034 124873 183300 155139 153034 124873 183300 155139 137125 108964 167391 139230 137125 108964 167391 139230 153044 124883 183310 155149 153044 124883 183310 155149 181815 153654 177041 148880 181815 153654 177041 148880 197746 169585 192972 164811 197746 169585 192972 164811 181809 153648 177035 148874 181809 153648 177035 148874 191939 163778 187165 159004 191939 163778 187165 159004 186286 158125 181426 153265 186286 158125 181426 153265 193548 165387 188688 160527 193548 165387 188688 160527 186279 158118 181419 153258 186279 158118 181419 153258 187740 159579 182880 154719 187740 159579 182880 154719 170091 141930 153657 125496 170091 141930 153657 125496 186022 157861 169588 141427 186022 157861 169588 141427 170085 141924 153651 125490 170085 141924 153651 125490 180215 152054 163781 135620 180215 152054 163781 135620 174562 146401 158042 129881 174562 146401 158042 129881 181824 153663 165304 137143 181824 153663 165304 137143 174555 146394 158035 129874 174555 146394 158035 129874 176016 147855 159496 131335 176016 147855 159496 131335 223778 196593 226415 199230 223778 196593 226415 199230 248373 221188 251010 223825 248373 221188 251010 223825 235388 208203 238025 210840 235388 208203 238025 210840 248382 221197 251019 223834 248382 221197 251019 223834 224888 197703 227394 200209 224888 197703 227394 200209 235035 207850 237541 210356 235035 207850 237541 210356 236496 209311 239002 211817 236496 209311 239002 211817 235042 207857 237548 210363 235042 207857 237548 210363 212054 184869 203031 175846 212054 184869 203031 175846 236649 209464 227626 200441 236649 209464 227626 200441 223664 196479 214641 187456 223664 196479 214641 187456 236658 209473 227635 200450 236658 209473 227635 200450 213164 185979 204010 176825 213164 185979 204010 176825 223311 196126 214157 186972 223311 196126 214157 186972 224772 197587 215618 188433 224772 197587 215618 188433 223318 196133 214164 186979 223318 196133 214164 186979 142354 115169 111300 84115 142354 115169 111300 84115 146703 119518 115649 88464 146703 119518 115649 88464 142346 115161 111292 84107 142346 115161 111292 84107 140894 113709 109840 82655 140894 113709 109840 82655 146511 119326 115371 88186 146511 119326 115371 88186 142191 115006 111051 83866 142191 115006 111051 83866 146502 119317 115362 88177 146502 119317 115362 88177 136381 109196 105241 78056 136381 109196 105241 78056 130630 103445 87916 60731 130630 103445 87916 60731 134979 107794 92265 65080 134979 107794 92265 65080 130622 103437 87908 60723 130622 103437 87908 60723 129170 101985 86456 59271 129170 101985 86456 59271 134787 107602 91987 64802 134787 107602 91987 64802 130467 103282 87667 60482 130467 103282 87667 60482 134778 107593 91978 64793 134778 107593 91978 64793 124657 97472 81857 54672 124657 97472 81857 54672 173061 144900 175698 147537 173061 144900 175698 147537 197656 169495 200293 172132 197656 169495 200293 172132 184671 156510 187308 159147 184671 156510 187308 159147 197665 169504 200302 172141 197665 169504 200302 172141 156843 128682 159349 131188 156843 128682 159349 131188 166990 138829 169496 141335 166990 138829 169496 141335 168451 140290 170957 142796 168451 140290 170957 142796 166997 138836 169503 141342 166997 138836 169503 141342 161337 133176 152314 124153 161337 133176 152314 124153 185932 157771 176909 148748 185932 157771 176909 148748 172947 144786 163924 135763 172947 144786 163924 135763 185941 157780 176918 148757 185941 157780 176918 148757 145119 116958 135965 107804 145119 116958 135965 107804 155266 127105 146112 117951 155266 127105 146112 117951 156727 128566 147573 119412 156727 128566 147573 119412 155273 127112 146119 117958 155273 127112 146119 117958 108927 80766 77873 49712 108927 80766 77873 49712 113276 85115 82222 54061 113276 85115 82222 54061 108919 80758 77865 49704 108919 80758 77865 49704 107467 79306 76413 48252 107467 79306 76413 48252 104420 76259 73280 45119 104420 76259 73280 45119 100100 71939 68960 40799 100100 71939 68960 40799 104411 76250 73271 45110 104411 76250 73271 45110 94290 66129 63150 34989 94290 66129 63150 34989 97203 69042 54489 26328 97203 69042 54489 26328 101552 73391 58838 30677 101552 73391 58838 30677 97195 69034 54481 26320 97195 69034 54481 26320 95743 67582 53029 24868 95743 67582 53029 24868 92696 64535 49896 21735 92696 64535 49896 21735 88376 60215 45576 17415 88376 60215 45576 17415 92687 64526 49887 21726 92687 64526 49887 21726 82566 54405 39766 11605 82566 54405 39766 11605))
(proc-maxd* count (0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2))
(proc-depth* count2 (#() #((1 . 141740)) #((1 . 218472)) #((1 . 360212)) #() #((1 . 141740)) #((1 . 218472)) #((1 . 360212)) #((1 . 78254) (2 . 5820)) #((1 . 149124) (2 . 5820)) #((1 . 187490) (2 . 5820)) #((1 . 258360) (2 . 5820)) #((1 . 78254) (2 . 5820)) #((1 . 149124) (2 . 5820)) #((1 . 187490) (2 . 5820)) #((1 . 258360) (2 . 5820)) #((1 . 46452)) #((1 . 188192)) #((1 . 264924)) #((1 . 406664)) #((1 . 46452)) #((1 . 188192)) #((1 . 264924)) #((1 . 406664)) #((1 . 78278) (2 . 5820)) #((1 . 149148) (2 . 5820)) #((1 . 187514) (2 . 5820)) #((1 . 258384) (2 . 5820)) #((1 . 78278) (2 . 5820)) #((1 . 149148) (2 . 5820)) #((1 . 187514) (2 . 5820)) #((1 . 258384) (2 . 5820)) #((1 . 65140)) #((1 . 206880)) #((1 . 283088)) #((1 . 424828)) #((1 . 65140)) #((1 . 206880)) #((1 . 283088)) #((1 . 424828)) #((1 . 81928) (2 . 5820)) #((1 . 152798) (2 . 5820)) #((1 . 190902) (2 . 5820)) #((1 . 261772) (2 . 5820)) #((1 . 81928) (2 . 5820)) #((1 . 152798) (2 . 5820)) #((1 . 190902) (2 . 5820)) #((1 . 261772) (2 . 5820)) #((1 . 111584)) #((1 . 253324)) #((1 . 329532)) #((1 . 471272)) #((1 . 111584)) #((1 . 253324)) #((1 . 329532)) #((1 . 471272)) #((1 . 81948) (2 . 5820)) #((1 . 152818) (2 . 5820)) #((1 . 190922) (2 . 5820)) #((1 . 261792) (2 . 5820)) #((1 . 81948) (2 . 5820)) #((1 . 152818) (2 . 5820)) #((1 . 190922) (2 . 5820)) #((1 . 261792) (2 . 5820)) #((1 . 116856)) #((1 . 258596)) #((1 . 265368)) #((1 . 407108)) #((1 . 116856)) #((1 . 258596)) #((1 . 265368)) #((1 . 407108)) #((1 . 136682) (2 . 5820)) #((1 . 207552) (2 . 5820)) #((1 . 210938) (2 . 5820)) #((1 . 281808) (2 . 5820)) #((1 . 136682) (2 . 5820)) #((1 . 207552) (2 . 5820)) #((1 . 210938) (2 . 5820)) #((1 . 281808) (2 . 5820)) #((1 . 163308)) #((1 . 305048)) #((1 . 311820)) #((1 . 453560)) #((1 . 163308)) #((1 . 305048)) #((1 . 311820)) #((1 . 453560)) #((1 . 136706) (2 . 5820)) #((1 . 207576) (2 . 5820)) #((1 . 210962) (2 . 5820)) #((1 . 281832) (2 . 5820)) #((1 . 136706) (2 . 5820)) #((1 . 207576) (2 . 5820)) #((1 . 210962) (2 . 5820)) #((1 . 281832) (2 . 5820)) #((1 . 181996)) #((1 . 323736)) #((1 . 329984)) #((1 . 471724)) #((1 . 181996)) #((1 . 323736)) #((1 . 329984)) #((1 . 471724)) #((1 . 140356) (2 . 5820)) #((1 . 211226) (2 . 5820)) #((1 . 214350) (2 . 5820)) #((1 . 285220) (2 . 5820)) #((1 . 140356) (2 . 5820)) #((1 . 211226) (2 . 5820)) #((1 . 214350) (2 . 5820)) #((1 . 285220) (2 . 5820)) #((1 . 228440)) #((1 . 370180)) #((1 . 376428)) #((1 . 518168)) #((1 . 228440)) #((1 . 370180)) #((1 . 376428)) #((1 . 518168)) #((1 . 140376) (2 . 5820)) #((1 . 211246) (2 . 5820)) #((1 . 214370) (2 . 5820)) #((1 . 285240) (2 . 5820)) #((1 . 140376) (2 . 5820)) #((1 . 211246) (2 . 5820)) #((1 . 214370) (2 . 5820)) #((1 . 285240) (2 . 5820)) #((1 . 522980)) #((1 . 664720)) #((1 . 530492)) #((1 . 672232)) #((1 . 522980)) #((1 . 664720)) #((1 . 530492)) #((1 . 672232)) #((1 . 287630) (2 . 5802)) #((1 . 358500) (2 . 5802)) #((1 . 291386) (2 . 5802)) #((1 . 362256) (2 . 5802)) #((1 . 287630) (2 . 5802)) #((1 . 358500) (2 . 5802)) #((1 . 291386) (2 . 5802)) #((1 . 362256) (2 . 5802)) #((1 . 522956)) #((1 . 664696)) #((1 . 530468)) #((1 . 672208)) #((1 . 522956)) #((1 . 664696)) #((1 . 530468)) #((1 . 672208)) #((1 . 276016) (2 . 5802)) #((1 . 346886) (2 . 5802)) #((1 . 279772) (2 . 5802)) #((1 . 350642) (2 . 5802)) #((1 . 276016) (2 . 5802)) #((1 . 346886) (2 . 5802)) #((1 . 279772) (2 . 5802)) #((1 . 350642) (2 . 5802)) #((1 . 287868) (2 . 152)) #((1 . 358738) (2 . 152)) #((1 . 291452) (2 . 152)) #((1 . 362322) (2 . 152)) #((1 . 287868) (2 . 152)) #((1 . 358738) (2 . 152)) #((1 . 291452) (2 . 152)) #((1 . 362322) (2 . 152)) #((1 . 296670) (2 . 5954)) #((1 . 367540) (2 . 5954)) #((1 . 300254) (2 . 5954)) #((1 . 371124) (2 . 5954)) #((1 . 296670) (2 . 5954)) #((1 . 367540) (2 . 5954)) #((1 . 300254) (2 . 5954)) #((1 . 371124) (2 . 5954)) #((1 . 287854) (2 . 152)) #((1 . 358724) (2 . 152)) #((1 . 291438) (2 . 152)) #((1 . 362308) (2 . 152)) #((1 . 287854) (2 . 152)) #((1 . 358724) (2 . 152)) #((1 . 291438) (2 . 152)) #((1 . 362308) (2 . 152)) #((1 . 285054) (2 . 5954)) #((1 . 355924) (2 . 5954)) #((1 . 288638) (2 . 5954)) #((1 . 359508) (2 . 5954)) #((1 . 285054) (2 . 5954)) #((1 . 355924) (2 . 5954)) #((1 . 288638) (2 . 5954)) #((1 . 359508) (2 . 5954)) #((1 . 639836)) #((1 . 781576)) #((1 . 577388)) #((1 . 719128)) #((1 . 639836)) #((1 . 781576)) #((1 . 577388)) #((1 . 719128)) #((1 . 346058) (2 . 5802)) #((1 . 416928) (2 . 5802)) #((1 . 314834) (2 . 5802)) #((1 . 385704) (2 . 5802)) #((1 . 346058) (2 . 5802)) #((1 . 416928) (2 . 5802)) #((1 . 314834) (2 . 5802)) #((1 . 385704) (2 . 5802)) #((1 . 639812)) #((1 . 781552)) #((1 . 577364)) #((1 . 719104)) #((1 . 639812)) #((1 . 781552)) #((1 . 577364)) #((1 . 719104)) #((1 . 334444) (2 . 5802)) #((1 . 405314) (2 . 5802)) #((1 . 303220) (2 . 5802)) #((1 . 374090) (2 . 5802)) #((1 . 334444) (2 . 5802)) #((1 . 405314) (2 . 5802)) #((1 . 303220) (2 . 5802)) #((1 . 374090) (2 . 5802)) #((1 . 346296) (2 . 152)) #((1 . 417166) (2 . 152)) #((1 . 314900) (2 . 152)) #((1 . 385770) (2 . 152)) #((1 . 346296) (2 . 152)) #((1 . 417166) (2 . 152)) #((1 . 314900) (2 . 152)) #((1 . 385770) (2 . 152)) #((1 . 355098) (2 . 5954)) #((1 . 425968) (2 . 5954)) #((1 . 323702) (2 . 5954)) #((1 . 394572) (2 . 5954)) #((1 . 355098) (2 . 5954)) #((1 . 425968) (2 . 5954)) #((1 . 323702) (2 . 5954)) #((1 . 394572) (2 . 5954)) #((1 . 346282) (2 . 152)) #((1 . 417152) (2 . 152)) #((1 . 314886) (2 . 152)) #((1 . 385756) (2 . 152)) #((1 . 346282) (2 . 152)) #((1 . 417152) (2 . 152)) #((1 . 314886) (2 . 152)) #((1 . 385756) (2 . 152)) #((1 . 343482) (2 . 5954)) #((1 . 414352) (2 . 5954)) #((1 . 312086) (2 . 5954)) #((1 . 382956) (2 . 5954)) #((1 . 343482) (2 . 5954)) #((1 . 414352) (2 . 5954)) #((1 . 312086) (2 . 5954)) #((1 . 382956) (2 . 5954)) #((1 . 258908)) #((1 . 396744)) #((1 . 477380)) #((1 . 615216)) #((1 . 258908)) #((1 . 396744)) #((1 . 477380)) #((1 . 615216)) #((1 . 207708) (2 . 5820)) #((1 . 276626) (2 . 5820)) #((1 . 316944) (2 . 5820)) #((1 . 385862) (2 . 5820)) #((1 . 207708) (2 . 5820)) #((1 . 276626) (2 . 5820)) #((1 . 316944) (2 . 5820)) #((1 . 385862) (2 . 5820)) #((1 . 305360)) #((1 . 443196)) #((1 . 523832)) #((1 . 661668)) #((1 . 305360)) #((1 . 443196)) #((1 . 523832)) #((1 . 661668)) #((1 . 207732) (2 . 5820)) #((1 . 276650) (2 . 5820)) #((1 . 316968) (2 . 5820)) #((1 . 385886) (2 . 5820)) #((1 . 207732) (2 . 5820)) #((1 . 276650) (2 . 5820)) #((1 . 316968) (2 . 5820)) #((1 . 385886) (2 . 5820)) #((1 . 254736)) #((1 . 392572)) #((1 . 472684)) #((1 . 610520)) #((1 . 254736)) #((1 . 392572)) #((1 . 472684)) #((1 . 610520)) #((1 . 176726) (2 . 5820)) #((1 . 245644) (2 . 5820)) #((1 . 285700) (2 . 5820)) #((1 . 354618) (2 . 5820)) #((1 . 176726) (2 . 5820)) #((1 . 245644) (2 . 5820)) #((1 . 285700) (2 . 5820)) #((1 . 354618) (2 . 5820)) #((1 . 301180)) #((1 . 439016)) #((1 . 519128)) #((1 . 656964)) #((1 . 301180)) #((1 . 439016)) #((1 . 519128)) #((1 . 656964)) #((1 . 176746) (2 . 5820)) #((1 . 245664) (2 . 5820)) #((1 . 285720) (2 . 5820)) #((1 . 354638) (2 . 5820)) #((1 . 176746) (2 . 5820)) #((1 . 245664) (2 . 5820)) #((1 . 285720) (2 . 5820)) #((1 . 354638) (2 . 5820)) #((1 . 375764)) #((1 . 513600)) #((1 . 524276)) #((1 . 662112)) #((1 . 375764)) #((1 . 513600)) #((1 . 524276)) #((1 . 662112)) #((1 . 266136) (2 . 5820)) #((1 . 335054) (2 . 5820)) #((1 . 340392) (2 . 5820)) #((1 . 409310) (2 . 5820)) #((1 . 266136) (2 . 5820)) #((1 . 335054) (2 . 5820)) #((1 . 340392) (2 . 5820)) #((1 . 409310) (2 . 5820)) #((1 . 422216)) #((1 . 560052)) #((1 . 570728)) #((1 . 708564)) #((1 . 422216)) #((1 . 560052)) #((1 . 570728)) #((1 . 708564)) #((1 . 266160) (2 . 5820)) #((1 . 335078) (2 . 5820)) #((1 . 340416) (2 . 5820)) #((1 . 409334) (2 . 5820)) #((1 . 266160) (2 . 5820)) #((1 . 335078) (2 . 5820)) #((1 . 340416) (2 . 5820)) #((1 . 409334) (2 . 5820)) #((1 . 371592)) #((1 . 509428)) #((1 . 519580)) #((1 . 657416)) #((1 . 371592)) #((1 . 509428)) #((1 . 519580)) #((1 . 657416)) #((1 . 235154) (2 . 5820)) #((1 . 304072) (2 . 5820)) #((1 . 309148) (2 . 5820)) #((1 . 378066) (2 . 5820)) #((1 . 235154) (2 . 5820)) #((1 . 304072) (2 . 5820)) #((1 . 309148) (2 . 5820)) #((1 . 378066) (2 . 5820)) #((1 . 418036)) #((1 . 555872)) #((1 . 566024)) #((1 . 703860)) #((1 . 418036)) #((1 . 555872)) #((1 . 566024)) #((1 . 703860)) #((1 . 235174) (2 . 5820)) #((1 . 304092) (2 . 5820)) #((1 . 309168) (2 . 5820)) #((1 . 378086) (2 . 5820)) #((1 . 235174) (2 . 5820)) #((1 . 304092) (2 . 5820)) #((1 . 309168) (2 . 5820)) #((1 . 378086) (2 . 5820)) #((1 . 338960) (2 . 14440)) #((1 . 407878) (2 . 14440)) #((1 . 342716) (2 . 14440)) #((1 . 411634) (2 . 14440)) #((1 . 338960) (2 . 14440)) #((1 . 407878) (2 . 14440)) #((1 . 342716) (2 . 14440)) #((1 . 411634) (2 . 14440)) #((1 . 365100) (2 . 20242)) #((1 . 434018) (2 . 20242)) #((1 . 368856) (2 . 20242)) #((1 . 437774) (2 . 20242)) #((1 . 365100) (2 . 20242)) #((1 . 434018) (2 . 20242)) #((1 . 368856) (2 . 20242)) #((1 . 437774) (2 . 20242)) #((1 . 338948) (2 . 14440)) #((1 . 407866) (2 . 14440)) #((1 . 342704) (2 . 14440)) #((1 . 411622) (2 . 14440)) #((1 . 338948) (2 . 14440)) #((1 . 407866) (2 . 14440)) #((1 . 342704) (2 . 14440)) #((1 . 411622) (2 . 14440)) #((1 . 353486) (2 . 20242)) #((1 . 422404) (2 . 20242)) #((1 . 357242) (2 . 20242)) #((1 . 426160) (2 . 20242)) #((1 . 353486) (2 . 20242)) #((1 . 422404) (2 . 20242)) #((1 . 357242) (2 . 20242)) #((1 . 426160) (2 . 20242)) #((1 . 348010) (2 . 14592)) #((1 . 416928) (2 . 14592)) #((1 . 351594) (2 . 14592)) #((1 . 420512) (2 . 14592)) #((1 . 348010) (2 . 14592)) #((1 . 416928) (2 . 14592)) #((1 . 351594) (2 . 14592)) #((1 . 420512) (2 . 14592)) #((1 . 356812) (2 . 20394)) #((1 . 425730) (2 . 20394)) #((1 . 360396) (2 . 20394)) #((1 . 429314) (2 . 20394)) #((1 . 356812) (2 . 20394)) #((1 . 425730) (2 . 20394)) #((1 . 360396) (2 . 20394)) #((1 . 429314) (2 . 20394)) #((1 . 347996) (2 . 14592)) #((1 . 416914) (2 . 14592)) #((1 . 351580) (2 . 14592)) #((1 . 420498) (2 . 14592)) #((1 . 347996) (2 . 14592)) #((1 . 416914) (2 . 14592)) #((1 . 351580) (2 . 14592)) #((1 . 420498) (2 . 14592)) #((1 . 345196) (2 . 20394)) #((1 . 414114) (2 . 20394)) #((1 . 348780) (2 . 20394)) #((1 . 417698) (2 . 20394)) #((1 . 345196) (2 . 20394)) #((1 . 414114) (2 . 20394)) #((1 . 348780) (2 . 20394)) #((1 . 417698) (2 . 20394)) #((1 . 397388) (2 . 14440)) #((1 . 466306) (2 . 14440)) #((1 . 366164) (2 . 14440)) #((1 . 435082) (2 . 14440)) #((1 . 397388) (2 . 14440)) #((1 . 466306) (2 . 14440)) #((1 . 366164) (2 . 14440)) #((1 . 435082) (2 . 14440)) #((1 . 423528) (2 . 20242)) #((1 . 492446) (2 . 20242)) #((1 . 392304) (2 . 20242)) #((1 . 461222) (2 . 20242)) #((1 . 423528) (2 . 20242)) #((1 . 492446) (2 . 20242)) #((1 . 392304) (2 . 20242)) #((1 . 461222) (2 . 20242)) #((1 . 397376) (2 . 14440)) #((1 . 466294) (2 . 14440)) #((1 . 366152) (2 . 14440)) #((1 . 435070) (2 . 14440)) #((1 . 397376) (2 . 14440)) #((1 . 466294) (2 . 14440)) #((1 . 366152) (2 . 14440)) #((1 . 435070) (2 . 14440)) #((1 . 411914) (2 . 20242)) #((1 . 480832) (2 . 20242)) #((1 . 380690) (2 . 20242)) #((1 . 449608) (2 . 20242)) #((1 . 411914) (2 . 20242)) #((1 . 480832) (2 . 20242)) #((1 . 380690) (2 . 20242)) #((1 . 449608) (2 . 20242)) #((1 . 406438) (2 . 14592)) #((1 . 475356) (2 . 14592)) #((1 . 375042) (2 . 14592)) #((1 . 443960) (2 . 14592)) #((1 . 406438) (2 . 14592)) #((1 . 475356) (2 . 14592)) #((1 . 375042) (2 . 14592)) #((1 . 443960) (2 . 14592)) #((1 . 415240) (2 . 20394)) #((1 . 484158) (2 . 20394)) #((1 . 383844) (2 . 20394)) #((1 . 452762) (2 . 20394)) #((1 . 415240) (2 . 20394)) #((1 . 484158) (2 . 20394)) #((1 . 383844) (2 . 20394)) #((1 . 452762) (2 . 20394)) #((1 . 406424) (2 . 14592)) #((1 . 475342) (2 . 14592)) #((1 . 375028) (2 . 14592)) #((1 . 443946) (2 . 14592)) #((1 . 406424) (2 . 14592)) #((1 . 475342) (2 . 14592)) #((1 . 375028) (2 . 14592)) #((1 . 443946) (2 . 14592)) #((1 . 403624) (2 . 20394)) #((1 . 472542) (2 . 20394)) #((1 . 372228) (2 . 20394)) #((1 . 441146) (2 . 20394)) #((1 . 403624) (2 . 20394)) #((1 . 472542) (2 . 20394)) #((1 . 372228) (2 . 20394)) #((1 . 441146) (2 . 20394)) #((1 . 292160) (2 . 8828)) #((1 . 363030) (2 . 8828)) #((1 . 322556) (2 . 8828)) #((1 . 393426) (2 . 8828)) #((1 . 292160) (2 . 8828)) #((1 . 363030) (2 . 8828)) #((1 . 322556) (2 . 8828)) #((1 . 393426) (2 . 8828)) #((1 . 335668) (2 . 14648)) #((1 . 406538) (2 . 14648)) #((1 . 366064) (2 . 14648)) #((1 . 436934) (2 . 14648)) #((1 . 335668) (2 . 14648)) #((1 . 406538) (2 . 14648)) #((1 . 366064) (2 . 14648)) #((1 . 436934) (2 . 14648)) #((1 . 315380) (2 . 8828)) #((1 . 386250) (2 . 8828)) #((1 . 345776) (2 . 8828)) #((1 . 416646) (2 . 8828)) #((1 . 315380) (2 . 8828)) #((1 . 386250) (2 . 8828)) #((1 . 345776) (2 . 8828)) #((1 . 416646) (2 . 8828)) #((1 . 335686) (2 . 14648)) #((1 . 406556) (2 . 14648)) #((1 . 366082) (2 . 14648)) #((1 . 436952) (2 . 14648)) #((1 . 335686) (2 . 14648)) #((1 . 406556) (2 . 14648)) #((1 . 366082) (2 . 14648)) #((1 . 436952) (2 . 14648)) #((1 . 294904) (2 . 8676)) #((1 . 365774) (2 . 8676)) #((1 . 325038) (2 . 8676)) #((1 . 395908) (2 . 8676)) #((1 . 294904) (2 . 8676)) #((1 . 365774) (2 . 8676)) #((1 . 325038) (2 . 8676)) #((1 . 395908) (2 . 8676)) #((1 . 309516) (2 . 14496)) #((1 . 380386) (2 . 14496)) #((1 . 339650) (2 . 14496)) #((1 . 410520) (2 . 14496)) #((1 . 309516) (2 . 14496)) #((1 . 380386) (2 . 14496)) #((1 . 339650) (2 . 14496)) #((1 . 410520) (2 . 14496)) #((1 . 318120) (2 . 8676)) #((1 . 388990) (2 . 8676)) #((1 . 348254) (2 . 8676)) #((1 . 419124) (2 . 8676)) #((1 . 318120) (2 . 8676)) #((1 . 388990) (2 . 8676)) #((1 . 348254) (2 . 8676)) #((1 . 419124) (2 . 8676)) #((1 . 309530) (2 . 14496)) #((1 . 380400) (2 . 14496)) #((1 . 339664) (2 . 14496)) #((1 . 410534) (2 . 14496)) #((1 . 309530) (2 . 14496)) #((1 . 380400) (2 . 14496)) #((1 . 339664) (2 . 14496)) #((1 . 410534) (2 . 14496)) #((1 . 350588) (2 . 8828)) #((1 . 421458) (2 . 8828)) #((1 . 346004) (2 . 8828)) #((1 . 416874) (2 . 8828)) #((1 . 350588) (2 . 8828)) #((1 . 421458) (2 . 8828)) #((1 . 346004) (2 . 8828)) #((1 . 416874) (2 . 8828)) #((1 . 394096) (2 . 14648)) #((1 . 464966) (2 . 14648)) #((1 . 389512) (2 . 14648)) #((1 . 460382) (2 . 14648)) #((1 . 394096) (2 . 14648)) #((1 . 464966) (2 . 14648)) #((1 . 389512) (2 . 14648)) #((1 . 460382) (2 . 14648)) #((1 . 373808) (2 . 8828)) #((1 . 444678) (2 . 8828)) #((1 . 369224) (2 . 8828)) #((1 . 440094) (2 . 8828)) #((1 . 373808) (2 . 8828)) #((1 . 444678) (2 . 8828)) #((1 . 369224) (2 . 8828)) #((1 . 440094) (2 . 8828)) #((1 . 394114) (2 . 14648)) #((1 . 464984) (2 . 14648)) #((1 . 389530) (2 . 14648)) #((1 . 460400) (2 . 14648)) #((1 . 394114) (2 . 14648)) #((1 . 464984) (2 . 14648)) #((1 . 389530) (2 . 14648)) #((1 . 460400) (2 . 14648)) #((1 . 353332) (2 . 8676)) #((1 . 424202) (2 . 8676)) #((1 . 348486) (2 . 8676)) #((1 . 419356) (2 . 8676)) #((1 . 353332) (2 . 8676)) #((1 . 424202) (2 . 8676)) #((1 . 348486) (2 . 8676)) #((1 . 419356) (2 . 8676)) #((1 . 367944) (2 . 14496)) #((1 . 438814) (2 . 14496)) #((1 . 363098) (2 . 14496)) #((1 . 433968) (2 . 14496)) #((1 . 367944) (2 . 14496)) #((1 . 438814) (2 . 14496)) #((1 . 363098) (2 . 14496)) #((1 . 433968) (2 . 14496)) #((1 . 376548) (2 . 8676)) #((1 . 447418) (2 . 8676)) #((1 . 371702) (2 . 8676)) #((1 . 442572) (2 . 8676)) #((1 . 376548) (2 . 8676)) #((1 . 447418) (2 . 8676)) #((1 . 371702) (2 . 8676)) #((1 . 442572) (2 . 8676)) #((1 . 367958) (2 . 14496)) #((1 . 438828) (2 . 14496)) #((1 . 363112) (2 . 14496)) #((1 . 433982) (2 . 14496)) #((1 . 367958) (2 . 14496)) #((1 . 438828) (2 . 14496)) #((1 . 363112) (2 . 14496)) #((1 . 433982) (2 . 14496)) #((1 . 515500)) #((1 . 657240)) #((1 . 417892)) #((1 . 559632)) #((1 . 515500)) #((1 . 657240)) #((1 . 417892)) #((1 . 559632)) #((1 . 260726) (2 . 5802)) #((1 . 331596) (2 . 5802)) #((1 . 211922) (2 . 5802)) #((1 . 282792) (2 . 5802)) #((1 . 260726) (2 . 5802)) #((1 . 331596) (2 . 5802)) #((1 . 211922) (2 . 5802)) #((1 . 282792) (2 . 5802)) #((1 . 515468)) #((1 . 657208)) #((1 . 417860)) #((1 . 559600)) #((1 . 515468)) #((1 . 657208)) #((1 . 417860)) #((1 . 559600)) #((1 . 249108) (2 . 5802)) #((1 . 319978) (2 . 5802)) #((1 . 200304) (2 . 5802)) #((1 . 271174) (2 . 5802)) #((1 . 249108) (2 . 5802)) #((1 . 319978) (2 . 5802)) #((1 . 200304) (2 . 5802)) #((1 . 271174) (2 . 5802)) #((1 . 532648)) #((1 . 674388)) #((1 . 434696)) #((1 . 576436)) #((1 . 532648)) #((1 . 674388)) #((1 . 434696)) #((1 . 576436)) #((1 . 251962) (2 . 5802)) #((1 . 322832) (2 . 5802)) #((1 . 202986) (2 . 5802)) #((1 . 273856) (2 . 5802)) #((1 . 251962) (2 . 5802)) #((1 . 322832) (2 . 5802)) #((1 . 202986) (2 . 5802)) #((1 . 273856) (2 . 5802)) #((1 . 532612)) #((1 . 674352)) #((1 . 434660)) #((1 . 576400)) #((1 . 532612)) #((1 . 674352)) #((1 . 434660)) #((1 . 576400)) #((1 . 240342) (2 . 5802)) #((1 . 311212) (2 . 5802)) #((1 . 191366) (2 . 5802)) #((1 . 262236) (2 . 5802)) #((1 . 240342) (2 . 5802)) #((1 . 311212) (2 . 5802)) #((1 . 191366) (2 . 5802)) #((1 . 262236) (2 . 5802)) #((1 . 632356)) #((1 . 774096)) #((1 . 464788)) #((1 . 606528)) #((1 . 632356)) #((1 . 774096)) #((1 . 464788)) #((1 . 606528)) #((1 . 319154) (2 . 5802)) #((1 . 390024) (2 . 5802)) #((1 . 235370) (2 . 5802)) #((1 . 306240) (2 . 5802)) #((1 . 319154) (2 . 5802)) #((1 . 390024) (2 . 5802)) #((1 . 235370) (2 . 5802)) #((1 . 306240) (2 . 5802)) #((1 . 632324)) #((1 . 774064)) #((1 . 464756)) #((1 . 606496)) #((1 . 632324)) #((1 . 774064)) #((1 . 464756)) #((1 . 606496)) #((1 . 307536) (2 . 5802)) #((1 . 378406) (2 . 5802)) #((1 . 223752) (2 . 5802)) #((1 . 294622) (2 . 5802)) #((1 . 307536) (2 . 5802)) #((1 . 378406) (2 . 5802)) #((1 . 223752) (2 . 5802)) #((1 . 294622) (2 . 5802)) #((1 . 649504)) #((1 . 791244)) #((1 . 481592)) #((1 . 623332)) #((1 . 649504)) #((1 . 791244)) #((1 . 481592)) #((1 . 623332)) #((1 . 310390) (2 . 5802)) #((1 . 381260) (2 . 5802)) #((1 . 226434) (2 . 5802)) #((1 . 297304) (2 . 5802)) #((1 . 310390) (2 . 5802)) #((1 . 381260) (2 . 5802)) #((1 . 226434) (2 . 5802)) #((1 . 297304) (2 . 5802)) #((1 . 649468)) #((1 . 791208)) #((1 . 481556)) #((1 . 623296)) #((1 . 649468)) #((1 . 791208)) #((1 . 481556)) #((1 . 623296)) #((1 . 298770) (2 . 5802)) #((1 . 369640) (2 . 5802)) #((1 . 214814) (2 . 5802)) #((1 . 285684) (2 . 5802)) #((1 . 298770) (2 . 5802)) #((1 . 369640) (2 . 5802)) #((1 . 214814) (2 . 5802)) #((1 . 285684) (2 . 5802)) #((1 . 277366) (2 . 164)) #((1 . 346284) (2 . 164)) #((1 . 307762) (2 . 164)) #((1 . 376680) (2 . 164)) #((1 . 277366) (2 . 164)) #((1 . 346284) (2 . 164)) #((1 . 307762) (2 . 164)) #((1 . 376680) (2 . 164)) #((1 . 320874) (2 . 5984)) #((1 . 389792) (2 . 5984)) #((1 . 351270) (2 . 5984)) #((1 . 420188) (2 . 5984)) #((1 . 320874) (2 . 5984)) #((1 . 389792) (2 . 5984)) #((1 . 351270) (2 . 5984)) #((1 . 420188) (2 . 5984)) #((1 . 300586) (2 . 164)) #((1 . 369504) (2 . 164)) #((1 . 330982) (2 . 164)) #((1 . 399900) (2 . 164)) #((1 . 300586) (2 . 164)) #((1 . 369504) (2 . 164)) #((1 . 330982) (2 . 164)) #((1 . 399900) (2 . 164)) #((1 . 320892) (2 . 5984)) #((1 . 389810) (2 . 5984)) #((1 . 351288) (2 . 5984)) #((1 . 420206) (2 . 5984)) #((1 . 320892) (2 . 5984)) #((1 . 389810) (2 . 5984)) #((1 . 351288) (2 . 5984)) #((1 . 420206) (2 . 5984)) #((1 . 245454) (2 . 12)) #((1 . 314372) (2 . 12)) #((1 . 275588) (2 . 12)) #((1 . 344506) (2 . 12)) #((1 . 245454) (2 . 12)) #((1 . 314372) (2 . 12)) #((1 . 275588) (2 . 12)) #((1 . 344506) (2 . 12)) #((1 . 260066) (2 . 5832)) #((1 . 328984) (2 . 5832)) #((1 . 290200) (2 . 5832)) #((1 . 359118) (2 . 5832)) #((1 . 260066) (2 . 5832)) #((1 . 328984) (2 . 5832)) #((1 . 290200) (2 . 5832)) #((1 . 359118) (2 . 5832)) #((1 . 268670) (2 . 12)) #((1 . 337588) (2 . 12)) #((1 . 298804) (2 . 12)) #((1 . 367722) (2 . 12)) #((1 . 268670) (2 . 12)) #((1 . 337588) (2 . 12)) #((1 . 298804) (2 . 12)) #((1 . 367722) (2 . 12)) #((1 . 260080) (2 . 5832)) #((1 . 328998) (2 . 5832)) #((1 . 290214) (2 . 5832)) #((1 . 359132) (2 . 5832)) #((1 . 260080) (2 . 5832)) #((1 . 328998) (2 . 5832)) #((1 . 290214) (2 . 5832)) #((1 . 359132) (2 . 5832)) #((1 . 335794) (2 . 164)) #((1 . 404712) (2 . 164)) #((1 . 331210) (2 . 164)) #((1 . 400128) (2 . 164)) #((1 . 335794) (2 . 164)) #((1 . 404712) (2 . 164)) #((1 . 331210) (2 . 164)) #((1 . 400128) (2 . 164)) #((1 . 379302) (2 . 5984)) #((1 . 448220) (2 . 5984)) #((1 . 374718) (2 . 5984)) #((1 . 443636) (2 . 5984)) #((1 . 379302) (2 . 5984)) #((1 . 448220) (2 . 5984)) #((1 . 374718) (2 . 5984)) #((1 . 443636) (2 . 5984)) #((1 . 359014) (2 . 164)) #((1 . 427932) (2 . 164)) #((1 . 354430) (2 . 164)) #((1 . 423348) (2 . 164)) #((1 . 359014) (2 . 164)) #((1 . 427932) (2 . 164)) #((1 . 354430) (2 . 164)) #((1 . 423348) (2 . 164)) #((1 . 379320) (2 . 5984)) #((1 . 448238) (2 . 5984)) #((1 . 374736) (2 . 5984)) #((1 . 443654) (2 . 5984)) #((1 . 379320) (2 . 5984)) #((1 . 448238) (2 . 5984)) #((1 . 374736) (2 . 5984)) #((1 . 443654) (2 . 5984)) #((1 . 303882) (2 . 12)) #((1 . 372800) (2 . 12)) #((1 . 299036) (2 . 12)) #((1 . 367954) (2 . 12)) #((1 . 303882) (2 . 12)) #((1 . 372800) (2 . 12)) #((1 . 299036) (2 . 12)) #((1 . 367954) (2 . 12)) #((1 . 318494) (2 . 5832)) #((1 . 387412) (2 . 5832)) #((1 . 313648) (2 . 5832)) #((1 . 382566) (2 . 5832)) #((1 . 318494) (2 . 5832)) #((1 . 387412) (2 . 5832)) #((1 . 313648) (2 . 5832)) #((1 . 382566) (2 . 5832)) #((1 . 327098) (2 . 12)) #((1 . 396016) (2 . 12)) #((1 . 322252) (2 . 12)) #((1 . 391170) (2 . 12)) #((1 . 327098) (2 . 12)) #((1 . 396016) (2 . 12)) #((1 . 322252) (2 . 12)) #((1 . 391170) (2 . 12)) #((1 . 318508) (2 . 5832)) #((1 . 387426) (2 . 5832)) #((1 . 313662) (2 . 5832)) #((1 . 382580) (2 . 5832)) #((1 . 318508) (2 . 5832)) #((1 . 387426) (2 . 5832)) #((1 . 313662) (2 . 5832)) #((1 . 382580) (2 . 5832)) #((1 . 254432) (2 . 5776)) #((1 . 323350) (2 . 5776)) #((1 . 205628) (2 . 5776)) #((1 . 274546) (2 . 5776)) #((1 . 254432) (2 . 5776)) #((1 . 323350) (2 . 5776)) #((1 . 205628) (2 . 5776)) #((1 . 274546) (2 . 5776)) #((1 . 257408) (2 . 11578)) #((1 . 326326) (2 . 11578)) #((1 . 208604) (2 . 11578)) #((1 . 277522) (2 . 11578)) #((1 . 257408) (2 . 11578)) #((1 . 326326) (2 . 11578)) #((1 . 208604) (2 . 11578)) #((1 . 277522) (2 . 11578)) #((1 . 254416) (2 . 5776)) #((1 . 323334) (2 . 5776)) #((1 . 205612) (2 . 5776)) #((1 . 274530) (2 . 5776)) #((1 . 254416) (2 . 5776)) #((1 . 323334) (2 . 5776)) #((1 . 205612) (2 . 5776)) #((1 . 274530) (2 . 5776)) #((1 . 245790) (2 . 11578)) #((1 . 314708) (2 . 11578)) #((1 . 196986) (2 . 11578)) #((1 . 265904) (2 . 11578)) #((1 . 245790) (2 . 11578)) #((1 . 314708) (2 . 11578)) #((1 . 196986) (2 . 11578)) #((1 . 265904) (2 . 11578)) #((1 . 245678) (2 . 5776)) #((1 . 314596) (2 . 5776)) #((1 . 196702) (2 . 5776)) #((1 . 265620) (2 . 5776)) #((1 . 245678) (2 . 5776)) #((1 . 314596) (2 . 5776)) #((1 . 196702) (2 . 5776)) #((1 . 265620) (2 . 5776)) #((1 . 231316) (2 . 11578)) #((1 . 300234) (2 . 11578)) #((1 . 182340) (2 . 11578)) #((1 . 251258) (2 . 11578)) #((1 . 231316) (2 . 11578)) #((1 . 300234) (2 . 11578)) #((1 . 182340) (2 . 11578)) #((1 . 251258) (2 . 11578)) #((1 . 245660) (2 . 5776)) #((1 . 314578) (2 . 5776)) #((1 . 196684) (2 . 5776)) #((1 . 265602) (2 . 5776)) #((1 . 245660) (2 . 5776)) #((1 . 314578) (2 . 5776)) #((1 . 196684) (2 . 5776)) #((1 . 265602) (2 . 5776)) #((1 . 219696) (2 . 11578)) #((1 . 288614) (2 . 11578)) #((1 . 170720) (2 . 11578)) #((1 . 239638) (2 . 11578)) #((1 . 219696) (2 . 11578)) #((1 . 288614) (2 . 11578)) #((1 . 170720) (2 . 11578)) #((1 . 239638) (2 . 11578)) #((1 . 312860) (2 . 5776)) #((1 . 381778) (2 . 5776)) #((1 . 229076) (2 . 5776)) #((1 . 297994) (2 . 5776)) #((1 . 312860) (2 . 5776)) #((1 . 381778) (2 . 5776)) #((1 . 229076) (2 . 5776)) #((1 . 297994) (2 . 5776)) #((1 . 315836) (2 . 11578)) #((1 . 384754) (2 . 11578)) #((1 . 232052) (2 . 11578)) #((1 . 300970) (2 . 11578)) #((1 . 315836) (2 . 11578)) #((1 . 384754) (2 . 11578)) #((1 . 232052) (2 . 11578)) #((1 . 300970) (2 . 11578)) #((1 . 312844) (2 . 5776)) #((1 . 381762) (2 . 5776)) #((1 . 229060) (2 . 5776)) #((1 . 297978) (2 . 5776)) #((1 . 312844) (2 . 5776)) #((1 . 381762) (2 . 5776)) #((1 . 229060) (2 . 5776)) #((1 . 297978) (2 . 5776)) #((1 . 304218) (2 . 11578)) #((1 . 373136) (2 . 11578)) #((1 . 220434) (2 . 11578)) #((1 . 289352) (2 . 11578)) #((1 . 304218) (2 . 11578)) #((1 . 373136) (2 . 11578)) #((1 . 220434) (2 . 11578)) #((1 . 289352) (2 . 11578)) #((1 . 304106) (2 . 5776)) #((1 . 373024) (2 . 5776)) #((1 . 220150) (2 . 5776)) #((1 . 289068) (2 . 5776)) #((1 . 304106) (2 . 5776)) #((1 . 373024) (2 . 5776)) #((1 . 220150) (2 . 5776)) #((1 . 289068) (2 . 5776)) #((1 . 289744) (2 . 11578)) #((1 . 358662) (2 . 11578)) #((1 . 205788) (2 . 11578)) #((1 . 274706) (2 . 11578)) #((1 . 289744) (2 . 11578)) #((1 . 358662) (2 . 11578)) #((1 . 205788) (2 . 11578)) #((1 . 274706) (2 . 11578)) #((1 . 304088) (2 . 5776)) #((1 . 373006) (2 . 5776)) #((1 . 220132) (2 . 5776)) #((1 . 289050) (2 . 5776)) #((1 . 304088) (2 . 5776)) #((1 . 373006) (2 . 5776)) #((1 . 220132) (2 . 5776)) #((1 . 289050) (2 . 5776)) #((1 . 278124) (2 . 11578)) #((1 . 347042) (2 . 11578)) #((1 . 194168) (2 . 11578)) #((1 . 263086) (2 . 11578)) #((1 . 278124) (2 . 11578)) #((1 . 347042) (2 . 11578)) #((1 . 194168) (2 . 11578)) #((1 . 263086) (2 . 11578)) #((1 . 143734) (2 . 5776)) #((1 . 170960) (2 . 5776)) #((1 . 252970) (2 . 5776)) #((1 . 280196) (2 . 5776)) #((1 . 143734) (2 . 5776)) #((1 . 170960) (2 . 5776)) #((1 . 252970) (2 . 5776)) #((1 . 280196) (2 . 5776)) #((1 . 221988) (2 . 11596)) #((1 . 249214) (2 . 11596)) #((1 . 331224) (2 . 11596)) #((1 . 358450) (2 . 11596)) #((1 . 221988) (2 . 11596)) #((1 . 249214) (2 . 11596)) #((1 . 331224) (2 . 11596)) #((1 . 358450) (2 . 11596)) #((1 . 166960) (2 . 5776)) #((1 . 194186) (2 . 5776)) #((1 . 276196) (2 . 5776)) #((1 . 303422) (2 . 5776)) #((1 . 166960) (2 . 5776)) #((1 . 194186) (2 . 5776)) #((1 . 276196) (2 . 5776)) #((1 . 303422) (2 . 5776)) #((1 . 222012) (2 . 11596)) #((1 . 249238) (2 . 11596)) #((1 . 331248) (2 . 11596)) #((1 . 358474) (2 . 11596)) #((1 . 222012) (2 . 11596)) #((1 . 249238) (2 . 11596)) #((1 . 331248) (2 . 11596)) #((1 . 358474) (2 . 11596)) #((1 . 176042) (2 . 5776)) #((1 . 203268) (2 . 5776)) #((1 . 285016) (2 . 5776)) #((1 . 312242) (2 . 5776)) #((1 . 176042) (2 . 5776)) #((1 . 203268) (2 . 5776)) #((1 . 285016) (2 . 5776)) #((1 . 312242) (2 . 5776)) #((1 . 225400) (2 . 11596)) #((1 . 252626) (2 . 11596)) #((1 . 334374) (2 . 11596)) #((1 . 361600) (2 . 11596)) #((1 . 225400) (2 . 11596)) #((1 . 252626) (2 . 11596)) #((1 . 334374) (2 . 11596)) #((1 . 361600) (2 . 11596)) #((1 . 199264) (2 . 5776)) #((1 . 226490) (2 . 5776)) #((1 . 308238) (2 . 5776)) #((1 . 335464) (2 . 5776)) #((1 . 199264) (2 . 5776)) #((1 . 226490) (2 . 5776)) #((1 . 308238) (2 . 5776)) #((1 . 335464) (2 . 5776)) #((1 . 225420) (2 . 11596)) #((1 . 252646) (2 . 11596)) #((1 . 334394) (2 . 11596)) #((1 . 361620) (2 . 11596)) #((1 . 225420) (2 . 11596)) #((1 . 252646) (2 . 11596)) #((1 . 334394) (2 . 11596)) #((1 . 361620) (2 . 11596)) #((1 . 202162) (2 . 5776)) #((1 . 229388) (2 . 5776)) #((1 . 276418) (2 . 5776)) #((1 . 303644) (2 . 5776)) #((1 . 202162) (2 . 5776)) #((1 . 229388) (2 . 5776)) #((1 . 276418) (2 . 5776)) #((1 . 303644) (2 . 5776)) #((1 . 280416) (2 . 11596)) #((1 . 307642) (2 . 11596)) #((1 . 354672) (2 . 11596)) #((1 . 381898) (2 . 11596)) #((1 . 280416) (2 . 11596)) #((1 . 307642) (2 . 11596)) #((1 . 354672) (2 . 11596)) #((1 . 381898) (2 . 11596)) #((1 . 225388) (2 . 5776)) #((1 . 252614) (2 . 5776)) #((1 . 299644) (2 . 5776)) #((1 . 326870) (2 . 5776)) #((1 . 225388) (2 . 5776)) #((1 . 252614) (2 . 5776)) #((1 . 299644) (2 . 5776)) #((1 . 326870) (2 . 5776)) #((1 . 280440) (2 . 11596)) #((1 . 307666) (2 . 11596)) #((1 . 354696) (2 . 11596)) #((1 . 381922) (2 . 11596)) #((1 . 280440) (2 . 11596)) #((1 . 307666) (2 . 11596)) #((1 . 354696) (2 . 11596)) #((1 . 381922) (2 . 11596)) #((1 . 234470) (2 . 5776)) #((1 . 261696) (2 . 5776)) #((1 . 308464) (2 . 5776)) #((1 . 335690) (2 . 5776)) #((1 . 234470) (2 . 5776)) #((1 . 261696) (2 . 5776)) #((1 . 308464) (2 . 5776)) #((1 . 335690) (2 . 5776)) #((1 . 283828) (2 . 11596)) #((1 . 311054) (2 . 11596)) #((1 . 357822) (2 . 11596)) #((1 . 385048) (2 . 11596)) #((1 . 283828) (2 . 11596)) #((1 . 311054) (2 . 11596)) #((1 . 357822) (2 . 11596)) #((1 . 385048) (2 . 11596)) #((1 . 257692) (2 . 5776)) #((1 . 284918) (2 . 5776)) #((1 . 331686) (2 . 5776)) #((1 . 358912) (2 . 5776)) #((1 . 257692) (2 . 5776)) #((1 . 284918) (2 . 5776)) #((1 . 331686) (2 . 5776)) #((1 . 358912) (2 . 5776)) #((1 . 283848) (2 . 11596)) #((1 . 311074) (2 . 11596)) #((1 . 357842) (2 . 11596)) #((1 . 385068) (2 . 11596)) #((1 . 283848) (2 . 11596)) #((1 . 311074) (2 . 11596)) #((1 . 357842) (2 . 11596)) #((1 . 385068) (2 . 11596)) #((1 . 541728)) #((1 . 596180)) #((1 . 549240)) #((1 . 603692)) #((1 . 541728)) #((1 . 596180)) #((1 . 549240)) #((1 . 603692)) #((1 . 297004) (2 . 5802)) #((1 . 324230) (2 . 5802)) #((1 . 300760) (2 . 5802)) #((1 . 327986) (2 . 5802)) #((1 . 297004) (2 . 5802)) #((1 . 324230) (2 . 5802)) #((1 . 300760) (2 . 5802)) #((1 . 327986) (2 . 5802)) #((1 . 541704)) #((1 . 596156)) #((1 . 549216)) #((1 . 603668)) #((1 . 541704)) #((1 . 596156)) #((1 . 549216)) #((1 . 603668)) #((1 . 285390) (2 . 5802)) #((1 . 312616) (2 . 5802)) #((1 . 289146) (2 . 5802)) #((1 . 316372) (2 . 5802)) #((1 . 285390) (2 . 5802)) #((1 . 312616) (2 . 5802)) #((1 . 289146) (2 . 5802)) #((1 . 316372) (2 . 5802)) #((1 . 297070) (2 . 152)) #((1 . 324296) (2 . 152)) #((1 . 300654) (2 . 152)) #((1 . 327880) (2 . 152)) #((1 . 297070) (2 . 152)) #((1 . 324296) (2 . 152)) #((1 . 300654) (2 . 152)) #((1 . 327880) (2 . 152)) #((1 . 305872) (2 . 5954)) #((1 . 333098) (2 . 5954)) #((1 . 309456) (2 . 5954)) #((1 . 336682) (2 . 5954)) #((1 . 305872) (2 . 5954)) #((1 . 333098) (2 . 5954)) #((1 . 309456) (2 . 5954)) #((1 . 336682) (2 . 5954)) #((1 . 297056) (2 . 152)) #((1 . 324282) (2 . 152)) #((1 . 300640) (2 . 152)) #((1 . 327866) (2 . 152)) #((1 . 297056) (2 . 152)) #((1 . 324282) (2 . 152)) #((1 . 300640) (2 . 152)) #((1 . 327866) (2 . 152)) #((1 . 294256) (2 . 5954)) #((1 . 321482) (2 . 5954)) #((1 . 297840) (2 . 5954)) #((1 . 325066) (2 . 5954)) #((1 . 294256) (2 . 5954)) #((1 . 321482) (2 . 5954)) #((1 . 297840) (2 . 5954)) #((1 . 325066) (2 . 5954)) #((1 . 658584)) #((1 . 713036)) #((1 . 596136)) #((1 . 650588)) #((1 . 658584)) #((1 . 713036)) #((1 . 596136)) #((1 . 650588)) #((1 . 355432) (2 . 5802)) #((1 . 382658) (2 . 5802)) #((1 . 324208) (2 . 5802)) #((1 . 351434) (2 . 5802)) #((1 . 355432) (2 . 5802)) #((1 . 382658) (2 . 5802)) #((1 . 324208) (2 . 5802)) #((1 . 351434) (2 . 5802)) #((1 . 658560)) #((1 . 713012)) #((1 . 596112)) #((1 . 650564)) #((1 . 658560)) #((1 . 713012)) #((1 . 596112)) #((1 . 650564)) #((1 . 343818) (2 . 5802)) #((1 . 371044) (2 . 5802)) #((1 . 312594) (2 . 5802)) #((1 . 339820) (2 . 5802)) #((1 . 343818) (2 . 5802)) #((1 . 371044) (2 . 5802)) #((1 . 312594) (2 . 5802)) #((1 . 339820) (2 . 5802)) #((1 . 355498) (2 . 152)) #((1 . 382724) (2 . 152)) #((1 . 324102) (2 . 152)) #((1 . 351328) (2 . 152)) #((1 . 355498) (2 . 152)) #((1 . 382724) (2 . 152)) #((1 . 324102) (2 . 152)) #((1 . 351328) (2 . 152)) #((1 . 364300) (2 . 5954)) #((1 . 391526) (2 . 5954)) #((1 . 332904) (2 . 5954)) #((1 . 360130) (2 . 5954)) #((1 . 364300) (2 . 5954)) #((1 . 391526) (2 . 5954)) #((1 . 332904) (2 . 5954)) #((1 . 360130) (2 . 5954)) #((1 . 355484) (2 . 152)) #((1 . 382710) (2 . 152)) #((1 . 324088) (2 . 152)) #((1 . 351314) (2 . 152)) #((1 . 355484) (2 . 152)) #((1 . 382710) (2 . 152)) #((1 . 324088) (2 . 152)) #((1 . 351314) (2 . 152)) #((1 . 352684) (2 . 5954)) #((1 . 379910) (2 . 5954)) #((1 . 321288) (2 . 5954)) #((1 . 348514) (2 . 5954)) #((1 . 352684) (2 . 5954)) #((1 . 379910) (2 . 5954)) #((1 . 321288) (2 . 5954)) #((1 . 348514) (2 . 5954)) #((1 . 494392)) #((1 . 544940)) #((1 . 712864)) #((1 . 763412)) #((1 . 494392)) #((1 . 544940)) #((1 . 712864)) #((1 . 763412)) #((1 . 325450) (2 . 5820)) #((1 . 350724) (2 . 5820)) #((1 . 434686) (2 . 5820)) #((1 . 459960) (2 . 5820)) #((1 . 325450) (2 . 5820)) #((1 . 350724) (2 . 5820)) #((1 . 434686) (2 . 5820)) #((1 . 459960) (2 . 5820)) #((1 . 540844)) #((1 . 591392)) #((1 . 759316)) #((1 . 809864)) #((1 . 540844)) #((1 . 591392)) #((1 . 759316)) #((1 . 809864)) #((1 . 325474) (2 . 5820)) #((1 . 350748) (2 . 5820)) #((1 . 434710) (2 . 5820)) #((1 . 459984) (2 . 5820)) #((1 . 325474) (2 . 5820)) #((1 . 350748) (2 . 5820)) #((1 . 434710) (2 . 5820)) #((1 . 459984) (2 . 5820)) #((1 . 489696)) #((1 . 540244)) #((1 . 707644)) #((1 . 758192)) #((1 . 489696)) #((1 . 540244)) #((1 . 707644)) #((1 . 758192)) #((1 . 294206) (2 . 5820)) #((1 . 319480) (2 . 5820)) #((1 . 403180) (2 . 5820)) #((1 . 428454) (2 . 5820)) #((1 . 294206) (2 . 5820)) #((1 . 319480) (2 . 5820)) #((1 . 403180) (2 . 5820)) #((1 . 428454) (2 . 5820)) #((1 . 536140)) #((1 . 586688)) #((1 . 754088)) #((1 . 804636)) #((1 . 536140)) #((1 . 586688)) #((1 . 754088)) #((1 . 804636)) #((1 . 294226) (2 . 5820)) #((1 . 319500) (2 . 5820)) #((1 . 403200) (2 . 5820)) #((1 . 428474) (2 . 5820)) #((1 . 294226) (2 . 5820)) #((1 . 319500) (2 . 5820)) #((1 . 403200) (2 . 5820)) #((1 . 428474) (2 . 5820)) #((1 . 611248)) #((1 . 661796)) #((1 . 759760)) #((1 . 810308)) #((1 . 611248)) #((1 . 661796)) #((1 . 759760)) #((1 . 810308)) #((1 . 383878) (2 . 5820)) #((1 . 409152) (2 . 5820)) #((1 . 458134) (2 . 5820)) #((1 . 483408) (2 . 5820)) #((1 . 383878) (2 . 5820)) #((1 . 409152) (2 . 5820)) #((1 . 458134) (2 . 5820)) #((1 . 483408) (2 . 5820)) #((1 . 657700)) #((1 . 708248)) #((1 . 806212)) #((1 . 856760)) #((1 . 657700)) #((1 . 708248)) #((1 . 806212)) #((1 . 856760)) #((1 . 383902) (2 . 5820)) #((1 . 409176) (2 . 5820)) #((1 . 458158) (2 . 5820)) #((1 . 483432) (2 . 5820)) #((1 . 383902) (2 . 5820)) #((1 . 409176) (2 . 5820)) #((1 . 458158) (2 . 5820)) #((1 . 483432) (2 . 5820)) #((1 . 606552)) #((1 . 657100)) #((1 . 754540)) #((1 . 805088)) #((1 . 606552)) #((1 . 657100)) #((1 . 754540)) #((1 . 805088)) #((1 . 352634) (2 . 5820)) #((1 . 377908) (2 . 5820)) #((1 . 426628) (2 . 5820)) #((1 . 451902) (2 . 5820)) #((1 . 352634) (2 . 5820)) #((1 . 377908) (2 . 5820)) #((1 . 426628) (2 . 5820)) #((1 . 451902) (2 . 5820)) #((1 . 652996)) #((1 . 703544)) #((1 . 800984)) #((1 . 851532)) #((1 . 652996)) #((1 . 703544)) #((1 . 800984)) #((1 . 851532)) #((1 . 352654) (2 . 5820)) #((1 . 377928) (2 . 5820)) #((1 . 426648) (2 . 5820)) #((1 . 451922) (2 . 5820)) #((1 . 352654) (2 . 5820)) #((1 . 377928) (2 . 5820)) #((1 . 426648) (2 . 5820)) #((1 . 451922) (2 . 5820)) #((1 . 331006) (2 . 8664)) #((1 . 356280) (2 . 8664)) #((1 . 334762) (2 . 8664)) #((1 . 360036) (2 . 8664)) #((1 . 331006) (2 . 8664)) #((1 . 356280) (2 . 8664)) #((1 . 334762) (2 . 8664)) #((1 . 360036) (2 . 8664)) #((1 . 357146) (2 . 14466)) #((1 . 382420) (2 . 14466)) #((1 . 360902) (2 . 14466)) #((1 . 386176) (2 . 14466)) #((1 . 357146) (2 . 14466)) #((1 . 382420) (2 . 14466)) #((1 . 360902) (2 . 14466)) #((1 . 386176) (2 . 14466)) #((1 . 330994) (2 . 8664)) #((1 . 356268) (2 . 8664)) #((1 . 334750) (2 . 8664)) #((1 . 360024) (2 . 8664)) #((1 . 330994) (2 . 8664)) #((1 . 356268) (2 . 8664)) #((1 . 334750) (2 . 8664)) #((1 . 360024) (2 . 8664)) #((1 . 345532) (2 . 14466)) #((1 . 370806) (2 . 14466)) #((1 . 349288) (2 . 14466)) #((1 . 374562) (2 . 14466)) #((1 . 345532) (2 . 14466)) #((1 . 370806) (2 . 14466)) #((1 . 349288) (2 . 14466)) #((1 . 374562) (2 . 14466)) #((1 . 339884) (2 . 8816)) #((1 . 365158) (2 . 8816)) #((1 . 343468) (2 . 8816)) #((1 . 368742) (2 . 8816)) #((1 . 339884) (2 . 8816)) #((1 . 365158) (2 . 8816)) #((1 . 343468) (2 . 8816)) #((1 . 368742) (2 . 8816)) #((1 . 348686) (2 . 14618)) #((1 . 373960) (2 . 14618)) #((1 . 352270) (2 . 14618)) #((1 . 377544) (2 . 14618)) #((1 . 348686) (2 . 14618)) #((1 . 373960) (2 . 14618)) #((1 . 352270) (2 . 14618)) #((1 . 377544) (2 . 14618)) #((1 . 339870) (2 . 8816)) #((1 . 365144) (2 . 8816)) #((1 . 343454) (2 . 8816)) #((1 . 368728) (2 . 8816)) #((1 . 339870) (2 . 8816)) #((1 . 365144) (2 . 8816)) #((1 . 343454) (2 . 8816)) #((1 . 368728) (2 . 8816)) #((1 . 337070) (2 . 14618)) #((1 . 362344) (2 . 14618)) #((1 . 340654) (2 . 14618)) #((1 . 365928) (2 . 14618)) #((1 . 337070) (2 . 14618)) #((1 . 362344) (2 . 14618)) #((1 . 340654) (2 . 14618)) #((1 . 365928) (2 . 14618)) #((1 . 389434) (2 . 8664)) #((1 . 414708) (2 . 8664)) #((1 . 358210) (2 . 8664)) #((1 . 383484) (2 . 8664)) #((1 . 389434) (2 . 8664)) #((1 . 414708) (2 . 8664)) #((1 . 358210) (2 . 8664)) #((1 . 383484) (2 . 8664)) #((1 . 415574) (2 . 14466)) #((1 . 440848) (2 . 14466)) #((1 . 384350) (2 . 14466)) #((1 . 409624) (2 . 14466)) #((1 . 415574) (2 . 14466)) #((1 . 440848) (2 . 14466)) #((1 . 384350) (2 . 14466)) #((1 . 409624) (2 . 14466)) #((1 . 389422) (2 . 8664)) #((1 . 414696) (2 . 8664)) #((1 . 358198) (2 . 8664)) #((1 . 383472) (2 . 8664)) #((1 . 389422) (2 . 8664)) #((1 . 414696) (2 . 8664)) #((1 . 358198) (2 . 8664)) #((1 . 383472) (2 . 8664)) #((1 . 403960) (2 . 14466)) #((1 . 429234) (2 . 14466)) #((1 . 372736) (2 . 14466)) #((1 . 398010) (2 . 14466)) #((1 . 403960) (2 . 14466)) #((1 . 429234) (2 . 14466)) #((1 . 372736) (2 . 14466)) #((1 . 398010) (2 . 14466)) #((1 . 398312) (2 . 8816)) #((1 . 423586) (2 . 8816)) #((1 . 366916) (2 . 8816)) #((1 . 392190) (2 . 8816)) #((1 . 398312) (2 . 8816)) #((1 . 423586) (2 . 8816)) #((1 . 366916) (2 . 8816)) #((1 . 392190) (2 . 8816)) #((1 . 407114) (2 . 14618)) #((1 . 432388) (2 . 14618)) #((1 . 375718) (2 . 14618)) #((1 . 400992) (2 . 14618)) #((1 . 407114) (2 . 14618)) #((1 . 432388) (2 . 14618)) #((1 . 375718) (2 . 14618)) #((1 . 400992) (2 . 14618)) #((1 . 398298) (2 . 8816)) #((1 . 423572) (2 . 8816)) #((1 . 366902) (2 . 8816)) #((1 . 392176) (2 . 8816)) #((1 . 398298) (2 . 8816)) #((1 . 423572) (2 . 8816)) #((1 . 366902) (2 . 8816)) #((1 . 392176) (2 . 8816)) #((1 . 395498) (2 . 14618)) #((1 . 420772) (2 . 14618)) #((1 . 364102) (2 . 14618)) #((1 . 389376) (2 . 14618)) #((1 . 395498) (2 . 14618)) #((1 . 420772) (2 . 14618)) #((1 . 364102) (2 . 14618)) #((1 . 389376) (2 . 14618)) #((1 . 357054) (2 . 14604)) #((1 . 384280) (2 . 14604)) #((1 . 387450) (2 . 14604)) #((1 . 414676) (2 . 14604)) #((1 . 357054) (2 . 14604)) #((1 . 384280) (2 . 14604)) #((1 . 387450) (2 . 14604)) #((1 . 414676) (2 . 14604)) #((1 . 400562) (2 . 20424)) #((1 . 427788) (2 . 20424)) #((1 . 430958) (2 . 20424)) #((1 . 458184) (2 . 20424)) #((1 . 400562) (2 . 20424)) #((1 . 427788) (2 . 20424)) #((1 . 430958) (2 . 20424)) #((1 . 458184) (2 . 20424)) #((1 . 380274) (2 . 14604)) #((1 . 407500) (2 . 14604)) #((1 . 410670) (2 . 14604)) #((1 . 437896) (2 . 14604)) #((1 . 380274) (2 . 14604)) #((1 . 407500) (2 . 14604)) #((1 . 410670) (2 . 14604)) #((1 . 437896) (2 . 14604)) #((1 . 400580) (2 . 20424)) #((1 . 427806) (2 . 20424)) #((1 . 430976) (2 . 20424)) #((1 . 458202) (2 . 20424)) #((1 . 400580) (2 . 20424)) #((1 . 427806) (2 . 20424)) #((1 . 430976) (2 . 20424)) #((1 . 458202) (2 . 20424)) #((1 . 359536) (2 . 14452)) #((1 . 386762) (2 . 14452)) #((1 . 389670) (2 . 14452)) #((1 . 416896) (2 . 14452)) #((1 . 359536) (2 . 14452)) #((1 . 386762) (2 . 14452)) #((1 . 389670) (2 . 14452)) #((1 . 416896) (2 . 14452)) #((1 . 374148) (2 . 20272)) #((1 . 401374) (2 . 20272)) #((1 . 404282) (2 . 20272)) #((1 . 431508) (2 . 20272)) #((1 . 374148) (2 . 20272)) #((1 . 401374) (2 . 20272)) #((1 . 404282) (2 . 20272)) #((1 . 431508) (2 . 20272)) #((1 . 382752) (2 . 14452)) #((1 . 409978) (2 . 14452)) #((1 . 412886) (2 . 14452)) #((1 . 440112) (2 . 14452)) #((1 . 382752) (2 . 14452)) #((1 . 409978) (2 . 14452)) #((1 . 412886) (2 . 14452)) #((1 . 440112) (2 . 14452)) #((1 . 374162) (2 . 20272)) #((1 . 401388) (2 . 20272)) #((1 . 404296) (2 . 20272)) #((1 . 431522) (2 . 20272)) #((1 . 374162) (2 . 20272)) #((1 . 401388) (2 . 20272)) #((1 . 404296) (2 . 20272)) #((1 . 431522) (2 . 20272)) #((1 . 415482) (2 . 14604)) #((1 . 442708) (2 . 14604)) #((1 . 410898) (2 . 14604)) #((1 . 438124) (2 . 14604)) #((1 . 415482) (2 . 14604)) #((1 . 442708) (2 . 14604)) #((1 . 410898) (2 . 14604)) #((1 . 438124) (2 . 14604)) #((1 . 458990) (2 . 20424)) #((1 . 486216) (2 . 20424)) #((1 . 454406) (2 . 20424)) #((1 . 481632) (2 . 20424)) #((1 . 458990) (2 . 20424)) #((1 . 486216) (2 . 20424)) #((1 . 454406) (2 . 20424)) #((1 . 481632) (2 . 20424)) #((1 . 438702) (2 . 14604)) #((1 . 465928) (2 . 14604)) #((1 . 434118) (2 . 14604)) #((1 . 461344) (2 . 14604)) #((1 . 438702) (2 . 14604)) #((1 . 465928) (2 . 14604)) #((1 . 434118) (2 . 14604)) #((1 . 461344) (2 . 14604)) #((1 . 459008) (2 . 20424)) #((1 . 486234) (2 . 20424)) #((1 . 454424) (2 . 20424)) #((1 . 481650) (2 . 20424)) #((1 . 459008) (2 . 20424)) #((1 . 486234) (2 . 20424)) #((1 . 454424) (2 . 20424)) #((1 . 481650) (2 . 20424)) #((1 . 417964) (2 . 14452)) #((1 . 445190) (2 . 14452)) #((1 . 413118) (2 . 14452)) #((1 . 440344) (2 . 14452)) #((1 . 417964) (2 . 14452)) #((1 . 445190) (2 . 14452)) #((1 . 413118) (2 . 14452)) #((1 . 440344) (2 . 14452)) #((1 . 432576) (2 . 20272)) #((1 . 459802) (2 . 20272)) #((1 . 427730) (2 . 20272)) #((1 . 454956) (2 . 20272)) #((1 . 432576) (2 . 20272)) #((1 . 459802) (2 . 20272)) #((1 . 427730) (2 . 20272)) #((1 . 454956) (2 . 20272)) #((1 . 441180) (2 . 14452)) #((1 . 468406) (2 . 14452)) #((1 . 436334) (2 . 14452)) #((1 . 463560) (2 . 14452)) #((1 . 441180) (2 . 14452)) #((1 . 468406) (2 . 14452)) #((1 . 436334) (2 . 14452)) #((1 . 463560) (2 . 14452)) #((1 . 432590) (2 . 20272)) #((1 . 459816) (2 . 20272)) #((1 . 427744) (2 . 20272)) #((1 . 454970) (2 . 20272)) #((1 . 432590) (2 . 20272)) #((1 . 459816) (2 . 20272)) #((1 . 427744) (2 . 20272)) #((1 . 454970) (2 . 20272)) #((1 . 429128)) #((1 . 483580)) #((1 . 331520)) #((1 . 385972)) #((1 . 429128)) #((1 . 483580)) #((1 . 331520)) #((1 . 385972)) #((1 . 217540) (2 . 5802)) #((1 . 244766) (2 . 5802)) #((1 . 168736) (2 . 5802)) #((1 . 195962) (2 . 5802)) #((1 . 217540) (2 . 5802)) #((1 . 244766) (2 . 5802)) #((1 . 168736) (2 . 5802)) #((1 . 195962) (2 . 5802)) #((1 . 429096)) #((1 . 483548)) #((1 . 331488)) #((1 . 385940)) #((1 . 429096)) #((1 . 483548)) #((1 . 331488)) #((1 . 385940)) #((1 . 205922) (2 . 5802)) #((1 . 233148) (2 . 5802)) #((1 . 157118) (2 . 5802)) #((1 . 184344) (2 . 5802)) #((1 . 205922) (2 . 5802)) #((1 . 233148) (2 . 5802)) #((1 . 157118) (2 . 5802)) #((1 . 184344) (2 . 5802)) #((1 . 445932)) #((1 . 500384)) #((1 . 347980)) #((1 . 402432)) #((1 . 445932)) #((1 . 500384)) #((1 . 347980)) #((1 . 402432)) #((1 . 208604) (2 . 5802)) #((1 . 235830) (2 . 5802)) #((1 . 159628) (2 . 5802)) #((1 . 186854) (2 . 5802)) #((1 . 208604) (2 . 5802)) #((1 . 235830) (2 . 5802)) #((1 . 159628) (2 . 5802)) #((1 . 186854) (2 . 5802)) #((1 . 445896)) #((1 . 500348)) #((1 . 347944)) #((1 . 402396)) #((1 . 445896)) #((1 . 500348)) #((1 . 347944)) #((1 . 402396)) #((1 . 196984) (2 . 5802)) #((1 . 224210) (2 . 5802)) #((1 . 148008) (2 . 5802)) #((1 . 175234) (2 . 5802)) #((1 . 196984) (2 . 5802)) #((1 . 224210) (2 . 5802)) #((1 . 148008) (2 . 5802)) #((1 . 175234) (2 . 5802)) #((1 . 545984)) #((1 . 600436)) #((1 . 378416)) #((1 . 432868)) #((1 . 545984)) #((1 . 600436)) #((1 . 378416)) #((1 . 432868)) #((1 . 275968) (2 . 5802)) #((1 . 303194) (2 . 5802)) #((1 . 192184) (2 . 5802)) #((1 . 219410) (2 . 5802)) #((1 . 275968) (2 . 5802)) #((1 . 303194) (2 . 5802)) #((1 . 192184) (2 . 5802)) #((1 . 219410) (2 . 5802)) #((1 . 545952)) #((1 . 600404)) #((1 . 378384)) #((1 . 432836)) #((1 . 545952)) #((1 . 600404)) #((1 . 378384)) #((1 . 432836)) #((1 . 264350) (2 . 5802)) #((1 . 291576) (2 . 5802)) #((1 . 180566) (2 . 5802)) #((1 . 207792) (2 . 5802)) #((1 . 264350) (2 . 5802)) #((1 . 291576) (2 . 5802)) #((1 . 180566) (2 . 5802)) #((1 . 207792) (2 . 5802)) #((1 . 562788)) #((1 . 617240)) #((1 . 394876)) #((1 . 449328)) #((1 . 562788)) #((1 . 617240)) #((1 . 394876)) #((1 . 449328)) #((1 . 267032) (2 . 5802)) #((1 . 294258) (2 . 5802)) #((1 . 183076) (2 . 5802)) #((1 . 210302) (2 . 5802)) #((1 . 267032) (2 . 5802)) #((1 . 294258) (2 . 5802)) #((1 . 183076) (2 . 5802)) #((1 . 210302) (2 . 5802)) #((1 . 562752)) #((1 . 617204)) #((1 . 394840)) #((1 . 449292)) #((1 . 562752)) #((1 . 617204)) #((1 . 394840)) #((1 . 449292)) #((1 . 255412) (2 . 5802)) #((1 . 282638) (2 . 5802)) #((1 . 171456) (2 . 5802)) #((1 . 198682) (2 . 5802)) #((1 . 255412) (2 . 5802)) #((1 . 282638) (2 . 5802)) #((1 . 171456) (2 . 5802)) #((1 . 198682) (2 . 5802)) #((1 . 316268) (2 . 164)) #((1 . 341542) (2 . 164)) #((1 . 346664) (2 . 164)) #((1 . 371938) (2 . 164)) #((1 . 316268) (2 . 164)) #((1 . 341542) (2 . 164)) #((1 . 346664) (2 . 164)) #((1 . 371938) (2 . 164)) #((1 . 359776) (2 . 5984)) #((1 . 385050) (2 . 5984)) #((1 . 390172) (2 . 5984)) #((1 . 415446) (2 . 5984)) #((1 . 359776) (2 . 5984)) #((1 . 385050) (2 . 5984)) #((1 . 390172) (2 . 5984)) #((1 . 415446) (2 . 5984)) #((1 . 339488) (2 . 164)) #((1 . 364762) (2 . 164)) #((1 . 369884) (2 . 164)) #((1 . 395158) (2 . 164)) #((1 . 339488) (2 . 164)) #((1 . 364762) (2 . 164)) #((1 . 369884) (2 . 164)) #((1 . 395158) (2 . 164)) #((1 . 359794) (2 . 5984)) #((1 . 385068) (2 . 5984)) #((1 . 390190) (2 . 5984)) #((1 . 415464) (2 . 5984)) #((1 . 359794) (2 . 5984)) #((1 . 385068) (2 . 5984)) #((1 . 390190) (2 . 5984)) #((1 . 415464) (2 . 5984)) #((1 . 284094) (2 . 12)) #((1 . 309368) (2 . 12)) #((1 . 314228) (2 . 12)) #((1 . 339502) (2 . 12)) #((1 . 284094) (2 . 12)) #((1 . 309368) (2 . 12)) #((1 . 314228) (2 . 12)) #((1 . 339502) (2 . 12)) #((1 . 298706) (2 . 5832)) #((1 . 323980) (2 . 5832)) #((1 . 328840) (2 . 5832)) #((1 . 354114) (2 . 5832)) #((1 . 298706) (2 . 5832)) #((1 . 323980) (2 . 5832)) #((1 . 328840) (2 . 5832)) #((1 . 354114) (2 . 5832)) #((1 . 307310) (2 . 12)) #((1 . 332584) (2 . 12)) #((1 . 337444) (2 . 12)) #((1 . 362718) (2 . 12)) #((1 . 307310) (2 . 12)) #((1 . 332584) (2 . 12)) #((1 . 337444) (2 . 12)) #((1 . 362718) (2 . 12)) #((1 . 298720) (2 . 5832)) #((1 . 323994) (2 . 5832)) #((1 . 328854) (2 . 5832)) #((1 . 354128) (2 . 5832)) #((1 . 298720) (2 . 5832)) #((1 . 323994) (2 . 5832)) #((1 . 328854) (2 . 5832)) #((1 . 354128) (2 . 5832)) #((1 . 374696) (2 . 164)) #((1 . 399970) (2 . 164)) #((1 . 370112) (2 . 164)) #((1 . 395386) (2 . 164)) #((1 . 374696) (2 . 164)) #((1 . 399970) (2 . 164)) #((1 . 370112) (2 . 164)) #((1 . 395386) (2 . 164)) #((1 . 418204) (2 . 5984)) #((1 . 443478) (2 . 5984)) #((1 . 413620) (2 . 5984)) #((1 . 438894) (2 . 5984)) #((1 . 418204) (2 . 5984)) #((1 . 443478) (2 . 5984)) #((1 . 413620) (2 . 5984)) #((1 . 438894) (2 . 5984)) #((1 . 397916) (2 . 164)) #((1 . 423190) (2 . 164)) #((1 . 393332) (2 . 164)) #((1 . 418606) (2 . 164)) #((1 . 397916) (2 . 164)) #((1 . 423190) (2 . 164)) #((1 . 393332) (2 . 164)) #((1 . 418606) (2 . 164)) #((1 . 418222) (2 . 5984)) #((1 . 443496) (2 . 5984)) #((1 . 413638) (2 . 5984)) #((1 . 438912) (2 . 5984)) #((1 . 418222) (2 . 5984)) #((1 . 443496) (2 . 5984)) #((1 . 413638) (2 . 5984)) #((1 . 438912) (2 . 5984)) #((1 . 342522) (2 . 12)) #((1 . 367796) (2 . 12)) #((1 . 337676) (2 . 12)) #((1 . 362950) (2 . 12)) #((1 . 342522) (2 . 12)) #((1 . 367796) (2 . 12)) #((1 . 337676) (2 . 12)) #((1 . 362950) (2 . 12)) #((1 . 357134) (2 . 5832)) #((1 . 382408) (2 . 5832)) #((1 . 352288) (2 . 5832)) #((1 . 377562) (2 . 5832)) #((1 . 357134) (2 . 5832)) #((1 . 382408) (2 . 5832)) #((1 . 352288) (2 . 5832)) #((1 . 377562) (2 . 5832)) #((1 . 365738) (2 . 12)) #((1 . 391012) (2 . 12)) #((1 . 360892) (2 . 12)) #((1 . 386166) (2 . 12)) #((1 . 365738) (2 . 12)) #((1 . 391012) (2 . 12)) #((1 . 360892) (2 . 12)) #((1 . 386166) (2 . 12)) #((1 . 357148) (2 . 5832)) #((1 . 382422) (2 . 5832)) #((1 . 352302) (2 . 5832)) #((1 . 377576) (2 . 5832)) #((1 . 357148) (2 . 5832)) #((1 . 382422) (2 . 5832)) #((1 . 352302) (2 . 5832)) #((1 . 377576) (2 . 5832)) #((1 . 387836)) #((1 . 438384)) #((1 . 290228)) #((1 . 340776)) #((1 . 387836)) #((1 . 438384)) #((1 . 290228)) #((1 . 340776)) #((1 . 196894) (2 . 5802)) #((1 . 222168) (2 . 5802)) #((1 . 148090) (2 . 5802)) #((1 . 173364) (2 . 5802)) #((1 . 196894) (2 . 5802)) #((1 . 222168) (2 . 5802)) #((1 . 148090) (2 . 5802)) #((1 . 173364) (2 . 5802)) #((1 . 387804)) #((1 . 438352)) #((1 . 290196)) #((1 . 340744)) #((1 . 387804)) #((1 . 438352)) #((1 . 290196)) #((1 . 340744)) #((1 . 185276) (2 . 5802)) #((1 . 210550) (2 . 5802)) #((1 . 136472) (2 . 5802)) #((1 . 161746) (2 . 5802)) #((1 . 185276) (2 . 5802)) #((1 . 210550) (2 . 5802)) #((1 . 136472) (2 . 5802)) #((1 . 161746) (2 . 5802)) #((1 . 369984)) #((1 . 420532)) #((1 . 272032)) #((1 . 322580)) #((1 . 369984)) #((1 . 420532)) #((1 . 272032)) #((1 . 322580)) #((1 . 170630) (2 . 5802)) #((1 . 195904) (2 . 5802)) #((1 . 121654) (2 . 5802)) #((1 . 146928) (2 . 5802)) #((1 . 170630) (2 . 5802)) #((1 . 195904) (2 . 5802)) #((1 . 121654) (2 . 5802)) #((1 . 146928) (2 . 5802)) #((1 . 369948)) #((1 . 420496)) #((1 . 271996)) #((1 . 322544)) #((1 . 369948)) #((1 . 420496)) #((1 . 271996)) #((1 . 322544)) #((1 . 159010) (2 . 5802)) #((1 . 184284) (2 . 5802)) #((1 . 110034) (2 . 5802)) #((1 . 135308) (2 . 5802)) #((1 . 159010) (2 . 5802)) #((1 . 184284) (2 . 5802)) #((1 . 110034) (2 . 5802)) #((1 . 135308) (2 . 5802)) #((1 . 504692)) #((1 . 555240)) #((1 . 337124)) #((1 . 387672)) #((1 . 504692)) #((1 . 555240)) #((1 . 337124)) #((1 . 387672)) #((1 . 255322) (2 . 5802)) #((1 . 280596) (2 . 5802)) #((1 . 171538) (2 . 5802)) #((1 . 196812) (2 . 5802)) #((1 . 255322) (2 . 5802)) #((1 . 280596) (2 . 5802)) #((1 . 171538) (2 . 5802)) #((1 . 196812) (2 . 5802)) #((1 . 504660)) #((1 . 555208)) #((1 . 337092)) #((1 . 387640)) #((1 . 504660)) #((1 . 555208)) #((1 . 337092)) #((1 . 387640)) #((1 . 243704) (2 . 5802)) #((1 . 268978) (2 . 5802)) #((1 . 159920) (2 . 5802)) #((1 . 185194) (2 . 5802)) #((1 . 243704) (2 . 5802)) #((1 . 268978) (2 . 5802)) #((1 . 159920) (2 . 5802)) #((1 . 185194) (2 . 5802)) #((1 . 486840)) #((1 . 537388)) #((1 . 318928)) #((1 . 369476)) #((1 . 486840)) #((1 . 537388)) #((1 . 318928)) #((1 . 369476)) #((1 . 229058) (2 . 5802)) #((1 . 254332) (2 . 5802)) #((1 . 145102) (2 . 5802)) #((1 . 170376) (2 . 5802)) #((1 . 229058) (2 . 5802)) #((1 . 254332) (2 . 5802)) #((1 . 145102) (2 . 5802)) #((1 . 170376) (2 . 5802)) #((1 . 486804)) #((1 . 537352)) #((1 . 318892)) #((1 . 369440)) #((1 . 486804)) #((1 . 537352)) #((1 . 318892)) #((1 . 369440)) #((1 . 217438) (2 . 5802)) #((1 . 242712) (2 . 5802)) #((1 . 133482) (2 . 5802)) #((1 . 158756) (2 . 5802)) #((1 . 217438) (2 . 5802)) #((1 . 242712) (2 . 5802)) #((1 . 133482) (2 . 5802)) #((1 . 158756) (2 . 5802)) #((1 . 230088)) #((1 . 179540)) #((1 . 398316)) #((1 . 347768)) #((1 . 230088)) #((1 . 179540)) #((1 . 398316)) #((1 . 347768)) #((1 . 193298) (2 . 5820)) #((1 . 168024) (2 . 5820)) #((1 . 277412) (2 . 5820)) #((1 . 252138) (2 . 5820)) #((1 . 193298) (2 . 5820)) #((1 . 168024) (2 . 5820)) #((1 . 277412) (2 . 5820)) #((1 . 252138) (2 . 5820)) #((1 . 276540)) #((1 . 225992)) #((1 . 444768)) #((1 . 394220)) #((1 . 276540)) #((1 . 225992)) #((1 . 444768)) #((1 . 394220)) #((1 . 193322) (2 . 5820)) #((1 . 168048) (2 . 5820)) #((1 . 277436) (2 . 5820)) #((1 . 252162) (2 . 5820)) #((1 . 193322) (2 . 5820)) #((1 . 168048) (2 . 5820)) #((1 . 277436) (2 . 5820)) #((1 . 252162) (2 . 5820)) #((1 . 295228)) #((1 . 244680)) #((1 . 462932)) #((1 . 412384)) #((1 . 295228)) #((1 . 244680)) #((1 . 462932)) #((1 . 412384)) #((1 . 196972) (2 . 5820)) #((1 . 171698) (2 . 5820)) #((1 . 280824) (2 . 5820)) #((1 . 255550) (2 . 5820)) #((1 . 196972) (2 . 5820)) #((1 . 171698) (2 . 5820)) #((1 . 280824) (2 . 5820)) #((1 . 255550) (2 . 5820)) #((1 . 341672)) #((1 . 291124)) #((1 . 509376)) #((1 . 458828)) #((1 . 341672)) #((1 . 291124)) #((1 . 509376)) #((1 . 458828)) #((1 . 196992) (2 . 5820)) #((1 . 171718) (2 . 5820)) #((1 . 280844) (2 . 5820)) #((1 . 255570) (2 . 5820)) #((1 . 196992) (2 . 5820)) #((1 . 171718) (2 . 5820)) #((1 . 280844) (2 . 5820)) #((1 . 255570) (2 . 5820)) #((1 . 183192)) #((1 . 132644)) #((1 . 304780)) #((1 . 254232)) #((1 . 183192)) #((1 . 132644)) #((1 . 304780)) #((1 . 254232)) #((1 . 169850) (2 . 5820)) #((1 . 144576) (2 . 5820)) #((1 . 230644) (2 . 5820)) #((1 . 205370) (2 . 5820)) #((1 . 169850) (2 . 5820)) #((1 . 144576) (2 . 5820)) #((1 . 230644) (2 . 5820)) #((1 . 205370) (2 . 5820)) #((1 . 229644)) #((1 . 179096)) #((1 . 351232)) #((1 . 300684)) #((1 . 229644)) #((1 . 179096)) #((1 . 351232)) #((1 . 300684)) #((1 . 169874) (2 . 5820)) #((1 . 144600) (2 . 5820)) #((1 . 230668) (2 . 5820)) #((1 . 205394) (2 . 5820)) #((1 . 169874) (2 . 5820)) #((1 . 144600) (2 . 5820)) #((1 . 230668) (2 . 5820)) #((1 . 205394) (2 . 5820)) #((1 . 248332)) #((1 . 197784)) #((1 . 369396)) #((1 . 318848)) #((1 . 248332)) #((1 . 197784)) #((1 . 369396)) #((1 . 318848)) #((1 . 173524) (2 . 5820)) #((1 . 148250) (2 . 5820)) #((1 . 234056) (2 . 5820)) #((1 . 208782) (2 . 5820)) #((1 . 173524) (2 . 5820)) #((1 . 148250) (2 . 5820)) #((1 . 234056) (2 . 5820)) #((1 . 208782) (2 . 5820)) #((1 . 294776)) #((1 . 244228)) #((1 . 415840)) #((1 . 365292)) #((1 . 294776)) #((1 . 244228)) #((1 . 415840)) #((1 . 365292)) #((1 . 173544) (2 . 5820)) #((1 . 148270) (2 . 5820)) #((1 . 234076) (2 . 5820)) #((1 . 208802) (2 . 5820)) #((1 . 173544) (2 . 5820)) #((1 . 148270) (2 . 5820)) #((1 . 234076) (2 . 5820)) #((1 . 208802) (2 . 5820)) #((1 . 700652)) #((1 . 650104)) #((1 . 681556)) #((1 . 631008)) #((1 . 700652)) #((1 . 650104)) #((1 . 681556)) #((1 . 631008)) #((1 . 376466) (2 . 5802)) #((1 . 351192) (2 . 5802)) #((1 . 366918) (2 . 5802)) #((1 . 341644) (2 . 5802)) #((1 . 376466) (2 . 5802)) #((1 . 351192) (2 . 5802)) #((1 . 366918) (2 . 5802)) #((1 . 341644) (2 . 5802)) #((1 . 700628)) #((1 . 650080)) #((1 . 681532)) #((1 . 630984)) #((1 . 700628)) #((1 . 650080)) #((1 . 681532)) #((1 . 630984)) #((1 . 364852) (2 . 5802)) #((1 . 339578) (2 . 5802)) #((1 . 355304) (2 . 5802)) #((1 . 330030) (2 . 5802)) #((1 . 364852) (2 . 5802)) #((1 . 339578) (2 . 5802)) #((1 . 355304) (2 . 5802)) #((1 . 330030) (2 . 5802)) #((1 . 376704) (2 . 152)) #((1 . 351430) (2 . 152)) #((1 . 366984) (2 . 152)) #((1 . 341710) (2 . 152)) #((1 . 376704) (2 . 152)) #((1 . 351430) (2 . 152)) #((1 . 366984) (2 . 152)) #((1 . 341710) (2 . 152)) #((1 . 385506) (2 . 5954)) #((1 . 360232) (2 . 5954)) #((1 . 375786) (2 . 5954)) #((1 . 350512) (2 . 5954)) #((1 . 385506) (2 . 5954)) #((1 . 360232) (2 . 5954)) #((1 . 375786) (2 . 5954)) #((1 . 350512) (2 . 5954)) #((1 . 376690) (2 . 152)) #((1 . 351416) (2 . 152)) #((1 . 366970) (2 . 152)) #((1 . 341696) (2 . 152)) #((1 . 376690) (2 . 152)) #((1 . 351416) (2 . 152)) #((1 . 366970) (2 . 152)) #((1 . 341696) (2 . 152)) #((1 . 373890) (2 . 5954)) #((1 . 348616) (2 . 5954)) #((1 . 364170) (2 . 5954)) #((1 . 338896) (2 . 5954)) #((1 . 373890) (2 . 5954)) #((1 . 348616) (2 . 5954)) #((1 . 364170) (2 . 5954)) #((1 . 338896) (2 . 5954)) #((1 . 653756)) #((1 . 603208)) #((1 . 588020)) #((1 . 537472)) #((1 . 653756)) #((1 . 603208)) #((1 . 588020)) #((1 . 537472)) #((1 . 353018) (2 . 5802)) #((1 . 327744) (2 . 5802)) #((1 . 320150) (2 . 5802)) #((1 . 294876) (2 . 5802)) #((1 . 353018) (2 . 5802)) #((1 . 327744) (2 . 5802)) #((1 . 320150) (2 . 5802)) #((1 . 294876) (2 . 5802)) #((1 . 653732)) #((1 . 603184)) #((1 . 587996)) #((1 . 537448)) #((1 . 653732)) #((1 . 603184)) #((1 . 587996)) #((1 . 537448)) #((1 . 341404) (2 . 5802)) #((1 . 316130) (2 . 5802)) #((1 . 308536) (2 . 5802)) #((1 . 283262) (2 . 5802)) #((1 . 341404) (2 . 5802)) #((1 . 316130) (2 . 5802)) #((1 . 308536) (2 . 5802)) #((1 . 283262) (2 . 5802)) #((1 . 353256) (2 . 152)) #((1 . 327982) (2 . 152)) #((1 . 320216) (2 . 152)) #((1 . 294942) (2 . 152)) #((1 . 353256) (2 . 152)) #((1 . 327982) (2 . 152)) #((1 . 320216) (2 . 152)) #((1 . 294942) (2 . 152)) #((1 . 362058) (2 . 5954)) #((1 . 336784) (2 . 5954)) #((1 . 329018) (2 . 5954)) #((1 . 303744) (2 . 5954)) #((1 . 362058) (2 . 5954)) #((1 . 336784) (2 . 5954)) #((1 . 329018) (2 . 5954)) #((1 . 303744) (2 . 5954)) #((1 . 353242) (2 . 152)) #((1 . 327968) (2 . 152)) #((1 . 320202) (2 . 152)) #((1 . 294928) (2 . 152)) #((1 . 353242) (2 . 152)) #((1 . 327968) (2 . 152)) #((1 . 320202) (2 . 152)) #((1 . 294928) (2 . 152)) #((1 . 350442) (2 . 5954)) #((1 . 325168) (2 . 5954)) #((1 . 317402) (2 . 5954)) #((1 . 292128) (2 . 5954)) #((1 . 350442) (2 . 5954)) #((1 . 325168) (2 . 5954)) #((1 . 317402) (2 . 5954)) #((1 . 292128) (2 . 5954)) #((1 . 385028)) #((1 . 330576)) #((1 . 553256)) #((1 . 498804)) #((1 . 385028)) #((1 . 330576)) #((1 . 553256)) #((1 . 498804)) #((1 . 270768) (2 . 5820)) #((1 . 243542) (2 . 5820)) #((1 . 354882) (2 . 5820)) #((1 . 327656) (2 . 5820)) #((1 . 270768) (2 . 5820)) #((1 . 243542) (2 . 5820)) #((1 . 354882) (2 . 5820)) #((1 . 327656) (2 . 5820)) #((1 . 431480)) #((1 . 377028)) #((1 . 599708)) #((1 . 545256)) #((1 . 431480)) #((1 . 377028)) #((1 . 599708)) #((1 . 545256)) #((1 . 270792) (2 . 5820)) #((1 . 243566) (2 . 5820)) #((1 . 354906) (2 . 5820)) #((1 . 327680) (2 . 5820)) #((1 . 270792) (2 . 5820)) #((1 . 243566) (2 . 5820)) #((1 . 354906) (2 . 5820)) #((1 . 327680) (2 . 5820)) #((1 . 380856)) #((1 . 326404)) #((1 . 548560)) #((1 . 494108)) #((1 . 380856)) #((1 . 326404)) #((1 . 548560)) #((1 . 494108)) #((1 . 239786) (2 . 5820)) #((1 . 212560) (2 . 5820)) #((1 . 323638) (2 . 5820)) #((1 . 296412) (2 . 5820)) #((1 . 239786) (2 . 5820)) #((1 . 212560) (2 . 5820)) #((1 . 323638) (2 . 5820)) #((1 . 296412) (2 . 5820)) #((1 . 427300)) #((1 . 372848)) #((1 . 595004)) #((1 . 540552)) #((1 . 427300)) #((1 . 372848)) #((1 . 595004)) #((1 . 540552)) #((1 . 239806) (2 . 5820)) #((1 . 212580) (2 . 5820)) #((1 . 323658) (2 . 5820)) #((1 . 296432) (2 . 5820)) #((1 . 239806) (2 . 5820)) #((1 . 212580) (2 . 5820)) #((1 . 323658) (2 . 5820)) #((1 . 296432) (2 . 5820)) #((1 . 338132)) #((1 . 283680)) #((1 . 459720)) #((1 . 405268)) #((1 . 338132)) #((1 . 283680)) #((1 . 459720)) #((1 . 405268)) #((1 . 247320) (2 . 5820)) #((1 . 220094) (2 . 5820)) #((1 . 308114) (2 . 5820)) #((1 . 280888) (2 . 5820)) #((1 . 247320) (2 . 5820)) #((1 . 220094) (2 . 5820)) #((1 . 308114) (2 . 5820)) #((1 . 280888) (2 . 5820)) #((1 . 384584)) #((1 . 330132)) #((1 . 506172)) #((1 . 451720)) #((1 . 384584)) #((1 . 330132)) #((1 . 506172)) #((1 . 451720)) #((1 . 247344) (2 . 5820)) #((1 . 220118) (2 . 5820)) #((1 . 308138) (2 . 5820)) #((1 . 280912) (2 . 5820)) #((1 . 247344) (2 . 5820)) #((1 . 220118) (2 . 5820)) #((1 . 308138) (2 . 5820)) #((1 . 280912) (2 . 5820)) #((1 . 333960)) #((1 . 279508)) #((1 . 455024)) #((1 . 400572)) #((1 . 333960)) #((1 . 279508)) #((1 . 455024)) #((1 . 400572)) #((1 . 216338) (2 . 5820)) #((1 . 189112) (2 . 5820)) #((1 . 276870) (2 . 5820)) #((1 . 249644) (2 . 5820)) #((1 . 216338) (2 . 5820)) #((1 . 189112) (2 . 5820)) #((1 . 276870) (2 . 5820)) #((1 . 249644) (2 . 5820)) #((1 . 380404)) #((1 . 325952)) #((1 . 501468)) #((1 . 447016)) #((1 . 380404)) #((1 . 325952)) #((1 . 501468)) #((1 . 447016)) #((1 . 216358) (2 . 5820)) #((1 . 189132) (2 . 5820)) #((1 . 276890) (2 . 5820)) #((1 . 249664) (2 . 5820)) #((1 . 216358) (2 . 5820)) #((1 . 189132) (2 . 5820)) #((1 . 276890) (2 . 5820)) #((1 . 249664) (2 . 5820)) #((1 . 375812) (2 . 14440)) #((1 . 348586) (2 . 14440)) #((1 . 366264) (2 . 14440)) #((1 . 339038) (2 . 14440)) #((1 . 375812) (2 . 14440)) #((1 . 348586) (2 . 14440)) #((1 . 366264) (2 . 14440)) #((1 . 339038) (2 . 14440)) #((1 . 401952) (2 . 20242)) #((1 . 374726) (2 . 20242)) #((1 . 392404) (2 . 20242)) #((1 . 365178) (2 . 20242)) #((1 . 401952) (2 . 20242)) #((1 . 374726) (2 . 20242)) #((1 . 392404) (2 . 20242)) #((1 . 365178) (2 . 20242)) #((1 . 375800) (2 . 14440)) #((1 . 348574) (2 . 14440)) #((1 . 366252) (2 . 14440)) #((1 . 339026) (2 . 14440)) #((1 . 375800) (2 . 14440)) #((1 . 348574) (2 . 14440)) #((1 . 366252) (2 . 14440)) #((1 . 339026) (2 . 14440)) #((1 . 390338) (2 . 20242)) #((1 . 363112) (2 . 20242)) #((1 . 380790) (2 . 20242)) #((1 . 353564) (2 . 20242)) #((1 . 390338) (2 . 20242)) #((1 . 363112) (2 . 20242)) #((1 . 380790) (2 . 20242)) #((1 . 353564) (2 . 20242)) #((1 . 384862) (2 . 14592)) #((1 . 357636) (2 . 14592)) #((1 . 375142) (2 . 14592)) #((1 . 347916) (2 . 14592)) #((1 . 384862) (2 . 14592)) #((1 . 357636) (2 . 14592)) #((1 . 375142) (2 . 14592)) #((1 . 347916) (2 . 14592)) #((1 . 393664) (2 . 20394)) #((1 . 366438) (2 . 20394)) #((1 . 383944) (2 . 20394)) #((1 . 356718) (2 . 20394)) #((1 . 393664) (2 . 20394)) #((1 . 366438) (2 . 20394)) #((1 . 383944) (2 . 20394)) #((1 . 356718) (2 . 20394)) #((1 . 384848) (2 . 14592)) #((1 . 357622) (2 . 14592)) #((1 . 375128) (2 . 14592)) #((1 . 347902) (2 . 14592)) #((1 . 384848) (2 . 14592)) #((1 . 357622) (2 . 14592)) #((1 . 375128) (2 . 14592)) #((1 . 347902) (2 . 14592)) #((1 . 382048) (2 . 20394)) #((1 . 354822) (2 . 20394)) #((1 . 372328) (2 . 20394)) #((1 . 345102) (2 . 20394)) #((1 . 382048) (2 . 20394)) #((1 . 354822) (2 . 20394)) #((1 . 372328) (2 . 20394)) #((1 . 345102) (2 . 20394)) #((1 . 352364) (2 . 14440)) #((1 . 325138) (2 . 14440)) #((1 . 319496) (2 . 14440)) #((1 . 292270) (2 . 14440)) #((1 . 352364) (2 . 14440)) #((1 . 325138) (2 . 14440)) #((1 . 319496) (2 . 14440)) #((1 . 292270) (2 . 14440)) #((1 . 378504) (2 . 20242)) #((1 . 351278) (2 . 20242)) #((1 . 345636) (2 . 20242)) #((1 . 318410) (2 . 20242)) #((1 . 378504) (2 . 20242)) #((1 . 351278) (2 . 20242)) #((1 . 345636) (2 . 20242)) #((1 . 318410) (2 . 20242)) #((1 . 352352) (2 . 14440)) #((1 . 325126) (2 . 14440)) #((1 . 319484) (2 . 14440)) #((1 . 292258) (2 . 14440)) #((1 . 352352) (2 . 14440)) #((1 . 325126) (2 . 14440)) #((1 . 319484) (2 . 14440)) #((1 . 292258) (2 . 14440)) #((1 . 366890) (2 . 20242)) #((1 . 339664) (2 . 20242)) #((1 . 334022) (2 . 20242)) #((1 . 306796) (2 . 20242)) #((1 . 366890) (2 . 20242)) #((1 . 339664) (2 . 20242)) #((1 . 334022) (2 . 20242)) #((1 . 306796) (2 . 20242)) #((1 . 361414) (2 . 14592)) #((1 . 334188) (2 . 14592)) #((1 . 328374) (2 . 14592)) #((1 . 301148) (2 . 14592)) #((1 . 361414) (2 . 14592)) #((1 . 334188) (2 . 14592)) #((1 . 328374) (2 . 14592)) #((1 . 301148) (2 . 14592)) #((1 . 370216) (2 . 20394)) #((1 . 342990) (2 . 20394)) #((1 . 337176) (2 . 20394)) #((1 . 309950) (2 . 20394)) #((1 . 370216) (2 . 20394)) #((1 . 342990) (2 . 20394)) #((1 . 337176) (2 . 20394)) #((1 . 309950) (2 . 20394)) #((1 . 361400) (2 . 14592)) #((1 . 334174) (2 . 14592)) #((1 . 328360) (2 . 14592)) #((1 . 301134) (2 . 14592)) #((1 . 361400) (2 . 14592)) #((1 . 334174) (2 . 14592)) #((1 . 328360) (2 . 14592)) #((1 . 301134) (2 . 14592)) #((1 . 358600) (2 . 20394)) #((1 . 331374) (2 . 20394)) #((1 . 325560) (2 . 20394)) #((1 . 298334) (2 . 20394)) #((1 . 358600) (2 . 20394)) #((1 . 331374) (2 . 20394)) #((1 . 325560) (2 . 20394)) #((1 . 298334) (2 . 20394)) #((1 . 407204) (2 . 8828)) #((1 . 381930) (2 . 8828)) #((1 . 412478) (2 . 8828)) #((1 . 387204) (2 . 8828)) #((1 . 407204) (2 . 8828)) #((1 . 381930) (2 . 8828)) #((1 . 412478) (2 . 8828)) #((1 . 387204) (2 . 8828)) #((1 . 450712) (2 . 14648)) #((1 . 425438) (2 . 14648)) #((1 . 455986) (2 . 14648)) #((1 . 430712) (2 . 14648)) #((1 . 450712) (2 . 14648)) #((1 . 425438) (2 . 14648)) #((1 . 455986) (2 . 14648)) #((1 . 430712) (2 . 14648)) #((1 . 430424) (2 . 8828)) #((1 . 405150) (2 . 8828)) #((1 . 435698) (2 . 8828)) #((1 . 410424) (2 . 8828)) #((1 . 430424) (2 . 8828)) #((1 . 405150) (2 . 8828)) #((1 . 435698) (2 . 8828)) #((1 . 410424) (2 . 8828)) #((1 . 450730) (2 . 14648)) #((1 . 425456) (2 . 14648)) #((1 . 456004) (2 . 14648)) #((1 . 430730) (2 . 14648)) #((1 . 450730) (2 . 14648)) #((1 . 425456) (2 . 14648)) #((1 . 456004) (2 . 14648)) #((1 . 430730) (2 . 14648)) #((1 . 409948) (2 . 8676)) #((1 . 384674) (2 . 8676)) #((1 . 414960) (2 . 8676)) #((1 . 389686) (2 . 8676)) #((1 . 409948) (2 . 8676)) #((1 . 384674) (2 . 8676)) #((1 . 414960) (2 . 8676)) #((1 . 389686) (2 . 8676)) #((1 . 424560) (2 . 14496)) #((1 . 399286) (2 . 14496)) #((1 . 429572) (2 . 14496)) #((1 . 404298) (2 . 14496)) #((1 . 424560) (2 . 14496)) #((1 . 399286) (2 . 14496)) #((1 . 429572) (2 . 14496)) #((1 . 404298) (2 . 14496)) #((1 . 433164) (2 . 8676)) #((1 . 407890) (2 . 8676)) #((1 . 438176) (2 . 8676)) #((1 . 412902) (2 . 8676)) #((1 . 433164) (2 . 8676)) #((1 . 407890) (2 . 8676)) #((1 . 438176) (2 . 8676)) #((1 . 412902) (2 . 8676)) #((1 . 424574) (2 . 14496)) #((1 . 399300) (2 . 14496)) #((1 . 429586) (2 . 14496)) #((1 . 404312) (2 . 14496)) #((1 . 424574) (2 . 14496)) #((1 . 399300) (2 . 14496)) #((1 . 429586) (2 . 14496)) #((1 . 404312) (2 . 14496)) #((1 . 383756) (2 . 8828)) #((1 . 358482) (2 . 8828)) #((1 . 365710) (2 . 8828)) #((1 . 340436) (2 . 8828)) #((1 . 383756) (2 . 8828)) #((1 . 358482) (2 . 8828)) #((1 . 365710) (2 . 8828)) #((1 . 340436) (2 . 8828)) #((1 . 427264) (2 . 14648)) #((1 . 401990) (2 . 14648)) #((1 . 409218) (2 . 14648)) #((1 . 383944) (2 . 14648)) #((1 . 427264) (2 . 14648)) #((1 . 401990) (2 . 14648)) #((1 . 409218) (2 . 14648)) #((1 . 383944) (2 . 14648)) #((1 . 406976) (2 . 8828)) #((1 . 381702) (2 . 8828)) #((1 . 388930) (2 . 8828)) #((1 . 363656) (2 . 8828)) #((1 . 406976) (2 . 8828)) #((1 . 381702) (2 . 8828)) #((1 . 388930) (2 . 8828)) #((1 . 363656) (2 . 8828)) #((1 . 427282) (2 . 14648)) #((1 . 402008) (2 . 14648)) #((1 . 409236) (2 . 14648)) #((1 . 383962) (2 . 14648)) #((1 . 427282) (2 . 14648)) #((1 . 402008) (2 . 14648)) #((1 . 409236) (2 . 14648)) #((1 . 383962) (2 . 14648)) #((1 . 386500) (2 . 8676)) #((1 . 361226) (2 . 8676)) #((1 . 368192) (2 . 8676)) #((1 . 342918) (2 . 8676)) #((1 . 386500) (2 . 8676)) #((1 . 361226) (2 . 8676)) #((1 . 368192) (2 . 8676)) #((1 . 342918) (2 . 8676)) #((1 . 401112) (2 . 14496)) #((1 . 375838) (2 . 14496)) #((1 . 382804) (2 . 14496)) #((1 . 357530) (2 . 14496)) #((1 . 401112) (2 . 14496)) #((1 . 375838) (2 . 14496)) #((1 . 382804) (2 . 14496)) #((1 . 357530) (2 . 14496)) #((1 . 409716) (2 . 8676)) #((1 . 384442) (2 . 8676)) #((1 . 391408) (2 . 8676)) #((1 . 366134) (2 . 8676)) #((1 . 409716) (2 . 8676)) #((1 . 384442) (2 . 8676)) #((1 . 391408) (2 . 8676)) #((1 . 366134) (2 . 8676)) #((1 . 401126) (2 . 14496)) #((1 . 375852) (2 . 14496)) #((1 . 382818) (2 . 14496)) #((1 . 357544) (2 . 14496)) #((1 . 401126) (2 . 14496)) #((1 . 375852) (2 . 14496)) #((1 . 382818) (2 . 14496)) #((1 . 357544) (2 . 14496)) #((1 . 693172)) #((1 . 642624)) #((1 . 568956)) #((1 . 518408)) #((1 . 693172)) #((1 . 642624)) #((1 . 568956)) #((1 . 518408)) #((1 . 349562) (2 . 5802)) #((1 . 324288) (2 . 5802)) #((1 . 287454) (2 . 5802)) #((1 . 262180) (2 . 5802)) #((1 . 349562) (2 . 5802)) #((1 . 324288) (2 . 5802)) #((1 . 287454) (2 . 5802)) #((1 . 262180) (2 . 5802)) #((1 . 693140)) #((1 . 642592)) #((1 . 568924)) #((1 . 518376)) #((1 . 693140)) #((1 . 642592)) #((1 . 568924)) #((1 . 518376)) #((1 . 337944) (2 . 5802)) #((1 . 312670) (2 . 5802)) #((1 . 275836) (2 . 5802)) #((1 . 250562) (2 . 5802)) #((1 . 337944) (2 . 5802)) #((1 . 312670) (2 . 5802)) #((1 . 275836) (2 . 5802)) #((1 . 250562) (2 . 5802)) #((1 . 710320)) #((1 . 659772)) #((1 . 585760)) #((1 . 535212)) #((1 . 710320)) #((1 . 659772)) #((1 . 585760)) #((1 . 535212)) #((1 . 340798) (2 . 5802)) #((1 . 315524) (2 . 5802)) #((1 . 278518) (2 . 5802)) #((1 . 253244) (2 . 5802)) #((1 . 340798) (2 . 5802)) #((1 . 315524) (2 . 5802)) #((1 . 278518) (2 . 5802)) #((1 . 253244) (2 . 5802)) #((1 . 710284)) #((1 . 659736)) #((1 . 585724)) #((1 . 535176)) #((1 . 710284)) #((1 . 659736)) #((1 . 585724)) #((1 . 535176)) #((1 . 329178) (2 . 5802)) #((1 . 303904) (2 . 5802)) #((1 . 266898) (2 . 5802)) #((1 . 241624) (2 . 5802)) #((1 . 329178) (2 . 5802)) #((1 . 303904) (2 . 5802)) #((1 . 266898) (2 . 5802)) #((1 . 241624) (2 . 5802)) #((1 . 646276)) #((1 . 595728)) #((1 . 475420)) #((1 . 424872)) #((1 . 646276)) #((1 . 595728)) #((1 . 475420)) #((1 . 424872)) #((1 . 326114) (2 . 5802)) #((1 . 300840) (2 . 5802)) #((1 . 240686) (2 . 5802)) #((1 . 215412) (2 . 5802)) #((1 . 326114) (2 . 5802)) #((1 . 300840) (2 . 5802)) #((1 . 240686) (2 . 5802)) #((1 . 215412) (2 . 5802)) #((1 . 646244)) #((1 . 595696)) #((1 . 475388)) #((1 . 424840)) #((1 . 646244)) #((1 . 595696)) #((1 . 475388)) #((1 . 424840)) #((1 . 314496) (2 . 5802)) #((1 . 289222) (2 . 5802)) #((1 . 229068) (2 . 5802)) #((1 . 203794) (2 . 5802)) #((1 . 314496) (2 . 5802)) #((1 . 289222) (2 . 5802)) #((1 . 229068) (2 . 5802)) #((1 . 203794) (2 . 5802)) #((1 . 663424)) #((1 . 612876)) #((1 . 492224)) #((1 . 441676)) #((1 . 663424)) #((1 . 612876)) #((1 . 492224)) #((1 . 441676)) #((1 . 317350) (2 . 5802)) #((1 . 292076) (2 . 5802)) #((1 . 231750) (2 . 5802)) #((1 . 206476) (2 . 5802)) #((1 . 317350) (2 . 5802)) #((1 . 292076) (2 . 5802)) #((1 . 231750) (2 . 5802)) #((1 . 206476) (2 . 5802)) #((1 . 663388)) #((1 . 612840)) #((1 . 492188)) #((1 . 441640)) #((1 . 663388)) #((1 . 612840)) #((1 . 492188)) #((1 . 441640)) #((1 . 305730) (2 . 5802)) #((1 . 280456) (2 . 5802)) #((1 . 220130) (2 . 5802)) #((1 . 194856) (2 . 5802)) #((1 . 305730) (2 . 5802)) #((1 . 280456) (2 . 5802)) #((1 . 220130) (2 . 5802)) #((1 . 194856) (2 . 5802)) #((1 . 340426) (2 . 164)) #((1 . 313200) (2 . 164)) #((1 . 345700) (2 . 164)) #((1 . 318474) (2 . 164)) #((1 . 340426) (2 . 164)) #((1 . 313200) (2 . 164)) #((1 . 345700) (2 . 164)) #((1 . 318474) (2 . 164)) #((1 . 383934) (2 . 5984)) #((1 . 356708) (2 . 5984)) #((1 . 389208) (2 . 5984)) #((1 . 361982) (2 . 5984)) #((1 . 383934) (2 . 5984)) #((1 . 356708) (2 . 5984)) #((1 . 389208) (2 . 5984)) #((1 . 361982) (2 . 5984)) #((1 . 363646) (2 . 164)) #((1 . 336420) (2 . 164)) #((1 . 368920) (2 . 164)) #((1 . 341694) (2 . 164)) #((1 . 363646) (2 . 164)) #((1 . 336420) (2 . 164)) #((1 . 368920) (2 . 164)) #((1 . 341694) (2 . 164)) #((1 . 383952) (2 . 5984)) #((1 . 356726) (2 . 5984)) #((1 . 389226) (2 . 5984)) #((1 . 362000) (2 . 5984)) #((1 . 383952) (2 . 5984)) #((1 . 356726) (2 . 5984)) #((1 . 389226) (2 . 5984)) #((1 . 362000) (2 . 5984)) #((1 . 308514) (2 . 12)) #((1 . 281288) (2 . 12)) #((1 . 313526) (2 . 12)) #((1 . 286300) (2 . 12)) #((1 . 308514) (2 . 12)) #((1 . 281288) (2 . 12)) #((1 . 313526) (2 . 12)) #((1 . 286300) (2 . 12)) #((1 . 323126) (2 . 5832)) #((1 . 295900) (2 . 5832)) #((1 . 328138) (2 . 5832)) #((1 . 300912) (2 . 5832)) #((1 . 323126) (2 . 5832)) #((1 . 295900) (2 . 5832)) #((1 . 328138) (2 . 5832)) #((1 . 300912) (2 . 5832)) #((1 . 331730) (2 . 12)) #((1 . 304504) (2 . 12)) #((1 . 336742) (2 . 12)) #((1 . 309516) (2 . 12)) #((1 . 331730) (2 . 12)) #((1 . 304504) (2 . 12)) #((1 . 336742) (2 . 12)) #((1 . 309516) (2 . 12)) #((1 . 323140) (2 . 5832)) #((1 . 295914) (2 . 5832)) #((1 . 328152) (2 . 5832)) #((1 . 300926) (2 . 5832)) #((1 . 323140) (2 . 5832)) #((1 . 295914) (2 . 5832)) #((1 . 328152) (2 . 5832)) #((1 . 300926) (2 . 5832)) #((1 . 316978) (2 . 164)) #((1 . 289752) (2 . 164)) #((1 . 298932) (2 . 164)) #((1 . 271706) (2 . 164)) #((1 . 316978) (2 . 164)) #((1 . 289752) (2 . 164)) #((1 . 298932) (2 . 164)) #((1 . 271706) (2 . 164)) #((1 . 360486) (2 . 5984)) #((1 . 333260) (2 . 5984)) #((1 . 342440) (2 . 5984)) #((1 . 315214) (2 . 5984)) #((1 . 360486) (2 . 5984)) #((1 . 333260) (2 . 5984)) #((1 . 342440) (2 . 5984)) #((1 . 315214) (2 . 5984)) #((1 . 340198) (2 . 164)) #((1 . 312972) (2 . 164)) #((1 . 322152) (2 . 164)) #((1 . 294926) (2 . 164)) #((1 . 340198) (2 . 164)) #((1 . 312972) (2 . 164)) #((1 . 322152) (2 . 164)) #((1 . 294926) (2 . 164)) #((1 . 360504) (2 . 5984)) #((1 . 333278) (2 . 5984)) #((1 . 342458) (2 . 5984)) #((1 . 315232) (2 . 5984)) #((1 . 360504) (2 . 5984)) #((1 . 333278) (2 . 5984)) #((1 . 342458) (2 . 5984)) #((1 . 315232) (2 . 5984)) #((1 . 285066) (2 . 12)) #((1 . 257840) (2 . 12)) #((1 . 266758) (2 . 12)) #((1 . 239532) (2 . 12)) #((1 . 285066) (2 . 12)) #((1 . 257840) (2 . 12)) #((1 . 266758) (2 . 12)) #((1 . 239532) (2 . 12)) #((1 . 299678) (2 . 5832)) #((1 . 272452) (2 . 5832)) #((1 . 281370) (2 . 5832)) #((1 . 254144) (2 . 5832)) #((1 . 299678) (2 . 5832)) #((1 . 272452) (2 . 5832)) #((1 . 281370) (2 . 5832)) #((1 . 254144) (2 . 5832)) #((1 . 308282) (2 . 12)) #((1 . 281056) (2 . 12)) #((1 . 289974) (2 . 12)) #((1 . 262748) (2 . 12)) #((1 . 308282) (2 . 12)) #((1 . 281056) (2 . 12)) #((1 . 289974) (2 . 12)) #((1 . 262748) (2 . 12)) #((1 . 299692) (2 . 5832)) #((1 . 272466) (2 . 5832)) #((1 . 281384) (2 . 5832)) #((1 . 254158) (2 . 5832)) #((1 . 299692) (2 . 5832)) #((1 . 272466) (2 . 5832)) #((1 . 281384) (2 . 5832)) #((1 . 254158) (2 . 5832)) #((1 . 291284) (2 . 5776)) #((1 . 264058) (2 . 5776)) #((1 . 229176) (2 . 5776)) #((1 . 201950) (2 . 5776)) #((1 . 291284) (2 . 5776)) #((1 . 264058) (2 . 5776)) #((1 . 229176) (2 . 5776)) #((1 . 201950) (2 . 5776)) #((1 . 294260) (2 . 11578)) #((1 . 267034) (2 . 11578)) #((1 . 232152) (2 . 11578)) #((1 . 204926) (2 . 11578)) #((1 . 294260) (2 . 11578)) #((1 . 267034) (2 . 11578)) #((1 . 232152) (2 . 11578)) #((1 . 204926) (2 . 11578)) #((1 . 291268) (2 . 5776)) #((1 . 264042) (2 . 5776)) #((1 . 229160) (2 . 5776)) #((1 . 201934) (2 . 5776)) #((1 . 291268) (2 . 5776)) #((1 . 264042) (2 . 5776)) #((1 . 229160) (2 . 5776)) #((1 . 201934) (2 . 5776)) #((1 . 282642) (2 . 11578)) #((1 . 255416) (2 . 11578)) #((1 . 220534) (2 . 11578)) #((1 . 193308) (2 . 11578)) #((1 . 282642) (2 . 11578)) #((1 . 255416) (2 . 11578)) #((1 . 220534) (2 . 11578)) #((1 . 193308) (2 . 11578)) #((1 . 282530) (2 . 5776)) #((1 . 255304) (2 . 5776)) #((1 . 220250) (2 . 5776)) #((1 . 193024) (2 . 5776)) #((1 . 282530) (2 . 5776)) #((1 . 255304) (2 . 5776)) #((1 . 220250) (2 . 5776)) #((1 . 193024) (2 . 5776)) #((1 . 268168) (2 . 11578)) #((1 . 240942) (2 . 11578)) #((1 . 205888) (2 . 11578)) #((1 . 178662) (2 . 11578)) #((1 . 268168) (2 . 11578)) #((1 . 240942) (2 . 11578)) #((1 . 205888) (2 . 11578)) #((1 . 178662) (2 . 11578)) #((1 . 282512) (2 . 5776)) #((1 . 255286) (2 . 5776)) #((1 . 220232) (2 . 5776)) #((1 . 193006) (2 . 5776)) #((1 . 282512) (2 . 5776)) #((1 . 255286) (2 . 5776)) #((1 . 220232) (2 . 5776)) #((1 . 193006) (2 . 5776)) #((1 . 256548) (2 . 11578)) #((1 . 229322) (2 . 11578)) #((1 . 194268) (2 . 11578)) #((1 . 167042) (2 . 11578)) #((1 . 256548) (2 . 11578)) #((1 . 229322) (2 . 11578)) #((1 . 194268) (2 . 11578)) #((1 . 167042) (2 . 11578)) #((1 . 267836) (2 . 5776)) #((1 . 240610) (2 . 5776)) #((1 . 182408) (2 . 5776)) #((1 . 155182) (2 . 5776)) #((1 . 267836) (2 . 5776)) #((1 . 240610) (2 . 5776)) #((1 . 182408) (2 . 5776)) #((1 . 155182) (2 . 5776)) #((1 . 270812) (2 . 11578)) #((1 . 243586) (2 . 11578)) #((1 . 185384) (2 . 11578)) #((1 . 158158) (2 . 11578)) #((1 . 270812) (2 . 11578)) #((1 . 243586) (2 . 11578)) #((1 . 185384) (2 . 11578)) #((1 . 158158) (2 . 11578)) #((1 . 267820) (2 . 5776)) #((1 . 240594) (2 . 5776)) #((1 . 182392) (2 . 5776)) #((1 . 155166) (2 . 5776)) #((1 . 267820) (2 . 5776)) #((1 . 240594) (2 . 5776)) #((1 . 182392) (2 . 5776)) #((1 . 155166) (2 . 5776)) #((1 . 259194) (2 . 11578)) #((1 . 231968) (2 . 11578)) #((1 . 173766) (2 . 11578)) #((1 . 146540) (2 . 11578)) #((1 . 259194) (2 . 11578)) #((1 . 231968) (2 . 11578)) #((1 . 173766) (2 . 11578)) #((1 . 146540) (2 . 11578)) #((1 . 259082) (2 . 5776)) #((1 . 231856) (2 . 5776)) #((1 . 173482) (2 . 5776)) #((1 . 146256) (2 . 5776)) #((1 . 259082) (2 . 5776)) #((1 . 231856) (2 . 5776)) #((1 . 173482) (2 . 5776)) #((1 . 146256) (2 . 5776)) #((1 . 244720) (2 . 11578)) #((1 . 217494) (2 . 11578)) #((1 . 159120) (2 . 11578)) #((1 . 131894) (2 . 11578)) #((1 . 244720) (2 . 11578)) #((1 . 217494) (2 . 11578)) #((1 . 159120) (2 . 11578)) #((1 . 131894) (2 . 11578)) #((1 . 259064) (2 . 5776)) #((1 . 231838) (2 . 5776)) #((1 . 173464) (2 . 5776)) #((1 . 146238) (2 . 5776)) #((1 . 259064) (2 . 5776)) #((1 . 231838) (2 . 5776)) #((1 . 173464) (2 . 5776)) #((1 . 146238) (2 . 5776)) #((1 . 233100) (2 . 11578)) #((1 . 205874) (2 . 11578)) #((1 . 147500) (2 . 11578)) #((1 . 120274) (2 . 11578)) #((1 . 233100) (2 . 11578)) #((1 . 205874) (2 . 11578)) #((1 . 147500) (2 . 11578)) #((1 . 120274) (2 . 11578)) #((1 . 219532) (2 . 5776)) #((1 . 165162) (2 . 5776)) #((1 . 303646) (2 . 5776)) #((1 . 249276) (2 . 5776)) #((1 . 219532) (2 . 5776)) #((1 . 165162) (2 . 5776)) #((1 . 303646) (2 . 5776)) #((1 . 249276) (2 . 5776)) #((1 . 297786) (2 . 11596)) #((1 . 243416) (2 . 11596)) #((1 . 381900) (2 . 11596)) #((1 . 327530) (2 . 11596)) #((1 . 297786) (2 . 11596)) #((1 . 243416) (2 . 11596)) #((1 . 381900) (2 . 11596)) #((1 . 327530) (2 . 11596)) #((1 . 242758) (2 . 5776)) #((1 . 188388) (2 . 5776)) #((1 . 326872) (2 . 5776)) #((1 . 272502) (2 . 5776)) #((1 . 242758) (2 . 5776)) #((1 . 188388) (2 . 5776)) #((1 . 326872) (2 . 5776)) #((1 . 272502) (2 . 5776)) #((1 . 297810) (2 . 11596)) #((1 . 243440) (2 . 11596)) #((1 . 381924) (2 . 11596)) #((1 . 327554) (2 . 11596)) #((1 . 297810) (2 . 11596)) #((1 . 243440) (2 . 11596)) #((1 . 381924) (2 . 11596)) #((1 . 327554) (2 . 11596)) #((1 . 251840) (2 . 5776)) #((1 . 197470) (2 . 5776)) #((1 . 335692) (2 . 5776)) #((1 . 281322) (2 . 5776)) #((1 . 251840) (2 . 5776)) #((1 . 197470) (2 . 5776)) #((1 . 335692) (2 . 5776)) #((1 . 281322) (2 . 5776)) #((1 . 301198) (2 . 11596)) #((1 . 246828) (2 . 11596)) #((1 . 385050) (2 . 11596)) #((1 . 330680) (2 . 11596)) #((1 . 301198) (2 . 11596)) #((1 . 246828) (2 . 11596)) #((1 . 385050) (2 . 11596)) #((1 . 330680) (2 . 11596)) #((1 . 275062) (2 . 5776)) #((1 . 220692) (2 . 5776)) #((1 . 358914) (2 . 5776)) #((1 . 304544) (2 . 5776)) #((1 . 275062) (2 . 5776)) #((1 . 220692) (2 . 5776)) #((1 . 358914) (2 . 5776)) #((1 . 304544) (2 . 5776)) #((1 . 301218) (2 . 11596)) #((1 . 246848) (2 . 11596)) #((1 . 385070) (2 . 11596)) #((1 . 330700) (2 . 11596)) #((1 . 301218) (2 . 11596)) #((1 . 246848) (2 . 11596)) #((1 . 385070) (2 . 11596)) #((1 . 330700) (2 . 11596)) #((1 . 196084) (2 . 5776)) #((1 . 141714) (2 . 5776)) #((1 . 256878) (2 . 5776)) #((1 . 202508) (2 . 5776)) #((1 . 196084) (2 . 5776)) #((1 . 141714) (2 . 5776)) #((1 . 256878) (2 . 5776)) #((1 . 202508) (2 . 5776)) #((1 . 274338) (2 . 11596)) #((1 . 219968) (2 . 11596)) #((1 . 335132) (2 . 11596)) #((1 . 280762) (2 . 11596)) #((1 . 274338) (2 . 11596)) #((1 . 219968) (2 . 11596)) #((1 . 335132) (2 . 11596)) #((1 . 280762) (2 . 11596)) #((1 . 219310) (2 . 5776)) #((1 . 164940) (2 . 5776)) #((1 . 280104) (2 . 5776)) #((1 . 225734) (2 . 5776)) #((1 . 219310) (2 . 5776)) #((1 . 164940) (2 . 5776)) #((1 . 280104) (2 . 5776)) #((1 . 225734) (2 . 5776)) #((1 . 274362) (2 . 11596)) #((1 . 219992) (2 . 11596)) #((1 . 335156) (2 . 11596)) #((1 . 280786) (2 . 11596)) #((1 . 274362) (2 . 11596)) #((1 . 219992) (2 . 11596)) #((1 . 335156) (2 . 11596)) #((1 . 280786) (2 . 11596)) #((1 . 228392) (2 . 5776)) #((1 . 174022) (2 . 5776)) #((1 . 288924) (2 . 5776)) #((1 . 234554) (2 . 5776)) #((1 . 228392) (2 . 5776)) #((1 . 174022) (2 . 5776)) #((1 . 288924) (2 . 5776)) #((1 . 234554) (2 . 5776)) #((1 . 277750) (2 . 11596)) #((1 . 223380) (2 . 11596)) #((1 . 338282) (2 . 11596)) #((1 . 283912) (2 . 11596)) #((1 . 277750) (2 . 11596)) #((1 . 223380) (2 . 11596)) #((1 . 338282) (2 . 11596)) #((1 . 283912) (2 . 11596)) #((1 . 251614) (2 . 5776)) #((1 . 197244) (2 . 5776)) #((1 . 312146) (2 . 5776)) #((1 . 257776) (2 . 5776)) #((1 . 251614) (2 . 5776)) #((1 . 197244) (2 . 5776)) #((1 . 312146) (2 . 5776)) #((1 . 257776) (2 . 5776)) #((1 . 277770) (2 . 11596)) #((1 . 223400) (2 . 11596)) #((1 . 338302) (2 . 11596)) #((1 . 283932) (2 . 11596)) #((1 . 277770) (2 . 11596)) #((1 . 223400) (2 . 11596)) #((1 . 338302) (2 . 11596)) #((1 . 283932) (2 . 11596)) #((1 . 681872)) #((1 . 573132)) #((1 . 662776)) #((1 . 554036)) #((1 . 681872)) #((1 . 573132)) #((1 . 662776)) #((1 . 554036)) #((1 . 367076) (2 . 5802)) #((1 . 312706) (2 . 5802)) #((1 . 357528) (2 . 5802)) #((1 . 303158) (2 . 5802)) #((1 . 367076) (2 . 5802)) #((1 . 312706) (2 . 5802)) #((1 . 357528) (2 . 5802)) #((1 . 303158) (2 . 5802)) #((1 . 681848)) #((1 . 573108)) #((1 . 662752)) #((1 . 554012)) #((1 . 681848)) #((1 . 573108)) #((1 . 662752)) #((1 . 554012)) #((1 . 355462) (2 . 5802)) #((1 . 301092) (2 . 5802)) #((1 . 345914) (2 . 5802)) #((1 . 291544) (2 . 5802)) #((1 . 355462) (2 . 5802)) #((1 . 301092) (2 . 5802)) #((1 . 345914) (2 . 5802)) #((1 . 291544) (2 . 5802)) #((1 . 367142) (2 . 152)) #((1 . 312772) (2 . 152)) #((1 . 357422) (2 . 152)) #((1 . 303052) (2 . 152)) #((1 . 367142) (2 . 152)) #((1 . 312772) (2 . 152)) #((1 . 357422) (2 . 152)) #((1 . 303052) (2 . 152)) #((1 . 375944) (2 . 5954)) #((1 . 321574) (2 . 5954)) #((1 . 366224) (2 . 5954)) #((1 . 311854) (2 . 5954)) #((1 . 375944) (2 . 5954)) #((1 . 321574) (2 . 5954)) #((1 . 366224) (2 . 5954)) #((1 . 311854) (2 . 5954)) #((1 . 367128) (2 . 152)) #((1 . 312758) (2 . 152)) #((1 . 357408) (2 . 152)) #((1 . 303038) (2 . 152)) #((1 . 367128) (2 . 152)) #((1 . 312758) (2 . 152)) #((1 . 357408) (2 . 152)) #((1 . 303038) (2 . 152)) #((1 . 364328) (2 . 5954)) #((1 . 309958) (2 . 5954)) #((1 . 354608) (2 . 5954)) #((1 . 300238) (2 . 5954)) #((1 . 364328) (2 . 5954)) #((1 . 309958) (2 . 5954)) #((1 . 354608) (2 . 5954)) #((1 . 300238) (2 . 5954)) #((1 . 634976)) #((1 . 526236)) #((1 . 569240)) #((1 . 460500)) #((1 . 634976)) #((1 . 526236)) #((1 . 569240)) #((1 . 460500)) #((1 . 343628) (2 . 5802)) #((1 . 289258) (2 . 5802)) #((1 . 310760) (2 . 5802)) #((1 . 256390) (2 . 5802)) #((1 . 343628) (2 . 5802)) #((1 . 289258) (2 . 5802)) #((1 . 310760) (2 . 5802)) #((1 . 256390) (2 . 5802)) #((1 . 634952)) #((1 . 526212)) #((1 . 569216)) #((1 . 460476)) #((1 . 634952)) #((1 . 526212)) #((1 . 569216)) #((1 . 460476)) #((1 . 332014) (2 . 5802)) #((1 . 277644) (2 . 5802)) #((1 . 299146) (2 . 5802)) #((1 . 244776) (2 . 5802)) #((1 . 332014) (2 . 5802)) #((1 . 277644) (2 . 5802)) #((1 . 299146) (2 . 5802)) #((1 . 244776) (2 . 5802)) #((1 . 343694) (2 . 152)) #((1 . 289324) (2 . 152)) #((1 . 310654) (2 . 152)) #((1 . 256284) (2 . 152)) #((1 . 343694) (2 . 152)) #((1 . 289324) (2 . 152)) #((1 . 310654) (2 . 152)) #((1 . 256284) (2 . 152)) #((1 . 352496) (2 . 5954)) #((1 . 298126) (2 . 5954)) #((1 . 319456) (2 . 5954)) #((1 . 265086) (2 . 5954)) #((1 . 352496) (2 . 5954)) #((1 . 298126) (2 . 5954)) #((1 . 319456) (2 . 5954)) #((1 . 265086) (2 . 5954)) #((1 . 343680) (2 . 152)) #((1 . 289310) (2 . 152)) #((1 . 310640) (2 . 152)) #((1 . 256270) (2 . 152)) #((1 . 343680) (2 . 152)) #((1 . 289310) (2 . 152)) #((1 . 310640) (2 . 152)) #((1 . 256270) (2 . 152)) #((1 . 340880) (2 . 5954)) #((1 . 286510) (2 . 5954)) #((1 . 307840) (2 . 5954)) #((1 . 253470) (2 . 5954)) #((1 . 340880) (2 . 5954)) #((1 . 286510) (2 . 5954)) #((1 . 307840) (2 . 5954)) #((1 . 253470) (2 . 5954)) #((1 . 553572)) #((1 . 440928)) #((1 . 721800)) #((1 . 609156)) #((1 . 553572)) #((1 . 440928)) #((1 . 721800)) #((1 . 609156)) #((1 . 355040) (2 . 5820)) #((1 . 298718) (2 . 5820)) #((1 . 439154) (2 . 5820)) #((1 . 382832) (2 . 5820)) #((1 . 355040) (2 . 5820)) #((1 . 298718) (2 . 5820)) #((1 . 439154) (2 . 5820)) #((1 . 382832) (2 . 5820)) #((1 . 600024)) #((1 . 487380)) #((1 . 768252)) #((1 . 655608)) #((1 . 600024)) #((1 . 487380)) #((1 . 768252)) #((1 . 655608)) #((1 . 355064) (2 . 5820)) #((1 . 298742) (2 . 5820)) #((1 . 439178) (2 . 5820)) #((1 . 382856) (2 . 5820)) #((1 . 355064) (2 . 5820)) #((1 . 298742) (2 . 5820)) #((1 . 439178) (2 . 5820)) #((1 . 382856) (2 . 5820)) #((1 . 548876)) #((1 . 436232)) #((1 . 716580)) #((1 . 603936)) #((1 . 548876)) #((1 . 436232)) #((1 . 716580)) #((1 . 603936)) #((1 . 323796) (2 . 5820)) #((1 . 267474) (2 . 5820)) #((1 . 407648) (2 . 5820)) #((1 . 351326) (2 . 5820)) #((1 . 323796) (2 . 5820)) #((1 . 267474) (2 . 5820)) #((1 . 407648) (2 . 5820)) #((1 . 351326) (2 . 5820)) #((1 . 595320)) #((1 . 482676)) #((1 . 763024)) #((1 . 650380)) #((1 . 595320)) #((1 . 482676)) #((1 . 763024)) #((1 . 650380)) #((1 . 323816) (2 . 5820)) #((1 . 267494) (2 . 5820)) #((1 . 407668) (2 . 5820)) #((1 . 351346) (2 . 5820)) #((1 . 323816) (2 . 5820)) #((1 . 267494) (2 . 5820)) #((1 . 407668) (2 . 5820)) #((1 . 351346) (2 . 5820)) #((1 . 506676)) #((1 . 394032)) #((1 . 628264)) #((1 . 515620)) #((1 . 506676)) #((1 . 394032)) #((1 . 628264)) #((1 . 515620)) #((1 . 331592) (2 . 5820)) #((1 . 275270) (2 . 5820)) #((1 . 392386) (2 . 5820)) #((1 . 336064) (2 . 5820)) #((1 . 331592) (2 . 5820)) #((1 . 275270) (2 . 5820)) #((1 . 392386) (2 . 5820)) #((1 . 336064) (2 . 5820)) #((1 . 553128)) #((1 . 440484)) #((1 . 674716)) #((1 . 562072)) #((1 . 553128)) #((1 . 440484)) #((1 . 674716)) #((1 . 562072)) #((1 . 331616) (2 . 5820)) #((1 . 275294) (2 . 5820)) #((1 . 392410) (2 . 5820)) #((1 . 336088) (2 . 5820)) #((1 . 331616) (2 . 5820)) #((1 . 275294) (2 . 5820)) #((1 . 392410) (2 . 5820)) #((1 . 336088) (2 . 5820)) #((1 . 501980)) #((1 . 389336)) #((1 . 623044)) #((1 . 510400)) #((1 . 501980)) #((1 . 389336)) #((1 . 623044)) #((1 . 510400)) #((1 . 300348) (2 . 5820)) #((1 . 244026) (2 . 5820)) #((1 . 360880) (2 . 5820)) #((1 . 304558) (2 . 5820)) #((1 . 300348) (2 . 5820)) #((1 . 244026) (2 . 5820)) #((1 . 360880) (2 . 5820)) #((1 . 304558) (2 . 5820)) #((1 . 548424)) #((1 . 435780)) #((1 . 669488)) #((1 . 556844)) #((1 . 548424)) #((1 . 435780)) #((1 . 669488)) #((1 . 556844)) #((1 . 300368) (2 . 5820)) #((1 . 244046) (2 . 5820)) #((1 . 360900) (2 . 5820)) #((1 . 304578) (2 . 5820)) #((1 . 300368) (2 . 5820)) #((1 . 244046) (2 . 5820)) #((1 . 360900) (2 . 5820)) #((1 . 304578) (2 . 5820)) #((1 . 354870) (2 . 8664)) #((1 . 298548) (2 . 8664)) #((1 . 345322) (2 . 8664)) #((1 . 289000) (2 . 8664)) #((1 . 354870) (2 . 8664)) #((1 . 298548) (2 . 8664)) #((1 . 345322) (2 . 8664)) #((1 . 289000) (2 . 8664)) #((1 . 381010) (2 . 14466)) #((1 . 324688) (2 . 14466)) #((1 . 371462) (2 . 14466)) #((1 . 315140) (2 . 14466)) #((1 . 381010) (2 . 14466)) #((1 . 324688) (2 . 14466)) #((1 . 371462) (2 . 14466)) #((1 . 315140) (2 . 14466)) #((1 . 354858) (2 . 8664)) #((1 . 298536) (2 . 8664)) #((1 . 345310) (2 . 8664)) #((1 . 288988) (2 . 8664)) #((1 . 354858) (2 . 8664)) #((1 . 298536) (2 . 8664)) #((1 . 345310) (2 . 8664)) #((1 . 288988) (2 . 8664)) #((1 . 369396) (2 . 14466)) #((1 . 313074) (2 . 14466)) #((1 . 359848) (2 . 14466)) #((1 . 303526) (2 . 14466)) #((1 . 369396) (2 . 14466)) #((1 . 313074) (2 . 14466)) #((1 . 359848) (2 . 14466)) #((1 . 303526) (2 . 14466)) #((1 . 363748) (2 . 8816)) #((1 . 307426) (2 . 8816)) #((1 . 354028) (2 . 8816)) #((1 . 297706) (2 . 8816)) #((1 . 363748) (2 . 8816)) #((1 . 307426) (2 . 8816)) #((1 . 354028) (2 . 8816)) #((1 . 297706) (2 . 8816)) #((1 . 372550) (2 . 14618)) #((1 . 316228) (2 . 14618)) #((1 . 362830) (2 . 14618)) #((1 . 306508) (2 . 14618)) #((1 . 372550) (2 . 14618)) #((1 . 316228) (2 . 14618)) #((1 . 362830) (2 . 14618)) #((1 . 306508) (2 . 14618)) #((1 . 363734) (2 . 8816)) #((1 . 307412) (2 . 8816)) #((1 . 354014) (2 . 8816)) #((1 . 297692) (2 . 8816)) #((1 . 363734) (2 . 8816)) #((1 . 307412) (2 . 8816)) #((1 . 354014) (2 . 8816)) #((1 . 297692) (2 . 8816)) #((1 . 360934) (2 . 14618)) #((1 . 304612) (2 . 14618)) #((1 . 351214) (2 . 14618)) #((1 . 294892) (2 . 14618)) #((1 . 360934) (2 . 14618)) #((1 . 304612) (2 . 14618)) #((1 . 351214) (2 . 14618)) #((1 . 294892) (2 . 14618)) #((1 . 331422) (2 . 8664)) #((1 . 275100) (2 . 8664)) #((1 . 298554) (2 . 8664)) #((1 . 242232) (2 . 8664)) #((1 . 331422) (2 . 8664)) #((1 . 275100) (2 . 8664)) #((1 . 298554) (2 . 8664)) #((1 . 242232) (2 . 8664)) #((1 . 357562) (2 . 14466)) #((1 . 301240) (2 . 14466)) #((1 . 324694) (2 . 14466)) #((1 . 268372) (2 . 14466)) #((1 . 357562) (2 . 14466)) #((1 . 301240) (2 . 14466)) #((1 . 324694) (2 . 14466)) #((1 . 268372) (2 . 14466)) #((1 . 331410) (2 . 8664)) #((1 . 275088) (2 . 8664)) #((1 . 298542) (2 . 8664)) #((1 . 242220) (2 . 8664)) #((1 . 331410) (2 . 8664)) #((1 . 275088) (2 . 8664)) #((1 . 298542) (2 . 8664)) #((1 . 242220) (2 . 8664)) #((1 . 345948) (2 . 14466)) #((1 . 289626) (2 . 14466)) #((1 . 313080) (2 . 14466)) #((1 . 256758) (2 . 14466)) #((1 . 345948) (2 . 14466)) #((1 . 289626) (2 . 14466)) #((1 . 313080) (2 . 14466)) #((1 . 256758) (2 . 14466)) #((1 . 340300) (2 . 8816)) #((1 . 283978) (2 . 8816)) #((1 . 307260) (2 . 8816)) #((1 . 250938) (2 . 8816)) #((1 . 340300) (2 . 8816)) #((1 . 283978) (2 . 8816)) #((1 . 307260) (2 . 8816)) #((1 . 250938) (2 . 8816)) #((1 . 349102) (2 . 14618)) #((1 . 292780) (2 . 14618)) #((1 . 316062) (2 . 14618)) #((1 . 259740) (2 . 14618)) #((1 . 349102) (2 . 14618)) #((1 . 292780) (2 . 14618)) #((1 . 316062) (2 . 14618)) #((1 . 259740) (2 . 14618)) #((1 . 340286) (2 . 8816)) #((1 . 283964) (2 . 8816)) #((1 . 307246) (2 . 8816)) #((1 . 250924) (2 . 8816)) #((1 . 340286) (2 . 8816)) #((1 . 283964) (2 . 8816)) #((1 . 307246) (2 . 8816)) #((1 . 250924) (2 . 8816)) #((1 . 337486) (2 . 14618)) #((1 . 281164) (2 . 14618)) #((1 . 304446) (2 . 14618)) #((1 . 248124) (2 . 14618)) #((1 . 337486) (2 . 14618)) #((1 . 281164) (2 . 14618)) #((1 . 304446) (2 . 14618)) #((1 . 248124) (2 . 14618)) #((1 . 432852) (2 . 14604)) #((1 . 378482) (2 . 14604)) #((1 . 438126) (2 . 14604)) #((1 . 383756) (2 . 14604)) #((1 . 432852) (2 . 14604)) #((1 . 378482) (2 . 14604)) #((1 . 438126) (2 . 14604)) #((1 . 383756) (2 . 14604)) #((1 . 476360) (2 . 20424)) #((1 . 421990) (2 . 20424)) #((1 . 481634) (2 . 20424)) #((1 . 427264) (2 . 20424)) #((1 . 476360) (2 . 20424)) #((1 . 421990) (2 . 20424)) #((1 . 481634) (2 . 20424)) #((1 . 427264) (2 . 20424)) #((1 . 456072) (2 . 14604)) #((1 . 401702) (2 . 14604)) #((1 . 461346) (2 . 14604)) #((1 . 406976) (2 . 14604)) #((1 . 456072) (2 . 14604)) #((1 . 401702) (2 . 14604)) #((1 . 461346) (2 . 14604)) #((1 . 406976) (2 . 14604)) #((1 . 476378) (2 . 20424)) #((1 . 422008) (2 . 20424)) #((1 . 481652) (2 . 20424)) #((1 . 427282) (2 . 20424)) #((1 . 476378) (2 . 20424)) #((1 . 422008) (2 . 20424)) #((1 . 481652) (2 . 20424)) #((1 . 427282) (2 . 20424)) #((1 . 435334) (2 . 14452)) #((1 . 380964) (2 . 14452)) #((1 . 440346) (2 . 14452)) #((1 . 385976) (2 . 14452)) #((1 . 435334) (2 . 14452)) #((1 . 380964) (2 . 14452)) #((1 . 440346) (2 . 14452)) #((1 . 385976) (2 . 14452)) #((1 . 449946) (2 . 20272)) #((1 . 395576) (2 . 20272)) #((1 . 454958) (2 . 20272)) #((1 . 400588) (2 . 20272)) #((1 . 449946) (2 . 20272)) #((1 . 395576) (2 . 20272)) #((1 . 454958) (2 . 20272)) #((1 . 400588) (2 . 20272)) #((1 . 458550) (2 . 14452)) #((1 . 404180) (2 . 14452)) #((1 . 463562) (2 . 14452)) #((1 . 409192) (2 . 14452)) #((1 . 458550) (2 . 14452)) #((1 . 404180) (2 . 14452)) #((1 . 463562) (2 . 14452)) #((1 . 409192) (2 . 14452)) #((1 . 449960) (2 . 20272)) #((1 . 395590) (2 . 20272)) #((1 . 454972) (2 . 20272)) #((1 . 400602) (2 . 20272)) #((1 . 449960) (2 . 20272)) #((1 . 395590) (2 . 20272)) #((1 . 454972) (2 . 20272)) #((1 . 400602) (2 . 20272)) #((1 . 409404) (2 . 14604)) #((1 . 355034) (2 . 14604)) #((1 . 391358) (2 . 14604)) #((1 . 336988) (2 . 14604)) #((1 . 409404) (2 . 14604)) #((1 . 355034) (2 . 14604)) #((1 . 391358) (2 . 14604)) #((1 . 336988) (2 . 14604)) #((1 . 452912) (2 . 20424)) #((1 . 398542) (2 . 20424)) #((1 . 434866) (2 . 20424)) #((1 . 380496) (2 . 20424)) #((1 . 452912) (2 . 20424)) #((1 . 398542) (2 . 20424)) #((1 . 434866) (2 . 20424)) #((1 . 380496) (2 . 20424)) #((1 . 432624) (2 . 14604)) #((1 . 378254) (2 . 14604)) #((1 . 414578) (2 . 14604)) #((1 . 360208) (2 . 14604)) #((1 . 432624) (2 . 14604)) #((1 . 378254) (2 . 14604)) #((1 . 414578) (2 . 14604)) #((1 . 360208) (2 . 14604)) #((1 . 452930) (2 . 20424)) #((1 . 398560) (2 . 20424)) #((1 . 434884) (2 . 20424)) #((1 . 380514) (2 . 20424)) #((1 . 452930) (2 . 20424)) #((1 . 398560) (2 . 20424)) #((1 . 434884) (2 . 20424)) #((1 . 380514) (2 . 20424)) #((1 . 411886) (2 . 14452)) #((1 . 357516) (2 . 14452)) #((1 . 393578) (2 . 14452)) #((1 . 339208) (2 . 14452)) #((1 . 411886) (2 . 14452)) #((1 . 357516) (2 . 14452)) #((1 . 393578) (2 . 14452)) #((1 . 339208) (2 . 14452)) #((1 . 426498) (2 . 20272)) #((1 . 372128) (2 . 20272)) #((1 . 408190) (2 . 20272)) #((1 . 353820) (2 . 20272)) #((1 . 426498) (2 . 20272)) #((1 . 372128) (2 . 20272)) #((1 . 408190) (2 . 20272)) #((1 . 353820) (2 . 20272)) #((1 . 435102) (2 . 14452)) #((1 . 380732) (2 . 14452)) #((1 . 416794) (2 . 14452)) #((1 . 362424) (2 . 14452)) #((1 . 435102) (2 . 14452)) #((1 . 380732) (2 . 14452)) #((1 . 416794) (2 . 14452)) #((1 . 362424) (2 . 14452)) #((1 . 426512) (2 . 20272)) #((1 . 372142) (2 . 20272)) #((1 . 408204) (2 . 20272)) #((1 . 353834) (2 . 20272)) #((1 . 426512) (2 . 20272)) #((1 . 372142) (2 . 20272)) #((1 . 408204) (2 . 20272)) #((1 . 353834) (2 . 20272)) #((1 . 569272)) #((1 . 460532)) #((1 . 445056)) #((1 . 336316)) #((1 . 569272)) #((1 . 460532)) #((1 . 445056)) #((1 . 336316)) #((1 . 287612) (2 . 5802)) #((1 . 233242) (2 . 5802)) #((1 . 225504) (2 . 5802)) #((1 . 171134) (2 . 5802)) #((1 . 287612) (2 . 5802)) #((1 . 233242) (2 . 5802)) #((1 . 225504) (2 . 5802)) #((1 . 171134) (2 . 5802)) #((1 . 569240)) #((1 . 460500)) #((1 . 445024)) #((1 . 336284)) #((1 . 569240)) #((1 . 460500)) #((1 . 445024)) #((1 . 336284)) #((1 . 275994) (2 . 5802)) #((1 . 221624) (2 . 5802)) #((1 . 213886) (2 . 5802)) #((1 . 159516) (2 . 5802)) #((1 . 275994) (2 . 5802)) #((1 . 221624) (2 . 5802)) #((1 . 213886) (2 . 5802)) #((1 . 159516) (2 . 5802)) #((1 . 586076)) #((1 . 477336)) #((1 . 461516)) #((1 . 352776)) #((1 . 586076)) #((1 . 477336)) #((1 . 461516)) #((1 . 352776)) #((1 . 278676) (2 . 5802)) #((1 . 224306) (2 . 5802)) #((1 . 216396) (2 . 5802)) #((1 . 162026) (2 . 5802)) #((1 . 278676) (2 . 5802)) #((1 . 224306) (2 . 5802)) #((1 . 216396) (2 . 5802)) #((1 . 162026) (2 . 5802)) #((1 . 586040)) #((1 . 477300)) #((1 . 461480)) #((1 . 352740)) #((1 . 586040)) #((1 . 477300)) #((1 . 461480)) #((1 . 352740)) #((1 . 267056) (2 . 5802)) #((1 . 212686) (2 . 5802)) #((1 . 204776) (2 . 5802)) #((1 . 150406) (2 . 5802)) #((1 . 267056) (2 . 5802)) #((1 . 212686) (2 . 5802)) #((1 . 204776) (2 . 5802)) #((1 . 150406) (2 . 5802)) #((1 . 522376)) #((1 . 413636)) #((1 . 351520)) #((1 . 242780)) #((1 . 522376)) #((1 . 413636)) #((1 . 351520)) #((1 . 242780)) #((1 . 264164) (2 . 5802)) #((1 . 209794) (2 . 5802)) #((1 . 178736) (2 . 5802)) #((1 . 124366) (2 . 5802)) #((1 . 264164) (2 . 5802)) #((1 . 209794) (2 . 5802)) #((1 . 178736) (2 . 5802)) #((1 . 124366) (2 . 5802)) #((1 . 522344)) #((1 . 413604)) #((1 . 351488)) #((1 . 242748)) #((1 . 522344)) #((1 . 413604)) #((1 . 351488)) #((1 . 242748)) #((1 . 252546) (2 . 5802)) #((1 . 198176) (2 . 5802)) #((1 . 167118) (2 . 5802)) #((1 . 112748) (2 . 5802)) #((1 . 252546) (2 . 5802)) #((1 . 198176) (2 . 5802)) #((1 . 167118) (2 . 5802)) #((1 . 112748) (2 . 5802)) #((1 . 539180)) #((1 . 430440)) #((1 . 367980)) #((1 . 259240)) #((1 . 539180)) #((1 . 430440)) #((1 . 367980)) #((1 . 259240)) #((1 . 255228) (2 . 5802)) #((1 . 200858) (2 . 5802)) #((1 . 169628) (2 . 5802)) #((1 . 115258) (2 . 5802)) #((1 . 255228) (2 . 5802)) #((1 . 200858) (2 . 5802)) #((1 . 169628) (2 . 5802)) #((1 . 115258) (2 . 5802)) #((1 . 539144)) #((1 . 430404)) #((1 . 367944)) #((1 . 259204)) #((1 . 539144)) #((1 . 430404)) #((1 . 367944)) #((1 . 259204)) #((1 . 243608) (2 . 5802)) #((1 . 189238) (2 . 5802)) #((1 . 158008) (2 . 5802)) #((1 . 103638) (2 . 5802)) #((1 . 243608) (2 . 5802)) #((1 . 189238) (2 . 5802)) #((1 . 158008) (2 . 5802)) #((1 . 103638) (2 . 5802)) #((1 . 345858) (2 . 164)) #((1 . 289536) (2 . 164)) #((1 . 351132) (2 . 164)) #((1 . 294810) (2 . 164)) #((1 . 345858) (2 . 164)) #((1 . 289536) (2 . 164)) #((1 . 351132) (2 . 164)) #((1 . 294810) (2 . 164)) #((1 . 389366) (2 . 5984)) #((1 . 333044) (2 . 5984)) #((1 . 394640) (2 . 5984)) #((1 . 338318) (2 . 5984)) #((1 . 389366) (2 . 5984)) #((1 . 333044) (2 . 5984)) #((1 . 394640) (2 . 5984)) #((1 . 338318) (2 . 5984)) #((1 . 369078) (2 . 164)) #((1 . 312756) (2 . 164)) #((1 . 374352) (2 . 164)) #((1 . 318030) (2 . 164)) #((1 . 369078) (2 . 164)) #((1 . 312756) (2 . 164)) #((1 . 374352) (2 . 164)) #((1 . 318030) (2 . 164)) #((1 . 389384) (2 . 5984)) #((1 . 333062) (2 . 5984)) #((1 . 394658) (2 . 5984)) #((1 . 338336) (2 . 5984)) #((1 . 389384) (2 . 5984)) #((1 . 333062) (2 . 5984)) #((1 . 394658) (2 . 5984)) #((1 . 338336) (2 . 5984)) #((1 . 313684) (2 . 12)) #((1 . 257362) (2 . 12)) #((1 . 318696) (2 . 12)) #((1 . 262374) (2 . 12)) #((1 . 313684) (2 . 12)) #((1 . 257362) (2 . 12)) #((1 . 318696) (2 . 12)) #((1 . 262374) (2 . 12)) #((1 . 328296) (2 . 5832)) #((1 . 271974) (2 . 5832)) #((1 . 333308) (2 . 5832)) #((1 . 276986) (2 . 5832)) #((1 . 328296) (2 . 5832)) #((1 . 271974) (2 . 5832)) #((1 . 333308) (2 . 5832)) #((1 . 276986) (2 . 5832)) #((1 . 336900) (2 . 12)) #((1 . 280578) (2 . 12)) #((1 . 341912) (2 . 12)) #((1 . 285590) (2 . 12)) #((1 . 336900) (2 . 12)) #((1 . 280578) (2 . 12)) #((1 . 341912) (2 . 12)) #((1 . 285590) (2 . 12)) #((1 . 328310) (2 . 5832)) #((1 . 271988) (2 . 5832)) #((1 . 333322) (2 . 5832)) #((1 . 277000) (2 . 5832)) #((1 . 328310) (2 . 5832)) #((1 . 271988) (2 . 5832)) #((1 . 333322) (2 . 5832)) #((1 . 277000) (2 . 5832)) #((1 . 322410) (2 . 164)) #((1 . 266088) (2 . 164)) #((1 . 304364) (2 . 164)) #((1 . 248042) (2 . 164)) #((1 . 322410) (2 . 164)) #((1 . 266088) (2 . 164)) #((1 . 304364) (2 . 164)) #((1 . 248042) (2 . 164)) #((1 . 365918) (2 . 5984)) #((1 . 309596) (2 . 5984)) #((1 . 347872) (2 . 5984)) #((1 . 291550) (2 . 5984)) #((1 . 365918) (2 . 5984)) #((1 . 309596) (2 . 5984)) #((1 . 347872) (2 . 5984)) #((1 . 291550) (2 . 5984)) #((1 . 345630) (2 . 164)) #((1 . 289308) (2 . 164)) #((1 . 327584) (2 . 164)) #((1 . 271262) (2 . 164)) #((1 . 345630) (2 . 164)) #((1 . 289308) (2 . 164)) #((1 . 327584) (2 . 164)) #((1 . 271262) (2 . 164)) #((1 . 365936) (2 . 5984)) #((1 . 309614) (2 . 5984)) #((1 . 347890) (2 . 5984)) #((1 . 291568) (2 . 5984)) #((1 . 365936) (2 . 5984)) #((1 . 309614) (2 . 5984)) #((1 . 347890) (2 . 5984)) #((1 . 291568) (2 . 5984)) #((1 . 290236) (2 . 12)) #((1 . 233914) (2 . 12)) #((1 . 271928) (2 . 12)) #((1 . 215606) (2 . 12)) #((1 . 290236) (2 . 12)) #((1 . 233914) (2 . 12)) #((1 . 271928) (2 . 12)) #((1 . 215606) (2 . 12)) #((1 . 304848) (2 . 5832)) #((1 . 248526) (2 . 5832)) #((1 . 286540) (2 . 5832)) #((1 . 230218) (2 . 5832)) #((1 . 304848) (2 . 5832)) #((1 . 248526) (2 . 5832)) #((1 . 286540) (2 . 5832)) #((1 . 230218) (2 . 5832)) #((1 . 313452) (2 . 12)) #((1 . 257130) (2 . 12)) #((1 . 295144) (2 . 12)) #((1 . 238822) (2 . 12)) #((1 . 313452) (2 . 12)) #((1 . 257130) (2 . 12)) #((1 . 295144) (2 . 12)) #((1 . 238822) (2 . 12)) #((1 . 304862) (2 . 5832)) #((1 . 248540) (2 . 5832)) #((1 . 286554) (2 . 5832)) #((1 . 230232) (2 . 5832)) #((1 . 304862) (2 . 5832)) #((1 . 248540) (2 . 5832)) #((1 . 286554) (2 . 5832)) #((1 . 230232) (2 . 5832)) #((1 . 435564)) #((1 . 322920)) #((1 . 311348)) #((1 . 198704)) #((1 . 435564)) #((1 . 322920)) #((1 . 311348)) #((1 . 198704)) #((1 . 220758) (2 . 5802)) #((1 . 164436) (2 . 5802)) #((1 . 158650) (2 . 5802)) #((1 . 102328) (2 . 5802)) #((1 . 220758) (2 . 5802)) #((1 . 164436) (2 . 5802)) #((1 . 158650) (2 . 5802)) #((1 . 102328) (2 . 5802)) #((1 . 435532)) #((1 . 322888)) #((1 . 311316)) #((1 . 198672)) #((1 . 435532)) #((1 . 322888)) #((1 . 311316)) #((1 . 198672)) #((1 . 209140) (2 . 5802)) #((1 . 152818) (2 . 5802)) #((1 . 147032) (2 . 5802)) #((1 . 90710) (2 . 5802)) #((1 . 209140) (2 . 5802)) #((1 . 152818) (2 . 5802)) #((1 . 147032) (2 . 5802)) #((1 . 90710) (2 . 5802)) #((1 . 417712)) #((1 . 305068)) #((1 . 293152)) #((1 . 180508)) #((1 . 417712)) #((1 . 305068)) #((1 . 293152)) #((1 . 180508)) #((1 . 194494) (2 . 5802)) #((1 . 138172) (2 . 5802)) #((1 . 132214) (2 . 5802)) #((1 . 75892) (2 . 5802)) #((1 . 194494) (2 . 5802)) #((1 . 138172) (2 . 5802)) #((1 . 132214) (2 . 5802)) #((1 . 75892) (2 . 5802)) #((1 . 417676)) #((1 . 305032)) #((1 . 293116)) #((1 . 180472)) #((1 . 417676)) #((1 . 305032)) #((1 . 293116)) #((1 . 180472)) #((1 . 182874) (2 . 5802)) #((1 . 126552) (2 . 5802)) #((1 . 120594) (2 . 5802)) #((1 . 64272) (2 . 5802)) #((1 . 182874) (2 . 5802)) #((1 . 126552) (2 . 5802)) #((1 . 120594) (2 . 5802)) #((1 . 64272) (2 . 5802)) #((1 . 388668)) #((1 . 276024)) #((1 . 217812)) #((1 . 105168)) #((1 . 388668)) #((1 . 276024)) #((1 . 217812)) #((1 . 105168)) #((1 . 197310) (2 . 5802)) #((1 . 140988) (2 . 5802)) #((1 . 111882) (2 . 5802)) #((1 . 55560) (2 . 5802)) #((1 . 197310) (2 . 5802)) #((1 . 140988) (2 . 5802)) #((1 . 111882) (2 . 5802)) #((1 . 55560) (2 . 5802)) #((1 . 388636)) #((1 . 275992)) #((1 . 217780)) #((1 . 105136)) #((1 . 388636)) #((1 . 275992)) #((1 . 217780)) #((1 . 105136)) #((1 . 185692) (2 . 5802)) #((1 . 129370) (2 . 5802)) #((1 . 100264) (2 . 5802)) #((1 . 43942) (2 . 5802)) #((1 . 185692) (2 . 5802)) #((1 . 129370) (2 . 5802)) #((1 . 100264) (2 . 5802)) #((1 . 43942) (2 . 5802)) #((1 . 370816)) #((1 . 258172)) #((1 . 199616)) #((1 . 86972)) #((1 . 370816)) #((1 . 258172)) #((1 . 199616)) #((1 . 86972)) #((1 . 171046) (2 . 5802)) #((1 . 114724) (2 . 5802)) #((1 . 85446) (2 . 5802)) #((1 . 29124) (2 . 5802)) #((1 . 171046) (2 . 5802)) #((1 . 114724) (2 . 5802)) #((1 . 85446) (2 . 5802)) #((1 . 29124) (2 . 5802)) #((1 . 370780)) #((1 . 258136)) #((1 . 199580)) #((1 . 86936)) #((1 . 370780)) #((1 . 258136)) #((1 . 199580)) #((1 . 86936)) #((1 . 159426) (2 . 5802)) #((1 . 103104) (2 . 5802)) #((1 . 73826) (2 . 5802)) #((1 . 17504) (2 . 5802)) #((1 . 159426) (2 . 5802)) #((1 . 103104) (2 . 5802)) #((1 . 73826) (2 . 5802)) #((1 . 17504) (2 . 5802)) #((1 . 296)) #((1 . 142036)) #((1 . 218768)) #((1 . 360508)) #((1 . 296)) #((1 . 142036)) #((1 . 218768)) #((1 . 360508)) #((1 . 78282) (2 . 5802)) #((1 . 149152) (2 . 5802)) #((1 . 187518) (2 . 5802)) #((1 . 258388) (2 . 5802)) #((1 . 78282) (2 . 5802)) #((1 . 149152) (2 . 5802)) #((1 . 187518) (2 . 5802)) #((1 . 258388) (2 . 5802)) #((1 . 46748)) #((1 . 188488)) #((1 . 265220)) #((1 . 406960)) #((1 . 46748)) #((1 . 188488)) #((1 . 265220)) #((1 . 406960)) #((1 . 78306) (2 . 5802)) #((1 . 149176) (2 . 5802)) #((1 . 187542) (2 . 5802)) #((1 . 258412) (2 . 5802)) #((1 . 78306) (2 . 5802)) #((1 . 149176) (2 . 5802)) #((1 . 187542) (2 . 5802)) #((1 . 258412) (2 . 5802)) #((1 . 65216)) #((1 . 206956)) #((1 . 283164)) #((1 . 424904)) #((1 . 65216)) #((1 . 206956)) #((1 . 283164)) #((1 . 424904)) #((1 . 81846) (2 . 5802)) #((1 . 152716) (2 . 5802)) #((1 . 190820) (2 . 5802)) #((1 . 261690) (2 . 5802)) #((1 . 81846) (2 . 5802)) #((1 . 152716) (2 . 5802)) #((1 . 190820) (2 . 5802)) #((1 . 261690) (2 . 5802)) #((1 . 111660)) #((1 . 253400)) #((1 . 329608)) #((1 . 471348)) #((1 . 111660)) #((1 . 253400)) #((1 . 329608)) #((1 . 471348)) #((1 . 81866) (2 . 5802)) #((1 . 152736) (2 . 5802)) #((1 . 190840) (2 . 5802)) #((1 . 261710) (2 . 5802)) #((1 . 81866) (2 . 5802)) #((1 . 152736) (2 . 5802)) #((1 . 190840) (2 . 5802)) #((1 . 261710) (2 . 5802)) #((1 . 117152)) #((1 . 258892)) #((1 . 265664)) #((1 . 407404)) #((1 . 117152)) #((1 . 258892)) #((1 . 265664)) #((1 . 407404)) #((1 . 136710) (2 . 5802)) #((1 . 207580) (2 . 5802)) #((1 . 210966) (2 . 5802)) #((1 . 281836) (2 . 5802)) #((1 . 136710) (2 . 5802)) #((1 . 207580) (2 . 5802)) #((1 . 210966) (2 . 5802)) #((1 . 281836) (2 . 5802)) #((1 . 163604)) #((1 . 305344)) #((1 . 312116)) #((1 . 453856)) #((1 . 163604)) #((1 . 305344)) #((1 . 312116)) #((1 . 453856)) #((1 . 136734) (2 . 5802)) #((1 . 207604) (2 . 5802)) #((1 . 210990) (2 . 5802)) #((1 . 281860) (2 . 5802)) #((1 . 136734) (2 . 5802)) #((1 . 207604) (2 . 5802)) #((1 . 210990) (2 . 5802)) #((1 . 281860) (2 . 5802)) #((1 . 182072)) #((1 . 323812)) #((1 . 330060)) #((1 . 471800)) #((1 . 182072)) #((1 . 323812)) #((1 . 330060)) #((1 . 471800)) #((1 . 140274) (2 . 5802)) #((1 . 211144) (2 . 5802)) #((1 . 214268) (2 . 5802)) #((1 . 285138) (2 . 5802)) #((1 . 140274) (2 . 5802)) #((1 . 211144) (2 . 5802)) #((1 . 214268) (2 . 5802)) #((1 . 285138) (2 . 5802)) #((1 . 228516)) #((1 . 370256)) #((1 . 376504)) #((1 . 518244)) #((1 . 228516)) #((1 . 370256)) #((1 . 376504)) #((1 . 518244)) #((1 . 140294) (2 . 5802)) #((1 . 211164) (2 . 5802)) #((1 . 214288) (2 . 5802)) #((1 . 285158) (2 . 5802)) #((1 . 140294) (2 . 5802)) #((1 . 211164) (2 . 5802)) #((1 . 214288) (2 . 5802)) #((1 . 285158) (2 . 5802)) #((1 . 261556) (2 . 30)) #((1 . 332426) (2 . 30)) #((1 . 265312) (2 . 30)) #((1 . 336182) (2 . 30)) #((1 . 261556) (2 . 30)) #((1 . 332426) (2 . 30)) #((1 . 265312) (2 . 30)) #((1 . 336182) (2 . 30)) #((1 . 287634) (2 . 5814)) #((1 . 358504) (2 . 5814)) #((1 . 291390) (2 . 5814)) #((1 . 362260) (2 . 5814)) #((1 . 287634) (2 . 5814)) #((1 . 358504) (2 . 5814)) #((1 . 291390) (2 . 5814)) #((1 . 362260) (2 . 5814)) #((1 . 261544) (2 . 30)) #((1 . 332414) (2 . 30)) #((1 . 265300) (2 . 30)) #((1 . 336170) (2 . 30)) #((1 . 261544) (2 . 30)) #((1 . 332414) (2 . 30)) #((1 . 265300) (2 . 30)) #((1 . 336170) (2 . 30)) #((1 . 276020) (2 . 5814)) #((1 . 346890) (2 . 5814)) #((1 . 279776) (2 . 5814)) #((1 . 350646) (2 . 5814)) #((1 . 276020) (2 . 5814)) #((1 . 346890) (2 . 5814)) #((1 . 279776) (2 . 5814)) #((1 . 350646) (2 . 5814)) #((1 . 287846) (2 . 182)) #((1 . 358716) (2 . 182)) #((1 . 291430) (2 . 182)) #((1 . 362300) (2 . 182)) #((1 . 287846) (2 . 182)) #((1 . 358716) (2 . 182)) #((1 . 291430) (2 . 182)) #((1 . 362300) (2 . 182)) #((1 . 296586) (2 . 5966)) #((1 . 367456) (2 . 5966)) #((1 . 300170) (2 . 5966)) #((1 . 371040) (2 . 5966)) #((1 . 296586) (2 . 5966)) #((1 . 367456) (2 . 5966)) #((1 . 300170) (2 . 5966)) #((1 . 371040) (2 . 5966)) #((1 . 287832) (2 . 182)) #((1 . 358702) (2 . 182)) #((1 . 291416) (2 . 182)) #((1 . 362286) (2 . 182)) #((1 . 287832) (2 . 182)) #((1 . 358702) (2 . 182)) #((1 . 291416) (2 . 182)) #((1 . 362286) (2 . 182)) #((1 . 284970) (2 . 5966)) #((1 . 355840) (2 . 5966)) #((1 . 288554) (2 . 5966)) #((1 . 359424) (2 . 5966)) #((1 . 284970) (2 . 5966)) #((1 . 355840) (2 . 5966)) #((1 . 288554) (2 . 5966)) #((1 . 359424) (2 . 5966)) #((1 . 319984) (2 . 30)) #((1 . 390854) (2 . 30)) #((1 . 288760) (2 . 30)) #((1 . 359630) (2 . 30)) #((1 . 319984) (2 . 30)) #((1 . 390854) (2 . 30)) #((1 . 288760) (2 . 30)) #((1 . 359630) (2 . 30)) #((1 . 346062) (2 . 5814)) #((1 . 416932) (2 . 5814)) #((1 . 314838) (2 . 5814)) #((1 . 385708) (2 . 5814)) #((1 . 346062) (2 . 5814)) #((1 . 416932) (2 . 5814)) #((1 . 314838) (2 . 5814)) #((1 . 385708) (2 . 5814)) #((1 . 319972) (2 . 30)) #((1 . 390842) (2 . 30)) #((1 . 288748) (2 . 30)) #((1 . 359618) (2 . 30)) #((1 . 319972) (2 . 30)) #((1 . 390842) (2 . 30)) #((1 . 288748) (2 . 30)) #((1 . 359618) (2 . 30)) #((1 . 334448) (2 . 5814)) #((1 . 405318) (2 . 5814)) #((1 . 303224) (2 . 5814)) #((1 . 374094) (2 . 5814)) #((1 . 334448) (2 . 5814)) #((1 . 405318) (2 . 5814)) #((1 . 303224) (2 . 5814)) #((1 . 374094) (2 . 5814)) #((1 . 346274) (2 . 182)) #((1 . 417144) (2 . 182)) #((1 . 314878) (2 . 182)) #((1 . 385748) (2 . 182)) #((1 . 346274) (2 . 182)) #((1 . 417144) (2 . 182)) #((1 . 314878) (2 . 182)) #((1 . 385748) (2 . 182)) #((1 . 355014) (2 . 5966)) #((1 . 425884) (2 . 5966)) #((1 . 323618) (2 . 5966)) #((1 . 394488) (2 . 5966)) #((1 . 355014) (2 . 5966)) #((1 . 425884) (2 . 5966)) #((1 . 323618) (2 . 5966)) #((1 . 394488) (2 . 5966)) #((1 . 346260) (2 . 182)) #((1 . 417130) (2 . 182)) #((1 . 314864) (2 . 182)) #((1 . 385734) (2 . 182)) #((1 . 346260) (2 . 182)) #((1 . 417130) (2 . 182)) #((1 . 314864) (2 . 182)) #((1 . 385734) (2 . 182)) #((1 . 343398) (2 . 5966)) #((1 . 414268) (2 . 5966)) #((1 . 312002) (2 . 5966)) #((1 . 382872) (2 . 5966)) #((1 . 343398) (2 . 5966)) #((1 . 414268) (2 . 5966)) #((1 . 312002) (2 . 5966)) #((1 . 382872) (2 . 5966)) #((1 . 259204)) #((1 . 397040)) #((1 . 477676)) #((1 . 615512)) #((1 . 259204)) #((1 . 397040)) #((1 . 477676)) #((1 . 615512)) #((1 . 207736) (2 . 5802)) #((1 . 276654) (2 . 5802)) #((1 . 316972) (2 . 5802)) #((1 . 385890) (2 . 5802)) #((1 . 207736) (2 . 5802)) #((1 . 276654) (2 . 5802)) #((1 . 316972) (2 . 5802)) #((1 . 385890) (2 . 5802)) #((1 . 305656)) #((1 . 443492)) #((1 . 524128)) #((1 . 661964)) #((1 . 305656)) #((1 . 443492)) #((1 . 524128)) #((1 . 661964)) #((1 . 207760) (2 . 5802)) #((1 . 276678) (2 . 5802)) #((1 . 316996) (2 . 5802)) #((1 . 385914) (2 . 5802)) #((1 . 207760) (2 . 5802)) #((1 . 276678) (2 . 5802)) #((1 . 316996) (2 . 5802)) #((1 . 385914) (2 . 5802)) #((1 . 254812)) #((1 . 392648)) #((1 . 472760)) #((1 . 610596)) #((1 . 254812)) #((1 . 392648)) #((1 . 472760)) #((1 . 610596)) #((1 . 176644) (2 . 5802)) #((1 . 245562) (2 . 5802)) #((1 . 285618) (2 . 5802)) #((1 . 354536) (2 . 5802)) #((1 . 176644) (2 . 5802)) #((1 . 245562) (2 . 5802)) #((1 . 285618) (2 . 5802)) #((1 . 354536) (2 . 5802)) #((1 . 301256)) #((1 . 439092)) #((1 . 519204)) #((1 . 657040)) #((1 . 301256)) #((1 . 439092)) #((1 . 519204)) #((1 . 657040)) #((1 . 176664) (2 . 5802)) #((1 . 245582) (2 . 5802)) #((1 . 285638) (2 . 5802)) #((1 . 354556) (2 . 5802)) #((1 . 176664) (2 . 5802)) #((1 . 245582) (2 . 5802)) #((1 . 285638) (2 . 5802)) #((1 . 354556) (2 . 5802)) #((1 . 376060)) #((1 . 513896)) #((1 . 524572)) #((1 . 662408)) #((1 . 376060)) #((1 . 513896)) #((1 . 524572)) #((1 . 662408)) #((1 . 266164) (2 . 5802)) #((1 . 335082) (2 . 5802)) #((1 . 340420) (2 . 5802)) #((1 . 409338) (2 . 5802)) #((1 . 266164) (2 . 5802)) #((1 . 335082) (2 . 5802)) #((1 . 340420) (2 . 5802)) #((1 . 409338) (2 . 5802)) #((1 . 422512)) #((1 . 560348)) #((1 . 571024)) #((1 . 708860)) #((1 . 422512)) #((1 . 560348)) #((1 . 571024)) #((1 . 708860)) #((1 . 266188) (2 . 5802)) #((1 . 335106) (2 . 5802)) #((1 . 340444) (2 . 5802)) #((1 . 409362) (2 . 5802)) #((1 . 266188) (2 . 5802)) #((1 . 335106) (2 . 5802)) #((1 . 340444) (2 . 5802)) #((1 . 409362) (2 . 5802)) #((1 . 371668)) #((1 . 509504)) #((1 . 519656)) #((1 . 657492)) #((1 . 371668)) #((1 . 509504)) #((1 . 519656)) #((1 . 657492)) #((1 . 235072) (2 . 5802)) #((1 . 303990) (2 . 5802)) #((1 . 309066) (2 . 5802)) #((1 . 377984) (2 . 5802)) #((1 . 235072) (2 . 5802)) #((1 . 303990) (2 . 5802)) #((1 . 309066) (2 . 5802)) #((1 . 377984) (2 . 5802)) #((1 . 418112)) #((1 . 555948)) #((1 . 566100)) #((1 . 703936)) #((1 . 418112)) #((1 . 555948)) #((1 . 566100)) #((1 . 703936)) #((1 . 235092) (2 . 5802)) #((1 . 304010) (2 . 5802)) #((1 . 309086) (2 . 5802)) #((1 . 378004) (2 . 5802)) #((1 . 235092) (2 . 5802)) #((1 . 304010) (2 . 5802)) #((1 . 309086) (2 . 5802)) #((1 . 378004) (2 . 5802)) #((1 . 339026) (2 . 14470)) #((1 . 407944) (2 . 14470)) #((1 . 342782) (2 . 14470)) #((1 . 411700) (2 . 14470)) #((1 . 339026) (2 . 14470)) #((1 . 407944) (2 . 14470)) #((1 . 342782) (2 . 14470)) #((1 . 411700) (2 . 14470)) #((1 . 365104) (2 . 20254)) #((1 . 434022) (2 . 20254)) #((1 . 368860) (2 . 20254)) #((1 . 437778) (2 . 20254)) #((1 . 365104) (2 . 20254)) #((1 . 434022) (2 . 20254)) #((1 . 368860) (2 . 20254)) #((1 . 437778) (2 . 20254)) #((1 . 339014) (2 . 14470)) #((1 . 407932) (2 . 14470)) #((1 . 342770) (2 . 14470)) #((1 . 411688) (2 . 14470)) #((1 . 339014) (2 . 14470)) #((1 . 407932) (2 . 14470)) #((1 . 342770) (2 . 14470)) #((1 . 411688) (2 . 14470)) #((1 . 353490) (2 . 20254)) #((1 . 422408) (2 . 20254)) #((1 . 357246) (2 . 20254)) #((1 . 426164) (2 . 20254)) #((1 . 353490) (2 . 20254)) #((1 . 422408) (2 . 20254)) #((1 . 357246) (2 . 20254)) #((1 . 426164) (2 . 20254)) #((1 . 347988) (2 . 14622)) #((1 . 416906) (2 . 14622)) #((1 . 351572) (2 . 14622)) #((1 . 420490) (2 . 14622)) #((1 . 347988) (2 . 14622)) #((1 . 416906) (2 . 14622)) #((1 . 351572) (2 . 14622)) #((1 . 420490) (2 . 14622)) #((1 . 356728) (2 . 20406)) #((1 . 425646) (2 . 20406)) #((1 . 360312) (2 . 20406)) #((1 . 429230) (2 . 20406)) #((1 . 356728) (2 . 20406)) #((1 . 425646) (2 . 20406)) #((1 . 360312) (2 . 20406)) #((1 . 429230) (2 . 20406)) #((1 . 347974) (2 . 14622)) #((1 . 416892) (2 . 14622)) #((1 . 351558) (2 . 14622)) #((1 . 420476) (2 . 14622)) #((1 . 347974) (2 . 14622)) #((1 . 416892) (2 . 14622)) #((1 . 351558) (2 . 14622)) #((1 . 420476) (2 . 14622)) #((1 . 345112) (2 . 20406)) #((1 . 414030) (2 . 20406)) #((1 . 348696) (2 . 20406)) #((1 . 417614) (2 . 20406)) #((1 . 345112) (2 . 20406)) #((1 . 414030) (2 . 20406)) #((1 . 348696) (2 . 20406)) #((1 . 417614) (2 . 20406)) #((1 . 397454) (2 . 14470)) #((1 . 466372) (2 . 14470)) #((1 . 366230) (2 . 14470)) #((1 . 435148) (2 . 14470)) #((1 . 397454) (2 . 14470)) #((1 . 466372) (2 . 14470)) #((1 . 366230) (2 . 14470)) #((1 . 435148) (2 . 14470)) #((1 . 423532) (2 . 20254)) #((1 . 492450) (2 . 20254)) #((1 . 392308) (2 . 20254)) #((1 . 461226) (2 . 20254)) #((1 . 423532) (2 . 20254)) #((1 . 492450) (2 . 20254)) #((1 . 392308) (2 . 20254)) #((1 . 461226) (2 . 20254)) #((1 . 397442) (2 . 14470)) #((1 . 466360) (2 . 14470)) #((1 . 366218) (2 . 14470)) #((1 . 435136) (2 . 14470)) #((1 . 397442) (2 . 14470)) #((1 . 466360) (2 . 14470)) #((1 . 366218) (2 . 14470)) #((1 . 435136) (2 . 14470)) #((1 . 411918) (2 . 20254)) #((1 . 480836) (2 . 20254)) #((1 . 380694) (2 . 20254)) #((1 . 449612) (2 . 20254)) #((1 . 411918) (2 . 20254)) #((1 . 480836) (2 . 20254)) #((1 . 380694) (2 . 20254)) #((1 . 449612) (2 . 20254)) #((1 . 406416) (2 . 14622)) #((1 . 475334) (2 . 14622)) #((1 . 375020) (2 . 14622)) #((1 . 443938) (2 . 14622)) #((1 . 406416) (2 . 14622)) #((1 . 475334) (2 . 14622)) #((1 . 375020) (2 . 14622)) #((1 . 443938) (2 . 14622)) #((1 . 415156) (2 . 20406)) #((1 . 484074) (2 . 20406)) #((1 . 383760) (2 . 20406)) #((1 . 452678) (2 . 20406)) #((1 . 415156) (2 . 20406)) #((1 . 484074) (2 . 20406)) #((1 . 383760) (2 . 20406)) #((1 . 452678) (2 . 20406)) #((1 . 406402) (2 . 14622)) #((1 . 475320) (2 . 14622)) #((1 . 375006) (2 . 14622)) #((1 . 443924) (2 . 14622)) #((1 . 406402) (2 . 14622)) #((1 . 475320) (2 . 14622)) #((1 . 375006) (2 . 14622)) #((1 . 443924) (2 . 14622)) #((1 . 403540) (2 . 20406)) #((1 . 472458) (2 . 20406)) #((1 . 372144) (2 . 20406)) #((1 . 441062) (2 . 20406)) #((1 . 403540) (2 . 20406)) #((1 . 472458) (2 . 20406)) #((1 . 372144) (2 . 20406)) #((1 . 441062) (2 . 20406)) #((1 . 292272) (2 . 8816)) #((1 . 363142) (2 . 8816)) #((1 . 322668) (2 . 8816)) #((1 . 393538) (2 . 8816)) #((1 . 292272) (2 . 8816)) #((1 . 363142) (2 . 8816)) #((1 . 322668) (2 . 8816)) #((1 . 393538) (2 . 8816)) #((1 . 335660) (2 . 14618)) #((1 . 406530) (2 . 14618)) #((1 . 366056) (2 . 14618)) #((1 . 436926) (2 . 14618)) #((1 . 335660) (2 . 14618)) #((1 . 406530) (2 . 14618)) #((1 . 366056) (2 . 14618)) #((1 . 436926) (2 . 14618)) #((1 . 315492) (2 . 8816)) #((1 . 386362) (2 . 8816)) #((1 . 345888) (2 . 8816)) #((1 . 416758) (2 . 8816)) #((1 . 315492) (2 . 8816)) #((1 . 386362) (2 . 8816)) #((1 . 345888) (2 . 8816)) #((1 . 416758) (2 . 8816)) #((1 . 335678) (2 . 14618)) #((1 . 406548) (2 . 14618)) #((1 . 366074) (2 . 14618)) #((1 . 436944) (2 . 14618)) #((1 . 335678) (2 . 14618)) #((1 . 406548) (2 . 14618)) #((1 . 366074) (2 . 14618)) #((1 . 436944) (2 . 14618)) #((1 . 294906) (2 . 8664)) #((1 . 365776) (2 . 8664)) #((1 . 325040) (2 . 8664)) #((1 . 395910) (2 . 8664)) #((1 . 294906) (2 . 8664)) #((1 . 365776) (2 . 8664)) #((1 . 325040) (2 . 8664)) #((1 . 395910) (2 . 8664)) #((1 . 309398) (2 . 14466)) #((1 . 380268) (2 . 14466)) #((1 . 339532) (2 . 14466)) #((1 . 410402) (2 . 14466)) #((1 . 309398) (2 . 14466)) #((1 . 380268) (2 . 14466)) #((1 . 339532) (2 . 14466)) #((1 . 410402) (2 . 14466)) #((1 . 318122) (2 . 8664)) #((1 . 388992) (2 . 8664)) #((1 . 348256) (2 . 8664)) #((1 . 419126) (2 . 8664)) #((1 . 318122) (2 . 8664)) #((1 . 388992) (2 . 8664)) #((1 . 348256) (2 . 8664)) #((1 . 419126) (2 . 8664)) #((1 . 309412) (2 . 14466)) #((1 . 380282) (2 . 14466)) #((1 . 339546) (2 . 14466)) #((1 . 410416) (2 . 14466)) #((1 . 309412) (2 . 14466)) #((1 . 380282) (2 . 14466)) #((1 . 339546) (2 . 14466)) #((1 . 410416) (2 . 14466)) #((1 . 350700) (2 . 8816)) #((1 . 421570) (2 . 8816)) #((1 . 346116) (2 . 8816)) #((1 . 416986) (2 . 8816)) #((1 . 350700) (2 . 8816)) #((1 . 421570) (2 . 8816)) #((1 . 346116) (2 . 8816)) #((1 . 416986) (2 . 8816)) #((1 . 394088) (2 . 14618)) #((1 . 464958) (2 . 14618)) #((1 . 389504) (2 . 14618)) #((1 . 460374) (2 . 14618)) #((1 . 394088) (2 . 14618)) #((1 . 464958) (2 . 14618)) #((1 . 389504) (2 . 14618)) #((1 . 460374) (2 . 14618)) #((1 . 373920) (2 . 8816)) #((1 . 444790) (2 . 8816)) #((1 . 369336) (2 . 8816)) #((1 . 440206) (2 . 8816)) #((1 . 373920) (2 . 8816)) #((1 . 444790) (2 . 8816)) #((1 . 369336) (2 . 8816)) #((1 . 440206) (2 . 8816)) #((1 . 394106) (2 . 14618)) #((1 . 464976) (2 . 14618)) #((1 . 389522) (2 . 14618)) #((1 . 460392) (2 . 14618)) #((1 . 394106) (2 . 14618)) #((1 . 464976) (2 . 14618)) #((1 . 389522) (2 . 14618)) #((1 . 460392) (2 . 14618)) #((1 . 353334) (2 . 8664)) #((1 . 424204) (2 . 8664)) #((1 . 348488) (2 . 8664)) #((1 . 419358) (2 . 8664)) #((1 . 353334) (2 . 8664)) #((1 . 424204) (2 . 8664)) #((1 . 348488) (2 . 8664)) #((1 . 419358) (2 . 8664)) #((1 . 367826) (2 . 14466)) #((1 . 438696) (2 . 14466)) #((1 . 362980) (2 . 14466)) #((1 . 433850) (2 . 14466)) #((1 . 367826) (2 . 14466)) #((1 . 438696) (2 . 14466)) #((1 . 362980) (2 . 14466)) #((1 . 433850) (2 . 14466)) #((1 . 376550) (2 . 8664)) #((1 . 447420) (2 . 8664)) #((1 . 371704) (2 . 8664)) #((1 . 442574) (2 . 8664)) #((1 . 376550) (2 . 8664)) #((1 . 447420) (2 . 8664)) #((1 . 371704) (2 . 8664)) #((1 . 442574) (2 . 8664)) #((1 . 367840) (2 . 14466)) #((1 . 438710) (2 . 14466)) #((1 . 362994) (2 . 14466)) #((1 . 433864) (2 . 14466)) #((1 . 367840) (2 . 14466)) #((1 . 438710) (2 . 14466)) #((1 . 362994) (2 . 14466)) #((1 . 433864) (2 . 14466)) #((1 . 257804) (2 . 18)) #((1 . 328674) (2 . 18)) #((1 . 209000) (2 . 18)) #((1 . 279870) (2 . 18)) #((1 . 257804) (2 . 18)) #((1 . 328674) (2 . 18)) #((1 . 209000) (2 . 18)) #((1 . 279870) (2 . 18)) #((1 . 260718) (2 . 5802)) #((1 . 331588) (2 . 5802)) #((1 . 211914) (2 . 5802)) #((1 . 282784) (2 . 5802)) #((1 . 260718) (2 . 5802)) #((1 . 331588) (2 . 5802)) #((1 . 211914) (2 . 5802)) #((1 . 282784) (2 . 5802)) #((1 . 257788) (2 . 18)) #((1 . 328658) (2 . 18)) #((1 . 208984) (2 . 18)) #((1 . 279854) (2 . 18)) #((1 . 257788) (2 . 18)) #((1 . 328658) (2 . 18)) #((1 . 208984) (2 . 18)) #((1 . 279854) (2 . 18)) #((1 . 249100) (2 . 5802)) #((1 . 319970) (2 . 5802)) #((1 . 200296) (2 . 5802)) #((1 . 271166) (2 . 5802)) #((1 . 249100) (2 . 5802)) #((1 . 319970) (2 . 5802)) #((1 . 200296) (2 . 5802)) #((1 . 271166) (2 . 5802)) #((1 . 266290) (2 . 18)) #((1 . 337160) (2 . 18)) #((1 . 217314) (2 . 18)) #((1 . 288184) (2 . 18)) #((1 . 266290) (2 . 18)) #((1 . 337160) (2 . 18)) #((1 . 217314) (2 . 18)) #((1 . 288184) (2 . 18)) #((1 . 251866) (2 . 5802)) #((1 . 322736) (2 . 5802)) #((1 . 202890) (2 . 5802)) #((1 . 273760) (2 . 5802)) #((1 . 251866) (2 . 5802)) #((1 . 322736) (2 . 5802)) #((1 . 202890) (2 . 5802)) #((1 . 273760) (2 . 5802)) #((1 . 266272) (2 . 18)) #((1 . 337142) (2 . 18)) #((1 . 217296) (2 . 18)) #((1 . 288166) (2 . 18)) #((1 . 266272) (2 . 18)) #((1 . 337142) (2 . 18)) #((1 . 217296) (2 . 18)) #((1 . 288166) (2 . 18)) #((1 . 240246) (2 . 5802)) #((1 . 311116) (2 . 5802)) #((1 . 191270) (2 . 5802)) #((1 . 262140) (2 . 5802)) #((1 . 240246) (2 . 5802)) #((1 . 311116) (2 . 5802)) #((1 . 191270) (2 . 5802)) #((1 . 262140) (2 . 5802)) #((1 . 316232) (2 . 18)) #((1 . 387102) (2 . 18)) #((1 . 232448) (2 . 18)) #((1 . 303318) (2 . 18)) #((1 . 316232) (2 . 18)) #((1 . 387102) (2 . 18)) #((1 . 232448) (2 . 18)) #((1 . 303318) (2 . 18)) #((1 . 319146) (2 . 5802)) #((1 . 390016) (2 . 5802)) #((1 . 235362) (2 . 5802)) #((1 . 306232) (2 . 5802)) #((1 . 319146) (2 . 5802)) #((1 . 390016) (2 . 5802)) #((1 . 235362) (2 . 5802)) #((1 . 306232) (2 . 5802)) #((1 . 316216) (2 . 18)) #((1 . 387086) (2 . 18)) #((1 . 232432) (2 . 18)) #((1 . 303302) (2 . 18)) #((1 . 316216) (2 . 18)) #((1 . 387086) (2 . 18)) #((1 . 232432) (2 . 18)) #((1 . 303302) (2 . 18)) #((1 . 307528) (2 . 5802)) #((1 . 378398) (2 . 5802)) #((1 . 223744) (2 . 5802)) #((1 . 294614) (2 . 5802)) #((1 . 307528) (2 . 5802)) #((1 . 378398) (2 . 5802)) #((1 . 223744) (2 . 5802)) #((1 . 294614) (2 . 5802)) #((1 . 324718) (2 . 18)) #((1 . 395588) (2 . 18)) #((1 . 240762) (2 . 18)) #((1 . 311632) (2 . 18)) #((1 . 324718) (2 . 18)) #((1 . 395588) (2 . 18)) #((1 . 240762) (2 . 18)) #((1 . 311632) (2 . 18)) #((1 . 310294) (2 . 5802)) #((1 . 381164) (2 . 5802)) #((1 . 226338) (2 . 5802)) #((1 . 297208) (2 . 5802)) #((1 . 310294) (2 . 5802)) #((1 . 381164) (2 . 5802)) #((1 . 226338) (2 . 5802)) #((1 . 297208) (2 . 5802)) #((1 . 324700) (2 . 18)) #((1 . 395570) (2 . 18)) #((1 . 240744) (2 . 18)) #((1 . 311614) (2 . 18)) #((1 . 324700) (2 . 18)) #((1 . 395570) (2 . 18)) #((1 . 240744) (2 . 18)) #((1 . 311614) (2 . 18)) #((1 . 298674) (2 . 5802)) #((1 . 369544) (2 . 5802)) #((1 . 214718) (2 . 5802)) #((1 . 285588) (2 . 5802)) #((1 . 298674) (2 . 5802)) #((1 . 369544) (2 . 5802)) #((1 . 214718) (2 . 5802)) #((1 . 285588) (2 . 5802)) #((1 . 277478) (2 . 152)) #((1 . 346396) (2 . 152)) #((1 . 307874) (2 . 152)) #((1 . 376792) (2 . 152)) #((1 . 277478) (2 . 152)) #((1 . 346396) (2 . 152)) #((1 . 307874) (2 . 152)) #((1 . 376792) (2 . 152)) #((1 . 320866) (2 . 5954)) #((1 . 389784) (2 . 5954)) #((1 . 351262) (2 . 5954)) #((1 . 420180) (2 . 5954)) #((1 . 320866) (2 . 5954)) #((1 . 389784) (2 . 5954)) #((1 . 351262) (2 . 5954)) #((1 . 420180) (2 . 5954)) #((1 . 300698) (2 . 152)) #((1 . 369616) (2 . 152)) #((1 . 331094) (2 . 152)) #((1 . 400012) (2 . 152)) #((1 . 300698) (2 . 152)) #((1 . 369616) (2 . 152)) #((1 . 331094) (2 . 152)) #((1 . 400012) (2 . 152)) #((1 . 320884) (2 . 5954)) #((1 . 389802) (2 . 5954)) #((1 . 351280) (2 . 5954)) #((1 . 420198) (2 . 5954)) #((1 . 320884) (2 . 5954)) #((1 . 389802) (2 . 5954)) #((1 . 351280) (2 . 5954)) #((1 . 420198) (2 . 5954)) #((1 . 490912)) #((1 . 628748)) #((1 . 551180)) #((1 . 689016)) #((1 . 490912)) #((1 . 628748)) #((1 . 551180)) #((1 . 689016)) #((1 . 259948) (2 . 5802)) #((1 . 328866) (2 . 5802)) #((1 . 290082) (2 . 5802)) #((1 . 359000) (2 . 5802)) #((1 . 259948) (2 . 5802)) #((1 . 328866) (2 . 5802)) #((1 . 290082) (2 . 5802)) #((1 . 359000) (2 . 5802)) #((1 . 537344)) #((1 . 675180)) #((1 . 597612)) #((1 . 735448)) #((1 . 537344)) #((1 . 675180)) #((1 . 597612)) #((1 . 735448)) #((1 . 259962) (2 . 5802)) #((1 . 328880) (2 . 5802)) #((1 . 290096) (2 . 5802)) #((1 . 359014) (2 . 5802)) #((1 . 259962) (2 . 5802)) #((1 . 328880) (2 . 5802)) #((1 . 290096) (2 . 5802)) #((1 . 359014) (2 . 5802)) #((1 . 335906) (2 . 152)) #((1 . 404824) (2 . 152)) #((1 . 331322) (2 . 152)) #((1 . 400240) (2 . 152)) #((1 . 335906) (2 . 152)) #((1 . 404824) (2 . 152)) #((1 . 331322) (2 . 152)) #((1 . 400240) (2 . 152)) #((1 . 379294) (2 . 5954)) #((1 . 448212) (2 . 5954)) #((1 . 374710) (2 . 5954)) #((1 . 443628) (2 . 5954)) #((1 . 379294) (2 . 5954)) #((1 . 448212) (2 . 5954)) #((1 . 374710) (2 . 5954)) #((1 . 443628) (2 . 5954)) #((1 . 359126) (2 . 152)) #((1 . 428044) (2 . 152)) #((1 . 354542) (2 . 152)) #((1 . 423460) (2 . 152)) #((1 . 359126) (2 . 152)) #((1 . 428044) (2 . 152)) #((1 . 354542) (2 . 152)) #((1 . 423460) (2 . 152)) #((1 . 379312) (2 . 5954)) #((1 . 448230) (2 . 5954)) #((1 . 374728) (2 . 5954)) #((1 . 443646) (2 . 5954)) #((1 . 379312) (2 . 5954)) #((1 . 448230) (2 . 5954)) #((1 . 374728) (2 . 5954)) #((1 . 443646) (2 . 5954)) #((1 . 607768)) #((1 . 745604)) #((1 . 598076)) #((1 . 735912)) #((1 . 607768)) #((1 . 745604)) #((1 . 598076)) #((1 . 735912)) #((1 . 318376) (2 . 5802)) #((1 . 387294) (2 . 5802)) #((1 . 313530) (2 . 5802)) #((1 . 382448) (2 . 5802)) #((1 . 318376) (2 . 5802)) #((1 . 387294) (2 . 5802)) #((1 . 313530) (2 . 5802)) #((1 . 382448) (2 . 5802)) #((1 . 654200)) #((1 . 792036)) #((1 . 644508)) #((1 . 782344)) #((1 . 654200)) #((1 . 792036)) #((1 . 644508)) #((1 . 782344)) #((1 . 318390) (2 . 5802)) #((1 . 387308) (2 . 5802)) #((1 . 313544) (2 . 5802)) #((1 . 382462) (2 . 5802)) #((1 . 318390) (2 . 5802)) #((1 . 387308) (2 . 5802)) #((1 . 313544) (2 . 5802)) #((1 . 382462) (2 . 5802)) #((1 . 254486) (2 . 5794)) #((1 . 323404) (2 . 5794)) #((1 . 205682) (2 . 5794)) #((1 . 274600) (2 . 5794)) #((1 . 254486) (2 . 5794)) #((1 . 323404) (2 . 5794)) #((1 . 205682) (2 . 5794)) #((1 . 274600) (2 . 5794)) #((1 . 257400) (2 . 11578)) #((1 . 326318) (2 . 11578)) #((1 . 208596) (2 . 11578)) #((1 . 277514) (2 . 11578)) #((1 . 257400) (2 . 11578)) #((1 . 326318) (2 . 11578)) #((1 . 208596) (2 . 11578)) #((1 . 277514) (2 . 11578)) #((1 . 254470) (2 . 5794)) #((1 . 323388) (2 . 5794)) #((1 . 205666) (2 . 5794)) #((1 . 274584) (2 . 5794)) #((1 . 254470) (2 . 5794)) #((1 . 323388) (2 . 5794)) #((1 . 205666) (2 . 5794)) #((1 . 274584) (2 . 5794)) #((1 . 245782) (2 . 11578)) #((1 . 314700) (2 . 11578)) #((1 . 196978) (2 . 11578)) #((1 . 265896) (2 . 11578)) #((1 . 245782) (2 . 11578)) #((1 . 314700) (2 . 11578)) #((1 . 196978) (2 . 11578)) #((1 . 265896) (2 . 11578)) #((1 . 245644) (2 . 5794)) #((1 . 314562) (2 . 5794)) #((1 . 196668) (2 . 5794)) #((1 . 265586) (2 . 5794)) #((1 . 245644) (2 . 5794)) #((1 . 314562) (2 . 5794)) #((1 . 196668) (2 . 5794)) #((1 . 265586) (2 . 5794)) #((1 . 231220) (2 . 11578)) #((1 . 300138) (2 . 11578)) #((1 . 182244) (2 . 11578)) #((1 . 251162) (2 . 11578)) #((1 . 231220) (2 . 11578)) #((1 . 300138) (2 . 11578)) #((1 . 182244) (2 . 11578)) #((1 . 251162) (2 . 11578)) #((1 . 245626) (2 . 5794)) #((1 . 314544) (2 . 5794)) #((1 . 196650) (2 . 5794)) #((1 . 265568) (2 . 5794)) #((1 . 245626) (2 . 5794)) #((1 . 314544) (2 . 5794)) #((1 . 196650) (2 . 5794)) #((1 . 265568) (2 . 5794)) #((1 . 219600) (2 . 11578)) #((1 . 288518) (2 . 11578)) #((1 . 170624) (2 . 11578)) #((1 . 239542) (2 . 11578)) #((1 . 219600) (2 . 11578)) #((1 . 288518) (2 . 11578)) #((1 . 170624) (2 . 11578)) #((1 . 239542) (2 . 11578)) #((1 . 312914) (2 . 5794)) #((1 . 381832) (2 . 5794)) #((1 . 229130) (2 . 5794)) #((1 . 298048) (2 . 5794)) #((1 . 312914) (2 . 5794)) #((1 . 381832) (2 . 5794)) #((1 . 229130) (2 . 5794)) #((1 . 298048) (2 . 5794)) #((1 . 315828) (2 . 11578)) #((1 . 384746) (2 . 11578)) #((1 . 232044) (2 . 11578)) #((1 . 300962) (2 . 11578)) #((1 . 315828) (2 . 11578)) #((1 . 384746) (2 . 11578)) #((1 . 232044) (2 . 11578)) #((1 . 300962) (2 . 11578)) #((1 . 312898) (2 . 5794)) #((1 . 381816) (2 . 5794)) #((1 . 229114) (2 . 5794)) #((1 . 298032) (2 . 5794)) #((1 . 312898) (2 . 5794)) #((1 . 381816) (2 . 5794)) #((1 . 229114) (2 . 5794)) #((1 . 298032) (2 . 5794)) #((1 . 304210) (2 . 11578)) #((1 . 373128) (2 . 11578)) #((1 . 220426) (2 . 11578)) #((1 . 289344) (2 . 11578)) #((1 . 304210) (2 . 11578)) #((1 . 373128) (2 . 11578)) #((1 . 220426) (2 . 11578)) #((1 . 289344) (2 . 11578)) #((1 . 304072) (2 . 5794)) #((1 . 372990) (2 . 5794)) #((1 . 220116) (2 . 5794)) #((1 . 289034) (2 . 5794)) #((1 . 304072) (2 . 5794)) #((1 . 372990) (2 . 5794)) #((1 . 220116) (2 . 5794)) #((1 . 289034) (2 . 5794)) #((1 . 289648) (2 . 11578)) #((1 . 358566) (2 . 11578)) #((1 . 205692) (2 . 11578)) #((1 . 274610) (2 . 11578)) #((1 . 289648) (2 . 11578)) #((1 . 358566) (2 . 11578)) #((1 . 205692) (2 . 11578)) #((1 . 274610) (2 . 11578)) #((1 . 304054) (2 . 5794)) #((1 . 372972) (2 . 5794)) #((1 . 220098) (2 . 5794)) #((1 . 289016) (2 . 5794)) #((1 . 304054) (2 . 5794)) #((1 . 372972) (2 . 5794)) #((1 . 220098) (2 . 5794)) #((1 . 289016) (2 . 5794)) #((1 . 278028) (2 . 11578)) #((1 . 346946) (2 . 11578)) #((1 . 194072) (2 . 11578)) #((1 . 262990) (2 . 11578)) #((1 . 278028) (2 . 11578)) #((1 . 346946) (2 . 11578)) #((1 . 194072) (2 . 11578)) #((1 . 262990) (2 . 11578)) #((1 . 143882) (2 . 5776)) #((1 . 171108) (2 . 5776)) #((1 . 253118) (2 . 5776)) #((1 . 280344) (2 . 5776)) #((1 . 143882) (2 . 5776)) #((1 . 171108) (2 . 5776)) #((1 . 253118) (2 . 5776)) #((1 . 280344) (2 . 5776)) #((1 . 222016) (2 . 11578)) #((1 . 249242) (2 . 11578)) #((1 . 331252) (2 . 11578)) #((1 . 358478) (2 . 11578)) #((1 . 222016) (2 . 11578)) #((1 . 249242) (2 . 11578)) #((1 . 331252) (2 . 11578)) #((1 . 358478) (2 . 11578)) #((1 . 167108) (2 . 5776)) #((1 . 194334) (2 . 5776)) #((1 . 276344) (2 . 5776)) #((1 . 303570) (2 . 5776)) #((1 . 167108) (2 . 5776)) #((1 . 194334) (2 . 5776)) #((1 . 276344) (2 . 5776)) #((1 . 303570) (2 . 5776)) #((1 . 222040) (2 . 11578)) #((1 . 249266) (2 . 11578)) #((1 . 331276) (2 . 11578)) #((1 . 358502) (2 . 11578)) #((1 . 222040) (2 . 11578)) #((1 . 249266) (2 . 11578)) #((1 . 331276) (2 . 11578)) #((1 . 358502) (2 . 11578)) #((1 . 176080) (2 . 5776)) #((1 . 203306) (2 . 5776)) #((1 . 285054) (2 . 5776)) #((1 . 312280) (2 . 5776)) #((1 . 176080) (2 . 5776)) #((1 . 203306) (2 . 5776)) #((1 . 285054) (2 . 5776)) #((1 . 312280) (2 . 5776)) #((1 . 225318) (2 . 11578)) #((1 . 252544) (2 . 11578)) #((1 . 334292) (2 . 11578)) #((1 . 361518) (2 . 11578)) #((1 . 225318) (2 . 11578)) #((1 . 252544) (2 . 11578)) #((1 . 334292) (2 . 11578)) #((1 . 361518) (2 . 11578)) #((1 . 199302) (2 . 5776)) #((1 . 226528) (2 . 5776)) #((1 . 308276) (2 . 5776)) #((1 . 335502) (2 . 5776)) #((1 . 199302) (2 . 5776)) #((1 . 226528) (2 . 5776)) #((1 . 308276) (2 . 5776)) #((1 . 335502) (2 . 5776)) #((1 . 225338) (2 . 11578)) #((1 . 252564) (2 . 11578)) #((1 . 334312) (2 . 11578)) #((1 . 361538) (2 . 11578)) #((1 . 225338) (2 . 11578)) #((1 . 252564) (2 . 11578)) #((1 . 334312) (2 . 11578)) #((1 . 361538) (2 . 11578)) #((1 . 202310) (2 . 5776)) #((1 . 229536) (2 . 5776)) #((1 . 276566) (2 . 5776)) #((1 . 303792) (2 . 5776)) #((1 . 202310) (2 . 5776)) #((1 . 229536) (2 . 5776)) #((1 . 276566) (2 . 5776)) #((1 . 303792) (2 . 5776)) #((1 . 280444) (2 . 11578)) #((1 . 307670) (2 . 11578)) #((1 . 354700) (2 . 11578)) #((1 . 381926) (2 . 11578)) #((1 . 280444) (2 . 11578)) #((1 . 307670) (2 . 11578)) #((1 . 354700) (2 . 11578)) #((1 . 381926) (2 . 11578)) #((1 . 225536) (2 . 5776)) #((1 . 252762) (2 . 5776)) #((1 . 299792) (2 . 5776)) #((1 . 327018) (2 . 5776)) #((1 . 225536) (2 . 5776)) #((1 . 252762) (2 . 5776)) #((1 . 299792) (2 . 5776)) #((1 . 327018) (2 . 5776)) #((1 . 280468) (2 . 11578)) #((1 . 307694) (2 . 11578)) #((1 . 354724) (2 . 11578)) #((1 . 381950) (2 . 11578)) #((1 . 280468) (2 . 11578)) #((1 . 307694) (2 . 11578)) #((1 . 354724) (2 . 11578)) #((1 . 381950) (2 . 11578)) #((1 . 234508) (2 . 5776)) #((1 . 261734) (2 . 5776)) #((1 . 308502) (2 . 5776)) #((1 . 335728) (2 . 5776)) #((1 . 234508) (2 . 5776)) #((1 . 261734) (2 . 5776)) #((1 . 308502) (2 . 5776)) #((1 . 335728) (2 . 5776)) #((1 . 283746) (2 . 11578)) #((1 . 310972) (2 . 11578)) #((1 . 357740) (2 . 11578)) #((1 . 384966) (2 . 11578)) #((1 . 283746) (2 . 11578)) #((1 . 310972) (2 . 11578)) #((1 . 357740) (2 . 11578)) #((1 . 384966) (2 . 11578)) #((1 . 257730) (2 . 5776)) #((1 . 284956) (2 . 5776)) #((1 . 331724) (2 . 5776)) #((1 . 358950) (2 . 5776)) #((1 . 257730) (2 . 5776)) #((1 . 284956) (2 . 5776)) #((1 . 331724) (2 . 5776)) #((1 . 358950) (2 . 5776)) #((1 . 283766) (2 . 11578)) #((1 . 310992) (2 . 11578)) #((1 . 357760) (2 . 11578)) #((1 . 384986) (2 . 11578)) #((1 . 283766) (2 . 11578)) #((1 . 310992) (2 . 11578)) #((1 . 357760) (2 . 11578)) #((1 . 384986) (2 . 11578)) #((1 . 270930) (2 . 30)) #((1 . 298156) (2 . 30)) #((1 . 274686) (2 . 30)) #((1 . 301912) (2 . 30)) #((1 . 270930) (2 . 30)) #((1 . 298156) (2 . 30)) #((1 . 274686) (2 . 30)) #((1 . 301912) (2 . 30)) #((1 . 297008) (2 . 5814)) #((1 . 324234) (2 . 5814)) #((1 . 300764) (2 . 5814)) #((1 . 327990) (2 . 5814)) #((1 . 297008) (2 . 5814)) #((1 . 324234) (2 . 5814)) #((1 . 300764) (2 . 5814)) #((1 . 327990) (2 . 5814)) #((1 . 270918) (2 . 30)) #((1 . 298144) (2 . 30)) #((1 . 274674) (2 . 30)) #((1 . 301900) (2 . 30)) #((1 . 270918) (2 . 30)) #((1 . 298144) (2 . 30)) #((1 . 274674) (2 . 30)) #((1 . 301900) (2 . 30)) #((1 . 285394) (2 . 5814)) #((1 . 312620) (2 . 5814)) #((1 . 289150) (2 . 5814)) #((1 . 316376) (2 . 5814)) #((1 . 285394) (2 . 5814)) #((1 . 312620) (2 . 5814)) #((1 . 289150) (2 . 5814)) #((1 . 316376) (2 . 5814)) #((1 . 297048) (2 . 182)) #((1 . 324274) (2 . 182)) #((1 . 300632) (2 . 182)) #((1 . 327858) (2 . 182)) #((1 . 297048) (2 . 182)) #((1 . 324274) (2 . 182)) #((1 . 300632) (2 . 182)) #((1 . 327858) (2 . 182)) #((1 . 305788) (2 . 5966)) #((1 . 333014) (2 . 5966)) #((1 . 309372) (2 . 5966)) #((1 . 336598) (2 . 5966)) #((1 . 305788) (2 . 5966)) #((1 . 333014) (2 . 5966)) #((1 . 309372) (2 . 5966)) #((1 . 336598) (2 . 5966)) #((1 . 297034) (2 . 182)) #((1 . 324260) (2 . 182)) #((1 . 300618) (2 . 182)) #((1 . 327844) (2 . 182)) #((1 . 297034) (2 . 182)) #((1 . 324260) (2 . 182)) #((1 . 300618) (2 . 182)) #((1 . 327844) (2 . 182)) #((1 . 294172) (2 . 5966)) #((1 . 321398) (2 . 5966)) #((1 . 297756) (2 . 5966)) #((1 . 324982) (2 . 5966)) #((1 . 294172) (2 . 5966)) #((1 . 321398) (2 . 5966)) #((1 . 297756) (2 . 5966)) #((1 . 324982) (2 . 5966)) #((1 . 329358) (2 . 30)) #((1 . 356584) (2 . 30)) #((1 . 298134) (2 . 30)) #((1 . 325360) (2 . 30)) #((1 . 329358) (2 . 30)) #((1 . 356584) (2 . 30)) #((1 . 298134) (2 . 30)) #((1 . 325360) (2 . 30)) #((1 . 355436) (2 . 5814)) #((1 . 382662) (2 . 5814)) #((1 . 324212) (2 . 5814)) #((1 . 351438) (2 . 5814)) #((1 . 355436) (2 . 5814)) #((1 . 382662) (2 . 5814)) #((1 . 324212) (2 . 5814)) #((1 . 351438) (2 . 5814)) #((1 . 329346) (2 . 30)) #((1 . 356572) (2 . 30)) #((1 . 298122) (2 . 30)) #((1 . 325348) (2 . 30)) #((1 . 329346) (2 . 30)) #((1 . 356572) (2 . 30)) #((1 . 298122) (2 . 30)) #((1 . 325348) (2 . 30)) #((1 . 343822) (2 . 5814)) #((1 . 371048) (2 . 5814)) #((1 . 312598) (2 . 5814)) #((1 . 339824) (2 . 5814)) #((1 . 343822) (2 . 5814)) #((1 . 371048) (2 . 5814)) #((1 . 312598) (2 . 5814)) #((1 . 339824) (2 . 5814)) #((1 . 355476) (2 . 182)) #((1 . 382702) (2 . 182)) #((1 . 324080) (2 . 182)) #((1 . 351306) (2 . 182)) #((1 . 355476) (2 . 182)) #((1 . 382702) (2 . 182)) #((1 . 324080) (2 . 182)) #((1 . 351306) (2 . 182)) #((1 . 364216) (2 . 5966)) #((1 . 391442) (2 . 5966)) #((1 . 332820) (2 . 5966)) #((1 . 360046) (2 . 5966)) #((1 . 364216) (2 . 5966)) #((1 . 391442) (2 . 5966)) #((1 . 332820) (2 . 5966)) #((1 . 360046) (2 . 5966)) #((1 . 355462) (2 . 182)) #((1 . 382688) (2 . 182)) #((1 . 324066) (2 . 182)) #((1 . 351292) (2 . 182)) #((1 . 355462) (2 . 182)) #((1 . 382688) (2 . 182)) #((1 . 324066) (2 . 182)) #((1 . 351292) (2 . 182)) #((1 . 352600) (2 . 5966)) #((1 . 379826) (2 . 5966)) #((1 . 321204) (2 . 5966)) #((1 . 348430) (2 . 5966)) #((1 . 352600) (2 . 5966)) #((1 . 379826) (2 . 5966)) #((1 . 321204) (2 . 5966)) #((1 . 348430) (2 . 5966)) #((1 . 494688)) #((1 . 545236)) #((1 . 713160)) #((1 . 763708)) #((1 . 494688)) #((1 . 545236)) #((1 . 713160)) #((1 . 763708)) #((1 . 325478) (2 . 5802)) #((1 . 350752) (2 . 5802)) #((1 . 434714) (2 . 5802)) #((1 . 459988) (2 . 5802)) #((1 . 325478) (2 . 5802)) #((1 . 350752) (2 . 5802)) #((1 . 434714) (2 . 5802)) #((1 . 459988) (2 . 5802)) #((1 . 541140)) #((1 . 591688)) #((1 . 759612)) #((1 . 810160)) #((1 . 541140)) #((1 . 591688)) #((1 . 759612)) #((1 . 810160)) #((1 . 325502) (2 . 5802)) #((1 . 350776) (2 . 5802)) #((1 . 434738) (2 . 5802)) #((1 . 460012) (2 . 5802)) #((1 . 325502) (2 . 5802)) #((1 . 350776) (2 . 5802)) #((1 . 434738) (2 . 5802)) #((1 . 460012) (2 . 5802)) #((1 . 489772)) #((1 . 540320)) #((1 . 707720)) #((1 . 758268)) #((1 . 489772)) #((1 . 540320)) #((1 . 707720)) #((1 . 758268)) #((1 . 294124) (2 . 5802)) #((1 . 319398) (2 . 5802)) #((1 . 403098) (2 . 5802)) #((1 . 428372) (2 . 5802)) #((1 . 294124) (2 . 5802)) #((1 . 319398) (2 . 5802)) #((1 . 403098) (2 . 5802)) #((1 . 428372) (2 . 5802)) #((1 . 536216)) #((1 . 586764)) #((1 . 754164)) #((1 . 804712)) #((1 . 536216)) #((1 . 586764)) #((1 . 754164)) #((1 . 804712)) #((1 . 294144) (2 . 5802)) #((1 . 319418) (2 . 5802)) #((1 . 403118) (2 . 5802)) #((1 . 428392) (2 . 5802)) #((1 . 294144) (2 . 5802)) #((1 . 319418) (2 . 5802)) #((1 . 403118) (2 . 5802)) #((1 . 428392) (2 . 5802)) #((1 . 611544)) #((1 . 662092)) #((1 . 760056)) #((1 . 810604)) #((1 . 611544)) #((1 . 662092)) #((1 . 760056)) #((1 . 810604)) #((1 . 383906) (2 . 5802)) #((1 . 409180) (2 . 5802)) #((1 . 458162) (2 . 5802)) #((1 . 483436) (2 . 5802)) #((1 . 383906) (2 . 5802)) #((1 . 409180) (2 . 5802)) #((1 . 458162) (2 . 5802)) #((1 . 483436) (2 . 5802)) #((1 . 657996)) #((1 . 708544)) #((1 . 806508)) #((1 . 857056)) #((1 . 657996)) #((1 . 708544)) #((1 . 806508)) #((1 . 857056)) #((1 . 383930) (2 . 5802)) #((1 . 409204) (2 . 5802)) #((1 . 458186) (2 . 5802)) #((1 . 483460) (2 . 5802)) #((1 . 383930) (2 . 5802)) #((1 . 409204) (2 . 5802)) #((1 . 458186) (2 . 5802)) #((1 . 483460) (2 . 5802)) #((1 . 606628)) #((1 . 657176)) #((1 . 754616)) #((1 . 805164)) #((1 . 606628)) #((1 . 657176)) #((1 . 754616)) #((1 . 805164)) #((1 . 352552) (2 . 5802)) #((1 . 377826) (2 . 5802)) #((1 . 426546) (2 . 5802)) #((1 . 451820) (2 . 5802)) #((1 . 352552) (2 . 5802)) #((1 . 377826) (2 . 5802)) #((1 . 426546) (2 . 5802)) #((1 . 451820) (2 . 5802)) #((1 . 653072)) #((1 . 703620)) #((1 . 801060)) #((1 . 851608)) #((1 . 653072)) #((1 . 703620)) #((1 . 801060)) #((1 . 851608)) #((1 . 352572) (2 . 5802)) #((1 . 377846) (2 . 5802)) #((1 . 426566) (2 . 5802)) #((1 . 451840) (2 . 5802)) #((1 . 352572) (2 . 5802)) #((1 . 377846) (2 . 5802)) #((1 . 426566) (2 . 5802)) #((1 . 451840) (2 . 5802)) #((1 . 331072) (2 . 8694)) #((1 . 356346) (2 . 8694)) #((1 . 334828) (2 . 8694)) #((1 . 360102) (2 . 8694)) #((1 . 331072) (2 . 8694)) #((1 . 356346) (2 . 8694)) #((1 . 334828) (2 . 8694)) #((1 . 360102) (2 . 8694)) #((1 . 357150) (2 . 14478)) #((1 . 382424) (2 . 14478)) #((1 . 360906) (2 . 14478)) #((1 . 386180) (2 . 14478)) #((1 . 357150) (2 . 14478)) #((1 . 382424) (2 . 14478)) #((1 . 360906) (2 . 14478)) #((1 . 386180) (2 . 14478)) #((1 . 331060) (2 . 8694)) #((1 . 356334) (2 . 8694)) #((1 . 334816) (2 . 8694)) #((1 . 360090) (2 . 8694)) #((1 . 331060) (2 . 8694)) #((1 . 356334) (2 . 8694)) #((1 . 334816) (2 . 8694)) #((1 . 360090) (2 . 8694)) #((1 . 345536) (2 . 14478)) #((1 . 370810) (2 . 14478)) #((1 . 349292) (2 . 14478)) #((1 . 374566) (2 . 14478)) #((1 . 345536) (2 . 14478)) #((1 . 370810) (2 . 14478)) #((1 . 349292) (2 . 14478)) #((1 . 374566) (2 . 14478)) #((1 . 339862) (2 . 8846)) #((1 . 365136) (2 . 8846)) #((1 . 343446) (2 . 8846)) #((1 . 368720) (2 . 8846)) #((1 . 339862) (2 . 8846)) #((1 . 365136) (2 . 8846)) #((1 . 343446) (2 . 8846)) #((1 . 368720) (2 . 8846)) #((1 . 348602) (2 . 14630)) #((1 . 373876) (2 . 14630)) #((1 . 352186) (2 . 14630)) #((1 . 377460) (2 . 14630)) #((1 . 348602) (2 . 14630)) #((1 . 373876) (2 . 14630)) #((1 . 352186) (2 . 14630)) #((1 . 377460) (2 . 14630)) #((1 . 339848) (2 . 8846)) #((1 . 365122) (2 . 8846)) #((1 . 343432) (2 . 8846)) #((1 . 368706) (2 . 8846)) #((1 . 339848) (2 . 8846)) #((1 . 365122) (2 . 8846)) #((1 . 343432) (2 . 8846)) #((1 . 368706) (2 . 8846)) #((1 . 336986) (2 . 14630)) #((1 . 362260) (2 . 14630)) #((1 . 340570) (2 . 14630)) #((1 . 365844) (2 . 14630)) #((1 . 336986) (2 . 14630)) #((1 . 362260) (2 . 14630)) #((1 . 340570) (2 . 14630)) #((1 . 365844) (2 . 14630)) #((1 . 389500) (2 . 8694)) #((1 . 414774) (2 . 8694)) #((1 . 358276) (2 . 8694)) #((1 . 383550) (2 . 8694)) #((1 . 389500) (2 . 8694)) #((1 . 414774) (2 . 8694)) #((1 . 358276) (2 . 8694)) #((1 . 383550) (2 . 8694)) #((1 . 415578) (2 . 14478)) #((1 . 440852) (2 . 14478)) #((1 . 384354) (2 . 14478)) #((1 . 409628) (2 . 14478)) #((1 . 415578) (2 . 14478)) #((1 . 440852) (2 . 14478)) #((1 . 384354) (2 . 14478)) #((1 . 409628) (2 . 14478)) #((1 . 389488) (2 . 8694)) #((1 . 414762) (2 . 8694)) #((1 . 358264) (2 . 8694)) #((1 . 383538) (2 . 8694)) #((1 . 389488) (2 . 8694)) #((1 . 414762) (2 . 8694)) #((1 . 358264) (2 . 8694)) #((1 . 383538) (2 . 8694)) #((1 . 403964) (2 . 14478)) #((1 . 429238) (2 . 14478)) #((1 . 372740) (2 . 14478)) #((1 . 398014) (2 . 14478)) #((1 . 403964) (2 . 14478)) #((1 . 429238) (2 . 14478)) #((1 . 372740) (2 . 14478)) #((1 . 398014) (2 . 14478)) #((1 . 398290) (2 . 8846)) #((1 . 423564) (2 . 8846)) #((1 . 366894) (2 . 8846)) #((1 . 392168) (2 . 8846)) #((1 . 398290) (2 . 8846)) #((1 . 423564) (2 . 8846)) #((1 . 366894) (2 . 8846)) #((1 . 392168) (2 . 8846)) #((1 . 407030) (2 . 14630)) #((1 . 432304) (2 . 14630)) #((1 . 375634) (2 . 14630)) #((1 . 400908) (2 . 14630)) #((1 . 407030) (2 . 14630)) #((1 . 432304) (2 . 14630)) #((1 . 375634) (2 . 14630)) #((1 . 400908) (2 . 14630)) #((1 . 398276) (2 . 8846)) #((1 . 423550) (2 . 8846)) #((1 . 366880) (2 . 8846)) #((1 . 392154) (2 . 8846)) #((1 . 398276) (2 . 8846)) #((1 . 423550) (2 . 8846)) #((1 . 366880) (2 . 8846)) #((1 . 392154) (2 . 8846)) #((1 . 395414) (2 . 14630)) #((1 . 420688) (2 . 14630)) #((1 . 364018) (2 . 14630)) #((1 . 389292) (2 . 14630)) #((1 . 395414) (2 . 14630)) #((1 . 420688) (2 . 14630)) #((1 . 364018) (2 . 14630)) #((1 . 389292) (2 . 14630)) #((1 . 357166) (2 . 14592)) #((1 . 384392) (2 . 14592)) #((1 . 387562) (2 . 14592)) #((1 . 414788) (2 . 14592)) #((1 . 357166) (2 . 14592)) #((1 . 384392) (2 . 14592)) #((1 . 387562) (2 . 14592)) #((1 . 414788) (2 . 14592)) #((1 . 400554) (2 . 20394)) #((1 . 427780) (2 . 20394)) #((1 . 430950) (2 . 20394)) #((1 . 458176) (2 . 20394)) #((1 . 400554) (2 . 20394)) #((1 . 427780) (2 . 20394)) #((1 . 430950) (2 . 20394)) #((1 . 458176) (2 . 20394)) #((1 . 380386) (2 . 14592)) #((1 . 407612) (2 . 14592)) #((1 . 410782) (2 . 14592)) #((1 . 438008) (2 . 14592)) #((1 . 380386) (2 . 14592)) #((1 . 407612) (2 . 14592)) #((1 . 410782) (2 . 14592)) #((1 . 438008) (2 . 14592)) #((1 . 400572) (2 . 20394)) #((1 . 427798) (2 . 20394)) #((1 . 430968) (2 . 20394)) #((1 . 458194) (2 . 20394)) #((1 . 400572) (2 . 20394)) #((1 . 427798) (2 . 20394)) #((1 . 430968) (2 . 20394)) #((1 . 458194) (2 . 20394)) #((1 . 359538) (2 . 14440)) #((1 . 386764) (2 . 14440)) #((1 . 389672) (2 . 14440)) #((1 . 416898) (2 . 14440)) #((1 . 359538) (2 . 14440)) #((1 . 386764) (2 . 14440)) #((1 . 389672) (2 . 14440)) #((1 . 416898) (2 . 14440)) #((1 . 374030) (2 . 20242)) #((1 . 401256) (2 . 20242)) #((1 . 404164) (2 . 20242)) #((1 . 431390) (2 . 20242)) #((1 . 374030) (2 . 20242)) #((1 . 401256) (2 . 20242)) #((1 . 404164) (2 . 20242)) #((1 . 431390) (2 . 20242)) #((1 . 382754) (2 . 14440)) #((1 . 409980) (2 . 14440)) #((1 . 412888) (2 . 14440)) #((1 . 440114) (2 . 14440)) #((1 . 382754) (2 . 14440)) #((1 . 409980) (2 . 14440)) #((1 . 412888) (2 . 14440)) #((1 . 440114) (2 . 14440)) #((1 . 374044) (2 . 20242)) #((1 . 401270) (2 . 20242)) #((1 . 404178) (2 . 20242)) #((1 . 431404) (2 . 20242)) #((1 . 374044) (2 . 20242)) #((1 . 401270) (2 . 20242)) #((1 . 404178) (2 . 20242)) #((1 . 431404) (2 . 20242)) #((1 . 415594) (2 . 14592)) #((1 . 442820) (2 . 14592)) #((1 . 411010) (2 . 14592)) #((1 . 438236) (2 . 14592)) #((1 . 415594) (2 . 14592)) #((1 . 442820) (2 . 14592)) #((1 . 411010) (2 . 14592)) #((1 . 438236) (2 . 14592)) #((1 . 458982) (2 . 20394)) #((1 . 486208) (2 . 20394)) #((1 . 454398) (2 . 20394)) #((1 . 481624) (2 . 20394)) #((1 . 458982) (2 . 20394)) #((1 . 486208) (2 . 20394)) #((1 . 454398) (2 . 20394)) #((1 . 481624) (2 . 20394)) #((1 . 438814) (2 . 14592)) #((1 . 466040) (2 . 14592)) #((1 . 434230) (2 . 14592)) #((1 . 461456) (2 . 14592)) #((1 . 438814) (2 . 14592)) #((1 . 466040) (2 . 14592)) #((1 . 434230) (2 . 14592)) #((1 . 461456) (2 . 14592)) #((1 . 459000) (2 . 20394)) #((1 . 486226) (2 . 20394)) #((1 . 454416) (2 . 20394)) #((1 . 481642) (2 . 20394)) #((1 . 459000) (2 . 20394)) #((1 . 486226) (2 . 20394)) #((1 . 454416) (2 . 20394)) #((1 . 481642) (2 . 20394)) #((1 . 417966) (2 . 14440)) #((1 . 445192) (2 . 14440)) #((1 . 413120) (2 . 14440)) #((1 . 440346) (2 . 14440)) #((1 . 417966) (2 . 14440)) #((1 . 445192) (2 . 14440)) #((1 . 413120) (2 . 14440)) #((1 . 440346) (2 . 14440)) #((1 . 432458) (2 . 20242)) #((1 . 459684) (2 . 20242)) #((1 . 427612) (2 . 20242)) #((1 . 454838) (2 . 20242)) #((1 . 432458) (2 . 20242)) #((1 . 459684) (2 . 20242)) #((1 . 427612) (2 . 20242)) #((1 . 454838) (2 . 20242)) #((1 . 441182) (2 . 14440)) #((1 . 468408) (2 . 14440)) #((1 . 436336) (2 . 14440)) #((1 . 463562) (2 . 14440)) #((1 . 441182) (2 . 14440)) #((1 . 468408) (2 . 14440)) #((1 . 436336) (2 . 14440)) #((1 . 463562) (2 . 14440)) #((1 . 432472) (2 . 20242)) #((1 . 459698) (2 . 20242)) #((1 . 427626) (2 . 20242)) #((1 . 454852) (2 . 20242)) #((1 . 432472) (2 . 20242)) #((1 . 459698) (2 . 20242)) #((1 . 427626) (2 . 20242)) #((1 . 454852) (2 . 20242)) #((1 . 214618) (2 . 18)) #((1 . 241844) (2 . 18)) #((1 . 165814) (2 . 18)) #((1 . 193040) (2 . 18)) #((1 . 214618) (2 . 18)) #((1 . 241844) (2 . 18)) #((1 . 165814) (2 . 18)) #((1 . 193040) (2 . 18)) #((1 . 217532) (2 . 5802)) #((1 . 244758) (2 . 5802)) #((1 . 168728) (2 . 5802)) #((1 . 195954) (2 . 5802)) #((1 . 217532) (2 . 5802)) #((1 . 244758) (2 . 5802)) #((1 . 168728) (2 . 5802)) #((1 . 195954) (2 . 5802)) #((1 . 214602) (2 . 18)) #((1 . 241828) (2 . 18)) #((1 . 165798) (2 . 18)) #((1 . 193024) (2 . 18)) #((1 . 214602) (2 . 18)) #((1 . 241828) (2 . 18)) #((1 . 165798) (2 . 18)) #((1 . 193024) (2 . 18)) #((1 . 205914) (2 . 5802)) #((1 . 233140) (2 . 5802)) #((1 . 157110) (2 . 5802)) #((1 . 184336) (2 . 5802)) #((1 . 205914) (2 . 5802)) #((1 . 233140) (2 . 5802)) #((1 . 157110) (2 . 5802)) #((1 . 184336) (2 . 5802)) #((1 . 222932) (2 . 18)) #((1 . 250158) (2 . 18)) #((1 . 173956) (2 . 18)) #((1 . 201182) (2 . 18)) #((1 . 222932) (2 . 18)) #((1 . 250158) (2 . 18)) #((1 . 173956) (2 . 18)) #((1 . 201182) (2 . 18)) #((1 . 208508) (2 . 5802)) #((1 . 235734) (2 . 5802)) #((1 . 159532) (2 . 5802)) #((1 . 186758) (2 . 5802)) #((1 . 208508) (2 . 5802)) #((1 . 235734) (2 . 5802)) #((1 . 159532) (2 . 5802)) #((1 . 186758) (2 . 5802)) #((1 . 222914) (2 . 18)) #((1 . 250140) (2 . 18)) #((1 . 173938) (2 . 18)) #((1 . 201164) (2 . 18)) #((1 . 222914) (2 . 18)) #((1 . 250140) (2 . 18)) #((1 . 173938) (2 . 18)) #((1 . 201164) (2 . 18)) #((1 . 196888) (2 . 5802)) #((1 . 224114) (2 . 5802)) #((1 . 147912) (2 . 5802)) #((1 . 175138) (2 . 5802)) #((1 . 196888) (2 . 5802)) #((1 . 224114) (2 . 5802)) #((1 . 147912) (2 . 5802)) #((1 . 175138) (2 . 5802)) #((1 . 273046) (2 . 18)) #((1 . 300272) (2 . 18)) #((1 . 189262) (2 . 18)) #((1 . 216488) (2 . 18)) #((1 . 273046) (2 . 18)) #((1 . 300272) (2 . 18)) #((1 . 189262) (2 . 18)) #((1 . 216488) (2 . 18)) #((1 . 275960) (2 . 5802)) #((1 . 303186) (2 . 5802)) #((1 . 192176) (2 . 5802)) #((1 . 219402) (2 . 5802)) #((1 . 275960) (2 . 5802)) #((1 . 303186) (2 . 5802)) #((1 . 192176) (2 . 5802)) #((1 . 219402) (2 . 5802)) #((1 . 273030) (2 . 18)) #((1 . 300256) (2 . 18)) #((1 . 189246) (2 . 18)) #((1 . 216472) (2 . 18)) #((1 . 273030) (2 . 18)) #((1 . 300256) (2 . 18)) #((1 . 189246) (2 . 18)) #((1 . 216472) (2 . 18)) #((1 . 264342) (2 . 5802)) #((1 . 291568) (2 . 5802)) #((1 . 180558) (2 . 5802)) #((1 . 207784) (2 . 5802)) #((1 . 264342) (2 . 5802)) #((1 . 291568) (2 . 5802)) #((1 . 180558) (2 . 5802)) #((1 . 207784) (2 . 5802)) #((1 . 281360) (2 . 18)) #((1 . 308586) (2 . 18)) #((1 . 197404) (2 . 18)) #((1 . 224630) (2 . 18)) #((1 . 281360) (2 . 18)) #((1 . 308586) (2 . 18)) #((1 . 197404) (2 . 18)) #((1 . 224630) (2 . 18)) #((1 . 266936) (2 . 5802)) #((1 . 294162) (2 . 5802)) #((1 . 182980) (2 . 5802)) #((1 . 210206) (2 . 5802)) #((1 . 266936) (2 . 5802)) #((1 . 294162) (2 . 5802)) #((1 . 182980) (2 . 5802)) #((1 . 210206) (2 . 5802)) #((1 . 281342) (2 . 18)) #((1 . 308568) (2 . 18)) #((1 . 197386) (2 . 18)) #((1 . 224612) (2 . 18)) #((1 . 281342) (2 . 18)) #((1 . 308568) (2 . 18)) #((1 . 197386) (2 . 18)) #((1 . 224612) (2 . 18)) #((1 . 255316) (2 . 5802)) #((1 . 282542) (2 . 5802)) #((1 . 171360) (2 . 5802)) #((1 . 198586) (2 . 5802)) #((1 . 255316) (2 . 5802)) #((1 . 282542) (2 . 5802)) #((1 . 171360) (2 . 5802)) #((1 . 198586) (2 . 5802)) #((1 . 316380) (2 . 152)) #((1 . 341654) (2 . 152)) #((1 . 346776) (2 . 152)) #((1 . 372050) (2 . 152)) #((1 . 316380) (2 . 152)) #((1 . 341654) (2 . 152)) #((1 . 346776) (2 . 152)) #((1 . 372050) (2 . 152)) #((1 . 359768) (2 . 5954)) #((1 . 385042) (2 . 5954)) #((1 . 390164) (2 . 5954)) #((1 . 415438) (2 . 5954)) #((1 . 359768) (2 . 5954)) #((1 . 385042) (2 . 5954)) #((1 . 390164) (2 . 5954)) #((1 . 415438) (2 . 5954)) #((1 . 339600) (2 . 152)) #((1 . 364874) (2 . 152)) #((1 . 369996) (2 . 152)) #((1 . 395270) (2 . 152)) #((1 . 339600) (2 . 152)) #((1 . 364874) (2 . 152)) #((1 . 369996) (2 . 152)) #((1 . 395270) (2 . 152)) #((1 . 359786) (2 . 5954)) #((1 . 385060) (2 . 5954)) #((1 . 390182) (2 . 5954)) #((1 . 415456) (2 . 5954)) #((1 . 359786) (2 . 5954)) #((1 . 385060) (2 . 5954)) #((1 . 390182) (2 . 5954)) #((1 . 415456) (2 . 5954)) #((1 . 568192)) #((1 . 618740)) #((1 . 628460)) #((1 . 679008)) #((1 . 568192)) #((1 . 618740)) #((1 . 628460)) #((1 . 679008)) #((1 . 298588) (2 . 5802)) #((1 . 323862) (2 . 5802)) #((1 . 328722) (2 . 5802)) #((1 . 353996) (2 . 5802)) #((1 . 298588) (2 . 5802)) #((1 . 323862) (2 . 5802)) #((1 . 328722) (2 . 5802)) #((1 . 353996) (2 . 5802)) #((1 . 614624)) #((1 . 665172)) #((1 . 674892)) #((1 . 725440)) #((1 . 614624)) #((1 . 665172)) #((1 . 674892)) #((1 . 725440)) #((1 . 298602) (2 . 5802)) #((1 . 323876) (2 . 5802)) #((1 . 328736) (2 . 5802)) #((1 . 354010) (2 . 5802)) #((1 . 298602) (2 . 5802)) #((1 . 323876) (2 . 5802)) #((1 . 328736) (2 . 5802)) #((1 . 354010) (2 . 5802)) #((1 . 374808) (2 . 152)) #((1 . 400082) (2 . 152)) #((1 . 370224) (2 . 152)) #((1 . 395498) (2 . 152)) #((1 . 374808) (2 . 152)) #((1 . 400082) (2 . 152)) #((1 . 370224) (2 . 152)) #((1 . 395498) (2 . 152)) #((1 . 418196) (2 . 5954)) #((1 . 443470) (2 . 5954)) #((1 . 413612) (2 . 5954)) #((1 . 438886) (2 . 5954)) #((1 . 418196) (2 . 5954)) #((1 . 443470) (2 . 5954)) #((1 . 413612) (2 . 5954)) #((1 . 438886) (2 . 5954)) #((1 . 398028) (2 . 152)) #((1 . 423302) (2 . 152)) #((1 . 393444) (2 . 152)) #((1 . 418718) (2 . 152)) #((1 . 398028) (2 . 152)) #((1 . 423302) (2 . 152)) #((1 . 393444) (2 . 152)) #((1 . 418718) (2 . 152)) #((1 . 418214) (2 . 5954)) #((1 . 443488) (2 . 5954)) #((1 . 413630) (2 . 5954)) #((1 . 438904) (2 . 5954)) #((1 . 418214) (2 . 5954)) #((1 . 443488) (2 . 5954)) #((1 . 413630) (2 . 5954)) #((1 . 438904) (2 . 5954)) #((1 . 685048)) #((1 . 735596)) #((1 . 675356)) #((1 . 725904)) #((1 . 685048)) #((1 . 735596)) #((1 . 675356)) #((1 . 725904)) #((1 . 357016) (2 . 5802)) #((1 . 382290) (2 . 5802)) #((1 . 352170) (2 . 5802)) #((1 . 377444) (2 . 5802)) #((1 . 357016) (2 . 5802)) #((1 . 382290) (2 . 5802)) #((1 . 352170) (2 . 5802)) #((1 . 377444) (2 . 5802)) #((1 . 731480)) #((1 . 782028)) #((1 . 721788)) #((1 . 772336)) #((1 . 731480)) #((1 . 782028)) #((1 . 721788)) #((1 . 772336)) #((1 . 357030) (2 . 5802)) #((1 . 382304) (2 . 5802)) #((1 . 352184) (2 . 5802)) #((1 . 377458) (2 . 5802)) #((1 . 357030) (2 . 5802)) #((1 . 382304) (2 . 5802)) #((1 . 352184) (2 . 5802)) #((1 . 377458) (2 . 5802)) #((1 . 193972) (2 . 18)) #((1 . 219246) (2 . 18)) #((1 . 145168) (2 . 18)) #((1 . 170442) (2 . 18)) #((1 . 193972) (2 . 18)) #((1 . 219246) (2 . 18)) #((1 . 145168) (2 . 18)) #((1 . 170442) (2 . 18)) #((1 . 196886) (2 . 5802)) #((1 . 222160) (2 . 5802)) #((1 . 148082) (2 . 5802)) #((1 . 173356) (2 . 5802)) #((1 . 196886) (2 . 5802)) #((1 . 222160) (2 . 5802)) #((1 . 148082) (2 . 5802)) #((1 . 173356) (2 . 5802)) #((1 . 193956) (2 . 18)) #((1 . 219230) (2 . 18)) #((1 . 145152) (2 . 18)) #((1 . 170426) (2 . 18)) #((1 . 193956) (2 . 18)) #((1 . 219230) (2 . 18)) #((1 . 145152) (2 . 18)) #((1 . 170426) (2 . 18)) #((1 . 185268) (2 . 5802)) #((1 . 210542) (2 . 5802)) #((1 . 136464) (2 . 5802)) #((1 . 161738) (2 . 5802)) #((1 . 185268) (2 . 5802)) #((1 . 210542) (2 . 5802)) #((1 . 136464) (2 . 5802)) #((1 . 161738) (2 . 5802)) #((1 . 184958) (2 . 18)) #((1 . 210232) (2 . 18)) #((1 . 135982) (2 . 18)) #((1 . 161256) (2 . 18)) #((1 . 184958) (2 . 18)) #((1 . 210232) (2 . 18)) #((1 . 135982) (2 . 18)) #((1 . 161256) (2 . 18)) #((1 . 170534) (2 . 5802)) #((1 . 195808) (2 . 5802)) #((1 . 121558) (2 . 5802)) #((1 . 146832) (2 . 5802)) #((1 . 170534) (2 . 5802)) #((1 . 195808) (2 . 5802)) #((1 . 121558) (2 . 5802)) #((1 . 146832) (2 . 5802)) #((1 . 184940) (2 . 18)) #((1 . 210214) (2 . 18)) #((1 . 135964) (2 . 18)) #((1 . 161238) (2 . 18)) #((1 . 184940) (2 . 18)) #((1 . 210214) (2 . 18)) #((1 . 135964) (2 . 18)) #((1 . 161238) (2 . 18)) #((1 . 158914) (2 . 5802)) #((1 . 184188) (2 . 5802)) #((1 . 109938) (2 . 5802)) #((1 . 135212) (2 . 5802)) #((1 . 158914) (2 . 5802)) #((1 . 184188) (2 . 5802)) #((1 . 109938) (2 . 5802)) #((1 . 135212) (2 . 5802)) #((1 . 252400) (2 . 18)) #((1 . 277674) (2 . 18)) #((1 . 168616) (2 . 18)) #((1 . 193890) (2 . 18)) #((1 . 252400) (2 . 18)) #((1 . 277674) (2 . 18)) #((1 . 168616) (2 . 18)) #((1 . 193890) (2 . 18)) #((1 . 255314) (2 . 5802)) #((1 . 280588) (2 . 5802)) #((1 . 171530) (2 . 5802)) #((1 . 196804) (2 . 5802)) #((1 . 255314) (2 . 5802)) #((1 . 280588) (2 . 5802)) #((1 . 171530) (2 . 5802)) #((1 . 196804) (2 . 5802)) #((1 . 252384) (2 . 18)) #((1 . 277658) (2 . 18)) #((1 . 168600) (2 . 18)) #((1 . 193874) (2 . 18)) #((1 . 252384) (2 . 18)) #((1 . 277658) (2 . 18)) #((1 . 168600) (2 . 18)) #((1 . 193874) (2 . 18)) #((1 . 243696) (2 . 5802)) #((1 . 268970) (2 . 5802)) #((1 . 159912) (2 . 5802)) #((1 . 185186) (2 . 5802)) #((1 . 243696) (2 . 5802)) #((1 . 268970) (2 . 5802)) #((1 . 159912) (2 . 5802)) #((1 . 185186) (2 . 5802)) #((1 . 243386) (2 . 18)) #((1 . 268660) (2 . 18)) #((1 . 159430) (2 . 18)) #((1 . 184704) (2 . 18)) #((1 . 243386) (2 . 18)) #((1 . 268660) (2 . 18)) #((1 . 159430) (2 . 18)) #((1 . 184704) (2 . 18)) #((1 . 228962) (2 . 5802)) #((1 . 254236) (2 . 5802)) #((1 . 145006) (2 . 5802)) #((1 . 170280) (2 . 5802)) #((1 . 228962) (2 . 5802)) #((1 . 254236) (2 . 5802)) #((1 . 145006) (2 . 5802)) #((1 . 170280) (2 . 5802)) #((1 . 243368) (2 . 18)) #((1 . 268642) (2 . 18)) #((1 . 159412) (2 . 18)) #((1 . 184686) (2 . 18)) #((1 . 243368) (2 . 18)) #((1 . 268642) (2 . 18)) #((1 . 159412) (2 . 18)) #((1 . 184686) (2 . 18)) #((1 . 217342) (2 . 5802)) #((1 . 242616) (2 . 5802)) #((1 . 133386) (2 . 5802)) #((1 . 158660) (2 . 5802)) #((1 . 217342) (2 . 5802)) #((1 . 242616) (2 . 5802)) #((1 . 133386) (2 . 5802)) #((1 . 158660) (2 . 5802)) #((1 . 230384)) #((1 . 179836)) #((1 . 398612)) #((1 . 348064)) #((1 . 230384)) #((1 . 179836)) #((1 . 398612)) #((1 . 348064)) #((1 . 193326) (2 . 5802)) #((1 . 168052) (2 . 5802)) #((1 . 277440) (2 . 5802)) #((1 . 252166) (2 . 5802)) #((1 . 193326) (2 . 5802)) #((1 . 168052) (2 . 5802)) #((1 . 277440) (2 . 5802)) #((1 . 252166) (2 . 5802)) #((1 . 276836)) #((1 . 226288)) #((1 . 445064)) #((1 . 394516)) #((1 . 276836)) #((1 . 226288)) #((1 . 445064)) #((1 . 394516)) #((1 . 193350) (2 . 5802)) #((1 . 168076) (2 . 5802)) #((1 . 277464) (2 . 5802)) #((1 . 252190) (2 . 5802)) #((1 . 193350) (2 . 5802)) #((1 . 168076) (2 . 5802)) #((1 . 277464) (2 . 5802)) #((1 . 252190) (2 . 5802)) #((1 . 295304)) #((1 . 244756)) #((1 . 463008)) #((1 . 412460)) #((1 . 295304)) #((1 . 244756)) #((1 . 463008)) #((1 . 412460)) #((1 . 196890) (2 . 5802)) #((1 . 171616) (2 . 5802)) #((1 . 280742) (2 . 5802)) #((1 . 255468) (2 . 5802)) #((1 . 196890) (2 . 5802)) #((1 . 171616) (2 . 5802)) #((1 . 280742) (2 . 5802)) #((1 . 255468) (2 . 5802)) #((1 . 341748)) #((1 . 291200)) #((1 . 509452)) #((1 . 458904)) #((1 . 341748)) #((1 . 291200)) #((1 . 509452)) #((1 . 458904)) #((1 . 196910) (2 . 5802)) #((1 . 171636) (2 . 5802)) #((1 . 280762) (2 . 5802)) #((1 . 255488) (2 . 5802)) #((1 . 196910) (2 . 5802)) #((1 . 171636) (2 . 5802)) #((1 . 280762) (2 . 5802)) #((1 . 255488) (2 . 5802)) #((1 . 183488)) #((1 . 132940)) #((1 . 305076)) #((1 . 254528)) #((1 . 183488)) #((1 . 132940)) #((1 . 305076)) #((1 . 254528)) #((1 . 169878) (2 . 5802)) #((1 . 144604) (2 . 5802)) #((1 . 230672) (2 . 5802)) #((1 . 205398) (2 . 5802)) #((1 . 169878) (2 . 5802)) #((1 . 144604) (2 . 5802)) #((1 . 230672) (2 . 5802)) #((1 . 205398) (2 . 5802)) #((1 . 229940)) #((1 . 179392)) #((1 . 351528)) #((1 . 300980)) #((1 . 229940)) #((1 . 179392)) #((1 . 351528)) #((1 . 300980)) #((1 . 169902) (2 . 5802)) #((1 . 144628) (2 . 5802)) #((1 . 230696) (2 . 5802)) #((1 . 205422) (2 . 5802)) #((1 . 169902) (2 . 5802)) #((1 . 144628) (2 . 5802)) #((1 . 230696) (2 . 5802)) #((1 . 205422) (2 . 5802)) #((1 . 248408)) #((1 . 197860)) #((1 . 369472)) #((1 . 318924)) #((1 . 248408)) #((1 . 197860)) #((1 . 369472)) #((1 . 318924)) #((1 . 173442) (2 . 5802)) #((1 . 148168) (2 . 5802)) #((1 . 233974) (2 . 5802)) #((1 . 208700) (2 . 5802)) #((1 . 173442) (2 . 5802)) #((1 . 148168) (2 . 5802)) #((1 . 233974) (2 . 5802)) #((1 . 208700) (2 . 5802)) #((1 . 294852)) #((1 . 244304)) #((1 . 415916)) #((1 . 365368)) #((1 . 294852)) #((1 . 244304)) #((1 . 415916)) #((1 . 365368)) #((1 . 173462) (2 . 5802)) #((1 . 148188) (2 . 5802)) #((1 . 233994) (2 . 5802)) #((1 . 208720) (2 . 5802)) #((1 . 173462) (2 . 5802)) #((1 . 148188) (2 . 5802)) #((1 . 233994) (2 . 5802)) #((1 . 208720) (2 . 5802)) #((1 . 350392) (2 . 30)) #((1 . 325118) (2 . 30)) #((1 . 340844) (2 . 30)) #((1 . 315570) (2 . 30)) #((1 . 350392) (2 . 30)) #((1 . 325118) (2 . 30)) #((1 . 340844) (2 . 30)) #((1 . 315570) (2 . 30)) #((1 . 376470) (2 . 5814)) #((1 . 351196) (2 . 5814)) #((1 . 366922) (2 . 5814)) #((1 . 341648) (2 . 5814)) #((1 . 376470) (2 . 5814)) #((1 . 351196) (2 . 5814)) #((1 . 366922) (2 . 5814)) #((1 . 341648) (2 . 5814)) #((1 . 350380) (2 . 30)) #((1 . 325106) (2 . 30)) #((1 . 340832) (2 . 30)) #((1 . 315558) (2 . 30)) #((1 . 350380) (2 . 30)) #((1 . 325106) (2 . 30)) #((1 . 340832) (2 . 30)) #((1 . 315558) (2 . 30)) #((1 . 364856) (2 . 5814)) #((1 . 339582) (2 . 5814)) #((1 . 355308) (2 . 5814)) #((1 . 330034) (2 . 5814)) #((1 . 364856) (2 . 5814)) #((1 . 339582) (2 . 5814)) #((1 . 355308) (2 . 5814)) #((1 . 330034) (2 . 5814)) #((1 . 376682) (2 . 182)) #((1 . 351408) (2 . 182)) #((1 . 366962) (2 . 182)) #((1 . 341688) (2 . 182)) #((1 . 376682) (2 . 182)) #((1 . 351408) (2 . 182)) #((1 . 366962) (2 . 182)) #((1 . 341688) (2 . 182)) #((1 . 385422) (2 . 5966)) #((1 . 360148) (2 . 5966)) #((1 . 375702) (2 . 5966)) #((1 . 350428) (2 . 5966)) #((1 . 385422) (2 . 5966)) #((1 . 360148) (2 . 5966)) #((1 . 375702) (2 . 5966)) #((1 . 350428) (2 . 5966)) #((1 . 376668) (2 . 182)) #((1 . 351394) (2 . 182)) #((1 . 366948) (2 . 182)) #((1 . 341674) (2 . 182)) #((1 . 376668) (2 . 182)) #((1 . 351394) (2 . 182)) #((1 . 366948) (2 . 182)) #((1 . 341674) (2 . 182)) #((1 . 373806) (2 . 5966)) #((1 . 348532) (2 . 5966)) #((1 . 364086) (2 . 5966)) #((1 . 338812) (2 . 5966)) #((1 . 373806) (2 . 5966)) #((1 . 348532) (2 . 5966)) #((1 . 364086) (2 . 5966)) #((1 . 338812) (2 . 5966)) #((1 . 326944) (2 . 30)) #((1 . 301670) (2 . 30)) #((1 . 294076) (2 . 30)) #((1 . 268802) (2 . 30)) #((1 . 326944) (2 . 30)) #((1 . 301670) (2 . 30)) #((1 . 294076) (2 . 30)) #((1 . 268802) (2 . 30)) #((1 . 353022) (2 . 5814)) #((1 . 327748) (2 . 5814)) #((1 . 320154) (2 . 5814)) #((1 . 294880) (2 . 5814)) #((1 . 353022) (2 . 5814)) #((1 . 327748) (2 . 5814)) #((1 . 320154) (2 . 5814)) #((1 . 294880) (2 . 5814)) #((1 . 326932) (2 . 30)) #((1 . 301658) (2 . 30)) #((1 . 294064) (2 . 30)) #((1 . 268790) (2 . 30)) #((1 . 326932) (2 . 30)) #((1 . 301658) (2 . 30)) #((1 . 294064) (2 . 30)) #((1 . 268790) (2 . 30)) #((1 . 341408) (2 . 5814)) #((1 . 316134) (2 . 5814)) #((1 . 308540) (2 . 5814)) #((1 . 283266) (2 . 5814)) #((1 . 341408) (2 . 5814)) #((1 . 316134) (2 . 5814)) #((1 . 308540) (2 . 5814)) #((1 . 283266) (2 . 5814)) #((1 . 353234) (2 . 182)) #((1 . 327960) (2 . 182)) #((1 . 320194) (2 . 182)) #((1 . 294920) (2 . 182)) #((1 . 353234) (2 . 182)) #((1 . 327960) (2 . 182)) #((1 . 320194) (2 . 182)) #((1 . 294920) (2 . 182)) #((1 . 361974) (2 . 5966)) #((1 . 336700) (2 . 5966)) #((1 . 328934) (2 . 5966)) #((1 . 303660) (2 . 5966)) #((1 . 361974) (2 . 5966)) #((1 . 336700) (2 . 5966)) #((1 . 328934) (2 . 5966)) #((1 . 303660) (2 . 5966)) #((1 . 353220) (2 . 182)) #((1 . 327946) (2 . 182)) #((1 . 320180) (2 . 182)) #((1 . 294906) (2 . 182)) #((1 . 353220) (2 . 182)) #((1 . 327946) (2 . 182)) #((1 . 320180) (2 . 182)) #((1 . 294906) (2 . 182)) #((1 . 350358) (2 . 5966)) #((1 . 325084) (2 . 5966)) #((1 . 317318) (2 . 5966)) #((1 . 292044) (2 . 5966)) #((1 . 350358) (2 . 5966)) #((1 . 325084) (2 . 5966)) #((1 . 317318) (2 . 5966)) #((1 . 292044) (2 . 5966)) #((1 . 385324)) #((1 . 330872)) #((1 . 553552)) #((1 . 499100)) #((1 . 385324)) #((1 . 330872)) #((1 . 553552)) #((1 . 499100)) #((1 . 270796) (2 . 5802)) #((1 . 243570) (2 . 5802)) #((1 . 354910) (2 . 5802)) #((1 . 327684) (2 . 5802)) #((1 . 270796) (2 . 5802)) #((1 . 243570) (2 . 5802)) #((1 . 354910) (2 . 5802)) #((1 . 327684) (2 . 5802)) #((1 . 431776)) #((1 . 377324)) #((1 . 600004)) #((1 . 545552)) #((1 . 431776)) #((1 . 377324)) #((1 . 600004)) #((1 . 545552)) #((1 . 270820) (2 . 5802)) #((1 . 243594) (2 . 5802)) #((1 . 354934) (2 . 5802)) #((1 . 327708) (2 . 5802)) #((1 . 270820) (2 . 5802)) #((1 . 243594) (2 . 5802)) #((1 . 354934) (2 . 5802)) #((1 . 327708) (2 . 5802)) #((1 . 380932)) #((1 . 326480)) #((1 . 548636)) #((1 . 494184)) #((1 . 380932)) #((1 . 326480)) #((1 . 548636)) #((1 . 494184)) #((1 . 239704) (2 . 5802)) #((1 . 212478) (2 . 5802)) #((1 . 323556) (2 . 5802)) #((1 . 296330) (2 . 5802)) #((1 . 239704) (2 . 5802)) #((1 . 212478) (2 . 5802)) #((1 . 323556) (2 . 5802)) #((1 . 296330) (2 . 5802)) #((1 . 427376)) #((1 . 372924)) #((1 . 595080)) #((1 . 540628)) #((1 . 427376)) #((1 . 372924)) #((1 . 595080)) #((1 . 540628)) #((1 . 239724) (2 . 5802)) #((1 . 212498) (2 . 5802)) #((1 . 323576) (2 . 5802)) #((1 . 296350) (2 . 5802)) #((1 . 239724) (2 . 5802)) #((1 . 212498) (2 . 5802)) #((1 . 323576) (2 . 5802)) #((1 . 296350) (2 . 5802)) #((1 . 338428)) #((1 . 283976)) #((1 . 460016)) #((1 . 405564)) #((1 . 338428)) #((1 . 283976)) #((1 . 460016)) #((1 . 405564)) #((1 . 247348) (2 . 5802)) #((1 . 220122) (2 . 5802)) #((1 . 308142) (2 . 5802)) #((1 . 280916) (2 . 5802)) #((1 . 247348) (2 . 5802)) #((1 . 220122) (2 . 5802)) #((1 . 308142) (2 . 5802)) #((1 . 280916) (2 . 5802)) #((1 . 384880)) #((1 . 330428)) #((1 . 506468)) #((1 . 452016)) #((1 . 384880)) #((1 . 330428)) #((1 . 506468)) #((1 . 452016)) #((1 . 247372) (2 . 5802)) #((1 . 220146) (2 . 5802)) #((1 . 308166) (2 . 5802)) #((1 . 280940) (2 . 5802)) #((1 . 247372) (2 . 5802)) #((1 . 220146) (2 . 5802)) #((1 . 308166) (2 . 5802)) #((1 . 280940) (2 . 5802)) #((1 . 334036)) #((1 . 279584)) #((1 . 455100)) #((1 . 400648)) #((1 . 334036)) #((1 . 279584)) #((1 . 455100)) #((1 . 400648)) #((1 . 216256) (2 . 5802)) #((1 . 189030) (2 . 5802)) #((1 . 276788) (2 . 5802)) #((1 . 249562) (2 . 5802)) #((1 . 216256) (2 . 5802)) #((1 . 189030) (2 . 5802)) #((1 . 276788) (2 . 5802)) #((1 . 249562) (2 . 5802)) #((1 . 380480)) #((1 . 326028)) #((1 . 501544)) #((1 . 447092)) #((1 . 380480)) #((1 . 326028)) #((1 . 501544)) #((1 . 447092)) #((1 . 216276) (2 . 5802)) #((1 . 189050) (2 . 5802)) #((1 . 276808) (2 . 5802)) #((1 . 249582) (2 . 5802)) #((1 . 216276) (2 . 5802)) #((1 . 189050) (2 . 5802)) #((1 . 276808) (2 . 5802)) #((1 . 249582) (2 . 5802)) #((1 . 375878) (2 . 14470)) #((1 . 348652) (2 . 14470)) #((1 . 366330) (2 . 14470)) #((1 . 339104) (2 . 14470)) #((1 . 375878) (2 . 14470)) #((1 . 348652) (2 . 14470)) #((1 . 366330) (2 . 14470)) #((1 . 339104) (2 . 14470)) #((1 . 401956) (2 . 20254)) #((1 . 374730) (2 . 20254)) #((1 . 392408) (2 . 20254)) #((1 . 365182) (2 . 20254)) #((1 . 401956) (2 . 20254)) #((1 . 374730) (2 . 20254)) #((1 . 392408) (2 . 20254)) #((1 . 365182) (2 . 20254)) #((1 . 375866) (2 . 14470)) #((1 . 348640) (2 . 14470)) #((1 . 366318) (2 . 14470)) #((1 . 339092) (2 . 14470)) #((1 . 375866) (2 . 14470)) #((1 . 348640) (2 . 14470)) #((1 . 366318) (2 . 14470)) #((1 . 339092) (2 . 14470)) #((1 . 390342) (2 . 20254)) #((1 . 363116) (2 . 20254)) #((1 . 380794) (2 . 20254)) #((1 . 353568) (2 . 20254)) #((1 . 390342) (2 . 20254)) #((1 . 363116) (2 . 20254)) #((1 . 380794) (2 . 20254)) #((1 . 353568) (2 . 20254)) #((1 . 384840) (2 . 14622)) #((1 . 357614) (2 . 14622)) #((1 . 375120) (2 . 14622)) #((1 . 347894) (2 . 14622)) #((1 . 384840) (2 . 14622)) #((1 . 357614) (2 . 14622)) #((1 . 375120) (2 . 14622)) #((1 . 347894) (2 . 14622)) #((1 . 393580) (2 . 20406)) #((1 . 366354) (2 . 20406)) #((1 . 383860) (2 . 20406)) #((1 . 356634) (2 . 20406)) #((1 . 393580) (2 . 20406)) #((1 . 366354) (2 . 20406)) #((1 . 383860) (2 . 20406)) #((1 . 356634) (2 . 20406)) #((1 . 384826) (2 . 14622)) #((1 . 357600) (2 . 14622)) #((1 . 375106) (2 . 14622)) #((1 . 347880) (2 . 14622)) #((1 . 384826) (2 . 14622)) #((1 . 357600) (2 . 14622)) #((1 . 375106) (2 . 14622)) #((1 . 347880) (2 . 14622)) #((1 . 381964) (2 . 20406)) #((1 . 354738) (2 . 20406)) #((1 . 372244) (2 . 20406)) #((1 . 345018) (2 . 20406)) #((1 . 381964) (2 . 20406)) #((1 . 354738) (2 . 20406)) #((1 . 372244) (2 . 20406)) #((1 . 345018) (2 . 20406)) #((1 . 352430) (2 . 14470)) #((1 . 325204) (2 . 14470)) #((1 . 319562) (2 . 14470)) #((1 . 292336) (2 . 14470)) #((1 . 352430) (2 . 14470)) #((1 . 325204) (2 . 14470)) #((1 . 319562) (2 . 14470)) #((1 . 292336) (2 . 14470)) #((1 . 378508) (2 . 20254)) #((1 . 351282) (2 . 20254)) #((1 . 345640) (2 . 20254)) #((1 . 318414) (2 . 20254)) #((1 . 378508) (2 . 20254)) #((1 . 351282) (2 . 20254)) #((1 . 345640) (2 . 20254)) #((1 . 318414) (2 . 20254)) #((1 . 352418) (2 . 14470)) #((1 . 325192) (2 . 14470)) #((1 . 319550) (2 . 14470)) #((1 . 292324) (2 . 14470)) #((1 . 352418) (2 . 14470)) #((1 . 325192) (2 . 14470)) #((1 . 319550) (2 . 14470)) #((1 . 292324) (2 . 14470)) #((1 . 366894) (2 . 20254)) #((1 . 339668) (2 . 20254)) #((1 . 334026) (2 . 20254)) #((1 . 306800) (2 . 20254)) #((1 . 366894) (2 . 20254)) #((1 . 339668) (2 . 20254)) #((1 . 334026) (2 . 20254)) #((1 . 306800) (2 . 20254)) #((1 . 361392) (2 . 14622)) #((1 . 334166) (2 . 14622)) #((1 . 328352) (2 . 14622)) #((1 . 301126) (2 . 14622)) #((1 . 361392) (2 . 14622)) #((1 . 334166) (2 . 14622)) #((1 . 328352) (2 . 14622)) #((1 . 301126) (2 . 14622)) #((1 . 370132) (2 . 20406)) #((1 . 342906) (2 . 20406)) #((1 . 337092) (2 . 20406)) #((1 . 309866) (2 . 20406)) #((1 . 370132) (2 . 20406)) #((1 . 342906) (2 . 20406)) #((1 . 337092) (2 . 20406)) #((1 . 309866) (2 . 20406)) #((1 . 361378) (2 . 14622)) #((1 . 334152) (2 . 14622)) #((1 . 328338) (2 . 14622)) #((1 . 301112) (2 . 14622)) #((1 . 361378) (2 . 14622)) #((1 . 334152) (2 . 14622)) #((1 . 328338) (2 . 14622)) #((1 . 301112) (2 . 14622)) #((1 . 358516) (2 . 20406)) #((1 . 331290) (2 . 20406)) #((1 . 325476) (2 . 20406)) #((1 . 298250) (2 . 20406)) #((1 . 358516) (2 . 20406)) #((1 . 331290) (2 . 20406)) #((1 . 325476) (2 . 20406)) #((1 . 298250) (2 . 20406)) #((1 . 407316) (2 . 8816)) #((1 . 382042) (2 . 8816)) #((1 . 412590) (2 . 8816)) #((1 . 387316) (2 . 8816)) #((1 . 407316) (2 . 8816)) #((1 . 382042) (2 . 8816)) #((1 . 412590) (2 . 8816)) #((1 . 387316) (2 . 8816)) #((1 . 450704) (2 . 14618)) #((1 . 425430) (2 . 14618)) #((1 . 455978) (2 . 14618)) #((1 . 430704) (2 . 14618)) #((1 . 450704) (2 . 14618)) #((1 . 425430) (2 . 14618)) #((1 . 455978) (2 . 14618)) #((1 . 430704) (2 . 14618)) #((1 . 430536) (2 . 8816)) #((1 . 405262) (2 . 8816)) #((1 . 435810) (2 . 8816)) #((1 . 410536) (2 . 8816)) #((1 . 430536) (2 . 8816)) #((1 . 405262) (2 . 8816)) #((1 . 435810) (2 . 8816)) #((1 . 410536) (2 . 8816)) #((1 . 450722) (2 . 14618)) #((1 . 425448) (2 . 14618)) #((1 . 455996) (2 . 14618)) #((1 . 430722) (2 . 14618)) #((1 . 450722) (2 . 14618)) #((1 . 425448) (2 . 14618)) #((1 . 455996) (2 . 14618)) #((1 . 430722) (2 . 14618)) #((1 . 409950) (2 . 8664)) #((1 . 384676) (2 . 8664)) #((1 . 414962) (2 . 8664)) #((1 . 389688) (2 . 8664)) #((1 . 409950) (2 . 8664)) #((1 . 384676) (2 . 8664)) #((1 . 414962) (2 . 8664)) #((1 . 389688) (2 . 8664)) #((1 . 424442) (2 . 14466)) #((1 . 399168) (2 . 14466)) #((1 . 429454) (2 . 14466)) #((1 . 404180) (2 . 14466)) #((1 . 424442) (2 . 14466)) #((1 . 399168) (2 . 14466)) #((1 . 429454) (2 . 14466)) #((1 . 404180) (2 . 14466)) #((1 . 433166) (2 . 8664)) #((1 . 407892) (2 . 8664)) #((1 . 438178) (2 . 8664)) #((1 . 412904) (2 . 8664)) #((1 . 433166) (2 . 8664)) #((1 . 407892) (2 . 8664)) #((1 . 438178) (2 . 8664)) #((1 . 412904) (2 . 8664)) #((1 . 424456) (2 . 14466)) #((1 . 399182) (2 . 14466)) #((1 . 429468) (2 . 14466)) #((1 . 404194) (2 . 14466)) #((1 . 424456) (2 . 14466)) #((1 . 399182) (2 . 14466)) #((1 . 429468) (2 . 14466)) #((1 . 404194) (2 . 14466)) #((1 . 383868) (2 . 8816)) #((1 . 358594) (2 . 8816)) #((1 . 365822) (2 . 8816)) #((1 . 340548) (2 . 8816)) #((1 . 383868) (2 . 8816)) #((1 . 358594) (2 . 8816)) #((1 . 365822) (2 . 8816)) #((1 . 340548) (2 . 8816)) #((1 . 427256) (2 . 14618)) #((1 . 401982) (2 . 14618)) #((1 . 409210) (2 . 14618)) #((1 . 383936) (2 . 14618)) #((1 . 427256) (2 . 14618)) #((1 . 401982) (2 . 14618)) #((1 . 409210) (2 . 14618)) #((1 . 383936) (2 . 14618)) #((1 . 407088) (2 . 8816)) #((1 . 381814) (2 . 8816)) #((1 . 389042) (2 . 8816)) #((1 . 363768) (2 . 8816)) #((1 . 407088) (2 . 8816)) #((1 . 381814) (2 . 8816)) #((1 . 389042) (2 . 8816)) #((1 . 363768) (2 . 8816)) #((1 . 427274) (2 . 14618)) #((1 . 402000) (2 . 14618)) #((1 . 409228) (2 . 14618)) #((1 . 383954) (2 . 14618)) #((1 . 427274) (2 . 14618)) #((1 . 402000) (2 . 14618)) #((1 . 409228) (2 . 14618)) #((1 . 383954) (2 . 14618)) #((1 . 386502) (2 . 8664)) #((1 . 361228) (2 . 8664)) #((1 . 368194) (2 . 8664)) #((1 . 342920) (2 . 8664)) #((1 . 386502) (2 . 8664)) #((1 . 361228) (2 . 8664)) #((1 . 368194) (2 . 8664)) #((1 . 342920) (2 . 8664)) #((1 . 400994) (2 . 14466)) #((1 . 375720) (2 . 14466)) #((1 . 382686) (2 . 14466)) #((1 . 357412) (2 . 14466)) #((1 . 400994) (2 . 14466)) #((1 . 375720) (2 . 14466)) #((1 . 382686) (2 . 14466)) #((1 . 357412) (2 . 14466)) #((1 . 409718) (2 . 8664)) #((1 . 384444) (2 . 8664)) #((1 . 391410) (2 . 8664)) #((1 . 366136) (2 . 8664)) #((1 . 409718) (2 . 8664)) #((1 . 384444) (2 . 8664)) #((1 . 391410) (2 . 8664)) #((1 . 366136) (2 . 8664)) #((1 . 401008) (2 . 14466)) #((1 . 375734) (2 . 14466)) #((1 . 382700) (2 . 14466)) #((1 . 357426) (2 . 14466)) #((1 . 401008) (2 . 14466)) #((1 . 375734) (2 . 14466)) #((1 . 382700) (2 . 14466)) #((1 . 357426) (2 . 14466)) #((1 . 346640) (2 . 18)) #((1 . 321366) (2 . 18)) #((1 . 284532) (2 . 18)) #((1 . 259258) (2 . 18)) #((1 . 346640) (2 . 18)) #((1 . 321366) (2 . 18)) #((1 . 284532) (2 . 18)) #((1 . 259258) (2 . 18)) #((1 . 349554) (2 . 5802)) #((1 . 324280) (2 . 5802)) #((1 . 287446) (2 . 5802)) #((1 . 262172) (2 . 5802)) #((1 . 349554) (2 . 5802)) #((1 . 324280) (2 . 5802)) #((1 . 287446) (2 . 5802)) #((1 . 262172) (2 . 5802)) #((1 . 346624) (2 . 18)) #((1 . 321350) (2 . 18)) #((1 . 284516) (2 . 18)) #((1 . 259242) (2 . 18)) #((1 . 346624) (2 . 18)) #((1 . 321350) (2 . 18)) #((1 . 284516) (2 . 18)) #((1 . 259242) (2 . 18)) #((1 . 337936) (2 . 5802)) #((1 . 312662) (2 . 5802)) #((1 . 275828) (2 . 5802)) #((1 . 250554) (2 . 5802)) #((1 . 337936) (2 . 5802)) #((1 . 312662) (2 . 5802)) #((1 . 275828) (2 . 5802)) #((1 . 250554) (2 . 5802)) #((1 . 355126) (2 . 18)) #((1 . 329852) (2 . 18)) #((1 . 292846) (2 . 18)) #((1 . 267572) (2 . 18)) #((1 . 355126) (2 . 18)) #((1 . 329852) (2 . 18)) #((1 . 292846) (2 . 18)) #((1 . 267572) (2 . 18)) #((1 . 340702) (2 . 5802)) #((1 . 315428) (2 . 5802)) #((1 . 278422) (2 . 5802)) #((1 . 253148) (2 . 5802)) #((1 . 340702) (2 . 5802)) #((1 . 315428) (2 . 5802)) #((1 . 278422) (2 . 5802)) #((1 . 253148) (2 . 5802)) #((1 . 355108) (2 . 18)) #((1 . 329834) (2 . 18)) #((1 . 292828) (2 . 18)) #((1 . 267554) (2 . 18)) #((1 . 355108) (2 . 18)) #((1 . 329834) (2 . 18)) #((1 . 292828) (2 . 18)) #((1 . 267554) (2 . 18)) #((1 . 329082) (2 . 5802)) #((1 . 303808) (2 . 5802)) #((1 . 266802) (2 . 5802)) #((1 . 241528) (2 . 5802)) #((1 . 329082) (2 . 5802)) #((1 . 303808) (2 . 5802)) #((1 . 266802) (2 . 5802)) #((1 . 241528) (2 . 5802)) #((1 . 323192) (2 . 18)) #((1 . 297918) (2 . 18)) #((1 . 237764) (2 . 18)) #((1 . 212490) (2 . 18)) #((1 . 323192) (2 . 18)) #((1 . 297918) (2 . 18)) #((1 . 237764) (2 . 18)) #((1 . 212490) (2 . 18)) #((1 . 326106) (2 . 5802)) #((1 . 300832) (2 . 5802)) #((1 . 240678) (2 . 5802)) #((1 . 215404) (2 . 5802)) #((1 . 326106) (2 . 5802)) #((1 . 300832) (2 . 5802)) #((1 . 240678) (2 . 5802)) #((1 . 215404) (2 . 5802)) #((1 . 323176) (2 . 18)) #((1 . 297902) (2 . 18)) #((1 . 237748) (2 . 18)) #((1 . 212474) (2 . 18)) #((1 . 323176) (2 . 18)) #((1 . 297902) (2 . 18)) #((1 . 237748) (2 . 18)) #((1 . 212474) (2 . 18)) #((1 . 314488) (2 . 5802)) #((1 . 289214) (2 . 5802)) #((1 . 229060) (2 . 5802)) #((1 . 203786) (2 . 5802)) #((1 . 314488) (2 . 5802)) #((1 . 289214) (2 . 5802)) #((1 . 229060) (2 . 5802)) #((1 . 203786) (2 . 5802)) #((1 . 331678) (2 . 18)) #((1 . 306404) (2 . 18)) #((1 . 246078) (2 . 18)) #((1 . 220804) (2 . 18)) #((1 . 331678) (2 . 18)) #((1 . 306404) (2 . 18)) #((1 . 246078) (2 . 18)) #((1 . 220804) (2 . 18)) #((1 . 317254) (2 . 5802)) #((1 . 291980) (2 . 5802)) #((1 . 231654) (2 . 5802)) #((1 . 206380) (2 . 5802)) #((1 . 317254) (2 . 5802)) #((1 . 291980) (2 . 5802)) #((1 . 231654) (2 . 5802)) #((1 . 206380) (2 . 5802)) #((1 . 331660) (2 . 18)) #((1 . 306386) (2 . 18)) #((1 . 246060) (2 . 18)) #((1 . 220786) (2 . 18)) #((1 . 331660) (2 . 18)) #((1 . 306386) (2 . 18)) #((1 . 246060) (2 . 18)) #((1 . 220786) (2 . 18)) #((1 . 305634) (2 . 5802)) #((1 . 280360) (2 . 5802)) #((1 . 220034) (2 . 5802)) #((1 . 194760) (2 . 5802)) #((1 . 305634) (2 . 5802)) #((1 . 280360) (2 . 5802)) #((1 . 220034) (2 . 5802)) #((1 . 194760) (2 . 5802)) #((1 . 340538) (2 . 152)) #((1 . 313312) (2 . 152)) #((1 . 345812) (2 . 152)) #((1 . 318586) (2 . 152)) #((1 . 340538) (2 . 152)) #((1 . 313312) (2 . 152)) #((1 . 345812) (2 . 152)) #((1 . 318586) (2 . 152)) #((1 . 383926) (2 . 5954)) #((1 . 356700) (2 . 5954)) #((1 . 389200) (2 . 5954)) #((1 . 361974) (2 . 5954)) #((1 . 383926) (2 . 5954)) #((1 . 356700) (2 . 5954)) #((1 . 389200) (2 . 5954)) #((1 . 361974) (2 . 5954)) #((1 . 363758) (2 . 152)) #((1 . 336532) (2 . 152)) #((1 . 369032) (2 . 152)) #((1 . 341806) (2 . 152)) #((1 . 363758) (2 . 152)) #((1 . 336532) (2 . 152)) #((1 . 369032) (2 . 152)) #((1 . 341806) (2 . 152)) #((1 . 383944) (2 . 5954)) #((1 . 356718) (2 . 5954)) #((1 . 389218) (2 . 5954)) #((1 . 361992) (2 . 5954)) #((1 . 383944) (2 . 5954)) #((1 . 356718) (2 . 5954)) #((1 . 389218) (2 . 5954)) #((1 . 361992) (2 . 5954)) #((1 . 617032)) #((1 . 562580)) #((1 . 627056)) #((1 . 572604)) #((1 . 617032)) #((1 . 562580)) #((1 . 627056)) #((1 . 572604)) #((1 . 323008) (2 . 5802)) #((1 . 295782) (2 . 5802)) #((1 . 328020) (2 . 5802)) #((1 . 300794) (2 . 5802)) #((1 . 323008) (2 . 5802)) #((1 . 295782) (2 . 5802)) #((1 . 328020) (2 . 5802)) #((1 . 300794) (2 . 5802)) #((1 . 663464)) #((1 . 609012)) #((1 . 673488)) #((1 . 619036)) #((1 . 663464)) #((1 . 609012)) #((1 . 673488)) #((1 . 619036)) #((1 . 323022) (2 . 5802)) #((1 . 295796) (2 . 5802)) #((1 . 328034) (2 . 5802)) #((1 . 300808) (2 . 5802)) #((1 . 323022) (2 . 5802)) #((1 . 295796) (2 . 5802)) #((1 . 328034) (2 . 5802)) #((1 . 300808) (2 . 5802)) #((1 . 317090) (2 . 152)) #((1 . 289864) (2 . 152)) #((1 . 299044) (2 . 152)) #((1 . 271818) (2 . 152)) #((1 . 317090) (2 . 152)) #((1 . 289864) (2 . 152)) #((1 . 299044) (2 . 152)) #((1 . 271818) (2 . 152)) #((1 . 360478) (2 . 5954)) #((1 . 333252) (2 . 5954)) #((1 . 342432) (2 . 5954)) #((1 . 315206) (2 . 5954)) #((1 . 360478) (2 . 5954)) #((1 . 333252) (2 . 5954)) #((1 . 342432) (2 . 5954)) #((1 . 315206) (2 . 5954)) #((1 . 340310) (2 . 152)) #((1 . 313084) (2 . 152)) #((1 . 322264) (2 . 152)) #((1 . 295038) (2 . 152)) #((1 . 340310) (2 . 152)) #((1 . 313084) (2 . 152)) #((1 . 322264) (2 . 152)) #((1 . 295038) (2 . 152)) #((1 . 360496) (2 . 5954)) #((1 . 333270) (2 . 5954)) #((1 . 342450) (2 . 5954)) #((1 . 315224) (2 . 5954)) #((1 . 360496) (2 . 5954)) #((1 . 333270) (2 . 5954)) #((1 . 342450) (2 . 5954)) #((1 . 315224) (2 . 5954)) #((1 . 570136)) #((1 . 515684)) #((1 . 533520)) #((1 . 479068)) #((1 . 570136)) #((1 . 515684)) #((1 . 533520)) #((1 . 479068)) #((1 . 299560) (2 . 5802)) #((1 . 272334) (2 . 5802)) #((1 . 281252) (2 . 5802)) #((1 . 254026) (2 . 5802)) #((1 . 299560) (2 . 5802)) #((1 . 272334) (2 . 5802)) #((1 . 281252) (2 . 5802)) #((1 . 254026) (2 . 5802)) #((1 . 616568)) #((1 . 562116)) #((1 . 579952)) #((1 . 525500)) #((1 . 616568)) #((1 . 562116)) #((1 . 579952)) #((1 . 525500)) #((1 . 299574) (2 . 5802)) #((1 . 272348) (2 . 5802)) #((1 . 281266) (2 . 5802)) #((1 . 254040) (2 . 5802)) #((1 . 299574) (2 . 5802)) #((1 . 272348) (2 . 5802)) #((1 . 281266) (2 . 5802)) #((1 . 254040) (2 . 5802)) #((1 . 291338) (2 . 5794)) #((1 . 264112) (2 . 5794)) #((1 . 229230) (2 . 5794)) #((1 . 202004) (2 . 5794)) #((1 . 291338) (2 . 5794)) #((1 . 264112) (2 . 5794)) #((1 . 229230) (2 . 5794)) #((1 . 202004) (2 . 5794)) #((1 . 294252) (2 . 11578)) #((1 . 267026) (2 . 11578)) #((1 . 232144) (2 . 11578)) #((1 . 204918) (2 . 11578)) #((1 . 294252) (2 . 11578)) #((1 . 267026) (2 . 11578)) #((1 . 232144) (2 . 11578)) #((1 . 204918) (2 . 11578)) #((1 . 291322) (2 . 5794)) #((1 . 264096) (2 . 5794)) #((1 . 229214) (2 . 5794)) #((1 . 201988) (2 . 5794)) #((1 . 291322) (2 . 5794)) #((1 . 264096) (2 . 5794)) #((1 . 229214) (2 . 5794)) #((1 . 201988) (2 . 5794)) #((1 . 282634) (2 . 11578)) #((1 . 255408) (2 . 11578)) #((1 . 220526) (2 . 11578)) #((1 . 193300) (2 . 11578)) #((1 . 282634) (2 . 11578)) #((1 . 255408) (2 . 11578)) #((1 . 220526) (2 . 11578)) #((1 . 193300) (2 . 11578)) #((1 . 282496) (2 . 5794)) #((1 . 255270) (2 . 5794)) #((1 . 220216) (2 . 5794)) #((1 . 192990) (2 . 5794)) #((1 . 282496) (2 . 5794)) #((1 . 255270) (2 . 5794)) #((1 . 220216) (2 . 5794)) #((1 . 192990) (2 . 5794)) #((1 . 268072) (2 . 11578)) #((1 . 240846) (2 . 11578)) #((1 . 205792) (2 . 11578)) #((1 . 178566) (2 . 11578)) #((1 . 268072) (2 . 11578)) #((1 . 240846) (2 . 11578)) #((1 . 205792) (2 . 11578)) #((1 . 178566) (2 . 11578)) #((1 . 282478) (2 . 5794)) #((1 . 255252) (2 . 5794)) #((1 . 220198) (2 . 5794)) #((1 . 192972) (2 . 5794)) #((1 . 282478) (2 . 5794)) #((1 . 255252) (2 . 5794)) #((1 . 220198) (2 . 5794)) #((1 . 192972) (2 . 5794)) #((1 . 256452) (2 . 11578)) #((1 . 229226) (2 . 11578)) #((1 . 194172) (2 . 11578)) #((1 . 166946) (2 . 11578)) #((1 . 256452) (2 . 11578)) #((1 . 229226) (2 . 11578)) #((1 . 194172) (2 . 11578)) #((1 . 166946) (2 . 11578)) #((1 . 267890) (2 . 5794)) #((1 . 240664) (2 . 5794)) #((1 . 182462) (2 . 5794)) #((1 . 155236) (2 . 5794)) #((1 . 267890) (2 . 5794)) #((1 . 240664) (2 . 5794)) #((1 . 182462) (2 . 5794)) #((1 . 155236) (2 . 5794)) #((1 . 270804) (2 . 11578)) #((1 . 243578) (2 . 11578)) #((1 . 185376) (2 . 11578)) #((1 . 158150) (2 . 11578)) #((1 . 270804) (2 . 11578)) #((1 . 243578) (2 . 11578)) #((1 . 185376) (2 . 11578)) #((1 . 158150) (2 . 11578)) #((1 . 267874) (2 . 5794)) #((1 . 240648) (2 . 5794)) #((1 . 182446) (2 . 5794)) #((1 . 155220) (2 . 5794)) #((1 . 267874) (2 . 5794)) #((1 . 240648) (2 . 5794)) #((1 . 182446) (2 . 5794)) #((1 . 155220) (2 . 5794)) #((1 . 259186) (2 . 11578)) #((1 . 231960) (2 . 11578)) #((1 . 173758) (2 . 11578)) #((1 . 146532) (2 . 11578)) #((1 . 259186) (2 . 11578)) #((1 . 231960) (2 . 11578)) #((1 . 173758) (2 . 11578)) #((1 . 146532) (2 . 11578)) #((1 . 259048) (2 . 5794)) #((1 . 231822) (2 . 5794)) #((1 . 173448) (2 . 5794)) #((1 . 146222) (2 . 5794)) #((1 . 259048) (2 . 5794)) #((1 . 231822) (2 . 5794)) #((1 . 173448) (2 . 5794)) #((1 . 146222) (2 . 5794)) #((1 . 244624) (2 . 11578)) #((1 . 217398) (2 . 11578)) #((1 . 159024) (2 . 11578)) #((1 . 131798) (2 . 11578)) #((1 . 244624) (2 . 11578)) #((1 . 217398) (2 . 11578)) #((1 . 159024) (2 . 11578)) #((1 . 131798) (2 . 11578)) #((1 . 259030) (2 . 5794)) #((1 . 231804) (2 . 5794)) #((1 . 173430) (2 . 5794)) #((1 . 146204) (2 . 5794)) #((1 . 259030) (2 . 5794)) #((1 . 231804) (2 . 5794)) #((1 . 173430) (2 . 5794)) #((1 . 146204) (2 . 5794)) #((1 . 233004) (2 . 11578)) #((1 . 205778) (2 . 11578)) #((1 . 147404) (2 . 11578)) #((1 . 120178) (2 . 11578)) #((1 . 233004) (2 . 11578)) #((1 . 205778) (2 . 11578)) #((1 . 147404) (2 . 11578)) #((1 . 120178) (2 . 11578)) #((1 . 219680) (2 . 5776)) #((1 . 165310) (2 . 5776)) #((1 . 303794) (2 . 5776)) #((1 . 249424) (2 . 5776)) #((1 . 219680) (2 . 5776)) #((1 . 165310) (2 . 5776)) #((1 . 303794) (2 . 5776)) #((1 . 249424) (2 . 5776)) #((1 . 297814) (2 . 11578)) #((1 . 243444) (2 . 11578)) #((1 . 381928) (2 . 11578)) #((1 . 327558) (2 . 11578)) #((1 . 297814) (2 . 11578)) #((1 . 243444) (2 . 11578)) #((1 . 381928) (2 . 11578)) #((1 . 327558) (2 . 11578)) #((1 . 242906) (2 . 5776)) #((1 . 188536) (2 . 5776)) #((1 . 327020) (2 . 5776)) #((1 . 272650) (2 . 5776)) #((1 . 242906) (2 . 5776)) #((1 . 188536) (2 . 5776)) #((1 . 327020) (2 . 5776)) #((1 . 272650) (2 . 5776)) #((1 . 297838) (2 . 11578)) #((1 . 243468) (2 . 11578)) #((1 . 381952) (2 . 11578)) #((1 . 327582) (2 . 11578)) #((1 . 297838) (2 . 11578)) #((1 . 243468) (2 . 11578)) #((1 . 381952) (2 . 11578)) #((1 . 327582) (2 . 11578)) #((1 . 251878) (2 . 5776)) #((1 . 197508) (2 . 5776)) #((1 . 335730) (2 . 5776)) #((1 . 281360) (2 . 5776)) #((1 . 251878) (2 . 5776)) #((1 . 197508) (2 . 5776)) #((1 . 335730) (2 . 5776)) #((1 . 281360) (2 . 5776)) #((1 . 301116) (2 . 11578)) #((1 . 246746) (2 . 11578)) #((1 . 384968) (2 . 11578)) #((1 . 330598) (2 . 11578)) #((1 . 301116) (2 . 11578)) #((1 . 246746) (2 . 11578)) #((1 . 384968) (2 . 11578)) #((1 . 330598) (2 . 11578)) #((1 . 275100) (2 . 5776)) #((1 . 220730) (2 . 5776)) #((1 . 358952) (2 . 5776)) #((1 . 304582) (2 . 5776)) #((1 . 275100) (2 . 5776)) #((1 . 220730) (2 . 5776)) #((1 . 358952) (2 . 5776)) #((1 . 304582) (2 . 5776)) #((1 . 301136) (2 . 11578)) #((1 . 246766) (2 . 11578)) #((1 . 384988) (2 . 11578)) #((1 . 330618) (2 . 11578)) #((1 . 301136) (2 . 11578)) #((1 . 246766) (2 . 11578)) #((1 . 384988) (2 . 11578)) #((1 . 330618) (2 . 11578)) #((1 . 196232) (2 . 5776)) #((1 . 141862) (2 . 5776)) #((1 . 257026) (2 . 5776)) #((1 . 202656) (2 . 5776)) #((1 . 196232) (2 . 5776)) #((1 . 141862) (2 . 5776)) #((1 . 257026) (2 . 5776)) #((1 . 202656) (2 . 5776)) #((1 . 274366) (2 . 11578)) #((1 . 219996) (2 . 11578)) #((1 . 335160) (2 . 11578)) #((1 . 280790) (2 . 11578)) #((1 . 274366) (2 . 11578)) #((1 . 219996) (2 . 11578)) #((1 . 335160) (2 . 11578)) #((1 . 280790) (2 . 11578)) #((1 . 219458) (2 . 5776)) #((1 . 165088) (2 . 5776)) #((1 . 280252) (2 . 5776)) #((1 . 225882) (2 . 5776)) #((1 . 219458) (2 . 5776)) #((1 . 165088) (2 . 5776)) #((1 . 280252) (2 . 5776)) #((1 . 225882) (2 . 5776)) #((1 . 274390) (2 . 11578)) #((1 . 220020) (2 . 11578)) #((1 . 335184) (2 . 11578)) #((1 . 280814) (2 . 11578)) #((1 . 274390) (2 . 11578)) #((1 . 220020) (2 . 11578)) #((1 . 335184) (2 . 11578)) #((1 . 280814) (2 . 11578)) #((1 . 228430) (2 . 5776)) #((1 . 174060) (2 . 5776)) #((1 . 288962) (2 . 5776)) #((1 . 234592) (2 . 5776)) #((1 . 228430) (2 . 5776)) #((1 . 174060) (2 . 5776)) #((1 . 288962) (2 . 5776)) #((1 . 234592) (2 . 5776)) #((1 . 277668) (2 . 11578)) #((1 . 223298) (2 . 11578)) #((1 . 338200) (2 . 11578)) #((1 . 283830) (2 . 11578)) #((1 . 277668) (2 . 11578)) #((1 . 223298) (2 . 11578)) #((1 . 338200) (2 . 11578)) #((1 . 283830) (2 . 11578)) #((1 . 251652) (2 . 5776)) #((1 . 197282) (2 . 5776)) #((1 . 312184) (2 . 5776)) #((1 . 257814) (2 . 5776)) #((1 . 251652) (2 . 5776)) #((1 . 197282) (2 . 5776)) #((1 . 312184) (2 . 5776)) #((1 . 257814) (2 . 5776)) #((1 . 277688) (2 . 11578)) #((1 . 223318) (2 . 11578)) #((1 . 338220) (2 . 11578)) #((1 . 283850) (2 . 11578)) #((1 . 277688) (2 . 11578)) #((1 . 223318) (2 . 11578)) #((1 . 338220) (2 . 11578)) #((1 . 283850) (2 . 11578)) #((1 . 341002) (2 . 30)) #((1 . 286632) (2 . 30)) #((1 . 331454) (2 . 30)) #((1 . 277084) (2 . 30)) #((1 . 341002) (2 . 30)) #((1 . 286632) (2 . 30)) #((1 . 331454) (2 . 30)) #((1 . 277084) (2 . 30)) #((1 . 367080) (2 . 5814)) #((1 . 312710) (2 . 5814)) #((1 . 357532) (2 . 5814)) #((1 . 303162) (2 . 5814)) #((1 . 367080) (2 . 5814)) #((1 . 312710) (2 . 5814)) #((1 . 357532) (2 . 5814)) #((1 . 303162) (2 . 5814)) #((1 . 340990) (2 . 30)) #((1 . 286620) (2 . 30)) #((1 . 331442) (2 . 30)) #((1 . 277072) (2 . 30)) #((1 . 340990) (2 . 30)) #((1 . 286620) (2 . 30)) #((1 . 331442) (2 . 30)) #((1 . 277072) (2 . 30)) #((1 . 355466) (2 . 5814)) #((1 . 301096) (2 . 5814)) #((1 . 345918) (2 . 5814)) #((1 . 291548) (2 . 5814)) #((1 . 355466) (2 . 5814)) #((1 . 301096) (2 . 5814)) #((1 . 345918) (2 . 5814)) #((1 . 291548) (2 . 5814)) #((1 . 367120) (2 . 182)) #((1 . 312750) (2 . 182)) #((1 . 357400) (2 . 182)) #((1 . 303030) (2 . 182)) #((1 . 367120) (2 . 182)) #((1 . 312750) (2 . 182)) #((1 . 357400) (2 . 182)) #((1 . 303030) (2 . 182)) #((1 . 375860) (2 . 5966)) #((1 . 321490) (2 . 5966)) #((1 . 366140) (2 . 5966)) #((1 . 311770) (2 . 5966)) #((1 . 375860) (2 . 5966)) #((1 . 321490) (2 . 5966)) #((1 . 366140) (2 . 5966)) #((1 . 311770) (2 . 5966)) #((1 . 367106) (2 . 182)) #((1 . 312736) (2 . 182)) #((1 . 357386) (2 . 182)) #((1 . 303016) (2 . 182)) #((1 . 367106) (2 . 182)) #((1 . 312736) (2 . 182)) #((1 . 357386) (2 . 182)) #((1 . 303016) (2 . 182)) #((1 . 364244) (2 . 5966)) #((1 . 309874) (2 . 5966)) #((1 . 354524) (2 . 5966)) #((1 . 300154) (2 . 5966)) #((1 . 364244) (2 . 5966)) #((1 . 309874) (2 . 5966)) #((1 . 354524) (2 . 5966)) #((1 . 300154) (2 . 5966)) #((1 . 317554) (2 . 30)) #((1 . 263184) (2 . 30)) #((1 . 284686) (2 . 30)) #((1 . 230316) (2 . 30)) #((1 . 317554) (2 . 30)) #((1 . 263184) (2 . 30)) #((1 . 284686) (2 . 30)) #((1 . 230316) (2 . 30)) #((1 . 343632) (2 . 5814)) #((1 . 289262) (2 . 5814)) #((1 . 310764) (2 . 5814)) #((1 . 256394) (2 . 5814)) #((1 . 343632) (2 . 5814)) #((1 . 289262) (2 . 5814)) #((1 . 310764) (2 . 5814)) #((1 . 256394) (2 . 5814)) #((1 . 317542) (2 . 30)) #((1 . 263172) (2 . 30)) #((1 . 284674) (2 . 30)) #((1 . 230304) (2 . 30)) #((1 . 317542) (2 . 30)) #((1 . 263172) (2 . 30)) #((1 . 284674) (2 . 30)) #((1 . 230304) (2 . 30)) #((1 . 332018) (2 . 5814)) #((1 . 277648) (2 . 5814)) #((1 . 299150) (2 . 5814)) #((1 . 244780) (2 . 5814)) #((1 . 332018) (2 . 5814)) #((1 . 277648) (2 . 5814)) #((1 . 299150) (2 . 5814)) #((1 . 244780) (2 . 5814)) #((1 . 343672) (2 . 182)) #((1 . 289302) (2 . 182)) #((1 . 310632) (2 . 182)) #((1 . 256262) (2 . 182)) #((1 . 343672) (2 . 182)) #((1 . 289302) (2 . 182)) #((1 . 310632) (2 . 182)) #((1 . 256262) (2 . 182)) #((1 . 352412) (2 . 5966)) #((1 . 298042) (2 . 5966)) #((1 . 319372) (2 . 5966)) #((1 . 265002) (2 . 5966)) #((1 . 352412) (2 . 5966)) #((1 . 298042) (2 . 5966)) #((1 . 319372) (2 . 5966)) #((1 . 265002) (2 . 5966)) #((1 . 343658) (2 . 182)) #((1 . 289288) (2 . 182)) #((1 . 310618) (2 . 182)) #((1 . 256248) (2 . 182)) #((1 . 343658) (2 . 182)) #((1 . 289288) (2 . 182)) #((1 . 310618) (2 . 182)) #((1 . 256248) (2 . 182)) #((1 . 340796) (2 . 5966)) #((1 . 286426) (2 . 5966)) #((1 . 307756) (2 . 5966)) #((1 . 253386) (2 . 5966)) #((1 . 340796) (2 . 5966)) #((1 . 286426) (2 . 5966)) #((1 . 307756) (2 . 5966)) #((1 . 253386) (2 . 5966)) #((1 . 553868)) #((1 . 441224)) #((1 . 722096)) #((1 . 609452)) #((1 . 553868)) #((1 . 441224)) #((1 . 722096)) #((1 . 609452)) #((1 . 355068) (2 . 5802)) #((1 . 298746) (2 . 5802)) #((1 . 439182) (2 . 5802)) #((1 . 382860) (2 . 5802)) #((1 . 355068) (2 . 5802)) #((1 . 298746) (2 . 5802)) #((1 . 439182) (2 . 5802)) #((1 . 382860) (2 . 5802)) #((1 . 600320)) #((1 . 487676)) #((1 . 768548)) #((1 . 655904)) #((1 . 600320)) #((1 . 487676)) #((1 . 768548)) #((1 . 655904)) #((1 . 355092) (2 . 5802)) #((1 . 298770) (2 . 5802)) #((1 . 439206) (2 . 5802)) #((1 . 382884) (2 . 5802)) #((1 . 355092) (2 . 5802)) #((1 . 298770) (2 . 5802)) #((1 . 439206) (2 . 5802)) #((1 . 382884) (2 . 5802)) #((1 . 548952)) #((1 . 436308)) #((1 . 716656)) #((1 . 604012)) #((1 . 548952)) #((1 . 436308)) #((1 . 716656)) #((1 . 604012)) #((1 . 323714) (2 . 5802)) #((1 . 267392) (2 . 5802)) #((1 . 407566) (2 . 5802)) #((1 . 351244) (2 . 5802)) #((1 . 323714) (2 . 5802)) #((1 . 267392) (2 . 5802)) #((1 . 407566) (2 . 5802)) #((1 . 351244) (2 . 5802)) #((1 . 595396)) #((1 . 482752)) #((1 . 763100)) #((1 . 650456)) #((1 . 595396)) #((1 . 482752)) #((1 . 763100)) #((1 . 650456)) #((1 . 323734) (2 . 5802)) #((1 . 267412) (2 . 5802)) #((1 . 407586) (2 . 5802)) #((1 . 351264) (2 . 5802)) #((1 . 323734) (2 . 5802)) #((1 . 267412) (2 . 5802)) #((1 . 407586) (2 . 5802)) #((1 . 351264) (2 . 5802)) #((1 . 506972)) #((1 . 394328)) #((1 . 628560)) #((1 . 515916)) #((1 . 506972)) #((1 . 394328)) #((1 . 628560)) #((1 . 515916)) #((1 . 331620) (2 . 5802)) #((1 . 275298) (2 . 5802)) #((1 . 392414) (2 . 5802)) #((1 . 336092) (2 . 5802)) #((1 . 331620) (2 . 5802)) #((1 . 275298) (2 . 5802)) #((1 . 392414) (2 . 5802)) #((1 . 336092) (2 . 5802)) #((1 . 553424)) #((1 . 440780)) #((1 . 675012)) #((1 . 562368)) #((1 . 553424)) #((1 . 440780)) #((1 . 675012)) #((1 . 562368)) #((1 . 331644) (2 . 5802)) #((1 . 275322) (2 . 5802)) #((1 . 392438) (2 . 5802)) #((1 . 336116) (2 . 5802)) #((1 . 331644) (2 . 5802)) #((1 . 275322) (2 . 5802)) #((1 . 392438) (2 . 5802)) #((1 . 336116) (2 . 5802)) #((1 . 502056)) #((1 . 389412)) #((1 . 623120)) #((1 . 510476)) #((1 . 502056)) #((1 . 389412)) #((1 . 623120)) #((1 . 510476)) #((1 . 300266) (2 . 5802)) #((1 . 243944) (2 . 5802)) #((1 . 360798) (2 . 5802)) #((1 . 304476) (2 . 5802)) #((1 . 300266) (2 . 5802)) #((1 . 243944) (2 . 5802)) #((1 . 360798) (2 . 5802)) #((1 . 304476) (2 . 5802)) #((1 . 548500)) #((1 . 435856)) #((1 . 669564)) #((1 . 556920)) #((1 . 548500)) #((1 . 435856)) #((1 . 669564)) #((1 . 556920)) #((1 . 300286) (2 . 5802)) #((1 . 243964) (2 . 5802)) #((1 . 360818) (2 . 5802)) #((1 . 304496) (2 . 5802)) #((1 . 300286) (2 . 5802)) #((1 . 243964) (2 . 5802)) #((1 . 360818) (2 . 5802)) #((1 . 304496) (2 . 5802)) #((1 . 354936) (2 . 8694)) #((1 . 298614) (2 . 8694)) #((1 . 345388) (2 . 8694)) #((1 . 289066) (2 . 8694)) #((1 . 354936) (2 . 8694)) #((1 . 298614) (2 . 8694)) #((1 . 345388) (2 . 8694)) #((1 . 289066) (2 . 8694)) #((1 . 381014) (2 . 14478)) #((1 . 324692) (2 . 14478)) #((1 . 371466) (2 . 14478)) #((1 . 315144) (2 . 14478)) #((1 . 381014) (2 . 14478)) #((1 . 324692) (2 . 14478)) #((1 . 371466) (2 . 14478)) #((1 . 315144) (2 . 14478)) #((1 . 354924) (2 . 8694)) #((1 . 298602) (2 . 8694)) #((1 . 345376) (2 . 8694)) #((1 . 289054) (2 . 8694)) #((1 . 354924) (2 . 8694)) #((1 . 298602) (2 . 8694)) #((1 . 345376) (2 . 8694)) #((1 . 289054) (2 . 8694)) #((1 . 369400) (2 . 14478)) #((1 . 313078) (2 . 14478)) #((1 . 359852) (2 . 14478)) #((1 . 303530) (2 . 14478)) #((1 . 369400) (2 . 14478)) #((1 . 313078) (2 . 14478)) #((1 . 359852) (2 . 14478)) #((1 . 303530) (2 . 14478)) #((1 . 363726) (2 . 8846)) #((1 . 307404) (2 . 8846)) #((1 . 354006) (2 . 8846)) #((1 . 297684) (2 . 8846)) #((1 . 363726) (2 . 8846)) #((1 . 307404) (2 . 8846)) #((1 . 354006) (2 . 8846)) #((1 . 297684) (2 . 8846)) #((1 . 372466) (2 . 14630)) #((1 . 316144) (2 . 14630)) #((1 . 362746) (2 . 14630)) #((1 . 306424) (2 . 14630)) #((1 . 372466) (2 . 14630)) #((1 . 316144) (2 . 14630)) #((1 . 362746) (2 . 14630)) #((1 . 306424) (2 . 14630)) #((1 . 363712) (2 . 8846)) #((1 . 307390) (2 . 8846)) #((1 . 353992) (2 . 8846)) #((1 . 297670) (2 . 8846)) #((1 . 363712) (2 . 8846)) #((1 . 307390) (2 . 8846)) #((1 . 353992) (2 . 8846)) #((1 . 297670) (2 . 8846)) #((1 . 360850) (2 . 14630)) #((1 . 304528) (2 . 14630)) #((1 . 351130) (2 . 14630)) #((1 . 294808) (2 . 14630)) #((1 . 360850) (2 . 14630)) #((1 . 304528) (2 . 14630)) #((1 . 351130) (2 . 14630)) #((1 . 294808) (2 . 14630)) #((1 . 331488) (2 . 8694)) #((1 . 275166) (2 . 8694)) #((1 . 298620) (2 . 8694)) #((1 . 242298) (2 . 8694)) #((1 . 331488) (2 . 8694)) #((1 . 275166) (2 . 8694)) #((1 . 298620) (2 . 8694)) #((1 . 242298) (2 . 8694)) #((1 . 357566) (2 . 14478)) #((1 . 301244) (2 . 14478)) #((1 . 324698) (2 . 14478)) #((1 . 268376) (2 . 14478)) #((1 . 357566) (2 . 14478)) #((1 . 301244) (2 . 14478)) #((1 . 324698) (2 . 14478)) #((1 . 268376) (2 . 14478)) #((1 . 331476) (2 . 8694)) #((1 . 275154) (2 . 8694)) #((1 . 298608) (2 . 8694)) #((1 . 242286) (2 . 8694)) #((1 . 331476) (2 . 8694)) #((1 . 275154) (2 . 8694)) #((1 . 298608) (2 . 8694)) #((1 . 242286) (2 . 8694)) #((1 . 345952) (2 . 14478)) #((1 . 289630) (2 . 14478)) #((1 . 313084) (2 . 14478)) #((1 . 256762) (2 . 14478)) #((1 . 345952) (2 . 14478)) #((1 . 289630) (2 . 14478)) #((1 . 313084) (2 . 14478)) #((1 . 256762) (2 . 14478)) #((1 . 340278) (2 . 8846)) #((1 . 283956) (2 . 8846)) #((1 . 307238) (2 . 8846)) #((1 . 250916) (2 . 8846)) #((1 . 340278) (2 . 8846)) #((1 . 283956) (2 . 8846)) #((1 . 307238) (2 . 8846)) #((1 . 250916) (2 . 8846)) #((1 . 349018) (2 . 14630)) #((1 . 292696) (2 . 14630)) #((1 . 315978) (2 . 14630)) #((1 . 259656) (2 . 14630)) #((1 . 349018) (2 . 14630)) #((1 . 292696) (2 . 14630)) #((1 . 315978) (2 . 14630)) #((1 . 259656) (2 . 14630)) #((1 . 340264) (2 . 8846)) #((1 . 283942) (2 . 8846)) #((1 . 307224) (2 . 8846)) #((1 . 250902) (2 . 8846)) #((1 . 340264) (2 . 8846)) #((1 . 283942) (2 . 8846)) #((1 . 307224) (2 . 8846)) #((1 . 250902) (2 . 8846)) #((1 . 337402) (2 . 14630)) #((1 . 281080) (2 . 14630)) #((1 . 304362) (2 . 14630)) #((1 . 248040) (2 . 14630)) #((1 . 337402) (2 . 14630)) #((1 . 281080) (2 . 14630)) #((1 . 304362) (2 . 14630)) #((1 . 248040) (2 . 14630)) #((1 . 432964) (2 . 14592)) #((1 . 378594) (2 . 14592)) #((1 . 438238) (2 . 14592)) #((1 . 383868) (2 . 14592)) #((1 . 432964) (2 . 14592)) #((1 . 378594) (2 . 14592)) #((1 . 438238) (2 . 14592)) #((1 . 383868) (2 . 14592)) #((1 . 476352) (2 . 20394)) #((1 . 421982) (2 . 20394)) #((1 . 481626) (2 . 20394)) #((1 . 427256) (2 . 20394)) #((1 . 476352) (2 . 20394)) #((1 . 421982) (2 . 20394)) #((1 . 481626) (2 . 20394)) #((1 . 427256) (2 . 20394)) #((1 . 456184) (2 . 14592)) #((1 . 401814) (2 . 14592)) #((1 . 461458) (2 . 14592)) #((1 . 407088) (2 . 14592)) #((1 . 456184) (2 . 14592)) #((1 . 401814) (2 . 14592)) #((1 . 461458) (2 . 14592)) #((1 . 407088) (2 . 14592)) #((1 . 476370) (2 . 20394)) #((1 . 422000) (2 . 20394)) #((1 . 481644) (2 . 20394)) #((1 . 427274) (2 . 20394)) #((1 . 476370) (2 . 20394)) #((1 . 422000) (2 . 20394)) #((1 . 481644) (2 . 20394)) #((1 . 427274) (2 . 20394)) #((1 . 435336) (2 . 14440)) #((1 . 380966) (2 . 14440)) #((1 . 440348) (2 . 14440)) #((1 . 385978) (2 . 14440)) #((1 . 435336) (2 . 14440)) #((1 . 380966) (2 . 14440)) #((1 . 440348) (2 . 14440)) #((1 . 385978) (2 . 14440)) #((1 . 449828) (2 . 20242)) #((1 . 395458) (2 . 20242)) #((1 . 454840) (2 . 20242)) #((1 . 400470) (2 . 20242)) #((1 . 449828) (2 . 20242)) #((1 . 395458) (2 . 20242)) #((1 . 454840) (2 . 20242)) #((1 . 400470) (2 . 20242)) #((1 . 458552) (2 . 14440)) #((1 . 404182) (2 . 14440)) #((1 . 463564) (2 . 14440)) #((1 . 409194) (2 . 14440)) #((1 . 458552) (2 . 14440)) #((1 . 404182) (2 . 14440)) #((1 . 463564) (2 . 14440)) #((1 . 409194) (2 . 14440)) #((1 . 449842) (2 . 20242)) #((1 . 395472) (2 . 20242)) #((1 . 454854) (2 . 20242)) #((1 . 400484) (2 . 20242)) #((1 . 449842) (2 . 20242)) #((1 . 395472) (2 . 20242)) #((1 . 454854) (2 . 20242)) #((1 . 400484) (2 . 20242)) #((1 . 409516) (2 . 14592)) #((1 . 355146) (2 . 14592)) #((1 . 391470) (2 . 14592)) #((1 . 337100) (2 . 14592)) #((1 . 409516) (2 . 14592)) #((1 . 355146) (2 . 14592)) #((1 . 391470) (2 . 14592)) #((1 . 337100) (2 . 14592)) #((1 . 452904) (2 . 20394)) #((1 . 398534) (2 . 20394)) #((1 . 434858) (2 . 20394)) #((1 . 380488) (2 . 20394)) #((1 . 452904) (2 . 20394)) #((1 . 398534) (2 . 20394)) #((1 . 434858) (2 . 20394)) #((1 . 380488) (2 . 20394)) #((1 . 432736) (2 . 14592)) #((1 . 378366) (2 . 14592)) #((1 . 414690) (2 . 14592)) #((1 . 360320) (2 . 14592)) #((1 . 432736) (2 . 14592)) #((1 . 378366) (2 . 14592)) #((1 . 414690) (2 . 14592)) #((1 . 360320) (2 . 14592)) #((1 . 452922) (2 . 20394)) #((1 . 398552) (2 . 20394)) #((1 . 434876) (2 . 20394)) #((1 . 380506) (2 . 20394)) #((1 . 452922) (2 . 20394)) #((1 . 398552) (2 . 20394)) #((1 . 434876) (2 . 20394)) #((1 . 380506) (2 . 20394)) #((1 . 411888) (2 . 14440)) #((1 . 357518) (2 . 14440)) #((1 . 393580) (2 . 14440)) #((1 . 339210) (2 . 14440)) #((1 . 411888) (2 . 14440)) #((1 . 357518) (2 . 14440)) #((1 . 393580) (2 . 14440)) #((1 . 339210) (2 . 14440)) #((1 . 426380) (2 . 20242)) #((1 . 372010) (2 . 20242)) #((1 . 408072) (2 . 20242)) #((1 . 353702) (2 . 20242)) #((1 . 426380) (2 . 20242)) #((1 . 372010) (2 . 20242)) #((1 . 408072) (2 . 20242)) #((1 . 353702) (2 . 20242)) #((1 . 435104) (2 . 14440)) #((1 . 380734) (2 . 14440)) #((1 . 416796) (2 . 14440)) #((1 . 362426) (2 . 14440)) #((1 . 435104) (2 . 14440)) #((1 . 380734) (2 . 14440)) #((1 . 416796) (2 . 14440)) #((1 . 362426) (2 . 14440)) #((1 . 426394) (2 . 20242)) #((1 . 372024) (2 . 20242)) #((1 . 408086) (2 . 20242)) #((1 . 353716) (2 . 20242)) #((1 . 426394) (2 . 20242)) #((1 . 372024) (2 . 20242)) #((1 . 408086) (2 . 20242)) #((1 . 353716) (2 . 20242)) #((1 . 284690) (2 . 18)) #((1 . 230320) (2 . 18)) #((1 . 222582) (2 . 18)) #((1 . 168212) (2 . 18)) #((1 . 284690) (2 . 18)) #((1 . 230320) (2 . 18)) #((1 . 222582) (2 . 18)) #((1 . 168212) (2 . 18)) #((1 . 287604) (2 . 5802)) #((1 . 233234) (2 . 5802)) #((1 . 225496) (2 . 5802)) #((1 . 171126) (2 . 5802)) #((1 . 287604) (2 . 5802)) #((1 . 233234) (2 . 5802)) #((1 . 225496) (2 . 5802)) #((1 . 171126) (2 . 5802)) #((1 . 284674) (2 . 18)) #((1 . 230304) (2 . 18)) #((1 . 222566) (2 . 18)) #((1 . 168196) (2 . 18)) #((1 . 284674) (2 . 18)) #((1 . 230304) (2 . 18)) #((1 . 222566) (2 . 18)) #((1 . 168196) (2 . 18)) #((1 . 275986) (2 . 5802)) #((1 . 221616) (2 . 5802)) #((1 . 213878) (2 . 5802)) #((1 . 159508) (2 . 5802)) #((1 . 275986) (2 . 5802)) #((1 . 221616) (2 . 5802)) #((1 . 213878) (2 . 5802)) #((1 . 159508) (2 . 5802)) #((1 . 293004) (2 . 18)) #((1 . 238634) (2 . 18)) #((1 . 230724) (2 . 18)) #((1 . 176354) (2 . 18)) #((1 . 293004) (2 . 18)) #((1 . 238634) (2 . 18)) #((1 . 230724) (2 . 18)) #((1 . 176354) (2 . 18)) #((1 . 278580) (2 . 5802)) #((1 . 224210) (2 . 5802)) #((1 . 216300) (2 . 5802)) #((1 . 161930) (2 . 5802)) #((1 . 278580) (2 . 5802)) #((1 . 224210) (2 . 5802)) #((1 . 216300) (2 . 5802)) #((1 . 161930) (2 . 5802)) #((1 . 292986) (2 . 18)) #((1 . 238616) (2 . 18)) #((1 . 230706) (2 . 18)) #((1 . 176336) (2 . 18)) #((1 . 292986) (2 . 18)) #((1 . 238616) (2 . 18)) #((1 . 230706) (2 . 18)) #((1 . 176336) (2 . 18)) #((1 . 266960) (2 . 5802)) #((1 . 212590) (2 . 5802)) #((1 . 204680) (2 . 5802)) #((1 . 150310) (2 . 5802)) #((1 . 266960) (2 . 5802)) #((1 . 212590) (2 . 5802)) #((1 . 204680) (2 . 5802)) #((1 . 150310) (2 . 5802)) #((1 . 261242) (2 . 18)) #((1 . 206872) (2 . 18)) #((1 . 175814) (2 . 18)) #((1 . 121444) (2 . 18)) #((1 . 261242) (2 . 18)) #((1 . 206872) (2 . 18)) #((1 . 175814) (2 . 18)) #((1 . 121444) (2 . 18)) #((1 . 264156) (2 . 5802)) #((1 . 209786) (2 . 5802)) #((1 . 178728) (2 . 5802)) #((1 . 124358) (2 . 5802)) #((1 . 264156) (2 . 5802)) #((1 . 209786) (2 . 5802)) #((1 . 178728) (2 . 5802)) #((1 . 124358) (2 . 5802)) #((1 . 261226) (2 . 18)) #((1 . 206856) (2 . 18)) #((1 . 175798) (2 . 18)) #((1 . 121428) (2 . 18)) #((1 . 261226) (2 . 18)) #((1 . 206856) (2 . 18)) #((1 . 175798) (2 . 18)) #((1 . 121428) (2 . 18)) #((1 . 252538) (2 . 5802)) #((1 . 198168) (2 . 5802)) #((1 . 167110) (2 . 5802)) #((1 . 112740) (2 . 5802)) #((1 . 252538) (2 . 5802)) #((1 . 198168) (2 . 5802)) #((1 . 167110) (2 . 5802)) #((1 . 112740) (2 . 5802)) #((1 . 269556) (2 . 18)) #((1 . 215186) (2 . 18)) #((1 . 183956) (2 . 18)) #((1 . 129586) (2 . 18)) #((1 . 269556) (2 . 18)) #((1 . 215186) (2 . 18)) #((1 . 183956) (2 . 18)) #((1 . 129586) (2 . 18)) #((1 . 255132) (2 . 5802)) #((1 . 200762) (2 . 5802)) #((1 . 169532) (2 . 5802)) #((1 . 115162) (2 . 5802)) #((1 . 255132) (2 . 5802)) #((1 . 200762) (2 . 5802)) #((1 . 169532) (2 . 5802)) #((1 . 115162) (2 . 5802)) #((1 . 269538) (2 . 18)) #((1 . 215168) (2 . 18)) #((1 . 183938) (2 . 18)) #((1 . 129568) (2 . 18)) #((1 . 269538) (2 . 18)) #((1 . 215168) (2 . 18)) #((1 . 183938) (2 . 18)) #((1 . 129568) (2 . 18)) #((1 . 243512) (2 . 5802)) #((1 . 189142) (2 . 5802)) #((1 . 157912) (2 . 5802)) #((1 . 103542) (2 . 5802)) #((1 . 243512) (2 . 5802)) #((1 . 189142) (2 . 5802)) #((1 . 157912) (2 . 5802)) #((1 . 103542) (2 . 5802)) #((1 . 345970) (2 . 152)) #((1 . 289648) (2 . 152)) #((1 . 351244) (2 . 152)) #((1 . 294922) (2 . 152)) #((1 . 345970) (2 . 152)) #((1 . 289648) (2 . 152)) #((1 . 351244) (2 . 152)) #((1 . 294922) (2 . 152)) #((1 . 389358) (2 . 5954)) #((1 . 333036) (2 . 5954)) #((1 . 394632) (2 . 5954)) #((1 . 338310) (2 . 5954)) #((1 . 389358) (2 . 5954)) #((1 . 333036) (2 . 5954)) #((1 . 394632) (2 . 5954)) #((1 . 338310) (2 . 5954)) #((1 . 369190) (2 . 152)) #((1 . 312868) (2 . 152)) #((1 . 374464) (2 . 152)) #((1 . 318142) (2 . 152)) #((1 . 369190) (2 . 152)) #((1 . 312868) (2 . 152)) #((1 . 374464) (2 . 152)) #((1 . 318142) (2 . 152)) #((1 . 389376) (2 . 5954)) #((1 . 333054) (2 . 5954)) #((1 . 394650) (2 . 5954)) #((1 . 338328) (2 . 5954)) #((1 . 389376) (2 . 5954)) #((1 . 333054) (2 . 5954)) #((1 . 394650) (2 . 5954)) #((1 . 338328) (2 . 5954)) #((1 . 627372)) #((1 . 514728)) #((1 . 637396)) #((1 . 524752)) #((1 . 627372)) #((1 . 514728)) #((1 . 637396)) #((1 . 524752)) #((1 . 328178) (2 . 5802)) #((1 . 271856) (2 . 5802)) #((1 . 333190) (2 . 5802)) #((1 . 276868) (2 . 5802)) #((1 . 328178) (2 . 5802)) #((1 . 271856) (2 . 5802)) #((1 . 333190) (2 . 5802)) #((1 . 276868) (2 . 5802)) #((1 . 673804)) #((1 . 561160)) #((1 . 683828)) #((1 . 571184)) #((1 . 673804)) #((1 . 561160)) #((1 . 683828)) #((1 . 571184)) #((1 . 328192) (2 . 5802)) #((1 . 271870) (2 . 5802)) #((1 . 333204) (2 . 5802)) #((1 . 276882) (2 . 5802)) #((1 . 328192) (2 . 5802)) #((1 . 271870) (2 . 5802)) #((1 . 333204) (2 . 5802)) #((1 . 276882) (2 . 5802)) #((1 . 322522) (2 . 152)) #((1 . 266200) (2 . 152)) #((1 . 304476) (2 . 152)) #((1 . 248154) (2 . 152)) #((1 . 322522) (2 . 152)) #((1 . 266200) (2 . 152)) #((1 . 304476) (2 . 152)) #((1 . 248154) (2 . 152)) #((1 . 365910) (2 . 5954)) #((1 . 309588) (2 . 5954)) #((1 . 347864) (2 . 5954)) #((1 . 291542) (2 . 5954)) #((1 . 365910) (2 . 5954)) #((1 . 309588) (2 . 5954)) #((1 . 347864) (2 . 5954)) #((1 . 291542) (2 . 5954)) #((1 . 345742) (2 . 152)) #((1 . 289420) (2 . 152)) #((1 . 327696) (2 . 152)) #((1 . 271374) (2 . 152)) #((1 . 345742) (2 . 152)) #((1 . 289420) (2 . 152)) #((1 . 327696) (2 . 152)) #((1 . 271374) (2 . 152)) #((1 . 365928) (2 . 5954)) #((1 . 309606) (2 . 5954)) #((1 . 347882) (2 . 5954)) #((1 . 291560) (2 . 5954)) #((1 . 365928) (2 . 5954)) #((1 . 309606) (2 . 5954)) #((1 . 347882) (2 . 5954)) #((1 . 291560) (2 . 5954)) #((1 . 580476)) #((1 . 467832)) #((1 . 543860)) #((1 . 431216)) #((1 . 580476)) #((1 . 467832)) #((1 . 543860)) #((1 . 431216)) #((1 . 304730) (2 . 5802)) #((1 . 248408) (2 . 5802)) #((1 . 286422) (2 . 5802)) #((1 . 230100) (2 . 5802)) #((1 . 304730) (2 . 5802)) #((1 . 248408) (2 . 5802)) #((1 . 286422) (2 . 5802)) #((1 . 230100) (2 . 5802)) #((1 . 626908)) #((1 . 514264)) #((1 . 590292)) #((1 . 477648)) #((1 . 626908)) #((1 . 514264)) #((1 . 590292)) #((1 . 477648)) #((1 . 304744) (2 . 5802)) #((1 . 248422) (2 . 5802)) #((1 . 286436) (2 . 5802)) #((1 . 230114) (2 . 5802)) #((1 . 304744) (2 . 5802)) #((1 . 248422) (2 . 5802)) #((1 . 286436) (2 . 5802)) #((1 . 230114) (2 . 5802)) #((1 . 217836) (2 . 18)) #((1 . 161514) (2 . 18)) #((1 . 155728) (2 . 18)) #((1 . 99406) (2 . 18)) #((1 . 217836) (2 . 18)) #((1 . 161514) (2 . 18)) #((1 . 155728) (2 . 18)) #((1 . 99406) (2 . 18)) #((1 . 220750) (2 . 5802)) #((1 . 164428) (2 . 5802)) #((1 . 158642) (2 . 5802)) #((1 . 102320) (2 . 5802)) #((1 . 220750) (2 . 5802)) #((1 . 164428) (2 . 5802)) #((1 . 158642) (2 . 5802)) #((1 . 102320) (2 . 5802)) #((1 . 217820) (2 . 18)) #((1 . 161498) (2 . 18)) #((1 . 155712) (2 . 18)) #((1 . 99390) (2 . 18)) #((1 . 217820) (2 . 18)) #((1 . 161498) (2 . 18)) #((1 . 155712) (2 . 18)) #((1 . 99390) (2 . 18)) #((1 . 209132) (2 . 5802)) #((1 . 152810) (2 . 5802)) #((1 . 147024) (2 . 5802)) #((1 . 90702) (2 . 5802)) #((1 . 209132) (2 . 5802)) #((1 . 152810) (2 . 5802)) #((1 . 147024) (2 . 5802)) #((1 . 90702) (2 . 5802)) #((1 . 208822) (2 . 18)) #((1 . 152500) (2 . 18)) #((1 . 146542) (2 . 18)) #((1 . 90220) (2 . 18)) #((1 . 208822) (2 . 18)) #((1 . 152500) (2 . 18)) #((1 . 146542) (2 . 18)) #((1 . 90220) (2 . 18)) #((1 . 194398) (2 . 5802)) #((1 . 138076) (2 . 5802)) #((1 . 132118) (2 . 5802)) #((1 . 75796) (2 . 5802)) #((1 . 194398) (2 . 5802)) #((1 . 138076) (2 . 5802)) #((1 . 132118) (2 . 5802)) #((1 . 75796) (2 . 5802)) #((1 . 208804) (2 . 18)) #((1 . 152482) (2 . 18)) #((1 . 146524) (2 . 18)) #((1 . 90202) (2 . 18)) #((1 . 208804) (2 . 18)) #((1 . 152482) (2 . 18)) #((1 . 146524) (2 . 18)) #((1 . 90202) (2 . 18)) #((1 . 182778) (2 . 5802)) #((1 . 126456) (2 . 5802)) #((1 . 120498) (2 . 5802)) #((1 . 64176) (2 . 5802)) #((1 . 182778) (2 . 5802)) #((1 . 126456) (2 . 5802)) #((1 . 120498) (2 . 5802)) #((1 . 64176) (2 . 5802)) #((1 . 194388) (2 . 18)) #((1 . 138066) (2 . 18)) #((1 . 108960) (2 . 18)) #((1 . 52638) (2 . 18)) #((1 . 194388) (2 . 18)) #((1 . 138066) (2 . 18)) #((1 . 108960) (2 . 18)) #((1 . 52638) (2 . 18)) #((1 . 197302) (2 . 5802)) #((1 . 140980) (2 . 5802)) #((1 . 111874) (2 . 5802)) #((1 . 55552) (2 . 5802)) #((1 . 197302) (2 . 5802)) #((1 . 140980) (2 . 5802)) #((1 . 111874) (2 . 5802)) #((1 . 55552) (2 . 5802)) #((1 . 194372) (2 . 18)) #((1 . 138050) (2 . 18)) #((1 . 108944) (2 . 18)) #((1 . 52622) (2 . 18)) #((1 . 194372) (2 . 18)) #((1 . 138050) (2 . 18)) #((1 . 108944) (2 . 18)) #((1 . 52622) (2 . 18)) #((1 . 185684) (2 . 5802)) #((1 . 129362) (2 . 5802)) #((1 . 100256) (2 . 5802)) #((1 . 43934) (2 . 5802)) #((1 . 185684) (2 . 5802)) #((1 . 129362) (2 . 5802)) #((1 . 100256) (2 . 5802)) #((1 . 43934) (2 . 5802)) #((1 . 185374) (2 . 18)) #((1 . 129052) (2 . 18)) #((1 . 99774) (2 . 18)) #((1 . 43452) (2 . 18)) #((1 . 185374) (2 . 18)) #((1 . 129052) (2 . 18)) #((1 . 99774) (2 . 18)) #((1 . 43452) (2 . 18)) #((1 . 170950) (2 . 5802)) #((1 . 114628) (2 . 5802)) #((1 . 85350) (2 . 5802)) #((1 . 29028) (2 . 5802)) #((1 . 170950) (2 . 5802)) #((1 . 114628) (2 . 5802)) #((1 . 85350) (2 . 5802)) #((1 . 29028) (2 . 5802)) #((1 . 185356) (2 . 18)) #((1 . 129034) (2 . 18)) #((1 . 99756) (2 . 18)) #((1 . 43434) (2 . 18)) #((1 . 185356) (2 . 18)) #((1 . 129034) (2 . 18)) #((1 . 99756) (2 . 18)) #((1 . 43434) (2 . 18)) #((1 . 159330) (2 . 5802)) #((1 . 103008) (2 . 5802)) #((1 . 73730) (2 . 5802)) #((1 . 17408) (2 . 5802)) #((1 . 159330) (2 . 5802)) #((1 . 103008) (2 . 5802)) #((1 . 73730) (2 . 5802)) #((1 . 17408) (2 . 5802))))
(struct-makes* count (67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 67 67 67 67 67 67 67 67 73 73 73 73 73 73 73 73 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 77 77 77 77 77 77 77 77 79 79 79 79 79 79 79 79 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 85 85 85 85 85 85 85 85 89 89 89 89 89 89 89 89 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67 71 71 71 71 71 71 71 71 67 67 67 67 67 67 67 67))
(struct-apps* count (0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 17 17 17 17 17 17 17 17 20 20 20 20 20 20 20 20 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0))
(struct-maxd* count (2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2))
(struct-depth* count2 (#() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 40)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 48)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #() #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #((2 . 8)) #() #() #() #() #() #() #() #()))
(vec-makes* count (2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909 2909))
(vec-apps* count (11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698 11698))
(vec-maxd* count (2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2))
(vec-depth* count2 (#((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698)) #((2 . 11698) (3 . 11698))))
)
| false |
a57ef6b1021768757240277dc12157b2e07550c2 | fc69a32687681f5664f33d360f4062915e1ac136 | /test/dssl2/if3.rkt | e8244602c19949b7db65b54e41ecdf10e38266b7 | []
| no_license | tov/dssl2 | 3855905061d270a3b5e0105c45c85b0fb5fe325a | e2d03ea0fff61c5e515ecd4bff88608e0439e32a | refs/heads/main | 2023-07-19T22:22:53.869561 | 2023-07-03T15:18:32 | 2023-07-03T15:18:32 | 93,645,003 | 12 | 6 | null | 2021-05-26T16:04:38 | 2017-06-07T14:31:59 | Racket | UTF-8 | Racket | false | false | 82 | rkt | if3.rkt | #lang dssl2
let a = 5
let b
if a == 5:
b = 8
else:
b = 9
assert b == 8
| false |
f946734bc01f1a9ff5260e0215a532f55b4e18ef | 125256651cfe269774af47ab10a4539fa9ed655a | /info.rkt | f8625972a60bc6e9a3b1991e8a8c03b5348c8627 | [
"MIT"
]
| permissive | AlexKnauth/typed-racket-stream | 1eaf8f1f0bf84aa75f24961b146e38e6420c9fa5 | ab5481df26289a47545101aeb1b74a0e7f02887f | refs/heads/master | 2022-05-30T19:32:13.090621 | 2022-05-21T14:58:30 | 2022-05-21T14:58:30 | 33,520,854 | 4 | 3 | MIT | 2022-05-21T13:58:21 | 2015-04-07T03:53:51 | Racket | UTF-8 | Racket | false | false | 156 | rkt | info.rkt | #lang info
(define collection 'multi)
(define deps '("base" "typed-racket-lib"))
(define build-deps
'("typed-racket-more" ; for typed/rackunit
))
| false |
a3542470d904299e5f9797e022e7c04d8f6f88f3 | a81c078be33105a42fcfaff6189e7bf078aae9b0 | /game-engine-demos-common/assets/space-bg-generator.rkt | 4a9bfee39c3809daa0ed1135e19c68cbf43adf8b | []
| no_license | thoughtstem/game-engine-demos | 3536e6c257dc59009996e0e6faeb64dd03730274 | 614d1c5fb871f17e4008a26cb42542800457576b | refs/heads/master | 2021-06-07T07:41:51.064343 | 2019-10-04T22:18:55 | 2019-10-04T22:18:55 | 123,335,201 | 1 | 0 | null | 2019-07-19T18:17:32 | 2018-02-28T19:57:02 | Racket | UTF-8 | Racket | false | false | 1,742 | rkt | space-bg-generator.rkt | #lang racket
(provide space-bg-sprite
make-star-bg)
(require game-engine
(only-in lang/posn make-posn))
(define (space-bg-sprite w h n)
(define ps (map list (map (thunk* (random w)) (range n))
(map (thunk* (random h)) (range n))
(map (thunk* (/ (random 1 75) 100)) (range n))))
(new-sprite
(list (stars w h ps)
(stars w h ps)
(stars w h ps))
10))
(define (stars w h ps)
(if (empty? ps)
(rectangle w h "solid" "black")
(place-image
(rotate
(random 45)
(scale (third (first ps))
(freeze (overlay (circle 2 "solid" (make-color 255 255 255 (random 120 245)))
(circle 3 "solid" (make-color 128 128 128 (random 75 100)))))))
(first (first ps)) (second (first ps))
(stars w h (rest ps)))))
(define (make-star-bg)
(define W 480)
(define H 360)
(define white-star-img
(freeze (overlay (circle 2 'solid 'white)
(circle 3 'solid (color 255 255 255 100)))))
(define dark-star-img
(freeze (overlay (circle 2 'solid 'dimgray)
(circle 3 'solid (color 100 100 100 100)))))
(define (random-star-img num)
(scale (/ (random 1 75) 100) (first (shuffle (list white-star-img dark-star-img)))))
(define (random-star-posn num)
(make-posn (random W)
(random H)))
(define star-images (map random-star-img (range 100)))
(define star-posns (map random-star-posn (range 100)))
(define star-bg-img (place-images star-images
star-posns
(rectangle W H 'solid 'black)))
(new-sprite star-bg-img))
| false |
834bf38276ca39709eb48414cd39b3e43f4134fd | e553691752e4d43e92c0818e2043234e7a61c01b | /test/profile/benchmarks/update-at.rkt | 952d346f095fa7399b5f09d51a1f3c9a662bc610 | [
"BSD-2-Clause"
]
| permissive | emina/rosette | 2b8c1bcf0bf744ba01ac41049a00b21d1d5d929f | 5dd348906d8bafacef6354c2e5e75a67be0bec66 | refs/heads/master | 2023-08-30T20:16:51.221490 | 2023-08-11T01:38:48 | 2023-08-11T01:38:48 | 22,478,354 | 656 | 89 | NOASSERTION | 2023-09-14T02:27:51 | 2014-07-31T17:29:18 | Racket | UTF-8 | Racket | false | false | 439 | rkt | update-at.rkt | #lang rosette
(require "list.rkt")
(provide (all-defined-out))
(define (update-at lst pos val)
(match lst
[(list) lst]
[(list x xs ...)
(if (= pos 0)
(cons val xs)
(cons x (update-at xs (- pos 1) val)))]))
; Simple test for update-at
(define (test-update-at lst)
(define-symbolic* idx integer?)
(update-at lst idx -1)
(void))
(define lst (build-list 50 identity))
(time (test-update-at lst))
| false |
459fee67dad88b49cf759eae3ac9a9f95dfd189e | 6858cbebface7beec57e60b19621120da5020a48 | /16/3/10.rkt | 59a9fc34f786670abcf0aecbf34cbd0cc3997ed0 | []
| no_license | ponyatov/PLAI | a68b712d9ef85a283e35f9688068b392d3d51cb2 | 6bb25422c68c4c7717b6f0d3ceb026a520e7a0a2 | refs/heads/master | 2020-09-17T01:52:52.066085 | 2017-03-28T07:07:30 | 2017-03-28T07:07:30 | 66,084,244 | 2 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 90 | rkt | 10.rkt | (define a1
(if (procedure? add1)
(lambda (x) (num?-con (add1 (num?-con x))))
(blame val))) | false |
9a9e94c65832c13656bcbd71c335282a64193350 | 1c2209c90f3a026361465e9e7d7a291394a77fc6 | /sxml/tests/ssax-tests.rkt | 67dd34491bff8a6d671aff0664b80c39a5f09d92 | []
| no_license | jbclements/sxml | 2c1d1b06cdf40187c2141d47ae472ad2708cd456 | 5d1d65561b7bf5059456934c34a5c5f257de4416 | refs/heads/master | 2023-03-11T23:57:19.065847 | 2023-03-03T05:56:52 | 2023-03-03T05:56:52 | 1,371,026 | 30 | 10 | null | 2023-03-03T05:56:53 | 2011-02-15T20:23:20 | Racket | UTF-8 | Racket | false | false | 46,665 | rkt | ssax-tests.rkt | #lang racket/base
(require (for-syntax racket/base)
(only-in racket/port call-with-input-string)
(only-in racket/pretty [pretty-write pp])
(only-in racket/list [add-between list-intersperse])
(only-in racket/base [quote racket:quote])
srfi/13/string
rackunit
rackunit/text-ui
(except-in "../ssax/myenv.ss" assert)
"../ssax/errors-and-warnings.rkt"
"../ssax/parse-error.rkt"
"../ssax/input-parse.rkt"
"../ssax/SSAX-code.rkt")
#|
Current status: all tests pass; some print warnings.
|#
;; The tests in this file were originally written to work with or
;; without reader case sensitivity for symbols. The form '<string> is
;; used to indicate a *symbol* with the case as written in <string>.
(define-syntax (quote stx)
(syntax-case stx ()
[(quote s)
(let ([d (syntax-e #'s)])
(cond [(string? d) #`(racket:quote #,(string->symbol d))]
[else #'(racket:quote s)]))]))
(define equal_? equal?)
;; ryanc: catch exceptions (simplified from original lib/catch-error.scm)
(define-syntax failed?
(syntax-rules ()
((failed? . stmts)
(with-handlers ([exn? (lambda (e) #t)])
(let () . stmts)
#f))))
;; ryanc: specialize assert for better error messages
(define-syntax assert
(syntax-rules ()
[(assert (=? expected actual))
(check =? actual expected)]
[(assert e ...)
(check-not-false (and e ...))]))
;; ----
(define ssax-tests
(test-suite "SSAX"
(test-case "parsing names"
(assert (eq? '_
(call-with-input-string "_" ssax:read-NCName)))
(assert (eq? '_
(call-with-input-string "_" ssax:read-QName)))
(assert (eq? (string->symbol "_abc_")
(call-with-input-string "_abc_;" ssax:read-NCName)))
(assert (eq? (string->symbol "_abc_")
(call-with-input-string "_abc_;" ssax:read-QName)))
(assert (eq? (string->symbol "_a.b")
(call-with-input-string "_a.b " ssax:read-QName)))
(assert (equal? (cons (string->symbol "_a.b") (string->symbol "d.1-ef-"))
(call-with-input-string "_a.b:d.1-ef-;" ssax:read-QName)))
(assert (equal? (cons (string->symbol "a") (string->symbol "b"))
(call-with-input-string "a:b:c" ssax:read-QName)))
(assert (failed? (call-with-input-string ":abc" ssax:read-NCName)))
(assert (failed? (call-with-input-string "1:bc" ssax:read-NCName)))
)
(test-case "name-compare"
(assert (eq? '= (name-compare 'ABC 'ABC)))
(assert (eq? '< (name-compare 'ABC 'ABCD)))
(assert (eq? '> (name-compare 'XB 'ABCD)))
(assert (eq? '> (name-compare '(HTML . PRE) 'PRE)))
(assert (eq? '< (name-compare 'HTML '(HTML . PRE))))
(assert (eq? '= (name-compare '(HTML . PRE) '(HTML . PRE))))
(assert (eq? '< (name-compare '(HTML . PRE) '(XML . PRE))))
(assert (eq? '> (name-compare '(HTML . PRE) '(HTML . P))))
(assert (eq? '< (name-compare '(HTML . PRE) ssax:largest-unres-name)))
(assert (eq? '< (name-compare '(ZZZZ . ZZZ) ssax:largest-unres-name)))
(assert (eq? '> (name-compare ssax:largest-unres-name '(ZZZZ . ZZZ) )))
)
(test-case "PI parsing"
(assert (equal? "p1 content "
(call-with-input-string "<?pi1 p1 content ?>"
(lambda (port)
(ssax:read-markup-token port)
(ssax:read-pi-body-as-string port)))))
(assert (equal? "pi2? content? ?"
(call-with-input-string "<?pi2 pi2? content? ??>"
(lambda (port)
(ssax:read-markup-token port)
(ssax:read-pi-body-as-string port)))))
)
(let ()
(define (consumer fragment foll-fragment seed)
(cons* (if (equal? foll-fragment (string #\newline))
" NL" foll-fragment) fragment seed))
(define-check (test str expected-result)
(let ((result
(reverse
(let ([port (open-input-string str)])
(ssax:read-cdata-body port consumer '())))))
(check-equal? result expected-result)))
(test-case "cdata body parsing"
(test "]]>" '())
(test "abcd]]>" '("abcd" ""))
(test "abcd]]]>" '("abcd" "" "]" ""))
(test "abcd]]]]>" '("abcd" "" "]" "" "]" ""))
(test "abcd]]]]]>" '("abcd" "" "]" "" "]" "" "]" ""))
(test "abcd]]]a]]>" '("abcd" "" "]" "" "]]" "" "a" ""))
(test "abc\r\ndef\n]]>" '("abc" " NL" "def" " NL"))
(test "\r\n\r\n]]>" '("" " NL" "" " NL"))
(test "\r\n\r\na]]>" '("" " NL" "" " NL" "a" ""))
(test "\r\r\r\na]]>" '("" " NL" "" " NL" "" " NL" "a" ""))
(test "abc&!!!]]>" '("abc&!!!" ""))
(test "abc&!!!]]>" '("abc&!!!" ""))
(test "abc]]>>&]]]>and]]>"
'("abc" "" "]]" "" ">>&" "" "]" "" "]]" "" ">and" ""))))
(let ()
(define (f str decl-entities)
(ssax:read-attributes (open-input-string str) decl-entities))
(define-check (test str decl-entities expected-res)
(let ((result (f str decl-entities)))
(check-equal? result expected-res)))
(define-check (test-fails str decl-entities)
(assert (failed? (f str decl-entities))))
(test-case "read-attributes"
(test "" '() '())
(test "href='http://a\tb\r\n\r\n\nc'" '()
`((,(string->symbol "href") . "http://a b c")))
(test "href='http://a\tb\r\r\n\rc'" '()
`((,(string->symbol "href") . "http://a b c")))
(test "_1 ='12&' _2= \"\r\n\t12 3\">" '()
`((_1 . "12&") (_2 . " 12\n3")))
(test "\tAbc='<&>
'\nNext='12&ent;34' />"
'((ent . "<xx>"))
`((,(string->symbol "Abc") . "<&>\n")
(,(string->symbol "Next") . "12<xx>34")))
(test "\tAbc='<&>
'\nNext='12&ent;34' />"
'((ent . "<xx>"))
`((,(string->symbol "Abc") . "<&>\r")
(,(string->symbol "Next") . "12<xx>34")))
(test "\tAbc='<&>
'\nNext='12&en;34' />"
`((en . ,(lambda () (open-input-string ""xx'"))))
`((,(string->symbol "Abc") . "<&>\n")
(,(string->symbol "Next") . "12\"xx'34")))
(test "\tAbc='<&>
'\nNext='12&ent;34' />"
'((ent . "<&ent1;T;>") (ent1 . "&"))
`((,(string->symbol "Abc") . "<&>\n")
(,(string->symbol "Next") . "12<&T;>34")))
(test-fails "\tAbc='<&>
'\nNext='12&ent;34' />"
'((ent . "<&ent1;T;>") (ent1 . "&")))
(test-fails "\tAbc='<&>
'\nNext='12&ent;34' />"
'((ent . "<&ent;T;>") (ent1 . "&")))
(test-fails "\tAbc='<&>
'\nNext='12&ent;34' />"
'((ent . "<&ent1;T;>") (ent1 . "&ent;")))
(test "html:href='http://a\tb\r\n\r\n\nc'" '()
`(((,(string->symbol "html") . ,(string->symbol "href"))
. "http://a b c")))
(test "html:href='ref1' html:src='ref2'" '()
`(((,(string->symbol "html") . ,(string->symbol "href"))
. "ref1")
((,(string->symbol "html") . ,(string->symbol "src"))
. "ref2")))
(test "html:href='ref1' xml:html='ref2'" '()
`(((,(string->symbol "html") . ,(string->symbol "href"))
. "ref1")
((,ssax:Prefix-XML . ,(string->symbol "html"))
. "ref2")))
(test-fails "html:href='ref1' html:href='ref2'" '())
(test-fails "html:href='<' html:href='ref2'" '())
(test-fails "html:href='ref1' html:href='&ref2;'" '())))
(let* ((namespaces
'((HTML UHTML . URN-HTML)
(HTML UHTML-1 . URN-HTML)
(A UHTML . URN-HTML)))
(namespaces-def
(cons
'(*DEFAULT* DEF . URN-DEF) namespaces))
(namespaces-undef
(cons
'(*DEFAULT* #f . #f) namespaces-def))
(port (current-input-port)))
(test-case "resolve-name"
(assert (equal? 'ABC
(ssax:resolve-name port 'ABC namespaces #t)))
(assert (equal? '(DEF . ABC)
(ssax:resolve-name port 'ABC namespaces-def #t)))
(assert (equal? 'ABC
(ssax:resolve-name port 'ABC namespaces-def #f)))
(assert (equal? 'ABC
(ssax:resolve-name port 'ABC namespaces-undef #t)))
(assert (equal? '(UHTML . ABC)
(ssax:resolve-name port '(HTML . ABC) namespaces-def #t)))
(assert (equal? '(UHTML . ABC)
(ssax:resolve-name port '(HTML . ABC) namespaces-def #f)))
(assert (equal? `(,ssax:Prefix-XML . space)
(ssax:resolve-name port
`(,(string->symbol "xml") . space)
namespaces-def #f)))
(assert (failed?
(ssax:resolve-name port '(XXX . ABC) namespaces-def #f)))
))
(let* ((urn-a (string->symbol "urn:a"))
(urn-b (string->symbol "urn:b"))
(urn-html (string->symbol "http://w3c.org/html"))
(namespaces
`((#f UHTML . ,urn-html)
(A UA . ,urn-a)))
(test
(lambda (tag-head-name elems str)
(call-with-input-string str
(lambda (port)
(call-with-values
(lambda ()
(ssax:complete-start-tag
(call-with-input-string tag-head-name ssax:read-QName)
port
elems '() namespaces))
list))))))
(test-case "read-QName"
;; First test with no validation of elements
;;(test "TAG1" #f "")
(assert (equal? `(TAG1 () ,namespaces ANY)
(test "TAG1" #f ">")))
(assert (equal? `(TAG1 () ,namespaces EMPTY-TAG)
(test "TAG1" #f "/>")))
(assert (equal? `(TAG1 ((HREF . "a")) ,namespaces EMPTY-TAG)
(test "TAG1" #f "HREF='a'/>")))
(assert (equal? `((UA . TAG1) ((HREF . "a"))
,(cons `(*DEFAULT* UA . ,urn-a) namespaces) ANY)
(test "TAG1" #f "HREF='a' xmlns='urn:a'>")))
(assert (equal? `(TAG1 ((HREF . "a"))
,(cons '(*DEFAULT* #f . #f) namespaces) ANY)
(test "TAG1" #f "HREF='a' xmlns=''>")))
(assert (failed? (test "UA:TAG1" #f "HREF='a' xmlns=''/>")))
(assert (equal? `((UA . TAG1) (((UA . HREF) . "a"))
,(cons '(*DEFAULT* #f . #f) namespaces) ANY)
(test "A:TAG1" #f "A:HREF='a' xmlns=''>")))
(assert (equal? `((UA . TAG1) (((UA . HREF) . "a"))
,(cons `(*DEFAULT* ,urn-b . ,urn-b) namespaces) ANY)
(test "A:TAG1" #f "A:HREF='a' xmlns='urn:b'>")))
(assert (failed? (test "B:TAG1" #f "A:HREF='a' xmlns:b=''/>")))
(assert (equal? `((,urn-b . TAG1) (((UA . HREF) . "a"))
,(cons `(B ,urn-b . ,urn-b) namespaces) ANY)
(test "B:TAG1" #f "A:HREF='a' xmlns:B='urn:b'>")))
(assert (equal? `((,urn-b . TAG1) (((UA . HREF) . "a")
((,urn-b . SRC) . "b"))
,(cons `(B ,urn-b . ,urn-b) namespaces) ANY)
(test "B:TAG1" #f
"B:SRC='b' A:HREF='a' xmlns:B='urn:b'>")))
(assert (equal? `((,urn-b . TAG1) (((UA . HREF) . "a")
((,urn-b . HREF) . "b"))
,(cons `(B ,urn-b . ,urn-b) namespaces) ANY)
(test "B:TAG1" #f
"B:HREF=\"b\" A:HREF='a' xmlns:B='urn:b'>")))
;; must be an error! Duplicate attr
(assert (failed? (test "B:TAG1" #f
"HREF=\"b\" HREF='a' xmlns:B='urn:a'/>")))
;; must be an error! Duplicate attr after ns expansion
(assert (failed? (test "B:TAG1" #f
"B:HREF=\"b\" A:HREF='a' xmlns:B='urn:a'/>")))
(assert (equal? `((UA . TAG1) ((HREF . "a")
((UA . HREF) . "b"))
,(cons `(*DEFAULT* UA . ,urn-a) namespaces) ANY)
(test "TAG1" #f
"A:HREF=\"b\" HREF='a' xmlns='urn:a'>")))
(assert (equal? `(TAG1 (((UHTML . HREF) . "a")
((,urn-b . HREF) . "b"))
,(append `((HTML UHTML . ,urn-html)
(B ,urn-b . ,urn-b))
namespaces) ANY)
(test "TAG1" #f
"B:HREF=\"b\" xmlns:B='urn:b' xmlns:HTML='http://w3c.org/html' HTML:HREF='a' >")))
;; Now test the validating parsing
;; No decl for tag1
(assert (failed? (test "TAG1" '((TAG2 ANY ()))
"B:HREF='b' xmlns:B='urn:b'>")))
;; No decl for HREF elem
(assert (failed?
(test "TAG1" '((TAG1 ANY ((HREF1 CDATA IMPLIED #f))))
"B:HREF='b' xmlns:B='urn:b'>")))
(assert (equal? `(TAG1 ((HREF . "b")) ,namespaces EMPTY-TAG)
(test "TAG1" '((TAG1 PCDATA ((HREF CDATA REQUIRED #f))))
"HREF='b'/>")))
(assert (equal? `(TAG1 ((HREF . "b")) ,namespaces PCDATA)
(test "TAG1" '((TAG1 PCDATA ((HREF CDATA REQUIRED #f))))
"HREF='b'>")))
;; Req'd attribute not given error
(assert (failed?
(test "TAG1" '((TAG1 PCDATA ((HREF CDATA REQUIRED #f))))
">")))
;; Wrong content-type of the attribute
(assert (failed?
(test "TAG1" '((TAG1 PCDATA ((HREF ("c") REQUIRED #f))))
"HREF='b'>")))
(assert (equal? `(TAG1 ((HREF . "b")) ,namespaces PCDATA)
(test "TAG1" '((TAG1 PCDATA ((HREF ("c" "b") IMPLIED #f))))
"HREF='b'>")))
(assert (equal? `(TAG1 ((HREF . "b")) ,namespaces PCDATA)
(test "TAG1" '((TAG1 PCDATA ((HREF CDATA IMPLIED "c"))))
"HREF='b'>")))
;; Bad fixed attribute
(assert (failed?
(test "TAG1" '((TAG1 PCDATA ((HREF CDATA FIXED "c"))))
"HREF='b'>")))
(assert (equal? `(TAG1 ((HREF . "b")) ,namespaces PCDATA)
(test "TAG1" '((TAG1 PCDATA ((HREF CDATA FIXED "b"))))
"HREF='b'>")))
(assert (equal? `(TAG1 ((HREF . "b")) ,namespaces PCDATA)
(test "TAG1" '((TAG1 PCDATA ((HREF CDATA FIXED "b")))) ">")))
(assert (equal? `(TAG1 ((HREF . "b")) ,namespaces PCDATA)
(test "TAG1" '((TAG1 PCDATA ((HREF CDATA IMPLIED "b")))) ">")))
(assert (equal? `(TAG1 () ,namespaces PCDATA)
(test "TAG1" '((TAG1 PCDATA ((HREF CDATA IMPLIED #f)))) ">")))
;; Undeclared attr
(assert (failed?
(test "TAG1"
'((TAG1 PCDATA (((A . HREF) CDATA IMPLIED "c"))))
"HREF='b'>")))
(assert (equal? `(TAG1 ((HREF . "b") ((UA . HREF) . "c"))
,namespaces PCDATA)
(test "TAG1" '((TAG1 PCDATA ((HREF CDATA REQUIRED #f)
((A . HREF) CDATA IMPLIED "c"))))
"HREF='b'>")))
(parameterize ([current-sxml-warning-handler (lambda args void)])
(assert (equal? `((UA . TAG1)
((HREF . "b") ((UA . HREF) . "c"))
,namespaces PCDATA)
(test "A:TAG1" '(((A . TAG1) PCDATA
((HREF NMTOKEN REQUIRED #f)
((A . HREF) CDATA IMPLIED "c"))))
"HREF='b'>"))))
(assert (equal? `((,urn-b . TAG1) ((HREF . "b"))
,(cons `(B ,urn-b . ,urn-b) namespaces) PCDATA)
(test "B:TAG1"
'(((B . TAG1)
PCDATA
((HREF CDATA REQUIRED #f)
((xmlns . B) CDATA IMPLIED "urn:b"))))
"HREF='b'>")))
(assert (equal? `((,urn-b . TAG1) (((,urn-b . HREF) . "b"))
,(cons `(B ,urn-b . ,urn-b) namespaces) PCDATA)
(test "B:TAG1" '(((B . TAG1) PCDATA
(((B . HREF) CDATA REQUIRED #f)
((xmlns . B) CDATA IMPLIED "urn:b"))))
"B:HREF='b'>")))
(assert (equal? `((,urn-b . TAG1) ((HREF . "b"))
,(cons `(*DEFAULT* ,urn-b . ,urn-b) namespaces) PCDATA)
(test "TAG1" '((TAG1 PCDATA ((HREF CDATA REQUIRED #f)
(xmlns CDATA IMPLIED "urn:b"))))
"HREF='b'>")))
;; xmlns not declared
(assert (equal? `((,urn-b . TAG1) ((HREF . "b"))
,(cons `(*DEFAULT* ,urn-b . ,urn-b) namespaces) PCDATA)
(test "TAG1" '((TAG1 PCDATA ((HREF CDATA REQUIRED #f)
)))
"HREF='b' xmlns='urn:b'>")))
;; xmlns:B not declared
(assert (equal? `((,urn-b . TAG1) (((,urn-b . HREF) . "b"))
,(cons `(B ,urn-b . ,urn-b) namespaces) PCDATA)
(test "B:TAG1" '(((B . TAG1) PCDATA
(((B . HREF) CDATA REQUIRED #f)
)))
"B:HREF='b' xmlns:B='urn:b'>")))
))
(letrec
((a-tag (make-xml-token 'START (string->symbol "BR")))
(a-ref (make-xml-token 'ENTITY-REF (string->symbol "lt")))
(eof-object (lambda () eof-object)) ; a unique value
(str-handler (lambda (fragment foll-fragment seed)
(if (string-null? foll-fragment) (cons fragment seed)
(cons* foll-fragment fragment seed)))))
(define-check (test str expect-eof? expected-data expected-token)
(let*-values
(((seed token)
(ssax:read-char-data (open-input-string str) expect-eof? str-handler '()))
((result) (reverse seed)))
(assert (equal? result expected-data))
(assert (if (eq? expected-token eof-object)
(eof-object? token)
(equal? token expected-token)))))
(test-case "read-char-data"
(test "" #t '() eof-object)
(assert (failed? (test "" #f '() eof-object)))
(test " " #t '(" ") eof-object)
(test "<BR/>" #f '() a-tag)
(test " <BR />" #f '(" ") a-tag)
(test " <" #f '(" ") a-ref)
(test " a<" #f '(" a") a-ref)
(test " a <" #f '(" a ") a-ref)
(test " <!-- comment--> a a<BR/>" #f '(" " " a a") a-tag)
(test " <!-- comment-->\ra a<BR/>" #f '(" " "" "\n" "a a") a-tag)
(test " <!-- comment-->\r\na a<BR/>" #f '(" " "" "\n" "a a") a-tag)
(test " <!-- comment-->\r\na\t\r\r\na<BR/>" #f
'(" " "" "\n" "a\t" "\n" "" "\n" "a") a-tag)
(test "a<!-- comment--> a a<BR/>" #f '("a" " a a") a-tag)
(test "!<BR/>" #f '("" "!") a-tag)
(test "!\n<BR/>" #f '("" "!" "\n") a-tag)
(test "\t!\n<BR/>" #f '("\t" "!" "\n") a-tag)
(test "\t!\na a<BR/>" #f '("\t" "!" "\na a") a-tag)
(test "\t!\ra a<BR/>" #f '("\t" "!" "" "\n" "a a") a-tag)
(test "\t!\r\na a<BR/>" #f '("\t" "!" "" "\n" "a a") a-tag)
(test " \ta ! b <BR/>" #f '(" \ta " "!" " b ") a-tag)
(test " \ta   b <BR/>" #f '(" \ta " " " " b ") a-tag)
(test "<![CDATA[<]]><BR/>" #f '("<") a-tag)
(test "<![CDATA[]]]><BR/>" #f '("]") a-tag)
(test "\t<![CDATA[<]]><BR/>" #f '("\t" "<") a-tag)
(test "\t<![CDATA[<]]>a b<BR/>" #f '("\t" "<" "a b") a-tag)
(test "\t<![CDATA[<]]> a b<BR/>" #f '("\t" "<" " a b") a-tag)
(test "\td <![CDATA[ <\r\r\n]]> a b<BR/>" #f
'("\td " " <" "\n" "" "\n" " a b") a-tag)
))
#|
(pp (ssax:make-pi-parser ()))
(pp (ssax:make-pi-parser ((xml . (lambda (port target seed) seed)))))
(pp (ssax:make-pi-parser ((xml . (lambda (port target seed) seed))
(html . list)
(*DEFAULT* . ssax:warn))))
|#
;; eat warnings:
(parameterize ([current-sxml-warning-handler (lambda args void)])
(define (simple-parser str doctype-fn)
(call-with-input-string str
(lambda (port)
((ssax:make-parser
NEW-LEVEL-SEED
(lambda (elem-gi attributes namespaces expected-content seed) '())
FINISH-ELEMENT
(lambda (elem-gi attributes namespaces parent-seed seed)
(let ((seed (if (null? namespaces) (reverse seed)
(cons (list '*NAMESPACES* namespaces)
(reverse seed)))))
(let ((seed (if (attlist-null? attributes) seed
(cons
(cons '@
(map (lambda (attr)
(list (car attr) (cdr attr)))
(attlist->alist attributes)))
seed))))
(cons (cons elem-gi seed) parent-seed))))
CHAR-DATA-HANDLER
(lambda (string1 string2 seed)
(if (string-null? string2) (cons string1 seed)
(cons* string2 string1 seed)))
DOCTYPE
(lambda (port docname systemid internal-subset? seed)
(when internal-subset?
(ssax:warn port "Internal DTD subset is not currently handled ")
(ssax:skip-internal-dtd port))
(ssax:warn port "DOCTYPE DECL " docname " "
systemid " found and skipped")
(doctype-fn docname seed))
UNDECL-ROOT
(lambda (elem-gi seed) (doctype-fn elem-gi seed)))
port '()))))
(define (dummy-doctype-fn elem-gi seed) (values #f '() '() seed))
(define-check (test str doctype-fn expected)
(let ((result (simple-parser str doctype-fn)))
(assert (equal? result expected))))
(define (local-test str doctype-fn)
(simple-parser str doctype-fn))
(test-case "simple parser"
(test "<BR/>" dummy-doctype-fn '((BR)))
(assert (failed? (test "<BR>" dummy-doctype-fn '())))
(test "<BR></BR>" dummy-doctype-fn '((BR)))
(assert (failed? (test "<BR></BB>" dummy-doctype-fn '())))
(test " <A HREF='URL'> link <I>itlink </I> &amp;</A>"
dummy-doctype-fn
'((A (@ (HREF "URL")) " link " (I "itlink ")
" " "&" "amp;")))
(test
" <A HREF='URL' xml:space='preserve'> link <I>itlink </I> &amp;</A>" dummy-doctype-fn
'((A (@ (HREF "URL") ((xml . space) "preserve"))
" link " (I "itlink ") " " "&" "amp;")))
(test " <A HREF='URL' xml:space='preserve'> link <I xml:space='default'>itlink </I> &amp;</A>" dummy-doctype-fn
'((A (@ (HREF "URL") ((xml . space) "preserve"))
" link "
(I (@ ((xml . space) "default")) "itlink ")
" " "&" "amp;")))
(test "<itemize><item>This is item 1 </item>\n<!-- Just:a comment --><item>Item 2</item>\n </itemize>" dummy-doctype-fn
`((itemize (item "This is item 1 ")
"\n" (item "Item 2") "\n ")))
(check-equal? (local-test " <P><![CDATA[<BR>\n<![CDATA[<BR>]]>]]></P>"
dummy-doctype-fn)
`((P "<BR>" ,nl "<![CDATA[<BR>" "]]" ">")))
#;(test " <P><![CDATA[<BR>\n<![CDATA[<BR>]]>]]></P>"
dummy-doctype-fn )
(test " <P><![CDATA[<BR>\r<![CDATA[<BR>]]>]]></P>"
dummy-doctype-fn `((P "<BR>" ,nl "<![CDATA[<BR>" "]]" ">")))
(test "<?xml version='1.0'?>\n\n<Reports TStamp='1'></Reports>"
dummy-doctype-fn '((Reports (@ (TStamp "1")))))
(test "\n<?PI xxx?><!-- Comment \n -\r-->\n<?PI1 zzz?><T/>"
dummy-doctype-fn '((T)))
(test "<!DOCTYPE T SYSTEM 'system1' ><!-- comment -->\n<T/>"
(lambda (elem-gi seed) (assert (equal? elem-gi 'T))
(values #f '() '() seed))
'((T)))
(test "<!DOCTYPE T PUBLIC '//EN/T' \"system1\" [ <!ELEMENT a 'aa'> ]>\n<?pi?><T/>"
(lambda (elem-gi seed) (assert (equal? elem-gi 'T))
(values #f '() '() seed))
'((T)))
(test "<BR/>"
(lambda (elem-gi seed)
(values '((BR EMPTY ())) '() '() seed)) '((BR)))
(test "<BR></BR>"
(lambda (elem-gi seed)
(values '((BR EMPTY ())) '() '() seed)) '((BR)))
(assert (failed? (test "<BR>aa</BR>"
(lambda (elem-gi seed)
(values '((BR EMPTY ())) '() '() seed)) '())))
(test "<BR>aa</BR>"
(lambda (elem-gi seed)
(values '((BR PCDATA ())) '() '() seed)) '((BR "aa")))
(assert (failed? (test "<BR>a<I>a</I></BR>"
(lambda (elem-gi seed)
(values '((BR PCDATA ())) '() '() seed)) '())))
(test "<BR>a<I>a</I></BR>"
(lambda (elem-gi seed)
(values '((BR ANY ()) (I PCDATA ())) '() '() seed))
'((BR "a" (I "a"))))
(test "<DIV>Example: \"&example;\"</DIV>"
(lambda (elem-gi seed)
(values #f '((example . "<P>An ampersand (&) may be escaped numerically (&#38;) or with a general entity (&amp;).</P>")) '() seed))
'((DIV "Example: \""
(P "An ampersand (" "&" ") may be escaped numerically (" "&" "#38;) or with a general entity (" "&" "amp;).") "\"")))
(test "<DIV>Example: \"&example;\" <P/></DIV>"
(lambda (elem-gi seed)
(values #f '((quote . "<I>example:</I> ex")
(example . "<Q>"e;!</Q>?")) '() seed))
'((DIV "Example: \"" (Q (I "example:") " ex" "!") "?"
"\" " (P))))
(assert (failed?
(test "<DIV>Example: \"&example;\" <P/></DIV>"
(lambda (elem-gi seed)
(values #f '((quote . "<I>example:")
(example . "<Q>"e;</I>!</Q>?")) '() seed))
'())))
(test "<DIV A:B='A' B='B' xmlns:A='URI1' xmlns='URI1'><A:P xmlns=''><BR/></A:P></DIV>"
(lambda (elem-gi seed)
(values #f '() '() seed))
'(((URI1 . DIV) (@ (B "B") ((URI1 . B) "A"))
(*NAMESPACES* ((A URI1 . URI1)
(*DEFAULT* URI1 . URI1)))
((URI1 . P)
(*NAMESPACES* ((*DEFAULT* #f . #f) (A URI1 . URI1)
(*DEFAULT* URI1 . URI1)))
(BR
(*NAMESPACES* ((*DEFAULT* #f . #f)
(A URI1 . URI1)
(*DEFAULT* URI1 . URI1))))))))
(test "<DIV A:B='A' B='B' xmlns:A='URI1' xmlns='URI1'><A:P xmlns=''><BR/></A:P></DIV>"
(lambda (elem-gi seed)
(values #f '() '((#f UA . URI1)) seed))
'(((UA . DIV) (@ (B "B") ((UA . B) "A"))
(*NAMESPACES* ((A UA . URI1)
(*DEFAULT* UA . URI1) (#f UA . URI1)))
((UA . P)
(*NAMESPACES* ((*DEFAULT* #f . #f) (A UA . URI1)
(*DEFAULT* UA . URI1) (#f UA . URI1)))
(BR
(*NAMESPACES* ((*DEFAULT* #f . #f) (A UA . URI1)
(*DEFAULT* UA . URI1)
(#f UA . URI1))))))))
;; uniqattr should fail
(assert (failed?
(test "<DIV A:B='A' B='B' xmlns:A='URI1' xmlns='URI1'><A:P xmlns=''><BR/></A:P></DIV>"
(lambda (elem-gi seed)
(values
`((DIV ANY ((B CDATA IMPLIED #f)
((A . B) CDATA IMPLIED #f)
((C . B) CDATA IMPLIED "xx")
((xmlns . C) CDATA IMPLIED "URI1")
))
((A . P) ANY ()) (BR EMPTY ()))
'() '((#f UA . URI1)) seed))
'())))
;; prefix C undeclared
(assert (failed?
(test "<DIV A:B='A' B='B' xmlns:A='URI1' xmlns='URI1'><A:P xmlns=''><BR/></A:P></DIV>"
(lambda (elem-gi seed)
(values
'((DIV ANY ((B CDATA IMPLIED #f)
(xmlns CDATA IMPLIED "URI1")
((A . B) CDATA IMPLIED #f)
((C . B) CDATA IMPLIED "xx")
))
((A . P) ANY ()) (BR EMPTY ()))
'() '((#f UA . URI1)) seed))
'())))
;; contradiction to xmlns declaration
(assert (failed?
(test "<DIV A:B='A' B='B' xmlns:A='URI1' xmlns='URI1'><A:P xmlns=''><BR/></A:P></DIV>"
(lambda (elem-gi seed)
(values
'((DIV ANY ((B CDATA IMPLIED #f)
(xmlns CDATA FIXED "URI2")
((A . B) CDATA IMPLIED #f)
))
((A . P) ANY ()) (BR EMPTY ()))
'() '((#f UA . URI1)) seed))
'())))
(test "<DIV A:B='A' B='B' xmlns:A='URI1' xmlns='URI1'><A:P xmlns=''><BR/></A:P></DIV>"
(lambda (elem-gi seed)
(values
'((DIV ANY ((B CDATA IMPLIED #f)
(xmlns CDATA FIXED "URI1")
((A . B) CDATA IMPLIED #f)
))
((A . P) ANY ()) (BR EMPTY ()))
'() '((#f UA . URI1)) seed))
'(((UA . DIV) (@ (B "B") ((UA . B) "A"))
(*NAMESPACES* ((*DEFAULT* UA . URI1)
(A UA . URI1) (#f UA . URI1)))
((UA . P)
(*NAMESPACES* ((*DEFAULT* #f . #f)
(*DEFAULT* UA . URI1)
(A UA . URI1) (#f UA . URI1)))
(BR
(*NAMESPACES* ((*DEFAULT* #f . #f) (*DEFAULT* UA . URI1)
(A UA . URI1) (#f UA . URI1))))))))
(test "<DIV A:B='A' B='B' xmlns:A='URI1' xmlns='URI1'><A:P xmlns=''><BR/></A:P></DIV>"
(lambda (elem-gi seed)
(values
'((DIV ANY ((B CDATA IMPLIED #f)
((A . B) CDATA IMPLIED #f)
((C . B) CDATA IMPLIED "xx")
((xmlns . C) CDATA IMPLIED "URI2")
))
((A . P) ANY ()) (BR EMPTY ()))
'() '((#f UA . URI1)) seed))
'(((UA . DIV) (@ (B "B") ((UA . B) "A")
((URI2 . B) "xx"))
(*NAMESPACES* ((*DEFAULT* UA . URI1)
(A UA . URI1)
(C URI2 . URI2)
(#f UA . URI1)))
((UA . P)
(*NAMESPACES* ((*DEFAULT* #f . #f) (*DEFAULT* UA . URI1)
(A UA . URI1)
(C URI2 . URI2) (#f UA . URI1)))
(BR
(*NAMESPACES* ((*DEFAULT* #f . #f)
(*DEFAULT* UA . URI1)
(A UA . URI1)
(C URI2 . URI2)
(#f UA . URI1))))))))
))
(parameterize ([current-sxml-warning-handler (lambda args void)])
(define-check (test str namespace-assig expected-res)
(let ((result (ssax:xml->sxml (open-input-string str) namespace-assig)))
(assert (equal_? result expected-res))))
(define (local-test str namespace-assig)
(ssax:xml->sxml (open-input-string str) namespace-assig))
(test-case "ssax:xml->sxml"
(check-equal? (local-test "<e><![CDATA[>]]></e>" '())
'(*TOP* (e ">")))
(test " <BR/>" '() '(*TOP* (BR)))
(test "<BR></BR>" '() '(*TOP* (BR)))
(test " <BR CLEAR='ALL'\nCLASS='Class1'/>" '()
'(*TOP* (BR (@ (CLEAR "ALL") (CLASS "Class1")))))
(test " <A HREF='URL'> link <I>itlink </I> &amp;</A>" '()
'(*TOP* (A (@ (HREF "URL")) " link " (I "itlink ") " &")))
(test " <A HREF='URL' xml:space='preserve'> link <I>itlink </I> &amp;</A>"
'()
'(*TOP* (A (@ (xml:space "preserve") (HREF "URL"))
" link " (I "itlink ") " &")))
(test " <A HREF='URL' xml:space='preserve'> link <I xml:space='default'>itlink </I> &amp;</A>" '()
'(*TOP* (A (@ (xml:space "preserve") (HREF "URL"))
" link " (I (@ (xml:space "default"))
"itlink ") " &")))
(test " <P><?pi1 p1 content ?>?<?pi2 pi2? content? ??></P>" '()
'(*TOP* (P (*PI* pi1 "p1 content ") "?"
(*PI* pi2 "pi2? content? ?"))))
(test " <P>some text <![CDATA[<]]>1\n"<B>strong</B>"\r</P>"
'()
`(*TOP* (P "some text <1\n\""
(B "strong") "\"\n")))
(test " <P><![CDATA[<BR>\n<![CDATA[<BR>]]>]]></P>" '()
`(*TOP* (P "<BR>\n<![CDATA[<BR>]]>")))
;; (test "<T1><T2>it's\r\nand that\n</T2>\r\n\r\n\n</T1>" '()
;; '(*TOP* (T1 (T2 "it's\nand that\n") "\n\n\n")))
(test "<T1><T2>it's\r\nand that\n</T2>\r\n\r\n\n</T1>" '()
`(*TOP* (T1 (T2 "it's\nand that\n"))))
(test "<T1><T2>it's\rand that\n</T2>\r\n\r\n\n</T1>" '()
`(*TOP* (T1 (T2 "it's\nand that\n"))))
(test "<!DOCTYPE T SYSTEM 'system1' ><!-- comment -->\n<T/>" '()
'(*TOP* (T)))
(test "<?xml version='1.0'?>\n<WEIGHT unit=\"pound\">\n<NET certified='certified'> 67 </NET>\n<GROSS> 95 </GROSS>\n</WEIGHT>" '()
'(*TOP* (*PI* xml "version='1.0'")
(WEIGHT (@ (unit "pound"))
(NET (@ (certified "certified")) " 67 ")
(GROSS " 95 "))
))
;; (test "<?xml version='1.0'?>\n<WEIGHT unit=\"pound\">\n<NET certified='certified'> 67 </NET>\n<GROSS> 95 </GROSS>\n</WEIGHT>" '()
;; '(*TOP* (*PI* xml "version='1.0'") (WEIGHT (@ (unit "pound"))
;; "\n" (NET (@ (certified "certified")) " 67 ")
;; "\n" (GROSS " 95 ") "\n")
;; ))
(test "<DIV A:B='A' B='B' xmlns:A='URI1' xmlns='URI1'><A:P xmlns=''><BR/></A:P></DIV>"
'()
'(*TOP* (URI1:DIV (@ (URI1:B "A") (B "B")) (URI1:P (BR)))))
(test "<DIV A:B='A' B='B' xmlns:A='URI1' xmlns='URI1'><A:P xmlns=''><BR/></A:P></DIV>"
'((UA . "URI1"))
'(*TOP* (@ (*NAMESPACES* (UA "URI1")))
(UA:DIV (@ (UA:B "A") (B "B")) (UA:P (BR)))))
;; A few tests from XML Namespaces Recommendation
(test (string-append
"<x xmlns:edi='http://ecommerce.org/schema'>"
"<!-- the 'taxClass' attribute's ns http://ecommerce.org/schema -->"
"<lineItem edi:taxClass='exempt'>Baby food</lineItem>" nl
"</x>") '()
'(*TOP*
(x (lineItem
(@ (http://ecommerce.org/schema:taxClass "exempt"))
"Baby food"))))
(test (string-append
"<x xmlns:edi='http://ecommerce.org/schema'>"
"<!-- the 'taxClass' attribute's ns http://ecommerce.org/schema -->"
"<lineItem edi:taxClass='exempt'>Baby food</lineItem>"
"</x>") '((EDI . "http://ecommerce.org/schema"))
'(*TOP*
(@ (*NAMESPACES* (EDI "http://ecommerce.org/schema")))
(x (lineItem
(@ (EDI:taxClass "exempt"))
"Baby food"))))
(test (string-append
"<bk:book xmlns:bk='urn:loc.gov:books' "
"xmlns:isbn='urn:ISBN:0-395-36341-6'>"
"<bk:title>Cheaper by the Dozen</bk:title>"
"<isbn:number>1568491379</isbn:number></bk:book>")
'()
'(*TOP* (urn:loc.gov:books:book
(urn:loc.gov:books:title "Cheaper by the Dozen")
(urn:ISBN:0-395-36341-6:number "1568491379"))))
(test (string-append
"<!-- initially, the default namespace is 'books' -->"
"<book xmlns='urn:loc.gov:books' "
"xmlns:isbn='urn:ISBN:0-395-36341-6'>"
"<title>Cheaper by the Dozen</title>"
"<isbn:number>1568491379</isbn:number>"
"<notes>"
"<!-- make HTML the default namespace for some commentary -->"
"<p xmlns='urn:w3-org-ns:HTML'>"
"This is a <i>funny</i> book!"
"</p>"
"</notes>"
"</book>") '()
'(*TOP* (urn:loc.gov:books:book
(urn:loc.gov:books:title "Cheaper by the Dozen")
(urn:ISBN:0-395-36341-6:number "1568491379")
(urn:loc.gov:books:notes
(urn:w3-org-ns:HTML:p
"This is a " (urn:w3-org-ns:HTML:i "funny")
" book!")))))
(test (string-append
"<Beers>"
"<!-- the default namespace is now that of HTML -->"
"<table xmlns='http://www.w3.org/TR/REC-html40'>"
"<th><td>Name</td><td>Origin</td><td>Description</td></th>"
"<tr>"
"<!-- no default namespace inside table cells -->"
"<td><brandName xmlns=\"\">Huntsman</brandName></td>"
"<td><origin xmlns=''>Bath, UK</origin></td>"
"<td>"
"<details xmlns=''><class>Bitter</class><hop>Fuggles</hop>"
"<pro>Wonderful hop, light alcohol, good summer beer</pro>"
"<con>Fragile; excessive variance pub to pub</con>"
"</details>"
"</td>"
"</tr>"
"</table>"
"</Beers>")
'((html . "http://www.w3.org/TR/REC-html40"))
'(*TOP*
(@ (*NAMESPACES* (html "http://www.w3.org/TR/REC-html40")))
(Beers (html:table
(html:th (html:td "Name")
(html:td "Origin")
(html:td "Description"))
(html:tr (html:td (brandName "Huntsman"))
(html:td (origin "Bath, UK"))
(html:td
(details
(class "Bitter")
(hop "Fuggles")
(pro "Wonderful hop, light alcohol, good summer beer")
(con "Fragile; excessive variance pub to pub"))))))))
(test (string-append
"<!-- 1 --><RESERVATION xmlns:HTML='http://www.w3.org/TR/REC-html40'>"
"<!-- 2 --><NAME HTML:CLASS=\"largeSansSerif\">Layman, A</NAME>"
"<!-- 3 --><SEAT CLASS='Y' HTML:CLASS=\"largeMonotype\">33B</SEAT>"
"<!-- 4 --><HTML:A HREF='/cgi-bin/ResStatus'>Check Status</HTML:A>"
"<!-- 5 --><DEPARTURE>1997-05-24T07:55:00+1</DEPARTURE></RESERVATION>")
'((HTML . "http://www.w3.org/TR/REC-html40"))
'(*TOP*
(@ (*NAMESPACES* (HTML "http://www.w3.org/TR/REC-html40")))
(RESERVATION
(NAME (@ (HTML:CLASS "largeSansSerif")) "Layman, A")
(SEAT (@ (HTML:CLASS "largeMonotype") (CLASS "Y")) "33B")
(HTML:A (@ (HREF "/cgi-bin/ResStatus")) "Check Status")
(DEPARTURE "1997-05-24T07:55:00+1"))))
; Part of RDF from the XML Infoset
(test (string-concatenate/shared
(list-intersperse
'("<?xml version='1.0' encoding='utf-8' standalone='yes'?>"
"<!-- this can be decoded as US-ASCII or iso-8859-1 as well,"
" since it contains no characters outside the US-ASCII repertoire -->"
"<rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#'"
" xmlns:rdfs='http://www.w3.org/2000/01/rdf-schema#'"
" xmlns='http://www.w3.org/2001/02/infoset#'>"
"<rdfs:Class ID='Boolean'/>"
"<Boolean ID='Boolean.true'/>"
"<Boolean ID='Boolean.false'/>"
"<!--Info item classes-->"
"<rdfs:Class ID='InfoItem'/>"
"<rdfs:Class ID='Document' rdfs:subClassOf='#InfoItem'/>"
"<rdfs:Class ID='Element' rdfs:subClassOf='#InfoItem'/>"
"<rdfs:Class ID='Attribute' rdfs:subClassOf='#InfoItem'/>"
"<rdfs:Class ID='InfoItemSet'
rdfs:subClassOf='http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag'/>"
"<rdfs:Class ID='AttributeSet' rdfs:subClassOf='#InfoItemSet'/>"
"<!--Info item properties-->"
"<rdfs:Property ID='allDeclarationsProcessed'>"
"<rdfs:domain resource='#Document'/>"
"<rdfs:range resource='#Boolean'/></rdfs:Property>"
"<rdfs:Property ID='attributes'>"
"<rdfs:domain resource='#Element'/>"
"<rdfs:range resource='#AttributeSet'/>"
"</rdfs:Property>"
"</rdf:RDF>")
(string #\newline)))
'((RDF . "http://www.w3.org/1999/02/22-rdf-syntax-ns#")
(RDFS . "http://www.w3.org/2000/01/rdf-schema#")
(ISET . "http://www.w3.org/2001/02/infoset#"))
'(*TOP* (@ (*NAMESPACES*
(RDF "http://www.w3.org/1999/02/22-rdf-syntax-ns#")
(RDFS "http://www.w3.org/2000/01/rdf-schema#")
(ISET "http://www.w3.org/2001/02/infoset#")))
(*PI* xml "version='1.0' encoding='utf-8' standalone='yes'")
(RDF:RDF
(RDFS:Class (@ (ID "Boolean")))
(ISET:Boolean (@ (ID "Boolean.true")))
(ISET:Boolean (@ (ID "Boolean.false")))
(RDFS:Class (@ (ID "InfoItem")))
(RDFS:Class (@ (RDFS:subClassOf "#InfoItem") (ID "Document")))
(RDFS:Class (@ (RDFS:subClassOf "#InfoItem") (ID "Element")))
(RDFS:Class (@ (RDFS:subClassOf "#InfoItem") (ID "Attribute")))
(RDFS:Class
(@ (RDFS:subClassOf
"http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag")
(ID "InfoItemSet")))
(RDFS:Class
(@ (RDFS:subClassOf "#InfoItemSet") (ID "AttributeSet")))
(RDFS:Property
(@ (ID "allDeclarationsProcessed"))
(RDFS:domain (@ (resource "#Document")))
(RDFS:range (@ (resource "#Boolean"))))
(RDFS:Property
(@ (ID "attributes"))
(RDFS:domain (@ (resource "#Element")))
(RDFS:range (@ (resource "#AttributeSet")))))))
; Part of RDF from RSS of the Daemon News Mall
(test (string-concatenate/shared
(list-intersperse
'("<?xml version='1.0'?><rdf:RDF "
"xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' "
"xmlns='http://my.netscape.com/rdf/simple/0.9/'>"
"<channel>"
"<title>Daemon News Mall</title>"
"<link>http://mall.daemonnews.org/</link>"
"<description>Central source for all your BSD needs</description>"
"</channel>"
"<item>"
"<title>Daemon News Jan/Feb Issue NOW Available! Subscribe $24.95</title>"
"<link>http://mall.daemonnews.org/?page=shop/flypage&product_id=880</link>"
"</item>"
"<item>"
"<title>The Design and Implementation of the 4.4BSD Operating System $54.95</title>"
"<link>http://mall.daemonnews.org/?page=shop/flypage&product_id=912&category_id=1761</link>"
"</item>"
"</rdf:RDF>")
(string #\newline)
))
'((RDF . "http://www.w3.org/1999/02/22-rdf-syntax-ns#")
(RSS . "http://my.netscape.com/rdf/simple/0.9/")
(ISET . "http://www.w3.org/2001/02/infoset#"))
'(*TOP* (@ (*NAMESPACES*
(RDF "http://www.w3.org/1999/02/22-rdf-syntax-ns#")
(RSS "http://my.netscape.com/rdf/simple/0.9/")
(ISET "http://www.w3.org/2001/02/infoset#")))
(*PI* xml "version='1.0'")
(RDF:RDF (RSS:channel
(RSS:title "Daemon News Mall")
(RSS:link "http://mall.daemonnews.org/")
(RSS:description "Central source for all your BSD needs"))
(RSS:item
(RSS:title
"Daemon News Jan/Feb Issue NOW Available! Subscribe $24.95")
(RSS:link
"http://mall.daemonnews.org/?page=shop/flypage&product_id=880"))
(RSS:item
(RSS:title
"The Design and Implementation of the 4.4BSD Operating System $54.95")
(RSS:link
"http://mall.daemonnews.org/?page=shop/flypage&product_id=912&category_id=1761")))))
(test (string-concatenate/shared
(list-intersperse
'("<Forecasts TStamp='958082142'>"
"<TAF TStamp='958066200' LatLon='36.583, -121.850' BId='724915'"
" SName='KMRY, MONTEREY PENINSULA'>"
"<VALID TRange='958068000, 958154400'>111730Z 111818</VALID>"
"<PERIOD TRange='958068000, 958078800'>"
"<PREVAILING>31010KT P6SM FEW030</PREVAILING>"
"</PERIOD>"
"<PERIOD TRange='958078800, 958104000' Title='FM2100'>"
"<PREVAILING>29016KT P6SM FEW040</PREVAILING>"
"</PERIOD>"
"<PERIOD TRange='958104000, 958154400' Title='FM0400'>"
"<PREVAILING>29010KT P6SM SCT200</PREVAILING>"
"<VAR Title='BECMG 0708' TRange='958114800, 958118400'>VRB05KT</VAR>"
"</PERIOD></TAF>"
"</Forecasts>")
(string #\newline)
))
'()
'(*TOP* (Forecasts
(@ (TStamp "958082142"))
(TAF (@ (TStamp "958066200")
(SName "KMRY, MONTEREY PENINSULA")
(LatLon "36.583, -121.850")
(BId "724915"))
(VALID (@ (TRange "958068000, 958154400")) "111730Z 111818")
(PERIOD (@ (TRange "958068000, 958078800"))
(PREVAILING "31010KT P6SM FEW030"))
(PERIOD (@ (Title "FM2100") (TRange "958078800, 958104000"))
(PREVAILING "29016KT P6SM FEW040"))
(PERIOD (@ (Title "FM0400") (TRange "958104000, 958154400"))
(PREVAILING "29010KT P6SM SCT200")
(VAR (@ (Title "BECMG 0708")
(TRange "958114800, 958118400"))
"VRB05KT"))))))
))
))
(run-tests ssax-tests)
| true |
5021101761ba13589ae6a52590ece55a2c2e6e50 | 37858e0ed3bfe331ad7f7db424bd77bf372a7a59 | /book/1ed/03-list/member/pmember_6_correct_interleave.rkt | f8fb58b44940fda40344f8b4a3ead0869acd581c | []
| 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 | 921 | rkt | pmember_6_correct_interleave.rkt | #lang racket
(require "../../libs/trs/mk.rkt")
(require "../../02_2-list/nullo.rkt")
(require "../../02_1-pair/conso.rkt")
(require "../listo.rkt")
(require "./eq-caro.rkt")
(provide (all-defined-out))
;; Note that the correct version of pmembero doesn't provided in 1ed
;; The following uses 2ed definition.
;; ๅขๅ ไบค้
;; ไป็ถๅ็ฌฌไบ็็ไบค้ไธไธๆ ท
(define pmembero
(lambda (x l)
(condi
((eq-caro l x)
(fresh (d)
(cdro l d)
(listo d)))
(else
(fresh (d)
(cdro l d)
(pmembero x d))))))
(module+ main
(require "../../libs/trs/mkextraforms.rkt")
(require "../../libs/test-harness.rkt")
(run 12 (l)
(pmembero 'tofu l))
(run* (q)
(pmembero 'tofu `(a b tofu d x)))
;; '(_.0)
(run* (q)
(pmembero 'tofu `(a b tofu d . x)))
;; '() ; OK
)
| false |
da2684846d096bbad7a2792d72b81f12decbc299 | 7e15b782f874bcc4192c668a12db901081a9248e | /the-little-typer/ch09.rkt | 4372b10a20f704e7b8f32c69e96f2943dc4ad8e2 | []
| no_license | Javran/Thinking-dumps | 5e392fe4a5c0580dc9b0c40ab9e5a09dad381863 | bfb0639c81078602e4b57d9dd89abd17fce0491f | refs/heads/master | 2021-05-22T11:29:02.579363 | 2021-04-20T18:04:20 | 2021-04-20T18:04:20 | 7,418,999 | 19 | 4 | null | null | null | null | UTF-8 | Racket | false | false | 5,657 | rkt | ch09.rkt | #lang pie
(claim + (-> Nat Nat Nat))
(define +
(lambda (m n)
(iter-Nat m
n
(lambda (i) (add1 i)))))
(claim incr (-> Nat Nat))
(define incr
(lambda (n)
(iter-Nat n
1
(+ 1))))
(claim incr=add1
(Pi ((n Nat))
(= Nat (incr n) (add1 n))))
(claim incr=add1-step
(Pi ((n-1 Nat))
(->
(= Nat (incr n-1) (add1 n-1))
(= Nat (add1 (incr n-1)) (add1 (add1 n-1))))))
#;
(define incr=add1-step
;; this implementation works fine
;; but book provides a simpler version using `cong` - see below.
(lambda (n-1 r-incr=add1)
;; we want this whole thing to be:
;; (= Nat (add1 (incr n-1)) (add1 (add1 n-1)))
(replace
;; target
;; - from: (incr n-1)
;; - to: (add1 n-1)
r-incr=add1
;; motive:
;; - we want:
;; (mot <to>)
;; which is:
;; (mot (add1 n-1))
;; to be:
;; (= Nat (add1 (incr n-1)) (add1 (add1 n-1)))
(lambda (i) (= Nat (add1 (incr n-1)) (add1 i)))
;; base is a (mot <from>)
;; which is (mot (incr n-1))
;; which is (= Nat (add1 (incr n-1)) (add1 (incr n-1)))
(same (add1 (incr n-1))))))
(define incr=add1-step
(lambda (n-1 r-incr=add1)
(cong r-incr=add1 (+ 1))))
(define incr=add1
(lambda (n)
(ind-Nat
n
(lambda (i) (= Nat (incr i) (add1 i)))
(same 1)
incr=add1-step)))
(incr=add1 4)
;; Q: what is equivalent of (cong (= X from to) f) expressed by replace?
;; (cong (= X from to) f) is of type (= Y (f from) (f to))
;; where f is of type (-> X Y).
;; so we want an expression:
;; (replace
;; (= X from to)
;; <mot>
;; <base>)
;; to have the type: (= Y (f from) (f to))
;; so (<mot> <to>), which is (<mot> ?to)
;; should be: (= Y (f from) (f ?to)), therefore:
;; (replace
;; (= X from to)
;; (lambda (t) (= Y (f from) (f t)))
;; <base>)
;; now what is (<mot> <from>)?
;; (= Y (f from) (f from)) ... so <base> is just (same (f from))?
;; (replace
;; (= X from to)
;; (lambda (t) (= Y (f from) (f t)))
;; (same (f from)))
;; Note: I'm not 100% sure, but it looks about right.
(claim double (-> Nat Nat))
(define double
(lambda (n)
(iter-Nat n
0
(lambda (r) (add1 (add1 r))))))
(double 5)
(claim twice (-> Nat Nat))
(define twice
(lambda (n) (+ n n)))
(twice 3)
(claim twice=double
(Pi ((n Nat))
(= Nat (twice n) (double n))))
(claim add1+=+add1
(Pi ((n Nat)
(m Nat))
(= Nat
(add1 (+ n m))
(+ n (add1 m)))))
(claim add1+=+add1-step
;; note that here we are putting `m` in front so that
;; it is easier for currying.
(Pi ((m Nat)
(n-1 Nat))
(->
(= Nat
;; from
(add1 (+ n-1 m))
;; to
(+ n-1 (add1 m)))
(= Nat (add1 (add1 (+ n-1 m))) (add1 (+ n-1 (add1 m)))))))
#;
(define add1+=+add1-step
;; works fine, but `conj` is simpler, see below.
(lambda (m n-1 r-add1+=+add1)
(replace
r-add1+=+add1
(lambda (k)
(= Nat (add1 (add1 (+ n-1 m))) (add1 k)))
(same (add1 (add1 (+ n-1 m)))))))
(define add1+=+add1-step
(lambda (m n-1 r-add1+=+add1)
(cong r-add1+=+add1 (+ 1))))
(define add1+=+add1
(lambda (n m)
(ind-Nat n
;; motive
(lambda (i)
(= Nat (add1 (+ i m)) (+ i (add1 m))))
;; base
(same (add1 m))
;; step
(add1+=+add1-step m))))
(claim twice=double-step
(Pi ((n-1 Nat))
(->
(= Nat
;; from
(twice n-1)
;; to
(double n-1))
;; want:
(= Nat
(twice (add1 n-1))
(double (add1 n-1))))))
#;
(define twice=double-step
(lambda (n-1 r-twice-double)
(replace
r-twice-double
;; motive
(lambda (k)
(= Nat (twice (add1 n-1)) (add1 (add1 k))))
;; base
(cong (symm (add1+=+add1 n-1 n-1)) (+ 1)))))
(define twice=double-step
(lambda (n-1 r-twice-double)
(replace
(the
(= Nat
;; "rewrite" from
(add1 (+ n-1 n-1))
;; "rewrite" to
(+ n-1 (add1 n-1)))
(add1+=+add1 n-1 n-1))
(lambda (k)
;; k is the part that "doesn't fit"
(= Nat (add1 k) (double (add1 n-1))))
(the
(= Nat
(add1
;; this part "doesn't fit".
(add1 (+ n-1 n-1)))
(double (add1 n-1)))
(cong r-twice-double (+ 2))))))
(define twice=double
(lambda (n)
(ind-Nat n
(lambda (i)
(= Nat (twice i) (double i)))
(same 0)
twice=double-step)))
(claim double-Vec
(Pi ((X U)
(l Nat))
(-> (Vec X l)
;; prefer double over twice,
;; as double has (add1 (add1 _)) on top
;; which is easier for induction to work.
(Vec X (double l)))))
(define double-Vec
(lambda (X l)
(ind-Nat
l
;; motive
(lambda (k)
(->
(Vec X k)
(Vec X (double k))))
;; base
(lambda (_) vecnil)
;; step
(lambda (l-1 r inp)
(vec:: (head inp)
(vec:: (head inp)
(r (tail inp))))))))
(claim example
(Vec Atom 7))
(define example
(vec:: 'e
(vec:: 'x
(vec:: 'a
(vec:: 'm
(vec:: 'p
(vec:: 'l
(vec:: 'e
vecnil))))))))
(double-Vec Atom 7 example)
(claim twice-Vec
(Pi ((X U)
(l Nat))
(-> (Vec X l)
(Vec X (twice l)))))
(define twice-Vec
(lambda (X l)
(replace
;; we are rewriting `double` into `twice`,
;; rather than the other way around.
(symm (twice=double l))
;; motive
(lambda (k) (-> (Vec X l) (Vec X k)))
;; base
(double-Vec X l))))
(twice-Vec Atom 7 example)
| false |
066f5a0c4bc0f95058426f2b8728c0a7af546fdb | d2d01d48d5c59d54c295f8474c45e3b42f605005 | /future_examples/step2.rkt | 69af1878193d0459e73ee7933d91f3c82afa2c67 | []
| no_license | iu-parfunc/accelerack | 543d73e3a01711ad765f6ee4defef0c9d52447b8 | 9550ecc1e7494d296f3faac3aef71393c1705827 | refs/heads/master | 2021-01-21T04:27:28.653604 | 2016-05-02T14:02:24 | 2016-05-02T14:02:24 | 30,226,648 | 3 | 6 | null | null | null | null | UTF-8 | Racket | false | false | 1,502 | rkt | step2.rkt | #lang racket
(require accelerack)
(require rackunit)
;; Define-acc puts the computation into both namespaces:
(define-acc vec (array (1 2 3 4)))
vec ;; Prints "<accelerack-array>" or similar
;; sqr is a regular function and an Accelerack function:
(define-acc (sqr x) (* x x)) ;; Samth: should this be define-acc-fun?
;; The following returns #t:
(procedure? sqr)
(sqr 3) ;; Prints 9.
(define-acc vec2 (map sqr vec))
;; This should still be true, whether or not the computation
;; has happened eagerly or lazily:
(check-true (array? vec2))
;; This runs the computation on the GPU, and returns a Racket-side array:
(check-true (array? (acc vec2)))
;; Whether or not it was forced before, this forces the computation on the racket side.
;; With lazy semantics we would see any exceptions here:
(array->list vec2)
;; One reason to use lazy semantics is so we don't compute things on the Racket side
;; that should really only be done on the GPU side.
;; Accelerate *does* have array level conditionals, so the following could be valid:
(define-acc vec3 (if (= (! vec2 1) 3) vec vec2))
;; The fact that (array? vec3), as opposed to (procedure? vec3) is due
;; to type inference in Accelerack.
;; But what about this?:
; (define-acc fn (if (= (! vec2 1) 3) sqr sqr))
;; (1) That could be a type error in the front-end. The typing rule for conditionals
;; should rule out arrow types in its branches.
;; (2) It could also *work*, if we have commuting conversions in our normalization pass.
| false |
17a1ca7efbd850baf8885dcb5f98639bb7337457 | 82c76c05fc8ca096f2744a7423d411561b25d9bd | /typed-racket-lib/typed-racket/standard-inits.rkt | 612b15f9ae4a31e9274cc085e2dba38483240e61 | [
"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 | 1,125 | rkt | standard-inits.rkt | #lang racket/base
(require
racket/base racket/lazy-require "env/env-req.rkt"
"utils/timing.rkt" ;; only for timing/debugging
)
(provide do-standard-inits)
(lazy-require
[typed-racket/base-env/base-env ((init init-base-env))]
[typed-racket/base-env/base-env-numeric ((init init-base-env-numeric))]
[typed-racket/base-env/base-structs (initialize-structs)]
[typed-racket/base-env/base-env-indexing (initialize-indexing)]
[typed-racket/base-env/base-special-env (initialize-special)]
[(submod typed-racket/base-env/base-types initialize) (initialize-type-names)])
(define initialized #f)
(define (do-standard-inits)
(unless initialized
(do-time "Starting initialization")
(initialize-structs)
(do-time "Finished base-structs")
(initialize-indexing)
(do-time "Finished base-env-indexing")
(init-base-env)
(do-time "Finished base-env")
(init-base-env-numeric)
(do-time "Finished base-env-numeric")
(initialize-special)
(do-time "Finished base-special-env")
(initialize-type-names)
(do-time "Finished base-types")
(set! initialized #t))
(do-requires))
| false |
24d07ad07ec477e3a7c8dbb1471a68bf7709793f | 9dc73e4725583ae7af984b2e19f965bbdd023787 | /c311/a9-5.rkt | e2823d4c3a0f6f8ef67ff7b7e440343011f059e5 | []
| no_license | hidaris/thinking-dumps | 2c6f7798bf51208545a08c737a588a4c0cf81923 | 05b6093c3d1239f06f3657cd3bd15bf5cd622160 | refs/heads/master | 2022-12-06T17:43:47.335583 | 2022-11-26T14:29:18 | 2022-11-26T14:29:18 | 83,424,848 | 6 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 5,587 | rkt | a9-5.rkt | #lang racket
(require "parenthec.rkt")
(define-union expr
(const expr)
(var n)
(if test conseq alt)
(mult exp1 exp2)
(sub1 exp)
(zero exp)
(letcc body)
(throw k-exp v-exp)
(let exp body)
(lambda body)
(app rator rand))
(define value-of-cps
(lambda (exp env k)
(union-case exp expr
[(const expr) (let* ([k* k]
[v* expr])
(app-k k* v*))]
[(mult exp1 exp2)
(let* ([exp* exp1]
[env* env]
[k* k]
[k* (kt_*-mult-outer-k exp2 env* k*)])
(value-of-cps exp* env* k*))]
[(sub1 exp) (let* ([exp* exp]
[env* env]
[k* k]
[k* (kt_*-sub1-k k*)])
(value-of-cps exp* env* k*))]
[(zero exp) (let* ([exp* exp]
[env* env]
[k* k]
[k* (kt_*-zero-k k*)])
(value-of-cps exp* env* k*))]
[(if test conseq alt)
(let* ([exp* test]
[env* env]
[k* k]
[k* (kt_*-if-k conseq alt env* k*)])
(value-of-cps exp* env* k*))]
[(let e body)
(let* ([exp* e]
[env* env]
[k* k]
[k* (kt_*-let-k body env* k*)])
(value-of-cps exp* env* k*))]
;; we don't need let/cc to grap cont, because we are cps!
[(letcc body) (let* ([exp* body]
[env* env]
[k* k]
[env* (envr_extend-env k* env*)])
(value-of-cps exp* env* k*))]
[(throw k-exp v-exp)
(let* ([exp* k-exp]
[env* env]
[k* (kt_*-throw-k v-exp env*)])
(value-of-cps exp* env* k*))]
[(var y) (let* ([env* env]
[a* y]
[k* k])
(apply-env env* a* k*))]
[(lambda body)
(let* ([k* k]
[env* env]
[v* (clos_closure body env*)])
(app-k k* v*))]
[(app rator rand)
(let* ([exp* rator]
[env* env]
[k* k]
[k* (kt_*-rator-k rand env* k*)])
(value-of-cps exp* env* k*))])))
(define-union envr
(empty-env)
(extend-env a env))
(define-union clos
(closure body env))
(define apply-closure
(ฮป (p a k)
(union-case p clos
[(closure body env)
(let* ([exp* body]
[env* env]
[v* a]
[env* (envr_extend-env v* env*)]
[k* k])
(value-of-cps exp* env* k*))])))
(define apply-env
(lambda (env n k)
(union-case env envr
[(empty-env) (error 'value-of "unbound identifier")]
[(extend-env a env)
(if (zero? n)
(let* ([k* k]
[v* a])
(app-k k* v*))
(let* ([env* env]
[n* n]
[n* (sub1 n*)]
[k* k])
(apply-env env* n* k*)))])))
(define-union kt
(empty-k)
(*-mult-inner-k v^ k)
(*-mult-outer-k x2 env k)
(*-sub1-k k)
(*-zero-k k)
(*-if-k conseq alt env k)
(*-let-k body env k)
;; discard outer k
(*-throw-k v-exp env)
(*-rand-k r k)
(*-rator-k rand env k))
(define app-k
(lambda (k^ v)
(union-case k^ kt
[(empty-k) (let* ([v* v])
v*)]
[(*-mult-inner-k v^ k)
(let* ([k* k]
[v* v]
[v* (* v^ v*)])
(app-k k* v*))]
[(*-mult-outer-k x2 env k)
(let* ([exp* x2]
[env* env]
[k* k]
[k* (kt_*-mult-inner-k v k*)])
(value-of-cps exp* env* k*))]
[(*-sub1-k k)
(let* ([k* k]
[v* (sub1 v)])
(app-k k* v*))]
[(*-zero-k k)
(let* ([k* k]
[v* (zero? v)])
(app-k k* v*))]
[(*-if-k conseq alt env k)
(if v
(let* ([exp* conseq]
[env* env]
[k* k])
(value-of-cps exp* env* k*))
(let* ([exp* alt]
[env* env]
[k* k])
(value-of-cps exp* env* k*)))]
[(*-let-k body env k)
(let* ([exp* body]
[env* (envr_extend-env v env)]
[k* k])
(value-of-cps exp* env* k*))]
[(*-throw-k v-exp env)
(let* ([exp* v-exp]
[env* env]
[v* v])
(println v)
(value-of-cps exp* env* v*))]
[(*-rand-k r k)
(let* ([r* r]
[v* v]
[k* k])
(apply-closure r* v* k*))]
[(*-rator-k rand env k)
(let* ([exp* rand]
[env* env]
[k* (kt_*-rand-k v k)])
(value-of-cps exp* env* k*))])))
;; (let ((f (lambda (f)
;; (lambda (n)
;; (if (zero? n)
;; 1
;; (* n ((f f) (sub1 n))))))))
;; (* (catch k ((f f) (throw k ((f f) 4)))) 5))
(define main
(lambda ()
(value-of-cps
(expr_let
(expr_lambda
(expr_lambda
(expr_if
(expr_zero (expr_var 0))
(expr_const 1)
(expr_mult (expr_var 0) (expr_app (expr_app (expr_var 1) (expr_var 1)) (expr_sub1 (expr_var 0)))))))
(expr_mult
(expr_letcc
(expr_app
(expr_app (expr_var 1) (expr_var 1))
(expr_throw (expr_var 0) (expr_app (expr_app (expr_var 1) (expr_var 1)) (expr_const 4)))))
(expr_const 5)))
(envr_empty-env)
(kt_empty-k))))
| false |
21b7f5c5e82272ebf2da6cb4cfea3a9a1203f394 | 04c0a45a7f234068a8386faf9b1319fa494c3e9d | /test-pairs.rkt | 1f4769ba8d7178a2e0fd1cca8258033719f380ec | []
| 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 | 214 | rkt | test-pairs.rkt | #lang racket ; File test-pairs.rkt"
(require redex "pairs.rkt" "lazy-evaluator.rkt")
(printf "~a~n" "test-pairs")
(test-equal (ev (Car (Cons yes no))) 'yes)
(test-equal (ev (Cdr (Cons yes no))) 'no)
(test-results)
| false |
9accb36f727f539ff11fbdb1b59ce6c7d7b36b52 | 4cc0edb99a4c5d945c9c081391ae817b31fc33fd | /scribblings/parcheesi.scrbl | 6e95541048114f5354ede6f1c74fbfbdbd857565 | [
"Apache-2.0",
"MIT",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | racket/games | c8eaa92712405890cd1db19b8ba32b1620d885b8 | eba5c6fa54c524871badb8b0e205fe37640d6c3e | refs/heads/master | 2023-08-19T00:41:23.930448 | 2023-07-24T23:29:05 | 2023-07-24T23:29:05 | 27,138,761 | 54 | 33 | NOASSERTION | 2020-05-04T13:46:50 | 2014-11-25T17:59:40 | Racket | UTF-8 | Racket | false | false | 2,179 | scrbl | parcheesi.scrbl | #lang scribble/doc
@(require "common.rkt")
@gametitle["Parcheesi" "parcheesi" "Board Game"]
@onscreen{Parcheesi} is a race game for four players. The goal is for
each player to move their pieces from the starting position (the
circles in the corners) to the home square (in the center of the
board), passing a nearly complete loop around the board in the
counter-clockwise direction and then heads up towards the main row.
For example, the green player enters from the bottom right, travels
around the board on the light blue squares, passing each of the
corners, until it reaches the middle of the bottom of the board, where
it turns off the light blue squares and heads into the central region.
On each turn, the player rolls two dice and advances the pawn, based
on the die rolls. Typically the players may move a pawn for each die.
The pawn moves by the number of pips showing on the die and all of the
dice must be used to complete a turn.
There are some exceptions, however:
@itemize[
@item{You must roll a 5 (either directly or via summing) to enter from
the start area to the main ring.}
@item{If two pieces of the same color occupy a square, no pieces may
pass that square.}
@item{If an opponent's piece lands on your piece, you piece is
returned to the starting area and the opponent receives a bonus of
20 (which is treated just as if they had rolled a 20 on the
dice).}
@item{If your piece makes it home (and it must do so by exact count) you
get a bonus of 10, to be used as an additional die roll.}
]
These rules induce a number of unexpected corner cases, but the GUI
only lets you make legal moves. Watch the space along the bottom of
the board for reasons why a move is illegal or why you have not used
all of your die rolls.
The automated players are:
@itemize[
@item{@onscreen{Reckless Renee}, who tries to maximize the chances
that someone else bops her.}
@item{@onscreen{Polite Polly}, who tries to minimize the distance her
pawns move. (``No, after @emph{you}. I insist.'')}
@item{@onscreen{Amazing Grace}, who tries to minimize the chance she
gets bopped while moving as far as possible.}
]
| false |
60bff76f9bb8ed96a5c0563c7ce7c1ca7ea4192b | 8ad2bcf76a6bda64f509da5f0844e0285f19d385 | /bin/bsort.rkt | 5f85456e1b3624730fefae7372904a8ac0cd818d | []
| no_license | jeapostrophe/exp | c5efae0ea7068bb5c8f225df6de45e6c4fa566bd | 764265be4bcd98686c46ca173d45ee58dcca7f48 | refs/heads/master | 2021-11-19T00:23:11.973881 | 2021-08-29T12:56:11 | 2021-08-29T12:56:11 | 618,042 | 39 | 5 | null | null | null | null | UTF-8 | Racket | false | false | 742 | rkt | bsort.rkt | #!/usr/bin/env racket
#lang racket/base
(require racket/match)
(struct bmt ())
(struct bnode (l x r))
(define (blist t)
(match t
[(bmt) '()]
[(bnode l x r)
(append (blist l) (cons x (blist r)))]))
(define (binsert t e)
(match t
[(bmt) (bnode t e t)]
[(bnode l x r)
(if (prefer e x)
(bnode (binsert l e) x r)
(bnode l x (binsert r e)))]))
(define (prefer x y)
(printf "Do you prefer ~s to ~s?\n" x y)
(read))
(define (bsort l)
(blist
(for/fold ([t (bmt)]) ([e (in-list l)])
(binsert t e))))
(module+ main
(require racket/cmdline
racket/file)
(command-line #:program "bsort"
#:args (i)
(for-each displayln (bsort (file->lines i)))))
| false |
a9382bc3d2f92f711f0813c7cda8c15b517887ce | d31a0e07515441b5c9b0721195a4bcd7a3d85156 | /src/logic/term-equation-adt.rkt | 8c5f0f6c89e83fbd1026ab85bea2d49b57d0eaab | [
"MIT"
]
| permissive | bguppl/interpreters | 7c9728890cdd3e943415ec17b2ebaa0f17ccefa6 | f2dfe0608141ce521d62ce26e1e906d17c8474f7 | refs/heads/master | 2023-07-24T16:57:46.525812 | 2023-05-22T13:08:54 | 2023-05-22T13:08:54 | 233,845,863 | 26 | 32 | MIT | 2023-07-19T11:22:15 | 2020-01-14T13:19:33 | TypeScript | UTF-8 | Racket | false | false | 1,234 | rkt | term-equation-adt.rkt | #lang racket
(provide (all-defined-out))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Equation ADT
;; An equation is implemented as a tagged list of two terms.
;; Constructors:
;; Signature: make-equation(term1, term2)
;; Type: [Term * Term -> Equation]
;; Purpose: Equation value constructor
;; Pre-conditions: -
;; Tests:
;; (make-equation '(f (var X)) '(f 2))
;; ==> '(equation (f (var X)) (f 2))
(define make-equation
(lambda (term1 term2)
(list 'equation term1 term2)))
;; Signature: equation?(eq)
;; Type: [T -> Boolean]
;; Purpose: membership predicate for Equation
;; Pre-conditions: -
;; Tests: -
(define equation?
(lambda (x)
(and (list? x) (= (length x) 3) (eq? (car list) 'equation))))
;; Signature: equation->left(eq)
;; Type: [Equation -> Term]
;; Purpose: Accessor for equation
;; Pre-conditions: -
;; Tests: (equation->left '(equation (f (var X)) (f 2)))
;; ==> '(f (var X))
(define equation->left
(lambda (eq)
(second eq)))
;; Signature: equation->right(eq)
;; Type: [Equation -> Term]
;; Purpose: Accessor for equation
;; Pre-conditions: -
;; Tests: (equation->right '(equation (f (var X)) (f 2)))
;; ==> '(f 2)
(define equation->right
(lambda (eq)
(third eq)))
| false |
a2cbdd1a1727e4b5cbac69dd7fbf3f79c299dba9 | e553691752e4d43e92c0818e2043234e7a61c01b | /rosette/main.rkt | 2bf04e6944065f9a56d235469ea4c0689e62ae73 | [
"BSD-2-Clause"
]
| permissive | emina/rosette | 2b8c1bcf0bf744ba01ac41049a00b21d1d5d929f | 5dd348906d8bafacef6354c2e5e75a67be0bec66 | refs/heads/master | 2023-08-30T20:16:51.221490 | 2023-08-11T01:38:48 | 2023-08-11T01:38:48 | 22,478,354 | 656 | 89 | NOASSERTION | 2023-09-14T02:27:51 | 2014-07-31T17:29:18 | Racket | UTF-8 | Racket | false | false | 96 | rkt | main.rkt | #lang racket
(require "safe.rkt")
(provide
(all-from-out racket)
(all-from-out "safe.rkt")) | false |
aff8f64c6b935d5b0eea7e1a39ea5e915aee12fd | 28df383ef3d0cf36d4dd40c478b4c26f0d22bad6 | /2.74.rkt | 839c191046d1e1aeca8c48058599ae782be6e0ae | []
| no_license | stefanruijsenaars/sicp-exercises | 2df9dc6f62b6701842490da7155da0d5c0230d02 | 7c6cf3f8ec38f6bd32a9bf120b23de0315ae6193 | refs/heads/master | 2021-01-21T22:15:06.088385 | 2017-10-11T17:48:37 | 2017-10-11T17:48:37 | 102,140,021 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 2,663 | rkt | 2.74.rkt | #lang sicp
(define (type-tag file)
(car file))
(define (apply-generic op name file)
(let ((division-name (type-tag file)))
(let ((proc (get op division-name)))
(if proc
(proc name (cdr file))
(error "no result")))))
(define table (list))
(define (put op type proc)
(set! table (append table (list (list op type proc)))))
(define (get op type)
(define (search op type t)
(cond ((null? t) #f)
((and (eqv? (caar t) op) (eqv? (cadar t) type))
(caddar t))
(else (search op type (cdr t)))))
(search op type table))
(define division1-file1 '(division1 (joe (address (1 street)) (salary 1000)) (mike (address (2 street)) (salary 2000))))
(define division2-file1 '(division2 ("name=don" ((3 street)) 3000) ("name=peter" ((4 street) 4000)) ("name=joe" ((1 street) 1000))))
(define (install-division1-package)
(define (get-record employee-name file)
(cond ((null? file) (error "no result"))
((eq? (car (car file)) (string->symbol employee-name)) (car file))
(else (get-record employee-name (cdr file)))))
(define (get-salary employee-name file)
(let ((record (get-record employee-name file)))
(if (null? record)
0
(car (cdaddr record)))))
(put 'get-record 'division1 get-record)
(put 'get-salary 'division1 get-salary))
(define (install-division2-package)
(define (get-record employee-name file)
(cond ((null? file) (error "no result"))
((equal? (car (car file)) (string-append "name=" employee-name)) (car file))
(else (get-record employee-name (cdr file)))))
(define (get-salary employee-name file)
(let ((record (get-record employee-name file)))
(if (null? record)
(error "no result")
(cadadr record))))
(put 'get-record 'division2 get-record)
(put 'get-salary 'division2 get-salary))
(install-division1-package)
(install-division2-package)
; file already contains type tags
(define (get-record employee-name file)
(apply-generic 'get-record employee-name file))
(define (get-salary employee-name file)
(apply-generic 'get-salary employee-name file))
(display (get-record "mike" division1-file1))
(newline)
(display (get-salary "mike" division1-file1))
(newline)
(display (get-record "peter" division2-file1))
(newline)
(display (get-salary "peter" division2-file1))
(newline)
(define (find-employee-record employee-name seq)
(if (null? seq)
'()
(append (list (get-record employee-name (car seq))) (find-employee-record employee-name (cdr seq)))))
(display (find-employee-record "joe" (list division1-file1 division2-file1))) | false |
e2cd4d5cfc83ba985ffcbfc03e307d4e4d33a0db | f5da4884c236512f9a945100234e213e51f980d3 | /serval/lib/symopt.rkt | 9154e65d4d15039ca24a3f41c07ba2525aede2b3 | [
"MIT"
]
| permissive | uw-unsat/serval | 87574f5ec62480463ae976468d4ae7a56e06fe9f | 72adc4952a1e62330aea527214a26bd0c09cbd05 | refs/heads/master | 2022-05-12T23:19:48.558114 | 2022-01-20T18:53:26 | 2022-01-20T18:53:26 | 207,051,966 | 45 | 12 | MIT | 2022-03-21T14:05:50 | 2019-09-08T02:40:10 | Racket | UTF-8 | Racket | false | false | 1,110 | rkt | symopt.rkt | #lang rosette
(require "debug.rkt" "unittest.rkt")
(provide (all-defined-out))
; Generic symbolic optimizations for users of Serval library.
(define (split-cases value cases func)
(define newvalue
(foldr (lambda (a result) (if (equal? a value) a result)) value cases))
(for/all ([v newvalue #:exhaustive]) (begin
(check-unsat? (verify (assert (equal? v value))))
(func v))))
(define-syntax (split-pc stx)
(define (build-name id . parts)
(datum->syntax id
(string->symbol
(apply string-append
(map (lambda (p)
(if (syntax? p)
(symbol->string (syntax-e p))
p))
parts)))
id))
(syntax-case stx ()
[(_ (struct-name field) obj body ...)
(with-syntax ([getter (build-name #'obj #'struct-name "-" #'field)]
[setter! (build-name #'obj "set-" #'struct-name "-" #'field "!")])
(syntax/loc stx
(for/all ([pc (getter obj) #:exhaustive])
(begin
(setter! obj pc)
body ...))))]))
| true |
e6696f010ba8ec4d14b7939174a2c84ba65f4c42 | ff21054c103e3133a582571cc6b9dc9d16c4fbe7 | /punctaffy-lib/private/suppress-internal-errors.rkt | 574abbd372449a6383ec82eff71e0c0c4726794f | [
"Apache-2.0"
]
| permissive | lathe/punctaffy-for-racket | 3e87a48886bc5a9a0123187e5bfae7d550d7b215 | 2a958bf3987459e9197eb5963fe5107ea2e2e912 | refs/heads/main | 2022-03-18T21:37:28.626249 | 2022-03-11T11:44:37 | 2022-03-11T11:44:37 | 104,895,828 | 7 | 1 | Apache-2.0 | 2022-02-17T04:51:25 | 2017-09-26T14:31:18 | Racket | UTF-8 | Racket | false | false | 1,051 | rkt | suppress-internal-errors.rkt | #lang parendown racket/base
; suppress-internal-errors.rkt
;
; A Racket parameter that controls whether certain Punctaffy
; operations perform exhaustive checks for errors or not. When
; debugging Punctaffy itself, it may be useful to edit the places this
; parameter is initialized and used so that the checks are always
; performed.
; Copyright 2018 The Lathe Authors
;
; Licensed under the Apache License, Version 2.0 (the "License");
; you may not use this file except in compliance with the License.
; You may obtain a copy of the License at
;
; http://www.apache.org/licenses/LICENSE-2.0
;
; Unless required by applicable law or agreed to in writing,
; software distributed under the License is distributed on an
; "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
; either express or implied. See the License for the specific
; language governing permissions and limitations under the License.
(provide punctaffy-suppress-internal-errors)
(define punctaffy-suppress-internal-errors (make-parameter #f))
| false |
856b020b690a28a41d72e96866b41f7829d17ba3 | cce7569795ef6aa32f0ed1d1a5f0798d41f734d4 | /islinterpreter.rkt | 8ad3d4f8a2ea7f2c85aa5ac334659f48a9bff6ff | []
| no_license | klauso/KdP2012 | 09ab42ceb0e89881ebfccc1e8daf1f1e715695c3 | c0d0c34d3a7816c6aeb93d29d09822b151f44b86 | refs/heads/master | 2020-04-25T11:35:10.526171 | 2012-07-12T07:41:03 | 2012-07-12T07:41:03 | 3,492,527 | 1 | 0 | null | null | 2012-02-20T10:02:45 | Racket | UTF-8 | Racket | false | false | 21,510 | rkt | islinterpreter.rkt | ;; The first three lines of this file were inserted by DrRacket. They record metadata
;; about the language level of this file in a form that our tools can easily process.
#reader(lib "htdp-intermediate-lambda-reader.ss" "lang")((modname islinterpreter) (read-case-sensitive #t) (teachpacks ((lib "image.ss" "teachpack" "2htdp") (lib "universe.ss" "teachpack" "2htdp"))) (htdp-settings #(#t quasiquote repeating-decimal #f #t none #f ((lib "image.ss" "teachpack" "2htdp") (lib "universe.ss" "teachpack" "2htdp")))))
; Course on "Konzepte der Programmiersprachen"
; by Klaus Ostermann, University of Marburg
; Interpreter for the core language of ISL+
; Setzen sie unter "Sprache auswรคhlen" die Ausgabenotation "quasiquote"
;;;;;;;;;;;;;;;;;;;;
; Syntax of ISL+
;;;;;;;;;;;;;;;;;;;;
(define-struct var-def (name e))
; a Var-Def is: (make-var-def String Exp)
(define-struct struct-def (name fields))
; a Struct-Def is: (make-struct-def Symbol (list-of Symbol))
; a Def is either:
; - a Var-Def
; - a Struct-Def
(define-struct app (fun args))
(define-struct lam (args body))
(define-struct var (x))
(define-struct locl (defs e))
(define-struct structv (def fieldvalues))
(define-struct closure (args body env))
(define-struct cnd (clauses))
(define-struct cnd-clause (c e))
(define-struct primval (v))
; a Value is either
; - (make-primval Any)
; - (make-closure (list-of Symbol) Exp Env)
; - (make-structv Struct-Def (list-of Value))
; an Exp is either:
; - a Value
; - (make-app Exp (list-of Exp))
; - (make-lam (list-of Symbol) Exp)
; - (make-var Symbol)
; - (make-locl (list-of Def) Exp)
; - (make-cnd (list-of (make-cnd-clause Exp Exp))
;
; Note: the cases (make-closure (list-of Symbol) Exp Env)
; and (make-structv Struct-Def (list-of Value)) must not
; occur in the original program and are only produced
; during evaluation. They are also not supported by
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Parsing and printing of programs
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; s-exp -> Exp
; parses an s-expression to an abstract syntax tree
(define (parse sexp)
(if (cons? sexp)
(cond
[(equal? (first sexp) 'lambda)
(make-lam (second sexp) (parse (third sexp)))]
((equal? (first sexp) 'define-struct)
(make-struct-def (second sexp) (third sexp)))
[(equal? (first sexp) 'define)
(make-var-def (second sexp) (parse (third sexp)))]
[(equal? (first sexp) 'local)
(make-locl (map parse (second sexp)) (parse (third sexp)))]
[(equal? (first sexp) 'cond)
(make-cnd (map (lambda (cl)
(make-cnd-clause
(parse (first cl))
(parse (second cl))))
(rest sexp)))]
[else (make-app (parse (first sexp)) (map parse (rest sexp)))])
(if (symbol? sexp)
(make-var sexp)
(make-primval sexp))))
; Exp -> s-exp
; prints an abstract syntax tree to an s-expression
; for all expressions exp, the following property should hold:
; (parse (print exp)) == exp
; This property does not hold if exp contains structv or closures
; because they cannot be parsed and are only introduced during reduction
(define (print exp)
(cond [(lam? exp)
(list 'lambda (lam-args exp) (print (lam-body exp)))]
[(struct-def? exp)
(list 'define-struct (struct-def-name exp) (struct-def-fields exp))]
[(var-def? exp)
(list 'define (var-def-name exp) (print (var-def-e exp)))]
[(locl? exp)
(list 'local (map print (locl-defs exp)) (print (locl-e exp)))]
[(cnd? exp)
(cons 'cond (map (lambda (cc) (list (print (cnd-clause-c cc))
(print (cnd-clause-e cc))))
(cnd-clauses exp)))]
[(app? exp)
(cons (print (app-fun exp)) (map print (app-args exp)))]
[(var? exp) (var-x exp)]
[(closure? exp)
(list 'closure
(closure-args exp)
(print (closure-body exp))
(map print (closure-env exp)))]
[(structv? exp)
(cons (string->symbol
(string-append "make-"
(symbol->string
(struct-def-name (structv-def exp)))))
(map print (structv-fieldvalues exp)))]
[(primval? exp) (if (procedure? (primval-v exp))
'<primfun>
(primval-v exp))]
[else exp]))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Runtime entities: Values and Environments
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Exp -> Boolean
(define (value? e)
(or (closure? e) (primval? e) (structv? e)))
; (list-of Exp) -> Boolean
; are all elements in the list values?
(define (all-value? es)
(foldr (lambda (v b) (and (value? v) b)) true es))
; an Env is a (list-of (make-var-def Value))
; (list-of Def) -> Boolean
; determines whether env is an Env
(define (env? env)
(or
(empty? env)
(and
(var-def? (first env))
(value? (var-def-e (first env)))
(env? (rest env)))))
; Env Symbol -> Value
; looks up x in (append env intial-env)
(define (lookup-env env x)
(local
[(define (lookup-env-helper env x)
(cond [(empty? env)
(error (string-append "Unbound variable: "
(symbol->string x)))]
[(and (var-def? (first env))
(eq? (var-def-name (first env)) x))
(var-def-e (first env))]
[else (lookup-env-helper (rest env) x)]))]
(lookup-env-helper (append env initial-env) x)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Reduction semantics of ISL+
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Exp Env -> Exp
; reduces an expression in an environment
(define (reduce e env)
(cond
[(app? e) (reduce-app (app-fun e) (app-args e) env)]
[(lam? e) (make-closure (lam-args e) (lam-body e) env)]
[(var? e) (lookup-env env (var-x e))]
[(locl? e) (reduce-local (locl-defs e) (locl-e e) env)]
[(cnd? e) (reduce-cond (cnd-clause-c (first (cnd-clauses e)))
(cnd-clause-e (first (cnd-clauses e)))
(rest (cnd-clauses e))
env)]
[else (error "Cannot reduce: " e)]))
; Exp (list-of Exp) Env -> Exp
; reduction of an application of fun to args in env
(define (reduce-app fun args env)
(cond
; expression has the form (v-1 v-2 ... v-n)?
[(and (value? fun) (all-value? args))
(cond [(closure? fun)
(make-locl (closure-env fun)
(make-locl
(map (lambda (x v) (make-var-def x v))
(closure-args fun) args)
(closure-body fun)))]
[(primval? fun)
(apply (primval-v fun) args)])]
; expression has the form (v-0 v-1 ... e-i ... e-n)?
[(value? fun)
; reduce leftmost non-value
(make-app fun (reduce-first args env))]
[else ; expression has the form (e-0 ... e-n)?
; then reduce function argument
(make-app (reduce fun env) args )]))
; (list-of Def) Exp Env -> Exp
; reduction of (local defs e) in env
(define (reduce-local defs e env)
(cond
; expression has the form (local [(define x-1 v1)...] v)?
[(and (env? defs) (value? e))
; then reduce to v
e]
; expression has the form (local [(define x-1 v1)...] e)?
[(env? defs)
; then reduce e
(make-locl defs (reduce e (append defs env)))]
[else ; expression has the form
; (local [(define x-1 v1)...(define x-i e-i) ...] e) ?
; then reduce left-most e-i which is not a value
(make-locl (reduce-first-def defs env) e)]))
; Exp Exp (list-of (make-cnd-clause Exp Exp) -> Exp
; reduction of a cond expression
(define (reduce-cond condition e clauses env)
(cond
; expression has the form (cond [(v e) rest])?
[(value? condition)
; check if v is true or v is false
(if (primval-v condition)
e ; if true reduce to e
(make-cnd clauses))] ; if false reduce to (cond [rest])
[else ; expression has the form (cond [(e-1 e-2) rest])
; and e-1 is not a value?
; then reduce e-1
(make-cnd
(cons
(make-cnd-clause
(reduce condition env)
e)
clauses))]))
; (list-of Def) Env -> (list-of Def)
; reduces the first expression which is not a value
; in a list of definitions
(define (reduce-first-def defs env)
(cond [(struct-def? (first defs))
(append
(make-struct-funcs (first defs))
(rest defs))]
[(value? (var-def-e (first defs)))
(cons (first defs)
(reduce-first-def (rest defs)
(cons (first defs) env)))]
[else (cons (make-var-def
(var-def-name (first defs))
(reduce (var-def-e (first defs)) env))
(rest defs))]))
; (list-of Exp) -> (list-of Exp)
; reduces first non-value of es
(define (reduce-first es env)
(if (value? (first es))
(cons (first es) (reduce-first (rest es) env))
(cons (reduce (first es) env) (rest es))))
; make-struct-funcs: Struct-Def -> Env
; creates the constructor, selector, and predicate functions for a structure definition sd
; and represents them as an environment
;
; Example: (make-struct (parse '(define-struct a (b c))))
; yields the following result (where sd = (parse '(define-struct a (b c)))):
;
;(list
; (make-var-def 'make-a
; (make-primval
; (compose
; (lambda (fv)
; (if (= (length fv) 2)
; (make-structv sd fv)
; (error "Wrong number of args ...")))
; list)))
; (make-var-def 'a?
; (make-primval
; (lambda (v)
; (make-primval
; (and (structv? v) (eq? (structv-def v) sd))))))
; (make-var-def 'a-b
; (make-primval
; (lambda (sv) (if (and (structv? sv)
; (eq? (structv-def sv) sd))
; (first (structv-fieldvalues sv))
; (error "...")))))
; (make-var-def 'a-c
; (make-primval
; (lambda (sv)
; (if (and (structv? sv)
; (eq? (structv-def sv) sd))
; (second (structv-fieldvalues sv))
; (error "..."))))))
(define (make-struct-funcs sd)
; assume as example that sd is (define-struct a (b c))
(local
[(define name (symbol->string (struct-def-name sd))) ; then name = "a"
(define (check-structure-identity v)
(and (structv? v)
; eq? is reference equality: Structures are compatible if they
; stem from the same place in the program
(eq? (structv-def v) sd)))
; Symbol -> Var-Def
; generates selector function for each field name fn
(define (selector-func fn)
(make-var-def
(string->symbol (string-append name "-" (symbol->string fn))) ; such as "a-b" and "a-c"
(make-primval
(lambda (sv)
(if (check-structure-identity sv)
(second (assq fn ; extract corresponding field value
(map
list
(struct-def-fields sd)
(structv-fieldvalues sv))))
(error "Argument of selector function for " fn
" must be structure value of structure " name))))))
(define constructor-func
(make-var-def
; name of constructor function, such as 'make-a
(string->symbol (string-append "make-" name))
(make-primval
(compose ; compose with "list" function to turn it into an n-ary function
; where n = (length (struct-def-fields sd))
(lambda (fv)
(if (= (length fv) ; check that number of args matches number of fields
(length (struct-def-fields sd)))
(make-structv sd fv) ; everything OK -> create structure value
(error "Wrong number of args in constructor call for struct: "
(struct-def-name sd))))
list))))
(define predicate-func
(make-var-def
(string->symbol (string-append name "?")) ; such as 'a?
(make-primval (compose make-primval check-structure-identity))))]
; put all functions together in one environment
(cons constructor-func
(cons predicate-func
(map selector-func (struct-def-fields sd))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Infrastructure for executing programs
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; We use the initial environment to encode the primitive values and functions.
; We also provide some predefined non-primitive values/functions/structs for lists
; Can be extended as needed
(define initial-env
(local ; [X Y Z] (X Y -> Z) -> ( (make-primval X) (make-primval Y) -> (make-primval Z))
[(define (lift2 op)
(lambda (x y)
(make-primval (op (primval-v x) (primval-v y)))))]
(append
(map (lambda (x)
(make-var-def (first x) (make-primval (second x))))
(list
(list '+ (lift2 +))
(list '- (lift2 -))
(list '* (lift2 *))
(list '= (lift2 =))
(list 'true true) ; workaround for bug in HTDP reader:
(list 'false false))) ; 'true evaluates to 'true and not true
(make-struct-funcs (parse '(define-struct empty ())))
(make-struct-funcs (parse '(define-struct cons (first rest))))
(list
(parse '(define empty (make-empty)))
(parse '(define map (lambda (f xs)
(cond [(empty? xs) empty]
[(cons? xs) (make-cons (f (cons-first xs))
(map f (cons-rest xs)))]))))))))
; Exp -> Value
; reduces expression until it becomes a value (or loops)
(define (eval e)
(if (value? e)
e
(eval (reduce e empty))))
; S-Exp -> Value
; like eval, but parses input first
(define (parse-and-eval sexp)
(eval (parse sexp)))
(define (parse-eval-print sexp)
(print (parse-and-eval sexp)))
; Exp -> (list-of s-Exp)
; generates sequence of reduction steps until e becomes a value
(define (reduction-sequence e)
(if (value? e)
(list (print e))
(cons (print e) (reduction-sequence (reduce e empty)))))
; s-exp -> (list-of-Exp)
; like reduction-sequence, but parses input first
(define parse-and-reduce-sequence (compose reduction-sequence parse))
;;;;;;;;;;
; Tests ;
;;;;;;;;;;
; parser tests
(check-expect (parse '(local [(define x (+ 1 2)) (define y (lambda (z) z)) (define-struct a (b c))] (+ x (f 7))))
(make-locl
(list
(make-var-def 'x (make-app (make-var '+) (list (make-primval 1) (make-primval 2))))
(make-var-def 'y (make-lam (list 'z) (make-var 'z)))
(make-struct-def 'a (list 'b 'c)))
(make-app (make-var '+) (list (make-var 'x) (make-app (make-var 'f) (list (make-primval 7)))))))
(check-expect (parse '(cond [(a? x) (+ b 2)] [55 19]))
(make-cnd
(list
(make-cnd-clause (make-app (make-var 'a?) (list (make-var 'x))) (make-app (make-var '+) (list (make-var 'b) (make-primval 2))))
(make-cnd-clause (make-primval 55) (make-primval 19)))))
; printer tests
(check-expect (print (parse '(local [(define fact (lambda (n) (cond [(= n 0) 1]
[true (* n (fact (- n 1)))])))]
(fact 5))))
`(local ((define fact (lambda (n) (cond ((= n 0) 1) (true (* n (fact (- n 1)))))))) (fact 5)))
(check-expect (print (parse '(local [(define-struct a (b c))] (a-b 55))))
'(local ((define-struct a (b c))) (a-b 55)))
; reduction tests
(check-expect (reduce (reduce (parse '((lambda (x) (+ x 5)) 7)) empty) empty)
(make-locl
empty
(make-locl (list (make-var-def 'x (make-primval 7))) (make-app (make-var '+) (list (make-var 'x) (make-primval 5))))))
; evaluator test
(check-expect (parse-eval-print '(+ 1 2)) 3)
(check-expect (parse-eval-print '(+ (+ 1 2) (+ 3 4))) 10)
(check-expect (parse-eval-print '((lambda (x) (+ x (+ 1 2))) (+ 2 3))) 8)
(check-expect (parse-eval-print '(local [(define x (+ 1 2))] x)) 3)
(check-expect (parse-eval-print '(cond [(= 0 (+ 1 2)) (+ 3 4)] [(= 0 0) (+ 5 6)])) 11)
(check-expect (parse-eval-print '(local [(define fact (lambda (n) (cond [(= n 0) 1]
[true (* n (fact (- n 1)))])))]
(fact 5)))
120)
(check-expect (parse-eval-print '(local [(define-struct a (b c))] (make-a (+ 1 2) 3)))
'(make-a 3 3))
(check-expect (parse-eval-print '(map (lambda (x) (* x 2)) (make-cons 1 (make-cons 5 (make-cons 3 empty)))))
'(make-cons 2 (make-cons 10 (make-cons 6 (make-empty)))))
(check-expect (parse-and-eval '(local [(define-struct a (b c))] (a? (make-a (+ 1 2) (+ 3 4)))))
(make-primval true))
(check-expect (parse-and-eval '(local [(define-struct a (b c))] (a-c (make-a (+ 1 2) (+ 3 4)))))
(make-primval 7))
(check-expect (parse-and-eval '(local [(define x 5)
(define f (lambda (y) (+ x y)))]
(local [(define x 12)]
(f x))))
(make-primval 17))
; check that equal structure definitions are not compatible
(check-error (parse-and-eval '(local [(define-struct a (b c))
(define v (make-a 1 2))]
(local [(define-struct a (b c))]
(a-b v)))))
; check arity check for structures
(check-error (parse-and-eval '(local [(define-struct a (b c))] (make-a 1 2 3))))
; check unbound variable error
(check-error (parse-and-eval 'x))
; check function arity error
(check-error (parse-and-eval '((lambda (x y) (+ x y)) 5)))
; check local definitions
(check-expect (parse-and-eval '(local [(define x 5) (define y (+ x 6))] (+ x y)))
(make-primval 16))
; check name shadowing
(check-expect (parse-and-eval '(local [(define x 1)] (local [(define x 2)] x)))
(make-primval 2))
; check name shadowing
(check-expect (parse-and-eval '(local [(define x 1)] ((local [(define x 2) (define f (lambda (y) (+ x y)))] f) 3)))
(make-primval 5))
(check-expect (parse-and-reduce-sequence '(local [(define x 5) (define y (+ x 6))] (+ x y)))
'((local ((define x 5) (define y (+ x 6))) (+ x y))
(local ((define x 5) (define y (<primfun> x 6))) (+ x y))
(local ((define x 5) (define y (<primfun> 5 6))) (+ x y))
(local ((define x 5) (define y 11)) (+ x y))
(local ((define x 5) (define y 11)) (<primfun> x y))
(local ((define x 5) (define y 11)) (<primfun> 5 y))
(local ((define x 5) (define y 11)) (<primfun> 5 11))
(local ((define x 5) (define y 11)) 16)
16))
(check-expect
(parse-and-reduce-sequence '(local [(define x 5)
(define f (lambda (y) (+ x y)))]
(local [(define x 12)]
(f x))))
'((local ((define x 5) (define f (lambda (y) (+ x y)))) (local ((define x 12)) (f x)))
(local ((define x 5) (define f (closure (y) (+ x y) ((define x 5))))) (local ((define x 12)) (f x)))
(local ((define x 5) (define f (closure (y) (+ x y) ((define x 5))))) (local ((define x 12)) ((closure (y) (+ x y) ((define x 5))) x)))
(local ((define x 5) (define f (closure (y) (+ x y) ((define x 5))))) (local ((define x 12)) ((closure (y) (+ x y) ((define x 5))) 12)))
(local ((define x 5) (define f (closure (y) (+ x y) ((define x 5))))) (local ((define x 12)) (local ((define x 5)) (local ((define y 12)) (+ x y)))))
(local ((define x 5) (define f (closure (y) (+ x y) ((define x 5))))) (local ((define x 12)) (local ((define x 5)) (local ((define y 12)) (<primfun> x y)))))
(local ((define x 5) (define f (closure (y) (+ x y) ((define x 5))))) (local ((define x 12)) (local ((define x 5)) (local ((define y 12)) (<primfun> 5 y)))))
(local ((define x 5) (define f (closure (y) (+ x y) ((define x 5))))) (local ((define x 12)) (local ((define x 5)) (local ((define y 12)) (<primfun> 5 12)))))
(local ((define x 5) (define f (closure (y) (+ x y) ((define x 5))))) (local ((define x 12)) (local ((define x 5)) (local ((define y 12)) 17))))
(local ((define x 5) (define f (closure (y) (+ x y) ((define x 5))))) (local ((define x 12)) (local ((define x 5)) 17)))
(local ((define x 5) (define f (closure (y) (+ x y) ((define x 5))))) (local ((define x 12)) 17))
(local ((define x 5) (define f (closure (y) (+ x y) ((define x 5))))) 17)
17)) | false |
3288346809e983b4444fc86d9f4b07bc18254798 | 98fd12cbf428dda4c673987ff64ace5e558874c4 | /paip/will/faster-miniKanren/mk.rkt | 8f7c219f48622ec617e0703ec2e973f113ba6200 | [
"MIT",
"Unlicense"
]
| permissive | CompSciCabal/SMRTYPRTY | 397645d909ff1c3d1517b44a1bb0173195b0616e | a8e2c5049199635fecce7b7f70a2225cda6558d8 | refs/heads/master | 2021-12-30T04:50:30.599471 | 2021-12-27T23:50:16 | 2021-12-27T23:50:16 | 13,666,108 | 66 | 11 | Unlicense | 2019-05-13T03:45:42 | 2013-10-18T01:26:44 | Racket | UTF-8 | Racket | false | false | 1,399 | rkt | mk.rkt | #lang racket/base
(require racket/list
racket/include)
(provide run run*
== =/=
fresh
conde
symbolo numbero
absento)
;; extra stuff for racket
;; due mostly to samth
(define (list-sort f l) (sort l f))
(define (remp f l) (filter-not f l))
(define (call-with-string-output-port f)
(define p (open-output-string))
(f p)
(get-output-string p))
(define (exists f l) (ormap f l))
(define for-all andmap)
(define (find f l)
(cond [(memf f l) => car] [else #f]))
(define memp memf)
(define (var*? v) (var? (car v)))
; Substitution representation
(define empty-subst-map (hasheq))
(define subst-map-length hash-count)
; Returns #f if not found, or a pair of u and the result of the lookup.
; This distinguishes between #f indicating absence and being the result.
(define subst-map-lookup
(lambda (u S)
(hash-ref S u unbound)))
(define (subst-map-add S var val)
(hash-set S var val))
(define subst-map-eq? eq?)
; Constraint store representation
(define empty-C (hasheq))
(define set-c
(lambda (v c st)
(state (state-S st) (hash-set (state-C st) v c))))
(define lookup-c
(lambda (v st)
(hash-ref (state-C st) v empty-c)))
(define remove-c
(lambda (v st)
(state (state-S st) (hash-remove (state-C st) v))))
(include "mk.scm")
| false |
10a6446a99b4b7bf5230d303ad667dfb3b575ac1 | ea28b962949105fb27622bad2de8a7e0c765f1f2 | /depth-first.rkt | 6e0e15528e17018f7d293aeade4a8769aee4dd7f | []
| no_license | even4void/scratch | 5493c213036f7ba36ec9921de0abc7c3eb29287a | d6d58148753ca77800ddc04b56240eba621bc86a | refs/heads/master | 2023-06-08T22:05:00.563639 | 2023-05-27T17:49:34 | 2023-05-27T17:49:34 | 191,911,467 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,077 | rkt | depth-first.rkt | #lang racket
(define *graph*
'((a . (b c d))
(b . (a h))
(c . (a g))
(d . (g))
(g . (c d k))
(h . (b))
(g . (k))))
(define (adjacent-nodes node graph)
(cdr (assoc node graph)))
(define (unvisited-neighbours node path graph)
(filter-not (lambda (neighbour)
(member neighbour path))
(adjacent-nodes node graph)))
(define (extend-path path graph)
(map (lambda (new-node)
(cons new-node path))
(unvisited-neighbours (first path) path graph)))
;; use a local auxiliary function with CL labels => Racket letrec
(define (depth-first-search initial final graph)
(letrec ((dfs (lambda (paths)
(cond ((not paths) '())
((eq? initial final) (list initial))
((member final (first paths))
(reverse (first paths)))
(else (dfs (append (extend-path (first paths) graph)
(rest paths))))))))
(dfs (list (list initial)))))
| false |
50261f9459930b53682a096c88b98e5a9e6920af | 5f4273601c2705e75164b562113329bb5a3817c9 | /racket/syntax.rkt | 8efc1d87a045ff77c466f82a4d9c57f7a6bb7df0 | []
| no_license | bhrgunatha/racket-mode | ea966484b5d6712a09d204d8fd0a07fe4260111b | 0071a3c630a24eca95d115da81fd0091259ccc50 | refs/heads/master | 2022-11-08T13:01:05.886449 | 2022-09-19T18:40:01 | 2022-09-21T15:25:31 | 166,167,515 | 0 | 0 | null | 2021-02-20T03:23:33 | 2019-01-17T05:44:00 | Emacs Lisp | UTF-8 | Racket | false | false | 14,887 | rkt | syntax.rkt | #lang racket/base
(require (only-in openssl/md5 md5)
racket/contract
racket/file
racket/match
(only-in racket/path path-only)
syntax/modread
"online-check-syntax.rkt")
(provide make-caching-load/use-compiled-handler
file->syntax
file->expanded-syntax
string->expanded-syntax
path->existing-syntax
path->existing-expanded-syntax)
;; Return a syntax object for the contents of `path`. The resulting
;; syntax is applied to `k` while the parameter
;; current-load-relative-directory is set correctly for `path`.
(define/contract (file->syntax path [k values])
(->* (path-string?)
((-> syntax? any))
any)
(define dir (path-only path))
(parameterize ([current-load-relative-directory dir]
[current-directory dir])
(k
(with-module-reading-parameterization
(ฮป ()
(with-input-from-file path
(ฮป ()
(port-count-lines! (current-input-port))
(match (read-syntax)
[(? eof-object?) #'""]
[stx stx]))))))))
;; Same but from a string, where `path` is used for the load relative
;; directory and given to read-syntax as the source
(define/contract (string->syntax path code-str [k values])
(->* (path-string? string?)
((-> syntax? any))
any)
(define dir (path-only path))
(parameterize ([current-load-relative-directory dir]
[current-directory dir])
(k
(with-module-reading-parameterization
(ฮป ()
(define in (open-input-string code-str path))
(port-count-lines! in)
(match (read-syntax path in)
[(? eof-object?) #'""]
[stx stx]))))))
;;; Expanded syntax caching
;; Various functions to obtain syntax or fully-expanded syntax from
;; files or strings, backed by a cache, as well as a compiled load
;; handler that warms the cache. Note: The cache stores expansions
;; from expand ("enriched") -- /not/ from expand-syntax.
;; Returns the result of applying `k` to the expanded syntax, with the
;; correct parameterization of current-namespace and
;; current-load-relative-directory. Note that `k` deliberately does
;; not default to `values` because trying to use the syntax without
;; the correct parameterizations will often result in bugs, sometimes
;; subtle and confusing. So this "CPS" approach guides you to do the
;; right thing.
(define/contract (file->expanded-syntax path-str k)
(-> path-string? (-> syntax? any) any)
(define path (->path path-str))
(define-values (code-str digest) (file->string+digest path))
(match (cache-get path)
[(and ce (struct* cache-entry ([exp-stx exp-stx] [digest (== digest)])))
(log-racket-mode-syntax-cache-info "file->expanded-syntax cache hit ~v ~v" path digest)
(with-cache-entry-params ce
(k exp-stx))]
[_
(log-racket-mode-syntax-cache-info "file->expanded-syntax cache MISS ~v ~v" path digest)
(file->syntax
path
(ฮป (stx)
;; Create and parameterize a namespace here. file->syntax
;; already parameterized the directory before calling us.
(parameterize ([current-namespace (make-base-namespace)])
(define exp-stx (with-online-check-syntax path (expand stx)))
(cache-set! path code-str stx exp-stx digest)
(k exp-stx))))]))
;; Same but when you don't have a file.
(define/contract (string->expanded-syntax path-str code-str k)
(-> path-string? string? (-> syntax? any) any)
(define path (->path path-str))
(define digest (string->digest code-str))
(match (cache-get path)
[(and ce (struct* cache-entry ([exp-stx exp-stx] [digest (== digest)])))
(log-racket-mode-syntax-cache-info "string->expanded-syntax cache hit ~v ~v" path digest)
(with-cache-entry-params ce
(k exp-stx))]
[_
(log-racket-mode-syntax-cache-info "string->expanded-syntax cache MISS ~v ~v" path digest)
(string->syntax
path-str code-str
(ฮป (stx)
;; Create and parameterize a namespace here. string->syntax
;; already parameterized the directory before calling us.
(parameterize ([current-namespace (make-base-namespace)])
(define exp-stx (with-online-check-syntax path (expand stx)))
(cache-set! path code-str stx exp-stx digest)
(k exp-stx))))]))
;; Like string->syntax but given only the path-str and only if syntax
;; already in the cache, as a result of previously calling
;; string->expanded-syntax. Intended for use by identifier.rkt.
(define/contract (path->existing-syntax path-str k)
(-> path-string? (-> syntax? any) any)
(define path (->path path-str))
(match (cache-get path)
[(and ce (struct* cache-entry ([stx stx])))
(log-racket-mode-syntax-cache-info "path->existing-syntax cache hit ~v (ignoring digest)" path)
(with-cache-entry-params ce
(k stx))]
[#f
(match (path->code path)
[(code code-str digest)
(log-racket-mode-syntax-cache-info "path->existing-syntax cache MISS ~v (ignoring digest); re-expanding and re-caching" path)
(string->syntax
path-str code-str
(ฮป (stx)
;; Create and parameterize a namespace here. string->syntax
;; already parameterized the directory before calling us.
(parameterize ([current-namespace (make-base-namespace)])
(define exp-stx (with-online-check-syntax path (expand stx)))
(cache-set! path code-str stx exp-stx digest)
(k stx))))]
[#f
(log-racket-mode-syntax-cache-warning "path->existing-syntax cache MISS ~v (ignoring digest); no code string cached for path, cannot re-expand" path)
#f])]))
;; Like string->expanded-syntax but given only the path-str and only
;; if expanded syntax already in the cache, as a result of previously
;; calling string->expanded-syntax. Intended for use by
;; identifier.rkt.
(define/contract (path->existing-expanded-syntax path-str k)
(-> path-string? (-> syntax? any) any)
(define path (->path path-str))
(match (cache-get path)
[(and ce (struct* cache-entry ([exp-stx exp-stx])))
(log-racket-mode-syntax-cache-info "path->existing-expanded-syntax cache hit ~v (ignoring digest)" path)
(with-cache-entry-params ce
(k exp-stx))]
[#f
(match (path->code path)
[(code code-str digest)
(log-racket-mode-syntax-cache-info "path->existing-expanded-syntax cache MISS ~v (ignoring digest); re-expanding and re-caching" path)
(string->syntax
path-str code-str
(ฮป (stx)
;; Create and parameterize a namespace here. string->syntax
;; already parameterized the directory before calling us.
(parameterize ([current-namespace (make-base-namespace)])
(define exp-stx (with-online-check-syntax path (expand stx)))
(cache-set! path code-str stx exp-stx digest)
(k exp-stx))))]
[#f
(log-racket-mode-syntax-cache-warning "path->existing-expanded-syntax cache MISS ~v (ignoring digest); no code string cached for path, cannot re-expand" path)
#f])]))
;; Compiled load handler: This is an optimization to warm the cache
;; with expansions done for loads that need to compile, including
;; imports that need to compile. Can speed up scenarios like visiting
;; a definition in a required file.
(define (make-caching-load/use-compiled-handler)
(define old-handler (current-load/use-compiled))
(define old-compile (current-compile))
(define (new-compile stx immediate?)
(match (syntax-source stx)
[(? path? file)
(define exp-stx (expand stx))
(define-values (code-str digest) (file->string+digest file))
(cache-set! file code-str stx exp-stx digest)
(old-compile exp-stx immediate?)]
[_ (old-compile stx immediate?)]))
(define (new-handler file mod)
(parameterize ([current-compile new-compile])
(old-handler file mod)))
new-handler)
(define (->path v)
(cond [(path? v) v]
[(path-string? v) (string->path v)]
[else (error '->path "not path? or path-string?" v)]))
(define/contract (file->digest path)
(-> path? string?)
(call-with-input-file path md5))
(define/contract (file->string+digest path)
(-> path? (values string? string?))
(define str (file->string path))
(define digest (string->digest str))
(values str digest))
(define/contract (string->digest str)
(-> string? string?)
(md5 (open-input-string str)))
(module+ test
(require rackunit
racket/file)
(define this-path (syntax-source #'here))
(define this-string (file->string this-path))
(check-equal? (file->digest this-path)
(string->digest this-string))
;; Note: This test will only succeed if the same syntax object put
;; in the cache by file->expanded-syntax is retrieved from the cache
;; by string->expanded-syntax. In other words, two identical calls
;; to file->syntax do not produce equal? syntax objects.
(check-equal? (file->expanded-syntax this-path values)
(string->expanded-syntax this-path this-string values))
(check-equal? (path->existing-expanded-syntax this-path (ฮป (_stx) 42))
42))
(module cache racket/base
(require racket/contract
racket/match
racket/path
syntax/parse/define
"online-check-syntax.rkt")
(provide log-racket-mode-syntax-cache-debug
log-racket-mode-syntax-cache-info
log-racket-mode-syntax-cache-warning
(struct-out code)
(rename-out [get-code path->code])
(struct-out cache-entry)
cache-set!
cache-get
with-cache-entry-params)
(define-logger racket-mode-syntax-cache)
(define sema (make-semaphore 1))
(define-simple-macro (with-sema e:expr ...+)
(call-with-semaphore sema (ฮป () e ...)))
;; This lookup table allows the path->existing-syntax and
;; path->existing-expanded-syntax functions to deal with a cache
;; miss by re-expanding (and re-caching). Those are intended to
;; support identifier.rkt and find.rkt working with syntax from
;; "live" code strings that aren't in a file -- e.g. the code
;; strings originated from a check-syntax command. This lookup table
;; is never cleaned up, but I believe (?) it's much less "heavy"
;; than the syntax, expanded syntax, and namespace values in the
;; main cache.
(define path->code (make-hash)) ;(hash/c path? string?)
(struct code (str digest))
(define (get-code path)
(hash-ref path->code path #f))
;; The main cache is an association list in order from MRU to LRU.
;; The keys are paths. The values are either cache-entry (not
;; evictable) or an ephemeron keyed by the namespace (evictable when
;; the ns is not otherwise reachable). Approximately the first
;; `mru-to-keep` items in the list are non-evictable cache-entry
;; items; the rest are evictable ephemerons. (It can be one more; we
;; don't really care, so we don't track whether a set/get moves an
;; item in/out of that first `mru-to-keep`.)
;;
;; Note: After making changes to mru-to-keep, cache-set!, or
;; cache-get, it would be wise to run the slow-test submodule in
;; check-syntax.rkt as a smoke test.
(define cache null)
(struct cache-entry (stx exp-stx digest dir namespace online))
(define mru-to-keep 8)
(define (not-evicted? v)
(or (cache-entry? v)
(ephemeron-value v)))
(define (promote v) ;make non-evictable
(match v
[(? cache-entry? ce) ce]
[(? ephemeron? e) (or (ephemeron-value e) e)]))
(define (demote v) ;make evictable
(match v
[(and (struct* cache-entry ([namespace ns])) ce) (make-ephemeron ns ce)]
[(? ephemeron? e) e]))
(define (promote/demote n v)
(if (< n mru-to-keep)
(promote v)
(demote v)))
(define/contract (cache-set! path code-str stx exp-stx digest)
(-> path? string? syntax? syntax? string? any)
(with-sema
(log-racket-mode-syntax-cache-debug "cache-set: ~v" path)
(hash-set! path->code path (code code-str digest))
;; This is written to walk the existing association list just
;; once to build the new tail onto which we'll cons a new item
;; for `path`. When building the new tail, we don't keep any old
;; item for `path` or any already-evicted items. We promote or
;; demote items we do keep.
(define head
(cons path (cache-entry stx exp-stx digest
(current-load-relative-directory)
(current-namespace)
(current-online-check-syntax))))
(define tail
(for*/list ([(k+v n) (in-indexed cache)]
[k (in-value (car k+v))] #:unless (equal? k path)
[v (in-value (cdr k+v))] #:when (not-evicted? v))
(cons k (promote/demote n v))))
(set! cache (cons head tail))))
(define/contract (cache-get path)
(-> path? (or/c #f cache-entry?))
(with-sema
;; This is written to walk the existing association list just
;; once, to look for `path` while building the new tail. If
;; found, it becomes the new head. Regardless, in the new tail
;; we don't keep already-evicted items. We promote or demote
;; items we do keep.
(define-values (head reversed-tail)
(for*/fold ([head #f]
[tail null])
([(k+v n) (in-indexed cache)]
[k (in-value (car k+v))]
[v (in-value (cdr k+v))] #:when (not-evicted? v))
(cond
[(equal? k path) ;found: don't add to tail, will be new head
(values (cons k (promote v))
tail)]
[else
(values head
(cons (cons k (promote/demote n v))
tail))])))
(define tail (reverse reversed-tail))
(log-racket-mode-syntax-cache-debug "cache-get ~v => ~v ~v" path head tail)
(match head
[(cons _ (? cache-entry? ce)) (set! cache (cons head tail)) ce]
[#f (set! cache tail) #f])))
;; "If your parameterize form uses a half dozen parameters, you're
;; probably missing some" -- not Alan Perlis
(define-simple-macro (with-cache-entry-params ce:expr e:expr ...+)
(match-let ([(struct* cache-entry ([dir dir] [namespace ns] [online ol])) ce])
(parameterize ([current-namespace ns]
[current-load-relative-directory dir]
[current-directory dir]
[current-online-check-syntax ol])
e ...))))
(require 'cache)
| false |
ba18d5396ba0eb6c69f712b9146f2c1cf7820ed4 | 50508fbb3a659c1168cb61f06a38a27a1745de15 | /turnstile-test/tests/turnstile/mode.rkt | fcf5870a80539aae172189e7d366adf136113065 | [
"BSD-2-Clause"
]
| permissive | phlummox/macrotypes | e76a8a4bfe94a2862de965a4fefd03cae7f2559f | ea3bf603290fd9d769f4f95e87efe817430bed7b | refs/heads/master | 2022-12-30T17:59:15.489797 | 2020-08-11T16:03:02 | 2020-08-11T16:03:02 | 307,035,363 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 406 | rkt | mode.rkt | #lang racket/base
(require
rackunit
turnstile/mode)
(define color (make-parameter 'red))
(define ->blue (make-param-mode color 'blue))
(define ->green (make-param-mode color 'green))
(with-mode ->blue
(check-equal? (color) 'blue))
(check-equal? (color) 'red)
(with-mode ->green
(check-equal? (color) 'green)
(with-mode ->blue
(check-equal? (color) 'blue))
(check-equal? (color) 'green))
| false |
67fc86e9887c3d211ed49a9a3d0c9c125c4a54d2 | 41dfac8f400c211240866e8dda397ba0ddc51646 | /Racket/GUI ็ชๅฃๅบ็จ/้่ฎฏ็ชๅฃsqlite3.rkt | 6f7003271d2016e7780eace250d0cb1e4ba57784 | []
| no_license | MyFireWolf/test | 96179443d122ae8fb49310a0c9e3288a1008a53e | 7dd8e3355cf59488b51c6337b9af39d24ef9be30 | refs/heads/master | 2021-01-01T05:48:24.072892 | 2014-06-23T07:01:56 | 2014-06-23T07:01:56 | 2,813,785 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 3,165 | rkt | ้่ฎฏ็ชๅฃsqlite3.rkt | #lang racket/gui
(require racket/gui/base)
(require db)
;;;ๅฃฐๆๆฐๆฎๅบ่ฟๆฅ
;;;sqlite3ๅปบ็ซๆฐๆฎๅบcc.db๏ผๆฐๆฎๅบไธญ้่ฆๅ
ๅซไธไธชๅซcontacts็่กจใ
;;;่กจไธญๅ
ๅซไธไธชๅญๆฎต๏ผname,email,mobile,่ฟไธไธชๅญๆฎต้ฝๆฏTEXT็ฑปๅใ
(define mydb (sqlite3-connect #:database "./cc.db"))
;ๅฃฐๆไธป็ชๅฃ
(define frame (new frame% [label "่็ณปไบบ"]))
;ๅฃฐๆๅขๅ ไฟฎๆนๅฏน่ฏๆก
(define dialog (new dialog% [label "่็ณปไบบ"] [parent frame]))
(define txt-name (new text-field% [parent dialog] [label "ๅงๅ"]))
(define txt-email (new text-field% [parent dialog] [label "email"]))
(define txt-mobile (new text-field% [parent dialog] [label "ๆๆบ"]))
;ๅขๅ ไฟฎๆนๆ ๅฟ
(define selection "")
(define main-view (new panel% [parent frame]))
(define control-panel (new horizontal-panel%
[parent frame]
[style (list 'border)]))
(define list-box (new list-box%
[label ""]
[parent main-view]
[choices (query-list mydb "select name from contacts")]
[style (list 'single 'column-headers)]
[columns '("ๅงๅ" )]))
(define btn-add (new button%
[parent control-panel]
[label "ๅขๅ "]
[callback (lambda (button event)
(set! selection "")
(send txt-name set-value "")
(send txt-email set-value "")
(send txt-mobile set-value "")
(send dialog refresh)
(send dialog show #t))]))
(define btn-edit (new button%
[parent control-panel]
[label "็ผ่พ"]
[callback (lambda (button event)
(set! selection (send list-box get-string-selection))
(define result-set
(car
(query-rows mydb
(string-append "select * from contacts where name='" selection "'"))))
(send txt-name set-value selection)
(send txt-email set-value (vector-ref result-set 1))
(send txt-mobile set-value (vector-ref result-set 2))
(send dialog refresh)
(send dialog show #t))]))
(define btn-delete (new button%
[parent control-panel]
[label "ๅ ้ค"]
[callback (lambda (button event)
(query-exec mydb
(string-append
"delete from contacts where name='"
(send list-box get-string-selection) "'"))
(send list-box clear)
(send list-box set
(query-list mydb "select name from contacts")))]))
(send frame resize 280 400)
(send main-view min-height 360)
(send list-box min-height 350)
(send list-box min-width 270)
(send control-panel min-height 40)
(define dlg-panel (new horizontal-panel% [parent dialog]
[alignment '(center center)]))
(define btn-cancel (new button%
[parent dlg-panel] [label "ๅๆถ"]
[callback (lambda (button event) (send dialog show #f))]))
(define btn-ok (new button%
[parent dlg-panel] [label "็กฎๅฎ"]
[callback (lambda (button event)
(if (equal? "" selection)
(query-exec mydb
(string-append "insert into contacts(name,email,mobile)values('"
(send txt-name get-value) "','"
(send txt-email get-value) "','"
(send txt-mobile get-value) "')"))
(query-exec mydb
(string-append "update contacts set name='"
(send txt-name get-value) "',email='"
(send txt-email get-value) "',mobile='"
(send txt-mobile get-value) "' where name='"
selection "'")))
(send list-box clear)
(send list-box set (query-list mydb "select name from contacts"))
(send dialog show #f))]))
(send frame show #t) | false |
63822ac9ce4cd37f0a215598cdd4d2925ab9a2e4 | 099418d7d7ca2211dfbecd0b879d84c703d1b964 | /whalesong/tests/older-tests/moby-programs/with-handlers-1.rkt | a7d0a49ccb5ebef7b0062db81334bc26a60d7359 | []
| no_license | vishesh/whalesong | f6edd848fc666993d68983618f9941dd298c1edd | 507dad908d1f15bf8fe25dd98c2b47445df9cac5 | refs/heads/master | 2021-01-12T21:36:54.312489 | 2015-08-19T19:28:25 | 2015-08-19T20:34:55 | 34,933,778 | 3 | 0 | null | 2015-05-02T03:04:54 | 2015-05-02T03:04:54 | null | UTF-8 | Racket | false | false | 654 | rkt | with-handlers-1.rkt | #lang s-exp "../../lang/base.rkt"
(printf "with-handlers-1.rkt\n")
(with-handlers ([(lambda (exn)
(printf "Is the exception a failure? ~s~n" (exn:fail? exn))
(exn:fail? exn))
(lambda (exn)
(printf "I'm in the handler and saying ok\n")
'ok)])
(/ 1 0)
(error 'not-ok))
(with-handlers ([(lambda (exn)
false)
(lambda (exn)
(printf "I'm in the handler and saying ok\n")
(error 'not-ok))]
[(lambda (exn)
(printf "second test\n")
true)
(lambda (exn)
'ok)])
(/ 1 0)
(error 'not-ok))
(with-handlers ([void (lambda (exn) (error 'not-ok))])
'ok)
| false |
d74be959f8359899592105301c683dc42cfc90fe | e1cf61b84282c33b7a245f4d483883cf77739b91 | /se3-bib/string-module.rkt | ade44587cce2fabed311581c94dee96421988d06 | []
| no_license | timesqueezer/uni | c942718886f0366b240bb222c585ad7ca21afcd4 | 5f79a40b74240f2ff88faccf8beec7b1b3c28a7c | refs/heads/master | 2022-09-23T21:57:23.326315 | 2022-09-22T13:17:29 | 2022-09-22T13:17:29 | 71,152,113 | 0 | 2 | null | null | null | null | UTF-8 | Racket | false | false | 4,972 | rkt | string-module.rkt | #lang racket
#|
################################################################################
## ##
## This file is part of the se3-bib Racket module v3.0 ##
## Copyright by Leonie Dreschler-Fischer, 2010 ##
## Ported to Racket v6.2.1 by Benjamin Seppke, 2015 ##
## ##
################################################################################
|#
(provide ljustify cjustify
rjustify
number->cleartext
list-of-symbols->string
string->list-of-symbols
number->cleartext
)
(require se3-bib/tools-module)
;;;; ======================================================================
;;;; justify text to fit into n spaces,
;;;; see Bird and Wadler 88 for a Miranda Version
;;;; =======================================================================
(define (ljustify n s)
(let ([len (string-length s)])
(if (>= n len)
; string to short, pad with blanks
(string-append
s
(space (- n len)))
; string to long, trim at the end
(substring s 0 n)
)))
(define (rjustify n s)
(let ([len (string-length s)])
(if (>= n len)
; string to short, pad with blanks
(string-append
(space (- n len))
s)
; string to long, trim at the start
(substring s (- len n) len)
)))
(define (cjustify n s)
(let* ([len (string-length s)]
[left (quotient (- n len) 2)]
[right (- n left len)])
(if (>= n len)
(string-append
(space left) s (space right))
(substring s 0 n) )))
;;;; ======================================================================
;;;; convert numbers to text, see Bird and Wadler 88 for a Miranda Version
;;;; ======================================================================
(define units '("one" "two" "three" "four" "five"
"six" "seven" "eight" "nine"))
(define teens '("ten" "eleven" "twelve" "thirteen"
"fourteen" "fifteen" "sixteen"
"seventeen" "eighteen" "nineteen"))
(define tens '("twenty" "thirty" "forty" "fifty"
"sixty" "seventy" "eighty" "ninety"))
(define (digit n pos)
(let ([n-ziffern
(remainder n (expt 10 pos))])
(quotient n-ziffern (expt 10 (- pos 1)))))
(define (convert2 n)
(combine2 (digit n 2)
(digit n 1)))
(define (combine2 d-tens d-units)
(cond [(= 0 d-tens)
(list-ref units (- d-units 1))]
[(= 1 d-tens)
(list-ref teens d-units )]
[(= 0 d-units)
(list-ref tens (- d-tens 2))]
[else
(string-append
(list-ref tens (- d-tens 2))
"-"
(list-ref units (- d-units 1)))]))
(define (convert3 n)
(combine3 (digit n 3)
(remainder n 100)))
(define (combine3 d-hundreds d-belowhundred)
; combine3: number number --> string
(cond [(= 0 d-hundreds)
(convert2 d-belowhundred)]
[(= 0 d-belowhundred)
(string-append
(list-ref units (- d-hundreds 1))
" hundred")]
[else (string-append
(list-ref units (- d-hundreds 1))
" hundred and "
(convert2 d-belowhundred))]))
(define (number->cleartext n)
(if (< n 1000000)
(combine6
(quotient n 1000)
(remainder n 1000))
; number to large, just show the digits
(number->string n)))
(define (link h)
(if (< h 100) " and " " "))
(define (combine6 thousands hundreds)
(cond [(= 0 thousands)(convert3 hundreds)]
[(= 0 hundreds)
(string-append (convert3 thousands)
" thousand")]
[else
(string-append (convert3 thousands)
" thousand" (link hundreds)
(convert3 hundreds))]))
;;; =====================================================================
;;; tokenizer
;;; =====================================================================
(define (list-of-symbols->string symbols)
(apply string-append
(map (curryr string-append " ")
(map symbol->string symbols))))
(define (copy-to-string-object-bug-fix s)
; bug fix: open-input-string does not accept the string objects
; returned by the gui
(list->string (string->list s)))
(define (next-item port)
; read symbols from the port and collect them into a list
(let (( item (read port)))
(if (eof-object? item)
'()
(cons item (next-item port)))))
(define (string->list-of-symbols string-of-symbols)
(let ((port
(open-input-string
(copy-to-string-object-bug-fix string-of-symbols))))
(next-item port)))
| false |
0b65467188eb4d25dd1997724d9413240d250897 | d755de283154ca271ef6b3b130909c6463f3f553 | /htdp-test/2htdp/tests/on-tick-universe-with-limit.rkt | 6db0d965f81469ea38ab1bcec08f618792a085ab | [
"Apache-2.0",
"MIT",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | racket/htdp | 2953ec7247b5797a4d4653130c26473525dd0d85 | 73ec2b90055f3ab66d30e54dc3463506b25e50b4 | refs/heads/master | 2023-08-19T08:11:32.889577 | 2023-08-12T15:28:33 | 2023-08-12T15:28:33 | 27,381,208 | 100 | 90 | NOASSERTION | 2023-07-08T02:13:49 | 2014-12-01T13:41:48 | Racket | UTF-8 | Racket | false | false | 292 | rkt | on-tick-universe-with-limit.rkt | #lang racket
(require 2htdp/universe 2htdp/image)
(universe 0
(on-tick (lambda (w) (make-bundle (add1 w) '() '())) 1/28 3)
(on-msg (lambda (w sender msg) (make-bundle w '() '())))
(on-new cons)
;; Distinct from other tests:
(port 19207))
| false |
13cacd81296eed25edf22ef767e2c3e0c6886a81 | 6858cbebface7beec57e60b19621120da5020a48 | /10/1/9/2.rkt | ef46e6d3e4adca903e07c588c959b8e0d347e743 | []
| no_license | ponyatov/PLAI | a68b712d9ef85a283e35f9688068b392d3d51cb2 | 6bb25422c68c4c7717b6f0d3ceb026a520e7a0a2 | refs/heads/master | 2020-09-17T01:52:52.066085 | 2017-03-28T07:07:30 | 2017-03-28T07:07:30 | 66,084,244 | 2 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 88 | rkt | 2.rkt | (define a-tree
(node 10
(node 5 (mt) (mt))
(node 15 (node 6 (mt) (mt)) (mt)))) | false |
7a4cc2e1f93615405312a340b8c1a1e9236c1472 | 8efc1131fab877289b587ce705016a74f28b3df6 | /15.scrbl | 0ff028914d92af71fb933f321dd1c8010021a984 | []
| no_license | Langeeker/RacketGuideInChineseForScribble | ed484638c4e9ce0ccfa2fc7a6b303b8735eb0ddb | 4fb07d376a2391f62e411b825eb825e3388ae411 | refs/heads/master | 2023-04-18T04:37:01.206383 | 2018-02-20T15:33:02 | 2018-02-20T15:33:02 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 16,891 | scrbl | 15.scrbl | ;15.scrbl
;15 ๅๅฐๅๅจๆๆฑๅผ
#lang scribble/doc
@(require scribble/manual
scribble/eval
racket/class
"guide-utils.rkt")
@title[#:tag "reflection" #:style 'toc]{ๅๅฐๅๅจๆๆฑๅผ}
Racketๆฏไธไธชๅจๆ็่ฏญ่จใๅฎๆไพไบ่ฎธๅค็จไบๅ ่ฝฝใ็ผ่ฏใ็่ณๅจ่ฟ่กๆถๆ้ ๆฐไปฃ็ ็ๅทฅๅ
ทใ
@;------------------------------------------
@local-table-of-contents[]
@; 15.1 eval----------------------------------------------------------------------
@section[#:tag "eval"]{@racket[eval]}
@racket[eval]ๅฝๆฐๆๆไธไธช่กจ่พพๆๅฎไน็่กจ่พพ๏ผๅฆโๅผ็จ๏ผquoted๏ผโ่กจๆ@tech{ๅฅๆณๅฏน่ฑก๏ผsyntax object๏ผ}๏ผๅนถไธๅฏนๅฎ่ฟ่กๆฑๅผ๏ผ
@interaction[
(eval '(+ 1 2))
]
@racket[eval]ๅฝๆฐ็ๅผบๅคงๅจไบ่กจ่พพๅผๅฏไปฅๅจๆๆ้ ๏ผ
@interaction[
(define (eval-formula formula)
(eval `(let ([x 2]
[y 3])
,formula)))
(eval-formula '(+ x y))
(eval-formula '(+ (* x y) y))
]
ๅฝ็ถ๏ผๅฆๆๆไปฌๅชๆฏๆณ่ฎก็ฎ่กจ่พพๅผ็ปๅบ@racket[x]ๅ@racket[y]็ๅผ๏ผๆไปฌไธ้่ฆ@racket[eval]ใๆด็ดๆฅ็ๆนๆณๆฏไฝฟ็จไธ็บงๅฝๆฐ๏ผ
@interaction[
(define (apply-formula formula-proc)
(formula-proc 2 3))
(apply-formula (lambda (x y) (+ x y)))
(apply-formula (lambda (x y) (+ (* x y) y)))
]
็ถ่๏ผ่ญฌๅฆ๏ผๅฆๆ่กจ่พพๅผๆ ท@racket[(+ x y)]ๅ@racket[(+ (* x y)
y)]ๆฏไป็จๆทๆไพ็ๆไปถไธญ่ฏปๅ๏ผ็ถๅ@racket[eval]ๅฏ่ฝๆฏ้ๅฝ็ใๅๆ ทๅฐ๏ผ@tech{REPL}่ฏปๅ่กจ่พพๅผ๏ผ็ฑ็จๆท่พๅ
ฅ๏ผไฝฟ็จ@racket[eval]ๆฑๅผใ
ไธๆ ทๅฐ๏ผๅจๆดไธชๆจกๅไธญ@racket[eval]ๅพๅพ็ดๆฅๆ้ดๆฅๅฐไฝฟ็จใไพๅฆ๏ผ็จๅบๅฏไปฅๅจๅฎไนๅไธญ็จ@racket[dynamic-require]่ฏปๅไธไธชๆจกๅ๏ผ่ฟๅบๆฌไธๆฏไธไธชๅฐ่ฃ
ๅจ@racket[eval]ไธญ็ๅจๆๅ ่ฝฝๆจกๅ็ไปฃ็ ใ
@; 15.1.1 ๆฌๅฐๅ---------------------------------------------
@subsection[#:tag "Local-Scopes"]{ๆฌๅฐๅ}
@racket[eval]ๅฝๆฐไธ่ฝ็ๅฐไธไธๆไธญ่ขซ่ฐ็จ็ๅฑ้จ็ปๅฎใไพๅฆ๏ผ่ฐ็จๅจไธไธช้ๅผ็จ็@racket[let]่กจไธญ็@racket[eval]ไปฅๅฏนไธไธชๅ
ฌๅผๆฑๅผไธไผไฝฟๅพๅผ@racket[x]ๅ@racket[y]ๅฏ่ง๏ผ
@interaction[
(define (broken-eval-formula formula)
(let ([x 2]
[y 3])
(eval formula)))
(broken-eval-formula '(+ x y))
]
@racket[eval]ๅฝๆฐไธ่ฝ็ๅฐ@racket[x]ๅ@racket[y]็็ปๅฎ๏ผๆญฃๆฏๅ ไธบๅฎๆฏไธไธชๅฝๆฐ๏ผๅนถไธRacketๆฏ่ฏๆณไฝ็จๅ็่ฏญ่จใๆณ่ฑกไธไธๅฆๆ@racket[eval]่ขซๅฎ็ฐไธบ
@racketblock[
(define (eval x)
(eval-expanded (macro-expand x)))
]
้ฃไนๅจ@racket[eval-expanded]่ขซ่ฐ็จ็่ฟไธช็นไธ๏ผ@racket[x]ๆ่ฟ็็ปๅฎๆฏ่กจ่พพๅผๆฑๅผ๏ผไธๆฏ@racket[broken-eval-formula]ไธญ็@racket[let]็ปๅฎใ่ฏๆณ่ๅด้ฒๆญข่ฟๆ ท็ๅฐๆๅ่ๅผฑ็่กไธบ๏ผไป่้ฒๆญข@racket[eval]่กจ็ๅฐไธไธๆไธญ่ขซ่ฐ็จ็ๅฑ้จ็ปๅฎใ
ไฝ ๅฏไปฅๆณ่ฑก๏ผๅณไฝฟ้่ฟ@racket[eval]ไธ่ฝ็ๅฐ@racket[broken-eval-formula]ไธญ็ๅฑ้จ็ปๅฎ๏ผ่ฟ้ๅฎ้
ไธๅฟ
้กปๆฏไธไธช@racket[x]ๅฐ@racket[2]ๅ@racket[y]ๅฐ@racket[3]็ๆฐๆฎ็ปๆๆ ๅฐ๏ผไปฅๅไฝ ๆณๅๆณๅพๅฐ้ฃไบๆฐๆฎ็ปๆใไบๅฎไธ๏ผๆฒกๆ่ฟๆ ท็ๆฐๆฎ็ปๆๅญๅจ๏ผ็ผ่ฏๅจๅฏไปฅ่ช็ฑๅฐๅจ็ผ่ฏๆถๆฟๆขๅธฆๆ@racket[2]็@racket[x]็ๆฏไธไธชไฝฟ็จ๏ผๅ ๆญคๅจ่ฟ่กๆถ็ไปปไฝๅ
ทไฝๆไนไธ้ฝไธๅญๅจ@racket[x]็ๅฑ้จ็ปๅฎใๅณไฝฟๅ้ไธ่ฝ้่ฟๅธธ้ๆๅ ๆถ้ค๏ผ้ๅธธไนๅฏไปฅๆถ้คๅ้็ๅ็งฐ๏ผ่ไฟๅญๅฑ้จๅผ็ๆฐๆฎ็ปๆไธไปๅ็งฐๅฐๅผ็ๆ ๅฐไธไธๆ ทใ
@; 15.1.2 ๅฝๅ็ฉบ้ด๏ผNamespace๏ผ---------------------------------------------------------
@subsection[#:tag "namespaces"]{ๅฝๅ็ฉบ้ด๏ผNamespace๏ผ}
็ฑไบ@racket[eval]ไธ่ฝไปๅฎ่ฐ็จ็ไธไธๆไธญ็ๅฐ็ปๅฎ๏ผๅฆไธ็งๆบๅถๆฏ้่ฆ็กฎๅฎๅจๆๅฏ่ทๅพ็็ปๅฎใไธไธช@deftech{ๅฝๅ็ฉบ้ด๏ผnamespace๏ผ}ๆฏไธไธชไธ็บง็ๅผ๏ผๅฎๅฐ่ฃ
ไบ็จไบๅจๆๆฑๅผ็ๅฏ่ทๅพ็ปๅฎใ
ๆไบๅฝๆฐ๏ผๅฆ@racket[eval]๏ผๆฅๅไธไธชๅฏ้็ๅฝๅ็ฉบ้ดๅๆฐใ้ๅธธ๏ผๅจๆๆไฝๆไฝฟ็จ็ๅฝๅ็ฉบ้ดๆฏ@racket[current-namespace]@tech{ๅๆฐ}ๆ็กฎๅฎ็@deftech{ๅฝๅๅฝๅ็ฉบ้ด๏ผcurrent namespace๏ผ}ใ
ๅฝ@racket[eval]ๅจ@tech{REPL}ไธญไฝฟ็จๆถ๏ผๅฝๅๅฝๅ็ฉบ้ดๆฏ@tech{REPL}ไฝฟ็จไบๆฑๅผ่กจ่พพๅผไธญ็ไธไธชใ่ฟๅฐฑๆฏไธบไปไนไธ้ข็ไบๅจ่ฎพ่ฎกๆๅ้่ฟ@racket[eval]่ฎฟ้ฎ@racket[x]็ๅๅ ๏ผ
@interaction[
(define x 3)
(eval 'x)
]
็ธๅ๏ผๅฐ่ฏไปฅไธ็ฎๅ็ๆจกๅๅนถ็ดๆฅๅจDrRacket้ๆๆไพๆไปถไฝไธบๅฝไปค่กๅๆฐ็ป@exec{racket}่ฟ่กๅฎ๏ผ
@racketmod[
racket
(eval '(cons 1 2))
]
่ฟๅคฑ่ดฅๆฏๅ ไธบๅๅงๅฝๅๅฝๅ็ฉบ้ดๆฏ็ฉบ็ใๅฝไฝ ๅจไบคไบๆจกๅผไธ่ฟ่ก@exec{racket}๏ผ่งใ@secref["start-interactive-mode"]ใ๏ผๆถ๏ผๅๅง็ๅฝๅ็ฉบ้ดๆฏ็จ@racket[racket]ๆจกๅ็ๅฏผๅบๅๅงๅ็๏ผไฝๆฏๅฝไฝ ็ดๆฅ่ฟ่กไธไธชๆจกๅๆถ๏ผๅๅง็ๅฝๅ็ฉบ้ดๅผๅงไธบ็ฉบใ
ๅจไธ่ฌๆ
ๅตไธ๏ผ็จไปปไฝๅฝๅ็ฉบ้ดๅฎ่ฃ
็ปๆๆฅไฝฟ็จ@racket[eval]ไธไธชๅไธปๆใ็ธๅ๏ผๆ็กฎๅฐๅๅปบไธไธชๅฝๅ็ฉบ้ดๅนถๅฎ่ฃ
ๅฎไปฅ่ฐ็จeval๏ผ
@racketmod[
racket
(define ns (make-base-namespace))
(eval '(cons 1 2) ns) (code:comment @#,t{่ฟ่ก})
]
@racket[make-base-namespace]ๅฝๆฐๅๅปบไธไธชๅฝๅ็ฉบ้ด๏ผ่ฏฅๅฝๅ็ฉบ้ดๆฏ็จ@racket[racket/base]ๅฏผๅบๅๅงๅ็ใๅไธ้จๅใ@secref["mk-namespace"]ใๆไพไบๅ
ณไบๅๅปบๅ้
็ฝฎๅ็งฐ็ฉบ้ด็ๆดๅคไฟกๆฏใ
@; 15.1.3 ๅฝๅ็ฉบ้ดๅๆจกๅ--------------------------------------------------------
@subsection[#:tag "Namespaces-and-Modules"]{ๅฝๅ็ฉบ้ดๅๆจกๅ}
ไธบ@racket[let]็ปๅฎ๏ผ่ฏๆณ่ๅดๆๅณ็@racket[eval]ไธ่ฝ่ชๅจ็ๅฐไธไธช่ฐ็จๅฎ็@racket[module]๏ผๆจกๅ๏ผ็ๅฎไนใ็ถ่๏ผๅ@racket[let]็ปๅฎไธๅ็ๆฏ๏ผRacketๆไพไบไธ็งๅฐๆจกๅๅๅฐๅฐไธไธช@tech{namespace๏ผๅฝๅ็ฉบ้ด๏ผ}็ๆนๆณใ
@racket[module->namespace]ๅฝๆฐๆฅๅไธไธชๅผ็จ็@tech{ๆจกๅ่ทฏๅพ๏ผmodule path๏ผ}๏ผๅนถ็ๆไธไธชๅฝๅ็ฉบ้ด๏ผ็จไบๅฏน่กจ่พพๅผๅๅฎไนๆฑๅผ๏ผๅฐฑๅๅฎไปฌๅบ็ฐๅจ@racket[module]ไธปไฝไธญไธๆ ท๏ผ
@interaction[
(module m racket/base
(define x 11))
(require 'm)
(define ns (module->namespace ''m))
(eval 'x ns)
]
@racket[module->namespace]ๅฝๆฐๅฏนๆฅ่ชไบๆจกๅไนๅค็ๆจกๅๆฏๆๆ็จ็๏ผๅจ่ฟ้ๆจกๅ็ๅ
จๅๆฏๅทฒ็ฅ็ใ็ถ่๏ผๅจ@racket[module]่กจๅ
๏ผๆจกๅ็ๅ
จๅๅฏ่ฝไธ็ฅ้๏ผๅ ไธบๅฎๅฏ่ฝๅๅณไบๅจๆ็ปๅ ่ฝฝๆถๆจกๅๆบไฝไบไฝๅคใ
ๅจ@racket[module]ๅ
๏ผไฝฟ็จ@racket[define-namespace-anchor]ๅฃฐๆๆจกๅไธ็ๅๅฐ้ฉๅญ๏ผๅนถไฝฟ็จ@racket[namespace-anchor->namespace]ๅจๆจกๅ็ๅฝๅ็ฉบ้ดไธญๆปๅจ๏ผ
@racketmod[
racket
(define-namespace-anchor a)
(define ns (namespace-anchor->namespace a))
(define x 1)
(define y 2)
(eval '(cons x y) ns) (code:comment @#,t{produces @racketresult[(1 . 2)]})
]
@; 15.2 ๆ็บต็ๅฝๅ็ฉบ้ด--------------------------------------------
@section[#:tag "mk-namespace"]{ๆ็บต็ๅฝๅ็ฉบ้ด}
@tech{ๅฝๅ็ฉบ้ด๏ผnamespace๏ผ}ๅฐ่ฃ
ไธคๆกไฟกๆฏ๏ผ
@itemize[
@item{ไปๆ ่ฏ็ฌฆๅฐ็ปๅฎ็ๆ ๅฐใไพๅฆ๏ผไธไธชๅฝๅ็ฉบ้ดๅฏไปฅๅฐๆ ่ฏ็ฌฆ@racketidfont{lambda}ๆ ๅฐๅฐ@racket[lambda]่กจใไธไธชโ็ฉบโ็ๅฝๅ็ฉบ้ดๆฏไธไธชๆ ๅฐไนไธ๏ผๅฎๆ ๅฐๆฏไธชๆ ่ฏ็ฌฆๅฐไธไธชๆชๅๅงๅ็้กถๅฑๅ้ใ}
@item{ไปๆจกๅๅ็งฐๅฐๆจกๅๅฃฐๆๅๅฎไพ็ๆ ๅฐใ}
]
็ฌฌไธไธชๆ ๅฐๆฏ็จไบๅฏนๅจไธไธช้กถๅฑไธไธๆไธญ็่กจ่พพๅผๆฑๅผ๏ผๅฆ@racket[(eval '(lambda (x) (+ x 1)))]ไธญ็ใ็ฌฌไบไธชๆ ๅฐๆฏ็จไบๅฎไฝๆจกๅ๏ผไพๅฆ้่ฟ@racket[dynamic-require]ใๅฏน@racket[(eval '(require racket/base))]็่ฐ็จ้ๅธธไฝฟ็จไธค้จๅ๏ผๆ ่ฏ็ฌฆๆ ๅฐ็กฎๅฎ@racket[require]็็ปๅฎ๏ผๅฆๆๅฎๅๆฅ็ๆๆๆฏ@racketidfont{require}๏ผ้ฃไนๆจกๅๆ ๅฐ็จไบๅฎไฝ@racketmodname[racket/base]ๆจกๅใ
ไปๆ ธๅฟRacket่ฟ่ก็ณป็ป็่งๅบฆๆฅ็๏ผๆๆๆฑๅผ้ฝๆฏๅๅฐๆง็ใๆง่กไปๅๅง็ๅฝๅ็ฉบ้ดๅ
ๅซไธไบๅๅง็ๆจกๅ๏ผๅนถ่ฟไธๆญฅ็ฑๅฝไปค่กไธๆๅจ@tech{REPL}ๆไพๆๅฎๅ ่ฝฝ็ๆไปถๅๆจกๅใ้กถๅฑ@racket[require]่กจๅ@racket[define]่กจ่ฐๆดๆ ่ฏ็ฌฆๆ ๅฐ๏ผๆจกๅๅฃฐๆ๏ผ้ๅธธๆ นๆฎ@racket[require]่กจๅ ่ฝฝ๏ผ่ฐๆดๆจกๅๆ ๅฐใ
@; 15.2.1 ๅๅปบๅๅฎ่ฃ
ๅฝๅ็ฉบ้ด----------------------------------------------------------
@subsection[#:tag "Creating-and-Installing-Namespaces"]{ๅๅปบๅๅฎ่ฃ
ๅฝๅ็ฉบ้ด}
ๅฝๆฐ@racket[make-empty-namespace]ๅๅปบไธไธชๆฐ็็ฉบๅฝๅ็ฉบ้ดใ็ฑไบๅฝๅ็ฉบ้ด็กฎๅฎๆฏ็ฉบ็๏ผๆไปฅๅฎไธ่ฝ้ฆๅ
็จๆฅๆฑๅผไปปไฝ้กถ็บง่กจ่พพๅผโโ็่ณไธ่ฝๆฑๅผ@racket[(require racket)]ใ็นๅซๅฐ,
@racketblock[
(parameterize ([current-namespace (make-empty-namespace)])
(namespace-require 'racket))
]
ๅคฑ่ดฅ๏ผๅ ไธบๅฝๅ็ฉบ้ดไธๅ
ๆฌๅปบ็ซ@racket[racket]็ๅๅงๆจกๅใ
ไธบไบไฝฟๅฝๅ็ฉบ้ดๆ็จ๏ผๅฟ
้กปไป็ฐๆๅฝๅ็ฉบ้ดไธญ@deftech{้ๅ ๏ผattached๏ผ}ไธไบๆจกๅใ้ๅ ๆจกๅ้่ฟไป็ฐๆ็ๅฝๅ็ฉบ้ด็ๆ ๅฐไผ ้ๅคๅถๆก็ฎ๏ผๆจกๅๅๅฎ็ๆๆๅฏผๅ
ฅ๏ผ่ฐๆดๆจกๅๅ็งฐๆ ๅฐๅฐๅฎไพใ้ๅธธๆ
ๅตไธ๏ผ่ไธๆฏไป
ไป
้ๅ ๅๅงๆจกๅโโๅ
ถๅ็งฐๅ็ป็ปๆๅฏ่ฝๅ็ๅๅโโ้ๅ ไธไธช้ซ็บงๆจกๅ๏ผๅฆ@racketmodname[racket]ๆ@racketmodname[racket/base]ใ
@racket[make-base-empty-namespace]ๅฝๆฐๆไพไธไธช็ฉบ็ๅฝๅ็ฉบ้ด๏ผ้ค้้ๅ ไบ@racketmodname[racket/base]ใ็ๆ็ๅฝๅ็ฉบ้ดไป็ถๆฏโ็ฉบ็โ๏ผๅจ่ฟไธชๆไนไธ๏ผ็ปๅฎๅ็งฐ็ฉบ้ด้จๅ็ๆ ่ฏ็ฌฆๆฒกๆๆ ๅฐ๏ผๅชๆๆจกๅๆ ๅฐๅทฒ็ปๅกซๅ
ใ็ถ่๏ผ้่ฟๅๅงๆจกๅๆ ๅฐ๏ผๅฏไปฅๅ ่ฝฝๆดๅคๆจกๅใ
ไธไธช็จ@racket[make-base-empty-namespace]ๅๅปบ็ๅฝๅ็ฉบ้ด้ๅไบ่ฎธๅคๅบๆฌ็ๅจๆไปปๅกใไพๅฆ๏ผๅ่ฎพ@racketmodfont{my-dsl}ๅบๅฎ็ฐไบไธไธช็นๅฎๅฎไนๅ็่ฏญ่จ๏ผไฝ ๅธๆๅจๅ
ถไธญๆง่กๆฅ่ช็จๆทๆๅฎๆไปถ็ๅฝไปคใไธไธช็จ@racket[make-base-empty-namespace]็ๅฝๅ็ฉบ้ด่ถณไปฅๅฏๅจ๏ผ
@racketblock[
(define (run-dsl file)
(parameterize ([current-namespace (make-base-empty-namespace)])
(namespace-require 'my-dsl)
(load file)))
]
ๆณจๆ๏ผ@racket[current-namespace]็@racket[parameterize]๏ผๅๆฐ๏ผไธๅฝฑๅๅๅจ@racket[parameterize]ไธปไฝไธญ็@racket[namespace-require]้ฃๆ ท็ๆ ่ฏ็ฌฆ็ๆไนใ่ฟไบๆ ่ฏ็ฌฆไปๅฐ้ญไธไธๆ๏ผๅฏ่ฝๆฏไธไธชๆจกๅ๏ผ่ทๅพๅฎไปฌ็ๅซไนใๅชๆๅฏนไปฃ็ ๅ
ทๆๅจๆๆง็่กจ่พพๅผ๏ผๅฆ@racket[load]๏ผๅ ่ฝฝ๏ผ็ๆไปถ็ๅ
ๅฎน๏ผ้่ฟ@racket[parameterize]๏ผๅๆฐๅ๏ผๅฝฑๅใ
ๅจไธ้ข็ไพๅญไธญ๏ผไธไธชๅพฎๅฆ็ไธ็นๆฏไฝฟ็จ@racket[(namespace-require 'my-dsl)]ไปฃๆฟ@racket[(eval
'(require my-dsl))]ใๅ่
ไธไผ่ฟ่ก๏ผๅ ไธบ@racket[eval]้่ฆๅฏนๅจๅฝๅ็ฉบ้ดไธญ็@racket[require]่ทๅพๆไน๏ผๅนถไธๅฝๅ็ฉบ้ด็ๆ ่ฏ็ฌฆๆ ๅฐๆๅๆฏ็ฉบ็ใไธๆญค็ธๅ๏ผ@racket[namespace-require]ๅฝๆฐ็ดๆฅๅฐ็ปๅฎ็ๆจกๅๅฏผๅ
ฅ๏ผrequire๏ผๅฝๅๅฝๅ็ฉบ้ดใไป@racket[(namespace-require 'racket/base)]่ฟ่กใไป@racket[(namespace-require 'racket/base)]ๅฐไธบ@racketidfont{require}ๅผๅ
ฅ็ปๅฎๅนถไฝฟๅ็ปญ็@racket[(eval
'(require my-dsl))]่ฟ่กใไธ้ข็ๆฏ่พๅฅฝ๏ผไธไป
ไป
ๆฏๅ ไธบๅฎๆด็ดงๅ๏ผ่ฟๅ ไธบๅฎ้ฟๅ
ๅผๅ
ฅไธๅฑไบ็นๅฎ้ขๅ่ฏญ่จ็็ปๅฎใ
@; 15.2.2 ๅ
ฑไบซๆฐๆฎๅไปฃ็ ็ๅฝๅ็ฉบ้ด--------------------------------------------------
@subsection[#:tag "Sharing-Data-and-Code-Across-Namespaces"]{ๅ
ฑไบซๆฐๆฎๅไปฃ็ ็ๅฝๅ็ฉบ้ด}
ๅฆๆไธ้่ฆๅฏนๆฐๅฝๅ็ฉบ้ด้ๅ ็ๆจกๅ๏ผๅๅฐ้ๆฐๅ ่ฝฝๅนถๅฎไพๅๅฎไปฌใไพๅฆ๏ผ@racketmodname[racket/base]ไธๅ
ๆฌ@racketmodname[racket/class]๏ผๅ ่ฝฝ@racketmodname[racket/class]ๅๅฐๅ้ ไธไธชไธๅ็็ฑปๆฐๆฎ็ฑปๅ๏ผ
@interaction[
(require racket/class)
(class? object%)
(class?
(parameterize ([current-namespace (make-base-empty-namespace)])
(namespace-require 'racket/class) (code:comment @#,t{loads again})
(eval 'object%)))
]
ๅฏนไบๅจๆๅ ่ฝฝ็ไปฃ็ ้่ฆไธๅ
ถไธไธๆๅ
ฑไบซๆดๅคไปฃ็ ๅๆฐๆฎ็๏ผไฝฟ็จ@racket[namespace-attach-module]ๅฝๆฐใ @racket[namespace-attach-module]็็ฌฌไธไธชๅๆฐๆฏไปไธญๆๅๆจกๅๅฎไพ็ๆบๅฝๅ็ฉบ้ด๏ผๅจๆไบๆ
ๅตไธ๏ผๅทฒ็ฅ็ๅฝๅๅฝๅ็ฉบ้ดๅ
ๅซ้่ฆๅ
ฑไบซ็ๆจกๅ๏ผ
@interaction[
(require racket/class)
(class?
(let ([ns (make-base-empty-namespace)])
(namespace-attach-module (current-namespace)
'racket/class
ns)
(parameterize ([current-namespace ns])
(namespace-require 'racket/class) (code:comment @#,t{uses attached})
(eval 'object%))))
]
็ถ่๏ผๅจไธไธชๆจกๅไธญ๏ผ@racket[define-namespace-anchor]ๅ@racket[namespace-anchor->empty-namespace]็็ปๅๆไพไบไธ็งๆดๅฏ้ ็่ทๅๆบๅฝๅ็ฉบ้ด็ๆนๆณ๏ผ
@racketmod[
racket/base
(require racket/class)
(define-namespace-anchor a)
(define (load-plug-in file)
(let ([ns (make-base-empty-namespace)])
(namespace-attach-module (namespace-anchor->empty-namespace a)
'racket/class
ns)
(parameterize ([current-namespace ns])
(dynamic-require file 'plug-in%))))
]
็ฑ@racket[namespace-attach-module]็ปๅฎ็้ๅฐๆจกๅ็่ฟ่กๆถ้ดไธๅ ่ฝฝๆจกๅ็ๅฝๅ็ฉบ้ด๏ผๅฏ่ฝไธๅฝๅๅฝๅ็ฉบ้ดไธๅ๏ผ่ฟๆฅๅจไธ่ตทใๅจไธ้ข็็คบไพไธญ๏ผ็ฑไบๅฐ้ญๆจกๅ้่ฆ@racketmodname[racket/class]๏ผ็ฑ@racket[namespace-anchor->empty-namespace]็ๆ็ๅ็งฐ็ฉบ้ด่ฏๅฎๅ
ๅซไบไธไธช@racketmodname[racket/class]็ๅฎไพใๆญคๅค๏ผ่ฏฅๅฎไพไธไธไธชๅฏผๅ
ฅๆจกๅ็ไธไธช็ธๅ๏ผๅ ๆญค็ฑปๆฐๆฎ็ฑปๅๅ
ฑไบซใ
@; 15.3 ่ๆฌๆฑๅผๅไฝฟ็จload-------------------------------------------------------
@section[#:tag "load"]{่ๆฌๆฑๅผๅไฝฟ็จ@racket[load]}
ไปๅๅฒไธ็๏ผLispๅฎ็ฐๆฒกๆๆไพๆจกๅ็ณป็ปใ็ธๅ๏ผๅคง็็จๅบๆฏ็ฑๅบๆฌ็่ๆฌ@tech{REPL}ๆฅๆฑๅผไธไธช็นๅฎ็้กบๅบ็็จๅบ็ๆฎตใ่@tech{REPL}่ๆฌๆฏ็ปๆๅ็จๅบๅๅบ็ๅฅฝๅๆณ๏ผๅฎไป็ถๆๆถๆฏไธไธชๆ็จ็ๆง่ฝใ
@racket[load]ๅฝๆฐ้่ฟไปๆไปถไธญไธไธชๆฅไธไธชๅฐ@racket[read]๏ผ่ฏปๅ๏ผS่กจ่พพๅผๆฅ่ฟ่กไธไธช@tech{REPL}่ๆฌ๏ผๅนถๆๅฎไปฌไผ ้็ป@racket[eval]ใๅฆๆไธไธชๆไปถ@filepath{place.rkts}ๅ
ๅซไปฅไธๅ
ๅฎน
@racketblock[
(define city "Salt Lake City")
(define state "Utah")
(printf "~a, ~a\n" city state)
]
้ฃไน๏ผๅฎๅฏไปฅ@racket[load]๏ผๅ ่ฝฝ๏ผ่ฟไธไธช@tech{REPL}๏ผ
@interaction[
(eval:alts (load "place.rkts")
(begin (define city "Salt Lake City")
(printf "~a, Utah\n" city)))
city
]
็ถ่๏ผ็ฑไบ@racket[load]ไฝฟ็จ@racket[eval]๏ผๅไธ้ข็ไธไธชๆจกๅไธ่ฌไธไผ่ฟ่กโโๅบไบ@secref["namespaces"]๏ผๅฝๅ็ฉบ้ด๏ผไธญ็็ธๅๅๅ ๆ่ฟฐ๏ผ
@racketmod[
racket
(define there "Utopia")
(load "here.rkts")
]
ๅฏนๆฑๅผ@filepath{here.rkts}็ไธไธๆ็ๅฝๅๅฝๅ็ฉบ้ดๅฏ่ฝๆฏ็ฉบ็๏ผๅจไปปไฝๆ
ๅตไธ๏ผไฝ ไธ่ฝไป@filepath{here.rkts}ๅฐ@racket[there]๏ผ้ฃ้๏ผใๅๆถ๏ผๅจ@filepath{here.rkts}้็ไปปไฝๅฎไนๅฏนๆจกๅ้็ไฝฟ็จไธไผๅๅพๅฏ่ง๏ผๆฏ็ซ๏ผ@racket[load]ๆฏๅจๆๅ็๏ผ่ๅจๆจกๅๆ ่ฏ็ฌฆๅผ็จๆฏไป่ฏๆณไธ่งฃๅณ๏ผๅ ๆญคๆฏ้ๆ็ใ
ไธๅ@racket[eval]๏ผ@racket[load]ไธๆฅๅไธไธชๅฝๅ็ฉบ้ด็ๅๆฐใไธบไบๆไพไธไธช็จไบ@racket[load]็ๅฝๅ็ฉบ้ด๏ผ่ฎพ็ฝฎ@racket[current-namespace]@tech{ๅๆฐ๏ผparameter๏ผ}ใไธ้ข็็คบไพๆฑๅผๅจ@filepath{here.rkts}ไธญไฝฟ็จ@racketmodname[racket/base]ๆจกๅ็ปๅฎ็่กจ่พพๅผ๏ผ
@racketmod[
racket
(parameterize ([current-namespace (make-base-namespace)])
(load "here.rkts"))
]
ไฝ ็่ณๅฏไปฅไฝฟ็จ@racket[namespace-anchor->namespace]ไฝฟๅฐ้ญๆจกๅ็็ปๅฎๅฏ็จไบๅจๆๆฑๅผใๅจไธ้ข็ไพๅญไธญ๏ผๅฝ@filepath{here.rkts}่ขซ@racket[load]๏ผๅ ่ฝฝ๏ผๆถ๏ผๅฎๆขๅฏไปฅๆ@racket[there]๏ผไนๅฏไปฅๆ@racketmodname[racket]็็ปๅฎ๏ผ
@racketmod[
racket
(define there "Utopia")
(define-namespace-anchor a)
(parameterize ([current-namespace (namespace-anchor->namespace a)])
(load "here.rkts"))
]
ไธ่ฟ๏ผๅฆๆ@filepath{here.rkts}ๅฎไนไปปๆ็ๆ ่ฏ็ฌฆ๏ผ่ฟไธชๅฎไนไธ่ฝ็ดๆฅ๏ผๅณ้ๆๅฐ๏ผๅจๅคๅดๆจกๅไธญๅผ็จใ
@racketmodname[racket/load]ๆจกๅ่ฏญ่จไธๅไบ@racketmodname[racket]ๆ@racketmodname[racket/base]ใไธไธชๆจกๅไฝฟ็จ@racketmodname[racket/load]ๅฏนๅ
ถๆๆไธไธๆไปฅๅจๆๅฏนๅพ
๏ผ้่ฟๆจกๅไธปไฝ้็ๆฏไธไธช่กจๅป@racket[eval]๏ผไฝฟ็จไปฅ@racketmodname[racket]ๅๅงๅ็ๅฝๅ็ฉบ้ด๏ผใไฝไธบไธไธช็ปๆ๏ผ@racket[eval]ๅ@racket[load]ๅจๆจกๅไธญ็ไฝฟ็จ็ๅฐ็ธๅ็ๅจๆๅฝๅ็ฉบ้ดไฝไธบ็ดๆฅไธปไฝ่กจใไพๅฆ๏ผๅฆๆ@filepath{here.rkts}ๅ
ๅซไปฅไธๅ
ๅฎน
@racketblock[
(define here "Morporkia")
(define (go!) (set! here there))
]
้ฃไน่ฟ่ก
@racketmod[
racket/load
(define there "Utopia")
(load "here.rkts")
(go!)
(printf "~a\n" here)
]
ๆๅฐโUtopiaโใ
ไฝฟ็จ@racketmodname[racket/load]็็ผบ็นๅ
ๆฌๅๅฐ้่ฏฏๆฃๆฅใๅทฅๅ
ทๆฏๆๅๆง่ฝใไพๅฆ๏ผ็จ็จๅบ
@racketmod[
racket/load
(define good 5)
(printf "running\n")
good
bad
]
DrRacket็@onscreen{่ฏญๆณๆฃๆฅ๏ผCheck Syntax๏ผ}ๅทฅๅ
ทไธ่ฝๅ่ฏ็ฌฌไบไธช@racket[good]ๆฏๅฏน็ฌฌไธไธช็ๅ่๏ผ่ๅฏน@racket[bad]็้็ปๅฎๅ่ไป
ๅจ่ฟ่กๆถๆฅๅ่ไธๆฏๅจ่ฏญๆณไธๆ็ปใ | false |
9f81a7a5bc059a9e083322690bf3427a4f25adcd | 662e55de9b4213323395102bd50fb22b30eaf957 | /dissertation/scrbl/pepm-2018/with-cache/fig:rp:overhead:1.rktd | 09378f49950db74df8a9387cc4860b6c506ec573 | []
| 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 | 91,873 | rktd | fig:rp:overhead:1.rktd | ;; This file was generated by the `with-cache` library on 2020-07-24
(((float call_method go meteor Espionage PythonFlow pystone)) (3) 1 (((lib "pict/private/pict.rkt") . pict-deserialize-info)) 67 ((q 255 255 255 1.0) (q 12 #f default normal normal #f default #f aligned) (q (0 0 0 1.0) 1 solid round round #f) (q (255 255 255 1.0) solid #f #f #f) (q 12 "bold" roman normal normal #f default #f aligned) (q (0 0 0 1.0) 1/2 solid round round #f) (q 255 255 255 1.0) "1" (q 0 0 0 1.0) "2" "10x" "0" "50" "100%" (q (0 0 0 1.0) 1 transparent round round #f) (q 0 0 0 1.0) (q 12 "Liberation Serif" default normal bold #f default #t unaligned) (q 255 255 255 1.0) "1" (q 0 0 0 1.0) "2" "10x" "0" "50" "100%" (q (227 232 255 1.0) solid #f #f #f) (q (0 2 123 1.0) 0.1 solid round round #f) (q 255 255 255 1.0) "1" (q 0 0 0 1.0) "2" "10x" "0" "50" "100%" (q 255 255 255 1.0) "1" (q 0 0 0 1.0) "2" "10x" "0" "50" "100%" (q 255 255 255 1.0) "1" (q 0 0 0 1.0) "2" "10x" "0" "50" "100%" (q 255 255 255 1.0) "1" (q 0 0 0 1.0) "2" "10x" "0" "50" "100%" (q 255 255 255 1.0) "1" (q 0 0 0 1.0) "2" "10x" "0" "50" "100%") () (0 (q (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-font (12 #f default normal normal #f default #f aligned)) (set-smoothing unsmoothed) (set-text-mode transparent) (set-alpha 1.0) (set-clipping-region #f) (set-background (255 255 255 1.0)) (set-text-background (255 255 255 1.0)) (set-text-foreground (0 0 0 1.0)) (set-font (12 "Liberation Serif" default normal bold #f default #t unaligned)) (draw-text "float" 0.0 0.0 #t 0 0) (set-font (12 #f default normal normal #f default #f aligned)) (set-origin 0.0 12.0) (set-smoothing smoothed) (set-text-mode transparent) (set-clipping-region (#t (((((0.0 . 12.0) (410.0 . 12.0) (410.0 . 96.0) (0.0 . 96.0)))) . any))) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1) (set-origin 0.0 12.0) (set-smoothing smoothed) (set-text-mode transparent) (set-clipping-region (#t (((((0.0 . 12.0) (410.0 . 12.0) (410.0 . 96.0) (0.0 . 96.0)))) . any))) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1) (set-alpha 1) (clear) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 35.0 67.0 400.0 67.0) (draw-line 35.0 6.0 400.0 6.0) (draw-line 35.0 6.0 35.0 67.0) (draw-line 400.0 6.0 400.0 67.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 35.0 65.0 35.0 69.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 63.90115480738306 66.0 63.90115480738306 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 88.33673302255687 66.0 88.33673302255687 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 109.50379366941256 66.0 109.50379366941256 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 128.17446436270671 66.0 128.17446436270671 68.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 144.87594841735313 65.0 144.87594841735313 69.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 254.75189683470623 66.0 254.75189683470623 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 319.02520639002984 66.0 319.02520639002984 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 364.62784525205933 66.0 364.62784525205933 68.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 400.0 65.0 400.0 69.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 33.0 67.0 37.0 67.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 33.0 36.5 37.0 36.5) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 33.0 6.0 37.0 6.0) (set-text-foreground (255 255 255 1.0)) (draw-text "1" 30.5 70.0 #t 0 0) (draw-text "1" 30.5 71.0 #t 0 0) (draw-text "1" 30.5 72.0 #t 0 0) (draw-text "1" 31.5 70.0 #t 0 0) (draw-text "1" 31.5 72.0 #t 0 0) (draw-text "1" 32.5 70.0 #t 0 0) (draw-text "1" 32.5 71.0 #t 0 0) (draw-text "1" 32.5 72.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "1" 31.5 71.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "2" 140.37594841735313 70.0 #t 0 0) (draw-text "2" 140.37594841735313 71.0 #t 0 0) (draw-text "2" 140.37594841735313 72.0 #t 0 0) (draw-text "2" 141.37594841735313 70.0 #t 0 0) (draw-text "2" 141.37594841735313 72.0 #t 0 0) (draw-text "2" 142.37594841735313 70.0 #t 0 0) (draw-text "2" 142.37594841735313 71.0 #t 0 0) (draw-text "2" 142.37594841735313 72.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "2" 141.37594841735313 71.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "10x" 389.5 70.0 #t 0 0) (draw-text "10x" 389.5 71.0 #t 0 0) (draw-text "10x" 389.5 72.0 #t 0 0) (draw-text "10x" 390.5 70.0 #t 0 0) (draw-text "10x" 390.5 72.0 #t 0 0) (draw-text "10x" 391.5 70.0 #t 0 0) (draw-text "10x" 391.5 71.0 #t 0 0) (draw-text "10x" 391.5 72.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "10x" 390.5 71.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "0" 23.0 60.0 #t 0 0) (draw-text "0" 23.0 61.0 #t 0 0) (draw-text "0" 23.0 62.0 #t 0 0) (draw-text "0" 24.0 60.0 #t 0 0) (draw-text "0" 24.0 62.0 #t 0 0) (draw-text "0" 25.0 60.0 #t 0 0) (draw-text "0" 25.0 61.0 #t 0 0) (draw-text "0" 25.0 62.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "0" 24.0 61.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "50" 17.0 29.5 #t 0 0) (draw-text "50" 17.0 30.5 #t 0 0) (draw-text "50" 17.0 31.5 #t 0 0) (draw-text "50" 18.0 29.5 #t 0 0) (draw-text "50" 18.0 31.5 #t 0 0) (draw-text "50" 19.0 29.5 #t 0 0) (draw-text "50" 19.0 30.5 #t 0 0) (draw-text "50" 19.0 31.5 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "50" 18.0 30.5 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "100%" -1.0 -1.0 #t 0 0) (draw-text "100%" -1.0 0.0 #t 0 0) (draw-text "100%" -1.0 1.0 #t 0 0) (draw-text "100%" 0.0 -1.0 #t 0 0) (draw-text "100%" 0.0 1.0 #t 0 0) (draw-text "100%" 1.0 -1.0 #t 0 0) (draw-text "100%" 1.0 0.0 #t 0 0) (draw-text "100%" 1.0 1.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "100%" 0.0 0.0 #t 0 0) (set-clipping-region (#t (((((34.5 . 17.5) (401.0 . 17.5) (401.0 . 80.0) (34.5 . 80.0)))) . any))) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 transparent round round #f)) (do-set-brush! ((227 232 255 1.0) solid #f #f #f)) (set-smoothing unsmoothed) (draw-polygon ((54.210526315789465 . 67.0) (73.42105263157893 . 67.0) (92.63157894736841 . 67.0) (111.8421052631579 . 67.0) (131.0526315789474 . 67.0) (150.26315789473682 . 67.0) (169.47368421052633 . 67.0) (188.68421052631575 . 67.0) (207.89473684210526 . 67.0) (227.10526315789474 . 67.0) (246.31578947368422 . 67.0) (265.52631578947364 . 67.0) (284.7368421052631 . 67.0) (303.94736842105266 . 67.0) (323.1578947368421 . 67.0) (342.3684210526315 . 67.0) (361.57894736842104 . 67.0) (380.7894736842105 . 67.0) (400.0 . 67.0) (400.0 . 6.0) (380.7894736842105 . 6.0) (361.57894736842104 . 6.0) (342.3684210526315 . 6.0) (323.1578947368421 . 6.0) (303.94736842105266 . 6.0) (284.7368421052631 . 6.0) (265.52631578947364 . 6.0) (246.31578947368422 . 6.0) (227.10526315789474 . 6.0) (207.89473684210526 . 13.625) (197.2038456828975 . 22.339285714285715) (188.68421052631575 . 28.875) (177.99331936710803 . 41.94642857142857) (169.47368421052633 . 51.75) (158.78279305131858 . 60.464285714285715) (150.26315789473682 . 67.0) (131.0526315789474 . 67.0) (111.8421052631579 . 67.0) (92.63157894736841 . 67.0) (73.42105263157893 . 67.0) (54.210526315789465 . 67.0) (35.0 . 67.0)) 0 0 winding) (set-smoothing smoothed) (do-set-pen! ((0 0 0 1.0) 1 transparent round round #f)) (do-set-pen! ((0 2 123 1.0) 0.1 solid round round #f)) (draw-lines ((400.0 . 6.0) (380.7894736842105 . 6.0) (361.57894736842104 . 6.0) (342.3684210526315 . 6.0) (323.1578947368421 . 6.0) (303.94736842105266 . 6.0) (284.7368421052631 . 6.0) (265.52631578947364 . 6.0) (246.31578947368422 . 6.0) (227.10526315789474 . 6.0) (207.89473684210526 . 13.625) (197.2038456828975 . 22.339285714285715) (188.68421052631575 . 28.875) (177.99331936710803 . 41.94642857142857) (169.47368421052633 . 51.75) (158.78279305131858 . 60.464285714285715) (150.26315789473682 . 67.0) (131.0526315789474 . 67.0) (111.8421052631579 . 67.0) (92.63157894736841 . 67.0) (73.42105263157893 . 67.0) (54.210526315789465 . 67.0) (35.0 . 67.0)) 0.0 0.0) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (set-alpha 1/2) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((35.0 . 67.0) (35.0 . 6.0)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 63.90115480738306 67.0 63.90115480738306 63.0) (draw-line 63.90115480738306 59.0 63.90115480738306 54.0) (draw-line 63.90115480738306 50.0 63.90115480738306 45.0) (draw-line 63.90115480738306 41.0 63.90115480738306 36.0) (draw-line 63.90115480738306 32.0 63.90115480738306 27.0) (draw-line 63.90115480738306 23.0 63.90115480738306 18.0) (draw-line 63.90115480738306 14.0 63.90115480738306 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 88.33673302255687 67.0 88.33673302255687 63.0) (draw-line 88.33673302255687 59.0 88.33673302255687 54.0) (draw-line 88.33673302255687 50.0 88.33673302255687 45.0) (draw-line 88.33673302255687 41.0 88.33673302255687 36.0) (draw-line 88.33673302255687 32.0 88.33673302255687 27.0) (draw-line 88.33673302255687 23.0 88.33673302255687 18.0) (draw-line 88.33673302255687 14.0 88.33673302255687 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 109.50379366941256 67.0 109.50379366941256 63.0) (draw-line 109.50379366941256 59.0 109.50379366941256 54.0) (draw-line 109.50379366941256 50.0 109.50379366941256 45.0) (draw-line 109.50379366941256 41.0 109.50379366941256 36.0) (draw-line 109.50379366941256 32.0 109.50379366941256 27.0) (draw-line 109.50379366941256 23.0 109.50379366941256 18.0) (draw-line 109.50379366941256 14.0 109.50379366941256 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 128.17446436270671 67.0 128.17446436270671 63.0) (draw-line 128.17446436270671 59.0 128.17446436270671 54.0) (draw-line 128.17446436270671 50.0 128.17446436270671 45.0) (draw-line 128.17446436270671 41.0 128.17446436270671 36.0) (draw-line 128.17446436270671 32.0 128.17446436270671 27.0) (draw-line 128.17446436270671 23.0 128.17446436270671 18.0) (draw-line 128.17446436270671 14.0 128.17446436270671 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((144.87594841735313 . 67.0) (144.87594841735313 . 6.0)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 254.75189683470623 67.0 254.75189683470623 63.0) (draw-line 254.75189683470623 59.0 254.75189683470623 54.0) (draw-line 254.75189683470623 50.0 254.75189683470623 45.0) (draw-line 254.75189683470623 41.0 254.75189683470623 36.0) (draw-line 254.75189683470623 32.0 254.75189683470623 27.0) (draw-line 254.75189683470623 23.0 254.75189683470623 18.0) (draw-line 254.75189683470623 14.0 254.75189683470623 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 319.02520639002984 67.0 319.02520639002984 63.0) (draw-line 319.02520639002984 59.0 319.02520639002984 54.0) (draw-line 319.02520639002984 50.0 319.02520639002984 45.0) (draw-line 319.02520639002984 41.0 319.02520639002984 36.0) (draw-line 319.02520639002984 32.0 319.02520639002984 27.0) (draw-line 319.02520639002984 23.0 319.02520639002984 18.0) (draw-line 319.02520639002984 14.0 319.02520639002984 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 364.62784525205933 67.0 364.62784525205933 63.0) (draw-line 364.62784525205933 59.0 364.62784525205933 54.0) (draw-line 364.62784525205933 50.0 364.62784525205933 45.0) (draw-line 364.62784525205933 41.0 364.62784525205933 36.0) (draw-line 364.62784525205933 32.0 364.62784525205933 27.0) (draw-line 364.62784525205933 23.0 364.62784525205933 18.0) (draw-line 364.62784525205933 14.0 364.62784525205933 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((400.0 . 67.0) (400.0 . 6.0)) 0.0 0.0) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (set-alpha 1/2) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((35.0 . 67.0) (400.0 . 67.0)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((35.0 . 36.5) (400.0 . 36.5)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((35.0 . 6.0) (400.0 . 6.0)) 0.0 0.0) (set-origin 0.0 12.0) (set-smoothing smoothed) (set-text-mode transparent) (set-clipping-region (#t (((((0.0 . 12.0) (410.0 . 12.0) (410.0 . 96.0) (0.0 . 96.0)))) . any))) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1) (set-origin 0.0 0.0) (set-smoothing unsmoothed) (set-text-mode transparent) (set-clipping-region #f) (set-font (12 #f default normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1.0) (set-font (12 "Liberation Serif" default normal bold #f default #t unaligned)) (draw-text "64 configurations" 309.986328125 0.0 #t 0 0) (set-font (12 #f default normal normal #f default #f aligned)) (set-font (12 "Liberation Serif" default normal bold #f default #t unaligned)) (draw-text "call_method" 0.0 106.0 #t 0 0) (set-font (12 #f default normal normal #f default #f aligned)) (set-origin 0.0 118.0) (set-smoothing smoothed) (set-text-mode transparent) (set-clipping-region (#t (((((0.0 . 118.0) (410.0 . 118.0) (410.0 . 202.0) (0.0 . 202.0)))) . any))) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1) (set-origin 0.0 118.0) (set-smoothing smoothed) (set-text-mode transparent) (set-clipping-region (#t (((((0.0 . 118.0) (410.0 . 118.0) (410.0 . 202.0) (0.0 . 202.0)))) . any))) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1) (set-alpha 1) (clear) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 35.0 67.0 400.0 67.0) (draw-line 35.0 6.0 400.0 6.0) (draw-line 35.0 6.0 35.0 67.0) (draw-line 400.0 6.0 400.0 67.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 35.0 65.0 35.0 69.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 63.90115480738306 66.0 63.90115480738306 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 88.33673302255687 66.0 88.33673302255687 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 109.50379366941256 66.0 109.50379366941256 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 128.17446436270671 66.0 128.17446436270671 68.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 144.87594841735313 65.0 144.87594841735313 69.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 254.75189683470623 66.0 254.75189683470623 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 319.02520639002984 66.0 319.02520639002984 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 364.62784525205933 66.0 364.62784525205933 68.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 400.0 65.0 400.0 69.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 33.0 67.0 37.0 67.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 33.0 36.5 37.0 36.5) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 33.0 6.0 37.0 6.0) (set-text-foreground (255 255 255 1.0)) (draw-text "1" 30.5 70.0 #t 0 0) (draw-text "1" 30.5 71.0 #t 0 0) (draw-text "1" 30.5 72.0 #t 0 0) (draw-text "1" 31.5 70.0 #t 0 0) (draw-text "1" 31.5 72.0 #t 0 0) (draw-text "1" 32.5 70.0 #t 0 0) (draw-text "1" 32.5 71.0 #t 0 0) (draw-text "1" 32.5 72.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "1" 31.5 71.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "2" 140.37594841735313 70.0 #t 0 0) (draw-text "2" 140.37594841735313 71.0 #t 0 0) (draw-text "2" 140.37594841735313 72.0 #t 0 0) (draw-text "2" 141.37594841735313 70.0 #t 0 0) (draw-text "2" 141.37594841735313 72.0 #t 0 0) (draw-text "2" 142.37594841735313 70.0 #t 0 0) (draw-text "2" 142.37594841735313 71.0 #t 0 0) (draw-text "2" 142.37594841735313 72.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "2" 141.37594841735313 71.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "10x" 389.5 70.0 #t 0 0) (draw-text "10x" 389.5 71.0 #t 0 0) (draw-text "10x" 389.5 72.0 #t 0 0) (draw-text "10x" 390.5 70.0 #t 0 0) (draw-text "10x" 390.5 72.0 #t 0 0) (draw-text "10x" 391.5 70.0 #t 0 0) (draw-text "10x" 391.5 71.0 #t 0 0) (draw-text "10x" 391.5 72.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "10x" 390.5 71.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "0" 23.0 60.0 #t 0 0) (draw-text "0" 23.0 61.0 #t 0 0) (draw-text "0" 23.0 62.0 #t 0 0) (draw-text "0" 24.0 60.0 #t 0 0) (draw-text "0" 24.0 62.0 #t 0 0) (draw-text "0" 25.0 60.0 #t 0 0) (draw-text "0" 25.0 61.0 #t 0 0) (draw-text "0" 25.0 62.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "0" 24.0 61.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "50" 17.0 29.5 #t 0 0) (draw-text "50" 17.0 30.5 #t 0 0) (draw-text "50" 17.0 31.5 #t 0 0) (draw-text "50" 18.0 29.5 #t 0 0) (draw-text "50" 18.0 31.5 #t 0 0) (draw-text "50" 19.0 29.5 #t 0 0) (draw-text "50" 19.0 30.5 #t 0 0) (draw-text "50" 19.0 31.5 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "50" 18.0 30.5 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "100%" -1.0 -1.0 #t 0 0) (draw-text "100%" -1.0 0.0 #t 0 0) (draw-text "100%" -1.0 1.0 #t 0 0) (draw-text "100%" 0.0 -1.0 #t 0 0) (draw-text "100%" 0.0 1.0 #t 0 0) (draw-text "100%" 1.0 -1.0 #t 0 0) (draw-text "100%" 1.0 0.0 #t 0 0) (draw-text "100%" 1.0 1.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "100%" 0.0 0.0 #t 0 0) (set-clipping-region (#t (((((34.5 . 123.5) (401.0 . 123.5) (401.0 . 186.0) (34.5 . 186.0)))) . any))) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 transparent round round #f)) (do-set-brush! ((227 232 255 1.0) solid #f #f #f)) (set-smoothing unsmoothed) (draw-polygon ((54.210526315789465 . 67.0) (73.42105263157893 . 67.0) (92.63157894736841 . 67.0) (111.8421052631579 . 67.0) (131.0526315789474 . 67.0) (150.26315789473682 . 67.0) (169.47368421052633 . 67.0) (188.68421052631575 . 67.0) (207.89473684210526 . 67.0) (227.10526315789474 . 67.0) (246.31578947368422 . 67.0) (265.52631578947364 . 67.0) (284.7368421052631 . 67.0) (303.94736842105266 . 67.0) (323.1578947368421 . 67.0) (342.3684210526315 . 67.0) (361.57894736842104 . 67.0) (380.7894736842105 . 67.0) (400.0 . 67.0) (400.0 . 6.0) (380.7894736842105 . 6.0) (361.57894736842104 . 6.0) (350.8880562092133 . 23.42857142857143) (342.3684210526315 . 36.5) (323.1578947368421 . 36.5) (303.94736842105266 . 36.5) (284.7368421052631 . 36.5) (274.0459509460554 . 45.214285714285715) (265.52631578947364 . 51.75) (246.31578947368422 . 51.75) (227.10526315789474 . 51.75) (216.41437199868696 . 58.285714285714285) (207.89473684210526 . 63.1875) (188.68421052631575 . 67.0) (169.47368421052633 . 67.0) (150.26315789473682 . 67.0) (131.0526315789474 . 67.0) (111.8421052631579 . 67.0) (92.63157894736841 . 67.0) (73.42105263157893 . 67.0) (54.210526315789465 . 67.0) (35.0 . 67.0)) 0 0 winding) (set-smoothing smoothed) (do-set-pen! ((0 0 0 1.0) 1 transparent round round #f)) (do-set-pen! ((0 2 123 1.0) 0.1 solid round round #f)) (draw-lines ((400.0 . 6.0) (380.7894736842105 . 6.0) (361.57894736842104 . 6.0) (350.8880562092133 . 23.42857142857143) (342.3684210526315 . 36.5) (323.1578947368421 . 36.5) (303.94736842105266 . 36.5) (284.7368421052631 . 36.5) (274.0459509460554 . 45.214285714285715) (265.52631578947364 . 51.75) (246.31578947368422 . 51.75) (227.10526315789474 . 51.75) (216.41437199868696 . 58.285714285714285) (207.89473684210526 . 63.1875) (188.68421052631575 . 67.0) (169.47368421052633 . 67.0) (150.26315789473682 . 67.0) (131.0526315789474 . 67.0) (111.8421052631579 . 67.0) (92.63157894736841 . 67.0) (73.42105263157893 . 67.0) (54.210526315789465 . 67.0) (35.0 . 67.0)) 0.0 0.0) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (set-alpha 1/2) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((35.0 . 67.0) (35.0 . 6.0)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 63.90115480738306 67.0 63.90115480738306 63.0) (draw-line 63.90115480738306 59.0 63.90115480738306 54.0) (draw-line 63.90115480738306 50.0 63.90115480738306 45.0) (draw-line 63.90115480738306 41.0 63.90115480738306 36.0) (draw-line 63.90115480738306 32.0 63.90115480738306 27.0) (draw-line 63.90115480738306 23.0 63.90115480738306 18.0) (draw-line 63.90115480738306 14.0 63.90115480738306 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 88.33673302255687 67.0 88.33673302255687 63.0) (draw-line 88.33673302255687 59.0 88.33673302255687 54.0) (draw-line 88.33673302255687 50.0 88.33673302255687 45.0) (draw-line 88.33673302255687 41.0 88.33673302255687 36.0) (draw-line 88.33673302255687 32.0 88.33673302255687 27.0) (draw-line 88.33673302255687 23.0 88.33673302255687 18.0) (draw-line 88.33673302255687 14.0 88.33673302255687 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 109.50379366941256 67.0 109.50379366941256 63.0) (draw-line 109.50379366941256 59.0 109.50379366941256 54.0) (draw-line 109.50379366941256 50.0 109.50379366941256 45.0) (draw-line 109.50379366941256 41.0 109.50379366941256 36.0) (draw-line 109.50379366941256 32.0 109.50379366941256 27.0) (draw-line 109.50379366941256 23.0 109.50379366941256 18.0) (draw-line 109.50379366941256 14.0 109.50379366941256 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 128.17446436270671 67.0 128.17446436270671 63.0) (draw-line 128.17446436270671 59.0 128.17446436270671 54.0) (draw-line 128.17446436270671 50.0 128.17446436270671 45.0) (draw-line 128.17446436270671 41.0 128.17446436270671 36.0) (draw-line 128.17446436270671 32.0 128.17446436270671 27.0) (draw-line 128.17446436270671 23.0 128.17446436270671 18.0) (draw-line 128.17446436270671 14.0 128.17446436270671 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((144.87594841735313 . 67.0) (144.87594841735313 . 6.0)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 254.75189683470623 67.0 254.75189683470623 63.0) (draw-line 254.75189683470623 59.0 254.75189683470623 54.0) (draw-line 254.75189683470623 50.0 254.75189683470623 45.0) (draw-line 254.75189683470623 41.0 254.75189683470623 36.0) (draw-line 254.75189683470623 32.0 254.75189683470623 27.0) (draw-line 254.75189683470623 23.0 254.75189683470623 18.0) (draw-line 254.75189683470623 14.0 254.75189683470623 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 319.02520639002984 67.0 319.02520639002984 63.0) (draw-line 319.02520639002984 59.0 319.02520639002984 54.0) (draw-line 319.02520639002984 50.0 319.02520639002984 45.0) (draw-line 319.02520639002984 41.0 319.02520639002984 36.0) (draw-line 319.02520639002984 32.0 319.02520639002984 27.0) (draw-line 319.02520639002984 23.0 319.02520639002984 18.0) (draw-line 319.02520639002984 14.0 319.02520639002984 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 364.62784525205933 67.0 364.62784525205933 63.0) (draw-line 364.62784525205933 59.0 364.62784525205933 54.0) (draw-line 364.62784525205933 50.0 364.62784525205933 45.0) (draw-line 364.62784525205933 41.0 364.62784525205933 36.0) (draw-line 364.62784525205933 32.0 364.62784525205933 27.0) (draw-line 364.62784525205933 23.0 364.62784525205933 18.0) (draw-line 364.62784525205933 14.0 364.62784525205933 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((400.0 . 67.0) (400.0 . 6.0)) 0.0 0.0) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (set-alpha 1/2) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((35.0 . 67.0) (400.0 . 67.0)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((35.0 . 36.5) (400.0 . 36.5)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((35.0 . 6.0) (400.0 . 6.0)) 0.0 0.0) (set-origin 0.0 118.0) (set-smoothing smoothed) (set-text-mode transparent) (set-clipping-region (#t (((((0.0 . 118.0) (410.0 . 118.0) (410.0 . 202.0) (0.0 . 202.0)))) . any))) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1) (set-origin 0.0 0.0) (set-smoothing unsmoothed) (set-text-mode transparent) (set-clipping-region #f) (set-font (12 #f default normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1.0) (set-font (12 "Liberation Serif" default normal bold #f default #t unaligned)) (draw-text "128 configurations" 303.3125 106.0 #t 0 0) (set-font (12 #f default normal normal #f default #f aligned)) (set-font (12 "Liberation Serif" default normal bold #f default #t unaligned)) (draw-text "go" 0.0 212.0 #t 0 0) (set-font (12 #f default normal normal #f default #f aligned)) (set-origin 0.0 224.0) (set-smoothing smoothed) (set-text-mode transparent) (set-clipping-region (#t (((((0.0 . 224.0) (410.0 . 224.0) (410.0 . 308.0) (0.0 . 308.0)))) . any))) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1) (set-origin 0.0 224.0) (set-smoothing smoothed) (set-text-mode transparent) (set-clipping-region (#t (((((0.0 . 224.0) (410.0 . 224.0) (410.0 . 308.0) (0.0 . 308.0)))) . any))) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1) (set-alpha 1) (clear) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 35.0 67.0 400.0 67.0) (draw-line 35.0 6.0 400.0 6.0) (draw-line 35.0 6.0 35.0 67.0) (draw-line 400.0 6.0 400.0 67.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 35.0 65.0 35.0 69.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 63.90115480738306 66.0 63.90115480738306 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 88.33673302255687 66.0 88.33673302255687 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 109.50379366941256 66.0 109.50379366941256 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 128.17446436270671 66.0 128.17446436270671 68.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 144.87594841735313 65.0 144.87594841735313 69.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 254.75189683470623 66.0 254.75189683470623 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 319.02520639002984 66.0 319.02520639002984 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 364.62784525205933 66.0 364.62784525205933 68.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 400.0 65.0 400.0 69.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 33.0 67.0 37.0 67.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 33.0 36.5 37.0 36.5) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 33.0 6.0 37.0 6.0) (set-text-foreground (255 255 255 1.0)) (draw-text "1" 30.5 70.0 #t 0 0) (draw-text "1" 30.5 71.0 #t 0 0) (draw-text "1" 30.5 72.0 #t 0 0) (draw-text "1" 31.5 70.0 #t 0 0) (draw-text "1" 31.5 72.0 #t 0 0) (draw-text "1" 32.5 70.0 #t 0 0) (draw-text "1" 32.5 71.0 #t 0 0) (draw-text "1" 32.5 72.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "1" 31.5 71.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "2" 140.37594841735313 70.0 #t 0 0) (draw-text "2" 140.37594841735313 71.0 #t 0 0) (draw-text "2" 140.37594841735313 72.0 #t 0 0) (draw-text "2" 141.37594841735313 70.0 #t 0 0) (draw-text "2" 141.37594841735313 72.0 #t 0 0) (draw-text "2" 142.37594841735313 70.0 #t 0 0) (draw-text "2" 142.37594841735313 71.0 #t 0 0) (draw-text "2" 142.37594841735313 72.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "2" 141.37594841735313 71.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "10x" 389.5 70.0 #t 0 0) (draw-text "10x" 389.5 71.0 #t 0 0) (draw-text "10x" 389.5 72.0 #t 0 0) (draw-text "10x" 390.5 70.0 #t 0 0) (draw-text "10x" 390.5 72.0 #t 0 0) (draw-text "10x" 391.5 70.0 #t 0 0) (draw-text "10x" 391.5 71.0 #t 0 0) (draw-text "10x" 391.5 72.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "10x" 390.5 71.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "0" 23.0 60.0 #t 0 0) (draw-text "0" 23.0 61.0 #t 0 0) (draw-text "0" 23.0 62.0 #t 0 0) (draw-text "0" 24.0 60.0 #t 0 0) (draw-text "0" 24.0 62.0 #t 0 0) (draw-text "0" 25.0 60.0 #t 0 0) (draw-text "0" 25.0 61.0 #t 0 0) (draw-text "0" 25.0 62.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "0" 24.0 61.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "50" 17.0 29.5 #t 0 0) (draw-text "50" 17.0 30.5 #t 0 0) (draw-text "50" 17.0 31.5 #t 0 0) (draw-text "50" 18.0 29.5 #t 0 0) (draw-text "50" 18.0 31.5 #t 0 0) (draw-text "50" 19.0 29.5 #t 0 0) (draw-text "50" 19.0 30.5 #t 0 0) (draw-text "50" 19.0 31.5 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "50" 18.0 30.5 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "100%" -1.0 -1.0 #t 0 0) (draw-text "100%" -1.0 0.0 #t 0 0) (draw-text "100%" -1.0 1.0 #t 0 0) (draw-text "100%" 0.0 -1.0 #t 0 0) (draw-text "100%" 0.0 1.0 #t 0 0) (draw-text "100%" 1.0 -1.0 #t 0 0) (draw-text "100%" 1.0 0.0 #t 0 0) (draw-text "100%" 1.0 1.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "100%" 0.0 0.0 #t 0 0) (set-clipping-region (#t (((((34.5 . 229.5) (401.0 . 229.5) (401.0 . 292.0) (34.5 . 292.0)))) . any))) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 transparent round round #f)) (do-set-brush! ((227 232 255 1.0) solid #f #f #f)) (set-smoothing unsmoothed) (draw-polygon ((54.210526315789465 . 67.0) (73.42105263157893 . 67.0) (92.63157894736841 . 67.0) (111.8421052631579 . 67.0) (131.0526315789474 . 67.0) (150.26315789473682 . 67.0) (169.47368421052633 . 67.0) (188.68421052631575 . 67.0) (207.89473684210526 . 67.0) (227.10526315789474 . 67.0) (246.31578947368422 . 67.0) (265.52631578947364 . 67.0) (284.7368421052631 . 67.0) (303.94736842105266 . 67.0) (323.1578947368421 . 67.0) (342.3684210526315 . 67.0) (361.57894736842104 . 67.0) (380.7894736842105 . 67.0) (400.0 . 67.0) (400.0 . 6.0) (380.7894736842105 . 6.0) (361.57894736842104 . 6.0) (350.8880562092133 . 14.714285714285715) (342.3684210526315 . 21.25) (323.1578947368421 . 21.25) (312.46700357763433 . 28.330357142857146) (303.94736842105266 . 33.640625) (284.7368421052631 . 36.5) (265.52631578947364 . 36.5) (254.83542463026592 . 50.11607142857143) (246.31578947368422 . 60.328125) (227.10526315789474 . 67.0) (207.89473684210526 . 67.0) (188.68421052631575 . 67.0) (169.47368421052633 . 67.0) (150.26315789473682 . 67.0) (131.0526315789474 . 67.0) (111.8421052631579 . 67.0) (92.63157894736841 . 67.0) (73.42105263157893 . 67.0) (54.210526315789465 . 67.0) (35.0 . 67.0)) 0 0 winding) (set-smoothing smoothed) (do-set-pen! ((0 0 0 1.0) 1 transparent round round #f)) (do-set-pen! ((0 2 123 1.0) 0.1 solid round round #f)) (draw-lines ((400.0 . 6.0) (380.7894736842105 . 6.0) (361.57894736842104 . 6.0) (350.8880562092133 . 14.714285714285715) (342.3684210526315 . 21.25) (323.1578947368421 . 21.25) (312.46700357763433 . 28.330357142857146) (303.94736842105266 . 33.640625) (284.7368421052631 . 36.5) (265.52631578947364 . 36.5) (254.83542463026592 . 50.11607142857143) (246.31578947368422 . 60.328125) (227.10526315789474 . 67.0) (207.89473684210526 . 67.0) (188.68421052631575 . 67.0) (169.47368421052633 . 67.0) (150.26315789473682 . 67.0) (131.0526315789474 . 67.0) (111.8421052631579 . 67.0) (92.63157894736841 . 67.0) (73.42105263157893 . 67.0) (54.210526315789465 . 67.0) (35.0 . 67.0)) 0.0 0.0) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (set-alpha 1/2) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((35.0 . 67.0) (35.0 . 6.0)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 63.90115480738306 67.0 63.90115480738306 63.0) (draw-line 63.90115480738306 59.0 63.90115480738306 54.0) (draw-line 63.90115480738306 50.0 63.90115480738306 45.0) (draw-line 63.90115480738306 41.0 63.90115480738306 36.0) (draw-line 63.90115480738306 32.0 63.90115480738306 27.0) (draw-line 63.90115480738306 23.0 63.90115480738306 18.0) (draw-line 63.90115480738306 14.0 63.90115480738306 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 88.33673302255687 67.0 88.33673302255687 63.0) (draw-line 88.33673302255687 59.0 88.33673302255687 54.0) (draw-line 88.33673302255687 50.0 88.33673302255687 45.0) (draw-line 88.33673302255687 41.0 88.33673302255687 36.0) (draw-line 88.33673302255687 32.0 88.33673302255687 27.0) (draw-line 88.33673302255687 23.0 88.33673302255687 18.0) (draw-line 88.33673302255687 14.0 88.33673302255687 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 109.50379366941256 67.0 109.50379366941256 63.0) (draw-line 109.50379366941256 59.0 109.50379366941256 54.0) (draw-line 109.50379366941256 50.0 109.50379366941256 45.0) (draw-line 109.50379366941256 41.0 109.50379366941256 36.0) (draw-line 109.50379366941256 32.0 109.50379366941256 27.0) (draw-line 109.50379366941256 23.0 109.50379366941256 18.0) (draw-line 109.50379366941256 14.0 109.50379366941256 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 128.17446436270671 67.0 128.17446436270671 63.0) (draw-line 128.17446436270671 59.0 128.17446436270671 54.0) (draw-line 128.17446436270671 50.0 128.17446436270671 45.0) (draw-line 128.17446436270671 41.0 128.17446436270671 36.0) (draw-line 128.17446436270671 32.0 128.17446436270671 27.0) (draw-line 128.17446436270671 23.0 128.17446436270671 18.0) (draw-line 128.17446436270671 14.0 128.17446436270671 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((144.87594841735313 . 67.0) (144.87594841735313 . 6.0)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 254.75189683470623 67.0 254.75189683470623 63.0) (draw-line 254.75189683470623 59.0 254.75189683470623 54.0) (draw-line 254.75189683470623 50.0 254.75189683470623 45.0) (draw-line 254.75189683470623 41.0 254.75189683470623 36.0) (draw-line 254.75189683470623 32.0 254.75189683470623 27.0) (draw-line 254.75189683470623 23.0 254.75189683470623 18.0) (draw-line 254.75189683470623 14.0 254.75189683470623 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 319.02520639002984 67.0 319.02520639002984 63.0) (draw-line 319.02520639002984 59.0 319.02520639002984 54.0) (draw-line 319.02520639002984 50.0 319.02520639002984 45.0) (draw-line 319.02520639002984 41.0 319.02520639002984 36.0) (draw-line 319.02520639002984 32.0 319.02520639002984 27.0) (draw-line 319.02520639002984 23.0 319.02520639002984 18.0) (draw-line 319.02520639002984 14.0 319.02520639002984 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 364.62784525205933 67.0 364.62784525205933 63.0) (draw-line 364.62784525205933 59.0 364.62784525205933 54.0) (draw-line 364.62784525205933 50.0 364.62784525205933 45.0) (draw-line 364.62784525205933 41.0 364.62784525205933 36.0) (draw-line 364.62784525205933 32.0 364.62784525205933 27.0) (draw-line 364.62784525205933 23.0 364.62784525205933 18.0) (draw-line 364.62784525205933 14.0 364.62784525205933 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((400.0 . 67.0) (400.0 . 6.0)) 0.0 0.0) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (set-alpha 1/2) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((35.0 . 67.0) (400.0 . 67.0)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((35.0 . 36.5) (400.0 . 36.5)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((35.0 . 6.0) (400.0 . 6.0)) 0.0 0.0) (set-origin 0.0 224.0) (set-smoothing smoothed) (set-text-mode transparent) (set-clipping-region (#t (((((0.0 . 224.0) (410.0 . 224.0) (410.0 . 308.0) (0.0 . 308.0)))) . any))) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1) (set-origin 0.0 0.0) (set-smoothing unsmoothed) (set-text-mode transparent) (set-clipping-region #f) (set-font (12 #f default normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1.0) (set-font (12 "Liberation Serif" default normal bold #f default #t unaligned)) (draw-text "128 configurations" 303.3125 212.0 #t 0 0) (set-font (12 #f default normal normal #f default #f aligned)) (set-font (12 "Liberation Serif" default normal bold #f default #t unaligned)) (draw-text "meteor" 0.0 318.0 #t 0 0) (set-font (12 #f default normal normal #f default #f aligned)) (set-origin 0.0 330.0) (set-smoothing smoothed) (set-text-mode transparent) (set-clipping-region (#t (((((0.0 . 330.0) (410.0 . 330.0) (410.0 . 414.0) (0.0 . 414.0)))) . any))) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1) (set-origin 0.0 330.0) (set-smoothing smoothed) (set-text-mode transparent) (set-clipping-region (#t (((((0.0 . 330.0) (410.0 . 330.0) (410.0 . 414.0) (0.0 . 414.0)))) . any))) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1) (set-alpha 1) (clear) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 35.0 67.0 400.0 67.0) (draw-line 35.0 6.0 400.0 6.0) (draw-line 35.0 6.0 35.0 67.0) (draw-line 400.0 6.0 400.0 67.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 35.0 65.0 35.0 69.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 63.90115480738306 66.0 63.90115480738306 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 88.33673302255687 66.0 88.33673302255687 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 109.50379366941256 66.0 109.50379366941256 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 128.17446436270671 66.0 128.17446436270671 68.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 144.87594841735313 65.0 144.87594841735313 69.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 254.75189683470623 66.0 254.75189683470623 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 319.02520639002984 66.0 319.02520639002984 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 364.62784525205933 66.0 364.62784525205933 68.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 400.0 65.0 400.0 69.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 33.0 67.0 37.0 67.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 33.0 36.5 37.0 36.5) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 33.0 6.0 37.0 6.0) (set-text-foreground (255 255 255 1.0)) (draw-text "1" 30.5 70.0 #t 0 0) (draw-text "1" 30.5 71.0 #t 0 0) (draw-text "1" 30.5 72.0 #t 0 0) (draw-text "1" 31.5 70.0 #t 0 0) (draw-text "1" 31.5 72.0 #t 0 0) (draw-text "1" 32.5 70.0 #t 0 0) (draw-text "1" 32.5 71.0 #t 0 0) (draw-text "1" 32.5 72.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "1" 31.5 71.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "2" 140.37594841735313 70.0 #t 0 0) (draw-text "2" 140.37594841735313 71.0 #t 0 0) (draw-text "2" 140.37594841735313 72.0 #t 0 0) (draw-text "2" 141.37594841735313 70.0 #t 0 0) (draw-text "2" 141.37594841735313 72.0 #t 0 0) (draw-text "2" 142.37594841735313 70.0 #t 0 0) (draw-text "2" 142.37594841735313 71.0 #t 0 0) (draw-text "2" 142.37594841735313 72.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "2" 141.37594841735313 71.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "10x" 389.5 70.0 #t 0 0) (draw-text "10x" 389.5 71.0 #t 0 0) (draw-text "10x" 389.5 72.0 #t 0 0) (draw-text "10x" 390.5 70.0 #t 0 0) (draw-text "10x" 390.5 72.0 #t 0 0) (draw-text "10x" 391.5 70.0 #t 0 0) (draw-text "10x" 391.5 71.0 #t 0 0) (draw-text "10x" 391.5 72.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "10x" 390.5 71.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "0" 23.0 60.0 #t 0 0) (draw-text "0" 23.0 61.0 #t 0 0) (draw-text "0" 23.0 62.0 #t 0 0) (draw-text "0" 24.0 60.0 #t 0 0) (draw-text "0" 24.0 62.0 #t 0 0) (draw-text "0" 25.0 60.0 #t 0 0) (draw-text "0" 25.0 61.0 #t 0 0) (draw-text "0" 25.0 62.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "0" 24.0 61.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "50" 17.0 29.5 #t 0 0) (draw-text "50" 17.0 30.5 #t 0 0) (draw-text "50" 17.0 31.5 #t 0 0) (draw-text "50" 18.0 29.5 #t 0 0) (draw-text "50" 18.0 31.5 #t 0 0) (draw-text "50" 19.0 29.5 #t 0 0) (draw-text "50" 19.0 30.5 #t 0 0) (draw-text "50" 19.0 31.5 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "50" 18.0 30.5 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "100%" -1.0 -1.0 #t 0 0) (draw-text "100%" -1.0 0.0 #t 0 0) (draw-text "100%" -1.0 1.0 #t 0 0) (draw-text "100%" 0.0 -1.0 #t 0 0) (draw-text "100%" 0.0 1.0 #t 0 0) (draw-text "100%" 1.0 -1.0 #t 0 0) (draw-text "100%" 1.0 0.0 #t 0 0) (draw-text "100%" 1.0 1.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "100%" 0.0 0.0 #t 0 0) (set-clipping-region (#t (((((34.5 . 335.5) (401.0 . 335.5) (401.0 . 398.0) (34.5 . 398.0)))) . any))) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 transparent round round #f)) (do-set-brush! ((227 232 255 1.0) solid #f #f #f)) (set-smoothing unsmoothed) (draw-polygon ((54.210526315789465 . 67.0) (73.42105263157893 . 67.0) (92.63157894736841 . 67.0) (111.8421052631579 . 67.0) (131.0526315789474 . 67.0) (150.26315789473682 . 67.0) (169.47368421052633 . 67.0) (188.68421052631575 . 67.0) (207.89473684210526 . 67.0) (227.10526315789474 . 67.0) (246.31578947368422 . 67.0) (265.52631578947364 . 67.0) (284.7368421052631 . 67.0) (303.94736842105266 . 67.0) (323.1578947368421 . 67.0) (342.3684210526315 . 67.0) (361.57894736842104 . 67.0) (380.7894736842105 . 67.0) (400.0 . 67.0) (400.0 . 6.0) (380.7894736842105 . 6.0) (361.57894736842104 . 6.0) (342.3684210526315 . 6.0) (323.1578947368421 . 6.0) (303.94736842105266 . 6.0) (284.7368421052631 . 6.0) (265.52631578947364 . 6.0) (246.31578947368422 . 6.0) (227.10526315789474 . 6.0) (207.89473684210526 . 6.0) (188.68421052631575 . 6.0) (169.47368421052633 . 6.0) (158.78279305131858 . 23.42857142857143) (150.26315789473682 . 36.5) (131.0526315789474 . 36.5) (111.8421052631579 . 36.5) (101.15121410395015 . 53.92857142857143) (92.63157894736841 . 67.0) (73.42105263157893 . 67.0) (54.210526315789465 . 67.0) (35.0 . 67.0)) 0 0 winding) (set-smoothing smoothed) (do-set-pen! ((0 0 0 1.0) 1 transparent round round #f)) (do-set-pen! ((0 2 123 1.0) 0.1 solid round round #f)) (draw-lines ((400.0 . 6.0) (380.7894736842105 . 6.0) (361.57894736842104 . 6.0) (342.3684210526315 . 6.0) (323.1578947368421 . 6.0) (303.94736842105266 . 6.0) (284.7368421052631 . 6.0) (265.52631578947364 . 6.0) (246.31578947368422 . 6.0) (227.10526315789474 . 6.0) (207.89473684210526 . 6.0) (188.68421052631575 . 6.0) (169.47368421052633 . 6.0) (158.78279305131858 . 23.42857142857143) (150.26315789473682 . 36.5) (131.0526315789474 . 36.5) (111.8421052631579 . 36.5) (101.15121410395015 . 53.92857142857143) (92.63157894736841 . 67.0) (73.42105263157893 . 67.0) (54.210526315789465 . 67.0) (35.0 . 67.0)) 0.0 0.0) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (set-alpha 1/2) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((35.0 . 67.0) (35.0 . 6.0)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 63.90115480738306 67.0 63.90115480738306 63.0) (draw-line 63.90115480738306 59.0 63.90115480738306 54.0) (draw-line 63.90115480738306 50.0 63.90115480738306 45.0) (draw-line 63.90115480738306 41.0 63.90115480738306 36.0) (draw-line 63.90115480738306 32.0 63.90115480738306 27.0) (draw-line 63.90115480738306 23.0 63.90115480738306 18.0) (draw-line 63.90115480738306 14.0 63.90115480738306 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 88.33673302255687 67.0 88.33673302255687 63.0) (draw-line 88.33673302255687 59.0 88.33673302255687 54.0) (draw-line 88.33673302255687 50.0 88.33673302255687 45.0) (draw-line 88.33673302255687 41.0 88.33673302255687 36.0) (draw-line 88.33673302255687 32.0 88.33673302255687 27.0) (draw-line 88.33673302255687 23.0 88.33673302255687 18.0) (draw-line 88.33673302255687 14.0 88.33673302255687 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 109.50379366941256 67.0 109.50379366941256 63.0) (draw-line 109.50379366941256 59.0 109.50379366941256 54.0) (draw-line 109.50379366941256 50.0 109.50379366941256 45.0) (draw-line 109.50379366941256 41.0 109.50379366941256 36.0) (draw-line 109.50379366941256 32.0 109.50379366941256 27.0) (draw-line 109.50379366941256 23.0 109.50379366941256 18.0) (draw-line 109.50379366941256 14.0 109.50379366941256 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 128.17446436270671 67.0 128.17446436270671 63.0) (draw-line 128.17446436270671 59.0 128.17446436270671 54.0) (draw-line 128.17446436270671 50.0 128.17446436270671 45.0) (draw-line 128.17446436270671 41.0 128.17446436270671 36.0) (draw-line 128.17446436270671 32.0 128.17446436270671 27.0) (draw-line 128.17446436270671 23.0 128.17446436270671 18.0) (draw-line 128.17446436270671 14.0 128.17446436270671 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((144.87594841735313 . 67.0) (144.87594841735313 . 6.0)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 254.75189683470623 67.0 254.75189683470623 63.0) (draw-line 254.75189683470623 59.0 254.75189683470623 54.0) (draw-line 254.75189683470623 50.0 254.75189683470623 45.0) (draw-line 254.75189683470623 41.0 254.75189683470623 36.0) (draw-line 254.75189683470623 32.0 254.75189683470623 27.0) (draw-line 254.75189683470623 23.0 254.75189683470623 18.0) (draw-line 254.75189683470623 14.0 254.75189683470623 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 319.02520639002984 67.0 319.02520639002984 63.0) (draw-line 319.02520639002984 59.0 319.02520639002984 54.0) (draw-line 319.02520639002984 50.0 319.02520639002984 45.0) (draw-line 319.02520639002984 41.0 319.02520639002984 36.0) (draw-line 319.02520639002984 32.0 319.02520639002984 27.0) (draw-line 319.02520639002984 23.0 319.02520639002984 18.0) (draw-line 319.02520639002984 14.0 319.02520639002984 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 364.62784525205933 67.0 364.62784525205933 63.0) (draw-line 364.62784525205933 59.0 364.62784525205933 54.0) (draw-line 364.62784525205933 50.0 364.62784525205933 45.0) (draw-line 364.62784525205933 41.0 364.62784525205933 36.0) (draw-line 364.62784525205933 32.0 364.62784525205933 27.0) (draw-line 364.62784525205933 23.0 364.62784525205933 18.0) (draw-line 364.62784525205933 14.0 364.62784525205933 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((400.0 . 67.0) (400.0 . 6.0)) 0.0 0.0) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (set-alpha 1/2) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((35.0 . 67.0) (400.0 . 67.0)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((35.0 . 36.5) (400.0 . 36.5)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((35.0 . 6.0) (400.0 . 6.0)) 0.0 0.0) (set-origin 0.0 330.0) (set-smoothing smoothed) (set-text-mode transparent) (set-clipping-region (#t (((((0.0 . 330.0) (410.0 . 330.0) (410.0 . 414.0) (0.0 . 414.0)))) . any))) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1) (set-origin 0.0 0.0) (set-smoothing unsmoothed) (set-text-mode transparent) (set-clipping-region #f) (set-font (12 #f default normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1.0) (set-font (12 "Liberation Serif" default normal bold #f default #t unaligned)) (draw-text "256 configurations" 303.3125 318.0 #t 0 0) (set-font (12 #f default normal normal #f default #f aligned)) (set-font (12 "Liberation Serif" default normal bold #f default #t unaligned)) (draw-text "Espionage" 0.0 424.0 #t 0 0) (set-font (12 #f default normal normal #f default #f aligned)) (set-origin 0.0 436.0) (set-smoothing smoothed) (set-text-mode transparent) (set-clipping-region (#t (((((0.0 . 436.0) (410.0 . 436.0) (410.0 . 520.0) (0.0 . 520.0)))) . any))) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1) (set-origin 0.0 436.0) (set-smoothing smoothed) (set-text-mode transparent) (set-clipping-region (#t (((((0.0 . 436.0) (410.0 . 436.0) (410.0 . 520.0) (0.0 . 520.0)))) . any))) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1) (set-alpha 1) (clear) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 35.0 67.0 400.0 67.0) (draw-line 35.0 6.0 400.0 6.0) (draw-line 35.0 6.0 35.0 67.0) (draw-line 400.0 6.0 400.0 67.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 35.0 65.0 35.0 69.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 63.90115480738306 66.0 63.90115480738306 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 88.33673302255687 66.0 88.33673302255687 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 109.50379366941256 66.0 109.50379366941256 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 128.17446436270671 66.0 128.17446436270671 68.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 144.87594841735313 65.0 144.87594841735313 69.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 254.75189683470623 66.0 254.75189683470623 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 319.02520639002984 66.0 319.02520639002984 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 364.62784525205933 66.0 364.62784525205933 68.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 400.0 65.0 400.0 69.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 33.0 67.0 37.0 67.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 33.0 36.5 37.0 36.5) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 33.0 6.0 37.0 6.0) (set-text-foreground (255 255 255 1.0)) (draw-text "1" 30.5 70.0 #t 0 0) (draw-text "1" 30.5 71.0 #t 0 0) (draw-text "1" 30.5 72.0 #t 0 0) (draw-text "1" 31.5 70.0 #t 0 0) (draw-text "1" 31.5 72.0 #t 0 0) (draw-text "1" 32.5 70.0 #t 0 0) (draw-text "1" 32.5 71.0 #t 0 0) (draw-text "1" 32.5 72.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "1" 31.5 71.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "2" 140.37594841735313 70.0 #t 0 0) (draw-text "2" 140.37594841735313 71.0 #t 0 0) (draw-text "2" 140.37594841735313 72.0 #t 0 0) (draw-text "2" 141.37594841735313 70.0 #t 0 0) (draw-text "2" 141.37594841735313 72.0 #t 0 0) (draw-text "2" 142.37594841735313 70.0 #t 0 0) (draw-text "2" 142.37594841735313 71.0 #t 0 0) (draw-text "2" 142.37594841735313 72.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "2" 141.37594841735313 71.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "10x" 389.5 70.0 #t 0 0) (draw-text "10x" 389.5 71.0 #t 0 0) (draw-text "10x" 389.5 72.0 #t 0 0) (draw-text "10x" 390.5 70.0 #t 0 0) (draw-text "10x" 390.5 72.0 #t 0 0) (draw-text "10x" 391.5 70.0 #t 0 0) (draw-text "10x" 391.5 71.0 #t 0 0) (draw-text "10x" 391.5 72.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "10x" 390.5 71.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "0" 23.0 60.0 #t 0 0) (draw-text "0" 23.0 61.0 #t 0 0) (draw-text "0" 23.0 62.0 #t 0 0) (draw-text "0" 24.0 60.0 #t 0 0) (draw-text "0" 24.0 62.0 #t 0 0) (draw-text "0" 25.0 60.0 #t 0 0) (draw-text "0" 25.0 61.0 #t 0 0) (draw-text "0" 25.0 62.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "0" 24.0 61.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "50" 17.0 29.5 #t 0 0) (draw-text "50" 17.0 30.5 #t 0 0) (draw-text "50" 17.0 31.5 #t 0 0) (draw-text "50" 18.0 29.5 #t 0 0) (draw-text "50" 18.0 31.5 #t 0 0) (draw-text "50" 19.0 29.5 #t 0 0) (draw-text "50" 19.0 30.5 #t 0 0) (draw-text "50" 19.0 31.5 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "50" 18.0 30.5 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "100%" -1.0 -1.0 #t 0 0) (draw-text "100%" -1.0 0.0 #t 0 0) (draw-text "100%" -1.0 1.0 #t 0 0) (draw-text "100%" 0.0 -1.0 #t 0 0) (draw-text "100%" 0.0 1.0 #t 0 0) (draw-text "100%" 1.0 -1.0 #t 0 0) (draw-text "100%" 1.0 0.0 #t 0 0) (draw-text "100%" 1.0 1.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "100%" 0.0 0.0 #t 0 0) (set-clipping-region (#t (((((34.5 . 441.5) (401.0 . 441.5) (401.0 . 504.0) (34.5 . 504.0)))) . any))) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 transparent round round #f)) (do-set-brush! ((227 232 255 1.0) solid #f #f #f)) (set-smoothing unsmoothed) (draw-polygon ((54.210526315789465 . 67.0) (73.42105263157893 . 67.0) (92.63157894736841 . 67.0) (111.8421052631579 . 67.0) (131.0526315789474 . 67.0) (150.26315789473682 . 67.0) (169.47368421052633 . 67.0) (188.68421052631575 . 67.0) (207.89473684210526 . 67.0) (227.10526315789474 . 67.0) (246.31578947368422 . 67.0) (265.52631578947364 . 67.0) (284.7368421052631 . 67.0) (303.94736842105266 . 67.0) (323.1578947368421 . 67.0) (342.3684210526315 . 67.0) (361.57894736842104 . 67.0) (380.7894736842105 . 67.0) (400.0 . 67.0) (400.0 . 6.0) (380.7894736842105 . 6.0) (361.57894736842104 . 6.0) (342.3684210526315 . 6.0) (323.1578947368421 . 6.0) (303.94736842105266 . 6.0) (293.25647726184496 . 22.70521763392857) (284.7368421052631 . 35.234130859375) (265.52631578947364 . 36.5) (246.31578947368422 . 36.5) (227.10526315789474 . 36.52978515625) (216.41437199868696 . 45.720633370535715) (207.89473684210526 . 52.61376953125) (197.2038456828975 . 60.83447265625) (188.68421052631575 . 67.0) (169.47368421052633 . 67.0) (150.26315789473682 . 67.0) (131.0526315789474 . 67.0) (111.8421052631579 . 67.0) (92.63157894736841 . 67.0) (73.42105263157893 . 67.0) (54.210526315789465 . 67.0) (35.0 . 67.0)) 0 0 winding) (set-smoothing smoothed) (do-set-pen! ((0 0 0 1.0) 1 transparent round round #f)) (do-set-pen! ((0 2 123 1.0) 0.1 solid round round #f)) (draw-lines ((400.0 . 6.0) (380.7894736842105 . 6.0) (361.57894736842104 . 6.0) (342.3684210526315 . 6.0) (323.1578947368421 . 6.0) (303.94736842105266 . 6.0) (293.25647726184496 . 22.70521763392857) (284.7368421052631 . 35.234130859375) (265.52631578947364 . 36.5) (246.31578947368422 . 36.5) (227.10526315789474 . 36.52978515625) (216.41437199868696 . 45.720633370535715) (207.89473684210526 . 52.61376953125) (197.2038456828975 . 60.83447265625) (188.68421052631575 . 67.0) (169.47368421052633 . 67.0) (150.26315789473682 . 67.0) (131.0526315789474 . 67.0) (111.8421052631579 . 67.0) (92.63157894736841 . 67.0) (73.42105263157893 . 67.0) (54.210526315789465 . 67.0) (35.0 . 67.0)) 0.0 0.0) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (set-alpha 1/2) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((35.0 . 67.0) (35.0 . 6.0)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 63.90115480738306 67.0 63.90115480738306 63.0) (draw-line 63.90115480738306 59.0 63.90115480738306 54.0) (draw-line 63.90115480738306 50.0 63.90115480738306 45.0) (draw-line 63.90115480738306 41.0 63.90115480738306 36.0) (draw-line 63.90115480738306 32.0 63.90115480738306 27.0) (draw-line 63.90115480738306 23.0 63.90115480738306 18.0) (draw-line 63.90115480738306 14.0 63.90115480738306 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 88.33673302255687 67.0 88.33673302255687 63.0) (draw-line 88.33673302255687 59.0 88.33673302255687 54.0) (draw-line 88.33673302255687 50.0 88.33673302255687 45.0) (draw-line 88.33673302255687 41.0 88.33673302255687 36.0) (draw-line 88.33673302255687 32.0 88.33673302255687 27.0) (draw-line 88.33673302255687 23.0 88.33673302255687 18.0) (draw-line 88.33673302255687 14.0 88.33673302255687 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 109.50379366941256 67.0 109.50379366941256 63.0) (draw-line 109.50379366941256 59.0 109.50379366941256 54.0) (draw-line 109.50379366941256 50.0 109.50379366941256 45.0) (draw-line 109.50379366941256 41.0 109.50379366941256 36.0) (draw-line 109.50379366941256 32.0 109.50379366941256 27.0) (draw-line 109.50379366941256 23.0 109.50379366941256 18.0) (draw-line 109.50379366941256 14.0 109.50379366941256 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 128.17446436270671 67.0 128.17446436270671 63.0) (draw-line 128.17446436270671 59.0 128.17446436270671 54.0) (draw-line 128.17446436270671 50.0 128.17446436270671 45.0) (draw-line 128.17446436270671 41.0 128.17446436270671 36.0) (draw-line 128.17446436270671 32.0 128.17446436270671 27.0) (draw-line 128.17446436270671 23.0 128.17446436270671 18.0) (draw-line 128.17446436270671 14.0 128.17446436270671 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((144.87594841735313 . 67.0) (144.87594841735313 . 6.0)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 254.75189683470623 67.0 254.75189683470623 63.0) (draw-line 254.75189683470623 59.0 254.75189683470623 54.0) (draw-line 254.75189683470623 50.0 254.75189683470623 45.0) (draw-line 254.75189683470623 41.0 254.75189683470623 36.0) (draw-line 254.75189683470623 32.0 254.75189683470623 27.0) (draw-line 254.75189683470623 23.0 254.75189683470623 18.0) (draw-line 254.75189683470623 14.0 254.75189683470623 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 319.02520639002984 67.0 319.02520639002984 63.0) (draw-line 319.02520639002984 59.0 319.02520639002984 54.0) (draw-line 319.02520639002984 50.0 319.02520639002984 45.0) (draw-line 319.02520639002984 41.0 319.02520639002984 36.0) (draw-line 319.02520639002984 32.0 319.02520639002984 27.0) (draw-line 319.02520639002984 23.0 319.02520639002984 18.0) (draw-line 319.02520639002984 14.0 319.02520639002984 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 364.62784525205933 67.0 364.62784525205933 63.0) (draw-line 364.62784525205933 59.0 364.62784525205933 54.0) (draw-line 364.62784525205933 50.0 364.62784525205933 45.0) (draw-line 364.62784525205933 41.0 364.62784525205933 36.0) (draw-line 364.62784525205933 32.0 364.62784525205933 27.0) (draw-line 364.62784525205933 23.0 364.62784525205933 18.0) (draw-line 364.62784525205933 14.0 364.62784525205933 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((400.0 . 67.0) (400.0 . 6.0)) 0.0 0.0) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (set-alpha 1/2) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((35.0 . 67.0) (400.0 . 67.0)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((35.0 . 36.5) (400.0 . 36.5)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((35.0 . 6.0) (400.0 . 6.0)) 0.0 0.0) (set-origin 0.0 436.0) (set-smoothing smoothed) (set-text-mode transparent) (set-clipping-region (#t (((((0.0 . 436.0) (410.0 . 436.0) (410.0 . 520.0) (0.0 . 520.0)))) . any))) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1) (set-origin 0.0 0.0) (set-smoothing unsmoothed) (set-text-mode transparent) (set-clipping-region #f) (set-font (12 #f default normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1.0) (set-font (12 "Liberation Serif" default normal bold #f default #t unaligned)) (draw-text "4,096 configurations" 293.3046875 424.0 #t 0 0) (set-font (12 #f default normal normal #f default #f aligned)) (set-font (12 "Liberation Serif" default normal bold #f default #t unaligned)) (draw-text "PythonFlow" 0.0 530.0 #t 0 0) (set-font (12 #f default normal normal #f default #f aligned)) (set-origin 0.0 542.0) (set-smoothing smoothed) (set-text-mode transparent) (set-clipping-region (#t (((((0.0 . 542.0) (410.0 . 542.0) (410.0 . 626.0) (0.0 . 626.0)))) . any))) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1) (set-origin 0.0 542.0) (set-smoothing smoothed) (set-text-mode transparent) (set-clipping-region (#t (((((0.0 . 542.0) (410.0 . 542.0) (410.0 . 626.0) (0.0 . 626.0)))) . any))) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1) (set-alpha 1) (clear) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 35.0 67.0 400.0 67.0) (draw-line 35.0 6.0 400.0 6.0) (draw-line 35.0 6.0 35.0 67.0) (draw-line 400.0 6.0 400.0 67.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 35.0 65.0 35.0 69.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 63.90115480738306 66.0 63.90115480738306 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 88.33673302255687 66.0 88.33673302255687 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 109.50379366941256 66.0 109.50379366941256 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 128.17446436270671 66.0 128.17446436270671 68.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 144.87594841735313 65.0 144.87594841735313 69.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 254.75189683470623 66.0 254.75189683470623 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 319.02520639002984 66.0 319.02520639002984 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 364.62784525205933 66.0 364.62784525205933 68.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 400.0 65.0 400.0 69.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 33.0 67.0 37.0 67.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 33.0 36.5 37.0 36.5) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 33.0 6.0 37.0 6.0) (set-text-foreground (255 255 255 1.0)) (draw-text "1" 30.5 70.0 #t 0 0) (draw-text "1" 30.5 71.0 #t 0 0) (draw-text "1" 30.5 72.0 #t 0 0) (draw-text "1" 31.5 70.0 #t 0 0) (draw-text "1" 31.5 72.0 #t 0 0) (draw-text "1" 32.5 70.0 #t 0 0) (draw-text "1" 32.5 71.0 #t 0 0) (draw-text "1" 32.5 72.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "1" 31.5 71.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "2" 140.37594841735313 70.0 #t 0 0) (draw-text "2" 140.37594841735313 71.0 #t 0 0) (draw-text "2" 140.37594841735313 72.0 #t 0 0) (draw-text "2" 141.37594841735313 70.0 #t 0 0) (draw-text "2" 141.37594841735313 72.0 #t 0 0) (draw-text "2" 142.37594841735313 70.0 #t 0 0) (draw-text "2" 142.37594841735313 71.0 #t 0 0) (draw-text "2" 142.37594841735313 72.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "2" 141.37594841735313 71.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "10x" 389.5 70.0 #t 0 0) (draw-text "10x" 389.5 71.0 #t 0 0) (draw-text "10x" 389.5 72.0 #t 0 0) (draw-text "10x" 390.5 70.0 #t 0 0) (draw-text "10x" 390.5 72.0 #t 0 0) (draw-text "10x" 391.5 70.0 #t 0 0) (draw-text "10x" 391.5 71.0 #t 0 0) (draw-text "10x" 391.5 72.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "10x" 390.5 71.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "0" 23.0 60.0 #t 0 0) (draw-text "0" 23.0 61.0 #t 0 0) (draw-text "0" 23.0 62.0 #t 0 0) (draw-text "0" 24.0 60.0 #t 0 0) (draw-text "0" 24.0 62.0 #t 0 0) (draw-text "0" 25.0 60.0 #t 0 0) (draw-text "0" 25.0 61.0 #t 0 0) (draw-text "0" 25.0 62.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "0" 24.0 61.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "50" 17.0 29.5 #t 0 0) (draw-text "50" 17.0 30.5 #t 0 0) (draw-text "50" 17.0 31.5 #t 0 0) (draw-text "50" 18.0 29.5 #t 0 0) (draw-text "50" 18.0 31.5 #t 0 0) (draw-text "50" 19.0 29.5 #t 0 0) (draw-text "50" 19.0 30.5 #t 0 0) (draw-text "50" 19.0 31.5 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "50" 18.0 30.5 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "100%" -1.0 -1.0 #t 0 0) (draw-text "100%" -1.0 0.0 #t 0 0) (draw-text "100%" -1.0 1.0 #t 0 0) (draw-text "100%" 0.0 -1.0 #t 0 0) (draw-text "100%" 0.0 1.0 #t 0 0) (draw-text "100%" 1.0 -1.0 #t 0 0) (draw-text "100%" 1.0 0.0 #t 0 0) (draw-text "100%" 1.0 1.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "100%" 0.0 0.0 #t 0 0) (set-clipping-region (#t (((((34.5 . 547.5) (401.0 . 547.5) (401.0 . 610.0) (34.5 . 610.0)))) . any))) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 transparent round round #f)) (do-set-brush! ((227 232 255 1.0) solid #f #f #f)) (set-smoothing unsmoothed) (draw-polygon ((54.210526315789465 . 67.0) (73.42105263157893 . 67.0) (92.63157894736841 . 67.0) (111.8421052631579 . 67.0) (131.0526315789474 . 67.0) (150.26315789473682 . 67.0) (169.47368421052633 . 67.0) (188.68421052631575 . 67.0) (207.89473684210526 . 67.0) (227.10526315789474 . 67.0) (246.31578947368422 . 67.0) (265.52631578947364 . 67.0) (284.7368421052631 . 67.0) (303.94736842105266 . 67.0) (323.1578947368421 . 67.0) (342.3684210526315 . 67.0) (361.57894736842104 . 67.0) (380.7894736842105 . 67.0) (400.0 . 67.0) (400.0 . 6.0) (380.7894736842105 . 6.0) (361.57894736842104 . 6.0) (342.3684210526315 . 9.8125) (323.1578947368421 . 17.4375) (303.94736842105266 . 21.25) (284.7368421052631 . 21.25) (265.52631578947364 . 21.25) (246.31578947368422 . 25.0625) (227.10526315789474 . 28.875) (216.41437199868696 . 37.59779575892857) (207.89473684210526 . 44.139892578125) (197.2038456828975 . 52.42867606026786) (188.68421052631575 . 58.645263671875) (169.47368421052633 . 67.0) (150.26315789473682 . 67.0) (131.0526315789474 . 67.0) (111.8421052631579 . 67.0) (92.63157894736841 . 67.0) (73.42105263157893 . 67.0) (54.210526315789465 . 67.0) (35.0 . 67.0)) 0 0 winding) (set-smoothing smoothed) (do-set-pen! ((0 0 0 1.0) 1 transparent round round #f)) (do-set-pen! ((0 2 123 1.0) 0.1 solid round round #f)) (draw-lines ((400.0 . 6.0) (380.7894736842105 . 6.0) (361.57894736842104 . 6.0) (342.3684210526315 . 9.8125) (323.1578947368421 . 17.4375) (303.94736842105266 . 21.25) (284.7368421052631 . 21.25) (265.52631578947364 . 21.25) (246.31578947368422 . 25.0625) (227.10526315789474 . 28.875) (216.41437199868696 . 37.59779575892857) (207.89473684210526 . 44.139892578125) (197.2038456828975 . 52.42867606026786) (188.68421052631575 . 58.645263671875) (169.47368421052633 . 67.0) (150.26315789473682 . 67.0) (131.0526315789474 . 67.0) (111.8421052631579 . 67.0) (92.63157894736841 . 67.0) (73.42105263157893 . 67.0) (54.210526315789465 . 67.0) (35.0 . 67.0)) 0.0 0.0) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (set-alpha 1/2) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((35.0 . 67.0) (35.0 . 6.0)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 63.90115480738306 67.0 63.90115480738306 63.0) (draw-line 63.90115480738306 59.0 63.90115480738306 54.0) (draw-line 63.90115480738306 50.0 63.90115480738306 45.0) (draw-line 63.90115480738306 41.0 63.90115480738306 36.0) (draw-line 63.90115480738306 32.0 63.90115480738306 27.0) (draw-line 63.90115480738306 23.0 63.90115480738306 18.0) (draw-line 63.90115480738306 14.0 63.90115480738306 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 88.33673302255687 67.0 88.33673302255687 63.0) (draw-line 88.33673302255687 59.0 88.33673302255687 54.0) (draw-line 88.33673302255687 50.0 88.33673302255687 45.0) (draw-line 88.33673302255687 41.0 88.33673302255687 36.0) (draw-line 88.33673302255687 32.0 88.33673302255687 27.0) (draw-line 88.33673302255687 23.0 88.33673302255687 18.0) (draw-line 88.33673302255687 14.0 88.33673302255687 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 109.50379366941256 67.0 109.50379366941256 63.0) (draw-line 109.50379366941256 59.0 109.50379366941256 54.0) (draw-line 109.50379366941256 50.0 109.50379366941256 45.0) (draw-line 109.50379366941256 41.0 109.50379366941256 36.0) (draw-line 109.50379366941256 32.0 109.50379366941256 27.0) (draw-line 109.50379366941256 23.0 109.50379366941256 18.0) (draw-line 109.50379366941256 14.0 109.50379366941256 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 128.17446436270671 67.0 128.17446436270671 63.0) (draw-line 128.17446436270671 59.0 128.17446436270671 54.0) (draw-line 128.17446436270671 50.0 128.17446436270671 45.0) (draw-line 128.17446436270671 41.0 128.17446436270671 36.0) (draw-line 128.17446436270671 32.0 128.17446436270671 27.0) (draw-line 128.17446436270671 23.0 128.17446436270671 18.0) (draw-line 128.17446436270671 14.0 128.17446436270671 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((144.87594841735313 . 67.0) (144.87594841735313 . 6.0)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 254.75189683470623 67.0 254.75189683470623 63.0) (draw-line 254.75189683470623 59.0 254.75189683470623 54.0) (draw-line 254.75189683470623 50.0 254.75189683470623 45.0) (draw-line 254.75189683470623 41.0 254.75189683470623 36.0) (draw-line 254.75189683470623 32.0 254.75189683470623 27.0) (draw-line 254.75189683470623 23.0 254.75189683470623 18.0) (draw-line 254.75189683470623 14.0 254.75189683470623 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 319.02520639002984 67.0 319.02520639002984 63.0) (draw-line 319.02520639002984 59.0 319.02520639002984 54.0) (draw-line 319.02520639002984 50.0 319.02520639002984 45.0) (draw-line 319.02520639002984 41.0 319.02520639002984 36.0) (draw-line 319.02520639002984 32.0 319.02520639002984 27.0) (draw-line 319.02520639002984 23.0 319.02520639002984 18.0) (draw-line 319.02520639002984 14.0 319.02520639002984 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 364.62784525205933 67.0 364.62784525205933 63.0) (draw-line 364.62784525205933 59.0 364.62784525205933 54.0) (draw-line 364.62784525205933 50.0 364.62784525205933 45.0) (draw-line 364.62784525205933 41.0 364.62784525205933 36.0) (draw-line 364.62784525205933 32.0 364.62784525205933 27.0) (draw-line 364.62784525205933 23.0 364.62784525205933 18.0) (draw-line 364.62784525205933 14.0 364.62784525205933 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((400.0 . 67.0) (400.0 . 6.0)) 0.0 0.0) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (set-alpha 1/2) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((35.0 . 67.0) (400.0 . 67.0)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((35.0 . 36.5) (400.0 . 36.5)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((35.0 . 6.0) (400.0 . 6.0)) 0.0 0.0) (set-origin 0.0 542.0) (set-smoothing smoothed) (set-text-mode transparent) (set-clipping-region (#t (((((0.0 . 542.0) (410.0 . 542.0) (410.0 . 626.0) (0.0 . 626.0)))) . any))) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1) (set-origin 0.0 0.0) (set-smoothing unsmoothed) (set-text-mode transparent) (set-clipping-region #f) (set-font (12 #f default normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1.0) (set-font (12 "Liberation Serif" default normal bold #f default #t unaligned)) (draw-text "4,096 configurations" 293.3046875 530.0 #t 0 0) (set-font (12 #f default normal normal #f default #f aligned)) (set-font (12 "Liberation Serif" default normal bold #f default #t unaligned)) (draw-text "pystone" 0.0 636.0 #t 0 0) (set-font (12 #f default normal normal #f default #f aligned)) (set-origin 0.0 648.0) (set-smoothing smoothed) (set-text-mode transparent) (set-clipping-region (#t (((((0.0 . 648.0) (410.0 . 648.0) (410.0 . 732.0) (0.0 . 732.0)))) . any))) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1) (set-origin 0.0 648.0) (set-smoothing smoothed) (set-text-mode transparent) (set-clipping-region (#t (((((0.0 . 648.0) (410.0 . 648.0) (410.0 . 732.0) (0.0 . 732.0)))) . any))) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1) (set-alpha 1) (clear) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 35.0 67.0 400.0 67.0) (draw-line 35.0 6.0 400.0 6.0) (draw-line 35.0 6.0 35.0 67.0) (draw-line 400.0 6.0 400.0 67.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 35.0 65.0 35.0 69.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 63.90115480738306 66.0 63.90115480738306 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 88.33673302255687 66.0 88.33673302255687 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 109.50379366941256 66.0 109.50379366941256 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 128.17446436270671 66.0 128.17446436270671 68.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 144.87594841735313 65.0 144.87594841735313 69.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 254.75189683470623 66.0 254.75189683470623 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 319.02520639002984 66.0 319.02520639002984 68.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 364.62784525205933 66.0 364.62784525205933 68.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 400.0 65.0 400.0 69.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 33.0 67.0 37.0 67.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 33.0 36.5 37.0 36.5) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 33.0 6.0 37.0 6.0) (set-text-foreground (255 255 255 1.0)) (draw-text "1" 30.5 70.0 #t 0 0) (draw-text "1" 30.5 71.0 #t 0 0) (draw-text "1" 30.5 72.0 #t 0 0) (draw-text "1" 31.5 70.0 #t 0 0) (draw-text "1" 31.5 72.0 #t 0 0) (draw-text "1" 32.5 70.0 #t 0 0) (draw-text "1" 32.5 71.0 #t 0 0) (draw-text "1" 32.5 72.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "1" 31.5 71.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "2" 140.37594841735313 70.0 #t 0 0) (draw-text "2" 140.37594841735313 71.0 #t 0 0) (draw-text "2" 140.37594841735313 72.0 #t 0 0) (draw-text "2" 141.37594841735313 70.0 #t 0 0) (draw-text "2" 141.37594841735313 72.0 #t 0 0) (draw-text "2" 142.37594841735313 70.0 #t 0 0) (draw-text "2" 142.37594841735313 71.0 #t 0 0) (draw-text "2" 142.37594841735313 72.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "2" 141.37594841735313 71.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "10x" 389.5 70.0 #t 0 0) (draw-text "10x" 389.5 71.0 #t 0 0) (draw-text "10x" 389.5 72.0 #t 0 0) (draw-text "10x" 390.5 70.0 #t 0 0) (draw-text "10x" 390.5 72.0 #t 0 0) (draw-text "10x" 391.5 70.0 #t 0 0) (draw-text "10x" 391.5 71.0 #t 0 0) (draw-text "10x" 391.5 72.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "10x" 390.5 71.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "0" 23.0 60.0 #t 0 0) (draw-text "0" 23.0 61.0 #t 0 0) (draw-text "0" 23.0 62.0 #t 0 0) (draw-text "0" 24.0 60.0 #t 0 0) (draw-text "0" 24.0 62.0 #t 0 0) (draw-text "0" 25.0 60.0 #t 0 0) (draw-text "0" 25.0 61.0 #t 0 0) (draw-text "0" 25.0 62.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "0" 24.0 61.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "50" 17.0 29.5 #t 0 0) (draw-text "50" 17.0 30.5 #t 0 0) (draw-text "50" 17.0 31.5 #t 0 0) (draw-text "50" 18.0 29.5 #t 0 0) (draw-text "50" 18.0 31.5 #t 0 0) (draw-text "50" 19.0 29.5 #t 0 0) (draw-text "50" 19.0 30.5 #t 0 0) (draw-text "50" 19.0 31.5 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "50" 18.0 30.5 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "100%" -1.0 -1.0 #t 0 0) (draw-text "100%" -1.0 0.0 #t 0 0) (draw-text "100%" -1.0 1.0 #t 0 0) (draw-text "100%" 0.0 -1.0 #t 0 0) (draw-text "100%" 0.0 1.0 #t 0 0) (draw-text "100%" 1.0 -1.0 #t 0 0) (draw-text "100%" 1.0 0.0 #t 0 0) (draw-text "100%" 1.0 1.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "100%" 0.0 0.0 #t 0 0) (set-clipping-region (#t (((((34.5 . 653.5) (401.0 . 653.5) (401.0 . 716.0) (34.5 . 716.0)))) . any))) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 transparent round round #f)) (do-set-brush! ((227 232 255 1.0) solid #f #f #f)) (set-smoothing unsmoothed) (draw-polygon ((54.210526315789465 . 67.0) (73.42105263157893 . 67.0) (92.63157894736841 . 67.0) (111.8421052631579 . 67.0) (131.0526315789474 . 67.0) (150.26315789473682 . 67.0) (169.47368421052633 . 67.0) (188.68421052631575 . 67.0) (207.89473684210526 . 67.0) (227.10526315789474 . 67.0) (246.31578947368422 . 67.0) (265.52631578947364 . 67.0) (284.7368421052631 . 67.0) (303.94736842105266 . 67.0) (323.1578947368421 . 67.0) (342.3684210526315 . 67.0) (361.57894736842104 . 67.0) (380.7894736842105 . 67.0) (400.0 . 67.0) (400.0 . 6.0) (380.7894736842105 . 6.0) (361.57894736842104 . 6.0) (342.3684210526315 . 6.0) (323.1578947368421 . 6.0) (303.94736842105266 . 6.0) (284.7368421052631 . 6.0) (265.52631578947364 . 6.0) (246.31578947368422 . 6.0) (227.10526315789474 . 6.0) (207.89473684210526 . 6.0) (188.68421052631575 . 7.98443603515625) (177.99331936710803 . 15.30732945033482) (169.47368421052633 . 20.79949951171875) (158.78279305131858 . 32.66462925502232) (150.26315789473682 . 41.5634765625) (139.57226673552913 . 50.633056640625) (131.0526315789474 . 57.43524169921875) (111.8421052631579 . 64.36029052734375) (92.63157894736841 . 66.8287353515625) (73.42105263157893 . 67.0) (54.210526315789465 . 67.0) (35.0 . 67.0)) 0 0 winding) (set-smoothing smoothed) (do-set-pen! ((0 0 0 1.0) 1 transparent round round #f)) (do-set-pen! ((0 2 123 1.0) 0.1 solid round round #f)) (draw-lines ((400.0 . 6.0) (380.7894736842105 . 6.0) (361.57894736842104 . 6.0) (342.3684210526315 . 6.0) (323.1578947368421 . 6.0) (303.94736842105266 . 6.0) (284.7368421052631 . 6.0) (265.52631578947364 . 6.0) (246.31578947368422 . 6.0) (227.10526315789474 . 6.0) (207.89473684210526 . 6.0) (188.68421052631575 . 7.98443603515625) (177.99331936710803 . 15.30732945033482) (169.47368421052633 . 20.79949951171875) (158.78279305131858 . 32.66462925502232) (150.26315789473682 . 41.5634765625) (139.57226673552913 . 50.633056640625) (131.0526315789474 . 57.43524169921875) (111.8421052631579 . 64.36029052734375) (92.63157894736841 . 66.8287353515625) (73.42105263157893 . 67.0) (54.210526315789465 . 67.0) (35.0 . 67.0)) 0.0 0.0) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (set-alpha 1/2) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((35.0 . 67.0) (35.0 . 6.0)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 63.90115480738306 67.0 63.90115480738306 63.0) (draw-line 63.90115480738306 59.0 63.90115480738306 54.0) (draw-line 63.90115480738306 50.0 63.90115480738306 45.0) (draw-line 63.90115480738306 41.0 63.90115480738306 36.0) (draw-line 63.90115480738306 32.0 63.90115480738306 27.0) (draw-line 63.90115480738306 23.0 63.90115480738306 18.0) (draw-line 63.90115480738306 14.0 63.90115480738306 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 88.33673302255687 67.0 88.33673302255687 63.0) (draw-line 88.33673302255687 59.0 88.33673302255687 54.0) (draw-line 88.33673302255687 50.0 88.33673302255687 45.0) (draw-line 88.33673302255687 41.0 88.33673302255687 36.0) (draw-line 88.33673302255687 32.0 88.33673302255687 27.0) (draw-line 88.33673302255687 23.0 88.33673302255687 18.0) (draw-line 88.33673302255687 14.0 88.33673302255687 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 109.50379366941256 67.0 109.50379366941256 63.0) (draw-line 109.50379366941256 59.0 109.50379366941256 54.0) (draw-line 109.50379366941256 50.0 109.50379366941256 45.0) (draw-line 109.50379366941256 41.0 109.50379366941256 36.0) (draw-line 109.50379366941256 32.0 109.50379366941256 27.0) (draw-line 109.50379366941256 23.0 109.50379366941256 18.0) (draw-line 109.50379366941256 14.0 109.50379366941256 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 128.17446436270671 67.0 128.17446436270671 63.0) (draw-line 128.17446436270671 59.0 128.17446436270671 54.0) (draw-line 128.17446436270671 50.0 128.17446436270671 45.0) (draw-line 128.17446436270671 41.0 128.17446436270671 36.0) (draw-line 128.17446436270671 32.0 128.17446436270671 27.0) (draw-line 128.17446436270671 23.0 128.17446436270671 18.0) (draw-line 128.17446436270671 14.0 128.17446436270671 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((144.87594841735313 . 67.0) (144.87594841735313 . 6.0)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 254.75189683470623 67.0 254.75189683470623 63.0) (draw-line 254.75189683470623 59.0 254.75189683470623 54.0) (draw-line 254.75189683470623 50.0 254.75189683470623 45.0) (draw-line 254.75189683470623 41.0 254.75189683470623 36.0) (draw-line 254.75189683470623 32.0 254.75189683470623 27.0) (draw-line 254.75189683470623 23.0 254.75189683470623 18.0) (draw-line 254.75189683470623 14.0 254.75189683470623 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 319.02520639002984 67.0 319.02520639002984 63.0) (draw-line 319.02520639002984 59.0 319.02520639002984 54.0) (draw-line 319.02520639002984 50.0 319.02520639002984 45.0) (draw-line 319.02520639002984 41.0 319.02520639002984 36.0) (draw-line 319.02520639002984 32.0 319.02520639002984 27.0) (draw-line 319.02520639002984 23.0 319.02520639002984 18.0) (draw-line 319.02520639002984 14.0 319.02520639002984 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 364.62784525205933 67.0 364.62784525205933 63.0) (draw-line 364.62784525205933 59.0 364.62784525205933 54.0) (draw-line 364.62784525205933 50.0 364.62784525205933 45.0) (draw-line 364.62784525205933 41.0 364.62784525205933 36.0) (draw-line 364.62784525205933 32.0 364.62784525205933 27.0) (draw-line 364.62784525205933 23.0 364.62784525205933 18.0) (draw-line 364.62784525205933 14.0 364.62784525205933 9.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((400.0 . 67.0) (400.0 . 6.0)) 0.0 0.0) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (set-alpha 1/2) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((35.0 . 67.0) (400.0 . 67.0)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((35.0 . 36.5) (400.0 . 36.5)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((35.0 . 6.0) (400.0 . 6.0)) 0.0 0.0) (set-origin 0.0 648.0) (set-smoothing smoothed) (set-text-mode transparent) (set-clipping-region (#t (((((0.0 . 648.0) (410.0 . 648.0) (410.0 . 732.0) (0.0 . 732.0)))) . any))) (set-font (12 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1) (set-origin 0.0 0.0) (set-smoothing unsmoothed) (set-text-mode transparent) (set-clipping-region #f) (set-font (12 #f default normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1.0) (set-font (12 "Liberation Serif" default normal bold #f default #t unaligned)) (draw-text "16,384 configurations" 286.630859375 636.0 #t 0 0) (set-font (12 #f default normal normal #f default #f aligned))) 410.0 732.0 9.240234375 0.0))
| false |
6333433144296ba662c694ff5bc4649f92e3056a | 25a6efe766d07c52c1994585af7d7f347553bf54 | /gui-lib/mred/private/wx/cocoa/list-box.rkt | dcaa637dbc302943aee5784c12c8b846c818e57b | [
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | racket/gui | 520ff8f4ae5704210822204aa7cd4b74dd4f3eef | d01d166149787e2d94176d3046764b35c7c0a876 | refs/heads/master | 2023-08-25T15:24:17.693905 | 2023-08-10T16:45:35 | 2023-08-10T16:45:35 | 27,413,435 | 72 | 96 | NOASSERTION | 2023-09-14T17:09:52 | 2014-12-02T03:35:22 | Racket | UTF-8 | Racket | false | false | 14,410 | rkt | list-box.rkt | #lang racket/base
(require ffi/unsafe/objc
ffi/unsafe
racket/class
(only-in racket/list take drop)
"../../syntax.rkt"
"../../lock.rkt"
"item.rkt"
"utils.rkt"
"types.rkt"
"const.rkt"
"window.rkt"
"font.rkt"
"../common/event.rkt")
(provide
(protect-out list-box%))
;; ----------------------------------------
(import-class NSScrollView NSTableView NSTableColumn NSCell NSIndexSet NSFont)
(import-protocol NSTableViewDataSource)
(define NSLineBreakByTruncatingTail 4)
(define during-selection-set? (make-parameter #f))
;; 11.0 and up:
(define NSTableViewStyleAutomatic 0)
(define NSTableViewStyleFullWidth 1)
(define NSTableViewStyleInset 2)
(define NSTableViewStyleSourceList 3)
(define NSTableViewStylePlain 4)
(define default-cell-font
(and (version-11.0-or-later?)
(atomically
(let ([f (tell NSFont controlContentFontOfSize: #:type _CGFloat 0.0)])
(tellv f retain)
f))))
(define-objc-class RacketTableView NSTableView
#:mixins (FocusResponder KeyMouseResponder CursorDisplayer)
[wxb]
[-a _void (doubleClicked: [_id sender])
(queue-window*-event wxb (lambda (wx) (send wx clicked 'list-box-dclick)))]
[-a _void (tableViewSelectionDidChange: [_id aNotification])
(unless (during-selection-set?)
(queue-window*-event wxb (lambda (wx) (send wx clicked 'list-box))))]
[-a _void (tableView: [_id view] didClickTableColumn: [_id col])
(queue-window*-event wxb (lambda (wx) (send wx clicked-column col)))]
[-a _void (tableViewColumnDidMove: [_id view])
(let ([wx (->wx wxb)])
(when wx (send wx reset-column-order)))])
(define-objc-class RacketDataSource NSObject
#:protocols (NSTableViewDataSource)
[wxb]
[-a _NSInteger (numberOfRowsInTableView: [_id view])
(let ([wx (->wx wxb)])
(send wx number))]
[-a _id (tableView: [_id aTableView]
objectValueForTableColumn: [_id aTableColumn]
row: [_NSInteger rowIndex])
(define wx (->wx wxb))
(define text (if wx (send wx get-cell aTableColumn rowIndex) "???"))
(define cell (tell (tell NSCell alloc) initTextCell: #:type _NSString text))
(define font (and wx (send wx get-cell-font)))
(tellv cell setLineBreakMode: #:type _NSUInteger NSLineBreakByTruncatingTail)
(when font (tellv cell setFont: font))
(tell cell autorelease)])
(define (remove-nth data i)
(cond
[(zero? i) (cdr data)]
[else (cons (car data) (remove-nth (cdr data) (sub1 i)))]))
(defclass list-box% item%
(init parent cb
label kind x y w h
choices style
font label-font
columns column-order)
(inherit set-size init-font
register-as-child)
(define source (as-objc-allocation
(tell (tell RacketDataSource alloc) init)))
(set-ivar! source wxb (->wxb this))
(define itemss (cons choices
(for/list ([i (in-list (cdr columns))])
(for/list ([i choices])
""))))
(define num-columns (length columns))
(define data (map (lambda (x) (box #f)) choices))
(define count (length choices))
(define cocoa (as-objc-allocation
(tell (tell NSScrollView alloc) init)))
(define-values (content-cocoa column-cocoas)
(let ([content-cocoa
(as-objc-allocation
(tell (tell RacketTableView alloc) init))])
(tellv content-cocoa setDelegate: content-cocoa)
(tellv content-cocoa setDataSource: source)
(define cols
(for/list ([title (in-list columns)])
(let ([col (as-objc-allocation
(tell (tell NSTableColumn alloc) initWithIdentifier: #:type _NSString title))])
(tellv content-cocoa addTableColumn: col)
(tellv (tell col headerCell) setStringValue: #:type _NSString title)
col)))
(init-font content-cocoa font)
(when (version-11.0-or-later?)
(tellv content-cocoa setStyle: #:type _NSInteger NSTableViewStyleFullWidth)
(tellv content-cocoa setIntercellSpacing: #:type _NSSize (make-NSSize 1.0 1.0)))
(values content-cocoa cols)))
(set-ivar! content-cocoa wxb (->wxb this))
(tellv cocoa setDocumentView: content-cocoa)
(tellv cocoa setHasVerticalScroller: #:type _BOOL #t)
(tellv cocoa setHasHorizontalScroller: #:type _BOOL #t)
(unless (memq 'column-headers style)
(tellv content-cocoa setHeaderView: #f))
(define allow-multi? (not (eq? kind 'single)))
(when allow-multi?
(tellv content-cocoa setAllowsMultipleSelection: #:type _BOOL #t))
(unless (memq 'reorderable-headers style)
(tellv content-cocoa setAllowsColumnReordering: #:type _BOOL #f))
(when column-order
(set-column-order column-order))
(define/public (set-column-order column-order)
(atomically
(for ([c (in-list column-cocoas)])
(tellv c retain)
(tellv content-cocoa removeTableColumn: c))
(for ([pos (in-list column-order)])
(let ([c (list-ref column-cocoas pos)])
(tellv content-cocoa addTableColumn: c)
(tellv c release)))
(reset-column-order)))
(define/public (set-column-label i s)
(let ([col (list-ref column-cocoas i)])
(tellv (tell col headerCell) setStringValue: #:type _NSString s)
(reset)))
(define/public (set-column-size i w min-w max-w)
(let ([col (list-ref column-cocoas i)])
(tellv col setMinWidth: #:type _CGFloat min-w)
(tellv col setMaxWidth: #:type _CGFloat max-w)
(tellv col setWidth: #:type _CGFloat w)))
(define/public (get-column-size i)
(let ([col (list-ref column-cocoas i)]
[int (lambda (v) (inexact->exact (round v)))])
(values
(int (tell #:type _CGFloat col width))
(int (tell #:type _CGFloat col minWidth))
(min 10000 (int (tell #:type _CGFloat col maxWidth))))))
(define/override (get-cocoa-content) content-cocoa)
(define/override (get-cocoa-control) content-cocoa)
(super-new [parent parent]
[cocoa cocoa]
[no-show? (memq 'deleted style)]
[callback cb])
(set-size 0 0 32 50)
; (tellv content-cocoa sizeToFit)
(tellv content-cocoa setTarget: content-cocoa)
(tellv content-cocoa setDoubleAction: #:type _SEL (selector doubleClicked:))
(def/public-unimplemented get-label-font)
(define cell-font (or (and font (font->NSFont font))
default-cell-font))
(when cell-font
(tellv content-cocoa setRowHeight: #:type _CGFloat
(+ (tell #:type _CGFloat cell-font defaultLineHeightForFont) 2)))
(define/public (get-cell-font)
cell-font)
(define/public (get-selection)
(if allow-multi?
(let ([l (get-selections)])
(if (null? l)
-1
(car l)))
(tell #:type _NSInteger content-cocoa selectedRow)))
(define/public (get-selections)
(atomically
(with-autorelease
(let ([v (tell content-cocoa selectedRowIndexes)])
(begin0
(let loop ([i (tell #:type _NSInteger v firstIndex)])
(cond
[(= i NSNotFound) null]
[else (cons i (loop (tell #:type _NSInteger v
indexGreaterThanIndex: #:type _NSInteger i)))])))))))
(define/private (header-height)
(let ([hv (tell content-cocoa headerView)])
(if hv
(NSSize-height (NSRect-size (tell #:type _NSRect hv frame)))
0)))
(define/public (number-of-visible-items)
(define doc (tell #:type _NSRect cocoa documentVisibleRect))
(define h (+ (tell #:type _CGFloat content-cocoa rowHeight)
(NSSize-height (tell #:type _NSSize content-cocoa intercellSpacing))))
(define doc-h (- (NSSize-height (NSRect-size doc))
(header-height)))
(define n (floor (/ doc-h h)))
(if (rational? n)
(max 1 (inexact->exact n))
1))
(define/public (get-first-item)
(define doc (tell #:type _NSRect cocoa documentVisibleRect))
(define h (header-height))
(NSRange-location (tell #:type _NSRange content-cocoa
rowsInRect: #:type _NSRect
(if (zero? h)
doc
(make-NSRect (NSRect-origin doc)
(make-NSSize (NSSize-width (NSRect-size doc))
(- (NSSize-height (NSRect-size doc)) h)))))))
(define/public (set-first-visible-item i)
(define num-vis (number-of-visible-items))
(define start (max 0 (min i (- count num-vis))))
(tellv content-cocoa scrollRowToVisible: #:type _NSInteger start)
(tellv content-cocoa scrollRowToVisible: #:type _NSInteger (+ start (sub1 num-vis))))
(define/private (replace items i s)
(append (take items i)
(list s)
(drop items (add1 i))))
(define/public (set-string i s [col 0])
(let ([new-itemss (replace
itemss
col
(replace (list-ref itemss col)
i
s))])
(set! itemss new-itemss))
(reset))
(define/public (number)
;; Can be called by event-handling thread
count)
(define/public (get-cell col n)
;; Can be called by event-handling thread
(let ([col (if (number? col)
(order->number col)
(col->number col))])
(if (col . > . num-columns) ; can happen as column is deleted
""
(list-ref (list-ref itemss col) n))))
(define/private (col->number col)
(let loop ([l column-cocoas] [pos 0])
(cond
[(null? l) #f]
[(ptr-equal? (car l) col) pos]
[else (loop (cdr l) (add1 pos))])))
;; When columns are rearranged, we have to be able to map
;; from current column numbers to original column numbers
(define order-vector #f)
(define/private (order->number col)
(prep-order-vector)
(vector-ref order-vector col))
(define/private (prep-order-vector)
(unless order-vector
(let ([vec (make-vector (length column-cocoas))])
(let ([array (tell content-cocoa tableColumns)])
(for/list ([i (in-range (tell #:type _NSUInteger array count))])
(let ([col (tell array objectAtIndex: #:type _NSUInteger i)])
(vector-set! vec i (col->number col)))))
(set! order-vector vec))))
(define/public (reset-column-order)
(set! order-vector #f))
(define/public (get-column-order)
(prep-order-vector)
(vector->list order-vector))
(define/public (append-column title)
(atomically
(let ([col (as-objc-allocation
(tell (tell NSTableColumn alloc) initWithIdentifier: #:type _NSString title))])
(tellv content-cocoa addTableColumn: col)
(tellv (tell col headerCell) setStringValue: #:type _NSString title)
(set! column-cocoas (append column-cocoas (list col)))
(set! itemss (append itemss
(list (for/list ([i (in-list (car itemss))])
""))))
(set! num-columns (add1 num-columns))
(reset-column-order)))
(reset))
(define/public (delete-column i)
(atomically
(let ([c (list-ref column-cocoas i)])
(define (drop-nth l i)
(cond
[(zero? i) (cdr l)]
[else (cons (car l) (drop-nth (cdr l) (sub1 i)))]))
(set! num-columns (sub1 num-columns))
(tellv content-cocoa removeTableColumn: c)
(set! column-cocoas (drop-nth column-cocoas i))
(set! itemss (drop-nth itemss i))
(reset-column-order)))
(reset))
(define callback cb)
(define/public (clicked event-type)
(unless (zero? count)
(callback this (new control-event%
[event-type event-type]
[time-stamp (current-milliseconds)]))))
(define can-click-column? (memq 'clickable-headers style))
(define/public (clicked-column col)
(when can-click-column?
(let ([pos (col->number col)])
(callback this (new column-control-event%
[event-type 'list-box-column]
[time-stamp (current-milliseconds)]
[column pos])))))
(define/public (set-data i v) (set-box! (list-ref data i) v))
(define/public (get-data i) (unbox (list-ref data i)))
(define/public (selected? i)
(tell #:type _BOOL content-cocoa isRowSelected: #:type _NSInteger i))
(define/public (select i [on? #t] [extend? #t])
(parameterize ([during-selection-set? #t])
(if on?
(atomically
(with-autorelease
(let ([index (tell (tell NSIndexSet alloc) initWithIndex: #:type _NSUInteger i)])
(tellv content-cocoa
selectRowIndexes: index
byExtendingSelection: #:type _BOOL (and extend? allow-multi?)))))
(tellv content-cocoa deselectRow: #:type _NSInteger i))))
(define/public (set-selection i)
(select i #t #f))
(define/public (delete i)
(atomically
(set! count (sub1 count))
(set! itemss (for/list ([items (in-list itemss)])
(remove-nth items i)))
(set! data (remove-nth data i)))
(reset))
(define/public (clear)
(atomically
(set! count 0)
(set! itemss (for/list ([items (in-list itemss)])
null))
(set! data null))
(reset))
(define/public (set choices . more-choices)
(atomically
(set! itemss (cons choices more-choices))
(set! data (map (lambda (x) (box #f)) choices))
(set! count (length choices)))
(reset))
(public [append* append])
(define (append* s [v #f])
(atomically
(set! count (add1 count))
(set! itemss (cons (append (car itemss) (list s))
(for/list ([items (in-list (cdr itemss))])
(append items (list "")))))
(set! data (append data (list (box v)))))
(reset))
(define/public (reset)
(tellv content-cocoa noteNumberOfRowsChanged)
(tellv content-cocoa reloadData))
(define/override (maybe-register-as-child parent on?)
(register-as-child parent on?)))
| false |
2c282c6d71258311a7d52babcfaee947c11e795e | 96e1bbef7bb0b8cb31355727902d1df15a04cb60 | /sicp/char3/31/313/313ex.rkt | 57f2eb7b7d8fd170794b32756194a8a07aad47d3 | []
| no_license | qig123/racket_ex | 14acff1e7adcbc1e04001a7bf86c5c8888b73176 | e71035ae5fee90d60550a4b0d8fa5cca6dd33c73 | refs/heads/master | 2022-08-11T22:13:49.503482 | 2022-07-23T09:07:08 | 2022-07-23T09:07:08 | 216,301,835 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,847 | rkt | 313ex.rkt | #lang racket
;make joint accounts
;Define a procedure make-joint that ..
;Make-joint should take three arguments.The first is a password-protected
;The Second argument must match the password
(define (make-account balance password)
(define (withdraw amount)
(if (>= balance amount)
(begin (set! balance (- balance amount))
balance
)
"Insufficient funds"))
(define (deposit amount)
(set! balance (+ balance amount))
balance)
(define (dispatch input-password m)
(cond
(( not(eq? input-password password ) ) (error "Incorrect password") )
((eq? m 'withdraw) withdraw)
((eq? m 'deposit) deposit)
(else
(error "Unkonw request -- MAKE-ACCOUNT" m))))
dispatch)
(define peter-acc (make-account 100 'open-sesame))
(define (make-joint account operation-password new-password )
(define (dispatch input-password m)
(cond
((not (eq? operation-password 'open-sesame )) (error "Incorrect password"))
((not (eq? input-password 'rosebud )) (error "Incorrect password"))
((eq? m 'withdraw) (peter-acc operation-password 'withdraw ))
((eq? m 'deposit) (peter-acc operation-password 'deposit))
(else
(error "Unkonw request -- MAKE-ACCOUNT" m))))
dispatch
)
(define paul-acc (make-joint peter-acc 'open-sesame 'rosebud))
;Test ((peter-acc 'open-sesame 'withdraw) 40)
;((paul-acc 'rosebud 'withdraw) 40)
;----------------------
;(+ (f 0) (f 1)) =0 ----0+0=0===f0=0 f1=0-----
;(+ (f 1) (f 0)) =1=====1+0=1====f1=0 f0=1------
;ๅพๅบf1=0, f0่ฆๆ2ไธช็ถๆ
(define (g )
(define s 0)
(define (h x)
(if (= x 1) (begin (set! s 1) 0) (+ s x))
)
h
)
(define f (g)) \
;---------
(define f2
(lambda (first-value)
(set! f2 (lambda (second-value) 0))
first-value))
| false |
c0e21df0452c40af3f62e8e3c91c70eeac5b8767 | 7e500549765a0bdc49d4fcf40158fb9bb5b07e3e | /filesystem.rkt | 6fa79e5531ff48db9fab62a5fcf962ec92c7271b | []
| no_license | capfredf/digimon | 94f3b3946ce115e8ae4472fc757b5f548c519f04 | 1215bb3b1ab86fd115a6f2e393afa4d8530ed576 | refs/heads/master | 2023-04-05T01:27:59.773661 | 2021-04-14T05:32:44 | 2021-04-14T05:32:44 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 10,749 | rkt | filesystem.rkt | #lang typed/racket/base
(provide (all-defined-out))
(provide (all-from-out racket/path racket/file))
(require racket/path)
(require racket/file)
(require racket/list)
(require typed/racket/date)
(require "port.rkt")
(require (for-syntax racket/base))
(require (for-syntax racket/syntax))
(require (for-syntax syntax/parse))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define-syntax (define-file-reader stx)
(syntax-parse stx #:datum-literals [lambda ฮป]
[(_ id #:+ Type
(~or (~and #:binary binary-flag)
(~and #:text text-flag))
(~or #:lambda #:ฮป) do-read)
(quasisyntax/loc stx
(define id : (-> Path-String [#:mode (U 'binary 'text)] [#:count-lines? Boolean] Type)
(let ([up-to-dates : (HashTable Path (Pairof Type Nonnegative-Fixnum)) (make-hash)])
(lambda [#:mode [mode 'binary]
#:count-lines? [count-lines? #,(if (attribute text-flag) #'(port-count-lines-enabled) #'#false)]
src]
(define mtime : Nonnegative-Fixnum (file-or-directory-modify-seconds src))
(define file.src : Path (simplify-path src))
(define mdatum : (Option (Pairof Type Nonnegative-Fixnum)) (hash-ref up-to-dates file.src (ฮป [] #false)))
(cond [(and mdatum (<= mtime (cdr mdatum))) (car mdatum)]
[else (let ([datum (parameterize ([port-count-lines-enabled count-lines?])
(call-with-input-file* file.src #:mode mode
(ฮป [[/dev/stdin : Input-Port]] : Type
(do-read /dev/stdin file.src))))])
(hash-set! up-to-dates file.src (cons datum mtime))
datum)])))))]
[(_ id #:+ Type mode:keyword ((~or lambda ฮป) [/dev/stdin src] body ...))
(with-syntax ([id* (format-id #'id "~a*" (syntax-e #'id))])
(syntax/loc stx
(begin (define id : (case-> [Input-Port Path -> Type]
[Input-Port -> Type])
(case-lambda
[(/dev/stdin) (id /dev/stdin (port-path /dev/stdin))]
[(/dev/stdin src) body ...]))
(define-file-reader id* #:+ Type mode #:lambda id))))]
[(_ id #:+ Type (~or #:lambda #:ฮป) do-read) (syntax/loc stx (define-file-reader id #:+ Type #:binary #:lambda do-read))]
[(_ id #:+ Type (do-read ...)) (syntax/loc stx (define-file-reader id #:+ Type #:binary (do-read ...)))]))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define dirname : (-> Path-String [#:rootname String] String)
(lambda [path #:rootname [root "/"]]
(define dir : (Option Path-String)
(let ([dir : Path (simple-form-path path)])
(cond [(directory-exists? path) path]
[else (path-only path)])))
(cond [(not dir) #| DEADCODE |# root]
[else (let-values ([(_b name _?) (split-path dir)])
(cond [(path? name) (path->string name)]
[else root]))])))
(define file-readable? : (-> Path-String Boolean)
(lambda [p]
(and (file-exists? p)
(memq 'read (file-or-directory-permissions p))
#true)))
(define file-executable? : (-> Path-String Boolean)
(lambda [p]
(and (file-exists? p)
(memq 'execute (file-or-directory-permissions p))
#true)))
(define file-mtime : (->* (Path-String) (Nonnegative-Fixnum) Nonnegative-Fixnum)
(lambda [f [fallback 0]]
(cond [(file-exists? f) (file-or-directory-modify-seconds f)]
[else fallback])))
(define file-touch : (All (a) (case-> [Path-String (-> a) -> (U Void a)]
[Path-String -> Void]))
(case-lambda
[(target on-touch-error)
(file-or-directory-modify-seconds target (assert (current-seconds) exact-nonnegative-integer?) on-touch-error)]
[(target)
(file-or-directory-modify-seconds target (assert (current-seconds) exact-nonnegative-integer?)
(ฮป [] (unless (file-exists? target)
(make-parent-directory* target)
(call-with-output-file* target void))))]))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define find-root-relative-path : (-> (U Path-String Path-For-Some-System) Path-For-Some-System)
(lambda [path]
(cond [(relative-path? path) (if (string? path) (string->path path) path)]
[else (let ([elements (explode-path path)])
(cond [(or (null? elements) (null? (cdr elements))) (build-path 'same)]
[else (apply build-path (cdr elements))]))])))
(define explode-path/strip : (-> (U Path-String Path-For-Some-System) Integer (Listof (U 'same 'up Path-For-Some-System)))
(lambda [path strip]
(define elements : (Listof (U 'same 'up Path-For-Some-System)) (explode-path path))
(cond [(<= strip 0) elements]
[(<= (length elements) strip) null]
[else (drop elements strip)])))
(define explode-path/cleanse : (-> (U Path-String Path-For-Some-System) [#:strip Integer] (Listof (U 'same 'up Path-For-Some-System)))
; if 'same exists, it is the unique element, and the original path refers to current directory
; if 'up exists, it/they must appear at the beginning, and the original path refers to somewhere other than its subpaths.
(lambda [path #:strip [strict-count 0]]
(cond [(> strict-count 0)
(let ([es (explode-path/strip path strict-count)])
(cond [(pair? es) (explode-path/cleanse (apply build-path es) #:strip 0)]
[else null]))]
[else (explode-path (simplify-path path #false))])))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define path-exists? : (-> Path-String Boolean)
(lambda [path]
(or (link-exists? path)
(file-exists? path)
(directory-exists? path))))
(define path-add-sequence : (->* (Path-String) (String #:start Natural #:step Natural) (Option Path))
(lambda [path [seqfmt ":~a"] #:start [seq0 2] #:step [step 1]]
(define-values (parent basename syntactically-dir?) (split-path (simplify-path path #false)))
(define .ext : (Option Bytes) (path-get-extension path))
(and parent (path? basename)
(let try-sequence : (Option Path) ([seq : Natural seq0])
(define suffix : String (format seqfmt seq))
(define pathname : String
(if (or syntactically-dir? (not .ext))
(format "~a~a" basename suffix)
(format "~a~a~a" (path-replace-extension basename #"") suffix .ext)))
(define fullname : Path
(cond [(path? parent) (build-path parent pathname)]
[else (string->path pathname)]))
(cond [(not (path-exists? fullname)) fullname]
[(not (= step 0)) (try-sequence (+ seq step))]
[else #false])))))
(define path-add-timestamp : (->* (Path-String) (Integer Boolean #:@ Any) (Option Path))
(lambda [path [ts-seconds (current-seconds)] [local-time? #false] #:@ [@ #\@]]
(define timestamp : String (date->string (seconds->date ts-seconds local-time?) #true))
(define-values (parent basename syntactically-dir?) (split-path (simplify-path path #false)))
(define .ext : (Option Bytes) (path-get-extension path))
(define pathname : (Option String)
(and (path? basename)
(if (or syntactically-dir? (not .ext))
(format "~a~a~a" basename @ timestamp)
(format "~a~a~a~a" (path-replace-extension basename #"") @ timestamp .ext))))
(and (string? pathname)
(cond [(path? parent) (build-path parent pathname)]
[(symbol? parent) (string->path pathname)]
[else #false #| root directory should not be modified |#]))))
(define path-add-timestamp* : (->* (Path-String) (Integer Boolean #:@ Any) (Option Path))
(lambda [path [ts-seconds (current-seconds)] [local-time? #false] #:@ [@ #\@]]
(define newpath : (Option Path) (path-add-timestamp path ts-seconds local-time? #:@ @))
(and newpath
(cond [(not (path-exists? newpath)) newpath]
[else (path-add-sequence newpath "[~a]")]))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define make-path-match-predicates : (-> (U Regexp Byte-Regexp String Path (Listof (U Regexp Byte-Regexp String Path)))
(Values (-> Path-String Boolean) (-> Path-String Boolean)))
(lambda [matches]
(define-values (px:matches eq:matches)
(let partition : (Values (Listof (U Regexp Byte-Regexp)) (Listof Path))
([matches : (Listof (U Regexp Byte-Regexp String Path)) (if (list? matches) matches (list matches))]
[sxp : (Listof (U Regexp Byte-Regexp)) null]
[xqe : (Listof Path) null])
(cond [(null? matches) (values (reverse sxp) (reverse xqe))]
[else (let-values ([(self rest) (values (car matches) (cdr matches))])
(cond [(or (regexp? self) (byte-regexp? self)) (partition rest (cons self sxp) xqe)]
[(string? self) (partition rest sxp (cons (string->path self) xqe))]
[else (partition rest sxp (cons self xqe))]))])))
(define (px:match? [fullpath : Path-String]) : Boolean
(for/or ([px (in-list px:matches)])
(regexp-match? px fullpath)))
(define (eq:match? [basename : Path-String]) : Boolean
(cond [(string? basename) (eq:match? (string->path basename))]
[else (for/or ([eq (in-list eq:matches)])
(equal? eq basename))]))
(values px:match? eq:match?)))
(define make-path-match-predicate : (-> (U Regexp Byte-Regexp String Path (Listof (U Regexp Byte-Regexp String Path)))
(case-> [Path-String -> Boolean]
[Path-String Path-String -> Boolean]))
(lambda [matches]
(define-values (px:match? eq:match?) (make-path-match-predicates matches))
(case-lambda
[([fullpath : Path-String])
(or (px:match? fullpath)
(let ([basename (file-name-from-path fullpath)])
(and basename (eq:match? basename))))]
[([fullpath : Path-String] [basename : Path-String])
(or (px:match? fullpath)
(eq:match? basename))])))
| true |
b356131a55ddc7b152a182dc51cd34134501f2ae | 0ed3d28547caff2b432c462ecc6bf87033eee0c7 | /church-oo.rkt | fc82a1be94009db0881fa2ceadbb74c408667da5 | []
| no_license | llama-the-ultimate/llama-the-ultimate.github.io-old | 2d190eff2a07d7211b0c419a19b963f849a5d0e0 | dc7b5c95bf57d903761c613e830e5158b2fedd60 | refs/heads/master | 2022-11-21T19:16:11.030447 | 2019-06-09T10:12:53 | 2019-06-09T10:12:53 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 2,032 | rkt | church-oo.rkt | #lang at-exp racket
(require "structs.rkt")
(provide church-oo-note)
(define church-oo-note
(nt 'church-oo
"Church encoding is object-orientation"
(date 2018 7 15)
@p{
The central idea of traditional object-orientation is that everything is a function.
The thing we can do with a function is apply it to an argument.
We cannot inspect it, look into how it was constructed.
Only apply.
}
@p{
In a traditional object-oriented language, the argument a function is applied to is a selector-and-arguments-tuple.
}
@p{
E.g. some Smalltalk:
}
@block{
3 + 2.
5 negated.
3 to: 10 by: 2.
}
@p{That is:}
@(ul
@li{@tt{3} applied to the selector @tt{+} and a list of arguments containing @tt{2}.}
@li{@tt{5} applied to the selector @tt{negated} and the empty list of arguments.}
@li{@tt{3} applied to the selector @tt{to:by:} and a list of arguments containing @tt{10} and @tt{2}.})
@p{
There are details and there is often some cheating and pragmatism going on @em{somewhere}.
But the idea is that everything is a function and we cannot @q{look inside} a function.
}
@p{
A number is a function that behaves and responds appropriately when applied to an argument.
We do not care how the number is constructed.
More precicely, we @em{cannot} care how the number is constructed.
}
@p{Or:}
(blockquote
(quot @p{
If a function walks like a number and it quacks like a number, then it must be a number.
})
@cite{โAlonzo Church})
@p{
(Contrast with more data-oriented languages like those in the extended ML family.
Here we typically define numbers by how they are constructed.
@q{A natural number is zero or the successor of a natural number.}
And when operating on a number we @em{do} look into how it was constructed and do like case analysis (typically by using pattern matching).
@q{If it is zero, then such and such, if it is the successor of something, then this other thing instead.})
}
))
| false |
eb208c1293815ee62d4d98894299a3a1b5b570df | f2e65ac33a71e4e1315107f3bdc9eb2389c84871 | /gb/graphics/texture-atlas-lib.rkt | 89f18f67be6f9fdb1cad791c8b574aa9a2aff6c3 | []
| 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 | 3,310 | rkt | texture-atlas-lib.rkt | #lang racket/base
(require ffi/vector
(for-syntax racket/base
syntax/parse
racket/match
gb/lib/math
racket/syntax)
gb/lib/math
gb/lib/fstree
ffi/unsafe
ffi/vector)
(define-syntax (define-sprite-atlas stx)
(syntax-parse stx
[(_ count:nat size:nat)
(with-syntax*
([sas (datum->syntax stx 'sprite-atlas-size)]
[s (datum->syntax stx 'sprited)]
[s-r (datum->syntax stx 'sprited-ref)]
[i? (datum->syntax stx 'sprite-index?)]
[_i (datum->syntax stx '_sprite-index)]
[st (datum->syntax stx 'sprite-tree)]
[s-images (format-id stx "~a-images" #'s)]
[(i?_impl _idx idxvector)
(match (num->bytes-to-store (syntax->datum #'count))
[1 #'(_uint8? _uint8 u8vector)]
[2 #'(_uint16? _uint16 u16vector)]
[4 #'(_uint32? _uint32 u32vector)]
[_ (raise-syntax-error 'define-sprite-atlas
"Too many sprites to store indexes"
#'count)])]
[idxvector-ref (format-id #'idxvector "~a-ref" #'idxvector)]
[ds (datum->syntax stx 'define-sprite)])
(syntax/loc stx
(begin
(define sas size)
(define _i _idx)
(define i? i?_impl)
(struct s (width height images))
(define (s-r an-s i)
(idxvector-ref (s-images an-s) i))
(define st (make-fstree))
(provide sas _i i? (struct-out s) s-r st)
(define-syntax (ds stx)
(syntax-parse stx
[(_ name:id Tw:nat Th:nat (Iidx:nat (... ...)))
(with-syntax
([spr:name (format-id #'name "spr:~a" #'name)]
[name-str (symbol->string (syntax-e #'name))])
(syntax/loc stx
(begin
(define spr:name
(s Tw Th (idxvector Iidx (... ...))))
(fstree-insert! st name-str spr:name)
(provide spr:name))))])))))]))
(define-syntax (define-palette-atlas stx)
(syntax-parse stx
[(_ count:nat depth:nat)
(with-syntax
([pac (datum->syntax stx 'palette-atlas-count)]
[pad (datum->syntax stx 'palette-atlas-depth)]
[p? (datum->syntax stx 'palette?)]
[_p (datum->syntax stx '_palette)]
[(p?_impl _pal)
(match (num->bytes-to-store (syntax->datum #'count))
[1 #'(_uint8? _uint8)]
[2 #'(_uint16? _uint16)]
[4 #'(_uint32? _uint32)]
[_ (raise-syntax-error 'define-palette-atlas
"Too many palettes to store indexes"
#'count)])])
(syntax/loc stx
(begin
(define _p _pal)
(define p? p?_impl)
(define pac count)
(define pad depth)
(provide _p p? pac pad))))]))
(define-syntax (define-palette stx)
(syntax-parse stx
[(_ name:id index:nat)
(with-syntax ([pal:name (format-id #'name "pal:~a" #'name)])
(syntax/loc stx
(begin
(define pal:name index)
(provide pal:name))))]))
(provide (all-defined-out))
| true |
c94e3b74ba552c6325210a222b72c6c26aa008d9 | d2fc383d46303bc47223f4e4d59ed925e9b446ce | /courses/2015/spring/250/notes/17.rkt | c344f74f2a22221bb649f2c7221078cf021019b8 | []
| no_license | jeapostrophe/jeapostrophe.github.com | ce0507abc0bf3de1c513955f234e8f39b60e4d05 | 48ae350248f33f6ce27be3ce24473e2bd225f6b5 | refs/heads/master | 2022-09-29T07:38:27.529951 | 2022-09-22T10:12:04 | 2022-09-22T10:12:04 | 3,734,650 | 14 | 5 | null | 2022-03-25T14:33:29 | 2012-03-16T01:13:09 | HTML | UTF-8 | Racket | false | false | 2,882 | rkt | 17.rkt | #lang racket/base
(require plot
racket/file
racket/math)
(module+ test
(plot-new-window? #t)
(define N 10000)
(define m -5)
(define M 5)
(define Bs 100)
(define (samples->hash m M Bs s)
(define interval (/ (- M m) Bs))
(for/fold ([h (hash)])
([e (in-list s)])
(define i
(+ m
(* interval
(round
(/ (- e m) interval)))))
(hash-update h i add1 0)))
(define (samples->rects s N)
(define interval (/ (- M m) Bs))
(define vs
(for/list ([(k v) (samples->hash m M Bs s)])
(list (ivl (- k (* 1/2 interval))
(+ k (* 1/2 interval)))
(ivl 0 (/ (/ v N) interval)))))
(rectangles vs))
(define (normal-pdf mu sig)
(ฮป (x)
(* (/ 1 (* sig (sqrt (* 2 pi))))
(exp (- (/ (expt (- x mu) 2)
(* 2 (expt sig 2))))))))
(define (erf x)
(* (sign x)
(/ 1 2)
(expt
(- 1 (exp (* -1 (/ 2 pi) (expt x 2))))
(/ 1 2))))
(define (sign x)
(cond
[(positive? x) +1.0]
[(negative? x) -1.0]
[else 0.0]))
(define a 0.140012)
(define (inv-erf x)
(* (sign x)
(sqrt (- (sqrt (- (expt (+ (/ 2 (* pi a))
(/ (log (- 1 (expt x 2)))
2))
2)
(/ (log (- 1 (expt x 2)))
a)))
(+ (/ 2 (* pi a))
(/ (log (- 1 (expt x 2)))
2))))))
(define (normal-cdf mu sig)
(ฮป (x)
(* (/ 1 2)
(+ 1
(erf (/ (- x mu)
(* sig (sqrt 2))))))))
(define (inv-phi p)
(* (sqrt 2) (inv-erf (- (* 2 p) 1))))
(define (normal-inv-cdf mu sig)
(ฮป (p)
(+ mu (* sig (inv-phi p)))))
(define (nonzero-random)
(let ([u (random)])
(if (= u 0.0) (nonzero-random) u)))
(define (normal-sample:box-muller mu sig)
(ฮป ()
(define u1 (nonzero-random))
(define u2 (random))
(define x (* (sqrt (* -2.0 (log u1)))
(sin (* (* 2.0 pi) u2))))
(+ mu (* sig x))))
(define (normal-sample:inverse mu sig)
(ฮป ()
((normal-inv-cdf mu sig) (random))))
(define (sample-n sample-one n)
(for/list ([i (in-range n)])
(sample-one)))
(define given-points
(file->value "17.rktd"))
(define (normal mu sig)
(list (samples->rects
#;given-points
(sample-n (normal-sample:box-muller mu sig)
#;(normal-sample:inverse mu sig)
N)
N)
(function (normal-pdf mu sig)
#;(normal-cdf mu sig)
#:color 0 #:label (format "N(~a,~a)" mu sig))))
(plot (list (normal 0 1))
#:x-min m #:x-max M #:y-label "density"))
| false |
cfd230f84cb2399c016ae072f68b0a3e3990d4a3 | 5e5dcfa1ac8b5ebadec5525bd57cc36c90a68d47 | /src/language/syntax.rkt | 5e9dfda7b711f85d1db630fc63f1b50dc08fe30f | [
"Apache-2.0"
]
| permissive | standardgalactic/fructure | c6aa2c2fc66314425c80ac9954a0fea2767af217 | d434086052eab3c450f631b7b14dcbf9358f45b7 | refs/heads/master | 2023-07-08T13:07:42.565079 | 2020-09-24T02:06:10 | 2020-09-24T02:06:10 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 18,850 | rkt | syntax.rkt | #lang racket
(require "../../shared/slash-patterns/slash-patterns.rkt"
"../common.rkt")
(provide base-transforms
base-library-transforms
initial-stx)
(provide stx->fruct
project)
(provide literals
if-like-id?
lambda-like-id?
cond-like-id?
form-id?
affo-id?)
; -------------------------------------------------
(define base-constructors
; CONSTRUCTORS FOR BASE SYNTACTIC FORMS
(append
; LAMBDA CALC
(list '(#;[โฑ
(โน [sort expr] xs ... / โ)
(โน [sort expr] xs ... / (app ([sort expr] / โ)
([sort expr] / โ)))])
'([โฑ
(โน [sort expr] xs ... / โ)
(โน [sort expr] xs ... / (app ([sort expr] [variadic #true] / โ+)))])
'([โฑ
(xs ... / (app as ... (โน ys ... / โ+) ))
(xs ... / (app as ... (โน [sort expr] [variadic #true] / โ) (ys ... / โ+)))])
'([โฑ
(โน [sort expr] xs ... / โ)
(โน [sort expr] xs ... / (ฮป ([sort params]
/ (([sort pat] / (id ([sort char] / โ)))))
([sort expr] / โ)))])
#;'([โฑ
(โน [sort expr] xs ... / โ)
(โน [sort expr] xs ... / (ฮป ([sort params]
/ (([sort pat] [variadic #true] / (id ([sort char] / โ)))
([sort pat] [variadic #true] / โ+)))
([sort expr] / โ)))])
#;'([โฑ
(โน [sort pat] / โ)
(โน [sort pat] / (id ([sort char] / โ)))])
'([โฑ
([sort params]
/ (as ... (โน xs ... / โ+) bs ...))
([sort params]
/ (as ... (โน xs ... / (id ([sort char] / โ))) (xs ... / โ+) bs ...))])
)
; EXTENDED FORMS
(list
'([โฑ
(โน [sort expr] xs ... / โ)
(โน [sort expr] xs ... /
(define ([sort params]
/ (([sort pat] / (id ([sort char] / โ)))
([sort pat] / (id ([sort char] / โ)))))
([sort expr] / โ)))])
; so-far failed variadic define attempt; fails in semantics on 171
#;'([โฑ
(โน [sort expr] xs ... / โ)
(โน [sort expr] xs ... /
(define ([sort params]
/ (([sort pat] / (id ([sort char] [variadic #true] / โ)))
([sort pat] / (id ([sort char] [variadic #true] / โ+)))))
([sort expr] / โ)))])
#; '([โฑ
(โน [sort expr] xs ... / โ)
(โน [sort expr] xs ... / (begin
([sort expr] [variadic #true] / โ)
([sort expr] [variadic #true] / โ+)))])
#;'([โฑ
( xs ... /
(define ([sort params]
/ (as ...
(โน bs ... / (id (cs ... / โ+)))))
body))
( xs ... /
(define ([sort params]
/ (as ...
(โน [sort pat] / (id ([sort char] [variadic #true] / โ)))
(bs ... / (id (cs ... / โ+)))
))
body))])
#;'([โฑ
(xs ... / (begin as ...
(โน bs ... / โ+) ))
(xs ... / (begin as ...
(โน [sort expr] [variadic #true] / โ)
(bs ... / โ+)))])
'([โฑ
(โน [sort expr] xs ... / โ)
(โน [sort expr] xs ... / (num ([sort digit] / โ)))])
#;'([โฑ
(โน [sort expr] xs ... / โ)
(โน [sort expr] xs ... / (num ([sort digit] / 1) ([sort digit] / โ)))])
'([โฑ
(โน [sort expr] xs ... / โ)
(โน [sort expr] xs ... / (if ([sort expr] / โ)
([sort expr] / โ)
([sort expr] / โ)))])
'([โฑ
(โน [sort expr] xs ... / โ)
(โน [sort expr] xs ... / (begin
([sort expr] [variadic #true] / โ)
([sort expr] [variadic #true] / โ+)))])
; problem we're trying to solve: autoadvances to next hole after transformation,
; but in this case, we're inserting a new hole and want to stay on it
; HACK: mark as 'variadic' and special-case it in select-next-hole in transform
; basically for these variadic holes, we don't autoadvance the cursor if its on one
; disadvantage: can't leave placeholder holes in variadic forms
'([โฑ
(xs ... / (begin as ... (โน bs ... / โ+) ))
(xs ... / (begin as ... (โน [sort expr] [variadic #true] / โ)(bs ... / โ+)))])
'([โฑ
(โน [sort expr] xs ... / โ)
(โน [sort expr] xs ... / (list
; DON'T REMOVE BELOW HOLE WILLY-NILLY
; A BUG (drop-right) in draw-fruct
; appears when the length-conditional-cutoff
; drops below a certain value
([sort expr] [variadic #true] / โ)
([sort expr] [variadic #true] / โ+)))])
'([โฑ
(xs ... / (list as ... (โน bs ... / โ+) ))
(xs ... / (list as ... (โน [sort expr] [variadic #true] / โ)(bs ... / โ+)))])
'([โฑ
(โน [sort expr] xs ... / โ)
(โน [sort expr] xs ... / (cond
([sort CP] [variadic #true] / (cp ([sort expr] / โ)
([sort expr] / โ)))
([sort CP] [variadic #true] / โ+)))])
'([โฑ
([sort expr] xs ... / (cond
as ...
(โน bs ... / โ+)))
([sort expr] xs ... / (cond
as ...
(โน [sort CP] #;[variadic #true] / (cp ([sort expr] / โ)
([sort expr] / โ)))
(bs ... / โ+)))])
'([โฑ
([sort expr] xs ... / (cond
as ...
(โน bs ... / โ+)))
([sort expr] xs ... / (cond
as ...
(โน [sort CP] #;[variadic #true] / (cp ([sort else] / else)
([sort expr] / โ)))
(bs ... / โ+)))])
#;'([โฑ
(โน [sort expr] xs ... / โ)
(โน [sort expr] xs ... / (match ([sort expr] / โ)
([sort MP] [variadic #true] / (mp ([sort expr] / โ)
([sort expr] / โ)))
([sort MP] [variadic #true] / โ+)))])
#;'([โฑ
([sort expr] xs ... / (match ([sort expr] / โ)
a ...
(โน [sort MP] [variadic #true] bs ... / โ+)))
([sort expr] xs ... / (match ([sort expr] / โ)
a ...
(โน [sort MP] [variadic #true] / (mp ([sort pat] / โ)
([sort expr] / โ)))
([sort MP] [variadic #true] bs ... / โ+)))])
#;'([โฑ
(โน [sort expr] xs ... / โ)
; sort params below is a hack to use lambda layout routines; TODO fix
(โน [sort expr] xs ... / (let ([sort LPS] / (lps ([sort LP] / (lp
([sort params]
/ (([sort pat]
/ (id ([sort char] / โ)))))
#;([sort pat]
/ (id ([sort char] / โ)))
([sort expr] / โ)))
([sort LP] / โ+)))
([sort expr] / โ)))])
#;'([โฑ
([sort expr] xs ... / (let ([sort LPS] / (lps a ...
(โน [sort LP] bs ... / โ+)))
([sort expr] / โ)))
([sort expr] xs ... / (let ([sort LPS] / (lps a ...
(โน [sort LP] / (lp
; HACK, see above
([sort params]
/ (([sort pat]
/ (id ([sort char] / โ)))))
([sort expr] / โ)))
([sort LP] bs ... / โ+)))
([sort expr] / โ)))])
; identity transform
; redundant to generalmost destructor
#;'([โฑ
(โน [sort expr] xs ... / โ)
(โน [sort expr] xs ... / โ)]))))
(define base-destructors
; DESTRUCTORS FOR BASE SYNTACTIC FORMS
(list
(append
'([โฑ
(โน xs ... / (ref a))
(โน xs ... / โ)]
[โฑ
(โน xs ... / (app as ...))
(โน xs ... / โ)]
[โฑ
(โน xs ... / (ฮป a b))
(โน xs ... / โ)])
'([โฑ
(โน xs ... / (num a ...))
(โน xs ... / โ)]
[โฑ
(โน xs ... / (if a b c))
(โน xs ... / โ)]
[โฑ
(โน xs ... / (define a ...))
(โน xs ... / โ)]
[โฑ
(โน xs ... / (begin a ...))
(โน xs ... / โ)]
[โฑ
(โน xs ... / (list a ...))
(โน xs ... / โ)]
[โฑ
(โน xs ... / (cond a ...))
(โน xs ... / โ)]
#;[โฑ
(โน xs ... / (match a ...))
(โน xs ... / โ)]
#;[โฑ
(โน xs ... / (let a ...))
(โน xs ... / โ)]
; general fallthough for now
; don't need identity constructor with this
; but needs this hacky guard
; actually that doesn't work, thre's still a superfluous transform
[โฑ
(โน xs ... / โ)
(โน xs ... / โ)]
#;[โฑ
(โน xs ... / โ+)
(โน xs ... / โ+)]
#;[โฑ
(โน xs ... / a)
(โน xs ... / โ)]))))
(define alphabet
; character set for identifiers
(append #;'(๐ ๐ค ๐ฎ ๐ค ๐ โ ๐ ๐ ๐ ๐ ๐ ๐ฃ ๐ค ๐)
'(a b c d e f g h i j k l m n o p q r s t u v w x y z)
'(? ! - \| ๐ ๐ค)))
(define alpha-constructors
; char constructors for each letter in the alphabet
(cons
; identity
`([โฑ
(xs ... / (id as ... (โน [sort char] ys ... / โ) bs ...))
(xs ... / (id as ... (โน [sort char] ys ... / โ) bs ...))])
(for/list ([x alphabet])
`([โฑ
(xs ... / (id as ... (โน [sort char] ys ... / โ) bs ...))
(xs ... / (id as ... (โน [sort char] ys ... / ',x) ([sort char] / โ) bs ...))]))))
(define non-zero-digits
'(1 2 3 4 5 6 7 8 9))
(define digits
(cons 0 non-zero-digits))
(define digit-constructors
; char constructors for each letter in the alphabet
(append
(list
'([โฑ
(โน [sort expr] xs ... / โ)
(โน [sort expr] xs ... / (num ([sort digit] / 0)))])
'([โฑ
(โน [sort expr] xs ... / โ)
(โน [sort expr] xs ... / (num ([sort digit] / 1)))]))
(for/list ([x digits])
`([โฑ
(xs ... / (num as ... (โน [sort digit] ys ... / โ) bs ...))
(xs ... / (num as ... (โน [sort digit] ys ... / ',x) ([sort digit] / โ) bs ...))]))))
(define base-library-signatures
; BASE LIBRARY FUNCTIONS & SIGNATURES
; later: populate base sigs from contracts? procedure-props?
(append
'(true false (not โ))
'((=? โ โ))
'((zero? โ) (add1 โ) (sub1 โ) (< โ โ))
'(null (empty? โ) (cons โ โ) (first โ) (rest โ))))
(define (symbol->proper-ref sym)
((compose (ฮป (stuff) `(ref ([sort pat] / (id ,@stuff))))
(curry map (ฮป (s) `([sort char] / ',(string->symbol (string s)))))
string->list symbol->string)
sym))
(define base-library-transforms
(apply
append
(for/list ([x base-library-signatures])
(match x
[(? symbol?)
`(([โฑ
(โน [sort expr] xs ... / โ)
(โน [sort expr] xs ... / ,(symbol->proper-ref x))]))]
[`(,a ,as ...)
; order of these two is very intentional
`(([โฑ
(โน [sort expr] xs ... / โ)
(โน [sort expr] xs ... / (app ([sort expr] / ,(symbol->proper-ref a))
,@(map (ฮป (_) `([sort expr] / โ)) as)))])
([โฑ
(โน [sort expr] xs ... / โ)
(โน [sort expr] xs ... / ,(symbol->proper-ref a))]))]))))
#;(define base-library
(append
'(true false not)
'(zero? add1 sub1)
'(null empty? cons first rest)))
#;(define base-library-transforms
(for/list ([x base-library])
`([โฑ
(โน [sort expr] xs ... / โ)
(โน [sort expr] xs ... / ,(symbol->proper-ref x))])))
; BASIC REFACTORING TRANSFORMATIONS
; eventually, populate some of these from macros
#; '([โฑ
(โน [sort expr] xs ... / โ)
(โน [sort expr] xs ... / (cond
([sort CP] [variadic #true] / (cp ([sort expr] / โ)
([sort expr] / โ)))
([sort CP] [variadic #true] / โ+)))])
(define base-refactors
(list
'([โฑ
(โน [sort expr] xs ... / (cond
([sort CP] / (cp a b))
([sort CP] / (cp ([sort else] / else) c))
([sort CP] / โ+)))
(โน [sort expr] xs ... / (if a b c))])
#;'([โฑ
(โน [sort expr] xs ... / (if a b c))
(โน [sort expr] xs ... / (cond
([sort CP] [variadic #true] / (cp a b))
([sort CP] [variadic #true] / (cp ([sort else] / else) c))
([sort CP] [variadic #true] / โ+)))])))
; BASE TRANSFORMATION MARSHALLING
(define base-transforms
(append base-destructors
base-constructors
base-refactors
alpha-constructors
digit-constructors))
; -------------------------------------------------
; LANGUAGE DATA
; metadata which will be eventually derived automatically
; RESERVED primary symbols
(define unary-ids (append '(ref id) '(quote qq uq p-not num)))
(define if-like-ids (append '(app mapp and) '(if iff mp lp #;cp begin list p-and p-or p-list)))
(define lambda-like-ids (append '(ฮป lambda) '(match let define local)))
(define cond-like-ids '(cond match-ฮป ฮปm lps)) ; lps is let pairs
; RESERVED meta symbols
(define affordances '(โน โ โ+ โ โ))
(define sort-names (append '(expr char digit pat params) '(MP LP LPS CP def else)))
; else above is hack
; derived symbol functions
(define form-ids (append unary-ids if-like-ids lambda-like-ids cond-like-ids))
(define if-like-id? (curryr member if-like-ids))
(define lambda-like-id? (curryr member lambda-like-ids))
(define cond-like-id? (curryr member cond-like-ids))
(define form-id? (curryr member form-ids))
(define affo-id? (curryr member affordances))
(define literals
(for/fold ([hs (hash)])
([lit (append form-ids
affordances
sort-names)])
(hash-set hs lit '())))
; -------------------------------------------------
; INITIAL SYNTAX
(define initial-stx
; initial syntax for this language
((desugar-fruct literals) '(โ (โน (sort expr) / โ))))
; -------------------------------------------------
; SEX PROJECTION LIBRARY
(define (project stx)
; project: fruct -> sexpr
(define @ project)
(match stx
; strip top
[`(โ ,x)
(@ x)]
; transform mode
#;[(/ (transform template) _/ (โน stx))
`(โน [,stx -> ,(project template)])]
; label sorts of holes
[(/ (sort sort) _/ (โน 'โ))
`(โน (โ ,sort))]
; flatten symbols
[(/ _ `(id ,(/ [sort 'char] _ (and c (not 'โ))) ... ,(/ [sort 'char] _ 'โ) ...))
(string->symbol (apply string-append (map symbol->string c)))]
[(/ (sort sort) _/ 'โ)
`(โ ,sort)]
; embed cursor
#;[(/ _/ (โน stx))
`(โน ,(@ stx))]
; or nor
[(/ _/ (โน stx))
(@ stx)]
[(/ _/ stx)
(@ stx)]
[(? list?) (map @ stx)] [x x]))
(define (stx->fruct stx)
; stx->fruct : sexpr -> fruct
(define s2f stx->fruct)
(match stx
[(? (disjoin symbol? number?))
(/ stx)]
[`(โน ,(? (disjoin symbol? number?) s))
(/ (โน s))]
[`(โน (,(? form-id? a) ,as ...))
(/ (โน `(,a ,@(map s2f as))))]
[`(โน ,a)
(/ (โน (map s2f a)))]
[`(,(? form-id? a) ,as ...)
(/ `(,a ,@(map s2f as)))]
[(? list?)
(/ (map s2f stx))]))
; -------------------------------------------------
; TESTS
(module+ test
(require rackunit)
(check-equal? (stx->fruct
'false)
'(p/ #hash() false))
(check-equal? (stx->fruct
'(lambda (x)
x
(and x (and true false))))
'(p/
#hash()
(lambda
(p/ #hash() ((p/ #hash() x)))
(p/ #hash() x)
(p/
#hash()
(and
(p/ #hash() x)
(p/
#hash()
(and
(p/ #hash() true)
(p/ #hash() false)))))))))
| false |
3b8b645a09ce4e57660d495af1a300f6f7465c40 | 2990b0841b63f300a722107933c01c7237a7976b | /all_xuef/็จๅบๅ็ป็บง+Never/Fun_Projects/cs173-python/cs173-python-master/design5/python-core-syntax.rkt | cd2c0a4af20856d42fde6defc1291bf6bb8b05d5 | []
| 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,502 | rkt | python-core-syntax.rkt | #lang plai-typed
#|
This is the core language; it is just borrowing a few things from
ParselTongue.
|#
(define-type CExp
[CNum (n : number)]
[CStr (s : string)]
[CTrue]
[CSeq (e1 : CExp) (e2 : CExp)]
[CError (e1 : CExp)]
[CIf (test : CExp) (then : CExp) (else : CExp)]
[CId (x : symbol)]
[CLet (id : symbol) (scopeType : ScopeType) (bind : CExp) (body : CExp)]
[CApp (fun : CExp) (args : (listof CExp))]
[CFunc (args : (listof symbol)) (body : CExp) (vlist : (listof (ScopeType * symbol)))]
[CPrim1 (prim : symbol) (arg : CExp)]
;;MADE BY ME:
[CPrim2 (op : symbol) (e1 : CExp) (e2 : CExp)]
[CFalse]
[CNone]
[CPass]
[CReturn (value : CExp)]
[CSet (id : CExp) (value : CExp)]
;[CBind (bind : (ScopeType * symbol))] ;;puts an identifier in the environment but does nothing in the store.
[CUnbound]
[CGlobalEnv]
[C-NotExist (a : number)] ;;THIS IS HERE ONLY SO THAT python-interp won't complain about having completed all of the expressions
)
(define-type CVal
[VNum (n : number)]
[VStr (s : string)]
[VTrue]
[VClosure (env : Env) (args : (listof symbol)) (body : CExp)]
;;I ADDED;;
[VNone]
[VFalse]
[VPass]
[VUnbound]
)
(define-type-alias Location number)
(define-type ScopeType
[Local]
[NonLocal]
[Global])
(define-type-alias SLTuple (ScopeType * number))
(define-type-alias Env (hashof symbol SLTuple))
(define-type-alias Store (hashof Location CVal))
(define-type AnswerC
[ValueA (value : CVal) (store : Store)])
| false |
75a474bc0ebf850fcb320437843d10200ed065c7 | e65a1d690c53dd3d097313443b8e4d554187d53d | /asn1-parser/parser-util.rkt | a87ed16f54cfc42180e9f180699a89a6abd98677 | []
| no_license | rmculpepper/asn1 | 635720a2665f7a56679dfdaf05b4c1b70349e6f9 | 3cd32b61a68b40ec03bed98cd0c4d4d4f72cacf2 | refs/heads/master | 2022-04-26T22:00:02.606282 | 2022-04-16T19:54:27 | 2022-04-16T19:54:27 | 17,492,061 | 4 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,238 | rkt | parser-util.rkt | ;; Copyright 2020-2021 Ryan Culpepper
;; SPDX-License-Identifier: Apache-2.0
#lang racket/base
(require (for-syntax racket/base racket/syntax syntax/parse racket/promise
racket/match racket/dict syntax/id-table racket/list)
grrparse)
(provide (all-defined-out))
(define-syntax-rule (expression/begin-for-syntax e)
(#%expression (let-syntaxes ([() (begin0 (#%plain-app values) e)]) (#%plain-app void))))
;; ------------------------------------------------------------
(define-syntax (define-nt-definers stx)
(syntax-parse stx
[(_ define-nt define-g)
#'(begin
(define-for-syntax ntbox (box null))
(define-syntax define-nt (define-nt-tx ntbox))
(define-syntax define-g (define-g-tx ntbox)))]))
(begin-for-syntax
(define ((define-nt-tx ntbox) stx)
(syntax-parse stx
[(_ nt:id prod ...)
#:with ntdef #'(nt prod ...)
(set-box! ntbox (cons (syntax-local-introduce #'ntdef) (unbox ntbox)))
#'(void)]))
(define ((define-g-tx ntbox) stx)
(syntax-parse stx
[(_ name:id)
(with-syntax ([(ntdef ...)
(map syntax-local-introduce (reverse (unbox ntbox)))])
#'(define-grammar name ntdef ...))])))
| true |
79a92df4bda9bcce8ea4388beb9b6eedf0254780 | a81c078be33105a42fcfaff6189e7bf078aae9b0 | /game-engine-demos-common/info.rkt | 8f7252e261c7ebe06209b270a150948304386005 | []
| no_license | thoughtstem/game-engine-demos | 3536e6c257dc59009996e0e6faeb64dd03730274 | 614d1c5fb871f17e4008a26cb42542800457576b | refs/heads/master | 2021-06-07T07:41:51.064343 | 2019-10-04T22:18:55 | 2019-10-04T22:18:55 | 123,335,201 | 1 | 0 | null | 2019-07-19T18:17:32 | 2018-02-28T19:57:02 | Racket | UTF-8 | Racket | false | false | 211 | rkt | info.rkt | #lang info
(define collection "game-engine-demos-common")
(define version "0.0.1")
(define deps '(
"https://github.com/thoughtstem/game-engine.git"
"https://github.com/thoughtstem/game-engine-rpg.git"))
| false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.