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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4c74e370db437cb2e0f1aab736dabbff97de6536 | 9dc77b822eb96cd03ec549a3a71e81f640350276 | /type/struct.scrbl | 5c6cb79502fd28eb5d73721871d05a892d5fada0 | [
"Apache-2.0"
]
| permissive | jackfirth/rebellion | 42eadaee1d0270ad0007055cad1e0d6f9d14b5d2 | 69dce215e231e62889389bc40be11f5b4387b304 | refs/heads/master | 2023-03-09T19:44:29.168895 | 2023-02-23T05:39:33 | 2023-02-23T05:39:33 | 155,018,201 | 88 | 21 | Apache-2.0 | 2023-09-07T03:44:59 | 2018-10-27T23:18:52 | Racket | UTF-8 | Racket | false | false | 4,680 | scrbl | struct.scrbl | #lang scribble/manual
@(require (for-label racket/base
racket/contract/base
racket/list
racket/math
rebellion/type/struct)
(for-syntax racket/base
racket/syntax)
(submod rebellion/private/scribble-evaluator-factory doc)
scribble/example
syntax/parse/define)
@(define make-evaluator
(make-module-sharing-evaluator-factory
#:public (list 'rebellion/type/struct)
#:private (list 'racket/base)))
@title{Struct Descriptors}
@defmodule[rebellion/type/struct]
@defproc[(struct-descriptor? [v any/c]) boolean?]{
A predicate for structure type descriptors, initialized or uninitialized.}
@defproc[(initialized-struct-descriptor? [v any/c]) boolean?]{
A predicate for initialized structure type descriptors, as returned by the
@racket[make-struct-implementation] function. Implies @racket[
struct-descriptor?].}
@defproc[(uninitialized-struct-descriptor? [v any/c]) boolean?]{
A predicate for uninitialized structure type descriptors, as passed to the
@racket[_prop-maker] argument of @racket[make-struct-implementation]. An
uninitialized descriptor's constructor, predicate, accessor, and mutator
functions @bold{must not be called} until the structure type is created ---
that is, until the corresponding call to @racket[make-struct-implementation]
returns.}
@defproc[(struct-descriptor-type [descriptor initialized-struct-descriptor?])
struct-type?]{
Returns the raw @racket[struct-type?] instance in @racket[descriptor], which
must be initialized. Uninitialized structure type descriptors do not yet have
an associated @racket[struct-type?] instance.}
@(define-simple-macro
(document-struct-descriptor-accessors
(id:id [field:id contract:expr] ...)
documentation-content ...)
#:with [accessor ...]
(map (λ (id) (format-id id "struct-descriptor-~a" (syntax-e id)
#:source id #:props id))
(syntax->list #'(field ...)))
(deftogether ((defproc (accessor [id struct-descriptor?]) contract) ...)
documentation-content ...))
@document-struct-descriptor-accessors[
(descriptor [super-type (or/c struct-info? #f)]
[name symbol?]
[mutable-fields natural?]
[immutable-fields natural?]
[auto-fields natural?]
[constructor procedure?]
[predicate (-> any/c boolean?)]
[accessor (-> any/c natural? any/c)]
[mutator (-> any/c natural? any/c void?)])]{
Accessors for the various fields of a structure type descriptor.}
@defproc[
(make-struct-implementation
[#:name name symbol?]
[#:mutable-fields mutable-fields natural? 0]
[#:immutable-fields immutable-fields natural? 0]
[#:auto-fields auto-fields natural? 0]
[#:auto-field-value auto-value any/c #f]
[#:super-type super-type (or/c struct-type? #f) #f]
[#:property-maker prop-maker
(-> uninitialized-struct-descriptor?
(listof (cons/c struct-type-property? any/c)))
(λ (_) empty)]
[#:inspector inspector (or/c inspector? 'prefab #f) (current-inspector)]
[#:guard guard (or/c procedure? #f) #f]
[#:constructor-name constructor-name (or/c symbol? #f) #f])
initialized-struct-descriptor?]{
Like @racket[make-struct-type], but with keyword arguments instead of
positional arguments and returning a single @racket[struct-descriptor?] value
instead of multiple values. Additional differences include:
@itemlist[
@item{Instead of fields defaulting to mutable and specifying a list of indices
for immutable fields, this function accepts separate arguments for the number
of mutable fields and the number of immutable fields. The created struct type
puts all mutable fields before all immutable fields.}
@item{Structure type properties are created by the @racket[prop-maker]
function, which is called with the descriptor before it is initialized. This
allows property values to refer to the functions associated with the
descriptor, without requiring users of @racket[make-struct-implementation]
to create mutually recursive definitions.}
@item{The @racket[proc-spec] argument is not supported directly. This argument
is made obsolete by @racket[prop:procedure]; instead of passing @racket[
proc-spec] callers should include a value for @racket[prop:procedure] in
the result of @racket[prop-maker].}]
@(examples
#:eval (make-evaluator) #:once
(define point-descriptor
(make-struct-implementation #:name 'point #:immutable-fields 2))
(define point (struct-descriptor-constructor point-descriptor))
(point 1 2))}
| false |
26bfbe9d496bbe6854f1a9c16396c72bf2cc1ada | 82c76c05fc8ca096f2744a7423d411561b25d9bd | /typed-racket-more/typed/pict.rkt | e750809a4624e63098a2bdd6093c7e50ac3f0c1c | [
"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 | 11,963 | rkt | pict.rkt | #lang s-exp typed-racket/base-env/extra-env-lang
;; Typed base-env wrapper for the pict library
;; TODO 2022-01-28 ... add T+ for untrusted ones!!!
(require pict
"racket/private/gui-types.rkt"
(for-syntax (only-in typed-racket/rep/type-rep
make-Name)
(submod "racket/private/gui-types.rkt" #%type-decl)))
(begin-for-syntax
(with-default-T+ #true
(define (-improper-listof t)
(-mu -ilof
(Un (-pair t -ilof) t -Null)))
(define -dc
(-inst (parse-type #'DC<%>)))
(define -color
(-inst (parse-type #'Color%)))
(define -pict (-struct-name #'pict))
(define -pict-path
(Un (-val #f) -pict (-lst -pict)))
(define -child (-struct-name #'child))
(define -text-style
(-mu -text-style
(Un -Null (-inst (parse-type #'Font%)) (parse-type #'Font-Family) -String
(-pair -String (parse-type #'Font-Family))
(-pair (Un (-val 'bold) (-val 'italic) (-val 'subscript) (-val 'superscript) (-val 'caps)
(-val 'combine) (-val 'no-combine) (-val 'aligned) (-val 'unaligned)
-color)
-text-style))))
(define -linestyle
(one-of/c 'transparent 'solid 'xor 'hilite
'dot 'long-dash 'short-dash 'dot-dash
'xor-dot 'xor-long-dash 'xor-short-dash
'xor-dot-dash))
(define -pin-arrow-line
(->key -Real
-pict
-pict-path
(-> -pict -pict-path (-values (list -Real -Real)))
-pict-path
(-> -pict -pict-path (-values (list -Real -Real)))
#:start-angle (-opt -Real) #f
#:end-angle (-opt -Real) #f
#:start-pull (-opt -Real) #f
#:end-pull (-opt -Real) #f
#:color (-opt (Un -String -color)) #f
#:alpha -Real #f
#:line-width (-opt -Real) #f
#:under? Univ #f
#:solid? Univ #f
#:style (-opt -linestyle) #f
#:hide-arrowhead? Univ #f
#:label (-opt -pict) #f
#:x-adjust-label -Real #f
#:y-adjust-label -Real #f
-pict))
(define -pict-finder
(-> -pict -pict-path (-values (list -Real -Real))))
(define -append-type
(cl->*
(->* (list -Real -pict) -pict -pict)
(->* (list -pict) -pict -pict)))
(define -superimpose-type
(->* (list -pict) -pict -pict))))
(type-environment
#:default-T+ #true
; 1 Pict Datatype
[#:struct pict ([draw : Univ]
[width : -Real]
[height : -Real]
[ascent : -Real]
[descent : -Real]
[children : (-lst -child)]
[panbox : Univ]
[last : -pict-path])
#:extra-constructor-name make-pict]
[#:struct child ([pict : -pict]
[dx : -Real]
[dy : -Real]
[sx : -Real]
[sy : -Real]
[sxy : -Real]
[syx : -Real])
#:extra-constructor-name make-child]
; 2 Basic Pict Constructors
[dc (->opt (-> -dc -Real -Real ManyUniv) -Real -Real [-Real -Real] -pict)]
[blank (cl->* (-> -pict)
(-> -Real -pict)
(-> -Real -Real -pict)
(-> -Real -Real -Real -pict)
(-> -Real -Real -Real -Real -pict))]
[text (->opt -String [-text-style -Index -Real] -pict)]
[hline (->key -Real -Real #:segment (-opt -Real) #f -pict)]
[vline (->key -Real -Real #:segment (-opt -Real) #f -pict)]
[frame (->key -pict
#:segment (-opt -Real) #f
#:color (-opt (Un -String -color)) #f
#:line-width (-opt -Real) #f
-pict)]
[ellipse (->key -Real -Real
#:border-color (-opt (Un -String -color)) #f
#:border-width (-opt -Real) #f
-pict)]
[circle (->key -Real
#:border-color (-opt (Un -String -color)) #f
#:border-width (-opt -Real) #f
-pict)]
[filled-ellipse
(->key -Real -Real
#:draw-border? Univ #f
#:color (-opt (Un -String -color)) #f
#:border-color (-opt (Un -String -color)) #f
#:border-width (-opt -Real) #f
-pict)]
[disk
(->key -Real
#:draw-border? Univ #f
#:color (-opt (Un -String -color)) #f
#:border-color (-opt (Un -String -color)) #f
#:border-width (-opt -Real) #f
-pict)]
[rectangle (->key -Real -Real
#:border-color (-opt (Un -String -color)) #f
#:border-width (-opt -Real) #f
-pict)]
[filled-rectangle
(->key -Real -Real
#:draw-border? Univ #f
#:color (-opt (Un -String -color)) #f
#:border-color (-opt (Un -String -color)) #f
#:border-width (-opt -Real) #f
-pict)]
[rounded-rectangle
(->optkey -Real -Real [-Real]
#:angle -Real #f
#:border-color (-opt (Un -String -color)) #f
#:border-width (-opt -Real) #f
-pict)]
[filled-rounded-rectangle
(->optkey -Real -Real [-Real]
#:angle -Real #f
#:draw-border? Univ #f
#:color (-opt (Un -String -color)) #f
#:border-color (-opt (Un -String -color)) #f
#:border-width (-opt -Real) #f
-pict)]
;; FIXME: add image-snip%
[bitmap (-> (Un -Pathlike (-inst (parse-type #'Bitmap%))) -pict)]
[arrow (-> -Real -Real -pict)]
[arrowhead (-> -Real -Real -pict)]
[pip-line (-> -Real -Real -Real -pict)]
[pip-arrow-line (-> -Real -Real -Real -pict)]
[pip-arrows-line (-> -Real -Real -Real -pict)]
[pin-line
(->key -pict
-pict-path
(-> -pict -pict-path (-values (list -Real -Real)))
-pict-path
(-> -pict -pict-path (-values (list -Real -Real)))
#:start-angle (-opt -Real) #f
#:end-angle (-opt -Real) #f
#:start-pull (-opt -Real) #f
#:end-pull (-opt -Real) #f
#:color (-opt (Un -String -color)) #f
#:alpha -Real #f
#:line-width (-opt -Real) #f
#:under? Univ #f
#:solid? Univ #f
#:style (-opt -linestyle) #f
#:label (-opt -pict) #f
#:x-adjust-label -Real #f
#:y-adjust-label -Real #f
-pict)]
[pin-arrow-line -pin-arrow-line]
[pin-arrows-line -pin-arrow-line]
[bitmap-draft-mode (-Param Univ -Boolean)]
;; 3 Pict Combiners
[vl-append -append-type]
[vc-append -append-type]
[vr-append -append-type]
[ht-append -append-type]
[htl-append -append-type]
[hc-append -append-type]
[hbl-append -append-type]
[hb-append -append-type]
[lt-superimpose -superimpose-type]
[ltl-superimpose -superimpose-type]
[lc-superimpose -superimpose-type]
[lbl-superimpose -superimpose-type]
[lb-superimpose -superimpose-type]
[ct-superimpose -superimpose-type]
[ctl-superimpose -superimpose-type]
[cc-superimpose -superimpose-type]
[cbl-superimpose -superimpose-type]
[cb-superimpose -superimpose-type]
[rt-superimpose -superimpose-type]
[rtl-superimpose -superimpose-type]
[rc-superimpose -superimpose-type]
[rbl-superimpose -superimpose-type]
[rb-superimpose -superimpose-type]
[pin-over
(cl->*
(-> -pict -Real -Real -pict -pict)
(-> -pict -pict-path
(-> -pict -pict-path (-values (list -Real -Real)))
-pict
-pict))]
[pin-under
(cl->*
(-> -pict -Real -Real -pict -pict)
(-> -pict -pict
(-> -pict -pict (-values (list -Real -Real)))
-pict
-pict))]
[table
(-> -PosInt
(-pair -pict (-lst -pict))
(-improper-listof (-> -pict -pict -pict))
(-improper-listof (-> -pict -pict -pict))
(-improper-listof -Real)
(-improper-listof -Real)
-pict)]
;; 4 Pict Drawing Adjusters
[scale
(cl->* (-> -pict -Real -pict)
(-> -pict -Real -Real -pict))]
[scale-to-fit
(cl->* (-> -pict -Real -pict)
(-> -pict -Real -Real -pict))]
[rotate (-> -pict -Real -pict)]
[ghost (-> -pict -pict)]
[linewidth (-> (-opt -Real) -pict -pict)]
[linestyle (-> -linestyle -pict -pict)]
[colorize (-> -pict (Un -String (-lst* -Byte -Byte -Byte) -color) -pict)]
[cellophane (-> -pict -Real -pict)]
[clip (-> -pict -pict)]
[inset/clip
(cl->* (-> -pict -Real -pict)
(-> -pict -Real -Real -pict)
(-> -pict -Real -Real -Real -Real -pict))]
[black-and-white (-Param Univ -Boolean)]
[freeze (-> -pict -pict)]
;; 5 Bounding Box Adjusters
[inset
(cl->* (-> -pict -Real -pict)
(-> -pict -Real -Real -pict)
(-> -pict -Real -Real -Real -Real -pict))]
[clip-descent (-> -pict -pict)]
[lift-above-baseline (-> -pict -Real -pict)]
[drop-below-ascent (-> -pict -Real -pict)]
[baseless (-> -pict -pict)]
[refocus (-> -pict -pict -pict)]
[panorama (-> -pict -pict)]
[use-last (-> -pict -pict-path -pict)]
[use-last* (-> -pict -pict-path -pict)]
;; 6 Pict Finders
[lt-find -pict-finder]
[ltl-find -pict-finder]
[lc-find -pict-finder]
[lbl-find -pict-finder]
[lb-find -pict-finder]
[ct-find -pict-finder]
[ctl-find -pict-finder]
[cbl-find -pict-finder]
[cb-find -pict-finder]
[rt-find -pict-finder]
[rtl-find -pict-finder]
[rc-find -pict-finder]
[rbl-find -pict-finder]
[rb-find -pict-finder]
[pict-path? (unsafe-shallow:make-pred-ty -pict-path)]
[launder (-> -pict -pict)]
;; 7.1 Dingbats
[cloud (->opt -Real -Real [(Un -String -color)] -pict)]
[file-icon (->opt -Real -Real Univ [Univ] -pict)]
[standard-fish
(->key -Real -Real
#:direction (one-of/c 'left 'right) #f
#:color (Un -String -color) #f
#:eye-color (-opt -String) #f
#:open-mouth (Un -Boolean -Real) #f
-pict)]
[jack-o-lantern (->opt -Real [-String (Un -String -color)] -pict)]
[angel-wing (-> -Real -Real Univ -pict)]
[desktop-machine (->opt -Real [(-lst (one-of/c 'plt 'binary 'devil))] -pict)]
;; thermometer
;; 8 Animation Helpers
[fade-pict (->key -Real -pict -pict
#:combine (-> -pict -pict -pict) #f
-pict)]
[fade-around-pict (-> -Real -pict (-> -pict -pict) -pict)]
[slide-pict (-> -pict -pict -pict -pict -Real -pict)]
[sequence-animations (->* '() (-> -Real -pict) (-> -Real -pict))]
[reverse-animations (->* '() (-> -Real -pict) (-> -Real -pict))]
[fast-start (-> -Real -Real)]
[fast-end (-> -Real -Real)]
[fast-edges (-> -Real -Real)]
[fast-middle (-> -Real -Real)]
[split-phase (-> -Real (-values (list -Real -Real)))]
;; 10 Miscellaneous
[hyperlinkize (-> -pict -pict)]
[scale-color (-> -Real (Un -String -color) -color)]
[color-series (-> -dc -Nat -PosRat
(Un -String -color) (Un -String -color)
(-> -Rat ManyUniv)
Univ Univ
-Void)]
;; 11 Rendering
[dc-for-text-size (-Param (-opt -dc) (-opt -dc))]
[convert-bounds-padding (-Param (-lst* -PosReal -PosReal -PosReal -PosReal)
(-lst* -PosReal -PosReal -PosReal -PosReal))]
[draw-pict (-> -pict -dc -Real -Real -Void)]
[pict->bitmap (->opt -pict [(Un (-val 'unsmoothed) (-val 'smoothed) (-val 'aligned))]
(-inst (parse-type #'Bitmap%)))]
[pict->argb-pixels (->opt -pict [(Un (-val 'unsmoothed) (-val 'smoothed) (-val 'aligned))]
-Bytes)]
[argb-pixels->pict (-> -Bytes -Nat -pict)]
[make-pict-drawer (-> -pict (-> -dc -Real -Real -Void))]
[show-pict (->optkey -pict [(-opt -Nat) (-opt -Nat)]
#:frame-x -Integer #t #:frame-y -Integer #t
#:frame-style (-lst (Un (-val 'no-resize-border) (-val 'no-caption)
(-val 'no-system-menu) (-val 'hide-menu-bar)
(-val 'toolbar-button) (-val 'float)
(-val 'metal))) #t
-Void)]
[current-expected-text-scale (-Param (-lst* -Real -Real) (-lst* -Real -Real))]
)
| false |
d165aadb9261b713785220fc1682c23a31ee72e9 | 3b599e0f15d1b7ce3e42789b2e5c6d477b6a572b | /Lisp/htdp/rocket.rkt | 870b2af624182504845e07c789c0799aa514ae83 | []
| no_license | iacxc/MyProjects | 1b2ccc80fca2c0935e1a91c98a7555b880745297 | 6998c87012273726bb290f5268ba1f8a9fd37381 | refs/heads/master | 2021-01-15T15:45:01.742263 | 2018-03-05T10:41:32 | 2018-03-05T10:41:32 | 25,804,036 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 25,441 | rkt | rocket.rkt | #reader(lib"read.ss""wxme")WXME0108 ##
#|
This file uses the GRacket editor format.
Open this file in DrRacket version 5.3.3 or later to read it.
Most likely, it was created by saving a program in DrRacket,
and it probably contains a program with non-text elements
(such as images or comment boxes).
http://racket-lang.org/
|#
30 7 #"wxtext\0"
3 1 6 #"wxtab\0"
1 1 8 #"wximage\0"
2 0 8 #"wxmedia\0"
4 1 34 #"(lib \"syntax-browser.ss\" \"mrlib\")\0"
1 0 16 #"drscheme:number\0"
3 0 44 #"(lib \"number-snip.ss\" \"drscheme\" \"private\")\0"
1 0 36 #"(lib \"comment-snip.ss\" \"framework\")\0"
1 0 93
(
#"((lib \"collapsed-snipclass.ss\" \"framework\") (lib \"collapsed-sni"
#"pclass-wxme.ss\" \"framework\"))\0"
) 0 0 43 #"(lib \"collapsed-snipclass.ss\" \"framework\")\0"
0 0 19 #"drscheme:sexp-snip\0"
0 0 36 #"(lib \"cache-image-snip.ss\" \"mrlib\")\0"
1 0 68
(
#"((lib \"image-core.ss\" \"mrlib\") (lib \"image-core-wxme.rkt\" \"mr"
#"lib\"))\0"
) 1 0 29 #"drscheme:bindings-snipclass%\0"
1 0 88
(
#"((lib \"pict-snip.rkt\" \"drracket\" \"private\") (lib \"pict-snip.r"
#"kt\" \"drracket\" \"private\"))\0"
) 0 0 33 #"(lib \"bullet-snip.ss\" \"browser\")\0"
0 0 25 #"(lib \"matrix.ss\" \"htdp\")\0"
1 0 22 #"drscheme:lambda-snip%\0"
1 0 26 #"drracket:spacer-snipclass\0"
0 0 57
#"(lib \"hrule-snip.rkt\" \"macro-debugger\" \"syntax-browser\")\0"
1 0 26 #"drscheme:pict-value-snip%\0"
0 0 45 #"(lib \"image-snipr.ss\" \"slideshow\" \"private\")\0"
1 0 38 #"(lib \"pict-snipclass.ss\" \"slideshow\")\0"
2 0 55 #"(lib \"vertical-separator-snip.ss\" \"stepper\" \"private\")\0"
1 0 18 #"drscheme:xml-snip\0"
1 0 31 #"(lib \"xml-snipclass.ss\" \"xml\")\0"
1 0 21 #"drscheme:scheme-snip\0"
2 0 34 #"(lib \"scheme-snipclass.ss\" \"xml\")\0"
1 0 10 #"text-box%\0"
1 0 32 #"(lib \"text-snipclass.ss\" \"xml\")\0"
1 0 1 6 #"wxloc\0"
0 0 84 0 1 #"\0"
0 75 1 #"\0"
0 10 90 -1 90 -1 3 -1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 255 255 255 1 -1 0 9
#"Standard\0"
0 75 9 #"Consolas\0"
0 12 90 -1 90 -1 3 -1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 255 255 255 1 -1 2 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 -1 -1 2 24
#"framework:default-color\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 255 255 255 0 0 0 -1 -1 2
1 #"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 150 0 150 0 0 0 -1 -1 2 15
#"text:ports out\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 192 46 214 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 93 -1 -1 -1 0 0 0 0 0 0 0 0 0 1.0 1.0 1.0 255 0 0 0 0 0 -1
-1 2 15 #"text:ports err\0"
0 -1 1 #"\0"
1.0 0 -1 -1 93 -1 -1 -1 0 0 0 0 0 0 0 0 0 1.0 1.0 1.0 255 0 0 0 0 0 -1
-1 2 1 #"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 175 0 0 0 -1 -1 2 17
#"text:ports value\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 57 89 216 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1.0 0 92 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1.0 1.0 1.0 34 139 34 0 0 0 -1
-1 2 27 #"Matching Parenthesis Style\0"
0 -1 1 #"\0"
1.0 0 92 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1.0 1.0 1.0 34 139 34 0 0 0 -1
-1 2 1 #"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 102 102 255 0 0 0 -1 -1 2
37 #"framework:syntax-color:scheme:symbol\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 102 102 255 0 0 0 -1 -1 2
38 #"framework:syntax-color:scheme:keyword\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 102 102 255 0 0 0 -1 -1 2
1 #"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 249 148 40 0 0 0 -1 -1 2
38 #"framework:syntax-color:scheme:comment\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 249 148 40 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 51 174 51 0 0 0 -1 -1 2 37
#"framework:syntax-color:scheme:string\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 51 174 51 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 60 194 57 0 0 0 -1 -1 2 39
#"framework:syntax-color:scheme:constant\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 60 194 57 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 151 69 43 0 0 0 -1 -1 2 42
#"framework:syntax-color:scheme:parenthesis\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 151 69 43 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 255 0 0 0 0 0 -1 -1 2 36
#"framework:syntax-color:scheme:error\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 255 0 0 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 255 255 255 0 0 0 -1 -1 2
36 #"framework:syntax-color:scheme:other\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 255 255 255 0 0 0 -1 -1 2
16 #"Misspelled Text\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 255 255 255 0 0 0 -1 -1 2
1 #"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 50 163 255 0 0 0 -1 -1 2
38 #"drracket:check-syntax:lexically-bound\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 50 163 255 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 255 192 203 0 0 0 -1 -1 2
28 #"drracket:check-syntax:set!d\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 255 192 203 0 0 0 -1 -1 2
37 #"drracket:check-syntax:unused-require\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 255 192 203 0 0 0 -1 -1 2
36 #"drracket:check-syntax:free-variable\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 255 192 203 0 0 0 -1 -1 2
1 #"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 166 0 255 0 0 0 -1 -1 2 31
#"drracket:check-syntax:imported\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 166 0 255 0 0 0 -1 -1 2 47
#"drracket:check-syntax:my-obligation-style-pref\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 255 192 203 0 0 0 -1 -1 2
1 #"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 50 205 50 0 0 0 -1 -1 2 50
#"drracket:check-syntax:their-obligation-style-pref\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 50 205 50 0 0 0 -1 -1 2 48
#"drracket:check-syntax:unk-obligation-style-pref\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 255 255 255 0 0 0 -1 -1 2
1 #"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 240 230 140 0 0 0 -1 -1 2
49 #"drracket:check-syntax:both-obligation-style-pref\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 240 230 140 0 0 0 -1 -1 2
1 #"\0"
0 -1 1 #"\0"
1 0 -1 -1 90 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 255 255 255 0 0 0 -1 -1 2
26 #"plt:htdp:test-coverage-on\0"
0 -1 1 #"\0"
1 0 -1 -1 90 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 255 255 255 0 0 0 -1 -1 2
1 #"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 205 92 92 0 0 0 -1 -1 2 27
#"plt:htdp:test-coverage-off\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 205 92 92 0 0 0 -1 -1 4 1
#"\0"
0 70 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1.0 1.0 1.0 1.0 1.0 1.0 0 0 0 0 0 0
-1 -1 4 4 #"XML\0"
0 70 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1.0 1.0 1.0 1.0 1.0 1.0 0 0 0 0 0 0
-1 -1 2 1 #"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 34 139 34 0 0 0 -1 -1 2 37
#"plt:module-language:test-coverage-on\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 34 139 34 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 176 48 96 0 0 0 -1 -1 2 38
#"plt:module-language:test-coverage-off\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 176 48 96 0 0 0 -1 -1 4 1
#"\0"
0 71 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1.0 1.0 1.0 1.0 1.0 1.0 0 0 0 0 0 0
-1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 1 0 0 0 0 0 0 0 0 1.0 1.0 1.0 0 0 255 0 0 0 -1
-1 4 1 #"\0"
0 71 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 1 0 0 0 0 0 0 0 0 1.0 1.0 1.0 0 0 255 0 0 0 -1
-1 4 1 #"\0"
0 71 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1.0 1.0 1.0 0 100 0 0 0 0 -1
-1 0 1 #"\0"
0 75 9 #"Consolas\0"
0.0 12 90 -1 90 -1 3 -1 0 1 0 1 0 0 0.0 0.0 0.0 0.0 0.0 0.0 0 0 0 255
255 255 1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 192 46 214 0
0 0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 57 89 216 0
0 0 -1 -1 4 1 #"\0"
0 -1 1 #"\0"
1.0 0 92 -1 -1 -1 -1 -1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 255 255 0 -1 -1 2
1 #"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 200 0 0 0 0 0 -1 -1 4 32
#"widget.rkt::browser-text% basic\0"
0 70 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1.0 1.0 1.0 1.0 1.0 1.0 0 0 0 0 0 0
-1 -1 4 59
#"macro-debugger/syntax-browser/properties color-text% basic\0"
0 70 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1.0 1.0 1.0 1.0 1.0 1.0 0 0 0 0 0 0
-1 -1 63 1 #"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 190 190 190 0 0 0 -1 -1 4
1 #"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 255 255 255 0 0 0 -1 -1 4
1 #"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 255 0 0 0 0 0 -1 -1 4 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 255 0 0 0 -1 -1 4 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 185 220 113 0 0 0 -1 -1 4
1 #"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 155 255 155 0 0 0 -1 -1 4
1 #"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 255 116 116 0 0 0 -1 -1 4
1 #"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 18 67 155 0 0 0 -1 -1 4 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 30 70 190 0 0 0 -1 -1 4 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 75 135 185 0 0 0 -1 -1 4 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 176 208 208 0 0 0 -1 -1 4
1 #"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 116 116 255 0 0 0 -1 -1 4
1 #"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 200 125 255 0 0 0 -1 -1 4
1 #"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 143 15 223 0 0 0 -1 -1 4 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 255 165 0 0 0 0 -1 -1 4 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 141 19 5 0 0 0 -1 -1 4 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 244 194 71 0 0 0 -1 -1 4 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 255 255 127 0 0 0 -1 -1 4
1 #"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 86 86 86 0 0 0 -1 -1 4 1
#"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 -1 -1 -1 1 0 0 0 0 0 0 0 0 1.0 1.0 1.0 255 255 255 0 0 0
-1 -1 0 319 0 27 3 12 #"#lang racket"
0 0 23 29 1 #"\n"
0 0 23 29 1 #"\n"
0 0 23 3 1 #"("
0 0 14 3 7 #"require"
0 0 23 3 1 #" "
0 0 14 3 11 #"2htdp/image"
0 0 23 3 1 #")"
0 0 23 29 1 #"\n"
0 0 23 3 1 #"("
0 0 14 3 7 #"require"
0 0 23 3 1 #" "
0 0 14 3 14 #"2htdp/universe"
0 0 23 3 1 #")"
0 0 23 29 1 #"\n"
0 0 23 29 1 #"\n"
0 0 23 3 1 #"("
0 0 15 3 6 #"define"
0 0 23 3 1 #" "
0 0 14 3 6 #"HEIGHT"
0 0 23 3 1 #" "
0 0 21 3 3 #"300"
0 0 23 3 1 #")"
0 0 23 29 1 #"\n"
0 0 23 3 1 #"("
0 0 15 3 6 #"define"
0 0 23 3 1 #" "
0 0 14 3 5 #"WIDTH"
0 0 23 3 1 #" "
0 0 21 3 3 #"100"
0 0 23 3 1 #")"
0 0 23 29 1 #"\n"
0 0 23 3 1 #"("
0 0 15 3 6 #"define"
0 0 23 3 1 #" "
0 0 14 3 6 #"YDELTA"
0 0 23 3 1 #" "
0 0 21 3 1 #"3"
0 0 23 3 1 #")"
0 0 23 29 1 #"\n"
0 0 23 3 1 #"("
0 0 15 3 6 #"define"
0 0 23 3 1 #" "
0 0 14 3 5 #"BACKG"
0 0 23 3 2 #" ("
0 0 14 3 11 #"empty-scene"
0 0 23 3 1 #" "
0 0 14 3 5 #"WIDTH"
0 0 23 3 1 #" "
0 0 14 3 6 #"HEIGHT"
0 0 23 3 2 #"))"
0 0 23 29 1 #"\n"
0 0 23 3 1 #"("
0 0 15 3 6 #"define"
0 0 23 3 1 #" "
0 0 14 3 6 #"ROCKET"
0 0 23 3 1 #" "
0 2 23 4 1 #"\0"
2 -1.0 -1.0 0.0 0.0 0 6 500
(
#"\211PNG\r\n\32\n\0\0\0\rIHDR\0\0\0\34\0\0\0*\b"
#"\6\0\0\0\240.;$\0\0\v\eIDATX\205\235\230k\260^\325Y"
#"\307\177\353\262\367{?\327$'!\234$\224$\220pM)\240be\270\264X"
#"\332\1;E\206\261\243\37:ZFE"
#"\247\375V\35\265\243m\351h\312\305\332"
#"\351\24+\"\225\20!i\251\25\260b\225\6,\267\20\300\204[r\3101!9"
#"''99\367\367\262/k\255\307\17\373='\207\202_|f\326\354\331\357^"
#"{\377\237\377s[\317\363*\311;\2026\344:\"\0\245\0 \4\r9\240P"
#"d\35G=\262@\212H\233\216\16tL\r\215\245*\212\222R\270 x\357\261"
#"Q\214\17B\244\25A\34\6\5\4\26E\243YvsF\224\200\1\274\203Z\305"
#"\"Y\n\342QQD\325\224\351\314\314"
#"\360\360\203\17\222&m\262,\303j\203"
#"\265\26\r\30\255\310\362\f\361\274_$"
#"\244\22\202\223\\D\362 \22\274\210\370 \342Bq\r\"Y*\205\370D\362\316"
#"i\0217'\177\360\273\237\27\5r\367]\333E\304K\236\347\222\271b\5\21I"
#"\222\244x'\270\367,rI%\227\2\320/\a\314\235H\36\304'\5\250\v^"
#"\274\353\210\270\266<p\357v9gpP\32:\226\213\266\234/\343c\307d\271"
#"\270P(\360\201\200\211d\222\211\23\277H(,\2f\5h\20\311]\220 \""
#">i\311\253O\375\233\\\262r\225l"
#"\354\e\220*HO\271,\277\363\333\237\223N\273)\"\276\300\b\241\0vNB"
#"\b\357Yz\271\367\224,:0\200\2"
#"t\300\211\307#\305\255\251\362\344\356'"
#"\250\3502\235$\303\1\255$\341\241\35;\331\363\314\177\1\232$IPJ}\200"
#"\363\272H\32\315\362\307K\240Z\bZ\360Z"
#"\341u \235O\231\329\316\236\177\335\303\344\311"
) 500
(
#"\31f\222\16\316\32<\32\245-\217<\272\373=\37\16\241\210LQ\357]Zu"
#"\371))H\321\5t\252H\213\214\34"
#"\243,\245J\211;\277\362\227\264\35L"
#"\223\21\3422\1\r\306\322ng<\365\223\247\231\232kR*\227\21)>b\214"
#"9C\340L&t\315\tE\272\b \32\17\2703O\30?6\305\375;\37a"
#".\212Y\240D\256\242\342uU\202\270"
#"\312\330\330I~\366\334\213\4\300\271\260"
#"\304p\311j]\212*\223 \6\320^\235\311O#$:\307\1\6\205!\342{"
#"\367\355\346\276\277}\200s\266^H\245"
#"Q\242\277\257L\255Va\252\231\361\346\233ortt\204ukV\362\343\307\37"
#"\243\32\27n\312\222\224\250\24\27\246\355"
#"*nC\227\303R\322wM\240(\22\337\2\316\301\201\321Q\356}x'\373\217"
#"\35\207\2201\373\306~:\315&\37\276"
#"\374J\256\270\372\343\214\34x\215o\177"
#"s;\323\263MJ\253z\3009\242\330\274/h\354\373~\351F\220\351*\21a"
#"H\275\340\342\n\223\231gN\305\274\372"
#"\322^\236\375\336\375\370N\312\272\313\336"
#"\346\367\276\360Et\265\227\263\327od"
#"\364\3501V\257\270\0\255\24J\27V\223eQ\251\v\362\2520\264\226%\252\6"
#"Uh\343\3\a\337\36\301G1\251)"
#"\23L\205=\317\275\314\211S\263\234\232"
#"\230\344\320\321\223\314$\302\304L\213\313"
#"~\341\243\274\376\346\241\302]\242\300\a \234\tH\26\243t)\377`13U"
#"\0\25\24h\313\243\217=\306\246-\27rbb\22\23\"n\373\314o08\274"
#"\16\6Vr\315\2157\21\242*\301\224Y\267q\23\a\17\217\22<X\253A/"
#"\373X\327W\326v)\a}&H\r\n\3555\20H\363\204G\36\335\305\267v"
#"~\236\243\247RB\2\233\316\336\314\327\356\376&\231"
#"r\314\344\25\332\251\a\e\263\372\254a\306\16\355G"
) 500
(
#"[\20\201\220e\230h\3219\213>\24\217R\213\370K\6^4\0''O\342"
#"\2\314\315\314\260\377\225\203\214\215\317s"
#"jz\22)\247$.EL\203z\265\212Nf\371\310\226\r\234>=M\0\262"
#"\20(\225,\204\256\331\272\325\307\2423"
#"p\1\35U\300\201\366\335\210\tB\260"
#"\232#\307\306i\267\23\276\370\207w\260"
#"y\333\325\\x\325\265l[\177=\312\200s\0316\4\336x\355\25\366\374\370E"
#"\356x\352\207\\\264~\240P\336@\313\245T\245\2042\n\361\240,X\262\24J"
#"\25\322\334\241U\214\266\220\2653\342F"
#"\314B\253\315\3\377\3700\177\376\265\257"
#"\263\352\334mL&\232f\210\231ORz\243:D\32\357s\256\270\354#X\227"
#"\262\266\377S<\367\344N&\247\346\350"
#"\355\215\250\331\22*\330\302W\n\234\200"
#"&\252\21\202!\213b\22\v\251\1\335"
#"\210\231m\266\270\351\346O\263\343\341]"
#"\254]\177\36\256\332\313|\0166\365l"
#"\254\325iL\215\3233\177\232\236\250L"
#"\3565\271\23\206\327}\210j\255\227\253"
#"\256\274\212\346\3444!M\273\271-("
#"S\200\352\302\266\272\260\"\220z!\4"
#"\341;\333\267\363\322\177\374'\275\325:\365\276\1:^c\3422.Ix\354\241"
#"\177\340o\376\342K\334\371\245/\360\314"
#"\323Ocl\231Z\243\2374w4\32\275\214\35}\227\257\376\321\227\211M\t|"
#"\3009\267\24\220\32_\224\240\22P\3"
#"\32F\230?6\312\356{\356\342\262\241"
#"!\372\313\21\265JL\360\36\202 x"
#"\36\377\376C\274}\360E\216\37{\213\327_\337\217\261%:i\312;\243G\21"
#"\37\350\257\366\362\223\37\3743G\366\276"
#"R\260\2124\1\351\2\32K\271R\301"
#"\bX\227\223\317\235\346\376{\276A\277"
#"\b\347\f\f2\264r\25\325\236\36\2027\270\\\223\211a"
#"`\343\26\320%\0\256\276\356:\232\315&&*q\326Y"
) 500
(
#"\253\211\254eE_/\253k\275\334w\367=\340\35\332\32\234wx<:S\340"
#"\25$\255\5P\201\330j\236}\342\tV\17\16r\374\3708q\243\207\271v\300"
#"9\213\211\372\250\364\257\343\216?\275\213"
#"_\373\343\277\342\263_\375k\326o\336"
#"J\251l\311\362\16\343\343c\210\313\231"
#"\232\30cU\275\316\217v?\302\324\221"
#"#@\350\326\200\200\366\241H\322r\255"
#"\6\22x\341G\2173q\344\30N\204\351\244\303\3125g\1\201H\5|\326\301"
#"g\31\225Z\225m\37\275\206s/\271\f\27rJ\261&\204\214F\255DdA"
#"\362\234\220\266\251\253\230\321\303#x\227"
#"a\225\301`\260\225\305V\316h\310\204"
#"#o\34\346\234\341\r\274\362?G\230\2671[#\210$\3012\207\311;\264\246"
#"\346\230\234>MZ\21l)\246\244{\30\354\353\307g-*\225\32\221\rT\""
#"\315\351S'Y3\264\202\227\236\177\201"
#"\313?q\3\2\4<\226\f\210\241\235\264\251\226\"\336>4B\216e\22\230w"
#"\201L\"^\336\273\217\277\337\365C\366"
#"\277\366\26\244\302\306-[Y\320\236\270"
#"Zczr\212\326\261w\3018\256\372\372\237\240$\260\220-0\3\364\351\36N"
#"\2348\1\336\203\325D\30,1\20\5Ldhgs\274q\342\30\207\246f0"
#"\365!\264.s\340\320\4+\317;\311\215\237\272\225[n\353\307u<\271(N"
#"\315\265h%-J\261c\260\257\302\367w\357\344\331\237>\315[?{\226Z\245"
#"N\336i\322\16\201\261\23'\213 1\n\245\24\32\223\39\31-ZI\233\203"
#"\307\2170\331n2\325l\222\317'\\"
#"s\335\365\334r\313\255\f\366\257\340\271"
#"\27\236g!M\251\365\364R\257\365\260"
#"nx\3\275\275\275\354\333\267\217\205\371Yn\276\351&\266^p!\363"
#"\235\204i`!\344L\317\315\201\215\361^\360A\260\250\0>\247n4"
) 500
(
#"\2633\263\214M\214\2239\350\263%|"
#"\24\323\210\25V\245\f\r\326\371\225_"
#"\272\202\321\23\23L\214L\320\\hS*\225\320&0<<\314\302\3544\212\210"
#"4\27T\265F\332\236c\326{\342\271"
#"f\367\344+j\214\365\30\214\321(\17"
#"\373\236{\27183\25dn\201\324\345"
#"\270|\236\2443\313\310\310[\214\235\236"
#"\245\177h5\347o=\17\215\241\325j\341|\340\331g\366033\vh\246\246"
#"g!*a\372z\30\235\232\201R/\244\202\251(P`\23e\311\332\216\376R"
#"\235\211\361\5l\271\312\r\237\274\216\17"
#"_\262\215\311\205\16\355\320\244\247\277\312"
#"\320\332!\306f\346\231>=\303\304\370"
#"I\202\3131Q\314\364B\a\t\232\276"
#"\336\25\344N\350\eX\311\246\v.\342"
#"\340\241\327\360V\263\220f\264\223\214r"
#"\245\204\320m\242\252U\v9\214\34\36"
#"\345\321]?\340\332\217]\213\210\360\346"
#"\310(\337\335\361\b/?\277\207\303\343"
#"3\254\351_\315\310\301Q\\\232\341|"
#"\206-W\330v\321\25\364\364\364\320\231"
#"\237\246l5\375\375\375\374\323\303\337%"
#"H\207{\277\261\235\a\277\375wd\222c]\214\262\n[\5\262$\303\e\313o"
#"~\356\267\270\360\342\213\311\35DQL"
#"\322\312x\347\215\2679\362\316\273\354}"
#"\365\277\31\37?\5\255\24\254\2058&"
#"\2526x\262\272\213\276\336\0016l8\213K\267nfan\232zEcU\215"
#"\257|\371\317\270\364\374\315,\264\247\350"
#"\e\254\222\373\34%\301\311\342i\2740"
#"?O\243\247\17\200$\365\34>|\230\213.\271\24c\"\\\356Ak\342\270L"
#"\326\356@\24\201\216\2402\b\255\204_"
#"\274\376j\306\307\216r\316\272!\236\374"
#"\227\235\30 M\232\210\313i\324\353("
#"\24>x\364\362\16\271\321\323\303rY\263f\r\303\303\303\270"
#"\264\303\346\3636q\373\355\267s\345\225\227\2035T\312%n"
) 400
(
#"\374\344'\270\365\327?M}h\200W"
#"\366\355\345\266[?\303\306\17m \204"
#"\242\213\251\226\2534\352\r\4\310]^\214\0\301\347\342]V\f\245y*\336{"
#"\311\262L\202\210\4\21y\352\337\177*\345Z\237@$P\22LU\260\r\301\324"
#"\205x@\210WK\317\332\213\345\346\317"
#"\376\276\f\234}\276\334y\317w\244\345"
#"E\234\210\244\336I\222u\304K&R\214\274\242Bp\"\"h\255q\316am"
#"\334\275Z\4h6\23\216\37?\316\216"
#"\35;\330\273\367e\16\348\300\311\311)\6z\373p(\326\256?\227\25\253V"
#"r\301\226\363\271\341W?\316\r\37\373e\f\320\351$\324+e\324\262\371^D"
#"P\336\347\242\265&\204\200\326\32\221\242"
#"\4\211@\b\2026\212$q\224\313\26\347\212\227\346\347\347QJ3==\315\212"
#"\241\265\324\32\226\340\213\306L\t\370\20"
#"\210\215.\216$\361\344y^\2245\255Q\336{\321Z\223e\31q\34/]\27"
#"\25\350\266$8\347\211\"C\232\346\224"
#"J\21\336\2011\335\236\266\313\300\371\2"
#"\210n\253y\206\204,\r\251*\204\2604\301)\245\b!,\315w\213f\216\242"
#"\b\347BQ\221T\241\200xAk\212\326A\5\b\2021\21y\236\27s\241R"
#",\272\212.\270\367\376\275\200\37$?"
#"?P\276\177\203C\324\342\276e\177\274"
#"tg\206\345\203\314\317\355\370\177"
#"\210\n]\245\26\265\n\377\367\336\256\374/\21%|"
#"\362\247\351\333Y\0\0\0\0IEND\256B`\202"
) 0 0 23 3 1 #")"
0 0 23 29 1 #"\n"
0 0 23 3 1 #"("
0 0 15 3 6 #"define"
0 0 23 3 1 #" "
0 0 14 3 13 #"ROCKET-CENTER"
0 0 23 3 2 #" ("
0 0 14 3 1 #"/"
0 0 23 3 2 #" ("
0 0 14 3 12 #"image-height"
0 0 23 3 1 #" "
0 0 14 3 6 #"ROCKET"
0 0 23 3 2 #") "
0 0 21 3 1 #"2"
0 0 23 3 2 #"))"
0 0 23 29 1 #"\n"
0 0 23 29 1 #"\n"
0 0 23 3 1 #"("
0 0 15 3 6 #"define"
0 0 23 3 2 #" ("
0 0 14 3 4 #"show"
0 0 23 3 1 #" "
0 0 14 3 1 #"x"
0 0 23 3 1 #")"
0 0 23 29 1 #"\n"
0 0 23 3 5 #" ("
0 0 15 3 6 #"define"
0 0 23 3 2 #" ("
0 0 14 3 10 #"put-rocket"
0 0 23 3 1 #" "
0 0 14 3 1 #"x"
0 0 23 3 3 #") ("
0 0 14 3 11 #"place-image"
0 0 23 3 1 #" "
0 0 14 3 6 #"ROCKET"
0 0 23 3 2 #" ("
0 0 14 3 11 #"image-width"
0 0 23 3 1 #" "
0 0 14 3 6 #"ROCKET"
0 0 23 3 3 #") ("
0 0 14 3 1 #"-"
0 0 23 3 1 #" "
0 0 14 3 1 #"x"
0 0 23 3 1 #" "
0 0 14 3 13 #"ROCKET-CENTER"
0 0 23 3 2 #") "
0 0 14 3 5 #"BACKG"
0 0 23 3 2 #"))"
0 0 23 29 1 #"\n"
0 0 23 3 5 #" ("
0 0 15 3 4 #"cond"
0 0 23 3 4 #" [ ("
0 0 14 3 7 #"string?"
0 0 23 3 1 #" "
0 0 14 3 1 #"x"
0 0 23 3 3 #") ("
0 0 14 3 10 #"put-rocket"
0 0 23 3 1 #" "
0 0 14 3 6 #"HEIGHT"
0 0 23 3 3 #") ]"
0 0 23 29 1 #"\n"
0 0 23 3 13 #" [ ("
0 0 14 3 2 #"<="
0 0 23 3 1 #" "
0 0 21 3 2 #"-3"
0 0 23 3 1 #" "
0 0 14 3 1 #"x"
0 0 23 3 1 #" "
0 0 21 3 2 #"-1"
0 0 23 3 2 #") "
0 0 23 29 1 #"\n"
0 0 23 3 17 #" ("
0 0 14 3 11 #"place-image"
0 0 23 3 2 #" ("
0 0 14 3 4 #"text"
0 0 23 3 2 #" ("
0 0 14 3 14 #"number->string"
0 0 23 3 1 #" "
0 0 14 3 1 #"x"
0 0 23 3 2 #") "
0 0 21 3 2 #"20"
0 0 23 3 1 #" "
0 0 19 3 5 #"\"red\""
0 0 23 3 2 #") "
0 0 21 3 2 #"10"
0 0 23 3 2 #" ("
0 0 14 3 1 #"*"
0 0 23 3 1 #" "
0 0 21 3 3 #"3/4"
0 0 23 3 1 #" "
0 0 14 3 5 #"WIDTH"
0 0 23 3 1 #")"
0 0 23 29 1 #"\n"
0 0 23 3 30 #" ("
0 0 14 3 10 #"put-rocket"
0 0 23 3 1 #" "
0 0 14 3 6 #"HEIGHT"
0 0 23 3 3 #"))]"
0 0 23 29 1 #"\n"
0 0 23 3 13 #" [ ("
0 0 14 3 2 #">="
0 0 23 3 1 #" "
0 0 14 3 1 #"x"
0 0 23 3 1 #" "
0 0 21 3 1 #"0"
0 0 23 3 3 #") ("
0 0 14 3 10 #"put-rocket"
0 0 23 3 1 #" "
0 0 14 3 1 #"x"
0 0 23 3 5 #") ]))"
0 0 23 29 1 #"\n"
0 0 23 3 10 #" "
0 0 23 29 1 #"\n"
0 0 23 3 1 #"("
0 0 15 3 6 #"define"
0 0 23 3 2 #" ("
0 0 14 3 6 #"launch"
0 0 23 3 1 #" "
0 0 14 3 1 #"x"
0 0 23 3 1 #" "
0 0 14 3 2 #"ke"
0 0 23 3 1 #")"
0 0 23 29 1 #"\n"
0 0 23 3 5 #" ("
0 0 15 3 4 #"cond"
0 0 23 3 4 #" [ ("
0 0 14 3 7 #"string?"
0 0 23 3 1 #" "
0 0 14 3 1 #"x"
0 0 23 3 3 #") ("
0 0 14 3 2 #"if"
0 0 23 3 2 #" ("
0 0 14 3 8 #"string=?"
0 0 23 3 1 #" "
0 0 19 3 3 #"\" \""
0 0 23 3 1 #" "
0 0 14 3 2 #"ke"
0 0 23 3 2 #") "
0 0 21 3 2 #"-3"
0 0 23 3 1 #" "
0 0 14 3 1 #"x"
0 0 23 3 3 #") ]"
0 0 23 29 1 #"\n"
0 0 23 3 12 #" [ "
0 0 14 3 4 #"else"
0 0 23 3 1 #" "
0 0 14 3 1 #"x"
0 0 23 3 4 #" ]))"
0 0 23 29 1 #"\n"
0 0 23 29 1 #"\n"
0 0 23 3 1 #"("
0 0 15 3 6 #"define"
0 0 23 3 2 #" ("
0 0 14 3 3 #"fly"
0 0 23 3 1 #" "
0 0 14 3 1 #"x"
0 0 23 3 1 #")"
0 0 23 29 1 #"\n"
0 0 23 3 5 #" ("
0 0 15 3 4 #"cond"
0 0 23 3 4 #" [ ("
0 0 14 3 7 #"string?"
0 0 23 3 1 #" "
0 0 14 3 1 #"x"
0 0 23 3 2 #") "
0 0 14 3 1 #"x"
0 0 23 3 2 #" ]"
0 0 23 29 1 #"\n"
0 0 23 3 13 #" [ ("
0 0 14 3 2 #"<="
0 0 23 3 1 #" "
0 0 21 3 2 #"-3"
0 0 23 3 1 #" "
0 0 14 3 1 #"x"
0 0 23 3 1 #" "
0 0 21 3 2 #"-1"
0 0 23 3 3 #") ("
0 0 14 3 2 #"if"
0 0 23 3 2 #" ("
0 0 14 3 1 #"="
0 0 23 3 1 #" "
0 0 14 3 1 #"x"
0 0 23 3 1 #" "
0 0 21 3 2 #"-1"
0 0 23 3 2 #") "
0 0 14 3 6 #"HEIGHT"
0 0 23 3 2 #" ("
0 0 14 3 1 #"+"
0 0 23 3 1 #" "
0 0 14 3 1 #"x"
0 0 23 3 1 #" "
0 0 21 3 1 #"1"
0 0 23 3 4 #")) ]"
0 0 23 29 1 #"\n"
0 0 23 3 13 #" [ ("
0 0 14 3 2 #">="
0 0 23 3 1 #" "
0 0 14 3 1 #"x"
0 0 23 3 1 #" "
0 0 21 3 1 #"0"
0 0 23 3 3 #") ("
0 0 14 3 1 #"-"
0 0 23 3 1 #" "
0 0 14 3 1 #"x"
0 0 23 3 1 #" "
0 0 14 3 6 #"YDELTA"
0 0 23 3 5 #") ]))"
0 0 23 29 1 #"\n"
0 0 23 29 1 #"\n"
0 0 23 3 1 #"("
0 0 15 3 6 #"define"
0 0 23 3 2 #" ("
0 0 14 3 7 #"finish?"
0 0 23 3 1 #" "
0 0 14 3 1 #"x"
0 0 23 3 1 #")"
0 0 23 29 1 #"\n"
0 0 23 3 5 #" ("
0 0 14 3 3 #"and"
0 0 23 3 2 #" ("
0 0 14 3 7 #"number?"
0 0 23 3 1 #" "
0 0 14 3 1 #"x"
0 0 23 3 3 #") ("
0 0 14 3 1 #"="
0 0 23 3 1 #" "
0 0 14 3 1 #"x"
0 0 23 3 1 #" "
0 0 21 3 1 #"0"
0 0 23 3 3 #")))"
0 0 23 29 1 #"\n"
0 0 23 29 1 #"\n"
0 0 23 3 1 #"("
0 0 15 3 6 #"define"
0 0 23 3 2 #" ("
0 0 14 3 5 #"main2"
0 0 23 3 1 #" "
0 0 14 3 1 #"s"
0 0 23 3 1 #")"
0 0 23 29 1 #"\n"
0 0 23 3 5 #" ("
0 0 14 3 8 #"big-bang"
0 0 23 3 1 #" "
0 0 14 3 1 #"s"
0 0 23 3 2 #" ("
0 0 14 3 7 #"on-tick"
0 0 23 3 1 #" "
0 0 14 3 3 #"fly"
0 0 23 3 3 #") ("
0 0 14 3 7 #"to-draw"
0 0 23 3 1 #" "
0 0 14 3 4 #"show"
0 0 23 3 3 #") ("
0 0 14 3 6 #"on-key"
0 0 23 3 1 #" "
0 0 14 3 6 #"launch"
0 0 23 3 3 #") ("
0 0 14 3 9 #"stop-when"
0 0 23 3 1 #" "
0 0 14 3 7 #"finish?"
0 0 23 3 3 #")))"
0 0
| false |
0b7f5eebbfdacd2b9319d3a580ffa31bd1ab47cd | bb14dc54eb1c44a6b17b352e7dcca5e26a195876 | /tests/interp/types3.rkt | a2fb4db26a2502341ec417bd945b1cb14279682f | [
"Apache-2.0"
]
| permissive | mtdol/cm | e1d96ac42377bbd833fcde4be7ff69f8a25fdd78 | 4dbec0bf18d41fda1df2488453077ec8c3f5e3cf | refs/heads/main | 2023-06-22T20:14:27.730795 | 2021-07-18T05:01:56 | 2021-07-18T05:01:56 | 341,087,770 | 0 | 0 | null | 2021-04-24T02:03:55 | 2021-02-22T05:17:00 | Racket | UTF-8 | Racket | false | false | 413 | rkt | types3.rkt | #lang racket
(require cm/tests/test-utils rackunit)
(run-silent "typedef S := types (\"int\", \"float\";) a, types (\"string\", \"dynamic\";) b;")
(check-equal? (run "string struct S (4.2, 7;)")
"(struct S (4.2, 7;))")
(check-equal? (run "string struct S (4, 7;)")
"(struct S (4, 7;))")
(check-equal? (run "string struct S (4, true;)")
"(struct S (4, true;))")
(check-failure run "string struct S (true, 7;)")
| false |
32f7ec3e1aa0e8f70ac77d6d83dd48ba1b3e7a7e | 23d78f4c06e9d61b7d90d8ebd035eb1958fe2348 | /racket/monad/example.rkt | 7b4ac761cd70a4f5399100bb8338191e2b9fec1a | [
"Unlicense"
]
| permissive | seckcoder/pl_research | e9f5dbce4f56f262081318e12abadd52c79d081d | 79bb72a37d3862fb4afcf4e661ada27574db5644 | refs/heads/master | 2016-09-16T09:40:34.678436 | 2014-03-22T02:31:08 | 2014-03-22T02:31:08 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 3,589 | rkt | example.rkt | #lang racket
; id monad
; return: a -> ma
; bind: ma * (a -> mb) -> mb
(module id racket
(define return (lambda (a) a))
(define bind (lambda (ma f) (f ma)))
; monadic plus
(define plus
(lambda (a b)
(bind
(return (+ a b)) ; ma
(lambda (x) (return x)) ; a -> mb
)))
)
(module id1 racket
(define bind
(lambda (ma sequel)
(sequel ma)))
(define unit
(lambda (a)
a))
(bind (unit (printf "One\n"))
(lambda (_)
(unit (printf "Two\n"))))
(bind (unit 5)
(lambda (x)
(unit (+ 3 x))))
)
(define rem-count-evens
(lambda (l)
(cond
((null? l) `(,l . 0))
((list? (car l))
(match (rem-count-evens (car l))
[(cons l1 n1)
(match (rem-count-evens (cdr l))
[(cons l2 n2)
(cons (cons l1 l2)
(+ n1 n2))])]))
((odd? (car l))
(match (rem-count-evens (cdr l))
[(cons l1 n1)
(cons (cons (car l) l1) n1)]))
(else
(match (rem-count-evens (cdr l))
[(cons l1 n1)
(cons l1 (+ 1 n1))]))
)))
;(rem-count-evens '((1 2 3) 4 6 7 (2 9 83 35)))
(define remberevens-pure
(lambda (l)
(cond
((null? l) '())
((list? (car l))
(cons (remberevens-pure (car l))
(remberevens-pure (cdr l))))
((odd? (car l))
(cons (car l)
(remberevens-pure (cdr l))))
(else (remberevens-pure (cdr l))))))
#|(define unit (lambda (a) ma))
(define f (lambda (a) b))
(define sequel
(lambda (a)
(unit (f a))))
(define star
(lambda (sequel)
(lambda (ma)
mb)))|#
(module state racket
(provide rember-even)
(define unit
(lambda (a)
(lambda (s)
`(,a . ,s))))
(define star
(lambda (sequel)
(lambda (ma)
(lambda (s)
(match (ma s)
[(cons new-a new-s)
(let ((mb (sequel new-a)))
(mb new-s))])))))
#|(define rember-even
(lambda (l)
(cond
((null? l)
(unit (cons '() 0)))
((list? (car l))
((star (lambda (a)
((star (lambda (d)
(unit (cons (cons (car a)
(car d))
(+ (cdr a)
(cdr d))))))
(rember-even (cdr l)))))
(rember-even (car l))))
((odd? (car l))
((star (lambda (d)
(unit (cons (cons (car l)
(car d))
(cdr d)))))
(rember-even (cdr l))))
(else
((star (lambda (d)
(unit (cons (car d)
(+ 1 (cdr d))))))
(rember-even (cdr l)))))))|#
(define rember-even
(lambda (l)
(cond
((null? l)
(unit '()))
((list? (car l))
((star (lambda (a)
((star (lambda (d)
(unit (cons a d))))
(rember-even (cdr l)))))
(rember-even (car l))))
((odd? (car l))
((star (lambda (d)
(unit (cons (car l)
d))))
(rember-even (cdr l))))
(else
((star (lambda (d)
(rember-even (cdr l))))
(lambda (s)
`(_ . ,(+ 1 s))))))
))
)
(require 'state)
((rember-even '((1 2 3) 4 6 7 (2 9 83 35))) 0)
| false |
e78000ee68ee7e27fd67d401db8aad5b325257d6 | 7759bda0d7e3b45aa77f25657c365b525f22a473 | /monadic-eval/paper/06-widening.scrbl | b88710a54c9e5fd9d812edc9f8c3cbe2c0c8e00b | []
| no_license | plum-umd/abstracting-definitional-interpreters | 89bafe22c8f7d861c43edd2153f7309958b0c398 | 7a51f429227dd11b371b9a27f83b8aa0f6adb5d3 | refs/heads/master | 2021-08-19T07:13:31.621906 | 2017-11-25T04:19:30 | 2017-11-25T04:19:30 | 5,044,629 | 61 | 2 | null | 2017-11-25T04:19:31 | 2012-07-14T04:27:57 | TeX | UTF-8 | Racket | false | false | 2,101 | scrbl | 06-widening.scrbl | #lang scribble/acmart @acmlarge
@(require scriblib/figure
scribble/manual
scribble/eval
"evals.rkt"
"bib.rkt")
@title[#:tag "s:widening"]{Widening the Store}
In this section, we show how to recover the well-known technique of
store-widening and in doing so demonstrate the ease with which we can
construct existing abstraction design choices.
The abstract interpreter we've constructed so far uses a
store-per-program-state abstraction, which is precise but
prohibitively expensive. A common technique to combat this cost is to
use a global ``widened'' store@~cite["dvanhorn:might-phd"
"dvanhorn:Shivers:1991:CFA"], which over-approximates each individual
store in the current set-up. This change is achieved easily in the
monadic setup by re-ordering the monad stack, a technique due to
@citet{local:darais-oopsla2015}. Whereas before we had
@racket[monad-cache@] we instead swap the order of @racket[StateT] for
the store and @racket[NondetT]:
@racketblock[
(ReaderT (FailT (NondetT (StateT+ (ReaderT (StateT+ ID))))))
]
we get a store-widened variant of the abstract interpreter. Because
@racket[StateT] for the store appears underneath nondeterminism, it
will be automatically widened. We write @racket[StateT+] to signify
that the cell of state supports such widening.
@figure["f:pres-delta" "An Alternative Abstraction for Precise Primitives"]{
@filebox[@racket[precise-δ@]]{
@racketblock[
(define (δ o n₀ n₁)
(match* (o n₀ n₁)
[('+ (? num?) (? num?)) (return (+ n₀ n₁))]
[('+ _ _ ) (return 'N)] ... ))
(define (zero? v)
(match v
['N (mplus (return #t) (return #f))]
[_ (return (= 0 v))]))
]}
@filebox[@racket[store-crush@]]{
@racketblock[
(define (find a)
(do σ ← get-store
(for/monad+ ([v (σ a)])
(return v))))
(define (crush v vs)
(if (closure? v)
(set-add vs v)
(set-add (set-filter closure? vs) 'N)))
(define (ext a v)
(update-store (λ (σ) (if (∈ a σ)
(σ a (crush v (σ a)))
(σ a (set v))))))
]}}
| false |
650767e970cc50664a4095bc8bbd94822c0f383a | 821e50b7be0fc55b51f48ea3a153ada94ba01680 | /exp4/guide/scribblings/guide/futures.scrbl | dc155331af93bf288e782997764a0c4c7221cfbf | []
| no_license | LeifAndersen/experimental-methods-in-pl | 85ee95c81c2e712ed80789d416f96d3cfe964588 | cf2aef11b2590c4deffb321d10d31f212afd5f68 | refs/heads/master | 2016-09-06T05:22:43.353721 | 2015-01-12T18:19:18 | 2015-01-12T18:19:18 | 24,478,292 | 1 | 0 | null | 2014-12-06T20:53:40 | 2014-09-25T23:00:59 | Racket | UTF-8 | Racket | false | false | 30,031 | scrbl | futures.scrbl | #lang scribble/doc
@(require scribble/manual scribble/eval "guide-utils.rkt"
@; stamourv: stubbed out dependencies that looped back to scribble
@; and expect a recent scribble
@; (for-label racket/flonum racket/future future-visualizer)
)
@(define future-eval (make-base-eval))
@; @(interaction-eval #:eval future-eval (require racket/future
@; future-visualizer/private/visualizer-drawing
@; future-visualizer/trace))
@title[#:tag "effective-futures"]{Parallelism with Futures}
The @racketmodname[racket/future] library provides support for
performance improvement through parallelism with the @racket[future]
and @racket[touch] functions. The level of parallelism available from
those constructs, however, is limited by several factors, and the
current implementation is best suited to numerical tasks.
@margin-note{Other functions, such as @racket[thread], support the
creation of reliably concurrent tasks. However, threads never run truly
in parallel, even if the hardware and operating system support
parallelism.}
As a starting example, the @racket[any-double?] function below takes a
list of numbers and determines whether any number in the list has a
double that is also in the list:
@racketblock[
(define (any-double? l)
(for/or ([i (in-list l)])
(for/or ([i2 (in-list l)])
(= i2 (* 2 i)))))
]
This function runs in quadratic time, so it can take a long time (on
the order of a second) on large lists like @racket[l1] and
@racket[l2]:
@racketblock[
(define l1 (for/list ([i (in-range 5000)])
(+ (* 2 i) 1)))
(define l2 (for/list ([i (in-range 5000)])
(- (* 2 i) 1)))
(or (any-double? l1)
(any-double? l2))
]
The best way to speed up @racket[any-double?] is to use a different
algorithm. However, on a machine that offers at least two processing
units, the example above can run in about half the time using
@racket[future] and @racket[touch]:
@racketblock[
(let ([f (future (lambda () (any-double? l2)))])
(or (any-double? l1)
(touch f)))
]
The future @racket[f] runs @racket[(any-double? l2)] in parallel to
@racket[(any-double? l1)], and the result for @racket[(any-double?
l2)] becomes available about the same time that it is demanded by
@racket[(touch f)].
Futures run in parallel as long as they can do so safely, but the
notion of ``future safe'' is inherently tied to the
implementation. The distinction between ``future safe'' and ``future unsafe''
operations may be far from apparent at the level of a Racket program.
The remainder of this section works through an example to illustrate
this distinction and to show how to use the future visualizer
can help shed light on it.
Consider the following core of a Mandelbrot-set computation:
@racketblock[
(define (mandelbrot iterations x y n)
(let ([ci (- (/ (* 2.0 y) n) 1.0)]
[cr (- (/ (* 2.0 x) n) 1.5)])
(let loop ([i 0] [zr 0.0] [zi 0.0])
(if (> i iterations)
i
(let ([zrq (* zr zr)]
[ziq (* zi zi)])
(cond
[(> (+ zrq ziq) 4) i]
[else (loop (add1 i)
(+ (- zrq ziq) cr)
(+ (* 2 zr zi) ci))]))))))
]
The expressions @racket[(mandelbrot 10000000 62 500 1000)] and
@racket[(mandelbrot 10000000 62 501 1000)] each take a while to
produce an answer. Computing them both, of course, takes twice as
long:
@racketblock[
(list (mandelbrot 10000000 62 500 1000)
(mandelbrot 10000000 62 501 1000))
]
Unfortunately, attempting to run the two computations in parallel with
@racket[future] does not improve performance:
@racketblock[
(let ([f (future (lambda () (mandelbrot 10000000 62 501 1000)))])
(list (mandelbrot 10000000 62 500 1000)
(touch f)))
]
To see why, use the @racketmodname[future-visualizer], like this:
@racketblock[
(require future-visualizer)
(visualize-futures
(let ([f (future (lambda () (mandelbrot 10000000 62 501 1000)))])
(list (mandelbrot 10000000 62 500 1000)
(touch f))))]
This opens a window showing a graphical view of a trace of the computation.
The upper-left portion of the window contains an execution timeline:
@; @(interaction-eval
@; #:eval future-eval
@; (define bad-log
@; (list (indexed-future-event 0 '#s(future-event #f 0 create 1334778390997.936 #f 1))
@; (indexed-future-event 1 '#s(future-event 1 1 start-work 1334778390998.137 #f #f))
@; (indexed-future-event 2 '#s(future-event 1 1 sync 1334778390998.145 #f #f))
@; (indexed-future-event 3 '#s(future-event 1 0 sync 1334778391001.616 [allocate memory] #f))
@; (indexed-future-event 4 '#s(future-event 1 0 result 1334778391001.629 #f #f))
@; (indexed-future-event 5 '#s(future-event 1 1 result 1334778391001.643 #f #f))
@; (indexed-future-event 6 '#s(future-event 1 1 block 1334778391001.653 #f #f))
@; (indexed-future-event 7 '#s(future-event 1 1 suspend 1334778391001.658 #f #f))
@; (indexed-future-event 8 '#s(future-event 1 1 end-work 1334778391001.658 #f #f))
@; (indexed-future-event 9 '#s(future-event 1 0 block 1334778392134.226 > #f))
@; (indexed-future-event 10 '#s(future-event 1 0 result 1334778392134.241 #f #f))
@; (indexed-future-event 11 '#s(future-event 1 1 start-work 1334778392134.254 #f #f))
@; (indexed-future-event 12 '#s(future-event 1 1 sync 1334778392134.339 #f #f))
@; (indexed-future-event 13 '#s(future-event 1 0 sync 1334778392134.375 [allocate memory] #f))
@; (indexed-future-event 14 '#s(future-event 1 0 result 1334778392134.38 #f #f))
@; (indexed-future-event 15 '#s(future-event 1 1 result 1334778392134.387 #f #f))
@; (indexed-future-event 16 '#s(future-event 1 1 block 1334778392134.39 #f #f))
@; (indexed-future-event 17 '#s(future-event 1 1 suspend 1334778392134.391 #f #f))
@; (indexed-future-event 18 '#s(future-event 1 1 end-work 1334778392134.391 #f #f))
@; (indexed-future-event 19 '#s(future-event 1 0 touch-pause 1334778392134.432 #f #f))
@; (indexed-future-event 20 '#s(future-event 1 0 touch-resume 1334778392134.433 #f #f))
@; (indexed-future-event 21 '#s(future-event 1 0 block 1334778392134.533 * #f))
@; (indexed-future-event 22 '#s(future-event 1 0 result 1334778392134.537 #f #f))
@; (indexed-future-event 23 '#s(future-event 1 2 start-work 1334778392134.568 #f #f))
@; (indexed-future-event 24 '#s(future-event 1 2 sync 1334778392134.57 #f #f))
@; (indexed-future-event 25 '#s(future-event 1 0 touch-pause 1334778392134.587 #f #f))
@; (indexed-future-event 26 '#s(future-event 1 0 touch-resume 1334778392134.587 #f #f))
@; (indexed-future-event 27 '#s(future-event 1 0 block 1334778392134.6 [allocate memory] #f))
@; (indexed-future-event 28 '#s(future-event 1 0 result 1334778392134.604 #f #f))
@; (indexed-future-event 29 '#s(future-event 1 2 result 1334778392134.627 #f #f))
@; (indexed-future-event 30 '#s(future-event 1 2 block 1334778392134.629 #f #f))
@; (indexed-future-event 31 '#s(future-event 1 2 suspend 1334778392134.632 #f #f))
@; (indexed-future-event 32 '#s(future-event 1 2 end-work 1334778392134.633 #f #f))
@; (indexed-future-event 33 '#s(future-event 1 0 touch-pause 1334778392134.64 #f #f))
@; (indexed-future-event 34 '#s(future-event 1 0 touch-resume 1334778392134.64 #f #f))
@; (indexed-future-event 35 '#s(future-event 1 0 block 1334778392134.663 > #f))
@; (indexed-future-event 36 '#s(future-event 1 0 result 1334778392134.666 #f #f))
@; (indexed-future-event 37 '#s(future-event 1 1 start-work 1334778392134.673 #f #f))
@; (indexed-future-event 38 '#s(future-event 1 1 block 1334778392134.676 #f #f))
@; (indexed-future-event 39 '#s(future-event 1 1 suspend 1334778392134.677 #f #f))
@; (indexed-future-event 40 '#s(future-event 1 1 end-work 1334778392134.677 #f #f))
@; (indexed-future-event 41 '#s(future-event 1 0 touch-pause 1334778392134.704 #f #f))
@; (indexed-future-event 42 '#s(future-event 1 0 touch-resume 1334778392134.704 #f #f))
@; (indexed-future-event 43 '#s(future-event 1 0 block 1334778392134.727 * #f))
@; (indexed-future-event 44 '#s(future-event 1 0 result 1334778392134.73 #f #f))
@; (indexed-future-event 45 '#s(future-event 1 2 start-work 1334778392134.737 #f #f))
@; (indexed-future-event 46 '#s(future-event 1 2 block 1334778392134.739 #f #f))
@; (indexed-future-event 47 '#s(future-event 1 2 suspend 1334778392134.74 #f #f))
@; (indexed-future-event 48 '#s(future-event 1 2 end-work 1334778392134.741 #f #f))
@; (indexed-future-event 49 '#s(future-event 1 0 touch-pause 1334778392134.767 #f #f))
@; (indexed-future-event 50 '#s(future-event 1 0 touch-resume 1334778392134.767 #f #f))
@; (indexed-future-event 51 '#s(future-event 1 0 block 1334778392134.79 > #f))
@; (indexed-future-event 52 '#s(future-event 1 0 result 1334778392134.793 #f #f))
@; (indexed-future-event 53 '#s(future-event 1 1 start-work 1334778392134.799 #f #f))
@; (indexed-future-event 54 '#s(future-event 1 1 block 1334778392134.801 #f #f))
@; (indexed-future-event 55 '#s(future-event 1 1 suspend 1334778392134.802 #f #f))
@; (indexed-future-event 56 '#s(future-event 1 1 end-work 1334778392134.803 #f #f))
@; (indexed-future-event 57 '#s(future-event 1 0 touch-pause 1334778392134.832 #f #f))
@; (indexed-future-event 58 '#s(future-event 1 0 touch-resume 1334778392134.832 #f #f))
@; (indexed-future-event 59 '#s(future-event 1 0 block 1334778392134.854 * #f))
@; (indexed-future-event 60 '#s(future-event 1 0 result 1334778392134.858 #f #f))
@; (indexed-future-event 61 '#s(future-event 1 2 start-work 1334778392134.864 #f #f))
@; (indexed-future-event 62 '#s(future-event 1 2 block 1334778392134.876 #f #f))
@; (indexed-future-event 63 '#s(future-event 1 2 suspend 1334778392134.877 #f #f))
@; (indexed-future-event 64 '#s(future-event 1 2 end-work 1334778392134.882 #f #f))
@; (indexed-future-event 65 '#s(future-event 1 0 touch-pause 1334778392134.918 #f #f))
@; (indexed-future-event 66 '#s(future-event 1 0 touch-resume 1334778392134.918 #f #f))
@; (indexed-future-event 67 '#s(future-event 1 0 block 1334778392134.94 > #f))
@; (indexed-future-event 68 '#s(future-event 1 0 result 1334778392134.943 #f #f))
@; (indexed-future-event 69 '#s(future-event 1 1 start-work 1334778392134.949 #f #f))
@; (indexed-future-event 70 '#s(future-event 1 1 block 1334778392134.952 #f #f))
@; (indexed-future-event 71 '#s(future-event 1 1 suspend 1334778392134.953 #f #f))
@; (indexed-future-event 72 '#s(future-event 1 1 end-work 1334778392134.96 #f #f))
@; (indexed-future-event 73 '#s(future-event 1 0 touch-pause 1334778392134.991 #f #f))
@; (indexed-future-event 74 '#s(future-event 1 0 touch-resume 1334778392134.991 #f #f))
@; (indexed-future-event 75 '#s(future-event 1 0 block 1334778392135.013 * #f))
@; (indexed-future-event 76 '#s(future-event 1 0 result 1334778392135.016 #f #f))
@; (indexed-future-event 77 '#s(future-event 1 2 start-work 1334778392135.027 #f #f))
@; (indexed-future-event 78 '#s(future-event 1 2 block 1334778392135.033 #f #f))
@; (indexed-future-event 79 '#s(future-event 1 2 suspend 1334778392135.034 #f #f))
@; (indexed-future-event 80 '#s(future-event 1 2 end-work 1334778392135.04 #f #f))
@; (indexed-future-event 81 '#s(future-event 1 0 touch-pause 1334778392135.075 #f #f))
@; (indexed-future-event 82 '#s(future-event 1 0 touch-resume 1334778392135.075 #f #f))
@; (indexed-future-event 83 '#s(future-event 1 0 block 1334778392135.098 > #f))
@; (indexed-future-event 84 '#s(future-event 1 0 result 1334778392135.101 #f #f))
@; (indexed-future-event 85 '#s(future-event 1 1 start-work 1334778392135.107 #f #f))
@; (indexed-future-event 86 '#s(future-event 1 1 block 1334778392135.117 #f #f))
@; (indexed-future-event 87 '#s(future-event 1 1 suspend 1334778392135.118 #f #f))
@; (indexed-future-event 88 '#s(future-event 1 1 end-work 1334778392135.123 #f #f))
@; (indexed-future-event 89 '#s(future-event 1 0 touch-pause 1334778392135.159 #f #f))
@; (indexed-future-event 90 '#s(future-event 1 0 touch-resume 1334778392135.159 #f #f))
@; (indexed-future-event 91 '#s(future-event 1 0 block 1334778392135.181 * #f))
@; (indexed-future-event 92 '#s(future-event 1 0 result 1334778392135.184 #f #f))
@; (indexed-future-event 93 '#s(future-event 1 2 start-work 1334778392135.19 #f #f))
@; (indexed-future-event 94 '#s(future-event 1 2 block 1334778392135.191 #f #f))
@; (indexed-future-event 95 '#s(future-event 1 2 suspend 1334778392135.192 #f #f))
@; (indexed-future-event 96 '#s(future-event 1 2 end-work 1334778392135.192 #f #f))
@; (indexed-future-event 97 '#s(future-event 1 0 touch-pause 1334778392135.221 #f #f))
@; (indexed-future-event 98 '#s(future-event 1 0 touch-resume 1334778392135.221 #f #f))
@; (indexed-future-event 99 '#s(future-event 1 0 block 1334778392135.243 > #f))
@; )))
@; @interaction-eval-show[
@; #:eval future-eval
@; (timeline-pict bad-log
@; #:x 0
@; #:y 0
@; #:width 600
@; #:height 300)
@; ]
Each horizontal row represents an OS-level thread, and the colored
dots represent important events in the execution of the program (they are
color-coded to distinguish one event type from another). The upper-left blue
dot in the timeline represents the future's creation. The future
executes for a brief period (represented by a green bar in the second line) on thread
1, and then pauses to allow the runtime thread to perform a future-unsafe operation.
In the Racket implementation, future-unsafe operations fall into one of two categories.
A @deftech{blocking} operation halts the evaluation of the future, and will not allow
it to continue until it is touched. After the operation completes within @racket[touch],
the remainder of the future's work will be evaluated sequentially by the runtime
thread. A @deftech{synchronized} operation also halts the future, but the runtime thread
may perform the operation at any time and, once completed, the future may continue
running in parallel. Memory allocation and JIT compilation are two common examples
of synchronized operations.
In the timeline, we see an orange dot just to the right of the green bar on thread 1 --
this dot represents a synchronized operation (memory allocation). The first orange
dot on thread 0 shows that the runtime thread performed the allocation shortly after
the future paused. A short time later, the future halts on a blocking operation
(the first red dot) and must wait until the @racket[touch] for it to be evaluated
(slightly after the 1049ms mark).
When you move your mouse over an event, the visualizer shows you
detailed information about the event and draws arrows
connecting all of the events in the corresponding future.
This image shows those connections for our future.
@; @interaction-eval-show[
@; #:eval future-eval
@; (timeline-pict bad-log
@; #:x 0
@; #:y 0
@; #:width 600
@; #:height 300
@; #:selected-event-index 6)
@; ]
The dotted orange line connects the first event in the future to
the future that created it, and the purple lines connect adjacent
events within the future.
The reason that we see no parallelism is that the @racket[<] and @racket[*] operations
in the lower portion of the loop in @racket[mandelbrot] involve a mixture of
floating-point and fixed (integer) values. Such mixtures typically trigger a slow
path in execution, and the general slow path will usually be blocking.
Changing constants to be floating-points numbers in @racket[mandelbrot] addresses that
first problem:
@racketblock[
(define (mandelbrot iterations x y n)
(let ([ci (- (/ (* 2.0 y) n) 1.0)]
[cr (- (/ (* 2.0 x) n) 1.5)])
(let loop ([i 0] [zr 0.0] [zi 0.0])
(if (> i iterations)
i
(let ([zrq (* zr zr)]
[ziq (* zi zi)])
(cond
[(> (+ zrq ziq) 4.0) i]
[else (loop (add1 i)
(+ (- zrq ziq) cr)
(+ (* 2.0 zr zi) ci))]))))))
]
With that change, @racket[mandelbrot] computations can run in
parallel. Nevertheless, we still see a special type of
slow-path operation limiting our parallelism (orange dots):
@; @interaction-eval[
@; #:eval future-eval
@; (define better-log
@; (list (indexed-future-event 0 '#s(future-event #f 0 create 1334779296782.22 #f 2))
@; (indexed-future-event 1 '#s(future-event 2 2 start-work 1334779296782.265 #f #f))
@; (indexed-future-event 2 '#s(future-event 2 2 sync 1334779296782.378 #f #f))
@; (indexed-future-event 3 '#s(future-event 2 0 sync 1334779296795.582 [allocate memory] #f))
@; (indexed-future-event 4 '#s(future-event 2 0 result 1334779296795.587 #f #f))
@; (indexed-future-event 5 '#s(future-event 2 2 result 1334779296795.6 #f #f))
@; (indexed-future-event 6 '#s(future-event 2 2 sync 1334779296795.689 #f #f))
@; (indexed-future-event 7 '#s(future-event 2 0 sync 1334779296795.807 [allocate memory] #f))
@; (indexed-future-event 8 '#s(future-event 2 0 result 1334779296795.812 #f #f))
@; (indexed-future-event 9 '#s(future-event 2 2 result 1334779296795.818 #f #f))
@; (indexed-future-event 10 '#s(future-event 2 2 sync 1334779296795.827 #f #f))
@; (indexed-future-event 11 '#s(future-event 2 0 sync 1334779296806.627 [allocate memory] #f))
@; (indexed-future-event 12 '#s(future-event 2 0 result 1334779296806.635 #f #f))
@; (indexed-future-event 13 '#s(future-event 2 2 result 1334779296806.646 #f #f))
@; (indexed-future-event 14 '#s(future-event 2 2 sync 1334779296806.879 #f #f))
@; (indexed-future-event 15 '#s(future-event 2 0 sync 1334779296806.994 [allocate memory] #f))
@; (indexed-future-event 16 '#s(future-event 2 0 result 1334779296806.999 #f #f))
@; (indexed-future-event 17 '#s(future-event 2 2 result 1334779296807.007 #f #f))
@; (indexed-future-event 18 '#s(future-event 2 2 sync 1334779296807.023 #f #f))
@; (indexed-future-event 19 '#s(future-event 2 0 sync 1334779296814.198 [allocate memory] #f))
@; (indexed-future-event 20 '#s(future-event 2 0 result 1334779296814.206 #f #f))
@; (indexed-future-event 21 '#s(future-event 2 2 result 1334779296814.221 #f #f))
@; (indexed-future-event 22 '#s(future-event 2 2 sync 1334779296814.29 #f #f))
@; (indexed-future-event 23 '#s(future-event 2 0 sync 1334779296820.796 [allocate memory] #f))
@; (indexed-future-event 24 '#s(future-event 2 0 result 1334779296820.81 #f #f))
@; (indexed-future-event 25 '#s(future-event 2 2 result 1334779296820.835 #f #f))
@; (indexed-future-event 26 '#s(future-event 2 2 sync 1334779296821.089 #f #f))
@; (indexed-future-event 27 '#s(future-event 2 0 sync 1334779296825.217 [allocate memory] #f))
@; (indexed-future-event 28 '#s(future-event 2 0 result 1334779296825.226 #f #f))
@; (indexed-future-event 29 '#s(future-event 2 2 result 1334779296825.242 #f #f))
@; (indexed-future-event 30 '#s(future-event 2 2 sync 1334779296825.305 #f #f))
@; (indexed-future-event 31 '#s(future-event 2 0 sync 1334779296832.541 [allocate memory] #f))
@; (indexed-future-event 32 '#s(future-event 2 0 result 1334779296832.549 #f #f))
@; (indexed-future-event 33 '#s(future-event 2 2 result 1334779296832.562 #f #f))
@; (indexed-future-event 34 '#s(future-event 2 2 sync 1334779296832.667 #f #f))
@; (indexed-future-event 35 '#s(future-event 2 0 sync 1334779296836.269 [allocate memory] #f))
@; (indexed-future-event 36 '#s(future-event 2 0 result 1334779296836.278 #f #f))
@; (indexed-future-event 37 '#s(future-event 2 2 result 1334779296836.326 #f #f))
@; (indexed-future-event 38 '#s(future-event 2 2 sync 1334779296836.396 #f #f))
@; (indexed-future-event 39 '#s(future-event 2 0 sync 1334779296843.481 [allocate memory] #f))
@; (indexed-future-event 40 '#s(future-event 2 0 result 1334779296843.49 #f #f))
@; (indexed-future-event 41 '#s(future-event 2 2 result 1334779296843.501 #f #f))
@; (indexed-future-event 42 '#s(future-event 2 2 sync 1334779296843.807 #f #f))
@; (indexed-future-event 43 '#s(future-event 2 0 sync 1334779296847.291 [allocate memory] #f))
@; (indexed-future-event 44 '#s(future-event 2 0 result 1334779296847.3 #f #f))
@; (indexed-future-event 45 '#s(future-event 2 2 result 1334779296847.312 #f #f))
@; (indexed-future-event 46 '#s(future-event 2 2 sync 1334779296847.375 #f #f))
@; (indexed-future-event 47 '#s(future-event 2 0 sync 1334779296854.487 [allocate memory] #f))
@; (indexed-future-event 48 '#s(future-event 2 0 result 1334779296854.495 #f #f))
@; (indexed-future-event 49 '#s(future-event 2 2 result 1334779296854.507 #f #f))
@; (indexed-future-event 50 '#s(future-event 2 2 sync 1334779296854.656 #f #f))
@; (indexed-future-event 51 '#s(future-event 2 0 sync 1334779296857.374 [allocate memory] #f))
@; (indexed-future-event 52 '#s(future-event 2 0 result 1334779296857.383 #f #f))
@; (indexed-future-event 53 '#s(future-event 2 2 result 1334779296857.421 #f #f))
@; (indexed-future-event 54 '#s(future-event 2 2 sync 1334779296857.488 #f #f))
@; (indexed-future-event 55 '#s(future-event 2 0 sync 1334779296869.919 [allocate memory] #f))
@; (indexed-future-event 56 '#s(future-event 2 0 result 1334779296869.947 #f #f))
@; (indexed-future-event 57 '#s(future-event 2 2 result 1334779296869.981 #f #f))
@; (indexed-future-event 58 '#s(future-event 2 2 sync 1334779296870.32 #f #f))
@; (indexed-future-event 59 '#s(future-event 2 0 sync 1334779296879.438 [allocate memory] #f))
@; (indexed-future-event 60 '#s(future-event 2 0 result 1334779296879.446 #f #f))
@; (indexed-future-event 61 '#s(future-event 2 2 result 1334779296879.463 #f #f))
@; (indexed-future-event 62 '#s(future-event 2 2 sync 1334779296879.526 #f #f))
@; (indexed-future-event 63 '#s(future-event 2 0 sync 1334779296882.928 [allocate memory] #f))
@; (indexed-future-event 64 '#s(future-event 2 0 result 1334779296882.935 #f #f))
@; (indexed-future-event 65 '#s(future-event 2 2 result 1334779296882.944 #f #f))
@; (indexed-future-event 66 '#s(future-event 2 2 sync 1334779296883.311 #f #f))
@; (indexed-future-event 67 '#s(future-event 2 0 sync 1334779296890.471 [allocate memory] #f))
@; (indexed-future-event 68 '#s(future-event 2 0 result 1334779296890.479 #f #f))
@; (indexed-future-event 69 '#s(future-event 2 2 result 1334779296890.517 #f #f))
@; (indexed-future-event 70 '#s(future-event 2 2 sync 1334779296890.581 #f #f))
@; (indexed-future-event 71 '#s(future-event 2 0 sync 1334779296894.362 [allocate memory] #f))
@; (indexed-future-event 72 '#s(future-event 2 0 result 1334779296894.369 #f #f))
@; (indexed-future-event 73 '#s(future-event 2 2 result 1334779296894.382 #f #f))
@; (indexed-future-event 74 '#s(future-event 2 2 sync 1334779296894.769 #f #f))
@; (indexed-future-event 75 '#s(future-event 2 0 sync 1334779296901.501 [allocate memory] #f))
@; (indexed-future-event 76 '#s(future-event 2 0 result 1334779296901.51 #f #f))
@; (indexed-future-event 77 '#s(future-event 2 2 result 1334779296901.556 #f #f))
@; (indexed-future-event 78 '#s(future-event 2 2 sync 1334779296901.62 #f #f))
@; (indexed-future-event 79 '#s(future-event 2 0 sync 1334779296905.428 [allocate memory] #f))
@; (indexed-future-event 80 '#s(future-event 2 0 result 1334779296905.434 #f #f))
@; (indexed-future-event 81 '#s(future-event 2 2 result 1334779296905.447 #f #f))
@; (indexed-future-event 82 '#s(future-event 2 2 sync 1334779296905.743 #f #f))
@; (indexed-future-event 83 '#s(future-event 2 0 sync 1334779296912.538 [allocate memory] #f))
@; (indexed-future-event 84 '#s(future-event 2 0 result 1334779296912.547 #f #f))
@; (indexed-future-event 85 '#s(future-event 2 2 result 1334779296912.564 #f #f))
@; (indexed-future-event 86 '#s(future-event 2 2 sync 1334779296912.625 #f #f))
@; (indexed-future-event 87 '#s(future-event 2 0 sync 1334779296916.094 [allocate memory] #f))
@; (indexed-future-event 88 '#s(future-event 2 0 result 1334779296916.1 #f #f))
@; (indexed-future-event 89 '#s(future-event 2 2 result 1334779296916.108 #f #f))
@; (indexed-future-event 90 '#s(future-event 2 2 sync 1334779296916.243 #f #f))
@; (indexed-future-event 91 '#s(future-event 2 0 sync 1334779296927.233 [allocate memory] #f))
@; (indexed-future-event 92 '#s(future-event 2 0 result 1334779296927.242 #f #f))
@; (indexed-future-event 93 '#s(future-event 2 2 result 1334779296927.262 #f #f))
@; (indexed-future-event 94 '#s(future-event 2 2 sync 1334779296927.59 #f #f))
@; (indexed-future-event 95 '#s(future-event 2 0 sync 1334779296934.603 [allocate memory] #f))
@; (indexed-future-event 96 '#s(future-event 2 0 result 1334779296934.612 #f #f))
@; (indexed-future-event 97 '#s(future-event 2 2 result 1334779296934.655 #f #f))
@; (indexed-future-event 98 '#s(future-event 2 2 sync 1334779296934.72 #f #f))
@; (indexed-future-event 99 '#s(future-event 2 0 sync 1334779296938.773 [allocate memory] #f))
@; ))
@; ]
@; @interaction-eval-show[
@; #:eval future-eval
@; (timeline-pict better-log
@; #:x 0
@; #:y 0
@; #:width 600
@; #:height 300)
@; ]
The problem is that most every arithmetic operation in this example
produces an inexact number whose storage must be allocated. While some allocation
can safely be performed exclusively without the aid of the runtime thread, especially
frequent allocation requires synchronized operations which defeat any performance
improvement.
By using @tech{flonum}-specific operations (see
@secref["fixnums+flonums"]), we can re-write @racket[mandelbrot] to use
much less allocation:
@; @interaction-eval[
@; #:eval future-eval
@; (define good-log
@; (list (indexed-future-event 0 '#s(future-event #f 0 create 1334778395768.733 #f 3))
@; (indexed-future-event 1 '#s(future-event 3 2 start-work 1334778395768.771 #f #f))
@; (indexed-future-event 2 '#s(future-event 3 2 complete 1334778395864.648 #f #f))
@; (indexed-future-event 3 '#s(future-event 3 2 end-work 1334778395864.652 #f #f))
@; ))
@; ]
@racketblock[
(define (mandelbrot iterations x y n)
(let ([ci (fl- (fl/ (* 2.0 (->fl y)) (->fl n)) 1.0)]
[cr (fl- (fl/ (* 2.0 (->fl x)) (->fl n)) 1.5)])
(let loop ([i 0] [zr 0.0] [zi 0.0])
(if (> i iterations)
i
(let ([zrq (fl* zr zr)]
[ziq (fl* zi zi)])
(cond
[(fl> (fl+ zrq ziq) 4.0) i]
[else (loop (add1 i)
(fl+ (fl- zrq ziq) cr)
(fl+ (fl* 2.0 (fl* zr zi)) ci))]))))))
]
This conversion can speed @racket[mandelbrot] by a factor of 8, even
in sequential mode, but avoiding allocation also allows
@racket[mandelbrot] to run usefully faster in parallel.
Executing this program yields the following in the visualizer:
@; @interaction-eval-show[
@; #:eval future-eval
@; (timeline-pict good-log
@; #:x 0
@; #:y 0
@; #:width 600
@; #:height 300)
@; ]
Notice that only one green bar is shown here because one of the
mandelbrot computations is not being evaluated by a future (on
the runtime thread).
As a general guideline, any operation that is inlined by the
@tech{JIT} compiler runs safely in parallel, while other operations
that are not inlined (including all operations if the JIT compiler is
disabled) are considered unsafe. The @exec{raco decompile} tool
annotates operations that can be inlined by the compiler (see
@secref[#:doc '(lib "scribblings/raco/raco.scrbl") "decompile"]), so the
decompiler can be used to help predict parallel performance.
@; @close-eval[future-eval]
| false |
ce4931d04d25e99e32d203f57a5ac593cf7ab5da | 3424ab96c3265f69191dd3a219b2b66a1e61b57d | /litonico/ch08.rkt | 6340c0cdf1ed3b9fdf0d6dc280115f7e25a04b97 | []
| 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 | 4,563 | rkt | ch08.rkt | #lang racket
(define rember-f ;; a.k.a deleteBy
(lambda (test? a l)
(cond
[(null? l) '()]
[(test? (car l) a) (cdr l)]
[else (cons (car l)
(rember-f test? a (cdr l)))])))
(define eq?-c
(lambda (a)
(lambda (x)
(eq? x a))))
(define rember-f-curry
(lambda (test?)
(lambda (a l)
(cond
[(null? l) '()]
[(test? (car l) a) (cdr l)]
[else (cons (car l)
((rember-f-curry test?) a (cdr l)))]))))
;; Slightly different from the Little Schemer's version--
;; theirs replaces the first occurance only
(define insertL-f
(lambda (test?)
(lambda (new old l)
(cond
[(null? l) '()]
[(test? (car l) old)
(cons new
(cons old
((insertL-f test?) new old (cdr l))))]
[else (cons (car l)
((insertL-f test?) new old (cdr l)))]))))
(define insertR-f
(lambda (test?)
(lambda (new old l)
(cond
[(null? l) '()]
[(test? (car l) old)
(cons old
(cons new
((insertR-f test?) new old (cdr l))))]
[else (cons (car l)
((insertL-f test?) new old (cdr l)))]))))
(define insert-g ;; why g?
(lambda (seq)
(lambda (new old l)
(cond
[(null? l) '()]
[(eq? (car l) old)
(seq new old (cdrl l))]
[else (cons (car l)
((insert-g seq) new old (cdr l)))]))))
(define seqR
(lambda (new old l)
(cons old (cons new l))))
(define seqL
(lambda (new old l)
(cons new (cons old l))))
(define insert-gL
(insert-g seqL))
(define insert-gR
(insert-g seqR))
(define insert-gL-anon
(insert-g (lambda (new old l)
(cons new (cons old l)))))
(define subst
(lambda (new old l)
(cond
[(null? l) '()]
[(eq? (car l) old)
(cons new (cdr l))]
[else (cons (car l)
(subst new old (cdr l)))])))
(define seqS
(lambda (new old l)
(cons new l)))
(define subst (insert-g seqS))
(define atom-to-function
(lambda (x)
(cond
[(eq? x '+) +]
[(eq? x '*) *]
[else expt])))
(define value
(lambda (nexp)
(cond
[(atom? nexp) nexp]
[else ((atom-to-function (operator nexp))
(value (fst-sub-exp nexp))
(value (snd-sub-exp nexp)))])))
(define multirember-f
(lambda (test?)
(lambda (a lat)
(cond
[(null? lat) '()]
[(test? a (car lat))
((multirember-f test?) a (cdr lat))]
[else (cons (car lat)
((multirember-f test?) a (cdr lat)))]))))
(define multirember-eq?
(multirember-f eq?))
(define multiremberT
(lambda (test? lat)
(cond
[(null? lat) '()]
[(test? (car lat))
(multiremberT test? (cdr lat))]
[else (cons (car lat)
(multirember-f test? (cdr lat)))])))
;; And now the confusing part
;; multirember&co :: a -> [a] -> (a -> b) -> b
;; Except `b` could also be a list, or any type
(define multirember&co
(lambda (a lat col)
(cond
[(null? lat) (col '() '())]
[(eq? (car lat) a)
(multirember&co a
(cdr lat)
(lambda (newlat seen)
(col newlat (cons (car lat) seen))))]
[else (multirember&co a (cdr lat)
(lambda (newlat seen)
(col (cons (car lat) newlat) seen)))])))
(define a-friend
(lambda (x y)
(null? y)))
(define new-friend
(lambda (newlat seen)
(a-friend newlat
(cons (car lat) seen))))
(define latest-friend
(lambda (newlat seen)
(a-friend (cons 'and newlat) seen))) ;; man, this code-as-data thing
(define multiinsertR
(lambda (new old lat)
(cond
[(null? lat) '()]
[(eq? (car lat) old)
(cons old
(cons new
(multiinsertR new old (cdr lat))))]
[else (cons (car lat)
(multiinsertR new old (cdr lat)))])))
(define multiinsertR
(lambda (new oldL oldR lat)
(cond
[(null? lat) '()]
[(eq? (car lat) oldL)
(cons new
(cons oldL
(multiinsertR new oldL oldR (cdr lat))))]
[(eq? (car lat) old)
(cons oldR
(cons new
(multiinsertR new oldL oldR (cdr lat))))]
[else (cons (car lat)
(multiinsertR new oldL oldR (cdr lat)))])))
| false |
dd5cce888cc09caac9062aa527cb7b2632f19245 | da0ec979b0a89e6cc52e3089ba5435bb876638e7 | /graph-coloring/src/k-coloring.rkt | 253cb6fc7064a507e93def9d62aca2fab3d00623 | []
| no_license | slxu/cse507fa14 | d473f7d27d414a15cc0d61722c6b0096190ae22e | a0ee42ed097f97b23c5114b77c0a4e92ae7f68ce | refs/heads/master | 2020-12-01T11:43:29.318652 | 2014-11-10T22:57:08 | 2014-11-10T22:57:08 | 25,712,674 | 0 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 3,164 | rkt | k-coloring.rkt | #lang racket
(require "solver.rkt" "graph.rkt")
(provide
k-coloring ; (->* (graph/c natural-number/c) [(is-a? solver%)] (or/c #f coloring/c))
valid-coloring? ; (-> graph/c coloring/c boolean?)
)
; Returns true iff the given coloring is correct for the specified graph.
(define (valid-coloring? graph coloring)
(for*/and ([(e n) (in-indexed graph)] [child e])
(not (= (color-ref coloring n) (color-ref coloring child)))))
; use vertex_index*k+1, ..., vertex_index*k+c .. vertex_index*k+k to denote
; that vertex of vertex_index has color c
(define (vertex-color-to-variable v c k)
(+ (+ (* v k) c ) 1)
)
(define (variable-to-vertex var k)
(quotient (- var 1) k)
)
(define (variable-to-color var k)
(- (- var 1 ) (* k ( variable-to-vertex var k)))
)
(define (sesc v w c k) (list (- (vertex-color-to-variable v c k)) (- (vertex-color-to-variable w c k))))
(define (single-edge-single-color-encoding v w c k)
(if (= (+ c 1) k)
(list (sesc v w c k))
(cons (sesc v w c k) (single-edge-single-color-encoding v w (+ c 1) k))
)
)
(define (single-edge-encoding v w k)
(single-edge-single-color-encoding v w 0 k)
)
(define (adjacent-vertices-have-different-color-encoding graph k)
(foldl (lambda (vertex-idx le)
( append le (foldl (lambda (child le)
(append le (single-edge-encoding vertex-idx child k))
)
'()
(sequence-ref graph vertex-idx))
)
)
'()
(build-list (sequence-length graph) values)
)
)
(define (vertex-has-one-color-encoding graph k)
(map
(lambda (vertex-idx)
(foldl (lambda (c l)
(append l (list ( vertex-color-to-variable vertex-idx c k)))
) '() (build-list k values)
)
)
(build-list (sequence-length graph) values)
)
)
(define (k-coloring-encoding graph k)
(append (vertex-has-one-color-encoding graph k)
(adjacent-vertices-have-different-color-encoding graph k) )
)
(define (get-colorings solve-result k)
(define positive-ones (filter positive? solve-result))
(list->vector (map (lambda (x)
(variable-to-color x k ))
(sort (filter (lambda (e) (
for/and ([ c (in-range (variable-to-color e k))]) (not (member (vertex-color-to-variable (variable-to-vertex e k) c k) positive-ones))
))
positive-ones
) <)
))
)
; Returns a coloring/c if the given graph can
; be colored with k colors. Otherwise returns #f.
; The procedure accepts an optional solver% arugment.
; If not specified, the solver defaults to lingeling.
(define (k-coloring graph k [solver (lingeling)])
; encode each vertex must have a coloring
(define do-solve (solve (k-coloring-encoding graph k)))
(if do-solve
(get-colorings do-solve k) ; k-colorable
#f
)
)
| false |
1f58b6d2d7a8dd3899d99d792050c0a5a88de5a5 | 3cb889e26a8e94782c637aa1126ad897ccc0d7a9 | /SICP/chapter_4/53.rkt | c28f2803f5b349def59784a41cc15d1b118b3130 | []
| 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 | 558 | rkt | 53.rkt | #lang racket
(require "35.rkt")
(require "51.rkt")
(require "52.rkt")
(require math/number-theory)
(builtin-register 'prime? prime?)
(eval G
'(begin
(define (prime-sum-pair l1 l2)
(let ([n1 (one-of l1)][n2 (one-of l2)])
(assert (prime? (+ n1 n2)))
(list n1 n2))
)
(let ([pairs empty])
(if-fail (let ([p (prime-sum-pair '(1 3 5 8) '(20 35 110))])
(permanent-set! pairs (cons p pairs))
(amb))
pairs)))
)
| false |
175586df389b241908131e6c4fdfc86e0bde6c98 | f5b99d59741af88067a78383cf2df94c06fe3710 | /sicp/chap2/2.97.rkt | 3c56455d166fe40d5dfa90e9022aab69cb039d99 | [
"MIT"
]
| permissive | shouya/thinking-dumps | 53921a23ff62dd6aa0580cec6da26b11b83dd818 | 6191a940f3fca4661a6f01663ef38b8ce57c9018 | refs/heads/master | 2023-06-08T17:53:34.143893 | 2023-06-04T15:41:18 | 2023-06-04T15:41:18 | 22,285,392 | 24 | 3 | MIT | 2022-06-11T12:23:49 | 2014-07-26T11:40:12 | Coq | UTF-8 | Racket | false | false | 451 | rkt | 2.97.rkt | (define (gcd-mult xs)
(if (= 0 (length xs))
(car xs)
(gcd (car xs) (gcd-mult (cdr xs)))))
(define (reduce-terms n d)
(define gcd1 (gcd n d))
(define int (integerize n d))
(define n1 (div-terms (mult int n) gcd1))
(define d1 (div-terms (mult int d) gcd1))
(define n-gcd (gcd-mult (map coeff n1)))
(define d-gcd (gcd-mult (map coeff d1)))
(define n2 (div n1 n-gcd))
(define d2 (div d1 d-gcd))
(make-rational n2 d2))
| false |
6015f2b9896bc3998584b87d7394e6eb58e21ec1 | 310fec8271b09a726e9b4e5e3c0d7de0e63b620d | /badges/coding-adventures.rkt | aebec8c79e8e0011192d92bab3cdbe2b17b5ba2a | [
"Apache-2.0",
"MIT"
]
| permissive | thoughtstem/badge-bot | b649f845cdc4bf62ca6bd838f57353f8e508f1ae | e535eefac26f15061c412fd0eb5b7adee158a0bf | refs/heads/master | 2022-12-14T21:55:00.173686 | 2020-09-21T19:54:15 | 2020-09-21T19:54:15 | 265,321,144 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 4,674 | rkt | coding-adventures.rkt | #lang racket
(require "../badges-lang.rkt"
"../images.rkt"
"badge-colors.rkt")
;;CODING ADVENTURES BADGES START
(define-colored-art-badge ca-color
ca-a-lessons
"Digital Literacy: Coding Adventures: A Lessons"
"")
(define-colored-art-badge ca-color
ca-b-lessons
"Digital Literacy: Coding Adventures: B Lessons"
"")
(define-colored-art-badge ca-color
ca-c-lessons
"Digital Literacy: Coding Adventures: C Lessons"
"")
(define-colored-art-badge ca-color
ca-d-lessons
"Digital Literacy: Coding Adventures: D Lessons"
"")
(define-colored-art-badge ca-color
dl-ca-aa
"Digital Literacy: Coding Adventures Access Badge"
"https://forum.metacoders.org/t/digital-literacy-coding-adventures/167")
(define-colored-art-badge ca-color
dl-ca-if
"Digital Literacy: Coding Adventures: If/Then Games"
"https://forum.metacoders.org/t/digital-literacy-coding-adventures-if-then-games/358")
(define-colored-art-badge ca-color
dl-ca-lg
"Digital Literacy: Coding Adventures: All the Languages!"
"https://forum.metacoders.org/t/digital-literacy-coding-adventures-all-the-languages/360")
(define-colored-art-badge ca-color
dl-ca-bd
"Digital Literacy: Coding Adventures: Beach Day"
"https://forum.metacoders.org/t/digital-literacy-coding-adventures-beach-day/361")
(define-colored-art-badge ca-color
dl-ca-ap
"Digital Literacy: Coding Adventures: Lets Go to the Amusement Park"
"https://forum.metacoders.org/t/digital-literacy-coding-adventures-lets-go-to-the-amusement-park/362")
(define-colored-art-badge ca-color
dl-ca-mm
"Digital Literacy: Coding Adventures: Monster Mash"
"https://forum.metacoders.org/t/digital-literacy-coding-adventures-monster-mash/369")
(define-colored-art-badge ca-color
dl-ca-da
"Digital Literacy: Coding Adventures: Dance Party"
"https://forum.metacoders.org/t/digital-literacy-coding-adventures-dance-party/376")
(define-colored-art-badge ca-color
dl-ca-io
"Digital Literacy: Coding Adventures: I/O Machines"
"https://forum.metacoders.org/t/digital-literacy-coding-adventures-i-o-machines/399")
(define-colored-art-badge ca-color
dl-ca-pz
"Digital Literacy: Coding Adventures: Yum, Pizza!"
"https://forum.metacoders.org/t/digital-literacy-coding-adventures-yum-pizza/417")
(define-colored-art-badge ca-color
dl-ca-npc
"Digital Literacy: Coding Adventures: Design an NPC"
"https://forum.metacoders.org/t/digital-literacy-coding-adventures-design-an-npc/489")
(define-colored-art-badge ca-color
dl-ca-ce
"Digital Literacy: Coding Adventures: Making Cereal"
"https://forum.metacoders.org/t/digital-literacy-coding-adventures-making-cereal/428")
(define-colored-art-badge ca-color
ca-browser
"Digital Literacy: Coding Adventures: Browser Power"
"https://forum.metacoders.org/t/digital-literacy-coding-adventures-browser-power/536")
(define-colored-art-badge ca-color
ca-superhero
"Digital Literacy: Coding Adventures: Superhero Functions"
"https://forum.metacoders.org/t/digital-literacy-coding-adventures-superhero-functions/546")
(define-colored-art-badge ca-color
ca-animate
"Digital Literacy: Coding Adventures: Animate Me"
"https://forum.metacoders.org/t/digital-literacy-coding-adventures-animate-me/593")
(define-colored-art-badge ca-color
ca-zoo
"Digital Literacy: Coding Adventures: Zoo Trip"
"https://forum.metacoders.org/t/digital-literacy-coding-adventures-zoo-trip/613")
(define-colored-art-badge ca-color
ca-ice-cream
"Digital Literacy: Coding Adventures: Yum, Ice Cream!"
"https://forum.metacoders.org/t/digital-literacy-coding-adventures-yum-ice-cream-sundae/619")
(define-colored-art-badge ca-color
ca-keyboard
"Digital Literacy: Coding Adventures: Keyboard Mastery"
"https://forum.metacoders.org/t/digital-literacy-coding-adventures-keyboard-mastery/629")
(define-colored-art-badge ca-color
ca-penguin
"Digital Literacy: Coding Adventures: Help the Penguin"
"https://forum.metacoders.org/t/digital-literacy-coding-adventures-help-the-penguin/635")
(define-colored-art-badge ca-color
ca-toothpaste
"Digital Literacy: Coding Adventures: Tricks with Toothpaste"
"https://forum.metacoders.org/t/digital-literacy-coding-adventures-tricks-with-toothpaste/651")
(define-colored-art-badge ca-color
ca-computer
"Digital Literacy: Coding Adventures: Your Computer & You"
"https://forum.metacoders.org/t/digital-literacy-coding-adventures-your-computer-you/660")
(define-colored-art-badge ca-color
ca-mouse
"Digital Literacy: Coding Adventures: Mouse Magic"
"https://forum.metacoders.org/t/digital-literacy-coding-adventures-mouse-magic/833")
;; CODING ADVENTURES BADGES END | false |
aab25576495eb8b04755f832f0844376cabf7c38 | 43997f5e223799e400971c640c2025c976faedae | /bhdl-lib/bhdl/private/utils.rkt | 7abf9c24d320b5ddce72c65ef7fbbeaf5800c36a | [
"MIT",
"Apache-2.0"
]
| permissive | lihebi/bhdl | 976d5d82f019fda2c0c8606b5bbe5e4fadffb147 | 93141bae35f301666c622c540fde246fd86805ef | refs/heads/master | 2023-05-31T11:43:19.722222 | 2021-06-16T17:37:42 | 2021-06-16T17:37:42 | 200,914,948 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 7,004 | rkt | utils.rkt | #lang s-exp "../splicing.rkt"
(require (for-syntax syntax/parse)
rackunit)
(provide myvoid
show
warn
debug
assert
define-alias
compose-pipe
group-by-2
group-by-index
hash-ref-ref
hash-ref-ref-noerr
shell)
(define-syntax-rule (myvoid stx ...)
(void))
(define-syntax (define-alias stx)
(syntax-parse stx
[(_ (name ...) body ...)
#`(match-define (list name ...)
(make-list (length (list #'name ...)) (begin body ...)))]))
(module+ test
(define-alias (a b c) '(1 2))
(check-true (eq? a b))
(check-false (eq? a '(1 2))))
(define (map-recur-normalize lst)
;; 1. get length
(if (empty? (filter list? lst))
lst
(let ([len (length (first (filter list? lst)))])
(map (λ (x) (if (list? x) x (make-list len x))) lst))))
(define (map-recur foo lst #:num [num #f])
;; check the shape
(case num
;; if number is not specified, parse agressively
[(#f) (let ([lst (map-recur-normalize lst)])
(if (list? (first (first lst)))
(apply map
(λ (v . rst) (map-recur foo (cons v rst)))
lst)
(apply map foo lst)))]
;; if number is specified, don't try to make up the list
[else
(cond
[(= num 0) (apply foo lst)]
;; [(= num 1) (apply map foo lst)]
[(> num 0) (apply map
(λ (v . rst)
(map-recur foo (cons v rst) #:num (sub1 num)))
(map-recur-normalize lst))])]))
(module+ test
(map-recur-normalize '(((1 2)) 3))
(map-recur (λ (x y) (+ x y))
'(((1 2 3))
((4 5 6))))
(map-recur (λ (x y) (+ x y))
'(((1 2 3))
1))
(map-recur add1
'(((1 2 3)))
#:num 2)
;; expect error
(map-recur add1
'(((1 2 3)))
#:num 1)
;; expect error
(map-recur add1
'(((1 2 3)))
#:num 3))
(begin-for-syntax
(define-splicing-syntax-class pipe
(pattern (~seq #:> func)
#:with func1 #`func)
(pattern (~seq #:.> func)
;; #:with func1 #`(λ (x . rst) (apply map func x rst))
#:with func1 #`(λ (x . rst) (map-recur func (cons x rst) #:num 1)))
(pattern (~seq #:..> func)
#:with func1 #`(λ (x . rst) (map-recur func (cons x rst) #:num 2)))
(pattern (~seq #:...> func)
#:with func1 #`(λ (x . rst) (map-recur func (cons x rst) #:num 3)))
(pattern (~seq #:.*> func)
#:with func1 #`(λ (x . rst) (map-recur func (cons x rst)))))
(define-splicing-syntax-class expr-until-pipe
(pattern (~seq e:expr ... func:pipe)
#:with func1 #'func.func1)))
(define-syntax (compose-pipe stx)
"compose-pipe is a syntax sugar for writing piping style code. It solves 2
problems.
TODO consider using Transducers
(https://docs.racket-lang.org/rebellion/Transducers.html)
1. In lisp, when you write maps or apply functions, the sequence of functions
are written from inside out. This is counter-intuitive.
2. When using map or for loops, when you have list of lists, you have to write
nested maps.
The syntax of compose-pipe:
(compose-pipe '(1 2 3) '(4 5 6)
#:.> (λ (x y) (+ x y))
#:.> (λ (x) (add1 x)))
where the
#:> means directly take as argument
#:.> means map the function with the arguments as list
#:..> means maps into list of lists
#:.*> means agressively maps until ALL the arguments are not lists.
There are still some detailed designs that is subject to change.
1. when the arguments are not the same rank, it MIGHT choose to extend them to the
same rank
2. it is possible to supply additional data in between the functions
(compose-pipe '(1 2 3)
'(4 5 6)
#:.> (λ (x y) (+ x y))
'(7 8 9)
#:.> (λ (x y) (+ x y)))
"
(syntax-parse stx
[(_ e0:expr e:expr-until-pipe ...)
#`((apply compose (reverse (list (λ (prev) (e.func1 prev e.e ...)) ...)))
e0)]))
#;
(define-syntax (compose-pipe stx)
(syntax-parse stx
[(_ body:expr ...
func:pipe ...)
#`((apply compose (reverse (list func.func1 ...))) body ...)]))
(module+ test
#;
(begin-where
(+ a b)
#:where ([a 1]
[b 2]))
(compose-pipe
'(1 2 3)
'(4 5 6)
#:.> (λ (x y)
(+ x y))
#:> (λ (lst) lst)
)
(compose-pipe
'((1 2 3) (4 5 6))
#:..> add1)
(compose-pipe
'(((1 2 3)))
'(((4 5 6)))
#:...> (λ (x y)
(+ x y))
)
(compose-pipe
'(((1 2 3)))
'(((4 5 6)))
#:.*> (λ (x y)
(+ x y))
)
(compose-pipe
'(((1 2 3)))
;; FIXME automatically extend this
1
#:.*> (λ (x y)
(+ x y)))
(compose-pipe
'(1 2 3)
'(4 5 6)
#:.> (λ (x y) (+ x y))
#:.> (λ (x) x))
((compose (λ (x y) (list x y))
(λ (x y) (values (+ x y) 1)))
1 2))
(module+ test
(compose-pipe '(1 2 3)
'(4 5 6)
#:.> (λ (x y) (+ x y))
'(7 8 9)
#:.> (λ (x y) (+ x y)))
((compose (λ (x y) (map + x y)))
((compose (λ (x y) (map + x y)))
'(1 2 3)
'(4 5 6))
'(7 8 9)))
(define-syntax (let-local stx)
(syntax-parse stx
[(_ ([var1 expr1] ...)
([var expr] ...)
body ...)
#`(match-let ([(list var ...) (let ([var1 expr1] ...)
(list expr ...))])
body ...)]))
(define-syntax (begin-where stx)
(syntax-parse stx
[(_ TODO ...) #'(void)]))
;; DEBUG
(define-syntax (show stx)
(syntax-parse
stx
[(_ v)
#'(begin
(display (~a 'v " = "))
(println v))]))
(define (warn . args)
(displayln (~a #:separator " " "WARNING: " args ..)))
(define (debug . args)
(displayln (~a #:separator " " "DEBUG: " args ..)))
(define (hash-ref-ref hash . keys)
(for/fold ([acc hash])
([key keys])
(hash-ref acc key)))
(define (hash-ref-ref-noerr hash . keys)
"On error, return #f."
(for/fold ([acc hash])
([key keys])
(if (and acc (hash-has-key? acc key))
(hash-ref acc key)
#f)))
(define (group-by-index key lst)
"Group lst by key(index)."
(map (lambda (x) (map car x))
(group-by (lambda (p)
(key (cdr p)))
(for/list ([x lst]
[i (in-naturals)])
(cons x i)))))
(define (group-by-2 lst)
"group every 2 items"
(group-by-index (lambda (idx) (floor (/ idx 2))) lst))
(module+ test
(group-by-2 '(1 2 3 4 5 6)))
(define-syntax (assert stx)
(syntax-parse
stx
[(_ xxx)
#'(or xxx (error "Assertion failed:" 'xxx))]))
(define (shell cmd)
"This is system, but receive no input. Jupyter notebook hangs on input."
(parameterize ([current-input-port (open-input-string "")])
(system cmd)))
| true |
728f798b153fb64a380e58108068009719eac991 | 23d78f4c06e9d61b7d90d8ebd035eb1958fe2348 | /racket/cps/c6_10.rkt | 855c9e7559285cf5f8ce4ccb3ce474da22498116 | [
"Unlicense"
]
| permissive | seckcoder/pl_research | e9f5dbce4f56f262081318e12abadd52c79d081d | 79bb72a37d3862fb4afcf4e661ada27574db5644 | refs/heads/master | 2016-09-16T09:40:34.678436 | 2014-03-22T02:31:08 | 2014-03-22T02:31:08 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 828 | rkt | c6_10.rkt | #lang eopl
(require "../base/utils.rkt")
; list-sum
(define list-sum
(lambda (lst)
(cond ((null? lst) 0)
(else
(+ (car lst)
(list-sum (cdr lst)))))))
; cps transformation
(define list-sum1
(lambda (lst)
(list-sum1/k lst (lambda (val) val))))
(define list-sum1/k
(lambda (lst cont)
(if (null? lst)
(cont 0)
(list-sum1/k (cdr lst) (lambda (val)
(cont (+ val (car lst))))))))
; further optmize
(define list-sum2
(lambda (lst)
(list-sum2/k lst 0)))
(define list-sum2/k
(lambda (lst k)
(if (null? lst)
k
(list-sum2/k (cdr lst) (+ (car lst) k)))))
(check eq?
(list-sum '(1 2 3 4))
10)
(check eq?
(list-sum1 '(1 2 3 4))
10)
(check eq?
(list-sum2 '(1 2 3 4))
10)
| false |
469f321f94f9cfb8c9a6433457b565b7dca7925a | e495bec5c7aa64dabaead690e30dfb8425c44962 | /mini-thd/demo/ex2.rkr.rkt | f4064d2c350a9c84f33b6f3b0a803ddabce47a39 | []
| no_license | dfeltey/eecs495-rust | 49f276aa97904af20d2f24e32a9b956f597b99b6 | 291a8efdde449b7a7e361c49f6ef71e407780908 | refs/heads/master | 2020-12-30T23:09:49.468061 | 2016-03-13T01:42:32 | 2016-03-13T01:42:32 | 49,181,953 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 113 | rkt | ex2.rkr.rkt | #lang s-exp "../lang.rkt" #:histogram
(let mut y 0)
(seq (par (:= y (+ y 1))
(:= y (+ y 1)))
y)
| false |
592540d769e1214cfd30fe25cb8104036cdeced5 | 0d4287c46f85c3668a37bcb1278664d3b9a34a23 | /徐玉麟/课堂2/2.rkt | 34f03682294ab8371d30ff1d87435da08153e8f7 | []
| no_license | siriusmax/Racket-Helper | 3e55f8a69bf005b56455ab386e2f1ce09611a273 | bf85f38dd8d084db68265bb98d8c38bada6494ec | refs/heads/master | 2021-04-06T02:37:14.261338 | 2017-12-20T04:05:51 | 2017-12-20T04:05:51 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 466 | rkt | 2.rkt | #lang racket
(define (join li li2)
(if(null? li)
li2
(cons (car li) (join (cdr li) li2))))
(define (flatten li)
(if(null? li)
li
(if(pair? li)
(if(null? (cdr li))
(flatten (car li))
(join (flatten (car li)) (flatten (cdr li))))
(list li))))
(define (main li)
(display (flatten li)))
(define (loop)
(define li (read))
(if(eq? li eof)
(void)
(begin (main li) (newline) (loop))))
(loop) | false |
f8c012c03006949edfefbbaa09132f46276aa91e | 4f808b16c4a29c0424512159892a3c34a7dadeff | /recordings/compare.rkt | b63bae45e4c1a0037796867db9b1f3a4080ed1f5 | []
| no_license | jevdplas/scala-am | 68f206b214e78d07ed84119826a6df34877a84f9 | 44268fb0e335949ff34fda7a87a88992fd53e787 | refs/heads/master | 2020-07-05T15:24:13.308774 | 2019-10-16T12:30:15 | 2019-10-16T12:30:15 | 81,956,296 | 0 | 0 | null | 2017-02-14T14:56:54 | 2017-02-14T14:56:54 | null | UTF-8 | Racket | false | false | 1,639 | rkt | compare.rkt | #lang racket
(define (read-from-file file)
(call-with-input-file file
(lambda (in)
(define result (make-hash))
(define (loop)
(let ((entry (read in)))
(if (eof-object? entry)
result
(let ((key (car entry))
(value (cadr entry)))
(hash-set! result key (set-union (if (hash-has-key? result key) (hash-ref result key) (set)) (list->set value)))
(loop)))))
(loop))))
(define (size results)
(define size 0)
(for-each (lambda (k)
(set! size (+ size (set-count (hash-ref results k)))))
(hash-keys results))
size)
(define modular-results (read-from-file (vector-ref (current-command-line-arguments) 0)))
(define incremental-results (read-from-file (vector-ref (current-command-line-arguments) 1)))
(define match #t)
(when (not (equal? modular-results incremental-results))
(define keys (hash-keys modular-results))
(for-each
(lambda (TID)
(let ((mod (hash-ref modular-results TID (set)))
(inc (hash-ref incremental-results TID (set))))
(unless (set=? mod inc)
(set! match #f)
; (printf "mismatch for actor ~a: ~a (conc.) vs. ~a (abs.) ~n" k c a)
; (printf "conc - abs = ~a~n" (set-subtract c a))
(printf "[~a] overapproximates ~a element(s): ~a~n" TID (set-count (set-subtract inc mod)) (set-subtract inc mod))
(unless (set-empty? (set-subtract mod inc))
(printf "UNSOUND on Thread ~a ~a~n" TID (set-subtract mod inc))))))
keys))
(printf "result: ~a, ~a concrete elements~n" match (size modular-results))
| false |
2c650b0384d01e851a158da9ea082a119a593994 | 5bbc152058cea0c50b84216be04650fa8837a94b | /experimental/micro/suffixtree/untyped/ukkonen-find-next-extension-point-add-suffix-link.rkt | 95d96a173d027fdbbffc0474ba6d5bb2570d76d5 | []
| 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 | 3,495 | rkt | ukkonen-find-next-extension-point-add-suffix-link.rkt | #lang racket/base
(provide find-next-extension-point/add-suffix-link!)
;; -----------------------------------------------------------------------------
(require "data-node.rkt"
"data-label.rkt"
(only-in "label-label-length.rkt"
label-length)
(only-in "label-label-ref.rkt"
label-ref)
(only-in "label-label-element-equal.rkt"
label-element-equal?)
(only-in "structs-node-position-at-end.rkt"
node-position-at-end?)
(only-in "structs-node-find-child.rkt"
node-find-child)
(only-in "ukkonen-try-to-set-suffix-edge.rkt"
try-to-set-suffix-edge!)
(only-in "ukkonen-jump-to-suffix.rkt"
jump-to-suffix)
(only-in "ukkonen-skip-count-helper.rkt"
skip-count-helper))
;; =============================================================================
;; find-next-extension-point/add-suffix-link!: node label number number ->
;; (values node number number)
;;
;; Given the last active node where an extension was last made,
;; looks for the next position for extension. Returns that
;; extension point's node and label offset, as well as the new phase
;; number i. (Postcondition: (>= i initial-i))
;;
;; The first pass through the loop is a special case: we set the
;; suffix link from node to suffix-node unless we expect it to be
;; done from a splicing extension.
;;
;; If we run off the label (implicit tree), returns (values #f #f #f).
(define (find-next-extension-point/add-suffix-link! node label initial-i j)
(define (fixed-start suffix-offset)
(let ([i (if suffix-offset (- initial-i suffix-offset) j)])
(unless (integer? i) (error "find-next")) i))
(define-values (suffix-node suffix-offset)
(jump-to-suffix node))
(define K
(fixed-start (cond [(integer? suffix-offset) suffix-offset]
[(eq? #t suffix-offset) 1]
[(eq? #f suffix-offset) #f]
[else (error "find-next")])))
(define N
(let ([i (label-length label)])
(unless (integer? i) (error "find-next")) i))
(define (loop-first i)
(loop-general i (lambda (skipped-node
skip-offset)
(when (node-position-at-end? skipped-node skip-offset)
(try-to-set-suffix-edge! node skipped-node)))))
(define (loop-rest i)
(loop-general i (lambda (skipped-node skip-offset)
(void))))
(define (loop-general i first-shot)
(cond [(>= i N) (values #f #f #f)]
[else
(define-values (skipped-node skipped-offset)
(skip-count-helper suffix-node label K i))
(first-shot skipped-node skipped-offset)
(if (node-position-at-end? skipped-node skipped-offset)
(find-extension-at-end! skipped-node skipped-offset i)
(find-extension-in-edge skipped-node skipped-offset i))]))
(define (find-extension-in-edge skipped-node skip-offset i)
(cond [(label-element-equal?
(label-ref label i)
(label-ref (node-up-label skipped-node) skip-offset))
(let ([n (add1 i)]) (unless (integer? n) (error "find-next")) (loop-rest n))]
[else (values skipped-node skip-offset i)]))
(define (find-extension-at-end! skipped-node skip-offset i)
(cond [(node-find-child skipped-node (label-ref label i))
(let ([n (add1 i)]) (unless (integer? n) (error "find-next")) (loop-rest n))]
[else (values skipped-node skip-offset i)]))
(loop-first initial-i))
| false |
d24576dc94b5afc79f4e7703367b49f7889e368f | df0ba5a0dea3929f29358805fe8dcf4f97d89969 | /exercises/computer-science-2/04--lists/solutions/10--filter.rkt | 94caef0defa2b2b8f67b0c53c67464fb7812056b | [
"MIT"
]
| permissive | triffon/fp-2019-20 | 1c397e4f0bf521bf5397f465bd1cc532011e8cf1 | a74dcde683538be031186cf18367993e70dc1a1c | refs/heads/master | 2021-12-15T00:32:28.583751 | 2021-12-03T13:57:04 | 2021-12-03T13:57:04 | 210,043,805 | 14 | 31 | MIT | 2019-12-23T23:39:09 | 2019-09-21T19:41:41 | Racket | UTF-8 | Racket | false | false | 894 | rkt | 10--filter.rkt | #lang racket
(require rackunit rackunit/text-ui)
; ### Задача 10
; Напишете функция `(filter pred? L)`,
; която връща списък от елементите на `L`, за които `pred?` е истина.
(define (filter p? L)
(cond ((null? L) L)
((p? (car L)) (cons (car L) (filter p? (cdr L))))
(else (filter p? (cdr L)))))
(run-tests (test-suite "filter tests"
(check-equal? (filter odd? '())
'())
(check-equal? (filter odd? '(1 2 3 4 5 6))
'(1 3 5))
(check-equal? (filter pair? '(1 (2 3) 4 ((5)) 6))
'((2 3) ((5))))
(check-equal? (filter procedure?
(list 1 '(2 3) + 4 '((5)) 6 pair? filter))
(list + pair? filter)))
'verbose)
| false |
fc78b67f99bbe08d5beead89ae1d63af34cbed60 | 964bb56e1e21091cf07a49b51394d02fcdb018f7 | /ch02/2_61.rkt | d56d49ee726816194219aca5ac669d2621dd4075 | []
| no_license | halee99/SICP | fa7758f96c6363b3b262e3b695f11f1c1072c628 | de282c9f595b3813d3f6b162e560b0a996150bd2 | refs/heads/master | 2020-04-06T14:52:39.639013 | 2019-10-10T09:14:56 | 2019-10-10T09:14:56 | 157,557,554 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 347 | rkt | 2_61.rkt | #lang racket
(define (adjoin-set x set)
(if (null? set)
(list x)
(let ((a (car set)))
(cond ((= x a) set)
((< x a)
(cons x set))
((> x a)
(cons a (adjoin-set x (cdr set))))))))
; test
(define a (list 1 3 5 6 7))
(adjoin-set 4 a)
(adjoin-set 3 a)
(adjoin-set 9 a)
| false |
2256f5630cb592cbff9aa97a302ce58d38c0ba6c | 45d66c1749fe706a5ee2656722884b88fb3d63c7 | /deepcoderlang/typed-operators.rkt | 9bfdc231769d034ea4327ca72638f0f318e5e7f0 | []
| no_license | jn80842/frpsurvey | a7d5380f0c4fb7244bc659b7462ee4283f22c65d | 2f3d61b1a8f7b164054690e680abe849fac5ce80 | refs/heads/master | 2021-01-11T19:47:20.039078 | 2019-01-25T07:18:11 | 2019-01-25T07:18:11 | 79,395,821 | 0 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 13,970 | rkt | typed-operators.rkt | #lang rosette
(require "api.rkt")
(provide (all-defined-out))
(define (random-list-member xs)
(list-ref xs (random (length xs))))
;; Deepcoder DSL grammar
;; S -> R | S R
;; R -> NR | LR
;; LR -> list | take NR LR | drop NR LR | reverse LR | sort LR
;; | map IntPred LR | filter BoolPred LR
;; | zipwith Int2Pred LR LR | scanl1 Int2Pred LR
;; NR -> num | head LR | last LR | access NR LR | minimum LR
;; | maximum LR | sum LR | count BoolPred LR
;; IntPred -> +1 | -1 | *2 | /2 | * -1 | **2 | *3 | /3 | *4 | /4
;; BoolPred -> positive? | negative? | odd? | even?
;; Int2Pred -> + | - | * | min | max
(struct tdc-insn (op-index
int-idx
list-idx
list2-idx
λi2i-idx
λi2b-idx
λi2i2i-idx) #:transparent)
(define (tdc-insn->string insn)
(format "~a ~a ~a ~a ~a ~a ~a" (tdc-insn-op-index insn)
(tdc-insn-int-idx insn)
(tdc-insn-list-idx insn)
(tdc-insn-list2-idx insn)
(tdc-insn-λi2i-idx insn)
(tdc-insn-λi2b-idx insn)
(tdc-insn-λi2i2i-idx insn)))
(define (string->tdc-insn s)
(apply tdc-insn (map string->number (string-split (string-trim s "\"")))))
;; typed operators maintains 2 lists of registers
;; separating int type and list type
(define (get-tdc-insn-holes)
(define-symbolic* op integer?)
(define-symbolic* int-idx integer?)
(define-symbolic* list-idx integer?)
(define-symbolic* list2-idx integer?)
(define-symbolic* λi2i-idx integer?)
(define-symbolic* λi2b-idx integer?)
(define-symbolic* λi2i2i-idx integer?)
(tdc-insn op int-idx list-idx list2-idx λi2i-idx λi2b-idx λi2i2i-idx))
(define (get-dc-holes-list count)
(for/list ([i (range count)]) (get-tdc-insn-holes)))
(struct tyoperator (name call print random-insn) #:transparent)
(define (get-tyop insn)
(list-ref tyoperator-list (tdc-insn-op-index insn)))
(define (call-tdc-insn insn int-vars list-vars)
((tyoperator-call (get-tyop insn)) insn int-vars list-vars))
(define (print-tdc-insn insn varname int-vars list-vars)
(let ([op (get-tyop insn)])
(format " (define ~a (~a-dc ~a))" varname (tyoperator-name op)
((tyoperator-print op) insn int-vars list-vars))))
(define (get-int-input insn int-vars)
(list-ref int-vars (tdc-insn-int-idx insn)))
(define (get-list-input insn list-vars)
(list-ref list-vars (tdc-insn-list-idx insn)))
(define (get-list2-input insn list-vars)
(list-ref list-vars (tdc-insn-list2-idx insn)))
(define head-tyop
(tyoperator "head"
(λ (insn int-vars list-vars) (head-dc (get-list-input insn list-vars)))
(λ (insn int-vars list-vars) (format "~a" (get-list-input insn list-vars)))
(λ (int-count list-count) (tdc-insn (get-operator-idx "head") 0 (sub1 list-count) 0 0 0 0))))
;(λ (int-idxs list-idxs) (tdc-insn (get-operator-idx "head") 0 (random-list-member list-idxs) 0 0 0 0))))
(define last-tyop
(tyoperator "last"
(λ (insn int-vars list-vars) (last-dc (get-list-input insn list-vars)))
(λ (insn int-vars list-vars) (format "~a" (get-list-input insn list-vars)))
(λ (int-count list-count) (tdc-insn (get-operator-idx "last") 0 (sub1 list-count) 0 0 0 0))))
;(λ (int-idxs list-idxs) (tdc-insn (get-operator-idx "last") 0 (random-list-member list-idxs) 0 0 0 0))))
(define take-tyop
(tyoperator "take"
(λ (insn int-vars list-vars) (take-dc (get-int-input insn int-vars) (get-list-input insn list-vars)))
(λ (insn int-vars list-vars) (format "~a ~a" (get-int-input insn int-vars)
(get-list-input insn list-vars)))
(λ (int-count list-count) (tdc-insn (get-operator-idx "take") (sub1 int-count) (sub1 list-count) 0 0 0 0))))
;(λ (int-idxs list-idxs) (tdc-insn (get-operator-idx "take") (random-list-member int-idxs)
; (random-list-member list-idxs) 0 0 0 0))))
(define drop-tyop
(tyoperator "drop"
(λ (insn int-vars list-vars) (drop-dc (get-int-input insn int-vars) (get-list-input insn list-vars)))
(λ (insn int-vars list-vars) (format "~a ~a" (get-int-input insn int-vars)
(get-list-input insn list-vars)))
(λ (int-count list-count) (tdc-insn (get-operator-idx "drop") (sub1 int-count) (sub1 list-count) 0 0 0 0))))
;(λ (int-idxs list-idxs) (tdc-insn (get-operator-idx "drop") (random-list-member int-idxs)
; (random-list-member list-idxs) 0 0 0 0))))
(define access-tyop
(tyoperator "access"
(λ (insn int-vars list-vars) (access-dc (get-int-input insn int-vars) (get-list-input insn list-vars)))
(λ (insn int-vars list-vars) (format "~a ~a" (get-int-input insn int-vars)
(get-list-input insn list-vars)))
(λ (int-count list-count) (tdc-insn (get-operator-idx "access") (sub1 int-count) (sub1 list-count) 0 0 0 0))))
;(λ (int-idxs list-idxs) (tdc-insn (get-operator-idx "access") (random-list-member int-idxs)
; (random-list-member list-idxs) 0 0 0 0))))
(define minimum-tyop
(tyoperator "minimum"
(λ (insn int-vars list-vars) (minimum-dc (get-list-input insn list-vars)))
(λ (insn int-vars list-vars) (format "~a" (get-list-input insn list-vars)))
(λ (int-count list-count) (tdc-insn (get-operator-idx "minimum") 0 (sub1 list-count) 0 0 0 0))))
;(λ (int-idxs list-idxs) (tdc-insn (get-operator-idx "minimum") 0 (random-list-member list-idxs) 0 0 0 0))))
(define maximum-tyop
(tyoperator "maximum"
(λ (insn int-vars list-vars) (maximum-dc (get-list-input insn list-vars)))
(λ (insn int-vars list-vars) (format "~a" (get-list-input insn list-vars)))
(λ (int-count list-count) (tdc-insn (get-operator-idx "maximum") 0 (sub1 list-count) 0 0 0 0))))
;(λ (int-idxs list-idxs) (tdc-insn (get-operator-idx "maximum") 0 (random-list-member list-idxs) 0 0 0 0))))
(define reverse-tyop
(tyoperator "reverse"
(λ (insn int-vars list-vars) (reverse-dc (get-list-input insn list-vars)))
(λ (insn int-vars list-vars) (format "~a" (get-list-input insn list-vars)))
(λ (int-count list-count) (tdc-insn (get-operator-idx "reverse") 0 (sub1 list-count) 0 0 0 0))))
; (λ (int-idxs list-idxs) (tdc-insn (get-operator-idx "reverse") 0 (random-list-member list-idxs) 0 0 0 0))))
(define sort-tyop
(tyoperator "sort"
(λ (insn int-vars list-vars) (sort-dc (get-list-input insn list-vars)))
(λ (insn int-vars list-vars) (format "~a" (get-list-input insn list-vars)))
(λ (int-count list-count) (tdc-insn (get-operator-idx "sort") 0 (sub1 list-count) 0 0 0 0))))
;(λ (int-idxs list-idxs) (tdc-insn (get-operator-idx "sort") 0 (random-list-member list-idxs) 0 0 0 0))))
(define sum-tyop
(tyoperator "sum"
(λ (insn int-vars list-vars) (sum-dc (get-list-input insn list-vars)))
(λ (insn int-vars list-vars) (format "~a" (get-list-input insn list-vars)))
(λ (int-count list-count) (tdc-insn (get-operator-idx "sum") 0 (sub1 list-count) 0 0 0 0))))
;(λ (int-idxs list-idxs) (tdc-insn (get-operator-idx "sum") 0 (random-list-member list-idxs) 0 0 0 0))))
(define map-tyop
(tyoperator "map"
(λ (insn int-vars list-vars) (map-dc (list-ref int-to-int-funcs (tdc-insn-λi2i-idx insn))
(get-list-input insn list-vars)))
(λ (insn int-vars list-vars) (format "~a ~a" (list-ref int-to-int-funcs-string (tdc-insn-λi2i-idx insn))
(get-list-input insn list-vars)))
(λ (int-count list-count) (tdc-insn (get-operator-idx "map") 0 (sub1 list-count) 0 (random (length int-to-int-funcs)) 0 0))))
;(λ (int-idxs list-idxs) (tdc-insn (get-operator-idx "map") 0 (random-list-member list-idxs) 0
; (random (length int-to-int-funcs)) 0 0))))
(define filter-tyop
(tyoperator "filter"
(λ (insn int-vars list-vars) (filter-dc (list-ref int-to-bool-funcs (tdc-insn-λi2b-idx insn))
(get-list-input insn list-vars)))
(λ (insn int-vars list-vars) (format "~a ~a" (list-ref int-to-bool-funcs-string (tdc-insn-λi2b-idx insn))
(get-list-input insn list-vars)))
(λ (int-count list-count) (tdc-insn (get-operator-idx "filter") 0 (sub1 list-count) 0 0 (random (length int-to-bool-funcs)) 0))))
;(λ (int-idxs list-idxs) (tdc-insn (get-operator-idx "filter") 0 (random-list-member list-idxs) 0 0
; (random (length int-to-bool-funcs)) 0))))
(define count-tyop
(tyoperator "count"
(λ (insn int-vars list-vars) (count-dc (list-ref int-to-bool-funcs (tdc-insn-λi2b-idx insn))
(get-list-input insn list-vars)))
(λ (insn int-vars list-vars) (format "~a ~a" (list-ref int-to-bool-funcs-string (tdc-insn-λi2b-idx insn))
(get-list-input insn list-vars)))
(λ (int-count list-count) (tdc-insn (get-operator-idx "count") 0 (sub1 list-count) 0 0 (random (length int-to-bool-funcs)) 0))))
;(λ (int-idxs list-idxs) (tdc-insn (get-operator-idx "count") 0 (random-list-member list-idxs) 0 0
; (random (length int-to-bool-funcs)) 0))))
(define zipwith-tyop
(tyoperator "zipwith"
(λ (insn int-vars list-vars) (zipwith-dc (list-ref int-to-int-to-int-funcs (tdc-insn-λi2i2i-idx insn))
(get-list-input insn list-vars) (get-list2-input insn list-vars)))
(λ (insn int-vars list-vars) (format "~a ~a ~a"
(list-ref int-to-int-to-int-funcs-string (tdc-insn-λi2i2i-idx insn))
(get-list-input insn list-vars) (get-list2-input insn list-vars)))
(λ (int-count list-count) (tdc-insn (get-operator-idx "zipwith") 0 (sub1 list-count) (if (> list-count 1)
(- list-count 2)
(sub1 list-count)) 0 0 (random (length int-to-int-to-int-funcs))))))
;(λ (int-idxs list-idxs) (tdc-insn (get-operator-idx "zipwith") 0 (random-list-member list-idxs)
; (random-list-member list-idxs) 0 0 (random (length int-to-int-to-int-funcs))))))
(define scanl1-tyop
(tyoperator "scanl1"
(λ (insn int-vars list-vars) (scanl1-dc (list-ref int-to-int-to-int-funcs (tdc-insn-λi2i2i-idx insn))
(get-list-input insn list-vars)))
(λ (insn int-vars list-vars) (format "~a ~a"
(list-ref int-to-int-to-int-funcs-string (tdc-insn-λi2i2i-idx insn))
(get-list-input insn list-vars)))
(λ (int-count list-count) (tdc-insn (get-operator-idx "scanl1") 0 (sub1 list-count) 0 0 0 (random (length int-to-int-to-int-funcs))))))
;(λ (int-idxs list-idxs) (tdc-insn (get-operator-idx "scanl1") 0 (random-list-member list-idxs) 0
; 0 0 (random (length int-to-int-to-int-funcs))))))
(define int-tyoperator-list (list head-tyop
last-tyop
access-tyop
minimum-tyop
maximum-tyop
count-tyop))
(define list-tyoperator-list (list take-tyop
drop-tyop
reverse-tyop
sort-tyop
sum-tyop
map-tyop
filter-tyop
zipwith-tyop
scanl1-tyop))
(define tyoperator-list (append int-tyoperator-list list-tyoperator-list))
(define tyoperator-lookup (make-hash (for/list ([i (range (length tyoperator-list))])
(cons (tyoperator-name (list-ref tyoperator-list i)) i))))
(define (get-operator-idx op-string)
(hash-ref tyoperator-lookup op-string))
(define does-not-require-int-input-list (list head-tyop
last-tyop
minimum-tyop
maximum-tyop
count-tyop
reverse-tyop
sort-tyop
sum-tyop
map-tyop
filter-tyop
zipwith-tyop
scanl1-tyop))
(define does-not-require-int-input-idxs (for/list ([i (range (length does-not-require-int-input-list))])
(get-operator-idx (tyoperator-name
(list-ref does-not-require-int-input-list i)))))
(define (is-int-insn? insn)
(< (tdc-insn-op-index insn) (length int-tyoperator-list))) | false |
23bc3f2ad2d2462dddfbe6db4efc20f0b10200fe | 52a4d282f6ecaf3e68d798798099d2286a9daa4f | /v22/x/xgui.rkt | abf29cbfbd0076bf988db5fe032a6a3f3720b025 | [
"MIT"
]
| permissive | bkovitz/FARGish | f0d1c05f5caf9901f520c8665d35780502b67dcc | 3dbf99d44a6e43ae4d9bba32272e0d618ee4aa21 | refs/heads/master | 2023-07-10T15:20:57.479172 | 2023-06-25T19:06:33 | 2023-06-25T19:06:33 | 124,162,924 | 5 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 1,569 | rkt | xgui.rkt | ; Throwaway code: experimenting with racket/gui
#lang debug at-exp racket/gui
(define application-frame
(new frame%
[label "Example"]
[width 400]
[height 300]))
(define frame
(new frame%
[label "Example"]
[width 300]
[height 300]))
(define dark-orchid (send the-color-database find-color "Dark Orchid"))
(define num-invocations 0)
(define to-show
`((set-scale 3 3)
(set-text-foreground "blue")
(draw-text "Some text" 0 0)))
(define (args! . args)
(set! to-show args)
(send frame refresh))
(define (+arg! . args)
(set! to-show (append to-show args))
(send frame refresh))
(define bs! ; "backspace"
(case-lambda
[(n)
(set! to-show (drop-right to-show 1))
(send frame refresh)]
[()
(bs! 1)]))
(define canvas
(let ([my-canvas% (class canvas%
(define/override (on-char ch)
(println (send ch get-key-code)))
(super-new))])
(new my-canvas% [parent frame]
[paint-callback
(λ (canvas dc)
(for ([args to-show])
(apply dynamic-send dc args)))
#;(λ (canvas dc)
(set! num-invocations (add1 num-invocations))
(send dc set-scale 3 3)
(send dc set-text-foreground "blue")
(send dc draw-text @~a{Invocation @num-invocations} 0 0))]
)))
(send canvas set-canvas-background dark-orchid)
(send frame show #t)
| false |
7d7a3c3f422f57f53bf4065f9ba01ed0db9dbdec | e995fce18dbdd69a757f55a2c023d07fcce3cb6b | /spcf/redex.rkt | 96273a65931a5105d3e97940bfb28c74383aff6c | []
| 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 | 129 | rkt | redex.rkt | #lang racket
(provide SPCF sv -->sv typeof/symbolic typable/symbolic? δ^ havoc)
(require spcf/syntax spcf/semantics spcf/types)
| false |
3c54ecaa82bd15f96957ed0bfd2b54e711cc8c6a | 82c76c05fc8ca096f2744a7423d411561b25d9bd | /typed-racket-test/fail/pr13588.rkt | 7d85f46e9886c67481349a0aa4a7b8c52184fe69 | [
"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 | 151 | rkt | pr13588.rkt | #;
(exn-pred #rx"identifier bound to a structure type")
#lang typed/racket/base
(require/typed racket/async-channel
[#:struct (async-channel +) ()])
| false |
65039aad78c71db237cbd918f7b26b4f70f380d8 | e85ae0cf3bca5ddd627aa939b75c5a60925d7091 | /warn/private/string-lines.rkt | 2b3aeffd38882e44383415d67138837311652b9f | [
"MIT"
]
| permissive | waffle-iron/syntax-warn | 54eb4383f1c8756747dd4e988f1689493b1177cf | d250c278bcd71e66f31a984688683dc90dc0f34f | refs/heads/master | 2020-12-03T10:26:35.190276 | 2016-08-12T02:09:59 | 2016-08-12T02:09:59 | 65,515,548 | 0 | 0 | null | 2016-08-12T02:09:59 | 2016-08-12T02:09:57 | Racket | UTF-8 | Racket | false | false | 559 | rkt | string-lines.rkt | #lang typed/racket/base
(provide string-append-lines)
(require racket/list)
(module+ test
(require typed/rackunit))
(: string-append-lines (->* () #:rest String String))
(define (string-append-lines . strings)
(apply string-append
(add-between strings "\n")))
(module+ test
(check-equal? (string-append-lines "foo" "bar" "baz")
"foo\nbar\nbaz")
(check-equal? (string-append-lines "foo") "foo")
(check-equal? (string-append-lines "foo" "" "bar")
"foo\n\nbar")
(check-equal? (string-append-lines) ""))
| false |
78b7dc0aa7e72f42d5a7c1fac2ce92532e9c2cf1 | fc90b5a3938850c61bdd83719a1d90270752c0bb | /web-server-test/tests/web-server/e2e/json/tests.rkt | 4a9db684e93da533f0b1aae0e75572fa0a7803f2 | [
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | racket/web-server | cccdf9b26d7b908701d7d05568dc6ed3ae9e705b | e321f8425e539d22412d4f7763532b3f3a65c95e | refs/heads/master | 2023-08-21T18:55:50.892735 | 2023-07-11T02:53:24 | 2023-07-11T02:53:24 | 27,431,252 | 91 | 42 | NOASSERTION | 2023-09-02T15:19:40 | 2014-12-02T12:20:26 | Racket | UTF-8 | Racket | false | false | 1,714 | rkt | tests.rkt | #lang racket/base
(require json
net/url
racket/port
rackunit)
(provide make-tests)
(define (make-tests port)
(define (make-url [path "/"])
(string->url (format "http://127.0.0.1:~a/~a" port path)))
(define (get-books)
(read-json (get-pure-port (make-url "books"))))
(define (post-book e)
(post-impure-port
(make-url "books")
(call-with-output-bytes
(lambda (out)
(write-json e out)))))
(test-suite
"json"
(test-equal?
"no books"
(get-books)
null)
(test-case "adding a valid book"
(check-regexp-match "200 OK"
(port->string
(post-book (hasheq 'title "Mechanica"
'author "Euler"))))
(check-equal?
(get-books)
(list (hasheq 'title "Mechanica"
'author "Euler"))))
(test-case "adding an invalid book"
(check-regexp-match "400 Bad Request"
(port->string
(post-book (hasheq 'title "Mechanica"))))
(check-equal?
(get-books)
(list (hasheq 'title "Mechanica"
'author "Euler"))))
(test-case "sending invalid JSON"
(check-regexp-match "500 Internal Server Error"
(port->string
(post-impure-port
(make-url "books")
#"invalid"))))
(test-exn
"sending too much data"
(lambda (e)
(and (exn:fail? e)
(regexp-match #rx"Connection ended early" (exn-message e))))
(lambda _
(post-impure-port
(make-url "books")
(make-bytes 512))))))
| false |
ab477bd9f827793a8e5db002983d2b5232141878 | bde1fd2511c16bc4dfb3f26337eb4a8941fcb7af | /ch1/1.17.rkt | 4167e7f5648081655d18bd91d9a88eb54e54fe4a | []
| no_license | sjhuangx/EOPL | dcb6d8c4e23f6a55de18a99c17366cdeb1ffab6e | a6475e10a955128600f964340c590b80955e0f83 | refs/heads/master | 2021-06-28T03:24:18.388747 | 2018-03-12T15:06:16 | 2018-03-12T15:06:16 | 96,590,962 | 1 | 0 | null | 2017-08-05T14:15:19 | 2017-07-08T02:34:20 | Racket | UTF-8 | Racket | false | false | 384 | rkt | 1.17.rkt | #lang eopl
(require "../libs/utils.rkt")
;; Exercise 1.17
(define down
(lambda (lst)
(if (null? lst)
'()
(if (not (pair? lst))
(list lst)
(cons (down (car lst))
(down (cdr lst)))))))
(equal?? (down '(1 2 3)) '((1) (2) (3)))
(equal?? (down '((a) (fine) (idea)))
'(((a)) ((fine)) ((idea)))) | false |
1cb1b3fa472601186cbbfe0691de602ea13f4745 | 2973e3524d056ec49ea4dcd635f916c123f42eb3 | /hw5tests.rkt | 3560b99aed4697a6f3f443390b49ff5aeda023a4 | []
| no_license | edalorzo/prog-langs-coursera | f65a319108bbe6513ee9c0848b4901ee20173aae | e654b14b9515f605c18e8965503a012c59849158 | refs/heads/master | 2021-01-12T03:45:27.202478 | 2017-01-07T06:20:24 | 2017-01-07T06:20:24 | 78,262,650 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 4,786 | rkt | hw5tests.rkt | #lang racket
(require test-engine/racket-tests)
(require "hw5.rkt")
; a test case that uses problems 1, 2, and 4
; should produce (list (int 10) (int 11) (int 16))
(define test1
(mupllist->racketlist
(eval-exp (call (call mupl-mapAddN (int 7))
(racketlist->mupllist
(list (int 3) (int 4) (int 9)))))))
;-----------------------
; Tests for problem #1.a
;-----------------------
(check-expect (racketlist->mupllist null) (aunit))
(check-expect (racketlist->mupllist (list (var "x"))) (apair (var "x") (aunit)))
(check-expect (racketlist->mupllist (list (var "x") (int 10))) (apair (var "x") (apair (int 10) (aunit))))
;-----------------------
; Tests for problem #1.b
;-----------------------
(check-expect (mupllist->racketlist (aunit)) null)
(check-expect (mupllist->racketlist (apair (var "x") (aunit))) (list (var "x")))
(check-expect (mupllist->racketlist (apair (var "x") (apair (int 10) (aunit)))) (list (var "x") (int 10)))
;-----------------------
; Tests for problem #2
;-----------------------
(check-expect (eval-exp (int 10)) (int 10))
(check-expect (eval-exp (aunit)) (aunit))
(check-expect (eval-exp (closure (fun #f "n" (var "n")) null)) (closure (fun #f "n" (var "n")) null))
(check-expect (eval-exp (isaunit (aunit))) (int 1))
(check-expect (eval-exp (isaunit (int 10))) (int 0))
(check-expect (eval-exp (apair (int 10) (aunit))) (apair (int 10) (aunit)))
(check-expect (eval-exp (apair (isaunit (aunit)) (int 10))) (apair (int 1) (int 10)))
(check-expect (eval-exp (apair (isaunit (int 10)) (int 10))) (apair (int 0) (int 10)))
(check-expect (eval-exp (fst (apair (int 10) (int 20)))) (int 10))
(check-expect (eval-exp (snd (apair (int 10) (int 20)))) (int 20))
(check-expect (eval-exp (apair (fst (apair (int 10) (int 20))) (snd (apair (int 30) (int 40))))) (apair (int 10) (int 40)))
(check-expect (eval-exp (apair (isaunit (fst (apair (aunit) (int 10)))) (int 20))) (apair (int 1) (int 20)))
(check-error (eval-exp (fst (int 10)) "MUPL fst applied to non-pair"))
(check-error (eval-exp (snd (int 10)) "MUPL fnd applied to non-pair"))
(check-expect (eval-exp (ifgreater (int 2) (int 1) (int 4) (int 5))) (int 4))
(check-expect (eval-exp (ifgreater (int 1) (int 2) (int 4) (int 5))) (int 5))
(check-expect (eval-exp (ifgreater (int 2) (int 1) (fst (apair (aunit) (int 10))) (snd (apair (int 10) (aunit))))) (aunit))
(check-expect (eval-exp (ifgreater (aunit) (int 1) (fst (apair (aunit) (int 10))) (snd (apair (aunit) (int 10))))) (int 10))
(check-expect (eval-exp (mlet "x" (int 10) (var "x"))) (int 10))
(check-expect (eval-exp (mlet "x" (isaunit (fst (apair (aunit) (int 10)))) (ifgreater (aunit) (int 10) (int 0) (var "x")))) (int 1))
(check-expect (eval-exp (mlet "x" (int 10) (mlet "y" (int 20) (add (var "x") (var "y"))))) (int 30))
(check-expect (eval-exp (fun "map" "xs" (int 10))) (closure null (fun "map" "xs" (int 10))))
(check-error (eval-exp (call (int 10) (aunit))) "MUPL call applied to non-function")
(check-expect (eval-exp (mlet "x" (int 10) (fun "map" "xs" (var "x")))) (closure (list (cons "x" (int 10))) (fun "map" "xs" (var "x"))))
(check-expect (eval-exp (call (fun "plus-one" "n" (add (var "n") (int 1))) (int 10))) (int 11))
(check-expect (eval-exp (call (fun "sum" "n" (ifgreater (var "n") (int 0) (add (var "n") (call (var "sum") (add (var "n") (int -1)))) (int 0))) (int 5))) (int 15))
(check-expect (eval-exp (call (call (fun "plus-x" "n" (fun #f "x" (add (var "n") (var "x")))) (int 5)) (int 4))) (int 9))
(check-expect (eval-exp (call (fun "out" "v" (mlet "x" (int 1) (mlet "f" (fun "in" "n" (add (var "n") (var "x"))) (call (var "f") (int 10))))) (aunit))) (int 11))
;-----------------------
; Tests for problem #3
;-----------------------
(check-expect (eval-exp (ifaunit (aunit) (int 10) (int 20))) (int 10))
(check-expect (eval-exp (ifaunit (int 10) (int 20) (int 30))) (int 30))
(check-expect (eval-exp (mlet* (list (cons "x" (int 10)) (cons "y" (int 20))) (add (var "x") (var "y")))) (int 30))
(check-expect (eval-exp (mlet* (list (cons "f" (fun #f "n" (add (var "n") (int 1)))) (cons "x" (int 9))) (call (var "f") (var "x")))) (int 10))
(check-expect (eval-exp (ifeq (int 10) (int 10) (int 5) (int 6))) (int 5))
(check-expect (eval-exp (ifeq (int 10) (int 11) (int 5) (int 6))) (int 6))
;-----------------------
; Tests for problem #4
;-----------------------
(check-expect (eval-exp (call (call mupl-map (fun #f "n" (add (var "n") (var "n")))) (apair (int 7) (apair (int 8) (apair (int 9) (aunit))))))
(apair (int 14) (apair (int 16) (apair (int 18) (aunit)))))
(check-expect (eval-exp (call (call mupl-mapAddN (int 10)) (apair (int 1) (apair (int 2) (apair (int 3) (aunit))))))
(apair (int 11) (apair (int 12) (apair (int 13) (aunit)))))
(test) | false |
8d6dd8a407b3daa46745176821356bff69106668 | 0ad0076e542f597f37c3c793f6e7596c1bda045b | /ts-camp-materials/scribblings/gameshow-fortnite.rkt | 96a22d5567f19251c04d89f55df73eb5352035ee | []
| no_license | thoughtstem/TS-Coach | 0b57afbd52520e84f958f7c7e3e131f2521a8e9f | ceb23c8b58909c0d5f80b6341538c330a3543d4a | refs/heads/master | 2020-09-08T04:27:37.804781 | 2020-02-14T20:09:22 | 2020-02-14T20:09:22 | 221,011,766 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 3,790 | rkt | gameshow-fortnite.rkt | #lang scribble/manual
@title{Game Show}
Use these questions during Game Show time. You can ask any/all the questions in each day's section.
@section{Monday}
@itemlist[@item{@bold{What keys make your character move?}
@itemlist[@item{@italic{WASD keys.}}]}
@item{@bold{What is the keyword to add a character to your game?}
@itemlist[@item{@italic{#:avatar}}]}
@item{@bold{What is the keyword to change what your character looks like?}
@itemlist[@item{@italic{#:sprite}}]}
@item{@bold{Name 3 available character sprites.}
@itemlist[@item{@italic{Anything from the Assets Library.}}]}
@item{@bold{What is the default speed value?}
@itemlist[@item{@italic{10.}}]}]
@section{Tuesday}
@itemlist[@item{@bold{What is the keyword to add enemies?}
@itemlist[@item{@italic{#:enemy-list}}]}
@item{@bold{What does AI stand for?}
@itemlist[@item{@italic{Artificial Intelligence.}}]}
@item{@bold{What is the keyword to change the number of enemies in the game?}
@itemlist[@item{@italic{#:amount-in-world}}]}
@item{@bold{Name the 4 Fortnite character classes.}
@itemlist[@item{@italic{Commando, Ninja, Outlander, and Constructor.}}]}
@item{@bold{Name the 3 Fortnite Game Modes.}
@itemlist[@item{@italic{Save the World, Battle Royale, and Creative.}}]}]
@section{Wednesday}
@itemlist[@item{@bold{Name 3 of the 5 weapon rarity levels.}
@itemlist[@item{@italic{’common, ’uncommon, ’rare, ’epic, ’legendary.}}]}
@item{@bold{What is the function to change what the weapon's pickup crate looks in the game?}
@itemlist[@item{@italic{(make-icon ... ... ...)}}]}
@item{@bold{Name 3 of the available weapons in the language.}
@itemlist[@item{@italic{sword, spear, fire-magic, ring-of-fire, ring-of-blades, in extras: lava pit, spike mine, dagger tower, rocket tower.}}]}
@item{@bold{Name 2 of the fire modes available for the weapons.}
@itemlist[@item{@italic{'normal, 'random, 'spread, 'homing.}}]}
@item{@bold{Tell me a keyboard shortcut; a combination of keys.}
@itemlist[@item{@italic{CTRL + C, CTRL + V, CTRL + X, CTRL + A, CTRL + Z, CTRL + Y.}}]}]
@section{Thursday}
@itemlist[@item{@bold{What is the keyword to add power-ups to the game?}
@itemlist[@item{@italic{#:item-list}}]}
@item{@bold{Name 2 types of power-ups.}
@itemlist[@item{@italic{health, shield, boost, size.}}]}
@item{@bold{What is the keyword used to trigger the effect of your item?}
@itemlist[@item{@italic{#:on-use}}]}
@item{@bold{What is the difference between change-health-by and set-health-to?}
@itemlist[@item{@italic{change-health-by adds the number you provide to your current health,
set-health-to sets your health to the number you provide; regardless of your current health.}}]}
@item{@bold{What are the 3 parameters (inputs) that the function (make-icon . . .) can take?}
@itemlist[@item{@italic{The first one is a string like "HP", those will be the letters that show up on the square (this one is required).
The second one is a color like 'red, that will be the color of the square (this one is optional).
The third ons is also a color like 'blue, that will be the color of the letters (this one is also optional).}}]}] | false |
699acbcb73074b43d5d05231ce64973cad420a74 | 1b35cdffa859023c346bed5fcac5a9be21b0a5a6 | /polyglot-doc/polyglot/scribblings/macros.rkt | 3af7a69760a6d04a3217e3771c7c9715616b27f8 | [
"MIT"
]
| permissive | zyrolasting/polyglot | dd8644425756c87357c1b425670f596be708104d | d27ca7fe90fd4ba2a6c5bcd921fce89e72d2c408 | refs/heads/master | 2021-07-03T01:09:33.887986 | 2021-01-01T16:17:57 | 2021-01-01T16:17:57 | 204,181,797 | 95 | 6 | MIT | 2020-05-26T13:44:19 | 2019-08-24T16:18:07 | Racket | UTF-8 | Racket | false | false | 474 | rkt | macros.rkt | #lang racket
(require scribble/manual)
(provide (all-defined-out))
(define-syntax-rule (base-workflow)
(secref "base-workflow" #:doc '(lib "polyglot/scribblings/guide/polyglot-guide.scrbl")))
(define-syntax-rule (functional-workflow)
(secref "functional-workflow" #:doc '(lib "polyglot/scribblings/guide/polyglot-guide.scrbl")))
(define-syntax-rule (imperative-workflow)
(secref "imperative-workflow" #:doc '(lib "polyglot/scribblings/guide/polyglot-guide.scrbl")))
| true |
b12b0c465168a604398fe2e93069deb99043588b | 82c76c05fc8ca096f2744a7423d411561b25d9bd | /typed-racket-more/typed/syntax/srcloc.rkt | c5f2f38909c2161972ca5f848669b2d0e893b163 | [
"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 | 3,169 | rkt | srcloc.rkt | #lang typed/racket/base
(provide Source-Location
Source-Location-List
Source-Location-Vector
source-location?
source-location-list?
source-location-vector?
check-source-location!
build-source-location
build-source-location-list
build-source-location-vector
build-source-location-syntax
source-location-known?
source-location-source
source-location-line
source-location-column
source-location-position
source-location-span
source-location-end
update-source-location
source-location->string
source-location->prefix
)
(require typed/racket/unsafe)
(define-type Source-Location
(U srcloc
(Syntaxof Any)
Source-Location-List
Source-Location-Vector
False))
(define-type Source-Location-List
(List Any
(U Positive-Integer False)
(U Natural False)
(U Positive-Integer False)
(U Natural False)))
(define-type Source-Location-Vector
(Vector Any
(U Positive-Integer False)
(U Natural False)
(U Positive-Integer False)
(U Natural False)))
(unsafe-require/typed syntax/srcloc
[source-location? (-> Any Boolean)]
[source-location-list? (-> Any Boolean)]
[source-location-vector? (-> Any Boolean)]
[check-source-location! (-> Symbol Any Void)]
[build-source-location (-> Source-Location * srcloc)]
[build-source-location-list (-> Source-Location * Source-Location-List)]
[build-source-location-vector (-> Source-Location * Source-Location-Vector)]
[build-source-location-syntax (-> Source-Location * (Syntaxof Any))]
[source-location-known? (-> Source-Location Boolean)]
[source-location-source (-> Source-Location Any)]
[source-location-line (-> Source-Location (U Positive-Integer False))]
[source-location-column (-> Source-Location (U Natural False))]
[source-location-position (-> Source-Location (U Positive-Integer False))]
[source-location-span (-> Source-Location (U Natural False))]
[source-location-end (-> Source-Location (U Natural False))]
[update-source-location (-> Source-Location
[#:source Any]
[#:line (U Positive-Integer False)]
[#:column (U Natural False)]
[#:position (U Positive-Integer False)]
[#:span (U Natural False)]
Source-Location)]
[source-location->string (-> Source-Location String)]
[source-location->prefix (-> Source-Location String)]
)
| false |
a29884384bd5e6026e4fb6843cbfc39aa1d0ba72 | 51a53a16e2ab9fe5cfae68b5710788db7d9dd1f3 | /private/inference-control.rkt | 85249b7f734f0c288025867c01ce585da4b627b5 | []
| no_license | spdegabrielle/inference | 09b41c4af9cfee2be36c3a20bdcbed551f69f87c | b407fd29d0a82f3262ddd9ced3259117b9448f40 | refs/heads/master | 2021-01-20T05:54:24.793208 | 2013-10-14T20:19:09 | 2013-10-14T20:19:09 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 72,291 | rkt | inference-control.rkt | #lang racket
;;; PLT Scheme Inference Collection
;;; inference-control.rkt
;;; Copyright (c) 2006-2008 M. Douglas Williams
;;;
;;; This library is free software; you can redistribute it and/or
;;; modify it under the terms of the GNU Lesser General Public
;;; License as published by the Free Software Foundation; either
;;; version 2.1 of the License, or (at your option) any later version.
;;;
;;; This library is distributed in the hope that it will be useful,
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;;; Lesser General Public License for more details.
;;;
;;; You should have received a copy of the GNU Lesser General Public
;;; License along with this library; if not, write to the Free
;;; Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
;;; 02111-1307 USA.
;;;
;;; -----------------------------------------------------------------------------
;;;
;;; This module contains the main inference engine routines.
;;;
;;; Pretty much any mutable lists will be visible here. With V2.0.1 I am trying
;;; to limit mutable lists to just those that (I think) greatly affect
;;; performance. These are:
;;; - the agenda
;;; - matches
;;;
;;; Version Date Comments
;;; 1.0.1 07/16/06 Modified assert, retract, and modify to maintain the
;;; assertion index. Eventually need to revisit the code for
;;; efficiency. (Doug Williams)
;;; 1.0.2 07/19/06 Added stop-simulation, succeed, and fail. Fixed notall and
;;; all existential processing. Fixed check to return the
;;; correct assertion. (Doug Williams)
;;; 1.0.3 07/22/06 Cleaned up the code (e.g. merged code to activate data and
;;; goal rules). Made trace more readable. (Doug Williams)
;;; 1.0.4 07/24/06 Added import and export. (Doug Williams)
;;; 1.0.5 07/30/06 Added initial support for shared nodes in the rule network.
;;; (Doug Williams)
;;; 1.0.6 08/18/06 Store the value of n for each match node rather than re-
;;; computing it. (Doug Williams)
;;; 1.0.7 08/18/06 Made agenda use depth first insertion within other
;;; strategies. (Doug Williams)
;;; 1.0.8 08/25/06 Added assumption processing. (Doug Williams)
;;; 1.0.9 09/23/06 Changed (original) modify to replace and added reuse of the
;;; assertion object. (Doug Williams)
;;; 1.0.10 03/07/07 Added match count indexing. (Doug Williams)
;;; 2.0.0 06/26/08 Changes for V4.0. (Doug Williams)
;;; 2.0.1 07/02/08 Getting mutable lists straightened out. Changing bindings
;;; back to immutable lists. (Doug Williams)
;;; 2.0.2 12/25/08 Added module contracts and cleaned up the code. (Doug
;;; Williams
;;; 2.0.3 12/26/08 Fixed a bug with mutable lists for backward chaining.
;;; (Doug Williams)
;;; 2.0.4 09/14/09 Fixed errors in node copying. (Doug Williams)
;;; 2.0.5 03/21/10 Added assertion hooks. (Doug Williams)
;;; 2.0.6 06/18/10 Added query*. (MDW)
(require "ontology.rkt")
(require "inference-environments.rkt")
(require "bindings.rkt")
(require "patterns.rkt")
(require "facts.rkt")
(require "rulesets.rkt")
(require "matches.rkt")
(require "assertions.rkt")
(require "counts.rkt")
(require "truth-maintenance.rkt")
(require scheme/mpair)
(require (only-in srfi/1 delete! append! list-copy))
(define (mlist-copy mlst)
(if (null? mlst)
'()
(mcons (mcar mlst) (mlist-copy (cdr mlst)))))
(define-namespace-anchor anchor)
;;; -----------------------------------------------------------------------------
;;; Indexing
;;; -----------------------------------------------------------------------------
;;; These routines implement the indexing strategies for the inference engine.
;;; The level-1 indices are references via the corresponding fields in the
;;; current inference environment. The indices and keys are:
;;;
;;; index level-1 key level-2 key
;;; assertion-index fact-first fact
;;; data-index fact-first
;;; goal-index fact-first
;;; -----------------------------------------------------------------------------
;;; Assertion Index
;;; -----------------------------------------------------------------------------
;;; (assertion-level-2-index fact) -> hash?
;;; fact : fact?
;;; Returns the level-2 assertion index for fact. A new level-2 index is
;;; created if needed.
(define (assertion-level-2-index fact)
(let ((level-1-index (current-inference-assertion-index))
(level-1-key (fact-first fact)))
(hash-ref level-1-index
level-1-key
(lambda ()
(let ((level-2-index (make-hash)))
(hash-set! level-1-index
level-1-key
level-2-index)
level-2-index)))))
;;; (assertion-index-find fact) -> (or/c assertion? false/c)
;;; fact : fact?
;;; Returns the existing assertion for fact, or #f if the fact is not (currently)
;;; asserted.
(define (assertion-index-find fact)
(hash-ref (assertion-level-2-index fact) fact #f))
;;; (assertion-index-add assertion) -> void?
;;; assertion : assertion?
;;; Adds the assertion to the assertion index using fact.
(define (assertion-index-add assertion)
(let ((fact (assertion-fact assertion)))
(hash-set! (assertion-level-2-index fact) fact assertion)))
;;; (assertion-index-remove assertion) -> void?
;;; assertion : assertion?
;;; Removes the assertion from the assertion index.
(define (assertion-index-remove assertion)
(let ((fact (assertion-fact assertion)))
(hash-remove! (assertion-level-2-index fact) fact)))
;;; -----------------------------------------------------------------------------
;;; Data Index
;;; -----------------------------------------------------------------------------
;;; (data-index-find assertion) -> (listof match-node?)
;;; assertion : assertion?
;;; Returns a list of (non-goal) match nodes whose pattern have initial symbols
;;; matching the initial symbol in the assertion fact.
(define (data-index-find assertion)
(let ((fact (assertion-fact assertion)))
(hash-ref (current-inference-data-index) (fact-first fact) '())))
(define (data-index-find-name name)
(hash-ref (current-inference-data-index) name '()))
;;; -----------------------------------------------------------------------------
;;; Goal Index
;;; -----------------------------------------------------------------------------
;;; (goal-index-find assertion) -> (listof match-node?)
;;; assertion : assertion?
;;; Returns a list of (goal) match nodes whose pattern have initial symbols
;;; matching the initial symbol in the assertion fact.
(define (goal-index-find assertion)
(let ((fact (assertion-fact assertion)))
(hash-ref (current-inference-goal-index) (fact-first fact) '())))
;;; -----------------------------------------------------------------------------
;;; Assert, Retract, and Replace
;;; -----------------------------------------------------------------------------
(define (pragma? fact)
(and (list? fact)
(keyword? (car fact))))
;;; (assert fact [reason]) -> assertion?
;;; fact : fact?
;;; reason : any/c = (current-inference-rule)
;;; Assert a fact. This function returns a new assertion from the given fact. It
;;; does not check to see if the fact has already been asserted. The assertion is
;;; passed into the rule network for inferencing.
;;; Note that this code is reused in replace. Any changes here need to
;;; be made there too.
;;; MDW - I'm not sure that the reason makes sense as an argument here. It might
;;; be better to let assert determine the reason based on the current state (e.g.
;;; rule).
(define (assert fact (reason (current-inference-rule)))
(if (pragma? fact)
(assert-pragma fact)
(assert-fact fact reason)))
(define (assert-assertion assertion)
;; Add to assertion index.
(assertion-index-add assertion)
;; Trace the assertion.
(when (current-inference-trace)
(printf ">>> ~s~n" assertion))
;; Match and propagate assertion through rule network.
(let ((fact (assertion-fact assertion)))
(for* ((name
(if (current-inference-ontology)
(in-list (class-ancestor-names
(ontology-find-class
(current-inference-ontology)
(fact-first fact))))
(list (fact-first fact))))
(match-node (in-list (data-index-find-name name))))
(match-node-assert match-node assertion)))
;; Return the assertion.
assertion)
(define (assert-fact fact reason)
(define (default-assertion-hook fact)
(let ((assertion (assertion-index-find fact)))
(if assertion
(values assertion #t)
(values #f #f))))
(let ((assertion-hook
(and (current-inference-assertion-hooks)
(hash-ref (current-inference-assertion-hooks)
(fact-first fact) #f))))
(let-values (((assertion flag?)
(if assertion-hook
((assertion-hook-assert-hook assertion-hook) fact)
(default-assertion-hook fact))))
(if assertion
(if flag?
;; New assertion, set reason and propogate.
(begin
(unless (assertion-reason assertion)
(set-assertion-reason! assertion reason))
(assert-assertion assertion))
(if (equal? fact (assertion-fact assertion))
;; Exact match, update the reason and return the assertion.
(begin
(set-assertion-reason! assertion reason)
(when (current-inference-trace)
(printf ">*> ~s~n" assertion))
assertion)
;; Not an exact match, retract the assertion and assert the fact.
(begin
(retract assertion)
(set-assertion-fact! assertion fact)
(set-assertion-reason! assertion reason)
(assert-assertion assertion))))
(begin
(assert-assertion (make-assertion fact reason)))))))
;;; (assert-pragma pragma)
;;; pragma : pragma?
(define (assert-pragma pragma)
(case (car pragma)
((#:class)
(unless (current-inference-ontology)
(current-inference-ontology (new-ontology)))
(ontology-assert-class (current-inference-ontology) pragma)
#f)
((#:assertion-hook)
(unless (current-inference-assertion-hooks)
(current-inference-assertion-hooks (make-hasheq)))
(tm-assert-assertion-hook (current-inference-assertion-hooks) pragma)
#f)
))
;;; retract assertion) -> void?
;;; assertion : assertion?
;;; Retract an assertion. The retraction is passed into the rule network for
;;; inferencing
(define (retract assertion)
;; Remove the assertion for the assertion index.
(assertion-index-remove assertion)
;; Trace the retraction.
(when (current-inference-trace)
(printf "<<< ~s~n" assertion))
;; Match and unpropagate through the rule network.
(for-each
(lambda (match-node)
(match-node-retract match-node assertion))
(data-index-find assertion)))
;;; (replace assertion fact [reason]) -> assertion?
;;; assertion : assertion?
;;; fact : fact?
;;; reason : any/c = (current-inference-rule)
;;; Replace an assertion. In essence, retract the assertion and then reassert it
;;; using the given fact.
(define (replace assertion fact (reason (current-inference-rule)))
;; Retract the assertion.
(retract assertion)
;; Re-assert with the new fact and reason.
;; Copies from assert
;(assert fact reason)
(set-assertion-fact! assertion fact)
(set-assertion-reason! assertion reason)
;;
(assert-assertion assertion))
;;; -----------------------------------------------------------------------------
;;; Check and Query
;;; -----------------------------------------------------------------------------
;;; (check fact) -> match?
;;; fact : fact?
;;; Check a fact using backtracking. Can be called directly for a pure backward
;;; chaining strategy. Also called to initiate backward chaining for match nodes.
(define (check fact)
(let/cc return
(let ((assertion (make-assertion fact (current-inference-rule))))
(when (current-inference-trace)
(printf "??? ~s~n" assertion))
(for-each
(lambda (match-node)
(let ((match (match-node-check match-node assertion return)))
(when (not (null? match))
(return match))))
(hash-ref (current-inference-goal-index)
(fact-first fact) (lambda () '()))) '())))
;;; (query pattern) -> (listof match?)
;;; pattern : pattern?
;;; Returns a list of assertions matching a pattern. Not currently used
;;; internally. May be useful for dynamic bindings within a rule.
(define (query pattern)
(let ((matches '()))
(hash-for-each
(assertion-level-2-index (list (pattern-first pattern)))
(lambda (fact assertion)
(let* (;(fact (assertion-fact assertion))
(bindings (pattern-unify fact pattern '())))
(when bindings
(set! matches
(mcons (cons assertion bindings)
matches))))))
matches))
;;; (query* pattern) -> (listof match?)
;;; pattern : pattern?
;;; Like query, but also matches asserted facts in subclasses.
(define (query* pattern)
(let ((matches '()))
(for ((class-name (in-list
(class-descendant-names
(ontology-find-class
(current-inference-ontology)(pattern-first pattern))))))
(hash-for-each
(assertion-level-2-index (list class-name))
(lambda (fact assertion)
(let* ((bindings (pattern-unify fact pattern '())))
(when bindings
(set! matches
(mcons (cons assertion bindings)
matches)))))))
matches))
;;; -----------------------------------------------------------------------------
;;; Assume
;;; -----------------------------------------------------------------------------
;;; (assume fact) -> any
;;; Initiate a new inference using the assumed fact as a basis.
;;; Note that is experimental. Also, it should allow a list of facts to be
;;; assummed.
(define (assume fact)
(let ((saved (copy-inference-environment (current-inference-environment))))
(assert fact)
(let ((result (start-inference)))
(if result
(current-inference-exit (inference-environment-exit saved))
(current-inference-environment saved))
result)))
;;; -----------------------------------------------------------------------------
;;; Rule Network
;;; -----------------------------------------------------------------------------
;;; (struct node (successors matches))
;;; successors : (listof node?)
;;; matches : (listof match?)
;;; An anstract structure used to define the nodes in a rule network. There are
;;; concrete structures defined on top of this: match-node, join-node, and rule-
;;; node. The fields are:
;;; successors - list of successor nodes
;;; matches - list of matches for the node
;;; - #f for goal nodes
(define-struct node
(successors
matches)
#:inspector (make-inspector)
#:mutable)
;;; (struct (match-node node) (assertion-variable
;;; pattern
;;; match-constraint-variables
;;; match-constraints
;;; match-constraint-predicate
;;; n))
;;; assertion-variable : (or/c variable? false/c)
;;; pattern : pattern?
;;; match-constraint-variables : (listof variable?)
;;; match-constraints : (listof list?)
;;; match-constraint-predicate : (or/c procedure? false/c)
;;; n : exact-nonnegative-integer?
;;; The fields are:
;;; assertion-variable - assertion variable or #f
;;; pattern - pattern to be matched
;;; match-constraint-variables
;;; - a list of the variables in the match constraints
;;; match-constraints - a list of the match constraints
;;; match-constraint-predicate
;;; - match constraint predicate
;;; n - number of assertions for initial symbol
(define-struct (match-node node)
(assertion-variable
pattern
match-constraint-variables
match-constraints
match-constraint-predicate
(n #:mutable))
#:inspector (make-inspector))
;;; (struct (join-node node) (left
;;; right
;;; join-constraint-variables
;;; join-constraints
;;; join-constraint-predicate
;;; existential?
;;; match-counts))
;;; left : (or/c node? false/c)
;;; right : node?
;;; join-constraint-variables : (listof variable?)
;;; join-constraints : (listof list?)
;;; join-constraint-predicate : (or/c procedure? false/c)
;;; existential? : (one-of/c #f 'no 'notany 'any 'notall 'all)
;;; match-counts : counts?
;;; The fields are:
;;; left - left node (#f or another join node)
;;; right - right node (match node)
;;; join-constraint-variables
;;; - a list of the variables in the join constraints
;;; join-constraints - a list of the join constraints
;;; join-constraint-predicate
;;; - join constraint predicate
;;; existential? - existential nature of the associated match node
;;; (right)
;;; #f - not an existential match
;;; no, notany - no assertions match
;;; any - at least one match
;;; notall - at least one doesn't match
;;; all - all assertions match
;;; match-counts - alist of count for joined matches
(define-struct (join-node node)
(left
right
join-constraint-variables
join-constraints
join-constraint-predicate
existential?
match-counts)
#:inspector (make-inspector))
;;; (struct (rule-node node) (rule join action))
;;; rule : rule?
;;; join : node?
;;; action: (or/c procedure false/c)
;;; The fields are:
;;; rule - rule structure
;;; join - join node (predecessor)
;;; action - procedure to execute (or #f)
(define-struct (rule-node node)
(rule
join
action)
#:inspector (make-inspector))
;;; (get-match-node successors
;;; matches
;;; assertion-variable
;;; pattern
;;; match-constraint-variables
;;; match-constraints
;;; match-constraint-predicate
;;; n) -> match-node?
;;; successors : (listof node?)
;;; matches : (listof match?)
;;; assertion-variable : (or/c variable? false/c)
;;; pattern : pattern?
;;; match-constraint-variables : (listof variable?)
;;; match-constraints : (listof list?)
;;; match-constraint-predicate : (or/c procedure? false/c)
;;; n : exact-nonnegative-integer?
;;; Returns a match node for the given (parsed) pattern. This facilitates reuse
;;; within the rule network for efficiency.
(define (get-match-node successors
matches
assertion-variable
pattern
match-constraint-variables
match-constraints
match-constraint-predicate
n)
(let/ec return
;; Search for an equivalent match node and return it if found.
(for-each
(lambda (match-node)
(when (and (eq? assertion-variable
(match-node-assertion-variable match-node))
(equal? pattern
(match-node-pattern match-node))
(equal? match-constraint-variables
(match-node-match-constraint-variables match-node))
(equal? match-constraints
(match-node-match-constraints match-node)))
(return match-node)))
(hash-ref (current-inference-data-index)
(pattern-first pattern)
(lambda () '())))
;; No equivalent match mode found, so create a new one.
(let ((match-node
(make-match-node
successors ; successors
matches ; matches
assertion-variable ; assertion-variable
pattern ; pattern
match-constraint-variables ; match-constraint-variables
match-constraints ; match-contraints
match-constraint-predicate ; match-constraint-predicate
n))) ; n
(hash-set! (current-inference-data-index)
(pattern-first pattern)
(cons match-node
(hash-ref (current-inference-data-index)
(pattern-first pattern)
(lambda () '()))))
match-node)))
;;; (get-match-node successors
;;; matches
;;; left
;;; right
;;; join-constraint-variables
;;; join-constraints
;;; join-constraint-predicate
;;; existential?
;;; match-counts) -> join-node?
;;; successors : (listof node?)
;;; matches : (listof match?)
;;; left : (or/c node? false/c)
;;; right : node?
;;; join-constraint-variables : (listof variable?)
;;; join-constraints : (listof list?)
;;; join-constraint-predicate : (or/c procedure? false/c)
;;; existential? : (one-of/c #f 'no 'notany 'any 'notall 'all)
;;; match-counts : counts?
;;; Returns a join node for the given join operation. This facilitates reuse
;;; within the rule network for efficiency.
(define (get-join-node successors
matches
left
right
join-constraint-variables
join-constraints
join-constraint-predicate
existential?
match-counts)
(let/ec return
;; Search for an equivalent join node and return it if found.
(for-each
(lambda (join-node)
(when (and (join-node? join-node)
(eq? left
(join-node-left join-node))
(eq? right
(join-node-right join-node))
(equal? join-constraint-variables
(join-node-join-constraint-variables join-node))
(equal? join-constraints
(join-node-join-constraints join-node))
(eq? existential?
(join-node-existential? join-node)))
(return join-node)))
(node-successors left))
;; No equivalent join mode found, so create a new one.
(make-join-node
successors
matches
left
right
join-constraint-variables
join-constraints
join-constraint-predicate
existential?
match-counts)))
;;; (link-nodes predecessor successor) -> void?
;;; predecessor : node?
;;; successor : node?
;;; Link nodes in a predecessor -> successor relationship.
(define (link-nodes predecessor successor)
(when (not (memq successor (node-successors predecessor)))
(set-node-successors!
predecessor
(cons successor (node-successors predecessor)))))
;;; (add-match-to-node-matches match node) -> void?
;;; match : match?
;;; node : node?
;;; Add a match to the list of matches for a node.
(define (add-match-to-node-matches match node)
(when (node-matches node)
(set-node-matches!
node (mcons match (node-matches node)))))
;;; (remove-match-from-node-matches match node) -> void?
;;; match : match?
;;; node : node?
;;; Remove a match from the list of matches for a node. For now, assume we have
;;; the actual match and can use eq?.
(define (remove-match-from-node-matches match node)
(let/cc exit
(let loop ((previous #f)
(matches (node-matches node)))
(when (not (null? matches))
(when (eq? match (mcar matches))
(if previous
(set-mcdr! previous (mcdr matches))
(set-node-matches! node (mcdr matches)))
(exit (void)))
(loop matches (mcdr matches))))))
;;; (get-node-matches node bindings) -> (listof match?)
;;; node : node?
;;; bindings : bindings?
;;; Returns the matches for a node. If the node is a backward chaining match
;;; node, then initiate backward chaining.
(define (get-node-matches node bindings)
(let ((matches (node-matches node)))
(if matches
matches
(if (match-node? node)
(check (pattern-substitute
(match-node-pattern node) bindings))
#f))))
;;; -----------------------------------------------------------------------------
;;; Ruleset Activation
;;; -----------------------------------------------------------------------------
;;; (activate ruleset) -> void?
;;; ruleset : ruleset?
;;; Activate a ruleset. Builds the rule network for a ruleset by activating all
;;; of its rules.
(define (activate ruleset)
;; The initial join nodes is used for all data nodes.
(let ((initial-join-node
(make-join-node
'() ; successors
(mlist '(())) ; matches
#f ; left
#f ; right
'() ; join-constraint-variables
'() ; join-constraints
#f ; join-constraint-predicate
#f ; existential?
(make-counts)))) ; match-counts
;; Activate all of the ruleset rules.
(for-each
(lambda (rule)
(activate-rule rule initial-join-node))
(ruleset-rules ruleset)))
(fix-goal-matches))
;;; (activate-rule rule initial-node) -> void
;;; rule : rule?
;;; initial-node : join-node?
;;; Activate a data rule. Build the rule network for a rule by creating and
;;; linking nodes. There is one match node and one join node per precondition
;;; clause and one rule node per rule.
(define (activate-rule rule initial-node)
(let ((match-node #f)
(join-node #f)
(rule-node #f)
(previous-node initial-node)
(previous-variable-list '()))
;; Create goal match node (goal nodes only).
(when (not (null? (rule-goals rule)))
(let ((goal-pattern (car (rule-goals rule))))
(set! previous-node
(make-match-node
'() ; successors
#f ; matches
#f ; assertion-variable
goal-pattern ; pattern
'() ; match-constraint-variables
'() ; match-constraints
#f ; match-constraint-predicate
0 ; n
))
(hash-set!
(current-inference-goal-index)
(pattern-first goal-pattern)
(cons previous-node
(hash-ref
(current-inference-goal-index)
(pattern-first goal-pattern)
(lambda () '()))))
(set! previous-variable-list
(pattern-variables goal-pattern))))
;; Process precondition clauses
(for-each
(lambda (clause)
(let ((existential? #f)
(assertion-variable #f)
(pattern #f)
(variable-list '()))
;; Parse clause
(cond ((and (pair? clause)
(variable? (car clause)))
(set! assertion-variable (car clause))
(set! pattern (caddr clause)))
((and (pair? clause)
(memq (car clause) '(no notany any notall all)))
(set! existential? (car clause))
(set! pattern (cadr clause)))
(else
(set! pattern clause)))
;; Add pattern variables to the variable list
(set! variable-list
(merge-variable-lists
previous-variable-list
(if assertion-variable
(cons assertion-variable (pattern-variables pattern))
(pattern-variables pattern))))
;; Get match constraints
(let ((match-constraints
(pattern-match-constraints
pattern (pattern-variables pattern))))
;; Make match node and add to index
(set! match-node
(get-match-node
'() ; successors
'() ; matches
assertion-variable ; assertion-variable
(pattern-base-pattern pattern) ; pattern
(if assertion-variable ; match-constraint-variables
(cons assertion-variable (pattern-variables pattern))
(pattern-variables pattern))
match-constraints ; match-contraints
(if (null? match-constraints) ; match-constraint-predicate
#f
(eval
`(lambda ,(if assertion-variable
(cons assertion-variable
(pattern-variables pattern))
(pattern-variables pattern))
(and ,@match-constraints))
(namespace-anchor->namespace anchor)))
0))) ; n
;; Make join node and link from match-node
(let ((join-constraints
(pattern-join-constraints
pattern (pattern-variables pattern))))
(set! join-node
(get-join-node
'() ; successors
(if (null? (rule-goals rule))
(if (or (memq existential? '(no notany))
(eq? existential? 'all))
(node-matches previous-node)
'())
#f) ; matches
previous-node ; left
match-node ; right
variable-list ; join-constraint-variables
join-constraints ; join-constraints
(if (null? join-constraints); constraint-predicate
#f
(eval `(lambda ,variable-list
(and ,@join-constraints))
(namespace-anchor->namespace anchor)))
existential? ; existential?
(make-counts)))) ; match-counts
(link-nodes match-node join-node)
;; Link from previous join-node, if any
(link-nodes previous-node join-node)
(set! previous-node join-node)
;; Update previous-variable-list for non existentials
(when (not existential?)
(set! previous-variable-list variable-list))))
(rule-preconditions rule))
;; Create rule node, link to it from the last join node, and add it
(set! rule-node
(make-rule-node
'() ; successors
(if (null? (rule-goals rule))
(node-matches previous-node)
#f) ; matches
rule ; rule
previous-node ; join
(if (not (rule-actions rule))
#f
(eval `(lambda ,previous-variable-list
(begin ,@(rule-actions rule)))
(namespace-anchor->namespace anchor)))
; action
))
(link-nodes previous-node rule-node)
(current-inference-rule-nodes
(append! (current-inference-rule-nodes)
(list rule-node))))
(void))
;;; (fix-goal-matches) -> void?
;;; Locate goal match nodes (i.e. any match node where the first symbol of its
;;; pattern matches a goal-directed rule) and mark them as such by setting their
;;; matches field to #f.
(define (fix-goal-matches)
(hash-for-each
(current-inference-data-index)
(lambda (key value)
(when (hash-ref (current-inference-goal-index) key
(lambda () #f))
(for-each
(lambda (match-node)
(set-node-matches! match-node #f))
value)
(hash-remove! (current-inference-data-index) key)))))
;;; (merge-variable-lists list1 list2) -> (listof variable?)
;;; list1 : (listof variable?)
;;; list2 : (listof variable?)
;;; Merge two lists of variables maintaining the order.
(define (merge-variable-lists list1 list2)
(cond ((null? list2)
list1)
((memq (car list2) list1)
(merge-variable-lists list1 (cdr list2)))
(else
(merge-variable-lists
(append list1 (list (car list2))) (cdr list2)))))
;;; -----------------------------------------------------------------------------
;;; Match Node Processing
;;; -----------------------------------------------------------------------------
;;; (match-node-assert match-node assertion) -> void?
;;; match-node : match-node?
;;; assertion : assertion?
;;; Match an assertion against the pattern in a match node. If there is a match,
;;; update the matches for the node and propagate the match to the join node(s).
(define (match-node-assert match-node assertion)
(set-match-node-n! match-node (+ (match-node-n match-node) 1))
(let ((bindings (pattern-unify
(assertion-fact assertion)
(match-node-pattern match-node) (make-bindings))))
(when bindings
;; Add assertion variable, if any.
(when (match-node-assertion-variable match-node)
(set! bindings
(cons
(cons (match-node-assertion-variable match-node)
assertion)
bindings)))
;; Check match constraints
(when (and (match-node-match-constraint-predicate match-node)
(not (apply (match-node-match-constraint-predicate match-node)
(bindings-values bindings))))
(set! bindings #f)))
(if bindings
;; Build and propagate match to successors
(let ((match (cons (list assertion) bindings)))
(add-match-to-node-matches match match-node)
(for-each
(lambda (successor)
(propagate-match-from-match-node match successor))
(node-successors match-node)))
(for-each
(lambda (successor)
(propagate-nonmatch-from-match-node successor))
(node-successors match-node)))))
;;; (match-node-retract match-node assertion) -> void?
;;; match-node : match-node?
;;; assertion : assertion?
;;; Retract an assertion from a match node and propagate the retraction through
;;; the rule network.
(define (match-node-retract match-node assertion)
(set-match-node-n! match-node (- (match-node-n match-node) 1))
(let/cc exit
(let loop ((previous #f)
(matches (node-matches match-node)))
(when (not (null? matches))
(let ((match (mcar matches)))
(when (eq? assertion (caar match))
;; Remove the match
(if previous
(set-mcdr! previous (mcdr matches))
(set-node-matches! match-node (mcdr matches)))
(for-each
(lambda (successor)
(unpropagate-match-from-match-node match successor))
(node-successors match-node))
(exit (void))))
(loop matches (mcdr matches))))
;; Match not found
(for-each
(lambda (successor)
(unpropagate-nonmatch-from-match-node successor))
(node-successors match-node))))
;;; (match-node-check match-node assertion continuation) -> void?
;;; match-node : match-node?
;;; assertion : assertion?
;;; continuation : procedure?
;;; Perform backward chaining from a match node.
(define (match-node-check match-node assertion continuation)
(let/ec exit
(let ((bindings (pattern-unify
(assertion-fact assertion)
(match-node-pattern match-node) '())))
(when bindings
;; Add assertion variable, if any.
(when (match-node-assertion-variable match-node)
(set! bindings
(cons
(cons (match-node-assertion-variable match-node)
assertion)
bindings)))
;; Check match constraints
(when (and (match-node-match-constraint-predicate match-node)
(not (apply (match-node-match-constraint-predicate match-node)
(bindings-values bindings))))
(exit (void)))
;; Build and propagate match to successors
(let ((match (cons (list assertion) bindings)))
(add-match-to-node-matches match match-node)
(for-each
(lambda (successor)
(propagate-match-from-join-node match successor continuation))
(node-successors match-node)))))
'()))
;;; -----------------------------------------------------------------------------
;;; Match Propagation and Unpropagation
;;; -----------------------------------------------------------------------------
;;; -----------------------------------------------------------------------------
;;; Propagate Match (or Non-Match)
;;; -----------------------------------------------------------------------------
;;; (propagate-match-from-match-node match join-node) -> void?
;;; match : match?
;;; join-node : join-node?
;;; Propagate a match from a match node. This is called when a match node propagates
;;; a match in response to an assertion.
(define (propagate-match-from-match-node match join-node)
(when (node-matches join-node)
(mfor-each
(lambda (left-match)
(let ((joined-match (join left-match match join-node)))
(if (join-node-existential? join-node)
;; Existential join node
(let ((count (counts-table-value
(join-node-match-counts join-node) left-match)))
;; Update the count (either stay the same or go up by 1)
(when joined-match
(set! count (+ count 1))
(counts-table-increment!
(join-node-match-counts join-node) left-match))
(case (join-node-existential? join-node)
((no notany)
(when (and joined-match
(= count 1)) ; count went from 0 to 1
(unpropagate-match-to-successors left-match join-node)))
((any)
(when (and joined-match
(= count 1)) ; count went from 0 to 1
(propagate-match-to-successors left-match join-node #f)))
((notall)
(let ((n (match-node-n (join-node-right join-node))))
(when (and (not joined-match)
(= count (- n 1)))
;; count went from n to n-1
;;(because n went up by 1, but the count didn't)
(propagate-match-to-successors left-match join-node #f))))
((all)
(let ((n (match-node-n (join-node-right join-node))))
(when (and (not joined-match)
(= count (- n 1)))
;; count went from n to n-1
;;(because n went up by 1, but the count didn't)
(unpropagate-match-to-successors left-match join-node))))))
;; Binding join node
(when joined-match
(propagate-match-to-successors joined-match join-node #f)))))
(get-node-matches (join-node-left join-node) (car match)))))
;;; (propagate-nonmatch-from-match-node join-node) -> void?
;;; join-node : join-node?
;;; Propagate a nonmatch from a match node. This is used to update notall and all
;;; existential matches.
(define (propagate-nonmatch-from-match-node join-node)
(when (node-matches join-node)
(mfor-each
(lambda (left-match)
(when (join-node-existential? join-node)
(let ((count (counts-table-value
(join-node-match-counts join-node) left-match)))
(case (join-node-existential? join-node)
((notall)
(let ((n (match-node-n (join-node-right join-node))))
(when (= count (- n 1))
(propagate-match-to-successors left-match join-node #f))))
((all)
(let ((n (match-node-n (join-node-right join-node))))
(when (= count (- n 1))
(unpropagate-match-to-successors left-match join-node))))))))
(get-node-matches (join-node-left join-node) '()))))
;;; (propagate-match-from-join-node match join-node continuation) -> void
;;; match : match?
;;; join-node : join-node?
;;; continuation : procedure?
;;; Propagate a match from one join node to a successor join node.
(define (propagate-match-from-join-node match join-node continuation)
(if (join-node-existential? join-node)
;; Existential join node
(let ((count 0))
(mfor-each
(lambda (right-match)
(let ((joined-match (join match right-match join-node)))
(when joined-match
(set! count (+ count 1)))))
(node-matches (join-node-right join-node)))
;; Add match to match counts
(set-counts-table-value!
(join-node-match-counts join-node) match count)
;; Propagate match based on existential type
(case (join-node-existential? join-node)
((no notany)
(when (= count 0)
(propagate-match-to-successors match join-node continuation)))
((any)
(when (> count 1)
(propagate-match-to-successors match join-node continuation)))
((notall)
(let ((n (match-node-n (join-node-right join-node))))
(when (< count n)
(propagate-match-to-successors match join-node continuation))))
((all)
(let ((n (match-node-n (join-node-right join-node))))
(when (= count n)
(propagate-match-to-successors match join-node continuation))))))
;; Binding join node
(mfor-each
(lambda (right-match)
(let ((joined-match (join match right-match join-node)))
(when joined-match
(propagate-match-to-successors joined-match join-node continuation))))
(get-node-matches (join-node-right join-node) (cdr match)))))
;;; (propagate-match-to-successors match join-node continuation) -> void?
;;; match : match?
;;; join-node : join-node?
;;; continuation : procedure?
;;; Propagate a match from a join node to its successor nodes.
(define (propagate-match-to-successors match join-node continuation)
;; Add match to node matches
(add-match-to-node-matches match join-node)
;; Propagate match to successor nodes
(for-each
(lambda (successor)
(if (join-node? successor)
(propagate-match-from-join-node match successor continuation)
(propagate-match-to-rule match successor continuation)))
(node-successors join-node)))
;;; (propagate-match-to-rule match rule-node continuation) -> void?
;;; match : match?
;;; rule-node : rule-node?
;;; continuation : procedure?
;;; Propagate a match from a join node to a successor rule node.
(define (propagate-match-to-rule match rule-node continuation)
;(add-match-to-node-matches match rule-node) ???
(if (node-matches rule-node)
(let ((rule-instance
(make-rule-instance rule-node match 0)))
(agenda-add! rule-instance))
(begin
(when (current-inference-trace)
(printf "<== ~s: ~s~n"
(rule-node-rule rule-node)
(cdr match)))
(when (rule-node-action rule-node)
(current-inference-rule (rule-node-rule))
(apply (rule-node-action rule-node)
(bindings-values match))
(current-inference-rule #f)
(current-inference-rules-fired
(+ (current-inference-rules-fired) 1)))
(continuation (mlist (cons (list (caar match)) (cdr match)))))))
;;; -----------------------------------------------------------------------------
;;; Unpropagate Matches
;;; -----------------------------------------------------------------------------
;;; (unpropagate-match-from-match-node match join-node) -> void?
;;; match : match?
;;; join-node : join-node?
;;; Unpropagate a match from a match node. This is called when a match node
;;; unpropagates a match in response to a retraction.
(define (unpropagate-match-from-match-node match join-node)
(if (join-node-existential? join-node)
;; Existential node
(mfor-each
(lambda (left-match)
(let ((count (counts-table-value
(join-node-match-counts join-node) left-match))
(joined-match (join left-match match join-node)))
(when joined-match
(set! count (- count 1))
(set-counts-table-value!
(join-node-match-counts join-node) left-match count))
(case (join-node-existential? join-node)
((no notany)
(when (and joined-match
(= count 0)) ; count went from 1 to 0
(propagate-match-to-successors left-match join-node #f)))
((any)
(when (and join-node
(= count 0)) ; count went from 1 to 0
(unpropagate-match-to-successors left-match join-node)))
((notall)
(let ((n (match-node-n (join-node-right join-node))))
(when (and (not joined-match)
(= count n))
; count went from n-1 to n
(unpropagate-match-to-successors left-match join-node))))
((all)
(let ((n (match-node-n (join-node-right join-node))))
(when (and (not joined-match)
(= count n))
; count went from n-1 to n
(propagate-match-to-successors left-match join-node #f)))))))
(node-matches (join-node-left join-node)))
;; Binding join node
(let ((assertion (caar match)))
(mfor-each
(lambda (match)
(when (eq? assertion
(last (car match)))
(unpropagate-match-to-successors match join-node)))
(node-matches join-node)))))
;;; (unpropagate-nonmatch-from-match-node join-node) -> void?
;;; join-node : join-node?
;;; Unpropagate a nonmatch (from a retraction). This is needed to update notall
;;; and all existential matches.
(define (unpropagate-nonmatch-from-match-node join-node)
(when (join-node-existential? join-node)
(mfor-each
(lambda (left-match)
(let ((count (counts-table-value
(join-node-match-counts join-node) left-match)))
(case (join-node-existential? join-node)
((notall)
(let ((n (match-node-n (join-node-right join-node))))
(when (= count n)
(unpropagate-match-to-successors left-match join-node))))
((all)
(let ((n (match-node-n (join-node-right join-node))))
(when (= count n)
(propagate-match-to-successors left-match join-node #f)))))))
(node-matches (join-node-left join-node)))))
;;; (unpropagate-match-from-join-node match join-node) -> void?
;;; match : match?
;;; join-node : join-node?
;;; Unpropagate a match from a join node.
;;; For each of the matches for the node:
;;; When the given match is a subset of the node match:
;;; Remove the node match and unpropagate it to its successors.
(define (unpropagate-match-from-join-node match join-node)
;; Remove the count
(hash-remove!
(counts-table (join-node-match-counts join-node)) match)
;; Unpropagate match to successors
(mfor-each
(lambda (node-match)
(when (match-subset? match node-match)
(unpropagate-match-to-successors node-match join-node)))
(node-matches join-node)))
;;; (unpropagate-match-to-successors match join-node) -> void?
;;; match : match?
;;; join-node : join-node?
;;; Unpropagate a match from a join node to its successors.
(define (unpropagate-match-to-successors match join-node)
;; Remove the match from the node matches.
(remove-match-from-node-matches match join-node)
;; Unpropagate match to successor nodes.
(for-each
(lambda (successor)
(if (join-node? successor)
(unpropagate-match-from-join-node match successor)
(unpropagate-match-to-rule match successor)))
(node-successors join-node)))
;;; (unpropagate-match-to-rule match rule-node) -> void?
;;; match : match?
;;; rule-node : rule-node?
;;; Unpropagate a match from a join node to a successor rule node.
(define (unpropagate-match-to-rule match rule-node)
(agenda-remove! rule-node match))
;;; -----------------------------------------------------------------------------
;;; Join
;;; -----------------------------------------------------------------------------
;;; (join left-match right-match join-node) -> (or/c (listof any/c) false/c)
;;; left-match : match?
;;; right-match : match?
;;; join-node : join-node?
;;; Join two (left and right) matches. If the bindings are consistant and the
;;; constraints are met, join the matches and propagate the joined match to any
;;; successor (join or rule) nodes.
(define (join left-match right-match join-node)
(let ((left-assertions (car left-match))
(left-bindings (cdr left-match))
(right-assertions (car right-match))
(right-bindings (cdr right-match)))
(let/cc return
;; Check that bindings match
(for-each
(lambda (right-binding)
(when (assq (car right-binding) left-bindings)
(when (not (equal? (cdr right-binding)
(cdr (assq (car right-binding) left-bindings))))
(return #f))))
right-bindings)
;; Add new bindings
(let ((bindings left-bindings))
(for-each
(lambda (right-binding)
(when (not (assq (car right-binding) left-bindings))
(set! bindings (append bindings (list right-binding)))))
right-bindings)
;; Check constraints
(when (and (join-node-join-constraint-predicate join-node)
(not (apply (join-node-join-constraint-predicate join-node)
(bindings-values bindings))))
(return #f))
;; Return match
(cons (append left-assertions right-assertions) bindings)))))
;;; -----------------------------------------------------------------------------
;;; Rule Instances
;;; -----------------------------------------------------------------------------
;;; (struct rule-instance (rule-node match random))
;;; rule-node : rule-node?
;;; match : match?
;;; random : real?
;;; A rule instance represents an instance of a rule for a given match.
(define-struct rule-instance (rule-node match random) #:mutable)
;;; (rule-instance-apply rule-instance) -> any
;;; rule-instance : rule-instance?
;;; Executes the rule action for the rule instance - i.e. fire the rule.
(define (rule-instance-apply rule-instance)
(let* ((rule-node (rule-instance-rule-node rule-instance))
(rule (rule-node-rule rule-node))
(match (rule-instance-match rule-instance))
(arguments (bindings-values (cdr match))))
(when (current-inference-trace)
(printf "==> ~s: ~s~n"
rule (cdr match)))
;; Apply the rule
(current-inference-rule rule)
(apply (rule-node-action rule-node) arguments)
(current-inference-rule #f)
(current-inference-rules-fired
(+ (current-inference-rules-fired) 1))))
;;; -----------------------------------------------------------------------------
;;; Agenda Maintenance
;;; -----------------------------------------------------------------------------
;;; (agenda-add! rule-instance) -> void?
;;; rule-instance : rule-instance?
;;; Add a rule instance to the agenda in accordance with the current conflict
;;; resolution strategy.
(define (agenda-add! rule-instance)
(let* ((rule-node (rule-instance-rule-node rule-instance))
(rule (rule-node-rule rule-node))
(priority (rule-priority rule)))
(when (eq? (current-inference-strategy) 'random)
(set-rule-instance-random! rule-instance (random)))
(let ((agenda-tail (current-inference-agenda))
(previous #f))
(let loop ()
(when (not (null? agenda-tail))
(let* ((item (mcar agenda-tail))
(item-rule-node (rule-instance-rule-node item))
(item-rule (rule-node-rule item-rule-node))
(item-priority (rule-priority item-rule)))
(cond ((> item-priority priority)
(set! previous agenda-tail)
(set! agenda-tail (mcdr agenda-tail))
(loop))
((and (= item-priority priority)
(or (eq? (current-inference-strategy) 'breadth)
(and (eq? (current-inference-strategy) 'order)
(< (rule-order item-rule)
(rule-order rule)))
(and (eq? (current-inference-strategy) 'simplicity)
(< (rule-specificity item-rule)
(rule-specificity rule)))
(and (eq? (current-inference-strategy) 'complexity)
(> (rule-specificity item-rule)
(rule-specificity rule)))
(and (eq? (current-inference-strategy) 'random)
(< (rule-instance-random item)
(rule-instance-random rule-instance)))))
(set! previous agenda-tail)
(set! agenda-tail (mcdr agenda-tail))
(loop))
(else
(void))))))
(if previous
(set-mcdr! previous (mcons rule-instance agenda-tail))
(current-inference-agenda (mcons rule-instance agenda-tail))))))
;;; (agenda-remove! rule-node match) -> void?
;;; rule-node : rule-node?
;;; match : match?
;;; Remove the rule instance for the given rule-node and match from the agenda.
(define (agenda-remove! rule-node match)
(let loop ((previous #f)
(agenda-tail (current-inference-agenda)))
(when (not (null? agenda-tail))
(let ((item (mcar agenda-tail)))
(if (and (eq? rule-node (rule-instance-rule-node item))
(eq? match (rule-instance-match item)))
(if previous
(set-mcdr! previous (mcdr agenda-tail))
(current-inference-agenda (mcdr agenda-tail)))
(loop agenda-tail (mcdr agenda-tail)))))))
;;; -----------------------------------------------------------------------------
;;; Hierarchical Inference Environments
;;; -----------------------------------------------------------------------------
;;; (import pattern) -> void?
;;; pattern : pattern?
;;; Import assertions from the parent environment matching the given pattern.
(define (import pattern)
(when (not (current-inference-parent))
(error 'import
"Current inference environment is not a child environment"))
(let ((matches '()))
(with-inference-environment (current-inference-parent)
(set! matches (query pattern)))
(mfor-each
(lambda (match)
(assert (assertion-fact (car match))))
matches)))
;;; (export pattern) -> void?
;;; pattern : pattern?
;;; Exports assertions matching the given pattern to the parent environment.
(define (export pattern)
(when (not (current-inference-parent))
(error 'import
"Current inference environment is not a child environment"))
(let ((matches (query pattern)))
(with-inference-environment (current-inference-parent)
(mfor-each
(lambda (match)
(assert (assertion-fact (car match))))
matches))))
;;; (copy-inference-environment source) -> inference-environment?
;;; source : inference-environment?
;;; Return a copy of the source inference environment. This is used in assumption
;;; processing.
(define (copy-inference-environment source)
(let ((target (make-inference-environment))
(hash-table (make-hash)))
;; Copy rule network nodes from the rule nodes.
(for-each
(lambda (rule-node)
(copy-rule-node rule-node hash-table))
(inference-environment-rule-nodes source))
;; Copy data index
(let ((target-data-index (inference-environment-data-index target)))
(hash-for-each
(inference-environment-data-index source)
(lambda (key value)
(hash-set!
target-data-index
key (copy-match-node-list value hash-table)))))
;; Clone goal index
(let ((target-goal-index (inference-environment-goal-index target)))
(hash-for-each
(inference-environment-goal-index source)
(lambda (key value)
(hash-set!
target-goal-index
key (copy-match-node-list value hash-table)))))
;; Rule nodes will be cloned via the rule network cloning
;; Copy exit continuation
(set-inference-environment-exit!
target (inference-environment-exit source))
;; Copy next assertion id
(set-inference-environment-next-assertion-id!
target (inference-environment-next-assertion-id source))
;; Copy the assertion index
(let ((target-assertion-index
(inference-environment-assertion-index target)))
(hash-for-each
(inference-environment-assertion-index source)
(lambda (key value)
; (hash-set!
; target-assertion-index key (list-copy value))
(let ((new-level-2-index (make-hasheq)))
(hash-for-each
value
(lambda (key value)
(hash-set!
new-level-2-index key value)))
(hash-set!
target-assertion-index key new-level-2-index))
)
))
;; Copy the agenda
(set-inference-environment-agenda!
target (mlist-copy (inference-environment-agenda source)))
;; Copy the rule
(set-inference-environment-rule!
target (inference-environment-rule source))
;; Copy the strategy
(set-inference-environment-strategy!
target (inference-environment-strategy source))
;; Copy the parent
(set-inference-environment-parent!
target (inference-environment-parent source))
;; Return the target
target))
;;; (copy-node node hash-table) -> node?
;;; node : node?
;;; hash-table : hash?
;;; Copies a node by dispatching to the appropriate copier.
(define (copy-node node hash-table)
(cond ((match-node? node)
(copy-match-node node hash-table))
((join-node? node)
(copy-join-node node hash-table))
((rule-node? node)
(copy-rule-node node hash-table))
(else
(error 'copy-node
"~s is not a type of rule network node" node))))
;;; (copy-match-node match-node hash-table) -> match-node?
;;; match-node : match-node?
;;; hash-table : hash?
;;; Returns a copy of the match node, or a reference to an existing copy.
(define (copy-match-node match-node hash-table)
(let ((copied-node (hash-ref hash-table match-node #f)))
(unless copied-node
(set! copied-node
(make-match-node
'()
(if (node-matches match-node)
(mlist-copy (node-matches match-node))
#f)
(match-node-assertion-variable match-node)
(match-node-pattern match-node)
(match-node-match-constraint-variables match-node)
(match-node-match-constraints match-node)
(match-node-match-constraint-predicate match-node)
(match-node-n match-node)))
(hash-set! hash-table match-node copied-node))
copied-node))
;;; (copy-join-node join-node hash-table) -> join-node?
;;; join-node : join-node?
;;; hash-table : hash?
;;; Returns a copy of the join node, or a reference to an existing copy.
(define (copy-join-node join-node hash-table)
(let ((copied-node (hash-ref hash-table join-node #f)))
(unless copied-node
(set! copied-node
(make-join-node
'()
(if (node-matches join-node)
(list-copy (node-matches join-node))
#f)
(copy-node (join-node-left join-node) hash-table)
(copy-node (join-node-right join-node) hash-table)
(join-node-join-constraint-variables join-node)
(join-node-join-constraints join-node)
(join-node-join-constraint-predicate join-node)
(join-node-existential? join-node)
;(alist-copy (join-node-match-counts join-node))
(make-counts)
))
;;
(set-counts-table!
(join-node-match-counts copied-node)
(hash-copy (counts-table join-node)))
;;
(link-nodes (join-node-left copied-node) copied-node)
(link-nodes (join-node-right copied-node) copied-node)
(hash-set! hash-table join-node copied-node))
copied-node))
;;; (copy-rule-node rule-node hash-table) -> rule-node?
;;; rule-node : rule-node?
;;; hash-table : hash?
;;; Returns a copy of the rule node, or a reference to an existing copy.
(define (copy-rule-node rule-node hash-table)
(let ((copied-node (hash-ref hash-table rule-node #f)))
(unless copied-node
(set! copied-node
(make-rule-node
'()
(if (node-matches rule-node)
(list-copy (node-matches rule-node))
#f)
(rule-node-rule rule-node)
(copy-node (rule-node-join rule-node) hash-table)
(rule-node-action rule-node)))
(link-nodes (rule-node-join rule-node) copied-node)
(hash-set! hash-table rule-node copied-node))
copied-node))
;;; (copy-match-node-list match-node-list hash-table) -> (listof match-node?)
;;; match-node-list : (listof match-node?)
;;; Clone a list of match nodes using the given hash table.
;;; MDW - check what this is about. I don't remember what it's for and the
;;; implementation seems naive, if not plain wrong.
(define (copy-match-node-list match-node-list hash-table)
match-node-list)
;;; -----------------------------------------------------------------------------
;;; Inference Control
;;; -----------------------------------------------------------------------------
;;; (start-inference) -> any
;;; The inference engine main loop.
(define (start-inference #:assert-start (assert-start? #t))
(when assert-start?
(assert '(start)))
(let/cc exit
;; Set the global exit continuation.
(current-inference-exit exit)
;; Simple selection - find the first rule instance
(let loop ()
(let ((agenda (current-inference-agenda)))
(if (not (null? agenda))
(let ((rule-instance (mcar agenda)))
(current-inference-agenda (mcdr agenda))
(rule-instance-apply rule-instance)
(loop))
#f)))))
;;; (stop-inference) -> any
;;; Stop the current inferencing and optionally return a value.
(define stop-inference
(case-lambda
((return-value)
((current-inference-exit) return-value))
(()
((current-inference-exit)))))
;;; (succeed) -> any
;;; Stop the current inferencing and return #t indicating success.
(define (succeed)
(stop-inference #t))
;;; (fail) ->
;;; Stop the current inferencing and return #f indicating failure.
(define (fail)
(stop-inference '#:fail))
;;; -----------------------------------------------------------------------------
;;; Helpful Debugging Functions
;;; -----------------------------------------------------------------------------
;;; (print-rule-network) -> any
;;; For debugging.
(define (print-rule-network)
(for-each
(lambda (rule-node)
(printf "----------~n")
(printf "Rule: ~a~n~n" (rule-name (rule-node-rule rule-node)))
(print-join-node (rule-node-join rule-node)))
(current-inference-rule-nodes)))
(define (print-join-node join-node)
(when (join-node-left join-node)
(if (join-node? (join-node-left join-node))
(print-join-node (join-node-left join-node))
(print-match-node (join-node-left join-node))))
(when (join-node-right join-node)
(print-match-node (join-node-right join-node)))
(printf "join node: existential? = ~a~n" (join-node-existential? join-node))
(printf "join-node: match-counts = ~a~n" (join-node-match-counts join-node))
(printf "join node: matches = ~a~n~n" (node-matches join-node)))
(define (print-match-node match-node)
(printf "match-node: pattern = ~a~n" (match-node-pattern match-node))
(printf "match-node: matches = ~a~n~n" (node-matches match-node)))
;;;
(define the-node-dictionary #f)
(define (node-ref node)
(let ((entry (hash-ref the-node-dictionary node #f)))
(if entry
entry
(let ((ref
(cond ((match-node? node)
(symbol->string (gensym "match")))
((join-node? node)
(symbol->string (gensym "join")))
((rule-node? node)
(format "rule : ~a"
(rule-name (rule-node-rule node)))))))
(hash-set! the-node-dictionary node ref)
ref))))
(define (graph-rule-network)
(set! the-node-dictionary (make-hasheq))
(let ((port (open-output-file "rule-network.dot"
#:mode 'text
#:exists 'replace)))
(fprintf port "digraph \"rule-network\" {~n")
(fprintf port " rankdir=LR;~n")
(for ((rule-node (in-list (current-inference-rule-nodes))))
(let ((rule-node-ref (node-ref rule-node)))
(fprintf port " \"~a\";~n" rule-node-ref)
(graph-join-node port (rule-node-join rule-node) rule-node-ref)))
(fprintf port "}~n")
(close-output-port port)))
(define (graph-join-node port join-node successor-ref)
(let ((join-node-ref (node-ref join-node)))
(fprintf port " \"~a\" [label=\"join~a\\l~a\"];~n"
join-node-ref
(if (join-node-existential? join-node)
(format " : ~a" (join-node-existential? join-node))
"")
(for/fold ((constraints-string ""))
((constraint (in-list (join-node-join-constraints join-node))))
(string-append
constraints-string
(format "~s\\l" constraint))))
(fprintf port " \"~a\" -> \"~a\";~n"
join-node-ref successor-ref)
(when (join-node-right join-node)
(graph-match-node port (join-node-right join-node) join-node-ref))
(when (join-node-left join-node)
(if (join-node? (join-node-left join-node))
(graph-join-node port (join-node-left join-node) join-node-ref)
(graph-match-node port (join-node-left join-node) join-node-ref)))
))
(define (graph-match-node port match-node successor-ref)
(let ((match-node-ref (node-ref match-node)))
(fprintf port " \"~a\" [shape=box,label=\"match : ~a\\l~a\"];~n"
match-node-ref
(match-node-pattern match-node)
(for/fold ((constraints-string ""))
((constraint (in-list (match-node-match-constraints match-node))))
(string-append
constraints-string
(format "~s\\l" constraint))))
(fprintf port " \"~a\" -> \"~a\";~n"
match-node-ref successor-ref)))
;;; -----------------------------------------------------------------------------
;;; Module Contracts
;;; -----------------------------------------------------------------------------
;(provide/contract
; (assert
; (->* (fact?) (any/c) (or/c assertion? false/c)))
; (retract
; (-> assertion? void?))
; (replace
; (->* (assertion? fact?) (any/c) assertion?))
; (check
; (-> fact? (mlistof match?)))
;; (query
;; (-> pattern? (mlistof match?)))
; (query
; (-> pattern? any))
; (assume
; (-> fact? void?))
; (activate
; (-> ruleset? void?))
; (start-inference
; (-> any))
; (stop-inference
; (case->
; (-> any/c any)
; (-> any)))
; (succeed
; (-> any))
; (fail
; (-> any))
; (graph-rule-network
; (-> any))
; )
(provide (all-defined-out))
| false |
21a4579667c3b372c280dfd7f53c6b5c67ade8d0 | 6200451504582fefa533590ab3050dbe99d885d2 | /temp-c-test/tests/test-temporal-no-call-after-return.rkt | 58fe9265205aad0ed0598a744c8089e9bb649599 | []
| no_license | jeapostrophe/temp-c | 54c7093f9d1ad21000a09a88a1e29f42e6ca70b3 | 43f7f2141c81a301aa229ef4105f458eee070653 | refs/heads/master | 2016-09-06T08:56:38.357461 | 2015-12-19T21:50:34 | 2015-12-19T21:50:34 | 39,651,762 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 2,978 | rkt | test-temporal-no-call-after-return.rkt | #lang racket/load
#| -----------------------------------------------------------------------------
testing temporal contracts:
let t = (new turn board player-tiles player-score tile-bag)
let t come with two methods: bump and observe
(send . take-turn t)
admin --------------------------------------------------------> player
TEMPORAL: don't call bump on t after this call returns
|#
(require errortrace)
;; -----------------------------------------------------------------------------
;; the interface module, defines turn% and how player is called via take-turn
(module player-admin-interface racket
(require temp-c/dsl)
(define turn%
(class object%
(init-field value)
(define/public (observe) value)
(define/public (bump) (set! value (+ value 1)))
(super-new)))
(define player/c
(with-monitor
(class/c [take-turn (label 'take-turn
(->m
(object/c [observe (label 'observe (->m natural-number/c))]
[bump (label 'bump (->m any/c))])
any/c))])
(complement
(seq (star _)
(dseq (monitor:return 'take-turn _ _ _ _ _ (list _ t) _)
(seq (star _)
(call 'bump (== t))))))))
(provide player/c turn%))
;; -----------------------------------------------------------------------------
;; the player module defines a player and slabs on the requires player contract
(module player racket
(require 'player-admin-interface)
(define player%
(class object%
(init-field name)
(define turn #false)
(define/public (take-turn t)
(if turn
(send turn bump)
(send t bump))
(set! turn t))
(super-new)))
(provide/contract
[player% player/c]))
;; -----------------------------------------------------------------------------
;; the admin module creates player, admin, and has admin call player
(module admin racket
(require 'player-admin-interface 'player tests/eli-tester)
(define admin%
(class object%
(init-field player)
(define/public (run)
(define turn1 (new turn% [value 1]))
(send player take-turn turn1)
(define value1 (send turn1 observe))
;; ---
(define turn2 (new turn% [value 10]))
(test
(send player take-turn turn2)
=error>
#rx"disallowed call")
;; ---
(list 'bad-for-turn1: (not (= 2 (send turn1 observe)))
'bad-for-turn2: (= 10 (send turn2 observe))))
(super-new)))
;; main
(define player (new player% [name "a"]))
(define admin (new admin% [player player]))
(displayln (send admin run)))
;; -----------------------------------------------------------------------------
;; run program run
(require 'admin)
| false |
ac89b7ea87172db319d0398d419fb678121af5bb | 5f8d781ca6e4c9d3d1c3c38d2c04e18d090589cc | /0/www/labs/3.scrbl | abd187387ddd61ec65d85745a598c7d3abf04bbc | [
"AFL-3.0",
"AFL-2.1",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | plum-umd/fundamentals | a8458621131b864f0e3389b030c5197ea6bb3f41 | eb01ac528d42855be53649991a17d19c025a97ad | refs/heads/master | 2021-06-20T05:30:57.640422 | 2019-07-26T15:27:50 | 2019-07-26T15:27:50 | 112,412,388 | 12 | 1 | AFL-3.0 | 2018-02-12T15:44:48 | 2017-11-29T01:52:12 | Racket | UTF-8 | Racket | false | false | 5,900 | scrbl | 3.scrbl | #lang scribble/manual
@(require scribble/core
scribble/examples
racket/sandbox
(for-label lang/htdp-beginner)
(for-label (except-in 2htdp/image image?))
;"helper.rkt"
"../utils.rkt"
"../defns.rkt")
@(define the-eval
(let ([the-eval (make-base-eval)])
(the-eval '(require (only-in lang/htdp-intermediate check-expect)))
(the-eval '(require 2htdp/image))
(the-eval '(require (only-in lang/htdp-beginner identity string-whitespace?)))
(the-eval '(require (prefix-in r: racket)))
the-eval))
@title[#:style 'unnumbered #:tag "lab3"]{Lab 3: Genius Bar}
@(define ex (make-exerciser "Lab problem"))
@section[#:tag "lab3intro"]{Introduction(s)}
You'll work in labs in pairs. Find someone to work with for this
first lab and introduce yourself.
Make sure at least one of you have a laptop to work on for this lab.
The two of you will work as a team to solve problems. At any time, one of you
will be the @bold{Head} and the other will be the @bold{Hands}. The @bold{Head}
does the thinking and the @bold{Hands} does the typing. @bold{Hands} type only
what the @bold{Head} tells them to, but you're free to discuss any issues that
pop up. We'll have you switch off during the lab to make sure each of you get
practice problem solving, dealing with syntax, and getting finger exercises on
the keyboard.
@section[#:tag "lab3:purpose"]{Purpose}
In this lab, you'll practice writing functions and building simple
world programs using the @bold{design recipe} for systematic
computational problem solving.
@section{Making progress}
@secref{lab2} introduced you to the world of @racket[big-bang]
programs. However, fundamentally, the program you wrote was just a
fancier version of @racket[animate] programs you had already seen: the
program did not respond to any interactions from the user.
In this lab, you will write a very simple interactive program that
responds to user actions.
You will make a program that shows a progress bar that graphically
displays the percentage of some task being complete (e.g. downloading
a file, installing some software, starting DrRacket).
The first version of the program should assume progress is made at a
uniform rate of %1 per tick of time. You will need to use the
@racketmodname[2htdp/image] and @racketmodname[2htdp/universe]
libraries to complete this lab.
@racketblock[
(require 2htdp/image)
(require 2htdp/universe)]
The main function for this program will look like this:
@codeblock[#:keep-lang-line? #false]|{
#lang racket
;; main : Integer -> Integer
;; Launch progress bar at given percentage level (between 0 and 100)
(define (main x)
(big-bang x
[on-tick progress-forward]
[to-draw progress-draw]))
}|
Your job is to design @racket[progress-forward] and
@racket[progress-draw].
We will add functionality to handle user input shortly. For the time
being, the program should display a rectangular scene with a red
rectangle aligned on the left side. The width of the rectangle should
correspond to the percentage of progress that has been made. When 0%
progress has been made, the rectangle should be 0 px wide. When 100%
progress has been made, the rectangle should be as wide as the scene.
@ex["Problem analysis and data definition"]{
Consider the description above. Express how you wish to represent information as data.
}
@ex["Signatures, purpose statements"]{
Consider the use of @racket[progress-forward] and
@racket[progress-draw]. Write down a signature, a statement of
purpose, and a function header for both functions. The purpose
statement should answer the question: @emph{what does the function
compute?}
}
@ex["Examples"]{
Illustrate the use of @racket[progress-forward] and
@racket[progress-draw] with examples and their expected outcome.
}
@ex["Inventory"]{
Take an inventory of what each function has to compute with.
}
@ex["Code"]{
Guided by your example, signature, and purpose statement, complete the
definitions of @racket[progress-forward] and
@racket[progress-draw].
}
@ex["Test"]{
Using @racket[check-expect], turn your earlier examples in to tests
and confirm your functions behave as expected. Revise your program if
things do not work as intended.
}
@section{Wait a minute...}
Now consider adding the ability for the user to pause and unpause the
progress by pressing the space bar.
Here's an idea for how to represent a paused progress bar: use
negative numbers to mean progress is paused. So for example, the
interpretation of @racket[-25] is that 25% progress has been made, but
progress is paused.
To handle key events, we need to add another clause to our
@racket[big-bang] and will need to design another function.
@codeblock[#:keep-lang-line? #false]|{
#lang racket
;; main : Integer -> Integer
;; Launch progress bar at given percentage level (between 0 and 100)
;; Allow user to pause and unpause with press of a key
(define (main x)
(big-bang x
[on-tick progress-forward]
[to-draw progress-draw]
[on-key progress-pause]))
}|
@ex["Revise"]{
Revisit problems 1-6 with this revised description of the program.
}
Can you think of anything deficient about this representation? In
particular, is this representation @emph{adequate} to represent all
possible states of a progress bar, or is there information that is
unrepresentable?
@section[#:tag "lab3:bonus"]{Bonus}
If you've made it through the rest of the lab and are looking for
something more to do, consider the question posed at the end of the
previous section. Read up on structures and re-design the data
representation of progress bars to use a compound structure to
represent the state of a progress bar with @bold{two} pieces of data:
the percentage complete and a boolean indicating whether paused.
@ex["Revise (again)"]{
Revisit problems 1-6 with this revised data representation.
}
| false |
c149e6d7e30a79bcd6e4855eef350913b479cd40 | 5f8d781ca6e4c9d3d1c3c38d2c04e18d090589cc | /1/www/syllabus.scrbl | 4a5602ceddea020d32cd12a4e8e6c04d1701345a | [
"AFL-3.0",
"AFL-2.1",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | plum-umd/fundamentals | a8458621131b864f0e3389b030c5197ea6bb3f41 | eb01ac528d42855be53649991a17d19c025a97ad | refs/heads/master | 2021-06-20T05:30:57.640422 | 2019-07-26T15:27:50 | 2019-07-26T15:27:50 | 112,412,388 | 12 | 1 | AFL-3.0 | 2018-02-12T15:44:48 | 2017-11-29T01:52:12 | Racket | UTF-8 | Racket | false | false | 14,040 | scrbl | syllabus.scrbl | #lang scribble/manual
@(require scribble/core
"defns.rkt")
@provide[exam-table]
@title[#:style 'unnumbered]{Syllabus}
@local-table-of-contents[]
@section{Prerequisites and Description}
@bold{Corequisite:} MATH140; and permission of CMNS-Computer Science
department.
@bold{Credits:} 4.
@courseno is an introduction to computing and programming. Its major
goal is to introduce students to the principles of systematic problem
solving through programming and the basic rules of computation.
The course does @emph{not} assume @emph{any} prior
programming experience. It is therefore suitable for all freshman
students---majors and non-majors alike---who wish to explore the
intellectual ideas of the discipline. It does assume familiarity with
(high school) arithmetic and algebra, and it demands curiosity,
self-discipline, and willingness to work with others.
@section{Topics}
The following topics will be covered in this course:
@tabular[#:style 'boxed
#:sep @hspace[1]
(list (list @bold{Topics})
@list{How to program}
@list{How to design}
@list{Design with fixed-size data}
@list{Design with arbitrarily large data}
@list{Design with abstractions}
@list{Using abstractions}
@list{Iterative refinement}
@list{Generative recursion}
@list{Graph traversal}
@list{Nameless functions}
@list{Recursion with accumulators})]
@section{Grading}
Grades will be maintained on the CS Department
@link["https://grades.cs.umd.edu/"]{grades} server. You can always see
your current grade here.
You are responsible for all material discussed in lecture and
discussion section and posted on the class web page, including
announcements, deadlines, policies, etc.
Your final course grade will be determined according to the following
percentages:
@(define grades:m1 (list @elem{Midterm 1, @m1-date} "12%"))
@(define grades:m2 (list @elem{Midterm 2, @m2-date} "12%"))
@(define grades:f (list @elem{Final Exam, @final-date} "24%"))
@(define (make-grade-component-table . entries)
@tabular[#:style 'boxed
#:sep @hspace[1]
(list* (list @bold{Component} @bold{Percentage}) entries)])
@(define exam-table
@make-grade-component-table[
@grades:m1
@grades:m2
@grades:f])
@make-grade-component-table[
(list "Problem Sets" "40%")
@grades:m1
@grades:m2
(list @elem{In-class Quizzes} "6%")
(list @elem{Clicker Quizzes} "6%")
grades:f]
@section{Problem Sets}
There will be weekly problem sets, due Wednesdays at 11:59pm EST. All
problem sets are done with assigned pairs and submitted using the
submit server.
@section{Clicker Quizzes}
Clicker quizzes will be given in-class during lectures. You have to
bring your clicker to all lectures. You can register your clicker on
the @link[elms-url]{ELMS web page}.
We will drop the 20% lowest clicker quizzes to compensate for your
absence or other clicker related problems.
@section{Laptops in class}
Laptops will not be permitted in class.
@section{Outside-of-class communication with course staff}
Course staff will interact with students outside of class in primarily
three ways: in-person during office hours, electronically via the web
forum and course web page, and electronically via e-mail. The large
majority of communication should employ the first two methods,
reserving e-mail for personal (presumably rare) circumstances.
Personalized assistance, e.g., with assignments or exam preparation,
will be provided during office hours. Office hours for the
instructional staff will be posted on the course web page a few days
into the semester.
Additional assistance will provided via the Piazza web forum. You may
use this forum to ask general questions of interest to the class as a
whole, e.g., administrative issues or problem set clarification
questions. The course staff will monitor piazza on a daily basis, but
do not expect immediate answers to questions. Please do not post
publicly any information that would violate the university academic
integrity policy (e.g., problem set code).
Piazza allows students to post private questions that are only visible
to instructors. Please use this feature if you wish to ask specific
questions concerning your assignment solutions.
Personal e-mail to instructors or TAs should be reserved for issues
that cannot be handled by the above methods.
Important announcements will be made in class or on the class web
page, and via piazza.
@section{Excused Absences}
Any student who needs to be excused for an absence from a single
lecture, recitation, or lab due to illness shall:
@itemlist[#:style 'numbered
@item{Make a reasonable attempt to inform the instructor of his/her
illness prior to the class.}
@item{Upon returning to the class, present their instructor with a
self-signed note attesting to the date of their illness. Each note
must contain an acknowledgment by the student that the information
provided is true and correct. Providing false information to
University officials is prohibited under Part 9(h) of the Code of
Student Conduct (V-1.00(B) University of Maryland Code of Student
Conduct) and may result in disciplinary action.}
]
Missing an @bold{exam} for reasons such as illness, religious observance,
participation in required university activities, or family or personal
emergency (such as a serious automobile accident or close relative's
funeral) will be excused so long as the absence is requested in
writing at least @bold{2 days} in advance and the student includes
documentation that shows the absence qualifies as excused; @bold{a
self-signed note} is not sufficient as exams are Major Scheduled
Grading Events. For this class, such events are the final exam, and
the two midterms, which will be given in class on the following dates:
@itemlist[
@item{Midterm 1: @bold{@m1-date}}
@item{Midterm 2: @bold{@m2-date}}
@item{Final Exam: @bold{@final-date}}]
The final exam is scheduled according to the University Registrar.
For medical absences, you must furnish documentation from the health
care professional who treated you. This documentation must verify
dates of treatment and indicate the timeframe that the student was
unable to meet academic responsibilities. In addition, it must contain
the name and phone number of the medical service provider to be used
if verification is needed. No diagnostic information will ever be
requested. Note that simply being seen by a health care professional
does not constitute an excused absence; it must be clear that you were
unable to perform your academic duties.
It is the University's policy to provide accommodations for students
with religious observances conflicting with exams, but it is the your
responsibility to inform the instructor in advance of intended
religious observances. If you have a conflict with one of the planned
exams, you @bold{must} inform the instructor prior to the end of the
first two weeks of the class.
For missed exams due to excused absences, the instructor will arrange
a makeup exam. If you might miss an exam for any other reason other
than those above, you must contact the instructor @bold{in advance} to
discuss the circumstances. We are not obligated to offer a substitute
assignment or to provide a makeup exam unless the failure to perform
was due to an excused absence.
The policies for excused absences @bold{do not} apply to project
assignments. Projects will be assigned with sufficient time to be
completed by students who have a reasonable understanding of the
necessary material and begin promptly. In cases of @bold{extremely
serious} documented illness of @bold{lengthy duration} or other
protracted, severe emergency situations, the instructor may consider
extensions on project assignments, depending upon the specific
circumstances.
Besides the policies in this syllabus, the University's policies apply
during the semester. Various policies that may be relevant appear in
the @link["http://www.umd.edu/catalog"]{Undergraduate Catalog}.
If you experience difficulty during the semester keeping up with the
academic demands of your courses, you may consider contacting the
Learning Assistance Service in 2201 Shoemaker Building at (301)
314-7693. Their educational counselors can help with time management
issues, reading, note-taking, and exam preparation skills.
@section{Students with Disabilities}
Students with disabilities who have been certified by Disability
Support Services as needing any type of special accommodations should
see the instructor as soon as possible during the schedule adjustment
period (the first two weeks of class). Please provide DSS's letter of
accommodation to the instructor at that time.
All arrangements for exam accommodations as a result of disability
@bold{must} be made and arranged with the instructor @bold{at least}
three business days prior to the exam date; later requests (including
retroactive ones) will be refused.
@section{Academic Integrity}
The Campus Senate has adopted a policy asking students to include the
following statement on each examination or assignment in every course:
"I pledge on my honor that I have not given or received any
unauthorized assistance on this examination (or assignment)."
Consequently, you will be requested to include this pledge on each
exam and project. Please also carefully read the Office of Information
Technology's @link["http://www.nethics.umd.edu/aup/"]{policy}
regarding acceptable use of computer accounts.
Problem sets are to be written @bold{solely with your assigned
partner}, therefore cooperation with others or use of unauthorized
materials on problem sets is a violation of the University's Code of
Academic Integrity. Both the person receiving assistance @bold{and the
person providing assistance} are in violation of the honor
code. @bold{Any evidence} of this, or of unacceptable use of computer
accounts, use of unauthorized materials or cooperation on exams or
quizzes, or other possible violations of the Honor Code, @bold{will be
submitted} to the Student Honor Council, which could result in an XF
for the course, suspension, or expulsion.
@itemlist[
@item{For learning the course concepts, students are welcome to study
together or to receive help from anyone else. You may discuss with
others the problem set requirements, the features of the programming
languages used, what was discussed in class and in the class web
forum, and general syntax errors. Examples of questions that would be
allowed are "Does a cond expression always end with an else-clause?"
or "What does a 'mismatched parenthesis' error indicate?", because
they convey no information about the contents of a problem set.}
@item{When it comes to actually writing a project assignment, other
than help from the instructional staff a project must solely and
entirely be your and your partner's own work. Working with another
student or individual, or using anyone else's work @bold{in any way}
except as noted in this paragraph, is a violation of the code of
academic integrity and @bold{will be reported} to the Honor
Council. You may not discuss design of any part of a problem set with
anyone except the instructor, teaching assistants, and your assigned
partner @bold{for that problem set}. Examples of questions you may
@bold{not} ask others might be "How did you implement this part of the
problem set?" or "Please look at my code and help me find my stupid
syntax error!". You may not use any disallowed source of information
in creating either their project design or code. When writing projects
you are free to use ideas or @bold{short fragments} of code from
@bold{published} textbooks or @bold{publicly available} information,
but the specific source must be cited in a comment in the relevant
section of the program. }
]
@bold{Violations of the Code of Academic Integrity may include, but
are not limited to:}
@itemlist[
@item{Failing to do all or any of the work on a project by yourself,
other than assistance from the instructional staff.}
@item{Using any ideas or any part of another person's project, or copying any other individual's work in any way.}
@item{Giving any parts or ideas from your project, including test
data, to another student.}
@item{Allowing any other students access to your program on any
computer system.}
@item{Posting solutions to your projects to publicly-accessible sites,
e.g., on github.}
@item{Transferring any part of a problem set to or from another
student or individual by any means, electronic or otherwise.}]
If you have any question about a particular situation or source then
consult with the instructors in advance. Should you have difficulty
with a programming assignment you should @bold{see the instructional
staff in office hours}, and not solicit help from anyone else in
violation of these rules.
@bold{It is the responsibility, under the honor policy, of anyone who
suspects an incident of academic dishonesty has occurred to report it
to their instructor, or directly to the Honor Council.}
Every semester the department has discovered a number of students
attempting to cheat on assignments, in violation of academic integrity
requirements. Students' academic careers have been significantly
affected by a decision to cheat. Think about whether you want to join
them before contemplating cheating, or before helping a friend to
cheat.
You are welcome and encouraged to study and compare or discuss their
implementations of the problem sets with any others after they are
graded, @bold{provided that} all of the students in question have
received nonzero scores for that assignment, and if that assignment
will not be extended upon in a later assignment.
@section{Course Evaluations}
If you have a suggestion for improving this class, don't hesitate to
tell the instructor or TAs during the semester. At the end of the
semester, please don't forget to provide your feedback using the
campus-wide CourseEvalUM system. Your comments will help make this
class better. | false |
05d55a1e408d596386b6915f883ed305205a15ea | c7b2e9798968b7b65626e30be8e53eced7fef55c | /TP/tp5/variable.rkt | 751ac457aa230749bf609fe0fded2a0d6a9589a2 | []
| no_license | MonsieurCo/ParadigmesL3 | bc61005ee8711a417db27ceea53699953cbf86db | 68af1bda1ce4da678e8131f39ac7d391cb3b463b | refs/heads/main | 2023-07-26T14:43:31.165775 | 2021-09-01T14:48:54 | 2021-09-01T14:48:54 | 336,847,745 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 5,864 | rkt | variable.rkt | ; Cours 05 : Les variables
#lang plait
;;;;;;;;;
; Macro ;
;;;;;;;;;
(define-syntax-rule (with [(v-id sto-id) call] body)
(type-case Result call
[(v*s v-id sto-id) body]))
;;;;;;;;;;;;;;;;;;;;;;;;
; Définition des types ;
;;;;;;;;;;;;;;;;;;;;;;;;
; Représentation des expressions
(define-type Exp
[numE (n : Number)]
[idE (s : Symbol)]
[plusE (l : Exp) (r : Exp)]
[multE (l : Exp) (r : Exp)]
[lamE (par : Symbol) (body : Exp)]
[appE (fun : Exp) (arg : Exp)]
[letE (s : Symbol) (rhs : Exp) (body : Exp)]
[setE (s : Symbol) (val : Exp)]
[beginE (l : Exp) (r : Exp)])
; Représentation des valeurs
(define-type Value
[numV (n : Number)]
[closV (par : Symbol) (body : Exp) (env : Env)])
; Représentation du résultat d'une évaluation
(define-type Result
[v*s (v : Value) (s : Store)])
; Représentation des liaisons
(define-type Binding
[bind (name : Symbol) (location : Location)])
; Manipulation de l'environnement
(define-type-alias Env (Listof Binding))
(define mt-env empty)
(define extend-env cons)
; Représentation des adresses mémoire
(define-type-alias Location Number)
; Représentation d'un enregistrement
(define-type Storage
[cell (location : Location) (val : Value)])
; Manipulation de la mémoire
(define-type-alias Store (Listof Storage))
(define mt-store empty)
(define override-store cons)
;;;;;;;;;;;;;;;;;;;;;;
; Analyse syntaxique ;
;;;;;;;;;;;;;;;;;;;;;;
(define (parse [s : S-Exp]) : Exp
(cond
[(s-exp-match? `NUMBER s) (numE (s-exp->number s))]
[(s-exp-match? `SYMBOL s) (idE (s-exp->symbol s))]
[(s-exp-match? `{+ ANY ANY} s)
(let ([sl (s-exp->list s)])
(plusE (parse (second sl)) (parse (third sl))))]
[(s-exp-match? `{* ANY ANY} s)
(let ([sl (s-exp->list s)])
(multE (parse (second sl)) (parse (third sl))))]
[(s-exp-match? `{lambda {SYMBOL} ANY} s)
(let ([sl (s-exp->list s)])
(lamE (s-exp->symbol (first (s-exp->list (second sl)))) (parse (third sl))))]
[(s-exp-match? `{let [{SYMBOL ANY}] ANY} s)
(let ([sl (s-exp->list s)])
(let ([subst (s-exp->list (first (s-exp->list (second sl))))])
(letE (s-exp->symbol (first subst))
(parse (second subst))
(parse (third sl)))))]
[(s-exp-match? `{set! SYMBOL ANY} s)
(let ([sl (s-exp->list s)])
(setE (s-exp->symbol (second sl)) (parse (third sl))))]
[(s-exp-match? `{begin ANY ANY} s)
(let ([sl (s-exp->list s)])
(beginE (parse (second sl)) (parse (third sl))))]
[(s-exp-match? `{ANY ANY} s)
(let ([sl (s-exp->list s)])
(appE (parse (first sl)) (parse (second sl))))]
[else (error 'parse "invalid input")]))
;;;;;;;;;;;;;;;;;;
; Interprétation ;
;;;;;;;;;;;;;;;;;;
; Interpréteur
(define (interp [e : Exp] [env : Env] [sto : Store]) : Result
(type-case Exp e
[(numE n) (v*s (numV n) sto)]
[(idE s) (v*s (fetch (lookup s env) sto) sto)]
[(plusE l r)
(with [(v-l sto-l) (interp l env sto)]
(with [(v-r sto-r) (interp r env sto-l)]
(v*s (num+ v-l v-r) sto-r)))]
[(multE l r)
(with [(v-l sto-l) (interp l env sto)]
(with [(v-r sto-r) (interp r env sto-l)]
(v*s (num* v-l v-r) sto-r)))]
[(lamE par body) (v*s (closV par body env) sto)]
[(appE f arg)
(with [(v-f sto-f) (interp f env sto)]
(type-case Value v-f
[(closV par body c-env)
(type-case Exp arg
[(idE s) (interp body
(extend-env (bind par (lookup s env)) c-env)
sto-f)]
[else (with [(v-arg sto-arg) (interp arg env sto-f)]
(let ([l (new-loc sto-arg)])
(interp body
(extend-env (bind par l) c-env)
(override-store (cell l v-arg) sto-arg))))])]
[else (error 'interp "not a function")]))]
[(letE s rhs body)
(with [(v-rhs sto-rhs) (interp rhs env sto)]
(let ([l (new-loc sto-rhs)])
(interp body
(extend-env (bind s l) env)
(override-store (cell l v-rhs) sto-rhs))))]
[(setE var val)
(let ([l (lookup var env)])
(with [(v-val sto-val) (interp val env sto)]
(v*s v-val (override-store (cell l v-val) sto-val))))]
[(beginE l r)
(with [(v-l sto-l) (interp l env sto)]
(interp r env sto-l))]))
; Fonctions utilitaires pour l'arithmétique
(define (num-op [op : (Number Number -> Number)]
[l : Value] [r : Value]) : Value
(if (and (numV? l) (numV? r))
(numV (op (numV-n l) (numV-n r)))
(error 'interp "not a number")))
(define (num+ [l : Value] [r : Value]) : Value
(num-op + l r))
(define (num* [l : Value] [r : Value]) : Value
(num-op * l r))
; Recherche d'un identificateur dans l'environnement
(define (lookup [n : Symbol] [env : Env]) : Location
(cond
[(empty? env) (error 'lookup "free identifier")]
[(equal? n (bind-name (first env))) (bind-location (first env))]
[else (lookup n (rest env))]))
; Renvoie une adresse mémoire libre
(define (new-loc [sto : Store]) : Location
(+ (max-address sto) 1))
; Le maximum des adresses mémoires utilisés
(define (max-address [sto : Store]) : Location
(if (empty? sto)
0
(max (cell-location (first sto)) (max-address (rest sto)))))
; Accès à un emplacement mémoire
(define (fetch [l : Location] [sto : Store]) : Value
(cond
[(empty? sto) (error 'interp "segmentation fault")]
[(equal? l (cell-location (first sto))) (cell-val (first sto))]
[else (fetch l (rest sto))]))
;;;;;;;;;
; Tests ;
;;;;;;;;;
(define (interp-expr [e : S-Exp]) : Value
(v*s-v (interp (parse e) mt-env mt-store)))
| true |
494bbd713121e1fc689dc44b659915e61aca48c2 | 061db6d37c5d05d56d4b7eedbda08568f42da533 | /gui-easy-lib/gui/easy/private/view/keymap.rkt | 8175b25157f2c865d798ef8010128efe98ed7386 | [
"BSD-3-Clause"
]
| permissive | DavidAlphaFox/racket-gui-easy | f2d34da14cf3c73c58119023d591f185ad63d071 | d61300c08250ca594464d5285cdfd5e2b49195fb | refs/heads/master | 2023-06-29T04:42:03.232576 | 2021-08-01T09:28:29 | 2021-08-01T09:28:29 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 519 | rkt | keymap.rkt | #lang racket/base
(require (only-in framework keymap:get-global)
racket/class)
(provide
the-default-keymap)
(define the-default-keymap
(keymap:get-global))
(define (add&map keyname name proc [k the-default-keymap])
(define name-str (symbol->string name))
(send k add-function name-str proc)
(send k map-function keyname name-str))
(when (eq? 'macosx (system-type 'os))
(add&map "d:a" 'select-all (λ (editor _event)
(send editor do-edit-operation 'select-all))))
| false |
06735f2d522d0217ef0cff93ca36553b8874a3ca | 821e50b7be0fc55b51f48ea3a153ada94ba01680 | /shootout/cheapconcurrency.rkt | b2f40f23e8752022e017673599e316f10dfb99f9 | []
| no_license | LeifAndersen/experimental-methods-in-pl | 85ee95c81c2e712ed80789d416f96d3cfe964588 | cf2aef11b2590c4deffb321d10d31f212afd5f68 | refs/heads/master | 2016-09-06T05:22:43.353721 | 2015-01-12T18:19:18 | 2015-01-12T18:19:18 | 24,478,292 | 1 | 0 | null | 2014-12-06T20:53:40 | 2014-09-25T23:00:59 | Racket | UTF-8 | Racket | false | false | 897 | rkt | cheapconcurrency.rkt | #lang racket/base
(require racket/cmdline
racket/contract)
(define nat? exact-nonnegative-integer?)
(define/contract (generate receive-ch n)
(-> (channel/c nat?) nat? (channel/c nat?))
(if (zero? n)
receive-ch
(let ([ch (make-channel)])
(thread (lambda ()
(let loop ()
(channel-put ch (add1 (channel-get receive-ch)))
(loop))))
(generate ch (sub1 n)))))
(define (main n)
(let* ([start-ch (make-channel)]
[end-ch (generate start-ch 500)])
(define/contract (loop n total)
(-> exact-nonnegative-integer? exact-nonnegative-integer? string?)
(if (zero? n)
(format "~a\n" total)
(begin
(channel-put start-ch 0)
(loop (sub1 n)
(+ total (channel-get end-ch))))))
(loop n 0)))
(time (begin (main 2000) (void)))
| false |
5f406c54a7431b3423ba5ae04571cd0ef9a0d533 | 5419893c16dab4051bd21242534d765a40656086 | /out/binary-stl.rkt | bba49957144a8909f477c63ed7f3e9e5416ba4c9 | [
"Apache-2.0"
]
| permissive | racket-dep-fixer/ruckus | 5aa20ea1507e6ef796c08741f976abcadb0e5a87 | b7c676822412e747c5c58cd451571f4688a655b5 | refs/heads/master | 2021-01-24T03:08:07.227526 | 2016-02-02T01:33:20 | 2016-02-02T01:33:20 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 5,142 | rkt | binary-stl.rkt | #lang racket
; Binary STL output using Lipschitz-gradient-guided traversal and an unspecified
; local surface extraction routine.
(provide surface->stl)
(require "../core/math.rkt")
(require "../core/compiler/racket.rkt")
(require "../lang/evaluator.rkt")
; ------------------------------------------------------------------------------
; Entry point.
; Takes an unevaluated design generator 'gen', a region of interest size
; 'size', and a quantum 'q' and generates STL for any surfaces within the ROI.
;
; The function 'polygonize' will be called on each 'q'-sized cube believed to
; contain a fragment of surface.
;
; Both 'size' and 'q' are given in the same (design) units.
;
; Output is to 'current-output-port'.
(define (surface->stl gen size q polygonize)
; The sparse algorithm requires power-of-two region sizes measured in units of
; 'q'. Round the ROI size up to ensure this.
(let* ([size2 (round-up-to-power-of-two (exact-ceiling (size . / . q)))]
[size2/2 (size2 . / . 2)]
[f (node->distance-function (call-with-edsl-root gen))])
(sparse-polygonize-stl
f
(- size2/2)
(- size2/2)
(- size2/2)
size2
q
polygonize)))
; ------------------------------------------------------------------------------
; STL generation.
; Wrapper for 'sparse-polygonize' (below) that produces binary STL to the
; 'current-output-port'. (Which needs to be a file, because we'll try to seek
; it.)
(define (sparse-polygonize-stl f x y z side q polygonize)
; STL header.
(write-bytes (make-bytes 80 32))
; Placeholder for number-of-triangles, TBD.
(write-bytes (make-bytes 4 0))
(define triangle-count 0)
; Polygonize...
(sparse-polygonize f x y z side q polygonize
(lambda (tri)
; Compute the cross product so we can find the face normal.
(let* ([ba (vec3-sub (second tri) (first tri))]
[ca (vec3-sub (third tri) (first tri))]
[cross (vec3-cross ba ca)])
; Omit degenerate triangles (zero-length cross).
(unless (zero? (vec3-length cross))
(set! triangle-count (add1 triangle-count))
; Binary STL format consists of:
; The normal vector
(stl-write-vector (vec3-normalize cross))
; Three corner vectors
(for ([p (in-list tri)])
(stl-write-vector p))
; A two-byte field that nobody can agree on.
(write-byte 0)
(write-byte 0)))))
; Return to the length and fill in our final tally.
(file-position (current-output-port) 80)
(write-bytes (integer->integer-bytes triangle-count 4 #f ))
(void))
(define (stl-write-vector v)
(write-bytes (real->floating-point-bytes (vec3-x v) 4 #f))
(write-bytes (real->floating-point-bytes (vec3-y v) 4 #f))
(write-bytes (real->floating-point-bytes (vec3-z v) 4 #f))
(void))
; ------------------------------------------------------------------------------
; Sparse descent algorithm.
; Divides space recursively into cubes, emitting triangles once the cubes reach
; one quantum 'q' in size.
;
; This algorithm assumes that 'f' is Lipschitz for L=1, meaning that it acts as
; a signed distance bound. Given this, it can triangulate a surface of N
; triangles occupying V quanta of space in O(N log V) time.
;
; 'x', 'y', and 'z' give the "bottom" (most negative) corner of the cube being
; considered, on each axis. These are in units of 'q'.
;
; 'side' is the length of any side of the cube, measured in units of 'q'.
;
; 'q' is the triangulation quantum, in design units. Smaller values produce
; higher quality at cost roughly proportional to the inverse square.
;
; 'out-fn' is a function of one argument that will be called for each discovered
; triangle.
(define (sparse-polygonize f x y z side q pgon out-fn)
(if (= 1 side)
; Descent completed, run the basic algorithm.
(pgon f (vec3-mul (vec3 x y z) q) q out-fn)
; Otherwise, we must descend further, iff the field level merits it.
(let* ([s/2 (side . / . 2)]
[center/q (vec3-add (vec3 x y z) s/2)]
[center-to-corner/q (vec3-length (vec3 s/2 s/2 s/2))]
[center (vec3-mul center/q q)]
[center-to-corner (* q center-to-corner/q)]
[center-level (f center)])
(when ((abs center-level) . <= . center-to-corner)
(sparse-polygonize f x y z s/2 q pgon out-fn)
(sparse-polygonize f (+ x s/2) y z s/2 q pgon out-fn)
(sparse-polygonize f x (+ y s/2) z s/2 q pgon out-fn)
(sparse-polygonize f (+ x s/2) (+ y s/2) z s/2 q pgon out-fn)
(sparse-polygonize f x y (+ z s/2) s/2 q pgon out-fn)
(sparse-polygonize f (+ x s/2) y (+ z s/2) s/2 q pgon out-fn)
(sparse-polygonize f x (+ y s/2) (+ z s/2) s/2 q pgon out-fn)
(sparse-polygonize f (+ x s/2) (+ y s/2) (+ z s/2) s/2 q pgon out-fn)
))))
| false |
bb22fcbde5f3eeaf2375c4896c01f8502d3855e6 | f5da4884c236512f9a945100234e213e51f980d3 | /test/arm32/lib.rkt | f6d119738d0643e275d69b0ce32263139f651e50 | [
"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 | 4,318 | rkt | lib.rkt | #lang rosette
(require
(for-syntax (only-in racket/syntax format-id))
serval/unicorn
serval/lib/unittest
(prefix-in core: serval/lib/core)
(prefix-in arm32: "../../serval/arm32.rkt"))
(provide
(all-defined-out)
(all-from-out
serval/lib/core
serval/lib/unittest
"../../serval/arm32.rkt"))
; generators
(define choose-S
(core:make-arg (bitvector 1)))
(define choose-cond
; focus on testing AL
(bv #b1110 4))
(define choose-imm4
(core:make-arg (bitvector 4)))
(define choose-imm5
(core:make-arg (bitvector 5)))
(define choose-imm12
(core:make-arg (bitvector 12)))
(define choose-imm24
(core:make-arg (bitvector 24)))
(define choose-reg
(box (core:make-arg (bitvector 4))))
(define choose-reg/no-r15
(let ([v (core:make-arg (bitvector 4))])
(box (if (bveq v (bv 15 4)) (bv 0 4) v))))
(define choose-rotate
(core:make-arg (bitvector 2)))
(define choose-stype
(core:make-arg (bitvector 2)))
; unicorn helpers
(define (integer->rn i)
(string->symbol (format "r~a" i)))
(define (cpu->uc cpu addr code)
(define uc (uc-open 'arm 'arm))
; allocate memory
(uc-mem-map uc addr 4096 'all)
; write code
(uc-mem-write uc addr code)
; set cpsr
(uc-reg-write uc 'cpsr (bitvector->natural (arm32:pstate->bitvector (arm32:cpu-cpsr cpu))))
; set pc
(uc-reg-write uc 'pc (bitvector->natural (arm32:cpu-pc cpu)))
; set registers
(for ([i (range 15)])
(uc-reg-write uc (integer->rn i) (bitvector->natural (arm32:cpu-gpr-ref cpu (arm32:integer->gpr i)))))
uc)
(define (uc->cpu uc)
(define pc (bv (uc-reg-read uc 'pc) 32))
(define rs
(for/vector ([i (range 15)])
(bv (uc-reg-read uc (integer->rn i)) 32)))
(define cpsr (bv (uc-reg-read uc 'cpsr) 32))
(arm32:cpu pc rs (arm32:bitvector->pstate cpsr) #f))
(define (check-insn ctor generators)
(define args (map arbitrary generators))
(define insn (apply ctor args))
(define cpu (arbitrary (arm32:init-cpu #f)))
(with-check-info [('insn insn)]
(@check-insn cpu insn)))
(define (@check-insn cpu insn)
(define addr #x100000)
(arm32:cpu-pc-set! cpu (bv addr 32))
(define insn-bits (arm32:instruction-encode insn))
; set up condition code
(when (equal? (core:bv-size insn-bits) 28)
(set! insn (arm32:conditional-instruction (arbitrary choose-cond) insn))
(set! insn-bits (arm32:instruction-encode insn)))
; each instruction is 32-bit
(check-equal? (core:bv-size insn-bits) 32)
(define bstr (list->bytes (map bitvector->natural (core:bitvector->list/le insn-bits))))
(define uc (cpu->uc cpu addr bstr))
; make sure the initial states match
(check-equal? cpu (uc->cpu uc))
; run the emulator
(define uc-faulted? #f)
(with-handlers ([exn:fail? (lambda (exn) (set! uc-faulted? #t))])
(uc-emu-start uc addr (+ addr (bytes-length bstr)) 0 1))
(define uc-cpu (uc->cpu uc))
; if the emulator faulted (e.g., illegal instructions), the interpreter should also fault
(define emu-pred (if uc-faulted? exn:fail? (lambda (x) #f)))
; run the interpreter
(with-handlers ([emu-pred (lambda (exn) (clear-vc!))])
(arm32:interpret-insn cpu insn))
; check if R[] matches
(for ([i (range 15)])
(define r (arm32:integer->gpr i))
(check-equal? (arm32:cpu-gpr-ref cpu r) (arm32:cpu-gpr-ref uc-cpu r) (format "r~a mismatch" i)))
; check if cpsr matches
(check-equal? (arm32:cpu-cpsr cpu) (arm32:cpu-cpsr uc-cpu) "cpsr mismatch")
; check if pc matches
(define pc (arm32:cpu-pc cpu))
(define uc-pc (arm32:cpu-pc uc-cpu))
; Unicorn sometimes doesn't correctly bump the PC; skip if that happens.
(unless (&& (bveq pc (bv (+ addr 4) 32)) (bveq uc-pc (bv addr 32)))
(check-equal? (arm32:cpu-pc cpu) (arm32:cpu-pc uc-cpu) "pc mismatch")))
; tests
(define-syntax (arm32-case stx)
(syntax-case stx ()
[(_ [generators ...] op)
(with-syntax ([ctor (if (symbol? (syntax-e #'op))
(format-id stx "arm32:~a" (syntax-e #'op))
#'op)])
(syntax/loc stx
(test-case+
(format "~a" 'op)
(quickcheck (check-insn ctor (list generators ...))))))]))
(define-syntax (arm32-case* stx)
(syntax-case stx ()
[(_ [generators ...] op ...)
(syntax/loc stx
(begin (arm32-case [generators ...] op) ...))]))
| true |
ed8728044e1525f5e4a8372799f1ab974590ee8e | 3bcedbba90d71ace132ad817c7d5e04cd9bccd99 | /eval.rkt | e208fb7e7956f4b2c0c00b77f09636d89795d0af | []
| no_license | TRCYX/inter | a9260d7cde80deed4b42bad9a108668fceae4e4c | 5d6a66704c044ff0ef751ac35434a6d457aef8e4 | refs/heads/master | 2023-04-21T13:52:46.977088 | 2021-05-06T15:12:35 | 2021-05-06T15:12:35 | 364,951,530 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,925 | rkt | eval.rkt | #lang racket
(provide (struct-out sub-syntax)
make-sub-syntax-from-syntaxes
add-syntax!
analyze
analyze-sequence
evaluate)
(require "utilities.rkt")
(require "env.rkt")
(require "values.rkt")
(struct-with-make sub-syntax (name pred analyze)
#:guard
(λ (name pred analyze name*)
(unless (symbol? name)
(error 'make-sub-syntax "name not a symbol"))
(unless (procedure? pred)
(error 'make-sub-syntax "pred not a procedure"))
(unless (procedure? analyze)
(error 'make-sub-syntax "analyze not a procedure"))
(values name pred analyze)))
(define ((analyze-with-syntaxes name syntaxes) exp)
(define (analyze-iter syntaxes)
(if (null? syntaxes)
(error name "wrong syntax")
(let ([first-syntax (first syntaxes)]
[rest-syntaxes (rest syntaxes)])
(let ([pred (sub-syntax-pred first-syntax)]
[analyze (sub-syntax-analyze first-syntax)])
(if (pred exp)
(analyze exp)
(analyze-iter rest-syntaxes))))))
(analyze-iter syntaxes))
(define (make-sub-syntax-from-syntaxes name pred syntaxes)
(make-sub-syntax name pred (analyze-with-syntaxes name syntaxes)))
(define all-syntaxes null)
(define (add-syntax! syntax)
(set! all-syntaxes (append all-syntaxes (list syntax))))
(define (analyze exp)
((analyze-with-syntaxes 'eval all-syntaxes) exp))
(define (analyze-sequence exps)
(cond [(not (list? exps))
(error 'eval-sequence "exps is not list?")]
[(null? exps)
(λ (env) (make-void-v))]
[else
(let ([analyzed (map analyze exps)])
(foldl1 (λ (f acc) (λ (env) (acc env) (f env))) analyzed))]))
(define (evaluate exp env)
((analyze exp) the-global-env))
| false |
b82615310e3c77d9612641cf38fad035609f9a29 | 25a6efe766d07c52c1994585af7d7f347553bf54 | /gui-doc/mrlib/scribblings/info.rkt | f26edf95d0ab9f5250854256ba3e946b8adbe21e | [
"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 | 79 | rkt | info.rkt | #lang info
(define scribblings '(("mrlib.scrbl" (multi-page) (gui-library))))
| false |
9604bc7e60ac2be593cd44e206aa1de3cefadf09 | ba3ee6ba5dfa97b9280662ca5745c48164703e82 | /dropbox/dropbox.rkt | cbc485bd385cd3862eb0bc5a20dd40f3a7b89ed3 | []
| no_license | stchang/dropbox | 3d864829169d3d48a0357af478faffbd626ca022 | fc978c6c2feca00a74c4e5f9f7213a55585abe68 | refs/heads/master | 2020-06-04T14:39:24.519993 | 2015-05-16T02:04:46 | 2015-05-16T02:04:46 | 7,488,423 | 4 | 1 | null | 2015-05-16T02:04:46 | 2013-01-07T19:31:33 | Racket | UTF-8 | Racket | false | false | 23,793 | rkt | dropbox.rkt | #lang racket
;; Racket bindings for Dropbox API:
;; https://www.dropbox.com/developers/reference/api
;; Requires Racket 5.3.1.12 or later
;; TODO:
;; [o] = open, [x] = closed
;;
;; [x] 2013-01-16: remove upload-file and rename upload-large-file to
;; upload-file
;; - DONE 2013-01-16
;; [x] 2013-01-16: add return-resume-info-on-error to upload-large-file
;; parameter -- on error, instead of a resumption thunk,
;; returns upload id and offset to be used for manual resume
;; - DONE 2013-01-16
;; [x] 2013-01-15: combine obtain-request-token and get-authorization-url into
;; one step and don't provide obtain-request-token
;; - DONE 2013-01-15
;; [x] 2013-01-07: support locale
;; Add an optional parameter to functions of API calls that support
;; a locale parameter.
;; - DONE 2013-01-07
;; [o] 2013-01-07: fix POST file uploading (ie upload-file-post function)
;; This is low priority since POST uploading is not recommended by
;; dropbox.
;; [o] 2013-01-07: test full dropbox mode (ie - non-sandbox)
;; [o] 2013-01-07: abstract post-pure-port, get-pure-port, etc
;; so AUTHORIZATION-HEADER is not repeated
;; [o] 2013-01-07: create utility fn to build remote path
;; [o] 2013-01-07: fix POST calls to not include params in url
;; [o] 2014-01-08: fix download-file and get-image-thumbnail to return the
;; metadata of downloaded file (instead of void)
(require net/url
net/uri-codec ; form-urlencoded->alist
json
)
(provide set!-APP-KEY
set!-APP-SECRET
set!-ACCESS-TYPE
;; oauth authentication
;obtain-request-token
get-authorization-url
obtain-access-token
;; account info
get-account-info
;; files and metadata
get-metadata
upload-file
;;upload-file-post
download-file
get-delta
get-revisions
restore-file
search
get-share-url
get-media-url
get-copy-ref
get-image-thumbnail
;upload-large-file
;; file ops
copy
create-folder
delete
move
exists?
)
;; ----------------------------------------------------------------------------
;; Constants for app key and app secret.
;; These must be set before starting OAuth authentication.
;; Default values are used for testing purposes only.
;; ----------------------------------------------------------------------------
(define APP-KEY "3ysfqt0flcbex2t")
(define APP-SECRET "hia6gkco347zczj")
;; ACCESS-TYPE = "app_folder" (limited access)
;; or "dropbox" (full access)
(define ACCESS-TYPE "app_folder")
(define (set!-APP-KEY akey) (set! APP-KEY akey))
(define (set!-APP-SECRET asec) (set! APP-SECRET asec))
(define (set!-ACCESS-TYPE atype) (set! ACCESS-TYPE atype))
;; ----------------------------------------------------------------------------
;; Utility functions
;; ----------------------------------------------------------------------------
;; Returns a url to the specified dropbox api call
;; mk-api-url : string -> url
(define (mk-api-url api-call [params #f])
(string->url
(string-append "https://api.dropbox.com/1/" api-call
(if params
(string-append "?" params)
""))))
;; Returns a url to the specified dropbox api call
;; uses api-content.dropbox.com instead of api.dropbox.com
;; mk-api-content-url : string -> url
(define (mk-api-content-url api-call [params #f])
(string->url
(string-append "https://api-content.dropbox.com/1/" api-call
(if params
(string-append "?" params)
""))))
;; Returns the root path corresponding to the current access type.
;; Possible return values are "dropbox" or "sandbox".
;; This is needed by many of the Dropbox api calls.
;; - access type "dropbox" returns root "dropbox"
;; - otherwise, the returned root is "sandbox"
(define (get-root)
(if (string=? ACCESS-TYPE "dropbox")
"dropbox"
"sandbox"))
;; Returns params formatted with = and &
;; ie (format-params "param1" "val1" "param2" "val2")
;; => "param1=val1¶m2=val2"
;; format-params : -> string
(define (format-params . args)
(cond [(null? args) ""]
[(null? (cddr args)) (string-append (car args) "=" (cadr args))]
[else (string-append (car args) "=" (cadr args) "&"
(apply format-params (cddr args)))]))
;; ----------------------------------------------------------------------------
;; other constants
;; ----------------------------------------------------------------------------
(define DEFAULT-LOCALE "en")
(define AUTH-URL-BASE "https://www.dropbox.com/1/oauth/authorize")
;; ----------------------------------------------------------------------------
;; OAUTH authentication functions
;; Step 1) Go to url returned by get-authorization-url and grant access.
;; get-authorization-url first gets a request token based on the
;; current app-key and app-secret (set via set!-APP-KEY and
;; set!-APP-SECRET)
;; Step 2) Call obtain-access-token.
;; ----------------------------------------------------------------------------
;; User should ignore these initial tokens/secrets and get their own.
;; Default values are used for testing purposes only.
(define OAUTH-REQUEST-TOKEN "uk264rf6wc0lyte")
(define OAUTH-REQUEST-SECRET "8vfhlfahxd8xfxp")
(define OAUTH-ACCESS-TOKEN "ws51ylwe4geys4c")
(define OAUTH-ACCESS-SECRET "in75kn1ci9fskt4")
(define AUTHORIZATION-HEADER
(list (string-append "Authorization: OAuth oauth_version=\"1.0\","
"oauth_signature_method=\"PLAINTEXT\","
"oauth_consumer_key=\"" APP-KEY "\","
"oauth_token=\"" OAUTH-ACCESS-TOKEN "\","
"oauth_signature=\"" APP-SECRET "&"
OAUTH-ACCESS-SECRET"\"")))
;; obtain request token from Dropbox API
;; Step 1 of OAuth authentication process
(define (obtain-request-token)
(define p
(post-pure-port
(mk-api-url "oauth/request_token")
(bytes)
(list (string-append "Authorization: OAuth oauth_version=\"1.0\","
"oauth_signature_method=\"PLAINTEXT\","
"oauth_consumer_key=\"" APP-KEY "\","
"oauth_signature=\"" APP-SECRET "&\""))))
(define response-alist (form-urlencoded->alist (port->string p)))
(close-input-port p)
(set! OAUTH-REQUEST-SECRET (cdr (assq 'oauth_token_secret response-alist)))
(set! OAUTH-REQUEST-TOKEN (cdr (assq 'oauth_token response-alist)))
(values OAUTH-REQUEST-TOKEN OAUTH-REQUEST-SECRET))
;; get authorization url
;; user should go to returned url to grant access
;; Step 2 of OAuth authentication process
(define (get-authorization-url #:locale [locale DEFAULT-LOCALE]
#:callback [callback-url AUTH-URL-BASE])
;; First, get a request token. This sets OAUTH-REQUEST-TOKEN and
;; OAUTH-REQUEST-SECRET.
(obtain-request-token)
(define params (format-params "oauth_token" OAUTH-REQUEST-TOKEN
"oauth_callback" callback-url
"locale" locale))
(string-append AUTH-URL-BASE "?" params))
;; obtain access token from Dropbox API
;; Step 3 of OAuth authentication process
;; sets ACCESS-HEADER
(define (obtain-access-token)
(define p
(post-pure-port
(mk-api-url "oauth/access_token")
(bytes)
(list (string-append "Authorization: OAuth oauth_version=\"1.0\","
"oauth_signature_method=\"PLAINTEXT\","
"oauth_consumer_key=\"" APP-KEY "\","
"oauth_token=\"" OAUTH-REQUEST-TOKEN "\","
"oauth_signature=\"" APP-SECRET "&"
OAUTH-REQUEST-SECRET"\""))))
(define response-alist (form-urlencoded->alist (port->string p)))
(close-input-port p)
(set! OAUTH-ACCESS-SECRET (cdr (assq 'oauth_token_secret response-alist)))
(set! OAUTH-ACCESS-TOKEN (cdr (assq 'oauth_token response-alist)))
(set! AUTHORIZATION-HEADER
(list (string-append "Authorization: OAuth oauth_version=\"1.0\","
"oauth_signature_method=\"PLAINTEXT\","
"oauth_consumer_key=\"" APP-KEY "\","
"oauth_token=\"" OAUTH-ACCESS-TOKEN "\","
"oauth_signature=\"" APP-SECRET "&"
OAUTH-ACCESS-SECRET"\"")))
(values OAUTH-ACCESS-SECRET OAUTH-ACCESS-TOKEN))
;; ----------------------------------------------------------------------------
;; functions to get account information
;; ----------------------------------------------------------------------------
;; get-account-info : (void) -> jsexpr
;; returns a JSON expression (ie hash table) with account info
(define (get-account-info #:locale [locale DEFAULT-LOCALE])
(define params (format-params "locale" locale))
(define p (get-pure-port
(mk-api-url "account/info" params)
AUTHORIZATION-HEADER))
(define jsexp (read-json p))
(close-input-port p)
jsexp)
;; ----------------------------------------------------------------------------
;; functions to manipulate upload/download files
;; and get metadata, revisions history, etc
;; ----------------------------------------------------------------------------
(define (get-metadata path
#:file-limit [file-limit 10000]
#:hash [hash ""]
#:list [lst "true"]
#:inc-del [inc-del "false"]
#:rev [rev ""]
#:locale [locale DEFAULT-LOCALE])
(define params (format-params "file_limit" (number->string file-limit)
"hash" hash
"list" lst
"include_deleted" inc-del
"rev" rev
"locale" locale))
(define p
(get-pure-port
(mk-api-url (string-append "metadata/" (get-root) "/" path)
params)
AUTHORIZATION-HEADER))
(define jsexp (read-json p))
(close-input-port p)
jsexp)
;; uses PUT to upload a file (recommended over upload-file-post)
;; remote-filepath should be a remote file name and NOT a directory
;; max filesize = 150mb
#;(define (upload-file local-filepath remote-filepath
#:locale [locale DEFAULT-LOCALE]
#:overwrite? [overwrite? "true"]
#:parent-rev [parent-rev ""])
(define params (format-params "locale" locale
"overwrite" overwrite?
"parent_rev" parent-rev))
(define p
(put-pure-port
(mk-api-content-url
(string-append "files_put/" (get-root) "/" remote-filepath)
params)
(file->bytes local-filepath)
AUTHORIZATION-HEADER))
(define jsexp (read-json p))
(close-input-port p)
jsexp)
;; uploads a file using POST
;; (not recommended -- use upload-file instead)
;; remote-filepath should be a remote file name and NOT a directory
;; max filesize = 150mb (use upload-large-file for > 150mb)
;; TODO: this isn't working -- how to include parameters as part of request url
;; (must be signed like OAuth request URL)
#;(define (upload-file-post local-filepath remote-filepath
#:locale [locale DEFAULT-LOCALE]
#:overwrite? [overwrite? "true"]
#:parent-rev [parent-rev ""])
(define params (format-params
"locale" locale
"overwrite" overwrite?
; "parent_rev" parent-rev
))
(define p
(post-pure-port
(mk-api-content-url
(string-append "files/" (get-root) "/" remote-filepath)
params)
(file->bytes local-filepath)
AUTHORIZATION-HEADER))
(define jsexp (read-json p))
(close-input-port p)
jsexp)
(define (download-file remote-filepath
local-filepath
#:rev [rev ""]
#:exists [exists 'error])
(define params (format-params "rev" rev))
(define p
(get-pure-port
(mk-api-content-url
(string-append "files/" (get-root) "/" remote-filepath)
params)
AUTHORIZATION-HEADER))
(define out (open-output-file local-filepath
#:mode 'binary
#:exists exists))
(write-bytes (port->bytes p) out)
(close-output-port out)
(close-input-port p))
(define (get-delta #:cursor [cursor ""]
#:locale [locale DEFAULT-LOCALE])
(define params (format-params "locale" locale "cursor" cursor))
(define p
(post-pure-port
(mk-api-url "delta" params)
(bytes)
AUTHORIZATION-HEADER))
(define jsexp (read-json p))
(close-input-port p)
jsexp)
(define (get-revisions filepath #:rev-limit [rev-limit 10]
#:locale [locale DEFAULT-LOCALE])
(define params (format-params "rev_limit" (number->string rev-limit)
"locale" locale))
(define p
(get-pure-port
(mk-api-url (string-append "revisions/" (get-root) "/" filepath)
params)
AUTHORIZATION-HEADER))
(define jsexp (read-json p))
(close-input-port p)
jsexp)
;; restores given remote file to specified revision
;; must use "rev" metadata field
;; ("revision" metadata field is deprecated)
(define (restore-file filepath rev #:locale [locale DEFAULT-LOCALE])
(define params (format-params "rev" rev
"locale" locale))
(define p
(post-pure-port
(mk-api-url (string-append "restore/" (get-root) "/" filepath)
params)
(bytes)
AUTHORIZATION-HEADER))
(define jsexp (read-json p))
(close-input-port p)
jsexp)
;; searches for files whose name includes the query string
;; recursively searches subdirectories
(define (search remote-dir query
#:file-limit [file-limit 1000]
#:inc-del [inc-del "false"]
#:locale [locale DEFAULT-LOCALE])
(define params (format-params "query" query
"file_limit" (number->string file-limit)
"include_deleted" inc-del
"locale" locale))
(define p
(get-pure-port
(mk-api-url (string-append "search/" (get-root) "/" remote-dir)
params)
AUTHORIZATION-HEADER))
(define jsexp (read-json p))
(close-input-port p)
jsexp)
;; publically shares specified file or dir at returned url
(define (get-share-url remote-path
#:locale [locale DEFAULT-LOCALE]
#:short-url [short-url "true"])
(define params (format-params "locale" locale
"short_url" short-url))
(define p
(post-pure-port
(mk-api-url (string-append "shares/" (get-root) "/" remote-path)
params)
(bytes)
AUTHORIZATION-HEADER))
(define jsexp (read-json p))
(close-input-port p)
jsexp)
;; use this instead of get-share-url to stream media files
;; input must be a file (cannot stream a dir)
(define (get-media-url remote-file
#:locale [locale DEFAULT-LOCALE])
(define params (format-params "locale" locale))
(define p
(post-pure-port
(mk-api-url (string-append "media/" (get-root) "/" remote-file)
params)
(bytes)
AUTHORIZATION-HEADER))
(define jsexp (read-json p))
(close-input-port p)
jsexp)
;; gets a copy_ref string, to use with copy-file
(define (get-copy-ref remote-file)
(define p
(get-pure-port
(mk-api-url (string-append "copy_ref/" (get-root) "/" remote-file))
AUTHORIZATION-HEADER))
(define jsexp (read-json p))
(close-input-port p)
jsexp)
;; remote-file must be an image
;; #:format = "jpeg" (default) or "png"
;; #:size = "xs", "s", "m", "l", or "xl"
;; #:exists = 'error 'append 'update 'can-update 'replace 'truncate
;; 'must-truncate 'truncate/replace
(define (get-image-thumbnail remote-file local-file
#:format [format "jpeg"]
#:size [size "s"]
#:exists [exists 'error])
(define params (format-params "format" format
"size" size))
(define p
(get-pure-port
(mk-api-content-url
(string-append "thumbnails/" (get-root) "/" remote-file)
params)
AUTHORIZATION-HEADER))
(define out (open-output-file local-file
#:mode 'binary
#:exists exists))
(write-bytes (port->bytes p) out)
(close-output-port out)
(close-input-port p))
;; uploads a file using chunk uploading
;; remote-filepath should be a remote file name and NOT a directory
;; #:chunk-size is in bytes (default = 4mb chunks)
(define (upload-file local-filepath remote-filepath
#:locale [locale DEFAULT-LOCALE]
#:overwrite? [overwrite? "true"]
#:parent-rev [parent-rev ""]
#:chunk-size [chunk-size 4194304]
#:verbose? [verbose? #f]
#:return-resume-info-on-error?
[return-resume-info-on-error? #f]
#:resume? [resume? #f]
#:resume-id [resume-id ""]
#:resume-offset [resume-offset 0])
(define upload-id #f)
(define offset 0)
(define in (open-input-file local-filepath))
(when resume?
(when verbose?
(printf "Resuming chunk upload, id = ~a\n" resume-id))
(set! upload-id resume-id)
(set! offset resume-offset)
(read-bytes offset in)) ; skip these bytes
(let LOOP ([chunk (read-bytes chunk-size in)]) ; read next chunk
(with-handlers
;; on error, return thunk that resumes the upload
([exn:fail:network:errno?
(λ _
(when verbose?
(printf "Network connection lost. Returning resume thunk.\n"))
(if return-resume-info-on-error?
(list upload-id offset)
(thunk
(upload-file local-filepath remote-filepath
#:locale locale
#:overwrite? overwrite?
#:parent-rev parent-rev
#:chunk-size chunk-size
#:verbose? verbose?
#:return-resume-info-on-error?
return-resume-info-on-error?
#:resume? #t
#:resume-id upload-id
#:resume-offset offset))))])
(if (eof-object? chunk)
;; no more chunks so commit the upload
(let ([params (format-params "locale" locale
"overwrite" overwrite?
"parent_rev" parent-rev
"upload_id" upload-id)])
(close-input-port in)
(define p
(post-pure-port
(mk-api-content-url
(string-append "commit_chunked_upload/" (get-root) "/"
remote-filepath)
params)
(bytes)
AUTHORIZATION-HEADER))
(define jsexp (read-json p))
(when verbose?
(printf "Chunk upload completed, id = ~a\n" upload-id))
(close-input-port p)
jsexp)
;; otherwise, upload the chunk
(let ([params (if upload-id
(format-params "upload_id" upload-id
"offset" (number->string offset))
(format-params "offset" "0"))])
(define p
(put-pure-port
(mk-api-content-url "chunked_upload" params)
chunk
AUTHORIZATION-HEADER))
(define jsexp (read-json p))
(close-input-port p)
(unless upload-id
(when verbose?
(printf "Chunk upload started, id = ~a\n"
(hash-ref jsexp 'upload_id))))
(set! upload-id (hash-ref jsexp 'upload_id))
(when verbose?
(printf "Chunk uploaded: bytes ~a to ~a\n"
offset (hash-ref jsexp 'offset)))
(set! offset (hash-ref jsexp 'offset))
(LOOP (read-bytes chunk-size in)))))) ; read next chunk
)
;; ----------------------------------------------------------------------------
;; file operations, ie copy, delete, move, etc
;; ----------------------------------------------------------------------------
(define (filter-search-by-exact-match filename search-res)
(filter (λ (m) (string=? (hash-ref m 'path)
(string-append "/" filename)))
search-res))
;; function to check if dropbox file already exists
(define (exists? dirname filename)
(define filepath
(if (string=? dirname "")
filename
(string-append dirname "/" filename)))
(not
(null? (filter-search-by-exact-match filepath (search dirname filename)))))
;; copy file or folder
(define (copy from to
#:locale [locale DEFAULT-LOCALE]
#:copy-ref [copy-ref #f])
(define params
(if copy-ref
(format-params "root" (get-root)
"from_path" ""
"to_path" to
"locale" locale
"from_copy_ref" copy-ref)
(format-params "root" (get-root)
"from_path" from
"to_path" to
"locale" locale)))
(define p
(post-pure-port
(mk-api-url "fileops/copy" params)
(bytes)
AUTHORIZATION-HEADER))
(define jsexp (read-json p))
(close-input-port p)
jsexp)
(define (create-folder path #:locale [locale DEFAULT-LOCALE])
(define params (format-params "root" (get-root)
"path" path
"locale" locale))
(define p
(post-pure-port
(mk-api-url "fileops/create_folder" params)
(bytes)
AUTHORIZATION-HEADER))
(define jsexp (read-json p))
(close-input-port p)
jsexp)
(define (delete path #:locale [locale DEFAULT-LOCALE])
(define params (format-params "root" (get-root)
"path" path
"locale" locale))
(define p
(post-pure-port
(mk-api-url "fileops/delete" params)
(bytes)
AUTHORIZATION-HEADER))
(define jsexp (read-json p))
(close-input-port p)
jsexp)
(define (move from to #:locale [locale DEFAULT-LOCALE])
(define params (format-params "root" (get-root)
"from_path" from
"to_path" to
"locale" locale))
(define p
(post-pure-port
(mk-api-url "fileops/move" params)
(bytes)
AUTHORIZATION-HEADER))
(define jsexp (read-json p))
(close-input-port p)
jsexp) | false |
d2ef09308e78fb6cd10a78696e61fd9713b8f995 | 627680558b42ab91471b477467187c3f24b99082 | /results/24-hr-all/poly-stlc-5-grammar.rktd | 6609a8537377d2fccd933d4970d4bab941a6d8fd | []
| no_license | bfetscher/dissertation | 2a579aa919d6173a211560e20630b3920d108412 | 148d7f9bb21ce29b705522f7f4967d63bffc67cd | refs/heads/master | 2021-01-12T12:57:45.507113 | 2016-10-06T06:54:21 | 2016-10-06T06:54:21 | 70,130,350 | 0 | 1 | null | 2016-10-06T14:01:38 | 2016-10-06T06:58:19 | Racket | UTF-8 | Racket | false | false | 648,182 | rktd | poly-stlc-5-grammar.rktd | (start 2015-08-18T16:11:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:11:47 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T16:11:47 (#:amount 12930896 #:time 237))
(heartbeat 2015-08-18T16:11:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:12:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:12:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:12:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:12:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:12:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:12:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:13:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:13:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:13:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:13:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:13:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:13:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:14:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:14:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:14:27 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T16:14:31 (#:amount 70673664 #:time 246))
(heartbeat 2015-08-18T16:14:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:14:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:14:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:15:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:15:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:15:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:15:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:15:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:15:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:16:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:16:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:16:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:16:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:16:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:16:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:17:07 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T16:17:11 (#:amount 80567832 #:time 252))
(heartbeat 2015-08-18T16:17:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:17:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:17:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:17:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:17:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:18:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:18:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:18:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:18:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:18:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:18:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:19:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:19:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:19:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:19:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:19:47 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T16:19:57 (#:amount 71627224 #:time 244))
(heartbeat 2015-08-18T16:19:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:20:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:20:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:20:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:20:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:20:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:20:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:21:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:21:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:21:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:21:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:21:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:21:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:22:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:22:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:22:27 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T16:22:32 (#:amount 80525512 #:time 211))
(heartbeat 2015-08-18T16:22:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:22:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:22:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:23:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:23:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:23:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:23:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:23:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:23:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:24:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:24:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:24:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:24:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:24:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:24:58 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T16:25:04 (#:amount 72380816 #:time 246))
(heartbeat 2015-08-18T16:25:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:25:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:25:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:25:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:25:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:25:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:26:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:26:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:26:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:26:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:26:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:26:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:27:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:27:18 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T16:27:22 (#:amount 79493280 #:time 214))
(heartbeat 2015-08-18T16:27:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:27:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:27:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:27:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:28:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:28:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:28:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:28:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:28:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:28:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:29:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:29:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:29:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:29:38 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T16:29:47 (#:amount 71908696 #:time 208))
(heartbeat 2015-08-18T16:29:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:29:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:30:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:30:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:30:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:30:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:30:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:30:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:31:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:31:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:31:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:31:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:31:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:31:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:32:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:32:18 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T16:32:19 (#:amount 79560192 #:time 248))
(heartbeat 2015-08-18T16:32:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:32:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:32:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:32:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:33:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:33:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:33:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:33:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:33:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:33:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:34:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:34:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:34:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:34:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:34:48 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T16:34:58 (#:amount 71923960 #:time 245))
(heartbeat 2015-08-18T16:34:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:35:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:35:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:35:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:35:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:35:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:35:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:36:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:36:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:36:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:36:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:36:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:36:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:37:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:37:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:37:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:37:38 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T16:37:41 (#:amount 79201584 #:time 249))
(heartbeat 2015-08-18T16:37:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:37:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:38:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:38:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:38:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:38:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:38:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:38:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:39:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:39:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:39:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:39:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:39:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:39:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:40:08 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T16:40:18 (#:amount 72332408 #:time 246))
(heartbeat 2015-08-18T16:40:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:40:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:40:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:40:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:40:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:41:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:41:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:41:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:41:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:41:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:41:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:42:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:42:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:42:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:42:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:42:48 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T16:42:50 (#:amount 78917888 #:time 247))
(heartbeat 2015-08-18T16:42:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:43:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:43:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:43:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:43:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:43:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:43:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:44:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:44:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:44:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:44:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:44:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:44:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:45:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:45:18 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T16:45:28 (#:amount 71875032 #:time 245))
(heartbeat 2015-08-18T16:45:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:45:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:45:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:45:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:46:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:46:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:46:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:46:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:46:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:46:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:47:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:47:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:47:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:47:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:47:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:47:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:48:08 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T16:48:13 (#:amount 79331384 #:time 250))
(heartbeat 2015-08-18T16:48:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:48:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:48:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:48:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:48:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:49:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:49:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:49:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:49:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:49:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:49:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:50:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:50:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:50:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:50:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:50:49 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T16:50:53 (#:amount 71580864 #:time 243))
(heartbeat 2015-08-18T16:50:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:51:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:51:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:51:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:51:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:51:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:51:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:52:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:52:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:52:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:52:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:52:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:52:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:53:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:53:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:53:29 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T16:53:31 (#:amount 80020688 #:time 210))
(heartbeat 2015-08-18T16:53:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:53:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:53:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:54:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:54:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:54:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:54:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:54:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:54:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:55:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:55:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:55:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:55:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:55:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:55:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:56:09 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T16:56:15 (#:amount 72063856 #:time 245))
(heartbeat 2015-08-18T16:56:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:56:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:56:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:56:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:56:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:57:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:57:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:57:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:57:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:57:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:57:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:58:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:58:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:58:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:58:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:58:49 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T16:58:54 (#:amount 79206920 #:time 213))
(heartbeat 2015-08-18T16:58:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:59:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:59:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:59:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:59:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:59:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T16:59:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:00:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:00:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:00:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:00:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:00:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:00:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:01:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:01:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:01:29 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T17:01:32 (#:amount 71853728 #:time 243))
(heartbeat 2015-08-18T17:01:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:01:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:01:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:02:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:02:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:02:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:02:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:02:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:02:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:03:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:03:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:03:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:03:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:03:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:03:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:04:09 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T17:04:14 (#:amount 79272408 #:time 245))
(heartbeat 2015-08-18T17:04:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:04:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:04:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:04:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:04:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:05:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:05:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:05:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:05:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:05:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:05:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:06:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:06:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:06:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:06:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:06:49 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T17:06:55 (#:amount 71343696 #:time 245))
(heartbeat 2015-08-18T17:06:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:07:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:07:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:07:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:07:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:07:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:07:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:08:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:08:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:08:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:08:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:08:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:08:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:09:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:09:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:09:29 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T17:09:38 (#:amount 80989216 #:time 244))
(heartbeat 2015-08-18T17:09:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:09:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:09:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:10:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:10:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:10:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:10:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:10:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:10:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:11:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:11:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:11:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:11:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:11:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:11:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:12:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:12:19 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T17:12:20 (#:amount 71830120 #:time 242))
(heartbeat 2015-08-18T17:12:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:12:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:12:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:12:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:13:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:13:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:13:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:13:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:13:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:13:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:14:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:14:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:14:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:14:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:14:49 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T17:14:57 (#:amount 79684336 #:time 246))
(heartbeat 2015-08-18T17:14:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:15:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:15:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:15:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:15:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:15:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:15:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:16:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:16:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:16:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:16:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:16:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:16:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:17:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:17:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:17:29 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T17:17:39 (#:amount 72234816 #:time 244))
(heartbeat 2015-08-18T17:17:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:17:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:17:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:18:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:18:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:18:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:18:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:18:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:18:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:19:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:19:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:19:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:19:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:19:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:19:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:20:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:20:19 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T17:20:22 (#:amount 79376960 #:time 246))
(heartbeat 2015-08-18T17:20:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:20:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:20:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:21:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:21:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:21:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:21:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:21:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:21:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:22:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:22:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:22:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:22:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:22:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:22:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:23:00 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T17:23:04 (#:amount 71796104 #:time 243))
(heartbeat 2015-08-18T17:23:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:23:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:23:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:23:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:23:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:24:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:24:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:24:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:24:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:24:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:24:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:25:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:25:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:25:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:25:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:25:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:25:50 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T17:25:50 (#:amount 79764000 #:time 246))
(heartbeat 2015-08-18T17:26:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:26:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:26:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:26:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:26:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:26:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:27:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:27:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:27:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:27:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:27:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:27:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:28:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:28:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:28:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:28:30 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T17:28:33 (#:amount 71943048 #:time 243))
(heartbeat 2015-08-18T17:28:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:28:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:29:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:29:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:29:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:29:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:29:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:29:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:30:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:30:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:30:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:30:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:30:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:30:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:31:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:31:10 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T17:31:17 (#:amount 79871968 #:time 247))
(heartbeat 2015-08-18T17:31:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:31:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:31:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:31:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:32:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:32:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:32:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:32:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:32:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:32:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:33:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:33:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:33:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:33:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:33:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:33:50 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T17:33:59 (#:amount 72092488 #:time 243))
(heartbeat 2015-08-18T17:34:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:34:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:34:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:34:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:34:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:34:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:35:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:35:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:35:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:35:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:35:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:35:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:36:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:36:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:36:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:36:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:36:40 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T17:36:43 (#:amount 79472488 #:time 245))
(heartbeat 2015-08-18T17:36:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:37:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:37:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:37:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:37:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:37:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:37:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:38:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:38:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:38:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:38:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:38:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:38:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:39:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:39:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:39:20 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T17:39:25 (#:amount 72417496 #:time 245))
(heartbeat 2015-08-18T17:39:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:39:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:39:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:40:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:40:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:40:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:40:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:40:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:40:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:41:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:41:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:41:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:41:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:41:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:41:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:42:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:42:10 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T17:42:12 (#:amount 79082864 #:time 247))
(heartbeat 2015-08-18T17:42:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:42:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:42:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:42:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:43:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:43:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:43:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:43:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:43:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:43:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:44:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:44:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:44:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:44:30 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T17:44:38 (#:amount 71861456 #:time 240))
(heartbeat 2015-08-18T17:44:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:44:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:45:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:45:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:45:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:45:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:45:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:45:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:46:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:46:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:46:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:46:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:46:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:46:50 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T17:46:58 (#:amount 79658728 #:time 245))
(heartbeat 2015-08-18T17:47:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:47:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:47:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:47:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:47:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:47:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:48:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:48:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:48:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:48:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:48:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:48:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:49:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:49:10 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T17:49:20 (#:amount 72469096 #:time 244))
(heartbeat 2015-08-18T17:49:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:49:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:49:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:49:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:50:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:50:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:50:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:50:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:50:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:50:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:51:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:51:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:51:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:51:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:51:41 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T17:51:42 (#:amount 79666200 #:time 210))
(heartbeat 2015-08-18T17:51:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:52:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:52:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:52:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:52:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:52:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:52:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:53:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:53:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:53:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:53:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:53:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:53:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:54:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:54:11 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T17:54:15 (#:amount 71038392 #:time 245))
(heartbeat 2015-08-18T17:54:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:54:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:54:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:54:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:55:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:55:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:55:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:55:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:55:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:55:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:56:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:56:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:56:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:56:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:56:41 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T17:56:46 (#:amount 81226504 #:time 243))
(heartbeat 2015-08-18T17:56:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:57:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:57:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:57:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:57:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:57:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:57:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:58:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:58:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:58:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:58:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:58:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:58:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:59:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:59:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:59:21 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T17:59:24 (#:amount 72397280 #:time 242))
(heartbeat 2015-08-18T17:59:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:59:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T17:59:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:00:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:00:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:00:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:00:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:00:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:00:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:01:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:01:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:01:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:01:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:01:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:01:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:02:01 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T18:02:04 (#:amount 79228312 #:time 247))
(heartbeat 2015-08-18T18:02:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:02:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:02:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:02:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:02:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:03:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:03:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:03:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:03:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:03:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:03:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:04:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:04:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:04:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:04:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:04:41 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T18:04:47 (#:amount 71701216 #:time 245))
(heartbeat 2015-08-18T18:04:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:05:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:05:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:05:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:05:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:05:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:05:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:06:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:06:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:06:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:06:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:06:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:06:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:07:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:07:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:07:21 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T18:07:27 (#:amount 79809080 #:time 246))
(heartbeat 2015-08-18T18:07:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:07:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:07:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:08:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:08:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:08:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:08:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:08:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:08:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:09:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:09:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:09:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:09:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:09:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:09:51 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T18:09:57 (#:amount 72282456 #:time 244))
(heartbeat 2015-08-18T18:10:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:10:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:10:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:10:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:10:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:10:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:11:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:11:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:11:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:11:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:11:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:11:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:12:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:12:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:12:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:12:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:12:41 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T18:12:44 (#:amount 80011360 #:time 247))
(heartbeat 2015-08-18T18:12:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:13:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:13:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:13:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:13:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:13:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:13:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:14:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:14:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:14:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:14:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:14:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:14:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:15:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:15:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:15:21 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T18:15:27 (#:amount 71843640 #:time 246))
(heartbeat 2015-08-18T18:15:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:15:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:15:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:16:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:16:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:16:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:16:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:16:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:16:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:17:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:17:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:17:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:17:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:17:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:17:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:18:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:18:11 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T18:18:12 (#:amount 80104136 #:time 246))
(heartbeat 2015-08-18T18:18:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:18:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:18:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:18:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:19:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:19:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:19:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:19:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:19:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:19:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:20:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:20:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:20:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:20:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:20:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:20:51 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T18:20:56 (#:amount 71496648 #:time 243))
(heartbeat 2015-08-18T18:21:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:21:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:21:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:21:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:21:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:21:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:22:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:22:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:22:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:22:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:22:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:22:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:23:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:23:12 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T18:23:20 (#:amount 80049720 #:time 212))
(heartbeat 2015-08-18T18:23:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:23:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:23:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:23:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:24:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:24:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:24:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:24:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:24:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:24:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:25:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:25:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:25:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:25:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:25:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:25:52 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T18:26:00 (#:amount 71129856 #:time 245))
(heartbeat 2015-08-18T18:26:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:26:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:26:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:26:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:26:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:26:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:27:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:27:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:27:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:27:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:27:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:27:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:28:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:28:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:28:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:28:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:28:42 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T18:28:46 (#:amount 80176576 #:time 247))
(heartbeat 2015-08-18T18:28:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:29:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:29:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:29:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:29:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:29:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:29:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:30:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:30:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:30:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:30:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:30:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:30:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:31:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:31:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:31:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:31:32 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T18:31:32 (#:amount 71695280 #:time 244))
(heartbeat 2015-08-18T18:31:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:31:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:32:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:32:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:32:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:32:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:32:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:32:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:33:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:33:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:33:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:33:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:33:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:33:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:34:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:34:12 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T18:34:18 (#:amount 80218176 #:time 246))
(heartbeat 2015-08-18T18:34:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:34:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:34:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:34:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:35:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:35:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:35:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:35:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:35:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:35:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:36:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:36:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:36:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:36:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:36:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:36:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:37:02 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T18:37:05 (#:amount 71683552 #:time 245))
(heartbeat 2015-08-18T18:37:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:37:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:37:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:37:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:37:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:38:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:38:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:38:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:38:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:38:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:38:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:39:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:39:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:39:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:39:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:39:42 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T18:39:51 (#:amount 79627944 #:time 248))
(heartbeat 2015-08-18T18:39:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:40:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:40:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:40:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:40:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:40:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:40:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:41:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:41:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:41:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:41:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:41:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:41:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:42:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:42:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:42:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:42:32 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T18:42:36 (#:amount 72225424 #:time 245))
(heartbeat 2015-08-18T18:42:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:42:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:43:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:43:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:43:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:43:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:43:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:43:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:44:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:44:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:44:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:44:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:44:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:44:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:45:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:45:12 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T18:45:21 (#:amount 80279512 #:time 250))
(heartbeat 2015-08-18T18:45:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:45:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:45:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:45:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:46:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:46:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:46:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:46:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:46:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:46:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:47:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:47:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:47:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:47:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:47:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:47:52 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T18:48:02 (#:amount 72005664 #:time 243))
(heartbeat 2015-08-18T18:48:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:48:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:48:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:48:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:48:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:48:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:49:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:49:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:49:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:49:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:49:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:49:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:50:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:50:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:50:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:50:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:50:43 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T18:50:46 (#:amount 80035928 #:time 247))
(heartbeat 2015-08-18T18:50:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:51:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:51:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:51:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:51:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:51:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:51:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:52:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:52:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:52:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:52:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:52:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:52:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:53:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:53:13 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T18:53:13 (#:amount 72413896 #:time 207))
(heartbeat 2015-08-18T18:53:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:53:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:53:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:53:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:54:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:54:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:54:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:54:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:54:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:54:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:55:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:55:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:55:23 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T18:55:24 (#:amount 79211552 #:time 243))
(heartbeat 2015-08-18T18:55:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:55:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:55:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:56:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:56:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:56:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:56:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:56:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:56:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:57:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:57:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:57:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:57:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:57:43 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T18:57:51 (#:amount 71685488 #:time 243))
(heartbeat 2015-08-18T18:57:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:58:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:58:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:58:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:58:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:58:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:58:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:59:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:59:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:59:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:59:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:59:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T18:59:53 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T19:00:02 (#:amount 79427600 #:time 209))
(heartbeat 2015-08-18T19:00:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:00:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:00:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:00:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:00:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:00:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:01:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:01:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:01:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:01:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:01:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:01:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:02:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:02:13 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T19:02:22 (#:amount 71568472 #:time 242))
(heartbeat 2015-08-18T19:02:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:02:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:02:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:02:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:03:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:03:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:03:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:03:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:03:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:03:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:04:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:04:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:04:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:04:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:04:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:04:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:05:03 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T19:05:05 (#:amount 79895432 #:time 246))
(heartbeat 2015-08-18T19:05:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:05:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:05:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:05:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:05:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:06:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:06:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:06:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:06:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:06:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:06:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:07:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:07:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:07:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:07:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:07:43 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T19:07:51 (#:amount 71773856 #:time 244))
(heartbeat 2015-08-18T19:07:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:08:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:08:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:08:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:08:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:08:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:08:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:09:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:09:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:09:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:09:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:09:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:09:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:10:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:10:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:10:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:10:33 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T19:10:35 (#:amount 80233256 #:time 247))
(heartbeat 2015-08-18T19:10:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:10:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:11:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:11:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:11:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:11:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:11:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:11:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:12:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:12:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:12:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:12:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:12:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:12:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:13:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:13:13 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T19:13:18 (#:amount 72408728 #:time 244))
(heartbeat 2015-08-18T19:13:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:13:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:13:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:13:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:14:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:14:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:14:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:14:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:14:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:14:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:15:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:15:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:15:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:15:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:15:43 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T19:15:46 (#:amount 80232392 #:time 209))
(heartbeat 2015-08-18T19:15:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:16:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:16:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:16:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:16:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:16:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:16:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:17:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:17:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:17:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:17:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:17:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:17:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:18:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:18:14 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T19:18:15 (#:amount 71751496 #:time 244))
(heartbeat 2015-08-18T19:18:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:18:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:18:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:18:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:19:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:19:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:19:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:19:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:19:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:19:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:20:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:20:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:20:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:20:34 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T19:20:35 (#:amount 80072880 #:time 246))
(heartbeat 2015-08-18T19:20:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:20:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:21:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:21:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:21:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:21:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:21:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:21:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:22:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:22:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:22:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:22:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:22:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:22:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:23:04 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T19:23:12 (#:amount 71838104 #:time 244))
(heartbeat 2015-08-18T19:23:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:23:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:23:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:23:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:23:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:24:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:24:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:24:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:24:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:24:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:24:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:25:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:25:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:25:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:25:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:25:44 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T19:25:47 (#:amount 79779384 #:time 248))
(heartbeat 2015-08-18T19:25:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:26:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:26:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:26:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:26:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:26:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:26:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:27:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:27:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:27:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:27:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:27:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:27:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:28:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:28:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:28:24 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T19:28:30 (#:amount 71344408 #:time 244))
(heartbeat 2015-08-18T19:28:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:28:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:28:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:29:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:29:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:29:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:29:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:29:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:29:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:30:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:30:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:30:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:30:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:30:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:30:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:31:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:31:14 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T19:31:15 (#:amount 80807760 #:time 245))
(heartbeat 2015-08-18T19:31:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:31:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:31:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:31:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:32:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:32:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:32:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:32:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:32:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:32:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:33:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:33:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:33:24 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T19:33:28 (#:amount 72533920 #:time 207))
(heartbeat 2015-08-18T19:33:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:33:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:33:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:34:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:34:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:34:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:34:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:34:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:34:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:35:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:35:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:35:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:35:34 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T19:35:43 (#:amount 79183976 #:time 210))
(heartbeat 2015-08-18T19:35:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:35:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:36:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:36:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:36:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:36:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:36:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:36:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:37:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:37:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:37:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:37:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:37:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:37:54 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T19:37:55 (#:amount 71421208 #:time 244))
(heartbeat 2015-08-18T19:38:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:38:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:38:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:38:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:38:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:38:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:39:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:39:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:39:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:39:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:39:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:39:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:40:04 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T19:40:06 (#:amount 79848912 #:time 210))
(heartbeat 2015-08-18T19:40:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:40:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:40:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:40:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:40:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:41:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:41:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:41:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:41:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:41:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:41:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:42:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:42:14 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T19:42:20 (#:amount 72197384 #:time 242))
(heartbeat 2015-08-18T19:42:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:42:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:42:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:42:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:43:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:43:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:43:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:43:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:43:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:43:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:44:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:44:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:44:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:44:34 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T19:44:39 (#:amount 79901920 #:time 209))
(heartbeat 2015-08-18T19:44:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:44:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:45:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:45:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:45:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:45:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:45:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:45:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:46:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:46:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:46:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:46:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:46:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:46:55 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T19:46:56 (#:amount 72420352 #:time 207))
(heartbeat 2015-08-18T19:47:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:47:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:47:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:47:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:47:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:47:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:48:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:48:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:48:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:48:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:48:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:48:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:49:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:49:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:49:25 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T19:49:31 (#:amount 79058520 #:time 245))
(heartbeat 2015-08-18T19:49:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:49:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:49:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:50:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:50:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:50:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:50:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:50:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:50:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:51:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:51:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:51:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:51:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:51:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:51:55 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T19:51:55 (#:amount 72229952 #:time 244))
(heartbeat 2015-08-18T19:52:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:52:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:52:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:52:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:52:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:52:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:53:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:53:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:53:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:53:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:53:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:53:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:54:05 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T19:54:06 (#:amount 79158904 #:time 213))
(heartbeat 2015-08-18T19:54:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:54:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:54:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:54:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:54:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:55:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:55:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:55:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:55:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:55:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:55:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:56:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:56:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:56:25 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T19:56:28 (#:amount 71718112 #:time 245))
(heartbeat 2015-08-18T19:56:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:56:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:56:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:57:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:57:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:57:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:57:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:57:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:57:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:58:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:58:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:58:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:58:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:58:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:58:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:59:05 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T19:59:07 (#:amount 79928272 #:time 246))
(heartbeat 2015-08-18T19:59:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:59:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:59:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:59:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T19:59:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:00:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:00:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:00:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:00:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:00:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:00:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:01:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:01:15 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T20:01:20 (#:amount 72236704 #:time 243))
(heartbeat 2015-08-18T20:01:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:01:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:01:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:01:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:02:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:02:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:02:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:02:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:02:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:02:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:03:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:03:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:03:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:03:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:03:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:03:55 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T20:03:59 (#:amount 79676040 #:time 248))
(heartbeat 2015-08-18T20:04:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:04:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:04:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:04:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:04:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:04:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:05:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:05:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:05:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:05:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:05:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:05:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:06:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:06:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:06:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:06:35 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T20:06:45 (#:amount 71772912 #:time 246))
(heartbeat 2015-08-18T20:06:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:06:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:07:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:07:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:07:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:07:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:07:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:07:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:08:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:08:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:08:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:08:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:08:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:08:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:09:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:09:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:09:25 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T20:09:30 (#:amount 80302448 #:time 247))
(heartbeat 2015-08-18T20:09:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:09:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:09:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:10:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:10:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:10:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:10:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:10:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:10:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:11:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:11:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:11:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:11:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:11:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:11:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:12:05 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T20:12:16 (#:amount 71317304 #:time 247))
(heartbeat 2015-08-18T20:12:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:12:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:12:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:12:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:12:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:13:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:13:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:13:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:13:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:13:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:13:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:14:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:14:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:14:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:14:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:14:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:14:56 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T20:15:00 (#:amount 80820176 #:time 246))
(heartbeat 2015-08-18T20:15:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:15:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:15:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:15:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:15:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:15:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:16:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:16:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:16:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:16:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:16:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:16:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:17:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:17:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:17:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:17:36 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T20:17:43 (#:amount 72251128 #:time 243))
(heartbeat 2015-08-18T20:17:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:17:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:18:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:18:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:18:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:18:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:18:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:18:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:19:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:19:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:19:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:19:36 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T20:19:45 (#:amount 79504336 #:time 211))
(heartbeat 2015-08-18T20:19:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:19:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:20:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:20:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:20:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:20:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:20:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:20:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:21:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:21:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:21:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:21:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:21:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:21:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:22:06 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T20:22:15 (#:amount 71799176 #:time 245))
(heartbeat 2015-08-18T20:22:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:22:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:22:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:22:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:22:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:23:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:23:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:23:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:23:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:23:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:23:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:24:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:24:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:24:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:24:36 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T20:24:37 (#:amount 80321928 #:time 212))
(heartbeat 2015-08-18T20:24:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:24:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:25:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:25:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:25:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:25:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:25:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:25:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:26:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:26:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:26:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:26:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:26:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:26:56 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T20:27:01 (#:amount 71834072 #:time 241))
(heartbeat 2015-08-18T20:27:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:27:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:27:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:27:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:27:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:27:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:28:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:28:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:28:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:28:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:28:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:28:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:29:06 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T20:29:15 (#:amount 78944896 #:time 209))
(heartbeat 2015-08-18T20:29:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:29:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:29:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:29:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:29:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:30:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:30:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:30:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:30:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:30:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:30:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:31:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:31:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:31:26 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T20:31:32 (#:amount 71650656 #:time 228))
(heartbeat 2015-08-18T20:31:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:31:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:31:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:32:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:32:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:32:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:32:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:32:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:32:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:33:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:33:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:33:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:33:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:33:46 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T20:33:49 (#:amount 79805336 #:time 248))
(heartbeat 2015-08-18T20:33:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:34:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:34:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:34:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:34:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:34:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:34:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:35:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:35:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:35:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:35:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:35:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:35:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:36:07 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T20:36:08 (#:amount 71723576 #:time 242))
(heartbeat 2015-08-18T20:36:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:36:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:36:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:36:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:36:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:37:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:37:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:37:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:37:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:37:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:37:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:38:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:38:17 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T20:38:25 (#:amount 79647280 #:time 245))
(heartbeat 2015-08-18T20:38:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:38:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:38:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:38:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:39:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:39:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:39:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:39:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:39:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:39:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:40:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:40:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:40:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:40:37 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T20:40:40 (#:amount 72011424 #:time 209))
(heartbeat 2015-08-18T20:40:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:40:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:41:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:41:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:41:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:41:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:41:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:41:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:42:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:42:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:42:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:42:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:42:47 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T20:42:51 (#:amount 79762696 #:time 211))
(heartbeat 2015-08-18T20:42:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:43:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:43:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:43:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:43:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:43:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:43:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:44:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:44:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:44:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:44:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:44:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:44:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:45:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:45:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:45:27 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T20:45:29 (#:amount 72086896 #:time 246))
(heartbeat 2015-08-18T20:45:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:45:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:45:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:46:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:46:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:46:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:46:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:46:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:46:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:47:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:47:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:47:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:47:37 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T20:47:41 (#:amount 79228328 #:time 210))
(heartbeat 2015-08-18T20:47:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:47:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:48:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:48:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:48:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:48:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:48:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:48:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:49:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:49:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:49:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:49:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:49:47 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T20:49:54 (#:amount 71912784 #:time 242))
(heartbeat 2015-08-18T20:49:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:50:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:50:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:50:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:50:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:50:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:50:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:51:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:51:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:51:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:51:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:51:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:51:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:52:07 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T20:52:09 (#:amount 79658968 #:time 248))
(heartbeat 2015-08-18T20:52:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:52:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:52:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:52:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:52:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:53:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:53:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:53:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:53:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:53:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:53:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:54:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:54:17 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T20:54:25 (#:amount 71620992 #:time 209))
(heartbeat 2015-08-18T20:54:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:54:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:54:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:54:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:55:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:55:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:55:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:55:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:55:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:55:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:56:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:56:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:56:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:56:37 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T20:56:39 (#:amount 80838472 #:time 208))
(heartbeat 2015-08-18T20:56:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:56:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:57:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:57:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:57:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:57:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:57:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:57:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:58:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:58:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:58:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:58:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:58:47 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T20:58:49 (#:amount 71998712 #:time 208))
(heartbeat 2015-08-18T20:58:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:59:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:59:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:59:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:59:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:59:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T20:59:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:00:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:00:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:00:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:00:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:00:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:00:57 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T21:01:07 (#:amount 79698208 #:time 210))
(heartbeat 2015-08-18T21:01:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:01:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:01:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:01:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:01:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:01:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:02:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:02:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:02:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:02:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:02:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:02:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:03:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:03:18 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T21:03:24 (#:amount 71822824 #:time 241))
(heartbeat 2015-08-18T21:03:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:03:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:03:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:03:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:04:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:04:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:04:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:04:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:04:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:04:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:05:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:05:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:05:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:05:38 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T21:05:39 (#:amount 79425600 #:time 245))
(heartbeat 2015-08-18T21:05:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:05:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:06:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:06:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:06:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:06:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:06:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:06:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:07:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:07:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:07:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:07:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:07:48 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T21:07:55 (#:amount 71249240 #:time 242))
(heartbeat 2015-08-18T21:07:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:08:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:08:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:08:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:08:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:08:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:08:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:09:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:09:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:09:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:09:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:09:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:09:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:10:08 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T21:10:14 (#:amount 79721240 #:time 247))
(heartbeat 2015-08-18T21:10:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:10:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:10:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:10:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:10:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:11:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:11:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:11:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:11:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:11:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:11:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:12:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:12:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:12:28 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T21:12:28 (#:amount 71088648 #:time 207))
(heartbeat 2015-08-18T21:12:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:12:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:12:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:13:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:13:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:13:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:13:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:13:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:13:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:14:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:14:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:14:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:14:38 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T21:14:43 (#:amount 80093800 #:time 246))
(heartbeat 2015-08-18T21:14:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:14:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:15:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:15:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:15:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:15:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:15:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:15:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:16:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:16:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:16:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:16:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:16:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:16:58 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T21:17:03 (#:amount 72401736 #:time 242))
(heartbeat 2015-08-18T21:17:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:17:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:17:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:17:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:17:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:17:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:18:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:18:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:18:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:18:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:18:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:18:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:19:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:19:18 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T21:19:18 (#:amount 79406480 #:time 211))
(heartbeat 2015-08-18T21:19:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:19:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:19:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:19:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:20:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:20:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:20:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:20:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:20:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:20:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:21:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:21:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:21:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:21:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:21:48 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T21:21:55 (#:amount 71382296 #:time 245))
(heartbeat 2015-08-18T21:21:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:22:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:22:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:22:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:22:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:22:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:22:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:23:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:23:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:23:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:23:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:23:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:23:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:24:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:24:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:24:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:24:38 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T21:24:41 (#:amount 80126032 #:time 251))
(heartbeat 2015-08-18T21:24:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:24:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:25:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:25:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:25:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:25:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:25:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:25:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:26:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:26:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:26:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:26:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:26:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:26:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:27:08 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T21:27:17 (#:amount 71396344 #:time 208))
(heartbeat 2015-08-18T21:27:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:27:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:27:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:27:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:27:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:28:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:28:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:28:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:28:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:28:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:28:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:29:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:29:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:29:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:29:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:29:49 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T21:29:49 (#:amount 79756560 #:time 247))
(heartbeat 2015-08-18T21:29:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:30:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:30:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:30:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:30:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:30:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:30:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:31:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:31:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:31:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:31:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:31:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:31:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:32:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:32:19 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T21:32:28 (#:amount 71659176 #:time 207))
(heartbeat 2015-08-18T21:32:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:32:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:32:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:32:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:33:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:33:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:33:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:33:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:33:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:33:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:34:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:34:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:34:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:34:39 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T21:34:42 (#:amount 79521960 #:time 212))
(heartbeat 2015-08-18T21:34:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:34:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:35:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:35:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:35:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:35:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:35:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:35:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:36:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:36:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:36:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:36:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:36:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:36:59 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T21:37:05 (#:amount 71763704 #:time 244))
(heartbeat 2015-08-18T21:37:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:37:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:37:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:37:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:37:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:37:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:38:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:38:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:38:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:38:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:38:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:38:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:39:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:39:19 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T21:39:24 (#:amount 81456112 #:time 229))
(heartbeat 2015-08-18T21:39:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:39:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:39:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:39:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:40:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:40:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:40:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:40:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:40:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:40:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:41:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:41:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:41:29 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T21:41:35 (#:amount 71642464 #:time 241))
(heartbeat 2015-08-18T21:41:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:41:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:41:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:42:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:42:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:42:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:42:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:42:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:42:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:43:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:43:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:43:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:43:39 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T21:43:49 (#:amount 79346152 #:time 212))
(heartbeat 2015-08-18T21:43:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:43:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:44:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:44:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:44:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:44:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:44:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:44:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:45:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:45:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:45:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:45:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:45:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:45:59 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T21:45:59 (#:amount 72558032 #:time 243))
(heartbeat 2015-08-18T21:46:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:46:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:46:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:46:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:46:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:46:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:47:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:47:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:47:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:47:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:47:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:47:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:48:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:48:19 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T21:48:28 (#:amount 79013144 #:time 232))
(heartbeat 2015-08-18T21:48:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:48:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:48:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:48:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:49:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:49:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:49:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:49:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:49:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:49:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:50:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:50:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:50:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:50:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:50:49 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T21:50:53 (#:amount 71468568 #:time 207))
(heartbeat 2015-08-18T21:50:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:51:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:51:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:51:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:51:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:51:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:51:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:52:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:52:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:52:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:52:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:52:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:52:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:53:09 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T21:53:11 (#:amount 80158256 #:time 221))
(heartbeat 2015-08-18T21:53:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:53:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:53:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:53:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:53:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:54:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:54:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:54:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:54:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:54:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:54:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:55:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:55:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:55:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:55:39 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T21:55:44 (#:amount 72234944 #:time 246))
(heartbeat 2015-08-18T21:55:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:55:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:56:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:56:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:56:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:56:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:56:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:57:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:57:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:57:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:57:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:57:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:57:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:58:00 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T21:58:07 (#:amount 79552248 #:time 210))
(heartbeat 2015-08-18T21:58:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:58:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:58:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:58:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:58:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:59:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:59:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:59:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:59:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:59:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T21:59:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:00:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:00:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:00:20 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T22:00:22 (#:amount 72000408 #:time 244))
(heartbeat 2015-08-18T22:00:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:00:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:00:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:01:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:01:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:01:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:01:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:01:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:01:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:02:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:02:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:02:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:02:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:02:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:02:50 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T22:02:55 (#:amount 79928032 #:time 246))
(heartbeat 2015-08-18T22:03:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:03:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:03:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:03:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:03:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:03:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:04:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:04:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:04:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:04:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:04:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:04:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:05:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:05:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:05:20 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T22:05:28 (#:amount 72603592 #:time 208))
(heartbeat 2015-08-18T22:05:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:05:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:05:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:06:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:06:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:06:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:06:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:06:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:06:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:07:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:07:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:07:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:07:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:07:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:07:50 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T22:07:55 (#:amount 79609792 #:time 246))
(heartbeat 2015-08-18T22:08:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:08:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:08:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:08:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:08:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:08:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:09:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:09:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:09:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:09:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:09:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:09:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:10:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:10:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:10:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:10:30 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T22:10:37 (#:amount 72323360 #:time 245))
(heartbeat 2015-08-18T22:10:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:10:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:11:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:11:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:11:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:11:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:11:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:11:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:12:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:12:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:12:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:12:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:12:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:12:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:13:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:13:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:13:20 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T22:13:21 (#:amount 79790504 #:time 212))
(heartbeat 2015-08-18T22:13:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:13:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:13:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:14:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:14:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:14:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:14:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:14:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:14:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:15:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:15:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:15:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:15:30 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T22:15:36 (#:amount 72393568 #:time 211))
(heartbeat 2015-08-18T22:15:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:15:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:16:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:16:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:16:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:16:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:16:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:16:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:17:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:17:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:17:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:17:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:17:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:17:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:18:00 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T22:18:08 (#:amount 78939552 #:time 248))
(heartbeat 2015-08-18T22:18:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:18:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:18:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:18:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:18:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:19:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:19:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:19:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:19:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:19:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:19:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:20:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:20:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:20:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:20:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:20:40 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T22:20:49 (#:amount 72236872 #:time 246))
(heartbeat 2015-08-18T22:20:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:21:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:21:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:21:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:21:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:21:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:21:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:22:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:22:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:22:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:22:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:22:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:22:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:23:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:23:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:23:21 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T22:23:30 (#:amount 81116184 #:time 210))
(heartbeat 2015-08-18T22:23:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:23:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:23:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:24:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:24:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:24:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:24:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:24:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:24:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:25:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:25:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:25:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:25:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:25:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:25:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:26:01 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T22:26:04 (#:amount 71429752 #:time 246))
(heartbeat 2015-08-18T22:26:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:26:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:26:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:26:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:26:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:27:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:27:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:27:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:27:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:27:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:27:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:28:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:28:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:28:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:28:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:28:41 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T22:28:48 (#:amount 80205824 #:time 246))
(heartbeat 2015-08-18T22:28:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:29:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:29:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:29:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:29:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:29:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:29:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:30:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:30:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:30:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:30:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:30:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:30:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:31:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:31:11 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T22:31:18 (#:amount 72753640 #:time 244))
(heartbeat 2015-08-18T22:31:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:31:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:31:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:31:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:32:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:32:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:32:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:32:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:32:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:32:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:33:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:33:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:33:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:33:31 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T22:33:35 (#:amount 78919832 #:time 211))
(heartbeat 2015-08-18T22:33:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:33:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:34:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:34:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:34:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:34:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:34:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:34:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:35:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:35:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:35:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:35:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:35:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:35:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:36:01 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T22:36:05 (#:amount 71869080 #:time 244))
(heartbeat 2015-08-18T22:36:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:36:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:36:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:36:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:36:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:37:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:37:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:37:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:37:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:37:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:37:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:38:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:38:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:38:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:38:31 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T22:38:34 (#:amount 79289792 #:time 210))
(heartbeat 2015-08-18T22:38:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:38:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:39:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:39:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:39:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:39:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:39:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:39:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:40:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:40:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:40:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:40:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:40:41 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T22:40:46 (#:amount 71915592 #:time 208))
(heartbeat 2015-08-18T22:40:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:41:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:41:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:41:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:41:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:41:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:41:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:42:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:42:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:42:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:42:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:42:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:42:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:43:01 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T22:43:08 (#:amount 79528064 #:time 248))
(heartbeat 2015-08-18T22:43:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:43:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:43:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:43:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:43:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:44:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:44:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:44:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:44:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:44:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:44:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:45:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:45:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:45:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:45:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:45:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:45:51 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T22:45:52 (#:amount 72011408 #:time 245))
(heartbeat 2015-08-18T22:46:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:46:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:46:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:46:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:46:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:46:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:47:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:47:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:47:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:47:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:47:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:47:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:48:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:48:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:48:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:48:31 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T22:48:35 (#:amount 80130240 #:time 247))
(heartbeat 2015-08-18T22:48:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:48:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:49:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:49:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:49:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:49:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:49:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:49:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:50:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:50:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:50:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:50:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:50:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:50:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:51:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:51:12 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T22:51:20 (#:amount 72317536 #:time 243))
(heartbeat 2015-08-18T22:51:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:51:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:51:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:51:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:52:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:52:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:52:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:52:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:52:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:52:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:53:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:53:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:53:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:53:32 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T22:53:33 (#:amount 79278328 #:time 210))
(heartbeat 2015-08-18T22:53:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:53:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:54:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:54:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:54:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:54:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:54:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:54:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:55:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:55:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:55:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:55:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:55:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:55:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:56:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:56:12 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T22:56:14 (#:amount 72005136 #:time 245))
(heartbeat 2015-08-18T22:56:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:56:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:56:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:56:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:57:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:57:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:57:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:57:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:57:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:57:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:58:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:58:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:58:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:58:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:58:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:58:52 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T22:58:59 (#:amount 79229888 #:time 246))
(heartbeat 2015-08-18T22:59:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:59:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:59:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:59:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:59:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T22:59:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:00:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:00:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:00:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:00:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:00:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:00:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:01:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:01:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:01:22 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T23:01:32 (#:amount 72119616 #:time 242))
(heartbeat 2015-08-18T23:01:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:01:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:01:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:02:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:02:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:02:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:02:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:02:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:02:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:03:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:03:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:03:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:03:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:03:42 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T23:03:49 (#:amount 79355920 #:time 244))
(heartbeat 2015-08-18T23:03:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:04:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:04:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:04:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:04:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:04:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:04:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:05:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:05:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:05:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:05:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:05:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:05:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:06:02 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T23:06:09 (#:amount 71714888 #:time 244))
(heartbeat 2015-08-18T23:06:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:06:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:06:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:06:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:06:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:07:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:07:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:07:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:07:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:07:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:07:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:08:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:08:12 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T23:08:22 (#:amount 80782800 #:time 208))
(heartbeat 2015-08-18T23:08:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:08:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:08:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:08:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:09:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:09:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:09:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:09:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:09:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:09:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:10:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:10:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:10:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:10:32 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T23:10:39 (#:amount 71548520 #:time 244))
(heartbeat 2015-08-18T23:10:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:10:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:11:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:11:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:11:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:11:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:11:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:11:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:12:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:12:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:12:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:12:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:12:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:12:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:13:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:13:12 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T23:13:22 (#:amount 80112864 #:time 246))
(heartbeat 2015-08-18T23:13:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:13:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:13:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:13:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:14:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:14:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:14:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:14:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:14:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:14:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:15:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:15:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:15:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:15:32 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T23:15:34 (#:amount 71965408 #:time 206))
(heartbeat 2015-08-18T23:15:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:15:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:16:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:16:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:16:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:16:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:16:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:16:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:17:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:17:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:17:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:17:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:17:42 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T23:17:49 (#:amount 79481944 #:time 244))
(heartbeat 2015-08-18T23:17:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:18:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:18:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:18:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:18:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:18:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:18:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:19:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:19:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:19:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:19:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:19:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:19:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:20:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:20:13 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T23:20:14 (#:amount 71341472 #:time 247))
(heartbeat 2015-08-18T23:20:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:20:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:20:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:20:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:21:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:21:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:21:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:21:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:21:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:21:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:22:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:22:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:22:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:22:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:22:43 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T23:22:51 (#:amount 80081080 #:time 251))
(heartbeat 2015-08-18T23:22:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:23:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:23:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:23:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:23:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:23:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:23:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:24:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:24:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:24:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:24:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:24:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:24:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:25:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:25:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:25:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:25:33 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T23:25:36 (#:amount 72403656 #:time 245))
(heartbeat 2015-08-18T23:25:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:25:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:26:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:26:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:26:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:26:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:26:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:26:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:27:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:27:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:27:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:27:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:27:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:27:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:28:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:28:13 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T23:28:22 (#:amount 79774856 #:time 249))
(heartbeat 2015-08-18T23:28:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:28:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:28:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:28:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:29:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:29:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:29:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:29:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:29:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:29:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:30:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:30:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:30:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:30:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:30:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:30:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:31:03 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T23:31:07 (#:amount 71319096 #:time 247))
(heartbeat 2015-08-18T23:31:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:31:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:31:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:31:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:31:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:32:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:32:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:32:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:32:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:32:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:32:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:33:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:33:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:33:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:33:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:33:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:33:53 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T23:33:53 (#:amount 79957344 #:time 250))
(heartbeat 2015-08-18T23:34:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:34:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:34:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:34:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:34:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:34:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:35:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:35:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:35:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:35:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:35:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:35:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:36:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:36:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:36:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:36:33 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T23:36:37 (#:amount 71761936 #:time 248))
(heartbeat 2015-08-18T23:36:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:36:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:37:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:37:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:37:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:37:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:37:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:37:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:38:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:38:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:38:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:38:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:38:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:38:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:39:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:39:13 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T23:39:22 (#:amount 79767264 #:time 248))
(heartbeat 2015-08-18T23:39:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:39:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:39:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:39:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:40:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:40:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:40:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:40:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:40:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:40:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:41:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:41:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:41:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:41:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:41:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:41:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:42:03 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T23:42:08 (#:amount 71181880 #:time 246))
(heartbeat 2015-08-18T23:42:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:42:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:42:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:42:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:42:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:43:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:43:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:43:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:43:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:43:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:43:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:44:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:44:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:44:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:44:33 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T23:44:42 (#:amount 79913840 #:time 250))
(heartbeat 2015-08-18T23:44:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:44:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:45:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:45:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:45:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:45:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:45:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:45:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:46:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:46:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:46:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:46:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:46:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:46:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:47:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:47:13 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T23:47:15 (#:amount 71678688 #:time 244))
(heartbeat 2015-08-18T23:47:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:47:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:47:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:47:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:48:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:48:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:48:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:48:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:48:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:48:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:49:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:49:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:49:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:49:34 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T23:49:42 (#:amount 79795520 #:time 210))
(heartbeat 2015-08-18T23:49:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:49:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:50:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:50:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:50:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:50:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:50:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:50:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:51:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:51:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:51:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:51:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:51:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:51:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:52:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:52:14 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T23:52:18 (#:amount 71391720 #:time 245))
(heartbeat 2015-08-18T23:52:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:52:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:52:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:52:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:53:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:53:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:53:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:53:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:53:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:53:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:54:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:54:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:54:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:54:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:54:44 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T23:54:44 (#:amount 80724648 #:time 247))
(heartbeat 2015-08-18T23:54:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:55:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:55:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:55:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:55:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:55:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:55:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:56:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:56:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:56:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:56:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:56:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:56:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:57:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:57:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:57:24 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-18T23:57:26 (#:amount 72156592 #:time 245))
(heartbeat 2015-08-18T23:57:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:57:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:57:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:58:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:58:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:58:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:58:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:58:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:58:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:59:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:59:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:59:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:59:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:59:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-18T23:59:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:00:04 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T00:00:08 (#:amount 79694472 #:time 247))
(heartbeat 2015-08-19T00:00:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:00:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:00:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:00:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:00:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:01:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:01:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:01:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:01:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:01:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:01:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:02:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:02:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:02:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:02:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:02:44 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T00:02:52 (#:amount 72081008 #:time 244))
(heartbeat 2015-08-19T00:02:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:03:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:03:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:03:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:03:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:03:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:03:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:04:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:04:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:04:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:04:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:04:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:04:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:05:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:05:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:05:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:05:34 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T00:05:37 (#:amount 78987160 #:time 245))
(heartbeat 2015-08-19T00:05:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:05:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:06:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:06:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:06:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:06:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:06:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:06:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:07:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:07:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:07:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:07:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:07:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:07:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:08:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:08:14 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T00:08:21 (#:amount 72300872 #:time 243))
(heartbeat 2015-08-19T00:08:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:08:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:08:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:08:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:09:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:09:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:09:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:09:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:09:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:09:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:10:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:10:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:10:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:10:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:10:44 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T00:10:52 (#:amount 79399328 #:time 246))
(heartbeat 2015-08-19T00:10:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:11:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:11:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:11:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:11:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:11:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:11:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:12:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:12:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:12:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:12:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:12:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:12:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:13:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:13:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:13:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:13:34 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T00:13:35 (#:amount 72476160 #:time 244))
(heartbeat 2015-08-19T00:13:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:13:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:14:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:14:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:14:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:14:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:14:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:14:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:15:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:15:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:15:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:15:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:15:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:15:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:16:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:16:14 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T00:16:21 (#:amount 79492120 #:time 249))
(heartbeat 2015-08-19T00:16:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:16:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:16:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:16:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:17:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:17:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:17:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:17:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:17:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:17:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:18:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:18:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:18:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:18:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:18:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:18:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:19:04 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T00:19:07 (#:amount 71804808 #:time 244))
(heartbeat 2015-08-19T00:19:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:19:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:19:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:19:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:19:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:20:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:20:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:20:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:20:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:20:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:20:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:21:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:21:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:21:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:21:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:21:45 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T00:21:51 (#:amount 80008696 #:time 247))
(heartbeat 2015-08-19T00:21:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:22:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:22:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:22:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:22:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:22:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:22:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:23:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:23:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:23:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:23:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:23:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:23:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:24:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:24:15 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T00:24:18 (#:amount 71678640 #:time 244))
(heartbeat 2015-08-19T00:24:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:24:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:24:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:24:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:25:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:25:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:25:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:25:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:25:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:25:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:26:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:26:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:26:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:26:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:26:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:26:55 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T00:27:04 (#:amount 79751008 #:time 250))
(heartbeat 2015-08-19T00:27:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:27:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:27:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:27:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:27:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:27:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:28:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:28:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:28:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:28:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:28:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:28:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:29:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:29:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:29:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:29:35 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T00:29:43 (#:amount 71686008 #:time 210))
(heartbeat 2015-08-19T00:29:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:29:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:30:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:30:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:30:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:30:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:30:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:30:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:31:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:31:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:31:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:31:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:31:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:31:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:32:05 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T00:32:13 (#:amount 80163720 #:time 212))
(heartbeat 2015-08-19T00:32:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:32:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:32:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:32:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:32:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:33:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:33:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:33:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:33:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:33:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:33:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:34:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:34:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:34:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:34:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:34:45 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T00:34:55 (#:amount 72571256 #:time 245))
(heartbeat 2015-08-19T00:34:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:35:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:35:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:35:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:35:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:35:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:35:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:36:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:36:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:36:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:36:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:36:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:36:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:37:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:37:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:37:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:37:35 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T00:37:42 (#:amount 79137832 #:time 250))
(heartbeat 2015-08-19T00:37:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:37:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:38:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:38:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:38:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:38:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:38:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:38:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:39:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:39:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:39:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:39:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:39:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:39:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:40:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:40:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:40:25 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T00:40:26 (#:amount 71593064 #:time 245))
(heartbeat 2015-08-19T00:40:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:40:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:40:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:41:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:41:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:41:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:41:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:41:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:41:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:42:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:42:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:42:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:42:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:42:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:42:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:43:05 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T00:43:08 (#:amount 80503112 #:time 247))
(heartbeat 2015-08-19T00:43:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:43:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:43:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:43:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:43:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:44:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:44:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:44:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:44:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:44:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:44:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:45:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:45:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:45:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:45:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:45:45 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T00:45:52 (#:amount 72209224 #:time 245))
(heartbeat 2015-08-19T00:45:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:46:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:46:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:46:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:46:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:46:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:46:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:47:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:47:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:47:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:47:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:47:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:47:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:48:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:48:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:48:25 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T00:48:27 (#:amount 78929192 #:time 246))
(heartbeat 2015-08-19T00:48:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:48:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:48:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:49:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:49:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:49:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:49:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:49:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:49:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:50:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:50:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:50:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:50:36 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T00:50:44 (#:amount 71862568 #:time 237))
(heartbeat 2015-08-19T00:50:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:50:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:51:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:51:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:51:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:51:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:51:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:51:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:52:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:52:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:52:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:52:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:52:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:52:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:53:06 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T00:53:07 (#:amount 80269728 #:time 246))
(heartbeat 2015-08-19T00:53:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:53:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:53:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:53:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:53:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:54:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:54:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:54:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:54:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:54:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:54:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:55:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:55:16 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T00:55:26 (#:amount 72163968 #:time 244))
(heartbeat 2015-08-19T00:55:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:55:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:55:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:55:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:56:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:56:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:56:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:56:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:56:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:56:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:57:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:57:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:57:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:57:36 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T00:57:44 (#:amount 79403968 #:time 248))
(heartbeat 2015-08-19T00:57:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:57:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:58:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:58:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:58:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:58:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:58:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:58:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:59:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:59:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:59:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:59:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:59:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T00:59:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:00:06 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T01:00:09 (#:amount 72692328 #:time 207))
(heartbeat 2015-08-19T01:00:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:00:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:00:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:00:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:00:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:01:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:01:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:01:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:01:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:01:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:01:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:02:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:02:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:02:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:02:36 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T01:02:45 (#:amount 78941256 #:time 246))
(heartbeat 2015-08-19T01:02:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:02:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:03:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:03:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:03:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:03:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:03:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:03:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:04:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:04:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:04:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:04:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:04:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:04:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:05:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:05:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:05:26 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T01:05:27 (#:amount 71841848 #:time 244))
(heartbeat 2015-08-19T01:05:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:05:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:05:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:06:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:06:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:06:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:06:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:06:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:06:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:07:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:07:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:07:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:07:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:07:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:07:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:08:06 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T01:08:07 (#:amount 79718968 #:time 244))
(heartbeat 2015-08-19T01:08:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:08:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:08:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:08:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:08:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:09:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:09:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:09:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:09:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:09:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:09:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:10:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:10:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:10:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:10:36 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T01:10:45 (#:amount 71358424 #:time 244))
(heartbeat 2015-08-19T01:10:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:10:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:11:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:11:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:11:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:11:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:11:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:11:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:12:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:12:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:12:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:12:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:12:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:12:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:13:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:13:16 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T01:13:26 (#:amount 79987960 #:time 247))
(heartbeat 2015-08-19T01:13:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:13:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:13:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:13:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:14:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:14:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:14:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:14:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:14:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:14:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:15:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:15:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:15:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:15:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:15:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:15:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:16:06 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T01:16:12 (#:amount 72298288 #:time 246))
(heartbeat 2015-08-19T01:16:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:16:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:16:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:16:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:16:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:17:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:17:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:17:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:17:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:17:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:17:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:18:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:18:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:18:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:18:36 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T01:18:42 (#:amount 79990792 #:time 248))
(heartbeat 2015-08-19T01:18:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:18:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:19:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:19:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:19:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:19:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:19:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:19:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:20:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:20:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:20:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:20:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:20:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:20:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:21:07 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T01:21:09 (#:amount 72320616 #:time 244))
(heartbeat 2015-08-19T01:21:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:21:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:21:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:21:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:21:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:22:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:22:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:22:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:22:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:22:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:22:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:23:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:23:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:23:27 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T01:23:32 (#:amount 79552424 #:time 248))
(heartbeat 2015-08-19T01:23:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:23:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:23:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:24:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:24:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:24:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:24:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:24:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:24:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:25:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:25:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:25:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:25:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:25:47 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T01:25:56 (#:amount 71286792 #:time 234))
(heartbeat 2015-08-19T01:25:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:26:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:26:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:26:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:26:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:26:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:26:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:27:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:27:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:27:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:27:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:27:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:27:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:28:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:28:17 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T01:28:19 (#:amount 80647008 #:time 210))
(heartbeat 2015-08-19T01:28:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:28:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:28:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:28:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:29:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:29:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:29:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:29:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:29:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:29:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:30:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:30:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:30:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:30:37 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T01:30:42 (#:amount 72178584 #:time 243))
(heartbeat 2015-08-19T01:30:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:30:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:31:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:31:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:31:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:31:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:31:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:31:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:32:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:32:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:32:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:32:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:32:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:32:57 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T01:33:06 (#:amount 79770528 #:time 244))
(heartbeat 2015-08-19T01:33:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:33:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:33:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:33:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:33:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:33:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:34:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:34:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:34:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:34:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:34:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:34:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:35:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:35:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:35:27 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T01:35:32 (#:amount 71470960 #:time 244))
(heartbeat 2015-08-19T01:35:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:35:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:35:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:36:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:36:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:36:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:36:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:36:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:36:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:37:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:37:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:37:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:37:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:37:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:37:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:38:07 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T01:38:12 (#:amount 79699448 #:time 248))
(heartbeat 2015-08-19T01:38:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:38:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:38:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:38:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:38:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:39:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:39:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:39:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:39:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:39:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:39:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:40:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:40:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:40:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:40:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:40:47 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T01:40:55 (#:amount 71738104 #:time 244))
(heartbeat 2015-08-19T01:40:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:41:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:41:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:41:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:41:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:41:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:41:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:42:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:42:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:42:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:42:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:42:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:42:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:43:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:43:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:43:27 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T01:43:37 (#:amount 79403768 #:time 246))
(heartbeat 2015-08-19T01:43:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:43:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:43:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:44:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:44:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:44:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:44:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:44:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:44:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:45:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:45:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:45:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:45:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:45:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:45:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:46:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:46:17 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T01:46:22 (#:amount 71825088 #:time 246))
(heartbeat 2015-08-19T01:46:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:46:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:46:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:46:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:47:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:47:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:47:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:47:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:47:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:47:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:48:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:48:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:48:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:48:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:48:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:48:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:49:08 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T01:49:08 (#:amount 79641144 #:time 249))
(heartbeat 2015-08-19T01:49:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:49:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:49:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:49:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:49:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:50:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:50:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:50:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:50:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:50:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:50:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:51:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:51:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:51:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:51:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:51:48 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T01:51:54 (#:amount 71674784 #:time 245))
(heartbeat 2015-08-19T01:51:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:52:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:52:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:52:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:52:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:52:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:52:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:53:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:53:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:53:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:53:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:53:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:53:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:54:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:54:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:54:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:54:38 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T01:54:40 (#:amount 79575336 #:time 246))
(heartbeat 2015-08-19T01:54:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:54:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:55:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:55:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:55:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:55:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:55:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:55:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:56:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:56:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:56:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:56:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:56:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:56:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:57:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:57:18 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T01:57:25 (#:amount 71576200 #:time 246))
(heartbeat 2015-08-19T01:57:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:57:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:57:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:57:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:58:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:58:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:58:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:58:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:58:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:58:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:59:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:59:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:59:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:59:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:59:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T01:59:58 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T02:00:05 (#:amount 79940136 #:time 249))
(heartbeat 2015-08-19T02:00:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:00:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:00:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:00:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:00:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:00:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:01:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:01:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:01:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:01:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:01:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:01:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:02:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:02:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:02:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:02:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:02:48 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T02:02:51 (#:amount 72671392 #:time 246))
(heartbeat 2015-08-19T02:02:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:03:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:03:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:03:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:03:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:03:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:03:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:04:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:04:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:04:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:04:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:04:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:04:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:05:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:05:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:05:28 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T02:05:33 (#:amount 79074160 #:time 247))
(heartbeat 2015-08-19T02:05:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:05:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:05:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:06:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:06:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:06:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:06:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:06:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:06:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:07:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:07:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:07:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:07:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:07:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:07:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:08:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:08:18 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T02:08:19 (#:amount 71638600 #:time 244))
(heartbeat 2015-08-19T02:08:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:08:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:08:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:08:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:09:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:09:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:09:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:09:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:09:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:09:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:10:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:10:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:10:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:10:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:10:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:10:58 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T02:11:06 (#:amount 80241224 #:time 249))
(heartbeat 2015-08-19T02:11:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:11:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:11:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:11:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:11:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:11:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:12:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:12:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:12:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:12:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:12:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:12:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:13:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:13:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:13:28 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T02:13:38 (#:amount 72564704 #:time 245))
(heartbeat 2015-08-19T02:13:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:13:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:13:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:14:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:14:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:14:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:14:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:14:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:14:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:15:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:15:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:15:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:15:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:15:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:15:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:16:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:16:18 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T02:16:22 (#:amount 80637472 #:time 247))
(heartbeat 2015-08-19T02:16:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:16:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:16:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:16:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:17:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:17:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:17:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:17:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:17:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:17:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:18:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:18:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:18:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:18:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:18:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:18:59 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T02:19:05 (#:amount 71735912 #:time 245))
(heartbeat 2015-08-19T02:19:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:19:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:19:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:19:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:19:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:19:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:20:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:20:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:20:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:20:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:20:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:20:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:21:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:21:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:21:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:21:39 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T02:21:45 (#:amount 79553032 #:time 215))
(heartbeat 2015-08-19T02:21:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:21:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:22:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:22:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:22:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:22:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:22:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:22:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:23:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:23:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:23:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:23:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:23:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:23:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:24:09 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T02:24:10 (#:amount 71572416 #:time 245))
(heartbeat 2015-08-19T02:24:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:24:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:24:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:24:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:24:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:25:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:25:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:25:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:25:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:25:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:25:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:26:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:26:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:26:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:26:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:26:49 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T02:26:53 (#:amount 80230528 #:time 245))
(heartbeat 2015-08-19T02:26:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:27:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:27:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:27:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:27:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:27:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:27:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:28:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:28:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:28:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:28:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:28:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:28:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:29:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:29:19 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T02:29:21 (#:amount 71726480 #:time 244))
(heartbeat 2015-08-19T02:29:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:29:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:29:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:29:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:30:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:30:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:30:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:30:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:30:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:30:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:31:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:31:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:31:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:31:39 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T02:31:47 (#:amount 79248352 #:time 213))
(heartbeat 2015-08-19T02:31:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:31:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:32:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:32:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:32:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:32:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:32:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:32:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:33:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:33:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:33:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:33:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:33:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:33:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:34:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:34:19 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T02:34:20 (#:amount 72339952 #:time 244))
(heartbeat 2015-08-19T02:34:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:34:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:34:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:34:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:35:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:35:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:35:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:35:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:35:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:35:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:36:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:36:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:36:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:36:39 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T02:36:47 (#:amount 79186568 #:time 211))
(heartbeat 2015-08-19T02:36:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:36:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:37:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:37:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:37:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:37:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:37:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:37:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:38:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:38:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:38:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:38:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:38:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:38:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:39:09 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T02:39:12 (#:amount 71474128 #:time 208))
(heartbeat 2015-08-19T02:39:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:39:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:39:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:39:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:39:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:40:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:40:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:40:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:40:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:40:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:40:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:41:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:41:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:41:29 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T02:41:34 (#:amount 79642352 #:time 246))
(heartbeat 2015-08-19T02:41:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:41:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:41:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:42:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:42:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:42:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:42:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:42:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:42:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:43:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:43:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:43:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:43:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:43:49 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T02:43:58 (#:amount 71928032 #:time 245))
(heartbeat 2015-08-19T02:43:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:44:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:44:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:44:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:44:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:44:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:44:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:45:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:45:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:45:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:45:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:45:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:45:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:46:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:46:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:46:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:46:39 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T02:46:43 (#:amount 80110936 #:time 248))
(heartbeat 2015-08-19T02:46:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:46:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:47:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:47:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:47:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:47:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:47:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:47:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:48:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:48:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:48:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:48:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:48:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:49:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:49:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:49:20 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T02:49:29 (#:amount 72516008 #:time 246))
(heartbeat 2015-08-19T02:49:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:49:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:49:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:50:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:50:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:50:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:50:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:50:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:50:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:51:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:51:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:51:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:51:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:51:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:51:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:52:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:52:10 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T02:52:14 (#:amount 79612592 #:time 248))
(heartbeat 2015-08-19T02:52:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:52:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:52:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:52:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:53:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:53:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:53:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:53:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:53:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:53:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:54:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:54:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:54:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:54:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:54:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:54:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:55:00 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T02:55:00 (#:amount 71931080 #:time 247))
(heartbeat 2015-08-19T02:55:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:55:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:55:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:55:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:55:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:56:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:56:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:56:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:56:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:56:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:56:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:57:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:57:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:57:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:57:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:57:40 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T02:57:47 (#:amount 79691728 #:time 246))
(heartbeat 2015-08-19T02:57:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:58:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:58:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:58:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:58:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:58:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:58:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:59:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:59:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:59:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:59:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:59:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T02:59:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:00:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:00:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:00:20 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T03:00:25 (#:amount 72163328 #:time 245))
(heartbeat 2015-08-19T03:00:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:00:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:00:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:01:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:01:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:01:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:01:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:01:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:01:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:02:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:02:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:02:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:02:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:02:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:02:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:03:00 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T03:03:08 (#:amount 80221928 #:time 245))
(heartbeat 2015-08-19T03:03:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:03:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:03:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:03:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:03:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:04:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:04:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:04:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:04:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:04:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:04:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:05:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:05:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:05:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:05:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:05:40 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T03:05:47 (#:amount 72246544 #:time 207))
(heartbeat 2015-08-19T03:05:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:06:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:06:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:06:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:06:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:06:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:06:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:07:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:07:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:07:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:07:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:07:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:07:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:08:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:08:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:08:20 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T03:08:30 (#:amount 79589000 #:time 246))
(heartbeat 2015-08-19T03:08:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:08:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:08:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:09:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:09:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:09:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:09:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:09:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:09:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:10:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:10:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:10:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:10:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:10:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:10:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:11:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:11:10 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T03:11:14 (#:amount 72129720 #:time 245))
(heartbeat 2015-08-19T03:11:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:11:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:11:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:11:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:12:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:12:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:12:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:12:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:12:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:12:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:13:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:13:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:13:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:13:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:13:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:13:50 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T03:13:57 (#:amount 79418120 #:time 248))
(heartbeat 2015-08-19T03:14:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:14:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:14:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:14:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:14:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:14:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:15:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:15:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:15:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:15:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:15:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:15:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:16:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:16:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:16:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:16:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:16:40 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T03:16:41 (#:amount 71055928 #:time 244))
(heartbeat 2015-08-19T03:16:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:17:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:17:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:17:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:17:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:17:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:17:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:18:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:18:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:18:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:18:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:18:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:18:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:19:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:19:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:19:21 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T03:19:24 (#:amount 80375360 #:time 211))
(heartbeat 2015-08-19T03:19:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:19:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:19:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:20:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:20:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:20:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:20:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:20:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:20:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:21:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:21:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:21:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:21:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:21:41 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T03:21:49 (#:amount 72032248 #:time 244))
(heartbeat 2015-08-19T03:21:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:22:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:22:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:22:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:22:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:22:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:22:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:23:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:23:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:23:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:23:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:23:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:23:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:24:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:24:11 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T03:24:17 (#:amount 79839440 #:time 246))
(heartbeat 2015-08-19T03:24:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:24:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:24:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:24:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:25:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:25:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:25:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:25:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:25:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:25:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:26:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:26:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:26:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:26:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:26:41 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T03:26:48 (#:amount 71809080 #:time 248))
(heartbeat 2015-08-19T03:26:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:27:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:27:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:27:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:27:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:27:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:27:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:28:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:28:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:28:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:28:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:28:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:28:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:29:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:29:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:29:21 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T03:29:30 (#:amount 79933616 #:time 248))
(heartbeat 2015-08-19T03:29:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:29:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:29:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:30:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:30:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:30:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:30:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:30:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:30:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:31:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:31:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:31:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:31:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:31:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:31:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:32:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:32:11 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T03:32:16 (#:amount 72127464 #:time 245))
(heartbeat 2015-08-19T03:32:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:32:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:32:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:32:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:33:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:33:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:33:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:33:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:33:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:33:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:34:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:34:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:34:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:34:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:34:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:34:51 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T03:34:53 (#:amount 79605688 #:time 245))
(heartbeat 2015-08-19T03:35:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:35:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:35:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:35:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:35:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:35:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:36:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:36:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:36:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:36:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:36:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:36:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:37:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:37:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:37:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:37:31 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T03:37:39 (#:amount 71958416 #:time 246))
(heartbeat 2015-08-19T03:37:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:37:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:38:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:38:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:38:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:38:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:38:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:38:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:39:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:39:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:39:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:39:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:39:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:39:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:40:01 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T03:40:10 (#:amount 79629824 #:time 246))
(heartbeat 2015-08-19T03:40:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:40:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:40:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:40:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:40:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:41:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:41:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:41:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:41:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:41:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:41:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:42:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:42:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:42:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:42:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:42:41 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T03:42:45 (#:amount 71900728 #:time 243))
(heartbeat 2015-08-19T03:42:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:43:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:43:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:43:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:43:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:43:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:43:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:44:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:44:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:44:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:44:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:44:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:44:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:45:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:45:11 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T03:45:12 (#:amount 79798544 #:time 212))
(heartbeat 2015-08-19T03:45:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:45:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:45:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:45:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:46:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:46:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:46:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:46:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:46:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:46:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:47:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:47:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:47:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:47:31 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T03:47:39 (#:amount 71775952 #:time 244))
(heartbeat 2015-08-19T03:47:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:47:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:48:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:48:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:48:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:48:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:48:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:48:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:49:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:49:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:49:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:49:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:49:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:49:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:50:02 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T03:50:06 (#:amount 80873944 #:time 244))
(heartbeat 2015-08-19T03:50:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:50:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:50:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:50:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:50:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:51:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:51:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:51:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:51:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:51:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:51:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:52:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:52:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:52:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:52:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:52:42 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T03:52:43 (#:amount 71943240 #:time 243))
(heartbeat 2015-08-19T03:52:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:53:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:53:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:53:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:53:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:53:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:53:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:54:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:54:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:54:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:54:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:54:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:54:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:55:02 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T03:55:10 (#:amount 79272888 #:time 211))
(heartbeat 2015-08-19T03:55:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:55:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:55:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:55:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:55:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:56:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:56:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:56:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:56:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:56:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:56:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:57:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:57:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:57:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:57:32 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T03:57:40 (#:amount 71857424 #:time 216))
(heartbeat 2015-08-19T03:57:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:57:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:58:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:58:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:58:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:58:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:58:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:58:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:59:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:59:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:59:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:59:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:59:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T03:59:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:00:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:00:12 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T04:00:17 (#:amount 79389000 #:time 247))
(heartbeat 2015-08-19T04:00:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:00:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:00:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:00:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:01:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:01:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:01:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:01:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:01:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:01:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:02:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:02:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:02:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:02:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:02:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:02:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:03:02 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T04:03:03 (#:amount 72427920 #:time 244))
(heartbeat 2015-08-19T04:03:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:03:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:03:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:03:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:03:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:04:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:04:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:04:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:04:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:04:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:04:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:05:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:05:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:05:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:05:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:05:42 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T04:05:48 (#:amount 79778104 #:time 246))
(heartbeat 2015-08-19T04:05:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:06:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:06:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:06:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:06:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:06:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:06:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:07:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:07:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:07:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:07:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:07:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:07:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:08:02 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T04:08:08 (#:amount 72693344 #:time 246))
(heartbeat 2015-08-19T04:08:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:08:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:08:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:08:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:08:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:09:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:09:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:09:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:09:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:09:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:09:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:10:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:10:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:10:22 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T04:10:32 (#:amount 79841600 #:time 245))
(heartbeat 2015-08-19T04:10:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:10:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:10:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:11:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:11:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:11:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:11:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:11:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:11:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:12:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:12:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:12:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:12:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:12:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:12:52 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T04:12:56 (#:amount 72273408 #:time 208))
(heartbeat 2015-08-19T04:13:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:13:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:13:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:13:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:13:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:13:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:14:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:14:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:14:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:14:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:14:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:14:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:15:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:15:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:15:22 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T04:15:30 (#:amount 79422992 #:time 247))
(heartbeat 2015-08-19T04:15:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:15:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:15:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:16:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:16:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:16:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:16:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:16:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:16:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:17:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:17:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:17:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:17:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:17:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:17:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:18:02 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T04:18:11 (#:amount 72621584 #:time 243))
(heartbeat 2015-08-19T04:18:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:18:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:18:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:18:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:18:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:19:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:19:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:19:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:19:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:19:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:19:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:20:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:20:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:20:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:20:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:20:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:20:53 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T04:20:57 (#:amount 79287112 #:time 247))
(heartbeat 2015-08-19T04:21:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:21:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:21:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:21:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:21:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:21:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:22:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:22:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:22:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:22:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:22:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:22:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:23:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:23:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:23:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:23:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:23:43 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T04:23:44 (#:amount 71718504 #:time 245))
(heartbeat 2015-08-19T04:23:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:24:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:24:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:24:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:24:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:24:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:24:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:25:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:25:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:25:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:25:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:25:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:25:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:26:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:26:13 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T04:26:22 (#:amount 79918408 #:time 246))
(heartbeat 2015-08-19T04:26:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:26:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:26:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:26:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:27:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:27:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:27:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:27:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:27:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:27:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:28:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:28:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:28:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:28:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:28:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:28:53 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T04:28:55 (#:amount 71319136 #:time 242))
(heartbeat 2015-08-19T04:29:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:29:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:29:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:29:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:29:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:29:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:30:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:30:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:30:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:30:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:30:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:30:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:31:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:31:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:31:23 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T04:31:25 (#:amount 80074808 #:time 247))
(heartbeat 2015-08-19T04:31:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:31:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:31:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:32:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:32:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:32:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:32:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:32:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:32:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:33:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:33:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:33:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:33:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:33:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:33:53 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T04:33:59 (#:amount 71019144 #:time 208))
(heartbeat 2015-08-19T04:34:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:34:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:34:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:34:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:34:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:34:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:35:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:35:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:35:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:35:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:35:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:35:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:36:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:36:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:36:23 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T04:36:26 (#:amount 81455392 #:time 210))
(heartbeat 2015-08-19T04:36:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:36:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:36:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:37:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:37:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:37:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:37:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:37:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:37:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:38:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:38:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:38:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:38:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:38:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:38:53 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T04:38:58 (#:amount 71558312 #:time 246))
(heartbeat 2015-08-19T04:39:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:39:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:39:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:39:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:39:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:39:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:40:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:40:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:40:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:40:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:40:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:40:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:41:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:41:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:41:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:41:33 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T04:41:34 (#:amount 80133904 #:time 211))
(heartbeat 2015-08-19T04:41:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:41:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:42:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:42:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:42:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:42:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:42:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:42:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:43:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:43:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:43:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:43:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:43:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:43:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:44:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:44:13 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T04:44:14 (#:amount 71204808 #:time 243))
(heartbeat 2015-08-19T04:44:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:44:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:44:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:44:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:45:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:45:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:45:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:45:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:45:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:45:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:46:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:46:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:46:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:46:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:46:43 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T04:46:50 (#:amount 79763112 #:time 246))
(heartbeat 2015-08-19T04:46:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:47:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:47:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:47:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:47:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:47:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:47:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:48:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:48:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:48:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:48:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:48:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:48:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:49:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:49:13 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T04:49:21 (#:amount 71675712 #:time 210))
(heartbeat 2015-08-19T04:49:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:49:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:49:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:49:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:50:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:50:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:50:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:50:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:50:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:50:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:51:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:51:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:51:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:51:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:51:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:51:54 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T04:51:54 (#:amount 79908168 #:time 246))
(heartbeat 2015-08-19T04:52:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:52:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:52:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:52:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:52:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:52:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:53:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:53:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:53:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:53:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:53:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:53:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:54:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:54:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:54:24 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T04:54:24 (#:amount 71493528 #:time 243))
(heartbeat 2015-08-19T04:54:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:54:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:54:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:55:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:55:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:55:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:55:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:55:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:55:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:56:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:56:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:56:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:56:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:56:44 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T04:56:53 (#:amount 80080584 #:time 247))
(heartbeat 2015-08-19T04:56:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:57:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:57:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:57:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:57:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:57:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:57:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:58:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:58:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:58:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:58:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:58:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:58:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:59:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:59:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:59:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:59:34 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T04:59:34 (#:amount 71460032 #:time 245))
(heartbeat 2015-08-19T04:59:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T04:59:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:00:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:00:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:00:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:00:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:00:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:00:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:01:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:01:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:01:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:01:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:01:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:01:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:02:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:02:14 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T05:02:17 (#:amount 80361992 #:time 248))
(heartbeat 2015-08-19T05:02:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:02:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:02:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:02:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:03:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:03:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:03:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:03:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:03:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:03:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:04:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:04:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:04:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:04:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:04:44 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T05:04:53 (#:amount 72131936 #:time 245))
(heartbeat 2015-08-19T05:04:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:05:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:05:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:05:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:05:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:05:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:05:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:06:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:06:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:06:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:06:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:06:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:06:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:07:04 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T05:07:12 (#:amount 79853336 #:time 248))
(heartbeat 2015-08-19T05:07:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:07:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:07:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:07:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:07:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:08:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:08:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:08:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:08:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:08:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:08:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:09:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:09:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:09:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:09:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:09:44 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T05:09:45 (#:amount 71559184 #:time 243))
(heartbeat 2015-08-19T05:09:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:10:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:10:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:10:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:10:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:10:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:10:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:11:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:11:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:11:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:11:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:11:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:11:54 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T05:12:04 (#:amount 80423888 #:time 210))
(heartbeat 2015-08-19T05:12:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:12:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:12:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:12:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:12:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:12:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:13:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:13:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:13:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:13:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:13:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:13:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:14:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:14:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:14:24 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T05:14:27 (#:amount 71708488 #:time 208))
(heartbeat 2015-08-19T05:14:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:14:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:14:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:15:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:15:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:15:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:15:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:15:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:15:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:16:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:16:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:16:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:16:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:16:44 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T05:16:53 (#:amount 79477080 #:time 247))
(heartbeat 2015-08-19T05:16:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:17:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:17:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:17:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:17:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:17:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:17:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:18:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:18:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:18:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:18:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:18:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:18:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:19:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:19:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:19:24 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T05:19:34 (#:amount 72085472 #:time 244))
(heartbeat 2015-08-19T05:19:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:19:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:19:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:20:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:20:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:20:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:20:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:20:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:20:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:21:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:21:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:21:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:21:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:21:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:21:54 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T05:22:03 (#:amount 80010480 #:time 244))
(heartbeat 2015-08-19T05:22:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:22:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:22:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:22:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:22:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:22:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:23:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:23:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:23:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:23:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:23:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:23:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:24:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:24:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:24:24 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T05:24:32 (#:amount 71681448 #:time 243))
(heartbeat 2015-08-19T05:24:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:24:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:24:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:25:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:25:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:25:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:25:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:25:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:25:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:26:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:26:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:26:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:26:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:26:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:26:55 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T05:26:57 (#:amount 79900952 #:time 247))
(heartbeat 2015-08-19T05:27:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:27:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:27:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:27:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:27:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:27:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:28:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:28:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:28:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:28:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:28:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:28:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:29:05 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T05:29:12 (#:amount 72384688 #:time 245))
(heartbeat 2015-08-19T05:29:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:29:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:29:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:29:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:29:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:30:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:30:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:30:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:30:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:30:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:30:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:31:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:31:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:31:25 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T05:31:34 (#:amount 80047976 #:time 212))
(heartbeat 2015-08-19T05:31:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:31:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:31:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:32:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:32:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:32:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:32:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:32:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:32:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:33:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:33:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:33:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:33:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:33:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:33:55 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T05:34:03 (#:amount 71991512 #:time 243))
(heartbeat 2015-08-19T05:34:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:34:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:34:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:34:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:34:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:34:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:35:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:35:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:35:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:35:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:35:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:35:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:36:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:36:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:36:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:36:35 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T05:36:41 (#:amount 79756640 #:time 248))
(heartbeat 2015-08-19T05:36:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:36:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:37:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:37:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:37:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:37:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:37:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:37:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:38:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:38:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:38:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:38:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:38:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:38:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:39:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:39:15 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T05:39:24 (#:amount 71962296 #:time 243))
(heartbeat 2015-08-19T05:39:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:39:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:39:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:39:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:40:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:40:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:40:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:40:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:40:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:40:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:41:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:41:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:41:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:41:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:41:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:41:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:42:05 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T05:42:06 (#:amount 79855192 #:time 244))
(heartbeat 2015-08-19T05:42:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:42:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:42:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:42:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:42:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:43:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:43:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:43:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:43:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:43:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:43:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:44:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:44:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:44:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:44:35 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T05:44:45 (#:amount 72586048 #:time 246))
(heartbeat 2015-08-19T05:44:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:44:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:45:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:45:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:45:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:45:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:45:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:45:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:46:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:46:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:46:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:46:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:46:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:46:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:47:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:47:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:47:25 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T05:47:30 (#:amount 79630296 #:time 247))
(heartbeat 2015-08-19T05:47:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:47:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:47:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:48:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:48:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:48:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:48:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:48:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:48:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:49:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:49:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:49:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:49:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:49:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:49:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:50:05 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T05:50:09 (#:amount 71529848 #:time 244))
(heartbeat 2015-08-19T05:50:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:50:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:50:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:50:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:50:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:51:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:51:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:51:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:51:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:51:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:51:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:52:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:52:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:52:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:52:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:52:45 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T05:52:50 (#:amount 80336184 #:time 211))
(heartbeat 2015-08-19T05:52:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:53:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:53:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:53:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:53:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:53:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:53:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:54:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:54:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:54:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:54:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:54:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:54:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:55:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:55:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:55:26 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T05:55:32 (#:amount 72222320 #:time 243))
(heartbeat 2015-08-19T05:55:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:55:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:55:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:56:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:56:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:56:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:56:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:56:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:56:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:57:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:57:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:57:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:57:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:57:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:57:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:58:06 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T05:58:13 (#:amount 79232048 #:time 247))
(heartbeat 2015-08-19T05:58:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:58:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:58:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:58:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:58:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:59:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:59:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:59:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:59:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:59:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T05:59:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:00:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:00:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:00:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:00:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:00:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:00:56 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T06:00:59 (#:amount 72124432 #:time 245))
(heartbeat 2015-08-19T06:01:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:01:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:01:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:01:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:01:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:01:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:02:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:02:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:02:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:02:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:02:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:02:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:03:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:03:16 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T06:03:26 (#:amount 79105912 #:time 210))
(heartbeat 2015-08-19T06:03:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:03:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:03:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:03:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:04:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:04:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:04:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:04:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:04:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:04:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:05:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:05:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:05:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:05:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:05:46 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T06:05:52 (#:amount 71541400 #:time 243))
(heartbeat 2015-08-19T06:05:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:06:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:06:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:06:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:06:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:06:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:06:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:07:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:07:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:07:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:07:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:07:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:07:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:08:06 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T06:08:12 (#:amount 80363288 #:time 210))
(heartbeat 2015-08-19T06:08:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:08:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:08:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:08:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:08:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:09:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:09:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:09:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:09:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:09:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:09:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:10:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:10:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:10:26 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T06:10:32 (#:amount 71734144 #:time 208))
(heartbeat 2015-08-19T06:10:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:10:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:10:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:11:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:11:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:11:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:11:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:11:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:11:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:12:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:12:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:12:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:12:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:12:46 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T06:12:51 (#:amount 79776888 #:time 209))
(heartbeat 2015-08-19T06:12:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:13:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:13:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:13:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:13:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:13:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:13:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:14:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:14:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:14:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:14:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:14:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:14:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:15:06 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T06:15:13 (#:amount 72064408 #:time 242))
(heartbeat 2015-08-19T06:15:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:15:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:15:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:15:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:15:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:16:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:16:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:16:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:16:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:16:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:16:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:17:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:17:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:17:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:17:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:17:46 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T06:17:53 (#:amount 80043560 #:time 249))
(heartbeat 2015-08-19T06:17:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:18:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:18:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:18:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:18:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:18:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:18:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:19:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:19:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:19:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:19:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:19:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:19:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:20:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:20:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:20:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:20:36 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T06:20:38 (#:amount 72073712 #:time 245))
(heartbeat 2015-08-19T06:20:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:20:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:21:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:21:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:21:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:21:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:21:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:21:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:22:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:22:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:22:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:22:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:22:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:22:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:23:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:23:17 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T06:23:25 (#:amount 79546344 #:time 247))
(heartbeat 2015-08-19T06:23:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:23:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:23:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:23:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:24:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:24:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:24:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:24:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:24:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:24:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:25:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:25:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:25:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:25:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:25:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:25:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:26:07 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T06:26:11 (#:amount 72038040 #:time 244))
(heartbeat 2015-08-19T06:26:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:26:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:26:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:26:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:26:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:27:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:27:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:27:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:27:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:27:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:27:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:28:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:28:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:28:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:28:37 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T06:28:41 (#:amount 79521456 #:time 244))
(heartbeat 2015-08-19T06:28:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:28:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:29:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:29:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:29:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:29:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:29:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:29:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:30:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:30:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:30:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:30:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:30:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:30:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:31:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:31:17 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T06:31:24 (#:amount 71941912 #:time 244))
(heartbeat 2015-08-19T06:31:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:31:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:31:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:31:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:32:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:32:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:32:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:32:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:32:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:32:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:33:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:33:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:33:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:33:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:33:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:33:57 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T06:34:04 (#:amount 79180960 #:time 210))
(heartbeat 2015-08-19T06:34:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:34:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:34:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:34:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:34:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:34:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:35:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:35:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:35:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:35:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:35:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:35:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:36:07 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T06:36:07 (#:amount 72428104 #:time 245))
(heartbeat 2015-08-19T06:36:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:36:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:36:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:36:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:36:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:37:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:37:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:37:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:37:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:37:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:37:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:38:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:38:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:38:27 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T06:38:36 (#:amount 79307104 #:time 211))
(heartbeat 2015-08-19T06:38:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:38:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:38:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:39:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:39:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:39:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:39:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:39:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:39:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:40:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:40:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:40:27 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T06:40:28 (#:amount 72182728 #:time 209))
(heartbeat 2015-08-19T06:40:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:40:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:40:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:41:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:41:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:41:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:41:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:41:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:41:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:42:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:42:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:42:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:42:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:42:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:42:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:43:07 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T06:43:14 (#:amount 79444248 #:time 246))
(heartbeat 2015-08-19T06:43:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:43:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:43:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:43:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:43:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:44:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:44:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:44:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:44:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:44:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:44:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:45:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:45:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:45:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:45:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:45:47 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T06:45:57 (#:amount 71843624 #:time 245))
(heartbeat 2015-08-19T06:45:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:46:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:46:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:46:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:46:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:46:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:46:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:47:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:47:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:47:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:47:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:47:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:47:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:48:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:48:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:48:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:48:37 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T06:48:44 (#:amount 80109008 #:time 247))
(heartbeat 2015-08-19T06:48:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:48:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:49:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:49:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:49:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:49:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:49:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:49:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:50:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:50:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:50:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:50:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:50:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:50:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:51:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:51:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:51:27 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T06:51:31 (#:amount 72091384 #:time 246))
(heartbeat 2015-08-19T06:51:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:51:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:51:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:52:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:52:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:52:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:52:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:52:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:52:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:53:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:53:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:53:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:53:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:53:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:53:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:54:08 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T06:54:13 (#:amount 80596488 #:time 247))
(heartbeat 2015-08-19T06:54:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:54:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:54:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:54:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:54:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:55:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:55:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:55:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:55:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:55:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:55:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:56:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:56:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:56:28 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T06:56:38 (#:amount 72556328 #:time 241))
(heartbeat 2015-08-19T06:56:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:56:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:56:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:57:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:57:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:57:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:57:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:57:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:57:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:58:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:58:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:58:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:58:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:58:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:58:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:59:08 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T06:59:10 (#:amount 78967896 #:time 245))
(heartbeat 2015-08-19T06:59:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:59:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:59:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:59:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T06:59:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:00:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:00:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:00:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:00:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:00:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:00:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:01:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:01:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:01:28 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T07:01:36 (#:amount 72277360 #:time 243))
(heartbeat 2015-08-19T07:01:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:01:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:01:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:02:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:02:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:02:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:02:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:02:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:02:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:03:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:03:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:03:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:03:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:03:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:03:58 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T07:03:59 (#:amount 79242264 #:time 209))
(heartbeat 2015-08-19T07:04:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:04:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:04:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:04:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:04:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:04:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:05:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:05:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:05:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:05:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:05:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:05:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:06:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:06:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:06:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:06:38 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T07:06:39 (#:amount 72069504 #:time 243))
(heartbeat 2015-08-19T07:06:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:06:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:07:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:07:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:07:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:07:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:07:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:07:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:08:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:08:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:08:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:08:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:08:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:08:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:09:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:09:18 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T07:09:24 (#:amount 79734992 #:time 248))
(heartbeat 2015-08-19T07:09:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:09:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:09:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:09:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:10:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:10:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:10:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:10:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:10:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:10:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:11:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:11:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:11:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:11:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:11:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:11:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:12:08 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T07:12:08 (#:amount 71507144 #:time 208))
(heartbeat 2015-08-19T07:12:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:12:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:12:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:12:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:12:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:13:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:13:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:13:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:13:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:13:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:13:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:14:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:14:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:14:28 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T07:14:32 (#:amount 80273632 #:time 245))
(heartbeat 2015-08-19T07:14:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:14:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:14:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:15:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:15:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:15:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:15:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:15:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:15:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:16:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:16:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:16:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:16:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:16:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:16:58 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T07:17:04 (#:amount 71404064 #:time 244))
(heartbeat 2015-08-19T07:17:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:17:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:17:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:17:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:17:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:17:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:18:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:18:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:18:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:18:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:18:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:18:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:19:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:19:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:19:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:19:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:19:48 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T07:19:49 (#:amount 79944304 #:time 247))
(heartbeat 2015-08-19T07:19:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:20:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:20:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:20:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:20:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:20:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:20:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:21:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:21:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:21:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:21:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:21:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:21:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:22:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:22:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:22:29 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T07:22:35 (#:amount 71838288 #:time 245))
(heartbeat 2015-08-19T07:22:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:22:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:22:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:23:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:23:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:23:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:23:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:23:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:23:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:24:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:24:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:24:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:24:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:24:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:24:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:25:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:25:19 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T07:25:20 (#:amount 80343328 #:time 247))
(heartbeat 2015-08-19T07:25:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:25:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:25:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:25:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:26:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:26:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:26:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:26:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:26:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:26:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:27:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:27:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:27:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:27:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:27:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:27:59 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T07:28:00 (#:amount 71756088 #:time 242))
(heartbeat 2015-08-19T07:28:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:28:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:28:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:28:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:28:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:28:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:29:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:29:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:29:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:29:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:29:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:29:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:30:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:30:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:30:29 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T07:30:31 (#:amount 79717136 #:time 246))
(heartbeat 2015-08-19T07:30:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:30:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:30:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:31:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:31:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:31:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:31:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:31:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:31:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:32:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:32:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:32:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:32:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:32:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:32:59 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T07:33:08 (#:amount 71771728 #:time 243))
(heartbeat 2015-08-19T07:33:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:33:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:33:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:33:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:33:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:33:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:34:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:34:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:34:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:34:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:34:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:34:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:35:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:35:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:35:29 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T07:35:39 (#:amount 79707448 #:time 248))
(heartbeat 2015-08-19T07:35:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:35:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:35:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:36:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:36:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:36:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:36:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:36:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:36:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:37:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:37:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:37:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:37:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:37:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:37:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:38:09 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T07:38:15 (#:amount 71037952 #:time 243))
(heartbeat 2015-08-19T07:38:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:38:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:38:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:38:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:38:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:39:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:39:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:39:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:39:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:39:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:39:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:40:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:40:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:40:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:40:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:40:49 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T07:40:56 (#:amount 81428912 #:time 246))
(heartbeat 2015-08-19T07:40:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:41:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:41:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:41:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:41:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:41:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:41:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:42:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:42:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:42:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:42:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:42:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:42:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:43:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:43:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:43:29 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T07:43:37 (#:amount 71518944 #:time 243))
(heartbeat 2015-08-19T07:43:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:43:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:43:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:44:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:44:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:44:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:44:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:44:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:44:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:45:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:45:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:45:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:45:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:45:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:45:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:46:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:46:19 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T07:46:20 (#:amount 80126720 #:time 246))
(heartbeat 2015-08-19T07:46:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:46:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:46:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:46:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:47:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:47:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:47:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:47:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:47:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:47:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:48:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:48:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:48:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:48:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:48:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:48:59 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T07:49:03 (#:amount 71939752 #:time 244))
(heartbeat 2015-08-19T07:49:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:49:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:49:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:49:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:49:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:49:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:50:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:50:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:50:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:50:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:50:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:50:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:51:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:51:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:51:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:51:39 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T07:51:46 (#:amount 80064640 #:time 245))
(heartbeat 2015-08-19T07:51:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:51:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:52:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:52:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:52:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:52:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:52:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:52:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:53:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:53:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:53:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:53:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:53:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:53:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:54:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:54:19 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T07:54:28 (#:amount 72288552 #:time 244))
(heartbeat 2015-08-19T07:54:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:54:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:54:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:54:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:55:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:55:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:55:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:55:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:55:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:56:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:56:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:56:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:56:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:56:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:56:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:57:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:57:10 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T07:57:11 (#:amount 78837464 #:time 246))
(heartbeat 2015-08-19T07:57:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:57:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:57:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:57:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:58:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:58:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:58:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:58:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:58:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:58:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:59:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:59:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:59:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:59:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:59:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T07:59:50 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T07:59:54 (#:amount 71831936 #:time 243))
(heartbeat 2015-08-19T08:00:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:00:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:00:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:00:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:00:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:00:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:01:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:01:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:01:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:01:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:01:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:01:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:02:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:02:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:02:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:02:30 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T08:02:37 (#:amount 79180184 #:time 247))
(heartbeat 2015-08-19T08:02:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:02:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:03:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:03:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:03:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:03:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:03:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:03:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:04:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:04:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:04:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:04:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:04:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:04:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:05:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:05:10 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T08:05:19 (#:amount 72296720 #:time 244))
(heartbeat 2015-08-19T08:05:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:05:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:05:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:05:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:06:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:06:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:06:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:06:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:06:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:06:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:07:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:07:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:07:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:07:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:07:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:07:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:08:00 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T08:08:03 (#:amount 79546976 #:time 247))
(heartbeat 2015-08-19T08:08:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:08:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:08:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:08:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:08:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:09:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:09:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:09:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:09:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:09:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:09:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:10:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:10:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:10:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:10:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:10:40 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T08:10:46 (#:amount 71861248 #:time 244))
(heartbeat 2015-08-19T08:10:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:11:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:11:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:11:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:11:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:11:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:11:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:12:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:12:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:12:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:12:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:12:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:12:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:13:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:13:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:13:20 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T08:13:28 (#:amount 79452832 #:time 247))
(heartbeat 2015-08-19T08:13:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:13:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:13:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:14:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:14:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:14:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:14:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:14:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:14:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:15:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:15:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:15:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:15:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:15:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:15:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:16:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:16:10 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T08:16:13 (#:amount 71379608 #:time 244))
(heartbeat 2015-08-19T08:16:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:16:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:16:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:16:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:17:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:17:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:17:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:17:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:17:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:17:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:18:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:18:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:18:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:18:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:18:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:18:50 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T08:18:56 (#:amount 79833800 #:time 246))
(heartbeat 2015-08-19T08:19:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:19:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:19:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:19:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:19:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:19:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:20:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:20:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:20:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:20:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:20:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:20:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:21:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:21:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:21:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:21:30 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T08:21:40 (#:amount 71896376 #:time 245))
(heartbeat 2015-08-19T08:21:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:21:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:22:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:22:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:22:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:22:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:22:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:22:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:23:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:23:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:23:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:23:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:23:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:23:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:24:00 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T08:24:06 (#:amount 80251384 #:time 246))
(heartbeat 2015-08-19T08:24:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:24:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:24:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:24:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:24:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:25:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:25:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:25:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:25:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:25:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:25:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:26:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:26:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:26:20 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T08:26:29 (#:amount 71586520 #:time 243))
(heartbeat 2015-08-19T08:26:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:26:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:26:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:27:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:27:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:27:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:27:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:27:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:27:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:28:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:28:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:28:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:28:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:28:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:28:50 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T08:28:54 (#:amount 80875696 #:time 245))
(heartbeat 2015-08-19T08:29:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:29:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:29:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:29:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:29:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:29:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:30:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:30:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:30:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:30:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:30:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:30:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:31:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:31:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:31:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:31:30 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T08:31:38 (#:amount 71853512 #:time 247))
(heartbeat 2015-08-19T08:31:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:31:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:32:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:32:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:32:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:32:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:32:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:32:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:33:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:33:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:33:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:33:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:33:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:33:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:34:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:34:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:34:20 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T08:34:22 (#:amount 79578488 #:time 250))
(heartbeat 2015-08-19T08:34:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:34:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:34:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:35:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:35:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:35:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:35:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:35:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:35:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:36:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:36:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:36:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:36:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:36:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:36:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:37:01 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T08:37:06 (#:amount 72046760 #:time 241))
(heartbeat 2015-08-19T08:37:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:37:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:37:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:37:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:37:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:38:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:38:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:38:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:38:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:38:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:38:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:39:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:39:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:39:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:39:31 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T08:39:37 (#:amount 79759128 #:time 247))
(heartbeat 2015-08-19T08:39:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:39:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:40:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:40:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:40:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:40:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:40:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:40:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:41:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:41:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:41:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:41:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:41:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:41:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:42:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:42:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:42:21 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T08:42:22 (#:amount 71749752 #:time 243))
(heartbeat 2015-08-19T08:42:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:42:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:42:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:43:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:43:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:43:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:43:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:43:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:43:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:44:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:44:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:44:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:44:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:44:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:44:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:45:01 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T08:45:06 (#:amount 79746792 #:time 247))
(heartbeat 2015-08-19T08:45:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:45:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:45:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:45:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:45:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:46:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:46:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:46:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:46:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:46:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:46:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:47:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:47:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:47:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:47:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:47:41 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T08:47:51 (#:amount 72512696 #:time 244))
(heartbeat 2015-08-19T08:47:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:48:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:48:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:48:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:48:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:48:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:48:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:49:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:49:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:49:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:49:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:49:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:49:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:50:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:50:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:50:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:50:31 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T08:50:36 (#:amount 79060936 #:time 249))
(heartbeat 2015-08-19T08:50:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:50:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:51:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:51:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:51:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:51:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:51:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:51:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:52:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:52:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:52:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:52:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:52:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:52:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:53:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:53:11 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T08:53:15 (#:amount 71541816 #:time 246))
(heartbeat 2015-08-19T08:53:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:53:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:53:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:53:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:54:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:54:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:54:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:54:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:54:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:54:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:55:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:55:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:55:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:55:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:55:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:55:51 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T08:55:57 (#:amount 79607344 #:time 248))
(heartbeat 2015-08-19T08:56:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:56:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:56:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:56:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:56:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:56:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:57:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:57:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:57:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:57:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:57:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:57:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:58:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:58:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:58:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:58:31 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T08:58:35 (#:amount 71702072 #:time 209))
(heartbeat 2015-08-19T08:58:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:58:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:59:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:59:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:59:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:59:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:59:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T08:59:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:00:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:00:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:00:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:00:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:00:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:00:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:01:01 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T09:01:03 (#:amount 79715840 #:time 211))
(heartbeat 2015-08-19T09:01:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:01:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:01:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:01:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:01:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:02:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:02:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:02:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:02:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:02:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:02:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:03:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:03:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:03:21 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T09:03:28 (#:amount 70989152 #:time 244))
(heartbeat 2015-08-19T09:03:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:03:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:03:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:04:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:04:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:04:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:04:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:04:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:04:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:05:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:05:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:05:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:05:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:05:41 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T09:05:51 (#:amount 80681472 #:time 247))
(heartbeat 2015-08-19T09:05:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:06:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:06:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:06:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:06:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:06:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:06:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:07:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:07:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:07:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:07:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:07:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:07:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:08:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:08:11 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T09:08:18 (#:amount 72005544 #:time 209))
(heartbeat 2015-08-19T09:08:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:08:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:08:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:08:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:09:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:09:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:09:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:09:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:09:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:09:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:10:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:10:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:10:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:10:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:10:42 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T09:10:50 (#:amount 79085168 #:time 247))
(heartbeat 2015-08-19T09:10:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:11:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:11:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:11:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:11:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:11:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:11:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:12:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:12:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:12:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:12:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:12:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:12:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:13:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:13:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:13:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:13:32 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T09:13:33 (#:amount 72337872 #:time 245))
(heartbeat 2015-08-19T09:13:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:13:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:14:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:14:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:14:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:14:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:14:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:14:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:15:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:15:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:15:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:15:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:15:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:15:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:16:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:16:12 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T09:16:18 (#:amount 80728336 #:time 246))
(heartbeat 2015-08-19T09:16:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:16:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:16:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:16:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:17:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:17:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:17:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:17:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:17:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:17:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:18:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:18:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:18:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:18:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:18:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:18:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:19:02 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T09:19:03 (#:amount 72070064 #:time 243))
(heartbeat 2015-08-19T09:19:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:19:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:19:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:19:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:19:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:20:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:20:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:20:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:20:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:20:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:20:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:21:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:21:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:21:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:21:32 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T09:21:37 (#:amount 79213208 #:time 244))
(heartbeat 2015-08-19T09:21:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:21:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:22:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:22:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:22:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:22:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:22:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:22:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:23:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:23:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:23:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:23:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:23:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:23:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:24:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:24:12 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T09:24:14 (#:amount 71418920 #:time 244))
(heartbeat 2015-08-19T09:24:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:24:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:24:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:24:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:25:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:25:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:25:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:25:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:25:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:25:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:26:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:26:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:26:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:26:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:26:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:26:52 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T09:26:55 (#:amount 80143952 #:time 245))
(heartbeat 2015-08-19T09:27:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:27:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:27:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:27:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:27:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:27:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:28:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:28:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:28:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:28:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:28:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:28:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:29:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:29:12 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T09:29:20 (#:amount 72138120 #:time 243))
(heartbeat 2015-08-19T09:29:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:29:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:29:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:29:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:30:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:30:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:30:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:30:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:30:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:30:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:31:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:31:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:31:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:31:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:31:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:31:52 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T09:31:55 (#:amount 79790336 #:time 248))
(heartbeat 2015-08-19T09:32:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:32:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:32:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:32:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:32:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:32:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:33:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:33:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:33:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:33:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:33:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:33:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:34:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:34:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:34:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:34:32 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T09:34:40 (#:amount 71124328 #:time 244))
(heartbeat 2015-08-19T09:34:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:34:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:35:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:35:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:35:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:35:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:35:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:35:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:36:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:36:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:36:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:36:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:36:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:36:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:37:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:37:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:37:22 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T09:37:25 (#:amount 80077536 #:time 247))
(heartbeat 2015-08-19T09:37:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:37:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:37:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:38:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:38:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:38:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:38:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:38:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:38:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:39:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:39:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:39:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:39:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:39:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:39:52 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T09:39:58 (#:amount 71933632 #:time 245))
(heartbeat 2015-08-19T09:40:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:40:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:40:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:40:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:40:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:40:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:41:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:41:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:41:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:41:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:41:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:41:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:42:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:42:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:42:22 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T09:42:30 (#:amount 79897616 #:time 249))
(heartbeat 2015-08-19T09:42:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:42:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:42:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:43:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:43:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:43:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:43:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:43:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:43:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:44:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:44:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:44:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:44:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:44:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:44:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:45:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:45:13 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T09:45:15 (#:amount 72329872 #:time 245))
(heartbeat 2015-08-19T09:45:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:45:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:45:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:45:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:46:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:46:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:46:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:46:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:46:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:46:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:47:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:47:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:47:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:47:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:47:43 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T09:47:46 (#:amount 78866288 #:time 230))
(heartbeat 2015-08-19T09:47:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:48:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:48:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:48:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:48:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:48:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:48:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:49:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:49:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:49:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:49:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:49:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:49:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:50:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:50:13 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T09:50:15 (#:amount 71904672 #:time 209))
(heartbeat 2015-08-19T09:50:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:50:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:50:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:50:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:51:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:51:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:51:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:51:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:51:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:51:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:52:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:52:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:52:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:52:33 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T09:52:40 (#:amount 80347792 #:time 211))
(heartbeat 2015-08-19T09:52:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:52:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:53:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:53:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:53:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:53:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:53:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:53:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:54:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:54:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:54:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:54:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:54:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:54:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:55:03 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T09:55:08 (#:amount 72001624 #:time 242))
(heartbeat 2015-08-19T09:55:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:55:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:55:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:55:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:55:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:56:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:56:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:56:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:56:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:56:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:56:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:57:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:57:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:57:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:57:33 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T09:57:35 (#:amount 79969048 #:time 248))
(heartbeat 2015-08-19T09:57:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:57:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:58:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:58:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:58:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:58:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:58:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:58:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:59:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:59:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:59:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:59:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:59:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T09:59:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:00:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:00:13 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T10:00:20 (#:amount 72436944 #:time 245))
(heartbeat 2015-08-19T10:00:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:00:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:00:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:00:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:01:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:01:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:01:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:01:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:01:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:01:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:02:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:02:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:02:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:02:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:02:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:02:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:03:03 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T10:03:05 (#:amount 80203360 #:time 247))
(heartbeat 2015-08-19T10:03:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:03:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:03:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:03:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:03:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:04:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:04:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:04:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:04:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:04:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:04:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:05:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:05:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:05:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:05:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:05:43 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T10:05:49 (#:amount 71678648 #:time 244))
(heartbeat 2015-08-19T10:05:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:06:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:06:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:06:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:06:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:06:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:06:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:07:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:07:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:07:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:07:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:07:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:07:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:08:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:08:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:08:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:08:33 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T10:08:34 (#:amount 79660120 #:time 246))
(heartbeat 2015-08-19T10:08:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:08:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:09:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:09:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:09:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:09:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:09:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:09:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:10:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:10:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:10:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:10:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:10:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:10:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:11:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:11:13 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T10:11:16 (#:amount 72301600 #:time 246))
(heartbeat 2015-08-19T10:11:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:11:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:11:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:11:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:12:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:12:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:12:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:12:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:12:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:12:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:13:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:13:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:13:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:13:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:13:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:13:54 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T10:14:01 (#:amount 79754088 #:time 245))
(heartbeat 2015-08-19T10:14:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:14:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:14:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:14:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:14:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:14:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:15:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:15:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:15:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:15:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:15:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:15:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:16:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:16:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:16:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:16:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:16:44 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T10:16:46 (#:amount 71307664 #:time 245))
(heartbeat 2015-08-19T10:16:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:17:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:17:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:17:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:17:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:17:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:17:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:18:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:18:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:18:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:18:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:18:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:18:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:19:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:19:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:19:24 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T10:19:28 (#:amount 80558464 #:time 210))
(heartbeat 2015-08-19T10:19:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:19:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:19:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:20:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:20:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:20:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:20:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:20:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:20:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:21:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:21:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:21:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:21:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:21:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:21:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:22:04 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T10:22:09 (#:amount 72384520 #:time 245))
(heartbeat 2015-08-19T10:22:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:22:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:22:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:22:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:22:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:23:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:23:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:23:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:23:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:23:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:23:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:24:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:24:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:24:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:24:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:24:44 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T10:24:49 (#:amount 79113544 #:time 233))
(heartbeat 2015-08-19T10:24:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:25:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:25:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:25:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:25:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:25:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:25:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:26:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:26:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:26:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:26:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:26:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:26:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:27:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:27:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:27:24 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T10:27:30 (#:amount 72394672 #:time 245))
(heartbeat 2015-08-19T10:27:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:27:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:27:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:28:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:28:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:28:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:28:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:28:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:28:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:29:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:29:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:29:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:29:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:29:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:29:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:30:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:30:14 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T10:30:16 (#:amount 79085408 #:time 247))
(heartbeat 2015-08-19T10:30:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:30:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:30:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:30:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:31:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:31:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:31:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:31:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:31:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:31:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:32:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:32:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:32:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:32:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:32:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:32:54 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T10:33:02 (#:amount 72644736 #:time 245))
(heartbeat 2015-08-19T10:33:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:33:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:33:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:33:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:33:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:33:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:34:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:34:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:34:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:34:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:34:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:34:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:35:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:35:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:35:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:35:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:35:44 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T10:35:48 (#:amount 78906384 #:time 248))
(heartbeat 2015-08-19T10:35:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:36:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:36:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:36:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:36:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:36:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:36:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:37:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:37:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:37:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:37:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:37:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:37:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:38:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:38:14 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T10:38:21 (#:amount 72080648 #:time 209))
(heartbeat 2015-08-19T10:38:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:38:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:38:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:38:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:39:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:39:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:39:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:39:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:39:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:39:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:40:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:40:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:40:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:40:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:40:44 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T10:40:51 (#:amount 79352576 #:time 245))
(heartbeat 2015-08-19T10:40:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:41:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:41:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:41:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:41:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:41:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:41:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:42:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:42:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:42:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:42:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:42:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:42:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:43:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:43:14 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T10:43:22 (#:amount 71320080 #:time 219))
(heartbeat 2015-08-19T10:43:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:43:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:43:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:43:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:44:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:44:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:44:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:44:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:44:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:44:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:45:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:45:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:45:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:45:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:45:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:45:55 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T10:45:56 (#:amount 79779192 #:time 211))
(heartbeat 2015-08-19T10:46:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:46:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:46:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:46:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:46:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:46:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:47:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:47:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:47:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:47:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:47:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:47:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:48:05 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T10:48:07 (#:amount 72251440 #:time 209))
(heartbeat 2015-08-19T10:48:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:48:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:48:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:48:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:48:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:49:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:49:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:49:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:49:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:49:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:49:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:50:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:50:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:50:25 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T10:50:25 (#:amount 80543064 #:time 245))
(heartbeat 2015-08-19T10:50:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:50:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:50:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:51:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:51:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:51:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:51:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:51:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:51:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:52:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:52:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:52:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:52:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:52:45 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T10:52:50 (#:amount 71688328 #:time 240))
(heartbeat 2015-08-19T10:52:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:53:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:53:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:53:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:53:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:53:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:53:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:54:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:54:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:54:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:54:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:54:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:54:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:55:05 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T10:55:14 (#:amount 79171152 #:time 245))
(heartbeat 2015-08-19T10:55:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:55:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:55:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:55:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:55:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:56:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:56:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:56:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:56:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:56:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:56:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:57:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:57:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:57:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:57:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:57:45 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T10:57:51 (#:amount 71309280 #:time 244))
(heartbeat 2015-08-19T10:57:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:58:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:58:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:58:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:58:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:58:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:58:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:59:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:59:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:59:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:59:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:59:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T10:59:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:00:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:00:15 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T11:00:17 (#:amount 79544248 #:time 211))
(heartbeat 2015-08-19T11:00:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:00:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:00:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:00:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:01:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:01:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:01:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:01:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:01:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:01:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:02:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:02:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:02:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:02:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:02:45 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T11:02:46 (#:amount 71868568 #:time 209))
(heartbeat 2015-08-19T11:02:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:03:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:03:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:03:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:03:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:03:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:03:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:04:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:04:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:04:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:04:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:04:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:04:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:05:05 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T11:05:15 (#:amount 79539880 #:time 245))
(heartbeat 2015-08-19T11:05:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:05:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:05:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:05:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:05:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:06:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:06:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:06:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:06:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:06:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:06:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:07:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:07:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:07:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:07:35 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T11:07:43 (#:amount 71789912 #:time 242))
(heartbeat 2015-08-19T11:07:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:07:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:08:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:08:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:08:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:08:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:08:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:08:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:09:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:09:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:09:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:09:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:09:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:09:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:10:05 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T11:10:13 (#:amount 79859184 #:time 211))
(heartbeat 2015-08-19T11:10:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:10:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:10:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:10:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:10:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:11:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:11:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:11:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:11:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:11:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:11:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:12:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:12:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:12:25 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T11:12:33 (#:amount 71534632 #:time 242))
(heartbeat 2015-08-19T11:12:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:12:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:12:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:13:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:13:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:13:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:13:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:13:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:13:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:14:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:14:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:14:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:14:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:14:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:14:55 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T11:15:02 (#:amount 79520800 #:time 211))
(heartbeat 2015-08-19T11:15:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:15:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:15:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:15:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:15:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:15:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:16:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:16:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:16:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:16:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:16:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:16:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:17:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:17:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:17:25 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T11:17:33 (#:amount 71753096 #:time 245))
(heartbeat 2015-08-19T11:17:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:17:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:17:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:18:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:18:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:18:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:18:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:18:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:18:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:19:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:19:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:19:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:19:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:19:46 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T11:19:54 (#:amount 79275352 #:time 246))
(heartbeat 2015-08-19T11:19:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:20:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:20:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:20:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:20:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:20:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:20:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:21:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:21:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:21:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:21:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:21:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:21:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:22:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:22:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:22:26 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T11:22:31 (#:amount 71594800 #:time 248))
(heartbeat 2015-08-19T11:22:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:22:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:22:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:23:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:23:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:23:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:23:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:23:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:23:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:24:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:24:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:24:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:24:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:24:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:24:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:25:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:25:16 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T11:25:18 (#:amount 79612304 #:time 247))
(heartbeat 2015-08-19T11:25:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:25:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:25:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:25:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:26:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:26:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:26:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:26:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:26:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:26:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:27:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:27:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:27:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:27:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:27:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:27:56 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T11:28:04 (#:amount 71624912 #:time 245))
(heartbeat 2015-08-19T11:28:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:28:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:28:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:28:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:28:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:28:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:29:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:29:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:29:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:29:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:29:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:29:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:30:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:30:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:30:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:30:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:30:46 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T11:30:49 (#:amount 79873672 #:time 248))
(heartbeat 2015-08-19T11:30:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:31:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:31:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:31:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:31:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:31:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:31:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:32:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:32:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:32:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:32:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:32:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:32:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:33:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:33:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:33:26 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T11:33:33 (#:amount 71663160 #:time 245))
(heartbeat 2015-08-19T11:33:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:33:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:33:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:34:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:34:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:34:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:34:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:34:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:34:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:35:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:35:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:35:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:35:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:35:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:35:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:36:06 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T11:36:13 (#:amount 80774544 #:time 248))
(heartbeat 2015-08-19T11:36:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:36:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:36:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:36:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:36:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:37:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:37:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:37:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:37:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:37:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:37:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:38:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:38:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:38:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:38:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:38:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:38:56 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T11:38:57 (#:amount 71792976 #:time 244))
(heartbeat 2015-08-19T11:39:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:39:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:39:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:39:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:39:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:39:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:40:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:40:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:40:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:40:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:40:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:40:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:41:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:41:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:41:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:41:36 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T11:41:41 (#:amount 79835672 #:time 247))
(heartbeat 2015-08-19T11:41:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:41:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:42:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:42:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:42:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:42:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:42:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:42:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:43:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:43:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:43:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:43:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:43:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:43:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:44:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:44:16 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T11:44:18 (#:amount 72381552 #:time 242))
(heartbeat 2015-08-19T11:44:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:44:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:44:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:44:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:45:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:45:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:45:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:45:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:45:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:45:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:46:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:46:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:46:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:46:36 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T11:46:45 (#:amount 79201280 #:time 210))
(heartbeat 2015-08-19T11:46:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:46:56 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:47:06 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:47:16 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:47:26 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:47:36 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:47:46 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:47:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:48:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:48:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:48:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:48:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:48:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:48:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:49:07 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T11:49:13 (#:amount 71997168 #:time 242))
(heartbeat 2015-08-19T11:49:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:49:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:49:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:49:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:49:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:50:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:50:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:50:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:50:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:50:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:50:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:51:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:51:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:51:27 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T11:51:37 (#:amount 79788664 #:time 245))
(heartbeat 2015-08-19T11:51:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:51:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:51:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:52:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:52:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:52:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:52:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:52:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:52:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:53:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:53:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:53:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:53:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:53:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:53:57 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T11:54:03 (#:amount 71674000 #:time 244))
(heartbeat 2015-08-19T11:54:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:54:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:54:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:54:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:54:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:54:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:55:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:55:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:55:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:55:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:55:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:55:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:56:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:56:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:56:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:56:37 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T11:56:37 (#:amount 79699360 #:time 246))
(heartbeat 2015-08-19T11:56:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:56:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:57:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:57:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:57:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:57:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:57:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:57:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:58:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:58:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:58:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:58:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:58:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:58:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:59:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:59:17 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T11:59:18 (#:amount 71333736 #:time 245))
(heartbeat 2015-08-19T11:59:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:59:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:59:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T11:59:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:00:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:00:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:00:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:00:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:00:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:00:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:01:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:01:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:01:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:01:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:01:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:01:57 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T12:02:04 (#:amount 80451712 #:time 247))
(heartbeat 2015-08-19T12:02:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:02:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:02:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:02:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:02:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:02:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:03:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:03:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:03:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:03:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:03:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:03:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:04:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:04:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:04:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:04:37 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T12:04:42 (#:amount 71711328 #:time 208))
(heartbeat 2015-08-19T12:04:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:04:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:05:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:05:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:05:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:05:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:05:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:05:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:06:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:06:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:06:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:06:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:06:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:06:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:07:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:07:17 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T12:07:27 (#:amount 79692840 #:time 248))
(heartbeat 2015-08-19T12:07:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:07:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:07:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:07:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:08:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:08:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:08:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:08:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:08:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:08:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:09:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:09:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:09:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:09:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:09:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:09:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:10:07 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T12:10:09 (#:amount 71538472 #:time 244))
(heartbeat 2015-08-19T12:10:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:10:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:10:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:10:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:10:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:11:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:11:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:11:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:11:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:11:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:11:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:12:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:12:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:12:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:12:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:12:47 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T12:12:55 (#:amount 79509240 #:time 248))
(heartbeat 2015-08-19T12:12:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:13:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:13:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:13:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:13:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:13:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:13:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:14:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:14:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:14:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:14:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:14:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:14:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:15:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:15:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:15:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:15:37 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T12:15:40 (#:amount 71787712 #:time 244))
(heartbeat 2015-08-19T12:15:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:15:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:16:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:16:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:16:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:16:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:16:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:16:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:17:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:17:17 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:17:27 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:17:37 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:17:47 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:17:57 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:18:07 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:18:18 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T12:18:27 (#:amount 79337176 #:time 248))
(heartbeat 2015-08-19T12:18:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:18:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:18:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:18:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:19:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:19:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:19:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:19:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:19:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:19:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:20:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:20:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:20:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:20:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:20:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:20:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:21:08 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T12:21:10 (#:amount 72008728 #:time 245))
(heartbeat 2015-08-19T12:21:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:21:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:21:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:21:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:21:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:22:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:22:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:22:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:22:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:22:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:22:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:23:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:23:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:23:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:23:38 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T12:23:38 (#:amount 80546408 #:time 245))
(heartbeat 2015-08-19T12:23:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:23:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:24:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:24:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:24:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:24:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:24:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:24:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:25:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:25:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:25:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:25:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:25:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:25:58 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T12:26:00 (#:amount 72129968 #:time 245))
(heartbeat 2015-08-19T12:26:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:26:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:26:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:26:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:26:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:26:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:27:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:27:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:27:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:27:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:27:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:27:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:28:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:28:18 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T12:28:21 (#:amount 79663496 #:time 210))
(heartbeat 2015-08-19T12:28:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:28:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:28:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:28:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:29:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:29:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:29:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:29:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:29:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:29:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:30:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:30:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:30:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:30:38 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T12:30:43 (#:amount 71511856 #:time 244))
(heartbeat 2015-08-19T12:30:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:30:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:31:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:31:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:31:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:31:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:31:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:31:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:32:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:32:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:32:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:32:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:32:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:32:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:33:08 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T12:33:13 (#:amount 79954008 #:time 245))
(heartbeat 2015-08-19T12:33:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:33:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:33:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:33:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:33:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:34:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:34:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:34:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:34:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:34:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:34:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:35:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:35:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:35:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:35:38 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T12:35:39 (#:amount 72176512 #:time 243))
(heartbeat 2015-08-19T12:35:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:35:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:36:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:36:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:36:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:36:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:36:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:36:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:37:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:37:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:37:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:37:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:37:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:37:58 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T12:38:06 (#:amount 79928208 #:time 246))
(heartbeat 2015-08-19T12:38:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:38:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:38:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:38:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:38:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:38:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:39:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:39:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:39:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:39:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:39:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:39:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:40:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:40:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:40:28 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T12:40:30 (#:amount 72045216 #:time 244))
(heartbeat 2015-08-19T12:40:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:40:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:40:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:41:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:41:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:41:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:41:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:41:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:41:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:42:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:42:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:42:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:42:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:42:48 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T12:42:51 (#:amount 80143464 #:time 247))
(heartbeat 2015-08-19T12:42:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:43:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:43:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:43:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:43:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:43:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:43:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:44:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:44:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:44:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:44:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:44:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:44:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:45:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:45:18 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T12:45:22 (#:amount 72301016 #:time 244))
(heartbeat 2015-08-19T12:45:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:45:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:45:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:45:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:46:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:46:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:46:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:46:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:46:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:46:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:47:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:47:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:47:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:47:38 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T12:47:47 (#:amount 79359992 #:time 247))
(heartbeat 2015-08-19T12:47:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:47:58 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:48:08 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:48:18 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:48:28 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:48:38 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:48:48 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:48:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:49:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:49:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:49:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:49:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:49:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:49:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:50:09 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T12:50:15 (#:amount 72273200 #:time 244))
(heartbeat 2015-08-19T12:50:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:50:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:50:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:50:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:50:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:51:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:51:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:51:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:51:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:51:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:51:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:52:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:52:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:52:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:52:39 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T12:52:48 (#:amount 79184872 #:time 211))
(heartbeat 2015-08-19T12:52:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:52:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:53:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:53:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:53:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:53:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:53:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:53:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:54:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:54:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:54:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:54:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:54:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:54:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:55:09 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T12:55:17 (#:amount 72134512 #:time 244))
(heartbeat 2015-08-19T12:55:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:55:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:55:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:55:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:55:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:56:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:56:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:56:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:56:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:56:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:56:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:57:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:57:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:57:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:57:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:57:49 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T12:57:54 (#:amount 79909848 #:time 247))
(heartbeat 2015-08-19T12:57:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:58:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:58:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:58:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:58:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:58:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:58:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:59:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:59:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:59:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:59:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:59:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T12:59:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:00:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:00:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:00:29 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T13:00:36 (#:amount 71733864 #:time 246))
(heartbeat 2015-08-19T13:00:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:00:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:00:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:01:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:01:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:01:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:01:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:01:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:01:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:02:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:02:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:02:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:02:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:02:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:02:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:03:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:03:19 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T13:03:22 (#:amount 80109720 #:time 248))
(heartbeat 2015-08-19T13:03:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:03:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:03:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:03:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:04:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:04:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:04:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:04:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:04:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:04:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:05:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:05:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:05:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:05:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:05:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:05:59 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T13:06:08 (#:amount 72177856 #:time 246))
(heartbeat 2015-08-19T13:06:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:06:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:06:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:06:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:06:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:06:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:07:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:07:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:07:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:07:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:07:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:07:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:08:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:08:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:08:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:08:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:08:49 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T13:08:53 (#:amount 80528512 #:time 247))
(heartbeat 2015-08-19T13:08:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:09:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:09:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:09:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:09:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:09:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:09:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:10:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:10:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:10:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:10:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:10:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:10:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:11:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:11:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:11:29 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T13:11:32 (#:amount 72219392 #:time 219))
(heartbeat 2015-08-19T13:11:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:11:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:11:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:12:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:12:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:12:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:12:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:12:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:12:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:13:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:13:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:13:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:13:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:13:49 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T13:13:54 (#:amount 79741072 #:time 244))
(heartbeat 2015-08-19T13:13:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:14:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:14:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:14:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:14:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:14:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:14:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:15:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:15:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:15:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:15:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:15:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:15:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:16:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:16:19 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T13:16:21 (#:amount 70792904 #:time 245))
(heartbeat 2015-08-19T13:16:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:16:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:16:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:16:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:17:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:17:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:17:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:17:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:17:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:17:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:18:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:18:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:18:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:18:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:18:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:18:59 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T13:19:07 (#:amount 79991584 #:time 248))
(heartbeat 2015-08-19T13:19:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:19:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:19:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:19:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:19:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:19:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:20:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:20:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:20:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:20:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:20:49 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:20:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:21:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:21:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:21:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:21:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:21:49 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T13:21:53 (#:amount 71878088 #:time 244))
(heartbeat 2015-08-19T13:21:59 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:22:09 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:22:19 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:22:29 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:22:39 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:22:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:23:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:23:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:23:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:23:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:23:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:23:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:24:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:24:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:24:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:24:30 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T13:24:40 (#:amount 79827768 #:time 248))
(heartbeat 2015-08-19T13:24:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:24:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:25:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:25:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:25:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:25:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:25:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:25:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:26:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:26:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:26:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:26:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:26:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:26:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:27:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:27:10 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T13:27:15 (#:amount 72365696 #:time 207))
(heartbeat 2015-08-19T13:27:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:27:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:27:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:27:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:28:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:28:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:28:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:28:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:28:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:28:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:29:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:29:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:29:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:29:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:29:40 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T13:29:42 (#:amount 78600712 #:time 244))
(heartbeat 2015-08-19T13:29:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:30:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:30:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:30:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:30:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:30:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:30:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:31:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:31:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:31:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:31:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:31:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:31:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:32:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:32:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:32:20 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T13:32:23 (#:amount 71504984 #:time 244))
(heartbeat 2015-08-19T13:32:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:32:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:32:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:33:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:33:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:33:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:33:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:33:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:33:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:34:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:34:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:34:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:34:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:34:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:34:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:35:00 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T13:35:10 (#:amount 79974720 #:time 248))
(heartbeat 2015-08-19T13:35:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:35:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:35:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:35:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:35:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:36:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:36:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:36:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:36:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:36:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:36:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:37:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:37:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:37:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:37:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:37:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:37:50 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T13:37:54 (#:amount 71941840 #:time 245))
(heartbeat 2015-08-19T13:38:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:38:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:38:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:38:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:38:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:38:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:39:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:39:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:39:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:39:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:39:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:39:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:40:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:40:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:40:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:40:30 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T13:40:39 (#:amount 79819176 #:time 249))
(heartbeat 2015-08-19T13:40:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:40:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:41:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:41:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:41:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:41:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:41:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:41:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:42:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:42:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:42:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:42:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:42:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:42:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:43:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:43:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:43:20 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T13:43:24 (#:amount 71496368 #:time 245))
(heartbeat 2015-08-19T13:43:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:43:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:43:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:44:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:44:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:44:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:44:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:44:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:44:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:45:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:45:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:45:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:45:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:45:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:45:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:46:00 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T13:46:06 (#:amount 80025984 #:time 247))
(heartbeat 2015-08-19T13:46:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:46:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:46:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:46:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:46:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:47:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:47:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:47:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:47:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:47:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:47:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:48:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:48:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:48:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:48:30 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T13:48:32 (#:amount 72008024 #:time 244))
(heartbeat 2015-08-19T13:48:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:48:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:49:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:49:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:49:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:49:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:49:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:49:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:50:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:50:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:50:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:50:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:50:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:50:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:51:00 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T13:51:04 (#:amount 79153576 #:time 245))
(heartbeat 2015-08-19T13:51:10 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:51:20 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:51:30 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:51:40 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:51:50 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:52:00 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:52:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:52:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:52:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:52:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:52:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:53:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:53:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:53:21 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T13:53:29 (#:amount 72165856 #:time 209))
(heartbeat 2015-08-19T13:53:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:53:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:53:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:54:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:54:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:54:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:54:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:54:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:54:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:55:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:55:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:55:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:55:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:55:41 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T13:55:51 (#:amount 80343128 #:time 244))
(heartbeat 2015-08-19T13:55:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:56:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:56:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:56:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:56:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:56:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:56:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:57:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:57:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:57:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:57:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:57:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:57:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:58:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:58:11 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T13:58:16 (#:amount 71322160 #:time 208))
(heartbeat 2015-08-19T13:58:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:58:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:58:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:58:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:59:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:59:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:59:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:59:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:59:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T13:59:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:00:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:00:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:00:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:00:31 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T14:00:35 (#:amount 80336504 #:time 246))
(heartbeat 2015-08-19T14:00:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:00:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:01:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:01:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:01:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:01:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:01:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:01:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:02:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:02:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:02:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:02:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:02:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:02:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:03:01 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T14:03:06 (#:amount 71209072 #:time 208))
(heartbeat 2015-08-19T14:03:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:03:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:03:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:03:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:03:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:04:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:04:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:04:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:04:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:04:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:04:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:05:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:05:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:05:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:05:31 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T14:05:35 (#:amount 80241496 #:time 211))
(heartbeat 2015-08-19T14:05:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:05:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:06:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:06:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:06:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:06:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:06:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:06:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:07:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:07:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:07:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:07:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:07:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:07:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:08:01 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T14:08:03 (#:amount 71713072 #:time 243))
(heartbeat 2015-08-19T14:08:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:08:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:08:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:08:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:08:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:09:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:09:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:09:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:09:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:09:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:09:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:10:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:10:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:10:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:10:31 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T14:10:32 (#:amount 79690536 #:time 246))
(heartbeat 2015-08-19T14:10:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:10:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:11:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:11:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:11:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:11:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:11:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:11:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:12:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:12:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:12:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:12:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:12:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:12:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:13:01 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T14:13:06 (#:amount 72329992 #:time 245))
(heartbeat 2015-08-19T14:13:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:13:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:13:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:13:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:13:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:14:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:14:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:14:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:14:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:14:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:14:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:15:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:15:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:15:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:15:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:15:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:15:51 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T14:15:53 (#:amount 79568728 #:time 247))
(heartbeat 2015-08-19T14:16:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:16:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:16:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:16:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:16:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:16:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:17:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:17:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:17:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:17:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:17:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:17:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:18:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:18:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:18:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:18:31 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T14:18:37 (#:amount 71452648 #:time 245))
(heartbeat 2015-08-19T14:18:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:18:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:19:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:19:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:19:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:19:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:19:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:19:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:20:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:20:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:20:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:20:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:20:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:20:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:21:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:21:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:21:21 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T14:21:23 (#:amount 80082992 #:time 249))
(heartbeat 2015-08-19T14:21:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:21:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:21:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:22:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:22:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:22:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:22:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:22:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:22:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:23:01 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:23:11 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:23:21 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:23:31 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:23:41 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:23:51 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:24:02 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T14:24:06 (#:amount 71988832 #:time 243))
(heartbeat 2015-08-19T14:24:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:24:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:24:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:24:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:24:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:25:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:25:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:25:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:25:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:25:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:25:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:26:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:26:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:26:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:26:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:26:42 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T14:26:48 (#:amount 79980480 #:time 248))
(heartbeat 2015-08-19T14:26:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:27:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:27:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:27:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:27:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:27:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:27:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:28:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:28:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:28:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:28:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:28:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:28:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:29:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:29:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:29:22 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T14:29:25 (#:amount 71673760 #:time 242))
(heartbeat 2015-08-19T14:29:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:29:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:29:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:30:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:30:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:30:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:30:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:30:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:30:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:31:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:31:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:31:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:31:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:31:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:31:52 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T14:31:56 (#:amount 79826104 #:time 216))
(heartbeat 2015-08-19T14:32:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:32:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:32:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:32:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:32:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:32:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:33:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:33:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:33:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:33:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:33:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:33:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:34:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:34:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:34:22 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T14:34:29 (#:amount 72169488 #:time 244))
(heartbeat 2015-08-19T14:34:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:34:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:34:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:35:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:35:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:35:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:35:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:35:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:35:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:36:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:36:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:36:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:36:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:36:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:36:52 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T14:37:01 (#:amount 79797392 #:time 238))
(heartbeat 2015-08-19T14:37:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:37:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:37:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:37:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:37:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:37:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:38:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:38:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:38:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:38:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:38:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:38:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:39:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:39:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:39:22 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T14:39:25 (#:amount 72000992 #:time 220))
(heartbeat 2015-08-19T14:39:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:39:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:39:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:40:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:40:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:40:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:40:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:40:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:40:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:41:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:41:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:41:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:41:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:41:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:41:52 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T14:41:54 (#:amount 80297184 #:time 243))
(heartbeat 2015-08-19T14:42:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:42:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:42:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:42:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:42:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:42:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:43:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:43:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:43:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:43:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:43:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:43:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:44:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:44:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:44:22 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T14:44:23 (#:amount 71694800 #:time 241))
(heartbeat 2015-08-19T14:44:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:44:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:44:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:45:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:45:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:45:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:45:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:45:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:45:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:46:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:46:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:46:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:46:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:46:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:46:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:47:02 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T14:47:07 (#:amount 79953336 #:time 246))
(heartbeat 2015-08-19T14:47:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:47:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:47:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:47:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:47:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:48:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:48:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:48:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:48:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:48:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:48:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:49:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:49:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:49:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:49:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:49:42 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T14:49:52 (#:amount 72479424 #:time 243))
(heartbeat 2015-08-19T14:49:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:50:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:50:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:50:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:50:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:50:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:50:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:51:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:51:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:51:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:51:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:51:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:51:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:52:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:52:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:52:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:52:32 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T14:52:37 (#:amount 79317992 #:time 246))
(heartbeat 2015-08-19T14:52:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:52:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:53:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:53:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:53:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:53:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:53:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:53:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:54:02 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:54:12 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:54:22 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:54:32 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:54:42 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:54:52 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:55:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:55:13 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T14:55:22 (#:amount 71598680 #:time 243))
(heartbeat 2015-08-19T14:55:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:55:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:55:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:55:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:56:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:56:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:56:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:56:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:56:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:56:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:57:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:57:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:57:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:57:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:57:43 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T14:57:52 (#:amount 79441920 #:time 211))
(heartbeat 2015-08-19T14:57:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:58:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:58:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:58:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:58:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:58:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:58:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:59:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:59:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:59:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:59:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:59:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T14:59:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:00:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:00:13 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T15:00:19 (#:amount 72255552 #:time 209))
(heartbeat 2015-08-19T15:00:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:00:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:00:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:00:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:01:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:01:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:01:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:01:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:01:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:01:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:02:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:02:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:02:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:02:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:02:43 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T15:02:47 (#:amount 79133432 #:time 246))
(heartbeat 2015-08-19T15:02:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:03:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:03:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:03:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:03:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:03:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:03:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:04:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:04:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:04:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:04:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:04:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:04:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:05:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:05:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:05:23 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T15:05:32 (#:amount 72018096 #:time 244))
(heartbeat 2015-08-19T15:05:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:05:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:05:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:06:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:06:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:06:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:06:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:06:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:06:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:07:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:07:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:07:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:07:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:07:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:07:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:08:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:08:13 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T15:08:18 (#:amount 79078168 #:time 247))
(heartbeat 2015-08-19T15:08:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:08:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:08:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:08:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:09:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:09:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:09:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:09:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:09:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:09:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:10:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:10:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:10:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:10:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:10:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:10:53 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T15:10:54 (#:amount 71747336 #:time 245))
(heartbeat 2015-08-19T15:11:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:11:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:11:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:11:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:11:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:11:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:12:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:12:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:12:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:12:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:12:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:12:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:13:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:13:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:13:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:13:33 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T15:13:35 (#:amount 80236288 #:time 223))
(heartbeat 2015-08-19T15:13:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:13:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:14:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:14:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:14:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:14:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:14:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:14:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:15:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:15:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:15:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:15:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:15:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:15:53 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T15:16:00 (#:amount 72359064 #:time 243))
(heartbeat 2015-08-19T15:16:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:16:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:16:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:16:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:16:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:16:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:17:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:17:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:17:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:17:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:17:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:17:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:18:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:18:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:18:23 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T15:18:25 (#:amount 79478568 #:time 246))
(heartbeat 2015-08-19T15:18:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:18:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:18:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:19:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:19:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:19:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:19:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:19:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:19:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:20:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:20:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:20:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:20:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:20:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:20:53 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T15:20:56 (#:amount 71313672 #:time 210))
(heartbeat 2015-08-19T15:21:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:21:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:21:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:21:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:21:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:21:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:22:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:22:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:22:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:22:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:22:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:22:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:23:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:23:13 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T15:23:19 (#:amount 79536400 #:time 210))
(heartbeat 2015-08-19T15:23:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:23:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:23:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:23:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:24:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:24:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:24:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:24:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:24:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:24:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:25:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:25:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:25:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:25:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:25:43 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T15:25:48 (#:amount 71710312 #:time 245))
(heartbeat 2015-08-19T15:25:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:26:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:26:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:26:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:26:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:26:43 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:26:53 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:27:03 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:27:13 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:27:23 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:27:33 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:27:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:27:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:28:04 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T15:28:08 (#:amount 81127240 #:time 210))
(heartbeat 2015-08-19T15:28:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:28:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:28:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:28:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:28:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:29:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:29:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:29:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:29:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:29:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:29:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:30:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:30:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:30:24 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T15:30:34 (#:amount 71736872 #:time 242))
(heartbeat 2015-08-19T15:30:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:30:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:30:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:31:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:31:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:31:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:31:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:31:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:31:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:32:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:32:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:32:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:32:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:32:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:32:54 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T15:33:01 (#:amount 79802232 #:time 244))
(heartbeat 2015-08-19T15:33:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:33:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:33:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:33:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:33:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:33:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:34:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:34:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:34:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:34:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:34:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:34:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:35:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:35:14 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T15:35:23 (#:amount 71990160 #:time 243))
(heartbeat 2015-08-19T15:35:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:35:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:35:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:35:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:36:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:36:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:36:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:36:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:36:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:36:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:37:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:37:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:37:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:37:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:37:44 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T15:37:46 (#:amount 79204048 #:time 247))
(heartbeat 2015-08-19T15:37:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:38:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:38:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:38:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:38:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:38:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:38:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:39:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:39:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:39:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:39:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:39:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:39:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:40:04 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T15:40:14 (#:amount 71832112 #:time 208))
(heartbeat 2015-08-19T15:40:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:40:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:40:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:40:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:40:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:41:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:41:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:41:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:41:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:41:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:41:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:42:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:42:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:42:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:42:34 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T15:42:44 (#:amount 80159464 #:time 233))
(heartbeat 2015-08-19T15:42:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:42:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:43:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:43:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:43:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:43:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:43:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:43:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:44:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:44:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:44:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:44:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:44:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:44:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:45:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:45:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:45:24 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T15:45:25 (#:amount 71662408 #:time 244))
(heartbeat 2015-08-19T15:45:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:45:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:45:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:46:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:46:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:46:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:46:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:46:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:46:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:47:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:47:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:47:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:47:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:47:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:47:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:48:04 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T15:48:10 (#:amount 79424872 #:time 250))
(heartbeat 2015-08-19T15:48:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:48:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:48:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:48:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:48:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:49:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:49:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:49:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:49:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:49:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:49:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:50:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:50:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:50:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:50:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:50:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:50:54 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T15:50:56 (#:amount 72918664 #:time 245))
(heartbeat 2015-08-19T15:51:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:51:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:51:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:51:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:51:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:51:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:52:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:52:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:52:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:52:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:52:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:52:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:53:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:53:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:53:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:53:34 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T15:53:39 (#:amount 78848936 #:time 248))
(heartbeat 2015-08-19T15:53:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:53:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:54:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:54:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:54:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:54:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:54:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:54:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:55:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:55:14 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:55:24 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:55:34 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:55:44 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:55:54 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:56:04 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:56:14 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T15:56:25 (#:amount 71793256 #:time 245))
(heartbeat 2015-08-19T15:56:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:56:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:56:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:56:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:57:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:57:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:57:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:57:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:57:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:57:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:58:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:58:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:58:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:58:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:58:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:58:55 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T15:59:03 (#:amount 79948488 #:time 246))
(heartbeat 2015-08-19T15:59:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:59:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:59:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:59:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:59:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T15:59:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:00:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:00:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:00:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:00:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:00:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:00:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:01:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:01:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:01:25 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T16:01:31 (#:amount 72148336 #:time 244))
(heartbeat 2015-08-19T16:01:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:01:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:01:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:02:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:02:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:02:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:02:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:02:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:02:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:03:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:03:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:03:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:03:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:03:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:03:55 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T16:03:57 (#:amount 78545856 #:time 246))
(heartbeat 2015-08-19T16:04:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:04:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:04:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:04:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:04:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:04:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:05:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:05:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:05:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:05:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:05:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:05:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:06:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:06:15 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T16:06:23 (#:amount 72000576 #:time 243))
(heartbeat 2015-08-19T16:06:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:06:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:06:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:06:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:07:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:07:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:07:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:07:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:07:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:07:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:08:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:08:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:08:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:08:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:08:45 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T16:08:49 (#:amount 79441696 #:time 247))
(heartbeat 2015-08-19T16:08:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:09:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:09:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:09:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:09:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:09:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:09:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:10:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:10:15 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:10:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:10:35 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:10:45 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:10:55 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:11:05 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:11:15 (#:model "poly-stlc-5" #:type grammar))
(gc-major 2015-08-19T16:11:16 (#:amount 72162880 #:time 210))
(heartbeat 2015-08-19T16:11:25 (#:model "poly-stlc-5" #:type grammar))
(heartbeat 2015-08-19T16:11:35 (#:model "poly-stlc-5" #:type grammar))
(finished 2015-08-19T16:11:42 (#:model "poly-stlc-5" #:type grammar #:time-ms 86400001 #:attempts 76978416 #:num-counterexamples 0 #:rate-terms/s 890.9538785769226 #:attempts/cexp N/A))
| false |
058011b1012eb5e2f4e4007e99c032d98e8092c5 | 411046d5458a05c0ea35c75cfda3ce8980d9f9e3 | /assembler/lexer/directive.rkt | fd7f403708215ed7bc30b79bafcbba72e154236e | []
| no_license | dys-bigwig/racket-6502 | cac931fec2760c85576c7d1b51c4651fb8f35a75 | 9375bfce0a8b4f8bed241d2cf9581acd8d04bb2e | refs/heads/master | 2020-04-28T22:07:15.764927 | 2019-12-11T23:00:51 | 2019-12-11T23:00:51 | 175,606,606 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 371 | rkt | directive.rkt | #lang racket/base
(require (only-in parser-tools/lex define-lex-abbrev)
(prefix-in : parser-tools/lex-sre))
(require "transformer.rkt")
(provide (all-defined-out))
(define-lex-abbrev equate/l (:: (:char-ci #\E) (:char-ci #\Q) (:char-ci #\U)))
(define-lex-abbrev db/l (:: #\. (:char-ci #\D) (:char-ci #\B)))
(define-lex-abbrev directive/l (:or equate/l db/l))
| false |
6ea9a559701f4bc96d0e960500787ef16995e212 | e29bd9096fb059b42b6dde5255f39d443f69caee | /metapict/pict.rkt | 2f58a3895a1c9d4d98bee0c2e500fafdd32b1665 | []
| no_license | soegaard/metapict | bfe2ccdea6dbc800a6df042ec00c0c77a4915ed3 | d29c45cf32872f8607fca3c58272749c28fb8751 | refs/heads/master | 2023-02-02T01:57:08.843234 | 2023-01-25T17:06:46 | 2023-01-25T17:06:46 | 16,359,210 | 52 | 12 | null | 2023-01-25T17:06:48 | 2014-01-29T21:11:46 | Racket | UTF-8 | Racket | false | false | 16,626 | rkt | pict.rkt | #lang racket/base
(require racket/contract/base racket/match
"save-pdf.rkt" "save-svg.rkt"
"font.rkt" "text.rkt" "gradient.rkt" "pt-vec.rkt")
;;;
;;; IMPORTANT NOTE
;;; Remember that to set the smoothing mode to 'smoothed if you implement
;;; new picts constructors, that use coordinates.
(provide (all-from-out "font.rkt" "text.rkt" "gradient.rkt"))
; General pict utilities
(provide
; color ; use color for both the pen and brush color
pencolor ; use the pen color (doesn't affect brush)
penwidth ; use the pen width (alias for linewidth)
penscale ; scale the penwidth
penstyle ; use the pen style
pencap ; use the pen cap
penjoin ; use the pen join
pen ; use the pen
brush ; use the brush
brushcolor ; use the brush color
brushstyle ; use the brush style
brushstipple ; use the brush stipple
brushgradient ; use the brush gradient
; brushshade
dashed ; use the pen style long-dash
dotted ; use the pen style dotted
text-color ; use the color as the text foreground color
text-background-color ; use the color as background color when text mode is solid
text-mode ; use the mode 'solid or 'transparent
text-scale ; SYNTAX (text-scale k pict-expr)
text-size ; SYNTAX (text-size k pict-expr)
margin ; inset with arguments swapped
smoothed ; use smoothing-mode 'smoothed
aligned ; use smoothing-mode 'aligned
unsmoothed ; use smoothing-mode 'unsmoothed
pict-size ; returns width and height
cropped
above
above*
beside
beside*
(contract-out
[scale (-> number? pict? pict?)]) ; pict:scale with arguments swapped
save-pict ; save pict to file, default is png, other formats include jpeg
)
(require (for-syntax racket/base syntax/parse)
racket/draw racket/class racket/format
"pict-lite.rkt" "def.rkt" "color.rkt" "structs.rkt" "device.rkt" "parameters.rkt")
(define (dashed p) (penstyle 'long-dash p))
(define (dotted p) (penstyle 'dot p))
(define above vc-append)
(define beside hc-append)
(define (beside* ps) (apply beside ps))
(define (above* ps) (apply above ps))
; color is stored in colorizer due to the match-expander in color.rkt
(colorizer (case-lambda [( c p) (pencolor c (brushcolor c p))]
[(f c p) (let ([c (color* f c)]) (pencolor c (brushcolor c p)))]
[else (error 'color "expected (color [f] c p)")]))
;; (define-penop name (arg ... pict) old-pen expr ...)
;; Defines a function name such that
;; (name arg ... pict)
;; Draws the pict with a the pen resulting from
;; evaluating (let () expr ...) in an environment where
;; old-pen is bound the current pen.
(define-syntax (define-penop stx)
(syntax-parse stx
[(_ name (arg ... pict) old-pen
expr ...)
#`(define (name arg ... pict)
(unless (pict? pict)
(raise-arguments-error 'name "pict expected" "pict" pict))
(dc #,(syntax/loc stx
(lambda (dc x y)
(let ([old-pen (send dc get-pen)])
(def new-pen (let () expr ...))
(send dc set-pen new-pen)
(draw-pict pict dc x y)
(send dc set-pen old-pen))))
(pict-width pict) (pict-height pict)))]))
(define-penop pen (new-pen pict) b
new-pen)
(define-penop pencolor (color pict) p
(send the-pen-list find-or-create-pen
color (send p get-width) (send p get-style)
(send p get-cap) (send p get-join)))
(define-penop penwidth (width pict) p
(send the-pen-list find-or-create-pen
(send p get-color) (min 255 width) (send p get-style)
(send p get-cap) (send p get-join)))
(define-penop penscale (factor pict) p
(send the-pen-list find-or-create-pen
(send p get-color) (min (* factor (send p get-width)) 255) (send p get-style)
(send p get-cap) (send p get-join)))
(define-penop penstyle (style pict) p
; styles: 'transparent 'solid 'xor 'hilite 'dot 'long-dash 'short-dash 'dot-dash
; 'xor-dot 'xor-long-dash 'xor-short-dash 'xor-dot-dash
(send the-pen-list find-or-create-pen
(send p get-color) (send p get-width) style
(send p get-cap) (send p get-join)))
(define-penop pencap (cap pict) p
; draw pict with a pen with the given cap (round, projecting, or, butt)
(when (eq? cap 'square) (set! cap 'projecting))
(send the-pen-list find-or-create-pen
(send p get-color) (send p get-width) (send p get-style)
cap (send p get-join)))
(define-penop penjoin (join pict) p
; draw pict with a pen with the given join (round, bevel, or, miter)
(send the-pen-list find-or-create-pen
(send p get-color) (send p get-width) (send p get-style)
(send p get-cap) join))
;; (define-brushop name (arg ... pict) old-brush expr ...)
;; Defines a function name such that
;; (name arg ... pict)
;; Draws the pict with the brush resulting from
;; evaluating (let () expr ...) in an environment where
;; old-brush is bound the current brush.
(define-syntax (define-brushop stx)
(syntax-parse stx
[(_ name (arg ... pict x y) old-brush the-dc
expr ...)
#'(define (name arg ... pict)
(unless (pict? pict)
(raise-arguments-error 'name "pict expected" "pict" pict))
(dc (lambda (the-dc x y)
(parameterize ([use-default-brush? #f])
(let ([old-brush (send the-dc get-brush)])
(def new-brush (let () expr ...))
(when (eq? new-brush #t)
(set! new-brush old-brush))
(send the-dc set-brush new-brush)
(draw-pict pict the-dc x y)
(send the-dc set-brush old-brush))))
(pict-width pict) (pict-height pict)))]))
(define-brushop brush (new-brush pict x y) b dc
(cond [(eq? new-brush #t) #t] ; use existing
[(is-a? new-brush brush%) new-brush]
[(is-a? new-brush color%) (new brush% [color new-brush] [style 'solid])]
[(string? new-brush) (new brush% [color (make-color* new-brush)]
[style 'solid])]
[else (error 'brush (~a "expected a brush%, a color% or a color string, got: "
new-brush))]))
(define-brushop brushcolor (color pict x y) b dc
(send the-brush-list find-or-create-brush
(make-color* color) (send b get-style)))
(define-brushop brushstyle (style pict x y) b dc
(send the-brush-list find-or-create-brush
(send b get-color) style))
(define-brushop brushstipple (stipple pict x y) b dc
(new brush%
[color (send b get-color)]
[style (send b get-style)]
[stipple stipple]
[gradient (send b get-gradient)]
[transformation (send b get-transformation)]))
(require "trans.rkt")
(define (brushgradient g pict #:height-factor [height-factor #f])
; g is a gradient (with points in logical coordinates)
(unless (pict? pict)
(raise-arguments-error 'name "pict expected" "pict" pict))
(defm (or (and (raw-linear-gradient color-stops p0 p1 hf) r0 r1)
(raw-radial-gradient color-stops p0 r0 p1 r1 hf)) g)
; Note: It is important these are placed outside the (dc ...)
; We need the values of the parameters at the pict is created.
; So ... don't use define-brushop
(def w (curve-pict-width))
(def h (curve-pict-height))
(def win (curve-pict-window))
; The transformation T is from logical coordinates into user coordinates.
; I.e. from coordinates used in MetaPict into coordinates used by picts.
(def T (stdtrans win w h)) ; logical -> user coordinates
(dc (λ (the-dc x y)
; The drawing context contains the tranformation used
; to go from user coordinates into device coordinates.
; Transformation U : user -> device
(def raw-transformation (send the-dc get-transformation))
(def o compose-trans)
(def UD (match raw-transformation
[(vector (vector xx xy yx yy x0 y0) ; initial
x-origin
y-origin
a ; x-scale
b; y-scale
rot)
; Order the transformations are applied
; 1. initial
; 2. origin
; 3. scaling
; 4. rotation
(o (trans xx yx xy yy x0 y0) ; initial
(o (trans 1 0 0 1 0 0)
; not quite sure why origin must be ignored :-(
;(trans 1 0 0 1 x-origin y-origin) ; origin
(o (trans a 0 0 b 0 0) ; scaling
(rotatedd rot))))])) ; rotation
(set! T (compose-trans UD T))
; !! now T is from logical to device coordinates
(parameterize ([use-default-brush? #f])
(let ([old-brush (send the-dc get-brush)])
(def new-brush
(let ()
; find points in (dc) device coordinates
(define-values (x0 y0 x1 y1) ; device coords
(match* ((T p0) (T p1)) ; (T p0) transform from logical to device
[((pt x0 y0) (pt x1 y1))
(values x0 y0 x1 y1)]))
; width and height (in device coords)
(def width (- x1 x0))
(def height (- y1 y0))
(when (= x0 x1) (set! x1 (+ x1 0.001)))
(when (= y0 y1) (set! y1 (+ y1 0.001)))
(when (= width 0) (set! width 0.001))
(when (= height 0) (set! height 0.001))
; This transformation corresponds to the rectangle bounded by p0 p1
(def S (stdtrans (window x0 x1 y0 y1) width height)) ; pattern coords -> user
; Time to setup the gradient
(define P ((inverse S) T)) ; logical -> pattern
(define a-gradient (convert-gradient g P))
; if the gradient is a radial-gradient, the radius was
; calculated using the "x-radius".
; in an ellipse we need to scale the y-axis
; The Q transformation is from pattern space to pattern space.
(def Q (shifted (P p0)
(yscaled (or height-factor hf) ; height factor
(shifted (pt- (P p0))))))
(def transformation (trans->transformation (S Q)))
(define b old-brush)
(new brush%
[color (send b get-color)] ; ignored
[style (send b get-style)] ; ignored when a gradient is present
[stipple (send b get-stipple)] ; ignored
[gradient a-gradient]
[transformation transformation])))
; install brush, draw pict and reinstall old brush
(send the-dc set-brush new-brush)
(draw-pict pict the-dc x y)
(send the-dc set-brush old-brush))))
(pict-width pict) (pict-height pict)))
;; text-color : color pict -> pict
;; Produces a pict like p, but using the color c as the text foreground color.
(define (text-color c p)
; todo: check c is a color
(dc (lambda (dc x y)
(let ([old-color (send dc get-text-foreground)])
(def new-color c)
(send dc set-text-foreground new-color)
(draw-pict p dc x y)
(send dc set-text-foreground old-color)))
(pict-width p) (pict-height p)))
; Note: fonts aren't stored in the drawing context, so
; this needs to be a macro.
(define-syntax (text-scale stx)
(syntax-parse stx
[(_text-scale k:expr pict-expr:expr)
(syntax/loc stx
(let ()
(def f (current-font))
(with-font-change (#:size (* k (send f get-size)))
pict-expr)))]))
; Note: fonts aren't stored in the drawing context, so
; this needs to be a macro.
(define-syntax (text-size stx)
(syntax-parse stx
[(_text-size k:expr pict-expr:expr)
(syntax/loc stx
(let ()
(def f (current-font))
(with-font-change (#:size k)
pict-expr)))]))
;; text-background-color : color pict -> pict
;; Produces a pict like p, but using the color c as the text background color.
;; The text background color is only used when text mode is 'solid.
(define (text-background-color c p)
; todo: check c is a color
(dc (lambda (dc x y)
(let ([old-color (send dc get-text-background)])
(def new-color c)
(send dc set-text-background new-color)
(draw-pict p dc x y)
(send dc set-text-background old-color)))
(pict-width p) (pict-height p)))
;; text-mode : mode pict -> pict
;; Produces a pict like p, but using the mode ('solid or 'transparent) as the text mode.
(define (text-mode m p)
(unless (or (eq? m 'solid) (eq? m 'transparent))
(raise-arguments-error 'text-mode "mode ('solid or 'transparent) expected" "mode" m))
(dc (lambda (dc x y)
(let ([old-mode (send dc get-text-mode)])
(def new-mode m)
(send dc set-text-mode new-mode)
(draw-pict p dc x y)
(send dc set-text-mode old-mode)))
(pict-width p) (pict-height p)))
;; smoothed : pict -> pict
;; Produces a pict like `p`, but that always draws in 'smoothed mode
(define (smoothed p)
; (define draw-p (make-pict-drawer p))
(def p2
(dc (lambda (dc x y)
(def s (send dc get-smoothing))
(send dc set-smoothing 'smoothed)
; (draw-p dc x y)
(draw-pict p dc x y)
(send dc set-smoothing s))
(pict-width p)
(pict-height p)))
(make-pict (pict-draw p2)
(pict-width p)
(pict-height p)
(pict-ascent p)
(pict-descent p)
(list (make-child p 0 0 1 1 0 0))
#f
(pict-last p)))
;; unsmoothed : pict -> pict
;; Produces a pict like `p`, but that always draws in 'unsmoothed mode
(define (unsmoothed p)
; (define draw-p (make-pict-drawer p))
(def p2
(dc (lambda (dc x y)
(def s (send dc get-smoothing))
(send dc set-smoothing 'unsmoothed)
; (draw-p dc x y)
(draw-pict p dc x y)
(send dc set-smoothing s))
(pict-width p)
(pict-height p)))
(make-pict (pict-draw p2)
(pict-width p)
(pict-height p)
(pict-ascent p)
(pict-descent p)
(list (make-child p 0 0 1 1 0 0))
#f
(pict-last p)))
;; aligned : pict -> pict
;; Produces a pict like `p`, but that always draws in 'aligned mode
(define (aligned p)
; (define draw-p (make-pict-drawer p))
(def p2
(dc (lambda (dc x y)
(def s (send dc get-smoothing))
(send dc set-smoothing 'aligned)
; (draw-p dc x y)
(draw-pict p dc x y)
(send dc set-smoothing s))
(pict-width p)
(pict-height p)))
(make-pict (pict-draw p2)
(pict-width p)
(pict-height p)
(pict-ascent p)
(pict-descent p)
(list (make-child p 0 0 1 1 0 0))
#f
(pict-last p)))
(define (cropped p width height [x0 0] [y0 0] #:ascent [ascent height] #:descent [descent 0])
(define (draw-it dc x y) (draw-pict p dc (- x x0) (- y y0)))
(dc draw-it width height ascent descent))
(define (save-pict filename pict [type 'png])
(define (save-bitmap type)
(send (pict->bitmap pict) save-file filename type))
(case type
[(png jpeg xbm xpm bmp) (save-bitmap type)]
;[(jpg) (save-bitmap 'jpeg)] ; jpeg not supported as alpha appears as black in jpg.
[(svg) (save-pict-as-svg pict filename)]
[(pdf) (save-pict-as-pdf pict filename)]
[else (error 'save-pict (~a "expected one of: png pdf xbm xpm bmp, got: " type))]))
(define (margin n p) (inset p n))
(define (scale n p) (pict:scale p n))
(define (pict-size p) (values (pict-width p) (pict-height p)))
| true |
2261745accff6c26b036548933cf08b6e355c0f7 | c4efe9f6416f989524fafb128525a0a71272f680 | /racket/iam-permission-viewer/main.rkt | 1b138abdee863617218d8212eaca0511388c68a5 | []
| no_license | drautb/sketchbook | dcc6eb586ffe739ee21ab74aa6b045073d38fc6b | 12255fc3cc5c2cbccbc174333c76c339d9846d67 | refs/heads/master | 2023-07-27T10:05:40.737633 | 2023-07-25T19:18:32 | 2023-07-25T19:18:32 | 28,785,534 | 4 | 3 | null | 2023-03-07T03:15:24 | 2015-01-04T20:46:06 | C++ | UTF-8 | Racket | false | false | 3,307 | rkt | main.rkt | #lang racket/gui
(require json)
;; ---------------------------------------------------------------------
;; Service/Permission Data
;; Extracted from https://awsiamconsole.s3.amazonaws.com/iam/assets/js/bundles/policies.js
(define aws-data
(with-input-from-file "/Users/drautb/GitHub/drautb/sketchbook/racket/iam-permission-viewer/data.json"
(lambda () (read-json))))
(define service-data (hash-ref (hash-ref aws-data 'PolicyEditorConfig) 'serviceMap))
(define service-names (map symbol->string (hash-keys service-data)))
(define permission-names empty)
(define (reload-permissions service-name)
(define service (hash-ref service-data (string->symbol service-name)))
(define prefix (hash-ref service 'StringPrefix))
(set! permission-names (map (λ (permission)
(string-append prefix ":" permission))
(hash-ref service 'Actions)))
(send permission-list set permission-names))
;; ---------------------------------------------------------------------
;; GUI Stuff
(define fixed-width-font
(send the-font-list find-or-create-font 12.0 'modern 'normal 'normal))
(define (filter-choices search-field list-box data)
(let ([search-str (string-downcase (send search-field get-value))])
(send list-box set (filter (λ (name)
(string-contains? (string-downcase name) search-str))
data))))
(define frame (new frame%
[label "IAM Permission Browser"]
[min-width 800]
[min-height 800]))
(define main-panel (new horizontal-panel%
[parent frame]
[alignment '(center center)]))
(define left-panel (new vertical-panel%
[parent main-panel]
[alignment '(center center)]))
(define service-search (new text-field%
[parent left-panel]
[label "Service Search:"]
[callback (λ (text-field event)
(filter-choices text-field service-list service-names))]))
(define service-list (new list-box%
[parent left-panel]
[label ""]
[choices service-names]
[callback (λ (list-box event)
(let ([selected-service (send list-box get-string-selection)])
(reload-permissions selected-service)))]))
(define right-panel (new vertical-panel%
[parent main-panel]
(alignment '(center center))))
(define permission-search (new text-field%
[parent right-panel]
[label "Permission Search:"]
[callback (λ (text-field event)
(filter-choices text-field permission-list permission-names))]))
(define permission-list (new list-box%
[parent right-panel]
[label ""]
[font fixed-width-font]
[choices permission-names]))
(send frame show #t)
| false |
d8785adf5c58e228c3ce6780999607dc91a40211 | 52dbf7908bb88595bedce804f9a87f2268680856 | /Chapter5/Section-5.1.rkt | 8552bf0afe826072d9d6595b532c57aab2ff9ad5 | []
| no_license | jacquespaye/SICP | b82408eaf36b4bba953be413e3dbeb859fe5a796 | bb58ce7699b3c74a1afac98ff6affe7099722c07 | refs/heads/master | 2021-01-14T01:58:24.674024 | 2020-02-25T18:22:18 | 2020-02-25T18:22:18 | 242,564,179 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 10,513 | rkt | Section-5.1.rkt | #lang sicp
(#%require "Section-5.2.rkt")
;--------------------------------------------------------------
;Section 5.1, Exercise 5.2
(define fact-machine
(make-machine
(list (list '+ +) (list '> >) (list '* *) (list 'print display) (list 'read read))
'(init
(assign product (const 1))
(assign counter (const 1))
(assign n (op read))
test-greater
(test (op >) (reg counter) (reg n))
(branch (label fact-done))
(assign product (op *) (reg product) (reg counter))
(assign counter (op +) (reg counter) (const 1))
(goto (label test-greater))
fact-done
(perform (op print) (reg product))
(perform (op print) (const "\n"))
(goto (label init)))))
;--------------------------------------------------------------
;Section 5.1, Exercise 5.3
(define root-machine
(make-machine
(list
(list 'print display)
(list 'read read)
(list '* *)
(list '- -)
(list '< <)
(list '/ /)
(list '+ +))
'(init
(assign x (op read))
(assign guess (const 1.0))
test-guess
(assign t (op *) (reg guess) (reg guess))
(assign t (op -) (reg t) (reg x))
abs-t
(test (op <) (reg t) (const 0))
(branch (label change-sign))
(goto (label abs-done))
change-sign
(assign t (op *) (reg t) (const -1))
abs-done
(test (op <) (reg t) (const 0.001))
(branch (label root-done))
(assign t (op /) (reg x) (reg guess))
(assign t (op +) (reg t) (reg guess))
(assign guess (op /) (reg t) (const 2))
(goto (label test-guess))
root-done
(perform (op print) (reg guess))
(perform (op print) (const "\n"))
(goto (label init)))))
;--------------------------------------------------------------
;Section 5.1, Exercise 5.3
(define expt-machine
(make-machine
(list
(list 'print display)
(list 'read read)
(list '- -)
(list '* *)
(list '= =))
'(init
(assign b (op read))
(assign n (op read))
(assign continue (label expt-done))
expt-loop
(test (op =) (reg n) (const 0))
(branch (label base-case))
(save continue)
(assign n (op -) (reg n) (const 1))
(assign continue (label after-expt))
(goto (label expt-loop))
after-expt
(restore continue)
(assign val (op *) (reg b) (reg val))
(goto (reg continue))
base-case
(assign val (const 1))
(goto (reg continue))
expt-done
(perform (op print) (reg val))
(perform (op print) (const "\n"))
(goto (label init)))))
(define expt-machine-iter
(make-machine
(list
(list 'print display)
(list 'read read)
(list '- -)
(list '* *)
(list '= =))
'(init
(assign b (op read))
(assign n (op read))
(assign counter (reg n))
(assign product (const 1))
expt-iter
(test (op =) (reg counter) (const 0))
(branch (label expt-done))
(assign counter (op -) (reg counter) (const 1))
(assign product (op *) (reg b) (reg product))
(goto (label expt-iter))
expt-done
(perform (op print) (reg product))
(perform (op print) (const "\n"))
(goto (label init)))))
;--------------------------------------------------------------
;Other register machine designs below
(define gcd-machine-og
(make-machine
(list (list 'rem remainder) (list '= =) (list 'read read))
'(test-b
(test (op =) (reg b) (const 0))
(branch (label gcd-done))
(assign t (op rem) (reg a) (reg b))
(assign a (reg b))
(assign b (reg t))
(goto (label test-b))
gcd-done)))
(define gcd-machine
(make-machine
(list (list '< <) (list '- -) (list '= =) (list 'print display) (list 'read read))
'(init
(assign a (op read))
(assign b (op read))
test-b
(test (op =) (reg b) (const 0))
(branch (label gcd-done))
(assign t (reg a))
rem-loop
(test (op <) (reg t) (reg b))
(branch (label rem-done))
(assign t (op -) (reg t) (reg b))
(goto (label rem-loop))
rem-done
(assign a (reg b))
(assign b (reg t))
(goto (label test-b))
gcd-done
(perform (op print) (reg a))
(perform (op print) (const "\n"))
(goto (label init)))))
(define (square x) (* x x))
(define (good-enough? guess x)
(display "\nguess:") (display guess)
(display "\nx:") (display x)
(< (abs (- (square guess) x)) 0.001))
(define (average a b)
(/ (+ a b) 2.0))
(define (improve guess x)
(average guess (/ x guess)))
(define fivePointEight
(make-machine
(list (list 'print display))
'(start
(goto (label here))
here
(assign a (const 3))
(goto (label there))
heere
(assign a (const 4))
(goto (label there))
there
(perform (op print) (reg a))
)))
(define fivePointNine
(make-machine
(list (list 'print display)
(list '+ +))
'(start
(goto (label here))
here
(assign a (op +) (const 3) (const 3))
(goto (label there))
there
(perform (op print) (reg a))
)))
(define fib-machine
(make-machine
(list (list 'print display)
(list 'read read)
(list '+ +)
(list '* *)
(list '- -)
(list '< <))
'(init
(assign n (op read))
(assign continue (label fib-done))
fib-loop
(test (op <) (reg n) (const 2))
(branch (label immediate-answer))
;; set up to compute Fib(n − 1)
(save continue)
(assign continue (label afterfib-n-1))
(save n) ; save old value of n
(assign n
(op -)
(reg n)
(const 1)) ; clobber n to n-1
(goto
(label fib-loop)) ; perform recursive call
afterfib-n-1 ; upon return, val contains Fib(n − 1)
(restore n)
;; set up to compute Fib(n − 2)
(assign n (op -) (reg n) (const 2))
(assign continue (label afterfib-n-2))
(save val) ; save Fib(n − 1)
(goto (label fib-loop))
afterfib-n-2 ; upon return, val contains Fib(n − 2)
;(restore n) ; we transfer the old value of n (fib(n-1)) into the n register so we can add it to the current val (which contains fib(n-2))
(assign n
(reg val)) ; n now contains Fib(n − 2)
(restore val)
(restore continue)
(assign val ; Fib(n − 1) + Fib(n − 2)
(op +)
(reg val)
(reg n))
(goto ; return to caller,
(reg continue)) ; answer is in val
immediate-answer
(assign val
(reg n)) ; base case: Fib(n) = n
(goto (reg continue))
fib-done
(perform (op print) (reg val))
(perform (op print) (const "\n"))
(goto (label init)))))
(define fivePointEleven
(make-machine
(list (list 'print display)
(list '+ +))
'(start
(assign a (const 1))
(assign b (const 2))
(assign c (const 3))
(assign d (const 4))
(save d)
(save a)
(save b)
(save c)
(save d)
(assign a (const 111))
(save d)
(restore a)
(perform (op print) (reg a))
(perform (op print) (reg b))
(perform (op print) (reg c))
(perform (op print) (reg d))
)))
(define fib
(make-machine
`((= ,=))
'(
(save n)
(assign n (const 40))
(save n)
(save val)
(assign val (const 10))
(save val)
(restore n)
(assign n1 (reg n))
(restore n)
(assign val (const 1))
(restore val)
)))
(define fact-machine-rec
(make-machine
(list
(list 'read read)
(list '= =)
(list '- -)
(list '* *)
(list 'print display))
'(init
(perform (op initialize-stack))
(assign n (op read))
(assign continue (label fact-done))
fact-loop
(test (op =) (reg n) (const 1))
(branch (label base-case))
(save continue)
(save n)
(assign n (op -) (reg n) (const 1))
(assign continue (label after-fact))
(goto (label fact-loop))
after-fact
(restore n)
(restore continue)
(assign val (op *) (reg n) (reg val))
(goto (reg continue))
base-case
(assign val (const 1))
(goto (reg continue))
fact-done
(perform (op print) (reg val))
(perform (op print) (const "\n"))
(perform (op print-stack-statistics))
(goto (label init)))))
(define fib3
(make-machine
`((= ,=))
'(
(save n)
(assign n (const 40))
(save n)
george
(save val)
(assign val (const 10))
just-a-label
(save val)
)))
(define fib4
(make-machine
`((= ,=)
(+,+))
'(
(assign n (const 40))
george
(assign n (const 125))
harry
(assign n (op +) (reg n) (const 9))
)))
(define cons-machine
(make-machine
`((read,read)
(print,display)
(make-vector, make-vector)
(vector-ref,vector-ref)
(vector-set!,vector-set!)
(+,+)
(eq?,eq?))
'(init
(assign free (const 0))
(assign the-cars (op make-vector) (const 10))
(assign the-cdrs (op make-vector) (const 10))
cons-loop
(perform (op print) (const "Car-"))
(assign cons-car (op read))
(test (op eq?) (reg cons-car) (const next))
(branch (label lookup))
(perform (op print) (const "Cdr-"))
(assign cons-cdr (op read))
;(put (cons a b) in free)
(perform (op vector-set!) (reg the-cars) (reg free) (reg cons-car))
(perform (op vector-set!) (reg the-cdrs) (reg free) (reg cons-cdr))
(assign free (op +) (reg free) (const 1))
(goto (label cons-loop))
lookup
(perform (op print) (const "\n Which register? "))
;fetch car or cons of a given pair
(assign desired-reg (op read))
(perform (op print) (const "\n Car or cdr? "))
(assign car-or-cdr (op read))
(test (op eq?) (reg car-or-cdr) (const car))
(branch (label lookup-car))
(test (op eq?) (reg car-or-cdr) (const cdr))
(branch (label lookup-cdr))
(goto (label error))
lookup-car
(assign output (op vector-ref) (reg the-cars) (reg desired-reg))
(perform (op print) (reg output))
(goto (label lookup))
lookup-cdr
(assign output (op vector-ref) (reg the-cdrs) (reg desired-reg))
(perform (op print) (reg output))
(goto (label lookup))
error
(perform (op print) (const "Input must be car or cdr, looping")))))
| false |
9e65416a91a8e3f636d2225c586d972a45fa890c | 964bb56e1e21091cf07a49b51394d02fcdb018f7 | /ch02/2_20.rkt | 316beebac8eee8247c11f5ef795ce2ae6e4c35a6 | []
| no_license | halee99/SICP | fa7758f96c6363b3b262e3b695f11f1c1072c628 | de282c9f595b3813d3f6b162e560b0a996150bd2 | refs/heads/master | 2020-04-06T14:52:39.639013 | 2019-10-10T09:14:56 | 2019-10-10T09:14:56 | 157,557,554 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 435 | rkt | 2_20.rkt | #lang planet neil/sicp
(define (even_0_odd_1 x)
(if (= (remainder x 2) 0)
0
1))
(define (same_parity x . w)
(define parity (even_0_odd_1 x))
(define (rec lt)
(cond ((= (length lt) 0)
nil)
((= parity (even_0_odd_1 (car lt)))
(cons (car lt) (rec (cdr lt))))
(else
(rec (cdr lt)))))
(cons x (rec w)))
(same_parity 1 2 3 4 5 6 7)
(same_parity 2 3 4 5 6 7)
| false |
b725ed12508ecb71eaad5834930191dfa84d8f11 | 09f93071d431bcbfb8062a6289a5c07df831ede7 | /lib/all.rkt | b4405db8ccf184f91985992ba2661b7b38eb2cf6 | []
| no_license | noahvanes/Zombie-Run | a348b8a55464a73e8fb5f1facf46deac4a001b9e | 96fd2c1a8a12b0e5071ce6fa3f17600cfdd6c04d | refs/heads/master | 2016-09-11T10:29:01.529258 | 2013-03-29T22:29:37 | 2013-03-29T22:29:43 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,200 | rkt | all.rkt | ;LIB/ALL.RKT
;===========
#lang racket
;***********************************************************
;* ALL *
;* - Contains and exports all modules from the lib folder *
;* *
;* - By Noah Van Es *
;***********************************************************
(require "canvas.rkt"
"coordinates.rkt"
"timer.rkt"
"graphics-engine.rkt"
"physics-engine.rkt"
"screen-objects.rkt"
"OO-syntactic-sugar.rkt"
"scoreboard.rkt"
"queue.rkt"
"option.rkt"
"data-file.rkt"
"level.rkt")
(provide (all-from-out "canvas.rkt"
"coordinates.rkt"
"timer.rkt"
"graphics-engine.rkt"
"physics-engine.rkt"
"screen-objects.rkt"
"OO-syntactic-sugar.rkt"
"scoreboard.rkt"
"queue.rkt"
"option.rkt"
"data-file.rkt"
"level.rkt")) | false |
0ebc5d16c292d20367b310d3048bccfd75d7fa03 | c01a4c8a6cee08088b26e2a2545cc0e32aba897b | /medikanren2/neo/neo-data-import/transform-2tsv-to-4tsv-kgs/transform-node-tsv.rkt | 5224586313d47e9830606562d141bd013e1dc397 | [
"MIT"
]
| permissive | webyrd/mediKanren | c8d25238db8afbaf8c3c06733dd29eb2d7dbf7e7 | b3615c7ed09d176e31ee42595986cc49ab36e54f | refs/heads/master | 2023-08-18T00:37:17.512011 | 2023-08-16T00:53:29 | 2023-08-16T00:53:29 | 111,135,120 | 311 | 48 | MIT | 2023-08-04T14:25:49 | 2017-11-17T18:03:59 | Racket | UTF-8 | Racket | false | false | 2,476 | rkt | transform-node-tsv.rkt | #lang racket
(require "transform-utils.rkt")
(provide transform-node-tsv)
#|
Output node and node-props file formats:
<name-file>.node.scm
:ID
<name-file>.node-props.scm
:ID propname value
|#
(define transform-node-tsv
(lambda (nodes-file-import-path
node-file-export-path
node-props-file-export-path
which-kg)
(printf "transform-node-tsv called\n")
(printf "input nodes tsv: ~s\n" nodes-file-import-path)
(printf "output node tsv: ~s\n" node-file-export-path)
(printf "output node props tsv: ~s\n" node-props-file-export-path)
(define node-out
(open-output-file node-file-export-path))
(fprintf node-out ":ID\n")
(define node-props-out
(open-output-file node-props-file-export-path))
(fprintf node-props-out ":ID\tpropname\tvalue\n")
(define nodes-in
(open-input-file nodes-file-import-path))
(let* ((header (read-line nodes-in 'any))
(header (string-split header "\t" #:trim? #f)))
(let loop ((i 0)
(seen-nodes (set))
(line-str (read-line nodes-in 'any)))
(when (zero? (modulo i 100000))
(printf "processing nodes line ~s\n" i))
(cond
((eof-object? line-str)
(close-input-port nodes-in)
(close-output-port node-out)
(close-output-port node-props-out)
(printf "finished processing nodes\n\n"))
(else
(let ((line (efficient-no-trim-tab-string-split line-str)))
(let ((id (cond
[(eq? which-kg 'text-mining) (car line)]
[(eq? which-kg 'rtx-kg2) (list-ref line 7)])))
(when (set-member? seen-nodes id)
(error 'make-kg-node (format "already seen node: ~a" id)))
(fprintf node-out "~a\n" id)
(let loop-inner ((props (cdr line))
(headers (cdr header)))
(when (not (null? props))
(unless (string=? "" (car props))
(let ((propname (car headers))
(value (car props)))
(fprintf node-props-out "~a\t~a\t~a\n" id propname value)))
(loop-inner (cdr props) (cdr headers))))
(loop
(add1 i)
(set-add seen-nodes id)
(read-line nodes-in 'any))))))))))
| false |
4ecff7056ae281b660bec8039c32351767a54597 | e9d31d30081b3182855340762a161080de2ff1b1 | /src/Streams/Streams.rkt | ddbacaa4fb9d09ccc3cb28b9b7105374406c012f | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | DevWurm/gsg_numeric-sequences-scheme | 30cf732bfcfcc089fa6672545f7298f1c15326a5 | d50a957bf15a68b91081fb4f8cc8791319e5805e | refs/heads/master | 2021-05-30T22:36:47.450997 | 2016-03-11T16:59:15 | 2016-03-11T16:59:15 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,500 | rkt | Streams.rkt | #lang racket
(provide stream-car)
(provide stream-cdr)
(provide stream-cons)
(provide stream?)
(provide stream-map)
(provide stream-filter)
(provide stream-show)
(provide natural-numbers)
(provide stream-take)
(provide stream-drop)
(define stream-car car)
(define stream-cdr
(lambda (stm)
(force (cdr stm))))
(define-syntax stream-cons
(syntax-rules ()
((_ head tail) (cons head (delay tail)))))
(define stream?
(lambda (stm)
(and (pair? stm) (promise? (cdr stm)))))
(define stream-map
(lambda (proz stm)
(stream-cons (proz (stream-car stm)) (stream-map proz (stream-cdr stm)))))
(define stream-filter
(lambda (pred stm)
(if (pred (stream-car stm))
(stream-cons
(stream-car stm)
(stream-filter pred (stream-cdr stm)))
(stream-filter pred (stream-cdr stm)))))
(define stream-show
(lambda (stm n)
(if (= n 0)
(begin
(display "...") (newline)
'ok)
(begin
(display (stream-car stm)) (display ", ")
(stream-show (stream-cdr stm) (- n 1))))))
(define natural-numbers (stream-cons 1 (stream-map (lambda (n) (+ n 1)) natural-numbers)))
(define stream-take
(lambda (n stm)
(cond
((= n 0) '())
(else (cons
(stream-car stm)
(stream-take (- n 1)
(stream-cdr stm)))))))
(define stream-drop
(lambda (n stm)
(if (= n 0)
stm
(stream-drop (- n 1)
(stream-cdr stm))))) | true |
05396466f7ba1f40af27308fae696c3b1a57b935 | 2d19dc910d6635700bac6a1e5326edaa28979810 | /doc/utils/logging.scrbl | c41f2a7735edc683a82330717ab4b415febbf1cb | [
"BSD-3-Clause",
"LicenseRef-scancode-other-permissive",
"BSD-2-Clause",
"MIT"
]
| permissive | spurious/sagittarius-scheme-mirror | e88c68cd4a72c371f265f5174d4e5f7c9189fff5 | 53f104188934109227c01b1e9a9af5312f9ce997 | refs/heads/master | 2021-01-23T18:00:33.235458 | 2018-11-27T21:03:18 | 2018-11-27T21:03:18 | 2,843,561 | 5 | 2 | null | null | null | null | UTF-8 | Racket | false | false | 13,436 | scrbl | logging.scrbl | @; -*- mode:scribble; coding: utf-8; -*-
@subsection[:tag "util.logging"]{(util logging) - Logging utilities}
@define[Library]{@name{(util logging)}}
@desc{This library provides logging utilities.
@code{(util logger)} provides logger and appender style logging utilility.
Loggers determine loging level and appenders determin how to write logs.
This example shows the concept.
@codeblock{
(import (rnrs) (util logging))
;; Appenders
(define console-appender (make-appender "[~w5] ~l ~m"))
(define file-appender
(make-file-appender "[~w5] ~l ~m" "useful.log"))
;; Logger
(define logger (make-logger +debug-level+ console-appender file-appender))
;; This won't be logged since the logger level is debug.
(trace-log logger "trace log message")
(debug-log logger "debug log message")
;; If the logging requires heavy process, then it's better to
;; check the level
(when (logger-info? logger)
(let ((message (construct-message)))
(info-log logger message)))
;; stop logging
(terminate-logger! logger)
}
}
@subsubsection{Loggers}
Loggers contains collection of appenders and level of logging. Once a logger
is created, appenders and threshold can't be modified.
@define["Record Type"]{@name{<logger>}}
@define[Function]{@name{logger?} @args{obj}}
@define[Function]{@name{make-logger} @args{threshold appenders @dots{}}}
@desc{Basic logger.
Record type @code{<logger>} is a base type of loggers.
@code{logger?} returns #t if @var{obj} is a logger otherwise #f.
@code{make-logger} creates a logger whose threshold is @var{threshold} and
appenders are @var{appenders}. The @var{threshold} must be one of the
followings:
@define[Constant]{@name{+trace-level+}}
@define[Constant]{@name{+debug-level+}}
@define[Constant]{@name{+info-level+}}
@define[Constant]{@name{+warn-level+}}
@define[Constant]{@name{+error-level+}}
@define[Constant]{@name{+fatal-level+}}
@desc{Logging level constants.
The @code{+trace-level+} is the lowest level (@code{0}) and
@code{+fatal-level+} is the highest level (@code{5}). The values are integers
so users can extend the level for both side.
}
}
@define["Record Type"]{@name{<async-logger>}}
@define[Function]{@name{async-logger?} @args{obj}}
@define[Function]{@name{make-async-logger} @args{threshold appenders @dots{}}}
@desc{Asynchronous logger.
Record type @code{<async-logger>} is a type of asynchronous loggers. It inherits
the @code{<logger>}.
@code{async-logger?} returns #t if @var{obj} is an asynchronous logger
otherwise #f.
@code{make-async-logger} creates an asynchronous logger. The arguments are
passed to parent protocol.
Asynchronous logger logs message asynchronously. Means it creates a background
thread and lets it log. It is useful if a logger has a lot of appenders and
logging process may take a lot of time.
To stop background thread, @code{terminate-logger!} needs to be called. It
is users responsibility to do it.
}
@define[Function]{@name{trace-log} @args{logger message}}
@define[Function]{@name{logger-trace?} @args{logger}}
@define[Function]{@name{debug-log} @args{logger message}}
@define[Function]{@name{logger-debug?} @args{logger}}
@define[Function]{@name{info-log} @args{logger message}}
@define[Function]{@name{logger-info?} @args{logger}}
@define[Function]{@name{warn-log} @args{logger message}}
@define[Function]{@name{logger-warn?} @args{logger}}
@define[Function]{@name{error-log} @args{logger message}}
@define[Function]{@name{logger-error?} @args{logger}}
@define[Function]{@name{fatal-log} @args{logger message}}
@define[Function]{@name{logger-fatal?} @args{logger}}
@desc{Logging APIs.
@code{@var{level}-log} procedures log @var{message} on @var{logger} if
@var{logger} has its threshold lower than the @var{level}.
@code{logger-@var{level}?} procedures check if the @var{logger} has
threshold lower than @var{level}.
}
@define["Generic Function"]{@name{terminate-logger!}}
@define[Method]{@name{terminate-logger} @args{(logger <logger>)}}
@define[Method]{@name{terminate-logger} @args{(logger <async-logger>)}}
@desc{Terminates logging of the given @var{logger}.
The method calls @code{appender-finish} for all appenders of give @var{logger}.
If the @var{logger} is an asynchronous logger, then it also stops background
thread.
}
@subsubsection{Appenders}
Appenders are actual logging mechanisms. Each appender must be responsible
how to write a log message and resource management such as log file.
@define["Record Type"}{@name{<appender>}}
@define[Function}{@name{appender?} @args{obj}}
@define[Function}{@name{make-appender} @args{log-format}}
@desc{Base appender. This appender emits log messages into
@code{current-output-port}.
@code{appender?} returns #f if @var{obj} is an appender otherwise #f.
@code{make-appender} creates an appender. The @var{log-format} argument
must be a string and specifying the format of the log line.
The @var{log-format} can contains place holders stating with the character
@code{#\~}. The followings are the defined place holders:
@dl-list[]{
@dl-item[@code{#\w@var{date-format}}]{
Puts logging date on this location. The @var{date-format} specifies
format of the log. It must be a character or string which is surrounded
by @code{#\{ #\}}. The format is passed to the @code{date->string}
procedure defined in SRFI-19.
}
@dl-item[@code{#\l}]{
Puts logging level on this location.
}
@dl-item[@code{#\m}]{
Puts log message on this location.
}
}
The following example shows when @var{log-format} is @code{"[~w5] ~l ~m"}
and logging with info level.
@codeblock{
(define logger (make-logger +info-level+ (make-appender "[~w5] ~l ~m")))
(info-log logger "message of the log")
;; [2016-09-06T12:32:06] info message of the log
}
}
@define["Record Type"}{@name{<file-appender>}}
@define[Function}{@name{file-appender?} @args{obj}}
@define[Function}{@name{make-file-appender} @args{log-format filename}}
@desc{File appender. This is a subtype of @code{<appender>}. This appender
emits log messages to the file named @var{filename}.
@code{file-appender?} returns #f if @var{obj} is a file appender otherwise #f.
@code{make-file-appender} creates a file appender. The @var{log-format} is
passed to parent protocol. The file creation is done with file options of
@code{no-fail}, @code{no-truncate} and @code{append}. Thus if the file exists
then it would append the log line.
The given @var{filename} will be converted to absolute path so changing
directory will not affect the log file location.
}
@define["Generic Function"}{@name{file-appender-filename}}
@define[Method}{@name{file-appender-filename}
@args{(file-appender <file-appender>)}}
@desc{Returns log file name.}
@define["Record Type"}{@name{<rolling-file-appender>}}
@define[Function}{@name{make-rolling-file-appender}
@args{log-format filename :optional (rolling-size 10485760)}}
@define[Function}{@name{rolling-file-appender?} @args{obj}}
@desc{Rolling file appender. This is a subtype of @code{<file-appender>}.
This appender emits log message to the file named @var{filename} and if
the file size is more than @var{rolling-size}, then it renames the old file
to indexed file and new log file named @var{filename} is created.
@code{rolling-file-appender?} returns #f if @var{obj} is a rolling file
appender otherwise #f.
}
@define["Record Type"}{<daily-rolling-file-appender>}
@define[Function}{@name{make-daily-rolling-file-appender}
@args{log-format filename :optional (date-pattern "~Y-~m-~d")}}
@define[Function}{@name{daily-rolling-file-appender?} @args{obj}}
@desc{Daily rolling file appender. This is a subtype of @code{<file-appender>}.
This appender emits log message to the file named @var{filename} and if
the date string of last file modified time formatted to @var{date-pattern}
is differ from log time, then the appender rolls the old log file to
a backup file. The backup file is concatenation of @var{filename} and
last modified date.
@code{daily-rolling-file-appender?} returns #f if @var{obj} is a daily rolling
file appender otherwise #f.
}
@sub*section{Creating appenders}
Users would soon face that predefined appenders are not enough or don't satisfy
the requirement. For that case, appenders can easily be created.
The following example shows how to create an Email appender.
@codeblock{
(import (rnrs)
(rfc smtp)
(rfc smtp authentications)
(util logging)
(clos user))
(define-record-type (<smtp-appender> make-smtp-appender smtp-appender?)
(parent <appender>)
(fields (immutable connection smtp-appender-connection)
(immutable username smtp-appender-username)
(immutable password smtp-appender-password))
(protocol (lambda (p)
(lambda (format host port username password)
((p format)
(make-smtp-connection host port) username password)))))
(define-method append-log ((appender <smtp-appender>) log)
(let ((message (format-log appender log))
(conn (smtp-appender-connection appender)))
(guard (e (else (report-error e)))
(smtp-connect! conn)
(when (smtp-authentication-required? conn)
(let* ((methods (smtp-connection-authentication-methods conn))
(username (smtp-appender-username appender))
(password (smtp-appender-password appender))
(method (cond ((memq 'PLAIN methods)
(list (smtp-plain-authentication username password)))
((memq 'PASSWORD methods)
(let-values ((init&next (smtp-login-authentication username password)))
init&next))
(else #f))))
(if methods
(apply smtp-authenticate! conn method)
(begin
(smtp-disconnect! conn)
(error 'append-log "not supported")))))
(smtp-send! conn (smtp:mail
(smtp:from "Takashi Kato" "ktakashi@atmark{}ymail.com")
(smtp:to "Takashi Kato" "ktakashi@atmark{}ymail.com")
(smtp:subject "Logging with email")
message))
(smtp-disconnect! conn))))
}
The example is not really useful since it sends only the fixed recipient with
fixed format. If you need to use it, you need to modify.
Only what users need to do to create an appender is the followings:
@itemlist{
@item{Creates a record type inherits @code{<appender>}.}
@item{Specialising @code{append-log} method with the above record.}
}
@define["Generic Function"]{@name{append-log} @args{appender log}}
@desc{Core process of appending logs.
@var{log} is an object of @code{<log>} or its subtype. This method should
emit logs.
}
@define["Generic Function"]{@name{appender-finish} @args{appender}}
@desc{Finishing appender if necessary. This method is called when
@code{terminate-logger} is called.
Implementation should release resource of the @var{appender}.
}
@define["Generic Function"]{@name{format-log} @args{appender log}}
@desc{Formats log object. @var{log} is an object of @code{<log>} or its subtype.
The method must return a string representation of given @var{log}.
The default implementation handles the log format described in the
@code{make-logger} description.
}
@define[Function]{@name{appender-log-format} @args{appender}}
@desc{Returns log format of the given @var{appender}. }
@define["Record Type"]{@name{<log>}}
@define[Function]{@name{log?} @args{obj}}
@define[Function]{@name{make-log} @args{when level message}}
@define[Function]{@name{log-when} @args{log}}
@define[Function]{@name{log-level} @args{log}}
@define[Function]{@name{log-message} @args{log}}
@desc{Default log object.
@code{<log>} has 3 fields @code{when}, @code{level} and @code{message}.
By default creation, they are UTC time object, symbol of log level and
log message, respectively.
}
If you want to create own logger which handles log object differently,
then you need to specialise the following generic function with the
logger.
@define["Generic Function"]{@name{push-log} @args{logger log}}
@desc{Pushes @var{log} to appenders of the @var{logger}.}
@subsubsection{Singleton logger}
Asynchronous logger or other loggers should sometimes be singleton. This type
of thing might need to be done in users responsibility however I think it's
common idiom. So the very simple one is added to the library.
@define[Macro]{@name{define-logger-storage} @args{lookup clause* @dots{}}}
@define[Macro]{@name{define-logger-storage}
@args{(lookup register) clause* @dots{}}}
@desc{This macro defines a logger lookup procedure. If the second form is used
then, a registration procedure.
The generated procedures have the following signatures
@dl-list{
@dl-item["(@var{lookup} @var{name})"]{Looks up the logger named @var{name}}
@dl-item["(@var{register} @var{name} @var{logger})"]{
Registers the given logger with name, @var{name}}
}
The registration procedure stores the given logger to hidden storage. If
the procedure called the same name argument twice, then the latter logger
overwrites the previous one.
@code{clause*} must the following form:
@itemlist{
@item{@code{(loggers (@var{logger-name} @var{make-logger}) @dots{})}}
}
@code{loggers} is an auxiliary syntax. If the @code{loggers}
clause is specified, then the macro stores the logger @var{logger-name} which
is created by @var{make-logger} thunk as its predefined loggers.
}
| false |
4c14838b5bed1ff9cfe45e84119885c6b2409e18 | b08b7e3160ae9947b6046123acad8f59152375c3 | /Programming Language Detection/Experiment-2/Dataset/Train/Racket/inheritance-single.rkt | f524ba79148d20dd5254789a210b74d771ac1bfe | []
| 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 | 349 | rkt | inheritance-single.rkt | #lang racket
(define animal% (class object% (super-new)))
(define dog% (class animal% (super-new)))
(define cat% (class animal% (super-new)))
(define lab% (class dog% (super-new)))
(define collie% (class dog% (super-new)))
;; unit tests
(require rackunit)
(check-true (is-a? (new dog%) animal%))
(check-false (is-a? (new collie%) cat%))
| false |
0b63cfc4b1fbca4f22eb8f63f281a4b7a9ef88d7 | 835673d94581169383461b031b830ce13525b27a | /src/untask/properties/effort.rkt | 1418ae314944f918e30bdb795f1debd4bd36ba43 | []
| no_license | c2d7fa/untask | f3b8301a87c967637fbb0732fc2d66c2eeca24e9 | 709f6c88a654c307888929440e056baf1c0ae45f | refs/heads/master | 2021-12-26T22:57:25.383515 | 2021-04-02T23:18:06 | 2021-04-02T23:18:06 | 244,209,340 | 3 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 310 | rkt | effort.rkt | #lang racket
(provide effort-property)
(require untask/src/squiggle
(prefix-in p: untask/src/untask/core/property)
(prefix-in v: untask/src/untask/core/value))
(define effort-property
(~> (p:property #:name 'effort
#:type 'number)
(p:default (v:make-number 0))))
| false |
156f7e4f833316cca89021059f7a3f0b849256e8 | 43ae954c53f6be3e19133e99102bd766d27ad69a | /neural-network-final-for-windows.rkt | eb0344fbcbadf58dc68bd74d1cfc7ef5762ba7c3 | []
| no_license | TankKevin/neural-network | ca63a74493322d4057e10070a742a285e56950b2 | 89215f7dc84e2fc25577a9fc7f8485542c046e33 | refs/heads/master | 2020-08-01T04:08:03.621392 | 2019-09-25T13:55:03 | 2019-09-25T13:55:03 | 210,857,612 | 2 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 8,077 | rkt | neural-network-final-for-windows.rkt | #lang racket
;;; The code is divided into
;;; Part 1 - Neuron Network Functions
;;; Part 2 - Layer Functions
;;; Part 3 - Mlp Functions
;;; Part 4 - Calculation Functions
;;; Part 5 - Testing with XOR Function
;;; Part 6 - Testing with Simple-MNIST Dataset
;;; Part 1 - Neuron Network Functions
;; Create a new neuron
(define (new-neuron)
(let ((theta (rand-theta))
(backward '())
(cache #f)
(trained #f)
(train-sum 0))
(lambda ([method 'activate] [arg '()])
(cond
((eq? method 'backward)
(push! (list arg (rand-weight)) backward))
((eq? method 'set)
(set! cache arg))
((eq? method 'reset)
(set! cache #f)
(set! trained #f)
(set! train-sum 0))
((eq? method 'sum)
(set! train-sum (+ train-sum arg)))
((eq? method 'list)
(map (lambda (el) (cadr el)) backward))
((eq? method 'train)
(if (not trained)
(set! backward (train backward (* cache (- 1 cache) train-sum)))
(set! trained #t)))
((eq? method 'activate)
(if cache
cache
(begin
(set! cache (sigmoid (- (sum-weight backward) theta)))
cache)))))))
;; Train neurons
(define (train lst err)
(if (empty? lst)
'()
(let ((n (caar lst))
(w (cadar lst)))
(n 'sum (* err w))
(cons (list n (+ w (* (n) err)))
(train (cdr lst) err)))))
;;; Part 2 - Layer Functions
;; Create a new neuron layer
(define (new-layer n)
(if (= n 0) '()
(cons (new-neuron) (new-layer (- n 1)))))
;; Link two layers together DDD
(define (link-layers left right)
(if (or (empty? left) (empty? right))
'()
(begin
(map (lambda (e) ((car right) 'backward e)) left)
(link-layers left (cdr right)))))
;; Set a layer of neurons (activated/inactivated)
(define (set-layer layer in)
(if (empty? layer) '()
(begin
((car layer) 'set (car in))
(set-layer (cdr layer) (cdr in)))))
;; Reset a single layer (inactivate it)
(define (reset-layer layer)
(if (empty? layer)
'()
(begin
((car layer) 'reset)
(reset-layer (cdr layer)))))
;; Run 'train on each neuron in layer
(define (train-layer layer)
(if (empty? layer)
'()
(begin
((car layer) 'train)
(train-layer (cdr layer)))))
;; Used in 'run-mlp & 'train-mlp
(define (run-layer layer)
(if (empty? layer) '()
(cons ((car layer)) (run-layer (cdr layer)))))
;; Used in 'train-mlp procedure
(define (sum-layer layer out desired a)
(if (empty? layer)
'()
(begin
((car layer) 'sum (* a (- (car desired) (car out))))
(cons (car out)
(sum-layer (cdr layer)
(cdr out)
(cdr desired)
a)))))
;; Train each layer in reversed mlp
(define (train-layers rev-mlp)
(if (empty? rev-mlp)
'()
(begin
(train-layer (car rev-mlp))
(train-layers (cdr rev-mlp)))))
;;; Part 3 - Mlp Functions
;; Create new mlp
(define (new-mlp spec)
(let ((mlp (map new-layer spec)))
(link-mlp mlp)
mlp))
;; Link up layers in an unlinked mlp
(define (link-mlp mlp)
(if (= (length mlp) 1) '()
(begin
(link-layers (car mlp) (cadr mlp))
(link-mlp (cdr mlp)))))
;; Reset each neuron in mlp (inactivate it)
(define (reset-mlp mlp)
(if (empty? mlp)
'()
(begin
(reset-layer (car mlp))
(reset-mlp (cdr mlp)))))
;; Receive the output of mlp
(define (run-mlp mlp in)
(set-layer (car mlp) in)
(let ((out (run-layer (last mlp))))
(reset-mlp mlp)
out))
;; Train mlp
(define (train-mlp mlp in desired [a 1])
(set-layer (car mlp) in)
(let ((out (run-layer (last mlp))))
(sum-layer (last mlp) out desired a)
(train-layers (reverse mlp))
(reset-mlp mlp)
out))
;;; Part 4 - Calculation Functions
;; Sigmoid function
(define (sigmoid x)
(/ (+ 1.0 (exp (- x)))))
;; Return a new random weight in (-1.2, 1.2)
(define (rand-weight)
(- (* (random) 1.2) 0.6))
;; Return a new random threshold in (-1.2, 1.2)
(define (rand-theta)
(- (* (random) 1.2) 0.6))
;; Define push! syntax
(define-syntax push!
(syntax-rules ()
((push item place)
(set! place (cons item place)))))
;; Sum weight
(define (sum-weight 1st)
(if (empty? 1st) 0
(+ (* ((caar 1st)) (cadar 1st))
(sum-weight (cdr 1st)))))
;; Round to binary 1's and 0's
(define (round-output out)
(map (compose inexact->exact round) out))
;;; Part 5 - Testing with XOR Function
;; Construct mlp
(define mlp (new-mlp '(2 8 1)))
;; Train mlp. Print #t if it succeeds.
(do ((i 1 (+ i 1)))
((> i 10000) #t)
(train-mlp mlp '(0 0) '(0))
(train-mlp mlp '(0 1) '(1))
(train-mlp mlp '(1 0) '(1))
(train-mlp mlp '(1 1) '(0)))
;; Test mlp
(run-mlp mlp '(0 0))
(run-mlp mlp '(0 1))
(run-mlp mlp '(1 0))
(run-mlp mlp '(1 1))
;; Round the testing mlp result, and it should print the following
;'(0)
;'(1)
;'(1)
;'(0)
(round-output (run-mlp mlp '(0 0)))
(round-output (run-mlp mlp '(0 1)))
(round-output (run-mlp mlp '(1 0)))
(round-output (run-mlp mlp '(1 1)))
;;; Part 6 - Testing with Simple-MNIST Dataset
;; Toolbox Functions
; Transfer a decimal digit number to a 10-element binary list (e.g. 4 -> '(0 0 0 1 0 0 0 0 0 0))
(define (digit-transfer n)
(define (digit-iter r i)
(define flag
(if (= i n) 1 0))
(if (> i 9)
'()
(cons flag (digit-iter r (+ i 1)))))
(digit-iter '() 0))
; Transfer a list of ones and zeros to a digit by returning the sequence of the first 1 (e.g. '(0 0 0 1 0 0 0 0 0 0) -> 4)
(define (digit-reverse lst)
(define (digit-iter a-lst i)
(if (eq? (cdr a-lst) '())
'n
(if (= (car a-lst) 1)
i
(digit-iter (cdr a-lst) (+ i 1)))))
(digit-iter lst 0))
;; Train mlp with data in train_mnist.csv file
(require "csv-reader.rkt")
(define file-path "train_mnist.csv")
(define file-path-test "test_mnist.csv")
(define input-file (open-input-file file-path #:mode 'text ))
(define input-file-test (open-input-file file-path-test #:mode 'text ))
; Make a csv-reader
(define csv-reader (make-csv-reader #:doublequote #f
#:quoting #f))
; Return a list of array lists (consisting of string data) from given input-file
(define dataset (for/list ([m (in-producer (csv-reader input-file))]
#:break (eof-object? m))
m))
(define dataset-test (for/list ([m (in-producer (csv-reader input-file-test))]
#:break (eof-object? m))
m))
; Create a new mlp
(define my-mlp (new-mlp '(39 40 40 10)))
; Train the mlp with dataset
(define (train-data dataset)
; Map dataset with train-list
(define (train-list lst)
; Train the mlp one time with one list like '(5 3.13 4.21 ... 1.21)
(train-mlp my-mlp (cdr lst) (digit-transfer (car lst))))
(map train-list dataset))
; Test the mlp with given data
(define (test-data dataset)
; Map dataset with test-list
(define (test-list lst)
; E.g., 3.18E+02 -> 318
(set! lst (map (lambda(e) (string->number e 10 'read 'decimal-as-inexact)) lst))
; Test the mlp
(round-output (run-mlp my-mlp (cdr lst))))
(map test-list dataset))
;; Implement training & testing
; Set dataset to an numerical version, e.g.,
; from '("5" "3.13" "4.21" ... "1.21")
; to '( 5 3.13 4.21 ... 1.21 )
(set! dataset
(map (lambda(lst)
; E.g., 3.18E+02 -> 318
(set! lst (map (lambda(e) (string->number e 10 'read 'decimal-as-inexact)) lst))
lst) dataset))
; Train mlp for many times
(do ((i 1 (+ i 1)))
((> i 100) #t)
(train-data dataset) (write i))
; Test mlp with dataset
; If you want to see the binary version (a 10 * 10 matrix), uncomment the following line
;(test-data dataset-test)
; If you want to see the decimal version (recommended), uncomment the following line
(map digit-reverse (test-data dataset-test))
| true |
38951573f65dea0f9b1be7e621d3a5dc851b8d16 | a148422eee91a5c6105427ef2c48c02bd4e3eaae | /site/stories/coaches/first-day-email.rkt | 2233025fc4ad0b5739cdc72472db0d575d01a525 | []
| no_license | thoughtstem/metapolis-stories | 05ddc38843904a05bb43eaccf4af566c5cc901ef | 3e4af8559c98096082e322fda75512274e0e4d8e | refs/heads/master | 2020-08-30T09:45:39.680415 | 2019-12-11T20:15:16 | 2019-12-11T20:15:16 | 218,338,179 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,412 | rkt | first-day-email.rkt | #lang at-exp metapolis-stories/lang/story
(define title "First Day Email")
(define place places:bruces-house)
(define characters (list characters:bruce))
(define time (unnamed-time
(moment 2021 3 23)
(moment 2021 3 23)))
(define links '())
@paras{
@heading{Tuesday, March 23rd}
In two days, Bruce's very first class is starting up! He will be coaching an after school program for K-2nd graders at Lovelace Elementary School. Bruce is excited, but also nervous!
Bruce receives an email from Meta Coders with the subject "Your Lovelace Elementary Class!". Upon opening it, he sees there is a lot of information and, at first, it only increases his nerves. But as Bruce reads the email, he sees answers to a lot of the questions he had -- and several questions he didn't think to have! It tells him:
@ul[
@li{Where he should pick up equipment and when}
@li{Where he should park}
@li{What classroom he is in}
@li{How many students are in the class}
@li{Where he should go when he arrives}
@li{How students will get to and leave class}
@li{...it even includes a map of the school with important locations marked on it and the class roster with all student information!}]
Armed with new information on what to expect at Lovelace Elementary, Bruce feels calmer and ready for his first class day!
}
| false |
a9878ce0a192e30e3de18f327a50cc49b12a62a0 | 46f5e4ef0d10fd5ccb1bee904e933d837420ab63 | /logbook/export.rkt | 4c7257a0b47ca4677fc415886958555138abfaee | []
| no_license | tonyg/racket-logbook | 715aefb0327852fe0fa1e7fd886ac7ddecc0ee68 | 6772003b5e8663426559d245451b82ec748c07c7 | refs/heads/master | 2016-09-15T15:31:12.025257 | 2016-03-16T16:25:31 | 2016-03-16T16:25:31 | 19,389,326 | 1 | 2 | null | 2016-03-15T20:40:36 | 2014-05-02T21:35:15 | Racket | UTF-8 | Racket | false | false | 1,752 | rkt | export.rkt | #lang racket/base
(require racket/match)
(require "main.rkt")
(provide export-entry
import-entry)
(define (export-entry E)
(match-define (<logbook-entry> _ _ project name type created-time) E)
`(logbook-entry (version 0)
(project ,project)
(name ,name)
(type ,type)
(created-time ,created-time)
(tables
,@(for/list [(T (reverse (logbook-tables E)))] ;; go newest-last
(match-define (<logbook-table> _ _ _ name type column-spec created-time) T)
`(table (name ,name)
(type ,type)
(column-spec ,column-spec)
(created-time ,created-time)
(rows
,@(for/list [(R (raw-logbook-data T))]
(match-define (<logbook-datum> _ _ _ label data created-time) R)
`(,label ,data ,created-time))))))))
(define (import-entry book X)
(match X
[`(logbook-entry (version 0)
(project ,project)
(name ,name)
(type ,type)
(created-time ,created-time)
(tables ,tables ...))
(log-info "logbook: Updating entry ~a/~a:~a" project name type)
(define E (logbook-entry book project name type
#:create? #t
#:created-time created-time))
(define entry-name name)
(for [(TX tables)]
(match TX
[`(table (name ,name)
(type ,type)
(column-spec ,column-spec)
(created-time ,created-time)
(rows ,rows ...))
(log-info "logbook: Updating table ~a/~a/~a:~a" project entry-name name type)
(define T (logbook-table E name type
#:column-spec column-spec
#:create? #t
#:created-time created-time))
(for [(RX rows)]
(match RX
[`(,label ,data ,created-time)
(raw-logbook-datum! T data #:label label #:created-time created-time)]))]))]))
| false |
0c38edb97181fcc30aa90fa9137632c5eb816991 | 1edc7fb8cb634a1e1b9b32dbd49cc9b8cc1b1b15 | /docu/parse.scrbl | 252ae80d1a19276e6a6527ef508b35f3a484cdcd | []
| no_license | ruggiec/eocs-assembler | 87e8ba810a611c61b83d129fd4a899d2567e75c0 | 7c3203c8bd2b59c8a15c9ea04a52de3fe20ed326 | refs/heads/master | 2020-04-03T07:16:17.326400 | 2012-02-29T18:19:08 | 2012-02-29T18:19:08 | 3,653,107 | 2 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 3,472 | scrbl | parse.scrbl | #lang scribble/doc
@(require
scribble/core
scribble/manual
scribble/bnf
"about-the-assembler.rkt")
@title[#:tag "parse"]{Pass: Parsing data}
The first thing we need to do in our assembler is transform
our list of strings into a list of data structures. The strings
in our files take one of several forms:
@(itemize
@item{dest=comp;jump}
@item{comp;jump}
@item{dest=comp}
@item{comp}
@item{@@"@"number}
@item{@@"@"symbol}
@item{(label)}
)
In each case, we need to convert these into the appropriate data structure:
@(itemize
@item{The first four become C instructions (substituting @tt{'no-dest}, @tt{'no-comp},
@tt{'no-jump} where there are no destinations, computations, or jumps specified).}
@item{The next two become A instructions; the fact that some are numeric and some are
symbolic does not matter to us at this point. We will treat them the same
at this point, and differentiate them in later passes.}
@item{Labels will be read in as @tt{label} structures; we'll drop the parens in parsing, and just
store the contents of the parentheses in a @tt{label} structure.}
)
In addition, you need to handle blank lines. When you find one, return @tt{'blank-line}.
We will filter this symbol out of our instruction stream in a later pass.
@section{Writing the parser}
The module @tt{asm-pass-parse.rkt} exports one function, @tt{parse}.
This code is provided for you.
@#reader scribble/comment-reader
(racketblock
;; CONTRACT
;; parse :: list-of strings -> list-of ASM structures
;; PURPOSE
;; Takes in a list of strings and returns a list
;; of ASM structures (and a symbol or two).
(define (parse los)
(cond
[(empty? los) '()]
[else
(cons (parse-one-line (first los))
(parse (rest los)))]))
)
Your task is to write the function @tt{parse-one-line}. This function
takes in a single string, and returns a parsed version of that string.
You can use @tt{match} or @tt{cond} to structure this function; because
our assembly is a very simple language, we can use regular expressions
to match each case. You should have 8 cases in your parser---one for
labels, three for C instructions, two for A instructions, and one
to handle blank lines.
@section{Starter Code}
The following code is provided to get you started (if you choose to use it).
@#reader scribble/comment-reader
(racketblock
;; CONTRACT
;; parse-one-line :: string -> (U A? C? label? symbol?)
;; PURPOSE
;; Parses a string representing a single assembly
;; language instruction.
(define (parse-one-line asm)
(match asm
;; Handle blank lines.
[(regexp "^\\s*$") 'blank-line]
;; If all else fails, emit a parse bogon.
[else 'parse-bogon]))
)
@section{Testing your Parser}
In a second tab in DrRacket, open up the file @tt{test-parse.rkt}. You can change two parameters: whether you want textual testing or GUI testing, and whether you want the output to be noisy. The defaults work well, and will open a graphical browser of your test results.
Initially, you will see test results that look like this:
@(centered
(image "images/test-failure.png" #:scale .7))
Your tests will fail, and you can browse the results to exactly why each test failed. When you
have finished implementing your parser, you should get test results that look like the following:
@(centered
(image "images/test-success.png" #:scale .7))
| false |
207b46c976a1840f1fc446658138b309a1985393 | 2de123cae13c5c8d16244d520b545376c0d1258e | /ch4/exercise4.60.rkt | f1d8d5c09bedf8fc392136de7177c9dae5653db3 | []
| no_license | ratser/SICP | a1119212a1b01efdb545b842f506348e74de160e | 76e1b86635f2f4711e3397ed847e6bbd9e2ac487 | refs/heads/master | 2021-01-10T01:52:11.026721 | 2013-10-29T04:46:47 | 2013-10-29T04:46:47 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 342 | rkt | exercise4.60.rkt | ;;; exercise 4.60
(rule (lives-near ?p1 ?p2)
(and (address ?p1 (?town . ?addr1))
(address ?p2 (?town . ?addr2))
(list-value symbol-list> ?p1 ?p2)))
;;; ordering the names will eliminate repetition of pairs
;;; the function symbol-list> compares two lists of symbols
;;; but I am not able to implement it currently | false |
ff45ada59716f3fa671307841b5cc17ed870d5a6 | 662e55de9b4213323395102bd50fb22b30eaf957 | /dissertation/QA/math-test/wavelet/natural/haar-1d.rkt | 93b3cc0cc8d4cb5bfa60a5da75c3d49181344000 | []
| 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 | 6,977 | rkt | haar-1d.rkt | #lang typed/racket
;; this file implements a 1-d linear Haar wavelet transform.
;; Tests live in another file, that compares the result of
;; this with a non-fast transform
(require math/array
typed/rackunit
plot
racket/block)
(provide fast-haar-transform
fast-haar-inverse-transform
expand-array
haar-reconstruct-step
power-of-2?)
;; the basic idea here is that--for the Haar basis, at least--all you
;; care about is the sum of some subset of values. This means that after
;; you've extracted all of the high-frequency terms, you can compress
;; by a factor of two without affecting your ability to compute
;; the lower-frequency terms.
;; given a 1-d array whose length is a power of two,
;; use high-freq and squeeze to build a linear-time transform:
(: fast-haar-transform ((Array Float) -> (Array Float)))
(define (fast-haar-transform arr)
(unless (= 1 (vector-length (array-shape arr)))
(raise-argument-error 'fast-haar-transform
"Array with one dimension"
0 arr))
(unless (power-of-2? (vector-ref (array-shape arr) 0))
(raise-argument-error 'fast-haar-transform
"Array whose length is a power of 2"
0 arr))
(: orig-len Positive-Float)
(define orig-len
(match (exact->inexact (vector-ref (array-shape arr) 0))
[(? positive-float? n) n]
[else (error "internal error, length of array not positive-Float")]))
(define sub-arrays
(let loop : (Listof (Array Float)) ([arr arr])
(: len Positive-Float)
(define len
(match (exact->inexact (vector-ref (array-shape arr) 0))
[(? positive-float? n) n]
[else (error "internal error, length of array not positive-Float")]))
(: k Float)
(define k (sqrt
(match (/ 1.0 (* orig-len (/ 2.0 len)))
[(? positive-float? n) n]
[else (error "internal error, expected positive-Float")])))
(define hf (high-freq arr k))
(cons hf
(cond [(= len 2.0)
;; must special-case vector zero
(list
(list->array
(list
(* k
(+ (array-ref arr (vector 0))
(array-ref arr (vector 1)))))))]
[else
(loop (squeeze arr))]))))
(arrays-join (reverse sub-arrays)))
;; given a one-dimensional array of even length l and a multiplier k,
;; construct a new one-dimensional array of length l/2 where each term
;; is formed my multiplying k by the sum of a pointwise multiple of
;; pair in the array by the Haar Wavelet pair 1,-1
(: high-freq ((Array Float) Float -> (Array Float)))
(define (high-freq arr k)
(define old-len (vector-ref (array-shape arr) 0))
(: new-len Natural)
(define new-len
(match (/ old-len 2)
[(? exact-integer? n) n]
[else (raise-argument-error 'high-freq "vector of size divisible by 2"
0 arr k)]))
(for/array: #:shape (vector new-len)
([i (in-range new-len)]) : Float
(ann (* k (- (array-ref arr (vector (* 2 i)))
(array-ref arr (vector (add1 (* 2 i))))))
Float)))
;; given a one-dimensional array of even length l, construct a new
;; vector of length l/2 where each term is the sum of two consecutive
;; terms of the old array
(: squeeze ((Array Float) -> (Array Float)))
(define (squeeze arr)
(define new-len (/ (vector-ref (array-shape arr) 0) 2))
(for/array ([i (in-range new-len)]) : Float
(+ (array-ref arr (vector (* 2 i)))
(array-ref arr (vector (add1 (* 2 i)))))))
;; given a list of 1-d arrays, produce a new array containing
;; the elements from the arrays in order
(: arrays-join (All (T) ((Listof (Array T)) -> (Array T))))
(define (arrays-join as)
(define elements
(foldr (ann sequence-append
((Sequenceof T) (Sequenceof T) -> (Sequenceof T)))
'()
(map (ann in-array ((Array T) -> (Sequenceof T)))
as)))
(for/array ([v elements]) : T
v))
(define-predicate nonnegative-Float? Nonnegative-Float)
(define-predicate positive-float? Positive-Float)
;;;;;;;
;;
;; INVERSE TRANSFORM
;;
;;;;;;;
;; double the length of an array by duplicating each
;; element
(: expand-array (All (T) ((Array T) -> (Array T))))
(define (expand-array arr)
(for/array: #:shape (vector (* 2 (array-size arr)))
([i (in-range (* 2 (array-size arr)))]) : T
(array-ref arr (vector (floor (/ i 2))))))
;; use a subset of the elements in a given array of haar coefficients
;; to reconstruct a larger array
(: haar-reconstruct-step ((Array Real) (Array Real) Index Real ->
(Array Real)))
(define (haar-reconstruct-step accum coefficients offset mult)
(define adjustment-array
(for/array ([i (in-range (array-size accum))]) : Real
(define coefficient
(* mult
(array-ref coefficients
(vector (+ offset
(floor (/ i 2)))))))
(cond [(= 0 (modulo i 2)) coefficient]
[else (- coefficient)])))
(array+ accum
adjustment-array))
;; given a 1-d array of reals
;; whose length is a power of 2, perform an inverse
;; wavelet transform.
(: fast-haar-inverse-transform ((Array Real) -> (Array Real)))
(define (fast-haar-inverse-transform arr)
(unless (= 1 (vector-length (array-shape arr)))
(raise-argument-error 'fast-haar-transform
"Array with one dimension"
0 arr))
(unless (power-of-2? (vector-ref (array-shape arr) 0))
(raise-argument-error 'fast-haar-transform
"Array whose length is a power of 2"
0 arr))
(define init-array (make-array #(1)
(* (array-ref arr (vector 0))
(sqrt (/ 1 (array-size arr))))))
(let loop ([offset : Index 1]
[accum init-array])
(cond [(= offset (array-size arr)) accum]
[else
(define expanded (expand-array accum))
(define multiplier (sqrt (/ (array-size accum) (array-size arr))))
(loop (ensure-index (+ offset (array-size accum)))
(haar-reconstruct-step expanded
arr offset
multiplier))])))
(: ensure-index (Nonnegative-Fixnum -> Index))
(define (ensure-index i)
(cond [(index? i) i]
[else (raise-argument-error 'ensure-index
"Index"
0 i)]))
(: power-of-2? (Nonnegative-Integer -> Boolean))
(define (power-of-2? p)
(cond [(= p 1) true]
[(= (modulo p 2) 0)
(power-of-2? (floor (/ p 2)))]
[else false])) | false |
b88061426a4595d36d07ea9b3c1f48767ffaa436 | 964bb56e1e21091cf07a49b51394d02fcdb018f7 | /ch02/2_70.rkt | 1cbc2145c2bddbcd46b39e813d318e6660d3ce1d | []
| no_license | halee99/SICP | fa7758f96c6363b3b262e3b695f11f1c1072c628 | de282c9f595b3813d3f6b162e560b0a996150bd2 | refs/heads/master | 2020-04-06T14:52:39.639013 | 2019-10-10T09:14:56 | 2019-10-10T09:14:56 | 157,557,554 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,004 | rkt | 2_70.rkt | #lang racket
(require "huffman.rkt")
(define tree
(generate-huffman-tree '((A 2) (NA 16)
(BOOM 1) (SHA 3)
(GET 2) (YIP 9)
(JOB 2) (WAH 1))))
; 方便起见 都使用大写
(encode '(GET A JOB) tree)
; '(1 1 1 1 1 1 1 0 0 1 1 1 1 0)
; 14
(encode '(SHA NA NA NA NA NA NA NA NA) tree)
; '(1 1 1 0 0 0 0 0 0 0 0 0)
; 12
(encode '(WAH YIP YIP YIP YIP YIP YIP YIP YIP YIP) tree)
; '(1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0)
; 23
(encode '(SHA BOOM) tree)
; '(1 1 1 0 1 1 0 1 1)
; 9
; 编码后信息所需的二进制位数量为 14 * 2 + 12 * 2 + 23 + 9 = 84
; 其中 前两个出现了两次,所以数量要乘以 2
; 如果采用定长编码,那么 8 个字符每个最少每个要占用 3 个二进制位,
; 而未编码的原文总长度为 3 * 2 + 9 * 2 + 10 + 2 = 36
; 那么使用定长编码所需的二进制位为 36 * 3 = 108
; 使用 huffman 编码比使用定长编码节省了 24 个二进制位
| false |
b6f5140187fa0d0bb8eae89f4c4ea2f5f12dde0a | 6ad6a306035858ad44e5e4f71a10ce23f83d781b | /2/63.rkt | 38a503571719bf4252a35128d7a70377cbda2e55 | []
| no_license | lzq420241/sicp_exercise | 0217b334cef34910590656227db26a486eff907f | 84839a30376cbc263df6ec68883f3d6d284abd41 | refs/heads/master | 2020-04-24T01:28:31.427891 | 2017-04-24T00:01:33 | 2017-04-24T00:01:33 | 66,690,658 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,739 | rkt | 63.rkt | #lang sicp
(define (entry tree) (car tree))
(define (left-branch tree) (cadr tree))
(define (right-branch tree) (caddr tree))
(define (make-tree entry left right)
(list entry left right))
(define (tree->list-1 tree)
(if (null? tree)
'()
(append (tree->list-1 (left-branch tree))
(cons (entry tree)
(tree->list-1 (right-branch tree))))))
(define (tree->list-2 tree)
(define (copy-to-list tree result-list)
(if (null? tree)
result-list
(copy-to-list (left-branch tree)
(cons (entry tree)
(copy-to-list (right-branch tree)
result-list)))))
(copy-to-list tree '()))
(define tree1 (make-tree 7 (make-tree 3 (make-tree 1 nil nil) (make-tree 5 nil nil)) (make-tree 9 nil (make-tree 11 nil nil))))
(define tree2 (make-tree 3 (make-tree 1 nil nil) (make-tree 7 (make-tree 5 nil nil) (make-tree 9 nil (make-tree 11 nil nil)))))
(define tree3 (make-tree 5 (make-tree 3 (make-tree 1 nil nil) nil) (make-tree 9 (make-tree 7 nil nil) (make-tree 11 nil nil))))
(display (tree->list-1 tree1))
(newline)
(display (tree->list-2 tree1))
(newline)
(display (tree->list-1 tree2))
(newline)
(display (tree->list-2 tree2))
(newline)
(display (tree->list-1 tree3))
(newline)
(display (tree->list-2 tree3))
(newline)
(define (my-timer func arg count)
(define (run-it round)
(cond ((> round 0)
(run-it (- round 1))
(func arg))))
(define (report-elapse start-time)
(run-it count)
(display "***")
(display (- (runtime) start-time))
(newline))
(report-elapse (runtime)))
(my-timer tree->list-2 tree1 100000)
(my-timer tree->list-1 tree1 100000)
| false |
fc44fbbba16be7bc3453bcc1c151c1c17ce99374 | e872962b1fb9b3c4b78e739e603e878bd29bde7c | /libgit2/include/submodule.rkt | e1730ac5b00e660ae647906323582262c2868098 | [
"MIT"
]
| permissive | LiberalArtist/libgit2 | f0e266a85e205df30f6fab1c7876a6e3d85e9ba6 | af2670e94f8fa9b74aab98590c40bbd282fa0292 | refs/heads/main | 2023-08-06T23:40:18.395064 | 2023-07-08T19:23:25 | 2023-07-08T19:23:25 | 165,514,201 | 0 | 0 | MIT | 2019-01-13T14:21:34 | 2019-01-13T14:21:34 | null | UTF-8 | Racket | false | false | 4,647 | rkt | submodule.rkt | #lang racket
(require ffi/unsafe
ffi/unsafe/alloc
"remote.rkt"
"checkout.rkt"
"repository.rkt"
(submod "oid.rkt" private)
(submod "repository.rkt" free) ;; TODO avoid this
(only-in "types.rkt"
_git_repository
_git_submodule
_git_submodule_recurse_t
_git_submodule_ignore_t
_git_submodule_update_t)
"../private/buffer.rkt"
"../private/base.rkt")
(provide (all-defined-out))
; Types
(define-bitmask _git_submodule_status_t
[GIT_SUBMODULE_STATUS_IN_HEAD = #x0001]
[GIT_SUBMODULE_STATUS_IN_INDEX = #x0002]
[GIT_SUBMODULE_STATUS_IN_CONFIG = #x0004]
[GIT_SUBMODULE_STATUS_IN_WD = #x0008]
[GIT_SUBMODULE_STATUS_INDEX_ADDED = #x0010]
[GIT_SUBMODULE_STATUS_INDEX_DELETED = #x0020]
[GIT_SUBMODULE_STATUS_INDEX_MODIFIED = #x0040]
[GIT_SUBMODULE_STATUS_WD_UNITIALIZED = #x0080]
[GIT_SUBMODULE_STATUS_WD_ADDED = #x0100]
[GIT_SUBMODULE_STATUS_WD_DELETED = #x0200]
[GIT_SUBMODULE_STATUS_WD_MODIFIED = #x0400]
[GIT_SUBMODULE_STATUS_WD_INDEX_MODIFIED = #x0800]
[GIT_SUBMODULE_STATUS_WD_WD_MODIFIED = #x1000]
[GIT_SUBMODULE_STATUS_WD_UNTRACKED = #x2000])
(define _git_submodule_cb
(_fun _git_submodule _string _bytes -> _int))
(define-cstruct _git_submodule_update_opts
([version _uint]
[checkout_opts _git_checkout_opts]
[fetch_opts _git_fetch_opts]
[allow_fetch _int]))
(define GIT_SUBMODULE_UPDATE_OPTS_VERSION 1)
; Functions
(define-libgit2/check git_submodule_add_finalize
(_fun _git_submodule -> _int))
(define-libgit2/alloc git_submodule_add_setup
(_fun _git_submodule _git_repository _string _string _int -> _int))
(define-libgit2/check git_submodule_add_to_index
(_fun _git_submodule -> _int))
(define-libgit2 git_submodule_branch
(_fun _git_submodule -> _string))
(define-libgit2 git_submodule_fetch_recurse_submodules
(_fun _git_submodule -> _git_submodule_recurse_t))
(define-libgit2/check git_submodule_foreach
(_fun _git_repository _git_submodule_cb _bytes -> _int))
(define-libgit2/dealloc git_submodule_free
(_fun _git_submodule -> _void))
(define-libgit2 git_submodule_head_id
(_fun _git_submodule -> _git_oid-pointer))
(define-libgit2 git_submodule_ignore
(_fun _git_submodule -> _git_submodule_ignore_t))
(define-libgit2 git_submodule_index_id
(_fun _git_submodule -> _git_oid-pointer))
(define-libgit2/check git_submodule_init
(_fun _git_submodule _bool -> _int))
(define-libgit2/alloc git_submodule_location
(_fun _uint _git_submodule -> _int))
(define-libgit2/alloc git_submodule_lookup
(_fun _git_submodule _git_repository _string -> _int)
git_submodule_free)
(define-libgit2 git_submodule_name
(_fun _git_submodule -> _string))
(define-libgit2/alloc git_submodule_open
(_fun _git_repository _git_submodule -> _int)
git_repository_free)
(define-libgit2 git_submodule_owner
(_fun _git_submodule -> _git_repository)
#:wrap (allocator git_repository_free))
(define-libgit2 git_submodule_path
(_fun _git_submodule -> _string))
(define-libgit2/check git_submodule_reload
(_fun _git_submodule _bool -> _int))
(define-libgit2/alloc git_submodule_repo_init
(_fun _git_repository _git_submodule _bool -> _int))
(define-libgit2/check git_submodule_resolve_url
(_fun (_git_buf/bytes-or-null) _git_repository _string -> _int))
(define-libgit2/check git_submodule_set_branch
(_fun _git_repository _string _string -> _int))
(define-libgit2/check git_submodule_set_fetch_recurse_submodules
(_fun _git_repository _string _git_submodule_recurse_t -> _int))
(define-libgit2/check git_submodule_set_ignore
(_fun _git_repository _string _git_submodule_ignore_t -> _int))
(define-libgit2/check git_submodule_set_update
(_fun _git_repository _string _git_submodule_update_t -> _int))
(define-libgit2/check git_submodule_set_url
(_fun _git_repository _string _string -> _int))
(define-libgit2/alloc git_submodule_status
(_fun _uint _git_repository _string _git_submodule_ignore_t -> _int))
(define-libgit2/check git_submodule_sync
(_fun _git_submodule -> _int))
(define-libgit2/check git_submodule_update
(_fun _git_submodule _bool _git_submodule_update_opts-pointer/null -> _int))
(define-libgit2/check git_submodule_update_options_init
(_fun _git_submodule_update_opts-pointer _uint -> _int))
(define-libgit2 git_submodule_update_strategy
(_fun _git_submodule -> _git_submodule_update_t))
(define-libgit2 git_submodule_url
(_fun _git_submodule -> _string))
(define-libgit2 git_submodule_wd_id
(_fun _git_submodule -> _git_oid-pointer/null))
| false |
9c0457e09a614affcdb542ccb2647d209d3d58b0 | 5bbc152058cea0c50b84216be04650fa8837a94b | /tools/print-missing-benchmarks.rkt | fc16b7f9e1e63f38ef6444cde2b51c83ab108bcb | []
| 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,723 | rkt | print-missing-benchmarks.rkt | #lang racket/base
(require racket/format racket/set)
(define (natural->bitstring n #:pad pad-width)
(~r n #:base 2 #:min-width pad-width #:pad-string "0"))
;; Convert a binary string to a natural number
(define (bitstring->natural str)
(define N (string-length str))
(for/sum ([i (in-range N)])
(define c (string-ref str (- N (add1 i))))
(if (equal? #\1 c)
(expt 2 i)
0)))
(define width 14)
(define hi (expt 2 14))
(define last-lo (box #f))
(define last (box #f))
(define (path->bits cfg)
(cadr (regexp-match "configuration([01]*)" cfg)))
(module+ main
(require racket/cmdline glob)
(command-line
#:args (path)
(unless (and (string? path) (directory-exists? path))
(raise-user-error 'missing "path-string?" path))
(define width-box (box #f))
(define have
(for/set ([cfg (in-glob (string-append path "/benchmark/config*"))]
#:when (not (null? (glob (string-append cfg "/*.rktd")))))
(define bits (path->bits cfg))
(unless (unbox width-box)
(set-box! width-box (string-length bits)))
(bitstring->natural bits)))
(define width (unbox width-box))
(define hi (expt 2 width))
(define last-lo (box #f))
(define last (box #f))
(for ([i (in-range hi)]
#:when (not (set-member? have i)))
(cond
[(not (unbox last-lo))
(set-box! last-lo i)
(set-box! last i)]
[(= (+ 1 (unbox last)) i)
(set-box! last i)]
[else
(let ((lo (unbox last-lo))
(hi i))
(printf "MISSING ~a -- ~a (~a -- ~a)\n" (natural->bitstring lo #:pad width) (natural->bitstring hi #:pad width) lo hi)
(set-box! last-lo i)
(set-box! last i))]))))
| false |
6f98d834abd44c514bc560a4393a696528dc1a71 | 01f1f5d15fcd3e29fb6086131963cd17fb4669d3 | /src/spec/layout.rkt | d5b676fce91162323ae91311c656707e2978c5fc | [
"MIT"
]
| permissive | uwplse/Cassius | 1664e8c82c10bcc665901ea92ebf4a48ee28525e | 60dad9e9b2b4de3b13451ce54cdc1bd55ca64824 | refs/heads/master | 2023-02-22T22:27:54.223521 | 2022-12-24T18:18:25 | 2022-12-24T18:18:25 | 29,879,625 | 88 | 1 | MIT | 2021-06-08T00:13:38 | 2015-01-26T20:18:28 | Racket | UTF-8 | Racket | false | false | 49,003 | rkt | layout.rkt | #lang racket
(require "../common.rkt" "../smt.rkt" "css-properties.rkt" "browser.rkt")
(provide layout-definitions boxref-definitions)
(define (get-px-or-% prop wrt b)
(define r `(computed-style (box-elt ,b)))
(define type (slower (css-type prop)))
(define out
`(ite (,(sformat "is-~a/px" type) (,(sformat "style.~a" prop) ,r))
(,(sformat "~a.px" type) (,(sformat "style.~a" prop) ,r))
(%of (,(sformat "~a.%" type) (,(sformat "style.~a" prop) ,r)) ,wrt)))
(match prop
[(or 'min-width 'width 'max-width)
`(max
(-
,out
(ite (is-box-sizing/border-box (style.box-sizing ,r))
(+ (bl ,b) (pl ,b) (pr ,b) (br ,b))
0.0)
(scroll-y ,b))
0.0)]
[(or 'min-height 'height 'max-height)
`(max
(-
,out
(ite (is-box-sizing/border-box (style.box-sizing ,r))
(+ (bt ,b) (pt ,b) (pb ,b) (bb ,b))
0.0)
(scroll-x ,b))
0.0)]
[else
out]))
(define-constraints (boxref-definitions)
(declare-fun vflow (Box) Box)
(declare-fun nflow (Box) Box)
(declare-fun fflow (Box) Box)
(declare-fun lflow (Box) Box)
(declare-fun box-collapsed-through (Box) Bool)
(declare-fun firstish-box (Box) Bool)
(define-fun ez.outside ((ez EZone) (b Box)) Bool
(and (ez.valid? ez) (=> (ez.mark? ez) (<= (ez.max ez) (top-border b)))))
(define-fun ez.inside ((ez EZone) (b Box)) Bool
(and (ez.valid? ez) (=> (ez.mark? ez) (<= (ez.max ez) (bottom-border b)))))
(define-fun ez.inside* ((ez EZone) (b Box)) Bool
(and (ez.valid? ez) (=> (ez.mark? ez) (<= (ez.max ez)
(ite (box-collapsed-through b)
(top-outer b)
(bottom-border b))))))
(define-fun no-margins ((b Box)) Bool
(= (mtp b) (mtn b) (mbp b) (mbn b) 0.0))
(define-fun non-negative-margins ((b Box)) Bool
(and (>= (mtp b) (- (mtn b))) (>= (mbp b) (- (mbn b))))))
(define-constraints (layout-definitions)
(assert
(forall ((b Box))
(= (nflow b)
(ite (is-no-box (nbox b))
no-box
(ite (box-in-flow (nbox b))
(nbox b)
(nflow (nbox b)))))))
(assert
(forall ((b Box))
(= (vflow b)
(ite (is-no-box (vbox b))
no-box
(ite (box-in-flow (vbox b))
(vbox b)
(vflow (vbox b)))))))
(assert
(forall ((b Box))
(= (fflow b) (ite (=> (is-box (fbox b)) (box-in-flow (fbox b))) (fbox b) (nflow (fbox b))))))
(assert
(forall ((b Box))
(= (lflow b) (ite (=> (is-box (lbox b)) (box-in-flow (lbox b))) (lbox b) (vflow (lbox b))))))
(declare-fun rootbox (Box) Box)
(assert
(forall ((b Box))
(= (rootbox b)
(ite (is-no-box (pbox b))
b
(rootbox (pbox b))))))
(assert (forall ((b Box)) (is-box (rootbox b))))
,@(for/list ([field '(mtn mbn)])
`(assert (forall ((b Box)) (<= (,field b) 0.0))))
,@(for/list ([field '(bl br bt bb pr pb pt w h mtp mbp stfwidth)]) ; No pl because text-indent
`(assert (forall ((b Box)) (>= (,field b) 0.0))))
;; Three additional pointers to the parent block box and the parent positioned box.
(declare-fun ppflow (Box) Box)
(assert
(forall ((b Box))
(= (ppflow b)
(ite (is-no-box (pbox b))
b
(ite (box-positioned (pbox b)) (pbox b) (ppflow (pbox b)))))))
(declare-fun pbflow (Box) Box)
(assert
(forall ((b Box))
(= (pbflow b)
(ite (is-no-box (pbox b))
no-box
(ite (or (is-box/block (type (pbox b))) (is-flow-root (pbox b))) (pbox b) (pbflow (pbox b)))))))
(define-const quirks-mode Bool false)
(declare-fun contains-content (Box) Bool)
(assert (forall ((b Box))
(let ([e (box-elt b)] [v (vflow b)] [l (lflow b)])
(= (contains-content b)
(or (> (ml b) 0) (> (bl b) 0) (> (pl b) 0) (> (pr b) 0) (> (br b) 0) (> (mr b) 0)
(> (w b) 0) (and (is-elt e) (is-replaced e))
(and (is-box v) (contains-content v)) (and (is-box l) (contains-content l)))))))
(assert
(forall ((b Box))
(= (box-collapsed-through b)
(and (= (box-height b) 0.0)
(=> (is-elt (box-elt b)) (not (is-replaced (box-elt b))))
(not (is-flow-root b))
(or (and (is-box/line (type b))
(=> (is-box (lflow b)) (not (contains-content (lflow b)))))
(is-no-box (lflow b))
(box-collapsed-through (lflow b)))))))
(define-fun min-max-width ((val Real) (b Box)) Real
(ite (is-elt (box-elt b))
(max ,(get-px-or-% 'min-width '(w (pflow b)) 'b)
(min-if
val
(not (is-max-width/none (style.max-width (computed-style (box-elt b)))))
,(get-px-or-% 'max-width '(w (pflow b)) 'b)))
val))
(define-fun min-max-height ((val Real) (b Box)) Real
(max (ite (is-elt (box-elt b)) ,(get-px-or-% 'min-height '(h (pflow b)) 'b) 0.0)
(ite (or (is-no-elt (box-elt b)) (is-max-height/none (style.max-height (computed-style (box-elt b)))))
val
(min val ,(get-px-or-% 'max-height '(h (pflow b)) 'b)))))
(define-fun margin-min-px ((m Margin) (b Box)) Real
,(smt-cond
[(is-margin/px m) (margin.px m)]
[(is-margin/% m) (%of (margin.% m) (w (pflow b)))]
[else 0.0]))
(define-fun min-w ((b Box)) Real
(ite (is-elt (box-elt b))
(ite (is-width/auto (style.width (computed-style (box-elt b))))
(ite (is-replaced (box-elt b))
(- (intrinsic-width (box-elt b)) (bl b) (br b) (pl b) (pr b))
0.0)
,(get-px-or-% 'width '(w (pflow b)) 'b))
0.0))
(define-fun min-ml ((b Box)) Real
(ite (is-elt (box-elt b))
(margin-min-px (style.margin-left (computed-style (box-elt b))) b)
0.0))
(define-fun min-mr ((b Box)) Real
(ite (is-elt (box-elt b))
(margin-min-px (style.margin-right (computed-style (box-elt b))) b)
0.0))
(define-fun top-margin-collapses-with-children ((b Box)) Bool
(and (not (is-flow-root b)) (= (pt b) 0.0) (= (bt b) 0.0)))
(define-fun bottom-margin-collapses-with-children ((b Box)) Bool
(and (not (is-flow-root b)) (= (pb b) 0.0) (= (bb b) 0.0)
(=> (is-elt (box-elt b))
(and (is-height/auto (style.height (computed-style (box-elt b))))
(not (is-replaced (box-elt b)))))))
(define-fun zero-box-model-except-collapse ((b Box)) Bool
(and
(= (mt b) (mr b) (mb b) (ml b) 0.0)
(= (bt b) (br b) (bb b) (bl b) 0.0)
(= (pt b) (pr b) (pb b) (pl b) 0.0)))
(define-fun zero-box-model ((b Box)) Bool
(and
(= (mtp b) (mtn b) (mbp b) (mbn b) (mtp-up b) (mtn-up b) 0.0)
(= (mb-clear b) false)
(= (mt b) (mr b) (mb b) (ml b) 0.0)
(= (bt b) (br b) (bb b) (bl b) 0.0)
(= (pt b) (pr b) (pb b) (pl b) 0.0)))
(declare-fun ancestor-line (Box) Box)
(assert
(forall ((b Box))
(= (ancestor-line b)
(ite (is-box/line (type b))
b
(ite (is-flow-root (pbox b))
no-box
(ancestor-line (pbox b)))))))
(define-fun vertical-position-for-flow-boxes ((b Box)) Real
(let ([p (pflow b)] [v (vflow b)])
;; These parts don't check (has-clearance) because they're
;; computed "as if" there were no clearance
(ite (firstish-box b)
(+ (top-content p)
(ite (and (top-margin-collapses-with-children p)
(not (and (is-elt (box-elt b)) (is-root-elt (box-elt b))))
(not (is-box/root (type b))))
0.0
(+ (mtp b) (mtn b))))
(+ (ite (box-collapsed-through v)
(top-outer v)
(bottom-border v))
(+ (max (mbp v) (mtp b)) (min (mbn v) (mtn b)))))))
(declare-fun inline-float-next-line (Box) Bool)
(define-fun vertical-position-for-flow-roots ((b Box)) Real
(let ([p (pflow b)] [v (vflow b)])
(ite (or (is-box/block (type p)) (is-flow-root p))
(ite (is-box v)
(+ (ite (box-collapsed-through v)
(top-outer v)
(bottom-border v))
(mbp v) (mbn v))
(top-content p))
(ite (inline-float-next-line b)
(bottom-border (ancestor-line b))
(ite (is-box (vbox (ancestor-line b)))
(bottom-border (vbox (ancestor-line b)))
(top-content (pbox (ancestor-line b))))))))
(define-fun has-clearance ((b Box)) Bool
(and (is-elt (box-elt b))
(or
(and
(is-clear/left (style.clear (computed-style (box-elt b))))
(< (vertical-position-for-flow-boxes b) (ez.left-max (ez.in b))))
(and
(is-clear/right (style.clear (computed-style (box-elt b))))
(< (vertical-position-for-flow-boxes b) (ez.right-max (ez.in b))))
(and
(is-clear/both (style.clear (computed-style (box-elt b))))
(< (vertical-position-for-flow-boxes b)
(max (ez.left-max (ez.in b)) (ez.right-max (ez.in b))))))))
(assert (forall ((b Box))
(= (firstish-box b)
(let ([p (pflow b)] [v (vflow b)])
(or (and (not (is-box v)) (not (has-clearance v)))
(and (box-collapsed-through v) (not (has-clearance v)) (firstish-box v)))))))
(define-fun change-s831c ((b Box)) Bool
(and
(top-margin-collapses-with-children b)
(is-box (lflow b))
(firstish-box (lflow b))
(box-collapsed-through (lflow b))
(is-elt (box-elt b))
(let ([mh (style.min-height (computed-style (box-elt b)))])
(or
(and (is-min-height/px mh) (> (min-height.px mh) 0))
(and (is-min-height/% mh) (> (min-height.% mh) 0))))
(is-height/auto (style.height (computed-style (box-elt b))))))
(define-fun auto-height-for-flow-roots ((b Box)) Real
;; CSS 2.1 § 10.6.7
,(smt-cond
[(is-replaced (box-elt b))
(min-max-height (- (intrinsic-height (box-elt b)) (bt b) (bb b) (pt b) (pb b)) b)]
[(is-no-box (fbox b)) (min-max-height 0.0 b)]
[(is-no-box (fflow b))
(min-max-height (max (- (ez.max (ez.out (lbox b))) (top-content b)) 0.0) b)]
[else
;; If it has block-level children, the height is the distance between the
;; top margin-edge of the topmost block-level child box and the
;; bottom margin-edge of the bottommost block-level child box.
(min-max-height
(- (max (ez.max (ez.out (lbox b)))
(ite (box-collapsed-through (lflow b))
(+ (top-outer (lflow b)) (mbp (lflow b)) (mbn (lflow b)))
(bottom-outer (lflow b))))
(top-content b))
b)]))
(define-fun auto-height-for-flow-blocks ((b Box)) Real
(let ([lb (lflow b)] [e (box-elt b)])
,(smt-cond
;; CSS 2.1 § 10.6.6, first bullet
[(is-flow-root b)
(auto-height-for-flow-roots b)]
;; CSS 2.1 § 10.6.3, item 4
[(and (is-elt e) (is-replaced e))
(min-max-height (- (intrinsic-height e) (bt b) (bb b) (pt b) (pb b)) b)]
[(is-no-box lb)
(min-max-height 0.0 b)]
;; CSS 2.1 § 10.6.3, item 1
[(is-box/line (type lb))
(min-max-height (- (bottom-border lb) (top-content b)) b)]
[else ; (is-box/block (type lb)), because blocks only have block or line children
(min-max-height
(ite (and (box-collapsed-through lb) (firstish-box lb) (top-margin-collapses-with-children b) (not (mb-clear lb)))
0.0 ;; This special case should be refactored
(- ;; CSS 2.1 § 10.6.3, item 2
(+ (ite (box-collapsed-through lb)
(top-outer lb)
(bottom-border lb))
(ite (and (bottom-margin-collapses-with-children b) (not (mb-clear lb)))
0.0
(+ (mbp lb) (mbn lb))))
(top-content b)))
b)])))
(define-fun margins-collapse ((b Box)) Bool
(let ([f (fflow b)] [l (lflow b)] [v (vflow b)])
(and
(= (mtp b)
(max-if
(max-if
(ite (> (mt b) 0.0) (mt b) 0.0)
(and (top-margin-collapses-with-children b) (is-box f) (not (has-clearance f)))
(mtp-up f))
(and (box-collapsed-through b) (not (has-clearance b)) (is-box v))
(mbp v)))
(= (mtp-up b)
(max-if (ite (box-collapsed-through b) (mbp b) (mtp b))
(and (is-box (nflow b)) (box-collapsed-through b) (not (has-clearance (nflow b))))
(mtp-up (nflow b))))
(= (mtn b)
(min-if
(min-if
(ite (< (mt b) 0.0) (mt b) 0.0)
(and (top-margin-collapses-with-children b) (is-box f) (not (has-clearance f)))
(mtn-up f))
(and (box-collapsed-through b) (not (has-clearance b)) (is-box v))
(mbn v)))
(= (mtn-up b)
(min-if (ite (box-collapsed-through b) (mbn b) (mtn b))
(and (is-box (nflow b)) (box-collapsed-through b) (not (has-clearance (nflow b))))
(mtn-up (nflow b))))
(= (mb-clear b)
(or (has-clearance b) (and (is-box v) (box-collapsed-through b) (mb-clear v))))
(= (mbp b)
(max-if
(max-if
(ite (> (mb b) 0.0) (mb b) 0.0)
(and (bottom-margin-collapses-with-children b) (is-box l) (not (mb-clear l))
(not (change-s831c b)))
(mbp l))
(box-collapsed-through b)
(mtp b)))
(= (mbn b)
(min-if
(min-if
(ite (< (mb b) 0.0) (mb b) 0.0)
(and (bottom-margin-collapses-with-children b) (is-box l) (not (mb-clear l))
(not (change-s831c b)))
(mbn l))
(box-collapsed-through b)
(mtn b))))))
(define-fun margins-dont-collapse ((b Box)) Bool
(and
(= (mtp-up b) (mtp b) (max (mt b) 0.0))
(= (mb-clear b) false)
(= (mtn-up b) (mtn b) (min (mt b) 0.0))
(= (mbp b) (max (mb b) 0.0))
(= (mbn b) (min (mb b) 0.0))))
(declare-fun ancestor-block (Box) Box)
(assert
(forall ((b Box))
(= (ancestor-block b)
(ite (is-box/block (type b))
b
(ite (is-flow-root (pbox b))
no-box
(ancestor-block (pbox b)))))))
(define-fun relative-position-parent ((b Box)) Box
(let ([r (computed-style (box-elt b))])
(ite (and (is-elt (box-elt b)) (not (is-float/none (style.float r))))
(ancestor-block (pflow b))
(pflow b))))
(define-fun relatively-positioned ((b Box)) Bool
,(smt-let ([r (computed-style (box-elt b))] [p (relative-position-parent b)])
(=> (is-offset/px (style.left r))
(= (xo b) (+ (offset.px (style.left r)) (xo p))))
(=> (is-offset/% (style.left r))
(= (xo b) (+ (%of (offset.% (style.left r)) (w p)) (xo p))))
(=> (is-offset/px (style.top r))
(= (yo b) (+ (offset.px (style.top r)) (yo p))))
(=> (is-offset/% (style.top r))
(= (yo b) (+ (%of (offset.% (style.top r)) (h p)) (yo p))))
(=> (and (is-offset/auto (style.left r)) (is-offset/px (style.right r)))
(= (xo b) (- (xo p) (offset.px (style.right r)))))
(=> (and (is-offset/auto (style.left r)) (is-offset/% (style.right r)))
(= (xo b) (- (xo p) (%of (offset.% (style.right r)) (w p)))))
(=> (and (is-offset/auto (style.top r)) (is-offset/px (style.bottom r)))
(= (yo b) (- (yo p) (offset.px (style.bottom r)))))
(=> (and (is-offset/auto (style.top r)) (is-offset/% (style.bottom r)))
(= (yo b) (- (yo p) (%of (offset.% (style.bottom r)) (h p)))))
(=> (and (is-offset/auto (style.left r)) (is-offset/auto (style.right r)))
(= (xo b) (xo p)))
(=> (and (is-offset/auto (style.top r)) (is-offset/auto (style.bottom r)))
(= (yo b) (yo p)))))
(define-fun no-relative-offset ((b Box)) Bool
,(smt-let ([r (computed-style (box-elt b))] [p (relative-position-parent b)])
(= (xo b) (xo p))
(= (yo b) (yo p))))
(define-fun resolve-clear ((b Box) (default Real)) Real
(max-if
(max-if
default
(and (is-elt (box-elt b))
(or
(is-clear/left (style.clear (computed-style (box-elt b))))
(is-clear/both (style.clear (computed-style (box-elt b))))))
(ez.left-max (ez.in b)))
(and (is-elt (box-elt b))
(or
(is-clear/right (style.clear (computed-style (box-elt b))))
(is-clear/both (style.clear (computed-style (box-elt b))))))
(ez.right-max (ez.in b))))
(define-fun flow-horizontal-layout ((b Box) (available-width Real)) Bool
;; CSS § 10.3.3: Block-level, non-replaced elements in normal flow
,(smt-let ([e (box-elt b)] [r (computed-style (box-elt b))] [p (pflow b)] )
(= available-width (+ (ml b) (box-width b) (mr b)))
(not (w-from-stfwidth b))
(let ([w* (min-max-width (min-w b) b)]
[ml* (min-ml b)]
[mr* (min-mr b)])
,(smt-cond
[(> (+ ml* (bl b) (pl b) w* (pr b) (br b) mr* (scroll-y b)) available-width)
(= (w b) w*)
(= (ml b) ml*)
(width-set b)]
[(or (is-no-elt e) (and (is-width/auto (style.width r)) (not (is-replaced e))))
(ite (and (is-elt e) (not (is-max-width/none (style.max-width r)))
(> (- available-width ml* (bl b) (pl b) (pr b) (br b) mr*)
,(get-px-or-% 'max-width '(w p) 'b)))
(and
(= (w b) ,(get-px-or-% 'max-width '(w p) 'b))
,(smt-cond
[(not (is-margin/auto (style.margin-left r)))
(= (ml b) ml*)]
[(not (is-margin/auto (style.margin-right r)))
(= (mr b) mr*)]
[else
(= (ml b) (mr b))])
(width-set b))
(and
(= (ml b) ml*)
(= (mr b) mr*)
(width-set b)))]
[else
(= (w b) w*)
(width-set b)
,(smt-cond
[(not (is-margin/auto (style.margin-left r)))
(= (ml b) ml*)]
[(not (is-margin/auto (style.margin-right r)))
(= (mr b) mr*)]
[else
(= (ml b) (mr b))])]))))
;; `lookback-overflow-width` is a black box that is narrower than
;; `(w p)`, used when we don't know the shape of the exclusion zone
;; because `(ez.lookback b)`.
(declare-fun lookback-overflow-width (Box) Real)
(assert (forall ((b Box)) (<= 0 (lookback-overflow-width b) (w (pbox b)))))
(define-fun available-width ((b Box)) Real
(- (w (pbox b)) (ml b) (bl b) (pl b) (pr b) (br b) (mr b)))
(define-fun usable-stfwidth ((b Box)) Real
(let ([l (lbox b)])
(min-max-width
(ite (is-box l)
(min (max (stfwidth l) (available-width b)) (+ (stfmax l) (float-stfmax l)))
(ite (is-replaced (box-elt b))
(- (intrinsic-width (box-elt b)) (bl b) (br b) (pl b) (pr b))
0.0))
b)))
(define-fun compute-stfwidth ((b Box)) Real
(let ([l (lbox b)] [v (vbox b)] [r (computed-style (box-elt b))])
(max
,(smt-cond
[(is-no-elt (box-elt b))
(+ (bl b) (max (pl b) 0.0)
(ite (is-box l) (stfwidth l) 0.0)
(pr b) (br b))]
[(is-float/left (style.float r))
(- (right-outer b) (left-content (pbox b)))]
[(is-float/right (style.float r))
(- (right-content (pbox b)) (left-outer b))]
[else
(+ (min-ml b) (bl b) (max (pl b) 0.0)
(ite (and (not (is-replaced (box-elt b))) (is-width/auto (style.width r)))
(ite (is-box l) (stfwidth l) 0.0)
(w b))
(pr b) (br b) (min-mr b))])
(ite (is-box v) (stfwidth v) 0.0))))
(define-fun compute-stfmax ((b Box)) Real
(let ([l (lbox b)] [v (vbox b)] [r (computed-style (box-elt b))])
,(smt-cond
[(is-no-elt (box-elt b))
(+ (ml b) (bl b) (pl b) (ite (is-box l) (stfmax l) 0.0) (pr b) (br b) (mr b))]
[(is-float/left (style.float r))
(- (right-outer b) (left-content (pbox b)))]
[(is-float/right (style.float r))
(- (right-content (pbox b)) (left-outer b))]
[else
(+ (min-ml b) (bl b) (max (pl b) 0.0)
(ite (and (not (is-replaced (box-elt b))) (is-width/auto (style.width r)))
(ite (is-box l) (stfmax l) 0.0)
(w b))
(pr b) (br b) (min-mr b))])))
(define-fun positioned-vertical-layout ((b Box)) Bool
;; CSS 2.1 § 10.6.4
,(smt-let* ([r (computed-style (box-elt b))]
[pp (ite (is-position/fixed (style.position (computed-style (box-elt b)))) (rootbox b) (ppflow b))]
[temp-top ,(get-px-or-% 'top '(height-padding pp) 'b)]
[temp-bottom ,(get-px-or-% 'bottom '(height-padding pp) 'b)]
[temp-height (min-max-height (ite (is-replaced (box-elt b)) (- (intrinsic-height (box-elt b)) (bt b) (bb b) (pt b) (pb b)) ,(get-px-or-% 'height '(height-padding pp) 'b)) b)]
[top? (not (is-offset/auto (style.top (computed-style (box-elt b)))))]
[bottom? (not (is-offset/auto (style.bottom (computed-style (box-elt b)))))]
[height?
(or (is-replaced (box-elt b))
(not (is-height/auto (style.height (computed-style (box-elt b))))))])
(=> top? (= (top-outer b) (+ (top-padding pp) temp-top)))
(=> height? (= (h b) temp-height))
(=> (and (not top?) (not bottom?)) (= (top-outer b) (vertical-position-for-flow-roots b)))
(=> (and (not height?) (not (and top? bottom?)))
(= (h b) (auto-height-for-flow-roots b)))
(=> (and bottom? (not (and top? height?)))
(= (bottom-outer b) (- (bottom-padding pp) temp-bottom)))
;; Margins work identically unless overspecified
(=> (not (and top? height? bottom?))
(and
(= (mt b) (margin-min-px (style.margin-top r) b))
(= (mb b) (margin-min-px (style.margin-bottom r) b))))
;; Paragraph before the list, "If none of the three are 'auto'"
(=> (and top? bottom? height?)
(and
(=> (not (is-margin/auto (style.margin-top r)))
(= (mt b) (margin-min-px (style.margin-top r) b)))
(=> (not (is-margin/auto (style.margin-bottom r)))
(= (mb b) (margin-min-px (style.margin-bottom r) b)))
(=> (and (is-margin/auto (style.margin-top r))
(is-margin/auto (style.margin-bottom r)))
(= (mt b) (mb b)))
(=> (or (is-margin/auto (style.margin-top r))
(is-margin/auto (style.margin-bottom r)))
(= (bottom-outer b) (- (bottom-padding pp) temp-bottom)))))))
(define-fun positioned-horizontal-layout ((b Box)) Bool
,(smt-let* ([r (computed-style (box-elt b))]
[pp (ite (is-position/fixed (style.position (computed-style (box-elt b)))) (rootbox b) (ppflow b))]
[p (pflow b)]
[temp-left ,(get-px-or-% 'left '(width-padding pp) 'b)]
[temp-right ,(get-px-or-% 'right '(width-padding pp) 'b)]
[temp-width (min-max-width (ite (is-replaced (box-elt b)) (- (intrinsic-width (box-elt b)) (bl b) (br b) (pl b) (pr b)) ,(get-px-or-% 'width '(width-padding pp) 'b)) b)]
[left? (not (is-offset/auto (style.left (computed-style (box-elt b)))))]
[right? (not (is-offset/auto (style.right (computed-style (box-elt b)))))]
[width? (or (is-replaced (box-elt b)) (not (is-width/auto (style.width (computed-style (box-elt b))))))])
(width-set b)
;; Margins work identically unless overspecified
(=> (not (and left? width? right?))
(and
(= (ml b) (margin-min-px (style.margin-left r) b))
(= (mr b) (margin-min-px (style.margin-right r) b))))
(=> left? (= (left-outer b) (+ (left-padding pp) temp-left)))
(=> width? (and (= (w b) temp-width)
(not (w-from-stfwidth b))))
(=> (and (not width?) (not (and left? right?)))
(and (= (w b) (usable-stfwidth b))
(w-from-stfwidth b)))
(=> (and (not left?) (not right?))
(= (left-outer b)
(ite (or (is-box/block (type (pflow b))) (is-flow-root (pflow b)))
(left-content p)
(ite (is-box (vflow b))
(right-outer (vflow b))
(left-outer (pflow b))))))
(=> (and right? (not (and left? width?)))
(= (right-outer b) (- (right-padding pp) temp-right)))
(=> (and left? right?) (not (w-from-stfwidth b)))
(=> (and left? width? right?)
(and
(=> (not (is-margin/auto (style.margin-left r)))
(= (ml b) (margin-min-px (style.margin-left r) b)))
(=> (not (is-margin/auto (style.margin-right r)))
(= (mr b) (margin-min-px (style.margin-right r) b)))
(=> (and (is-margin/auto (style.margin-left r)) (is-margin/auto (style.margin-right r)))
(= (ml b) (mr b)))
(=> (or (is-margin/auto (style.margin-left r)) (is-margin/auto (style.margin-right r)))
(= (right-outer b) (- (right-padding pp) temp-right)))))))
(declare-fun line-height (Box) Real)
(assert
(forall ((b Box))
(let ([e (box-elt b)])
(= (line-height b)
(ite (is-elt e)
(let ([lh (style.line-height (computed-style e))]
[fs (style.font-size (computed-style e))])
,(smt-cond
[(is-line-height/normal lh)
(font.line-height (font-info b))]
[(is-line-height/num lh)
(%of (* 100.0 (line-height.num lh)) (font-size.px fs))]
[else ;(is-line-height/px (lineheight b))
(line-height.px lh)]))
(ite (is-box (pflow b)) (line-height (pflow b)) 0.0))))))
;; ez.line is a specialized thing for floats inside lines
(declare-fun ez.line (Box) EZone)
(declare-fun ez.line-up (Box) EZone)
(define-fun float-affects-own-line ((b Box)) Bool
;; PRECONDITION: (is-flow-root b)
(let ([l (ancestor-line b)])
(and
(is-box l)
(or (< (top-outer b) (bottom-outer l))
;; Special case for zero-height (empty) lines
(= (top-outer b) (top-outer l) (bottom-outer l))))))
(assert (forall ((b Box))
(= (ez.line-up b)
(ite (and (is-flow-root b) (float-affects-own-line b))
(ez.line b)
(ite (is-box (lbox b))
(ez.line-up (lbox b))
(ez.line b))))))
(assert
(forall ((b Box))
(= (ez.line b)
(ite (and (is-flow-root b) (float-affects-own-line b))
(ez.out b)
(ite (is-box (vbox b))
(ez.line-up (vbox b))
(ez.in b))))))
;; These three functions define the three types of layouts Cassius
;; supports for block boxes: normal in-flow layout, floating layout,
;; and positioned layout. By and large, these functions refer to the
;; preceding functions.
(declare-fun uses-parent-w (Box) Bool)
(assert
(forall ((b Box))
(let ([e (box-elt b)] [r (computed-style (box-elt b))])
(= (uses-parent-w b)
(or
(and (=> (is-elt e) (is-width/auto (style.width r))) (is-box (vflow b)) (uses-parent-w (vflow b)))
(and (=> (is-elt e) (is-width/auto (style.width r))) (is-box (lflow b)) (uses-parent-w (lflow b)))
(and (is-elt e) (is-margin/% (style.margin-left r)))
(and (is-elt e) (is-margin/% (style.margin-right r)))
(and (is-elt e) (is-border/% (style.border-left-width r)))
(and (is-elt e) (is-border/% (style.border-right-width r)))
(and (is-elt e) (is-padding/% (style.padding-left r)))
(and (is-elt e) (is-padding/% (style.padding-right r)))
(and (is-elt e) (is-width/% (style.width r))))))))
(define-fun a-block-flow-box ((b Box)) Bool
,(smt-let ([e (box-elt b)] [r (computed-style (box-elt b))]
[p (pflow b)] [vb (vflow b)] [fb (fflow b)] [lb (lflow b)])
(ite (is-height/auto (style.height r))
(= (h b) (auto-height-for-flow-blocks b))
(= (h b) (min-max-height ,(get-px-or-% 'height '(h p) 'b) b)))
(= (mt b)
(ite (is-margin/auto (style.margin-top r)) 0.0 ,(get-px-or-% 'margin-top '(w p) 'b)))
(= (mb b)
(ite (is-margin/auto (style.margin-bottom r)) 0.0 ,(get-px-or-% 'margin-bottom '(w p) 'b)))
(margins-collapse b)
(= (stfmax b) (max-if (min-max-width (compute-stfmax b) b) (is-box (vbox b)) (stfmax (vbox b))))
(= (float-stfmax b)
(+ (ite (is-flow-root b) 0.0
(min-max-width (ite (is-box (lbox b)) (float-stfmax (lbox b)) 0.0) b))
(ite (is-box (vbox b)) (float-stfmax (vbox b)) 0.0)))
(let ([y* (resolve-clear b (vertical-position-for-flow-boxes b))])
(ite (or (is-flow-root b) (and (is-elt e) (is-replaced e)))
(and
(= (ez.lookback b) (not (ez.test (ez.in b) (y b))))
(ite (not (ez.lookback b))
(= (y b)
(ez.level (ez.in b) (+ (bl b) (pl b) (min-w b) (pr b) (br b))
(left-content p) (right-content p) y* float/left))
(>= (y b) y*)))
(and
(= (ez.lookback b) false)
(= (y b) y*))))
(ite (or (is-flow-root b) (and (is-elt e) (is-replaced e)))
(flow-horizontal-layout
b
(ite (not (ez.lookback b))
(- (ez.x (ez.in b) (y b) float/right (left-content p) (right-content p))
(ez.x (ez.in b) (y b) float/left (left-content p) (right-content p)))
(lookback-overflow-width b)))
(flow-horizontal-layout b (w p)))
(=> (not (ez.lookback b))
(= (x b) (+ (ml b)
(ite (or (is-flow-root b) (and (is-elt e) (is-replaced e)))
(ez.x (ez.in b) (y b) float/left (left-content p) (right-content p))
(left-content p)))))))
(define-fun a-block-float-box ((b Box)) Bool
,(smt-let ([e (box-elt b)] [r (computed-style (box-elt b))]
[p (pflow b)] [vb (vflow b)] [fb (fflow b)] [lb (lflow b)])
(= (mt b) (ite (is-margin/auto (style.margin-top r)) 0.0 ,(get-px-or-% 'margin-top '(w p) 'b)))
(= (mr b) (ite (is-margin/auto (style.margin-right r)) 0.0 ,(get-px-or-% 'margin-right '(w p) 'b)))
(= (mb b) (ite (is-margin/auto (style.margin-bottom r)) 0.0 ,(get-px-or-% 'margin-bottom '(w p) 'b)))
(= (ml b) (ite (is-margin/auto (style.margin-left r)) 0.0 ,(get-px-or-% 'margin-left '(w p) 'b)))
(margins-dont-collapse b)
(= (w-from-stfwidth b) (is-width/auto (style.width r)))
(= (stfmax b) (ite (is-box (vbox b)) (stfmax (vbox b)) 0.0))
(= (float-stfmax b)
(+ (min-max-width (max (- (right-outer b) (left-outer b)) 0.0) b)
(ite (is-box (vbox b)) (float-stfmax (vbox b)) 0.0)))
(width-set b)
(ite (is-width/auto (style.width r))
(ite (is-replaced e)
(= (w b) (- (intrinsic-width e) (bl b) (br b) (pl b) (pr b)))
(or (= (w b) (usable-stfwidth b)) (and (is-box (lbox b)) (uses-parent-w (lbox b)))))
;; todo: what do browsers do when (w-from-stfwidth p) and (is-margin/%)?
(= (w b)
(min-max-width ,(get-px-or-% 'width '(w (pbflow b)) 'b) b)))
(ite (is-height/auto (style.height r))
(ite (is-replaced e)
(= (h b) (- (intrinsic-height e) (bt b) (bb b) (pt b) (pb b)))
(=> (width-set b)
(= (h b) (auto-height-for-flow-roots b))))
(= (h b) (min-max-height ,(get-px-or-% 'height '(h p) 'b) b)))
;; level -> x -> advance -> can-add -> add
,(smt-let* ([ez (ez.in b)]
[w (- (right-outer b) (left-outer b))]
[h (- (bottom-outer b) (top-outer b))]
[y-normal
(resolve-clear b (vertical-position-for-flow-roots b))]
[y* (ez.level ez w (left-content (pbflow b)) (right-content (pbflow b)) y-normal (style.float r))]
[x* (ez.x ez y* (style.float r) (left-content (pbflow b)) (right-content (pbflow b)))]
[x (ite (is-float/left (style.float r)) x* (- x* w))])
(= (top-outer b) y*)
(= (left-outer b) x)
(= (ez.lookback b) false))))
(define-fun a-block-positioned-box ((b Box)) Bool
(and
(margins-dont-collapse b)
(positioned-vertical-layout b)
(positioned-horizontal-layout b)
(= (stfmax b) (ite (is-box (vbox b)) (stfmax (vbox b)) 0.0))
(= (float-stfmax b)
(+ (min-max-width (ite (is-box (lbox b)) (float-stfmax (lbox b)) 0.0) b)
(ite (is-box (vbox b)) (float-stfmax (vbox b)) 0.0)))
(= (ez.lookback b) false)))
(define-fun a-block-box ((b Box)) Bool
,(smt-let ([e (box-elt b)] [r (computed-style (box-elt b))] [p (pflow b)])
(= (type b) box/block)
(= (bt b) ,(get-px-or-% 'border-top-width '(w p) 'b))
(= (br b) ,(get-px-or-% 'border-right-width '(w p) 'b))
(= (bb b) ,(get-px-or-% 'border-bottom-width '(w p) 'b))
(= (bl b) ,(get-px-or-% 'border-left-width '(w p) 'b))
(= (pt b) ,(get-px-or-% 'padding-top '(w p) 'b))
(= (pr b) ,(get-px-or-% 'padding-right '(w p) 'b))
(= (pb b) ,(get-px-or-% 'padding-bottom '(w p) 'b))
(= (pl b) ,(get-px-or-% 'padding-left '(w p) 'b))
(= (stfwidth b) (min-max-width (compute-stfwidth b) b))
;;(= (stfmax b) (max-if (compute-stfmax b) (is-box (vbox b)) (stfmax (vbox b))))
;;(= (float-stfmax b) (ite (is-box (vbox b)) (float-stfmax (vbox b)) 0.0))
(ite (is-position/relative (style.position r)) (relatively-positioned b) (no-relative-offset b))
(= (text-indent b)
(ite (is-elt e) ,(get-px-or-% 'text-indent '(w b) 'b) 0.0))
,(smt-cond
[(or (is-position/absolute (position b)) (is-position/fixed (position b)))
(a-block-positioned-box b)]
[(box-in-flow b)
(a-block-flow-box b)]
[else
(a-block-float-box b)])))
(declare-fun inline-block-offset (Box) Real)
(define-fun an-inline-box ((b Box)) Bool
,(smt-let ([e (box-elt b)] [r (computed-style (box-elt b))]
[p (pflow b)] [v (vflow b)] [l (lflow b)]
[metrics (font-info b)] [leading (- (line-height b) (height-text b))])
(= (type b) box/inline)
(= (bt b) ,(get-px-or-% 'border-top-width '(w p) 'b))
(= (bb b) ,(get-px-or-% 'border-bottom-width '(w p) 'b))
(= (pt b) ,(get-px-or-% 'padding-top '(w p) 'b))
(= (pb b) ,(get-px-or-% 'padding-bottom '(w p) 'b))
(= (mt b) (ite (is-margin/auto (style.margin-top r)) 0.0 ,(get-px-or-% 'margin-top '(w p) 'b)))
(= (mb b) (ite (is-margin/auto (style.margin-bottom r)) 0.0 ,(get-px-or-% 'margin-bottom '(w p) 'b)))
(ite (first-box? b)
(and
(= (pl b) ,(get-px-or-% 'padding-left '(w p) 'b))
(= (bl b) ,(get-px-or-% 'border-left-width '(w p) 'b))
(= (ml b)
(+ (ite (is-margin/auto (style.margin-left r)) 0.0 ,(get-px-or-% 'margin-left '(w p) 'b))
(ite (and (is-no-box v) (is-box/line (type p)) (is-no-box (vflow p))) (text-indent p) 0.0))))
(and (= (pl b) (bl b) 0.0)
(= (ml b) (ite (and (is-no-box v) (is-box/line (type p)) (is-no-box (vflow p))) (text-indent p) 0.0))))
(ite (last-box? b)
(and
(= (pr b) ,(get-px-or-% 'padding-right '(w p) 'b))
(= (br b) ,(get-px-or-% 'border-right-width '(w p) 'b))
(= (mr b) (ite (is-margin/auto (style.margin-right r)) 0.0 ,(get-px-or-% 'margin-right '(w p) 'b))))
(and (= (pr b) (br b) (mr b) 0.0)))
(margins-dont-collapse b)
(ite (is-position/relative (style.position r))
(relatively-positioned b)
(no-relative-offset b))
(= (stfwidth b)
(+ (ite (and (is-no-box v) (is-box/line (type p)) (is-no-box (vflow p))) (text-indent p) 0.0)
(min-max-width (compute-stfwidth b) b)))
(= (stfmax b)
(+ (ite (and (is-no-box v) (is-box/line (type p)) (is-no-box (vflow p))) (text-indent p) 0.0)
(ite (is-box (vbox b)) (stfmax (vbox b)) 0.0)
(min-max-width (compute-stfmax b) b)))
(= (float-stfmax b)
(+
(ite (and (not (is-display/inline-block (style.display r))) (is-box (lbox b)))
(min-max-width (float-stfmax (lbox b)) b)
0.0)
(ite (is-box (vbox b)) (float-stfmax (vbox b)) 0.0)))
(= (text-indent b)
(ite (is-elt e) ,(get-px-or-% 'text-indent '(w p) 'b) 0.0))
(= (baseline b) (baseline p))
(=> (and (is-elt e) (is-image e)) (= (inline-block-offset b) 0))
(ite (or (and (is-elt e) (is-replaced e)) (is-display/inline-block (style.display r)))
(and
(<= 0 (inline-block-offset b) (max (height-outer b) (font.descent metrics)))
(= (above-baseline b)
(max-if (- (height-outer b) (inline-block-offset b))
(is-box v) (above-baseline v)))
(= (below-baseline b)
(max-if (inline-block-offset b)
(is-box v) (below-baseline v)))
(= (bottom-outer b) (+ (baseline p) (inline-block-offset b))))
(and
(= (top-content b) (- (baseline b) (font.ascent metrics) (font.topoffset metrics)))
(= (above-baseline b)
(max-if (max-if (+ (font.ascent metrics) (/ leading 2))
(is-box v) (above-baseline v))
(is-box l) (above-baseline l)))
(= (below-baseline b)
(max-if (max-if (+ (font.descent metrics) (/ leading 2))
(is-box v) (below-baseline v))
(is-box l) (below-baseline l)))))
,(smt-cond
[(is-replaced e)
(= (h b) (- (intrinsic-height e) (bt b) (bb b) (pt b) (pb b)))]
[(is-display/inline-block (style.display r))
(= (h b)
(ite (is-height/auto (style.height r))
(auto-height-for-flow-roots b)
(min-max-height ,(get-px-or-% 'height '(h p) 'b) b)))]
[else
(= (h b) (font.selection-height metrics))])
,(smt-cond
[(is-replaced e)
(= (w b) (- (intrinsic-width e) (bl b) (br b) (pl b) (pr b)))]
[(is-display/inline-block (style.display r))
(ite (is-width/auto (style.width r))
(= (w b) (usable-stfwidth b))
(= (w b) (min-max-width ,(get-px-or-% 'width '(w p) 'b) b)))]
[(is-box (fflow b))
(and
(= (left-outer (fflow b)) (left-content b))
(= (right-outer (lflow b)) (right-content b)))]
[else
(= (w b) 0.0)])
(=> (is-box v) (= (left-outer b) (right-outer v)))
(= (ez.lookback b) false)))
(define-fun a-text-box ((b Box)) Bool
,(smt-let ([p (pflow b)] [v (vflow b)]
[metrics (font-info b)] [leading (- (line-height b) (height-text b))])
(= (type b) box/text)
;; Only true if there are no wrapping opportunities in the box
(= (stfwidth b) (max (+ (ml b) (w b)) (ite (is-box (vbox b)) (stfwidth (vbox b)) 0.0)))
(= (stfmax b)
(+ (ite (is-box (vbox b)) (stfmax (vbox b)) 0.0)
(ite (and (= (w b) 0.0) (is-no-box (nbox b))) 5.0 (+ (w b) (ml b))))) ;; HAXXX
(= (float-stfmax b) (ite (is-box (vbox b)) (float-stfmax (vbox b)) 0.0))
(= (baseline b) (baseline p))
(= (text-indent b) 0.0)
(= (h b) (font.selection-height metrics))
(= (above-baseline b)
(max-if (ite (> (w b) 0.0) (+ (font.ascent metrics) (/ leading 2)) 0.0)
(is-box v) (above-baseline v)))
(= (below-baseline b)
(max-if (ite (> (w b) 0.0) (+ (font.descent metrics) (/ leading 2)) 0.0)
(is-box v) (below-baseline v)))
(= (y b) (- (baseline b) (+ (font.ascent metrics) (font.topoffset metrics))))
(no-relative-offset b)
(= (mtp b) (mtn b) (mbp b) (mbn b) (mtp-up b) (mtn-up b) 0.0)
(= (mb-clear b) false)
(= (mt b) (mr b) (mb b) 0.0)
(= (bt b) (br b) (bb b) (bl b) 0.0)
(= (pt b) (pr b) (pb b) (pl b) 0.0)
(= (ml b) (ite (and (is-no-box v) (is-box/line (type p)) (is-no-box (vflow p))) (text-indent p) 0.0))
(=> (is-box v) (= (x b) (right-outer v))) ; Otherwise set by the line box
(= (ez.lookback b) false)))
(declare-fun ancestor-elt (Box) Element)
(assert
(forall ((b Box))
(= (ancestor-elt b) (ite (is-elt (box-elt b)) (box-elt b) (ite (is-box (pbox b)) (ancestor-elt (pbox b)) no-elt)))))
(define-fun a-line-box ((b Box)) Bool
,(smt-let ([p (pflow b)] [v (vflow b)] [n (nflow b)] [f (fflow b)] [l (lflow b)]
[metrics (font-info b)] [leading (- (line-height b) (height-text b))])
(= (type b) box/line)
(no-relative-offset b)
(zero-box-model b)
(= (text-indent b) (text-indent p))
(let ([y-normal (resolve-clear b (ite (is-no-box v) (top-content p) (bottom-border v)))]
[ez (ez.line-up (lbox b))])
(and
(= (ez.lookback b) (not (ez.test (ez.in b) y-normal))) ;; Key float restriction
(ite (not (ez.lookback b))
(and
;; Here we use (stfmax (lbox b)) because that ignores floats on future lines
(= (y b) (ez.level ez (stfwidth (lbox b)) (left-content p) (right-content p) y-normal float/left))
(= (left-outer b) (ez.x ez (y b) float/left (left-content p) (right-content p)))
(= (right-outer b) (ez.x ez (y b) float/right (left-content p) (right-content p))))
(and
(>= (y b) y-normal)
(>= (left-outer b) (left-content p))
(<= (right-outer b) (right-content p))))))
(= (stfwidth b) (compute-stfwidth b))
(= (stfmax b) (+ (ite (is-box v) (stfmax v) 0.0) (+ (stfmax (lbox b)) (pl b))))
(= (float-stfmax b)
(+ (ite (is-box (lbox b)) (float-stfmax (lbox b)) 0.0)
(ite (is-box (vbox b)) (float-stfmax (vbox b)) 0.0)))
(=> (is-box l)
(= (baseline b)
(+ (y b)
(ite (contains-content l)
(max-if
(above-baseline l)
(=> quirks-mode (is-display/list-item (style.display (computed-style (box-elt (pflow b))))))
(+ (font.ascent metrics) (* 0.5 leading)))
0.0))))
(=> (is-box l)
(= (h b)
(ite (contains-content l)
(+ (max-if
(above-baseline l)
(=> quirks-mode (is-display/list-item (style.display (computed-style (box-elt (pflow b))))))
(+ (font.ascent metrics) (* 0.5 leading)))
(max-if
(below-baseline l)
(=> quirks-mode (is-display/list-item (style.display (computed-style (box-elt (pflow b))))))
(+ (font.descent metrics) (* 0.5 leading))))
0.0)))
(=> (is-box f)
(let ([wsub (- (right-outer l) (left-outer f))]
[textalign (style.text-align (computed-style (ancestor-elt b)))])
,(smt-cond
[(> wsub (w b)) (= (left-outer f) (left-content b))]
[(is-text-align/left textalign) (= (left-outer f) (left-content b))]
[(is-text-align/justify textalign)
(and (= (left-outer f) (left-content b))
(=> (is-box n) (= (right-outer l) (right-content b))))]
[(is-text-align/right textalign)
(= (right-outer l) (right-content b))]
[(is-text-align/center textalign)
(= (- (left-outer f) (left-content b)) (- (right-content b) (right-outer l)))]
[else false])))))
(define-fun a-view-box ((b Box)) Bool
(and
(= (type b) box/root)
(zero-box-model b)
(= (x b) (y b) 0.0)
(= (xo b) (yo b) 0.0)
(= (box-width b) (browser.w ,(the-browser)))
(= (box-height b) (browser.h ,(the-browser)))
(= (ez.lookback b) false)
(= (text-indent b) 0.0)))
(define-fun a-magic-box ((b Box)) Bool
(and
(or (is-box/block (type b)) (is-box/inline (type b)))
(not (ez.lookback b))))
(define-fun an-anon-block-box ((b Box)) Bool
,(smt-let ([p (pflow b)] [v (vflow b)] [l (lflow b)])
(= (type b) box/block)
(no-relative-offset b)
(zero-box-model-except-collapse b)
(margins-collapse b)
(flow-horizontal-layout b (w p))
(= (h b) (auto-height-for-flow-blocks b))
(= (text-indent b) (text-indent p))
(= (stfmax b) (max-if (stfmax l) (is-box v) (stfmax v)))
(= (stfwidth b) (max-if (stfwidth l) (is-box v) (stfwidth v)))
(= (float-stfmax b)
(+ (ite (is-box (lbox b)) (float-stfmax (lbox b)) 0.0)
(ite (is-box (vbox b)) (float-stfmax (vbox b)) 0.0)))
(not (w-from-stfwidth b))
(= (y b) (vertical-position-for-flow-boxes b))
(= (x b) (left-content p))
(= (ez.lookback b) false)))
;; In some cases either the x or y scrollbar can be shown but not both;
;; in this case only the y scrollbar is ever shown
;; Also, we do not model the fact no scrollbars is preferred if both are possible
(define-const min-size-for-scrollbars Real 45.0)
(assert
(forall ((b Box))
(or
(= (scroll-x b)
(ite
(and
(> (- (box-width b) (scroll-y b)) min-size-for-scrollbars)
(is-box (pbox b))
(is-elt (box-elt b))
(is-elt (pelt (box-elt b)))
(is-overflow/scroll (style.overflow-x (computed-style (box-elt b)))))
(browser.scrollbar-width ,(the-browser))
0))
(and
(is-no-box (pbox b))
(or (= (scroll-x b) 0) (= (scroll-x b)
(browser.scrollbar-width ,(the-browser))
)))))) ; The root box is weird in several ways
(assert
(forall ((b Box))
(or
(= (scroll-y b)
(ite
(and
(> (- (box-height b) (scroll-x b)) min-size-for-scrollbars)
(is-box (pbox b))
(is-elt (box-elt b))
(is-elt (pelt (box-elt b)))
(is-overflow/scroll (style.overflow-y (computed-style (box-elt b)))))
(browser.scrollbar-width ,(the-browser))
0))
(and
(is-no-box (pbox b))
(or (= (scroll-y b) 0) (= (scroll-y b) (browser.scrollbar-width ,(the-browser)))))))))
| false |
2cf167684f54501a55614a720cdfabd312072408 | b08b7e3160ae9947b6046123acad8f59152375c3 | /Programming Language Detection/Experiment-2/Dataset/Train/Racket/string-concatenation.rkt | 45bb3533976cca55ae370d83090bcc1de7736aa6 | []
| 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 | 162 | rkt | string-concatenation.rkt | #lang racket
(define hello "hello")
(displayln hello)
(define world (string-append hello " " "world" "!"))
(displayln world)
;outputs:
; hello
; hello world!
| false |
57f0a81b905b49e88e99f2def3790ee055f6ec1c | c83841f8a935719fc58177090882c8b61600229c | /iloc-trans.rkt | 6dba7a07a1ec031df536cc05535f2d8bb337b66c | []
| no_license | weistrofferkl/Compilers | c30a97e40f5533bcfe26f5a136abb589cba1a4ce | f5dbc8ad1aa2597df2a114a817cae252f93be6e6 | refs/heads/master | 2021-04-29T01:46:54.817141 | 2017-06-09T00:38:03 | 2017-06-09T00:38:03 | 78,068,036 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 4,371 | rkt | iloc-trans.rkt | #lang racket
(require "array-list.rkt"
"iloc.rkt"
"Project2.rkt"
"array-list.rkt"
"errors.rkt"
"Project3TypeCheck.rkt"
"names.rkt"
data/gvector)
(provide (all-defined-out))
;;;;; REGISTERS AND OFFSETS ;;;;;;
;;
;; These define static register names (Rarp) and offsets for various fields
;; in our activation record. We use these instead of hard numbers so we can
;; optimize (possibily?) and delay deciding on the actual frame layout until later!
(define Rarp (Result (Temp "Rarp" 0) #f #f))
; holds an offset for the static link
(define static-link-offset (make-frame-offset 'static-link))
; holds an offset for the return address
(define return-addr-offset (make-frame-offset 'return-addr))
; holds an offset for the address of where to store the return value
(define return-value-offset (make-frame-offset 'return-value))
; holds an offset for the address of the previous activation record, this is
; used because we can just store where to pop off a record instead of
; needing to figure out the math for it later
(define previous-arp (make-frame-offset 'previous-arp))
; simple translator that only outputs the stuff that you've added, not all
; the preamble and postamble materials
(define (trans str)
(clear-errors)
(let ([ast (parse-str str)])
(if (error-generated?)
(error "cannot translate due to scan or parse error")
(let ([ty (typecheck-ast ast)])
(if (error-generated?)
(error "cannot translate due to type error")
(let ([alist (make-array-list)])
(ast->iloc! (first ast) alist)
; now walk through the alist
(printf "translation resulted in ~a ILOC instructions:~n"
(array-list-length alist))
(display-array-list alist (current-output-port))
alist))))))
; actually translates the string and emits the entire
(define (translate-str str)
; clear the errors first
(clear-errors)
(let ([ast (parse-str str)])
(if (error-generated?)
(error "cannot translate due to scan or parse errors")
(let ([ty (typecheck-ast ast)])
(if (error-generated?)
(error "cannot translate due to type error")
(begin
(translate-ast ast)))))))
(define (translate-ast ast)
; need an array list to store the iloc in
(let ([alist (make-array-list)])
(ast->iloc! (first ast alist))))
(provide ast->iloc!)
; translate a ni AST into an array-list of iloc because I think it will
; be easier to handle given the algorithms in the book (I mean we could
; convert all the iterative versions into recursive versions, but that
; seems like extra work we probably don't need). Note, because of this, we
; have to pass an 'accumulator', which is our current array list of iloc.
; Oh, this also means, we need to do more 'add-note' kind of stuff with
; our iloc structs (like with 'label) and also, we mutate alist (not the ast)
(define (ast->iloc! ast alist)
(let ([result
(match ast
; deal with lists, like in let expressions
['() '()]
[(list node) (ast->iloc! node alist)]
[(cons first rest) (ast->iloc! first alist) (ast->iloc! rest alist)]
; and so we begin again...a numeric literal
[(NumExpr val) (num->iloc val alist)]
[(MathExpr _ _ _) (math->iloc ast alist)]
; translate boolean values, which are integer 1 and 0s
[_ (error "Translation of " ast " not implemented yet")])])
result))
; to load a number into a register, since we pretty much need to do that
; with values (well, we could see if it's a math expression or something else
; but that's later with optimization
(define (num->iloc val alist)
(let ([result (make-temp-result)])
(array-list-add-item! alist (loadI (string->number val) result #f))
result))
(define (math->iloc ast alist)
(let ([e1 (MathExpr-expr1 ast)]
[e2 (MathExpr-expr2 ast)]
[op (MathExpr-op ast)])
(let ([res1 (ast->iloc! e1 alist)]
[res2 (ast->iloc! e2 alist)]
[result (make-temp-result)])
(let ([item
(cond
[(eq? op '+) (add res1 res2 result)])])
(array-list-add-item! alist item)
result))))
| false |
c58b21ea733add78a207ac82ba39580748ef2d40 | b4146474529ac47b8e93adabe9d61f401a481d41 | /llvm/llvm-symbolic.rkt | 7fe27e90456cb50e3b630f0a31d88c530769eadf | [
"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 | 816 | rkt | llvm-symbolic.rkt | #lang s-exp rosette
(require "../symbolic.rkt" "../inst.rkt")
(provide llvm-symbolic%)
(define llvm-symbolic%
(class symbolic%
(super-new)
(inherit sym-op sym-arg)
(inherit-field machine)
(override len-limit gen-sym-inst)
;; Num of instructions that can be synthesized within a minute.
(define (len-limit) 3)
;; Create symbolic operand using Rosette symbolic variable.
(define (sym-arg-vec)
(define-symbolic* is-num boolean?)
(if is-num
(sym-arg)
(vector (sym-arg) (sym-arg) (sym-arg) (sym-arg))))
(define (gen-sym-inst)
(define args (get-field max-number-of-args machine))
(inst (sym-op)
(vector-append (vector (sym-arg))
(for/vector ([arg (sub1 args)]) (sym-arg-vec)))))
))
| false |
2293ed4d824a65d9c714dfef1d6e157f69410121 | ca308b30ee025012b997bb8a6106eca1568e4403 | /cclp-parser.rkt | 2badfd3752a3888bc7e5581712dbbf9438bbc023 | [
"MIT"
]
| permissive | v-nys/cclp | 178d603c6980922d0fe3f13ee283da61809e0a99 | c20b33972fdc3b1f0509dd6b9e4ece4f5f3192b3 | refs/heads/master | 2022-02-18T07:12:28.750665 | 2017-10-30T06:55:45 | 2017-10-30T06:55:45 | 64,598,287 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 3,507 | rkt | cclp-parser.rkt | ; MIT License
;
; Copyright (c) 2016 Vincent Nys
;
; Permission is hereby granted, free of charge, to any person obtaining a copy
; of this software and associated documentation files (the "Software"), to deal
; in the Software without restriction, including without limitation the rights
; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
; copies of the Software, and to permit persons to whom the Software is
; furnished to do so, subject to the following conditions:
;
; The above copyright notice and this permission notice shall be included in all
; copies or substantial portions of the Software.
;
; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
; SOFTWARE.
; note: grammar could be reduced in size (e.g. abstract-number-term is redundant)
; original goal was to write preprior-pair so that components were regular abstract atoms, too
; this is beyond my current understanding of Racket macros
; should prohibit constants of the form symXYZ, where XYZ is a natural number
#lang brag
cclp-program : PROGRAM-DELIMITER program-section [FULL-EVALUATION-DELIMITER full-evaluation-section] [CONCRETE-CONSTANTS-DELIMITER concrete-constants-section] [PARTIAL-ORDER-DELIMITER partial-order-section] QUERY-DELIMITER abstract-atom
program-section : (rule PERIOD)*
atom : SYMBOL [OPEN-PAREN term (COMMA term)* CLOSE-PAREN]
term : variable | function-term | lplist
variable : VARIABLE-IDENTIFIER
function-term : (SYMBOL [OPEN-PAREN term (COMMA term)* CLOSE-PAREN]) | number-term
number-term : NUMBER
lplist : OPEN-LIST-PAREN [term (COMMA term)* [LIST-SEPARATOR (lplist | variable)]] CLOSE-LIST-PAREN
rule : (atom IMPLIES conjunction) | atom
conjunction : atom (COMMA atom)*
full-evaluation-section : (fullai-rule-with-body | fullai-rule-without-body)+
fullai-rule-with-body : abstract-atom-with-args LEADS-TO (abstract-substitution | fail) PERIOD
fullai-rule-without-body : abstract-atom-with-args PERIOD
abstract-atom-with-args : SYMBOL OPEN-PAREN abstract-term (COMMA abstract-term)* CLOSE-PAREN
abstract-atom-without-args : SYMBOL
abstract-term : abstract-variable | abstract-function-term | abstract-lplist
abstract-variable : abstract-variable-a | abstract-variable-g
abstract-variable-a : AVAR-SYMBOL-A NUMBER
abstract-variable-g : AVAR-SYMBOL-G NUMBER
abstract-number-term : abstract-number
abstract-number : NUMBER
abstract-function-term : (SYMBOL [OPEN-PAREN abstract-term (COMMA abstract-term)* CLOSE-PAREN]) | abstract-number-term
abstract-lplist : OPEN-LIST-PAREN [abstract-term (COMMA abstract-term)* [LIST-SEPARATOR (abstract-lplist | abstract-variable)]] CLOSE-LIST-PAREN
abstract-substitution : abstract-substitution-pair (COMMA abstract-substitution-pair)*
abstract-substitution-pair : abstract-variable SLASH abstract-term
abstract-atom : abstract-atom-with-args | abstract-atom-without-args
abstract-conjunction : abstract-atom (COMMA abstract-atom)*
concrete-constants-section : concrete-constant+
concrete-constant: SYMBOL
partial-order-section : partial-ordering-pair+
partial-ordering-pair : abstract-atom GT abstract-atom
fail : SYMBOL | false |
250aa44dc1079817ed7dcf525a90f7ee7f825843 | 6c5b22767a683f9588914208ee4fb4811c760c21 | /project.rkt | 671ac231c217a45fe16c6d762ee5ac40d0412172 | [
"MIT"
]
| permissive | unjordy/literally | c7e56e3461d10dcd9af8cdce7afab315f4f128e6 | 8740a7a7ce0102a3e138397de67fd0d83f3d04e5 | refs/heads/master | 2016-09-13T17:08:31.822538 | 2016-05-02T04:37:20 | 2016-05-02T04:37:20 | 57,598,136 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 7,817 | rkt | project.rkt | #lang racket/base
(require (for-syntax racket/base
racket/dict)
racket/dict
web-server/servlet
web-server/servlet-env
racket/list
racket/string
racket/rerequire
net/url)
(provide (except-out (all-from-out racket/base)
#%module-begin)
(rename-out [module-begin #%module-begin])
dict-map
build
make-build-all)
(begin-for-syntax
(define (syntax->input-string expr)
(let ([input (symbol->string (syntax-e expr))])
(substring input 0 (- (string-length input) 1))))
(define (input-id? expr)
(if (symbol? (syntax-e expr))
(let ([input (symbol->string (syntax-e expr))])
(eq? (string-ref input (- (string-length input) 1)) #\:))
#f)))
(define (build in out)
(let-values ([(output-path output-name is-dir) (split-path out)]
[(input-text) (dynamic-require in 'output)])
(unless (directory-exists? output-path)
(make-directory output-path))
(with-output-to-file out
(λ ()
(write-string input-text))
#:exists 'truncate/replace)))
(define (make-build-all build-map)
(λ (#:print-output [print-output #f])
(when print-output
(printf "Building project...\n\n"))
(for ([sources build-map])
(let ([in-path (car sources)]
[out-path (cdr sources)])
(when print-output
(printf "Building ~a\n" (path->string out-path)))
(build in-path out-path)))
(when print-output
(printf "\nDone."))))
(define (project-url path-str port)
(let ([p-url (string->url path-str)])
(struct-copy url
p-url
[scheme "http"]
[host "localhost"]
[port port])))
(define route-map (make-parameter #hash()))
(define-values (doc-dispatch doc-url)
(dispatch-rules
[((string-arg) ...) #:method m
(λ (req path)
(let* ([route (string-append "/" (string-join path "/"))]
[doc-path (hash-ref (route-map) route #f)])
(cond
[(path? doc-path)
(dynamic-rerequire doc-path
#:verbosity 'none)
(define request-processor
(dynamic-require doc-path
'process-request
(λ () (λ (req) #t))))
(define doc
(dynamic-require doc-path
'output
(λ () (λ () "Not found"))))
(define cleanup
(dynamic-require doc-path
'cleanup
(λ () (λ () #t))))
(request-processor req)
(define doc-text (doc))
(cleanup)
(response/full
200 #"Okay"
(current-seconds) TEXT/HTML-MIME-TYPE
empty
(list (string->bytes/utf-8 doc-text)))]
[else
(response/full
404 #"Not found"
(current-seconds) TEXT/HTML-MIME-TYPE
empty
(list (string->bytes/utf-8 "Not found")))])))]))
(define (make-start-server host-map port visibility)
(λ () (let ([urls (map (λ (hm) (project-url (car hm) port))
host-map)]
[listen-ip (cond
[(eq? visibility 'local)
"127.0.0.1"]
[(eq? visibility 'global)
#f])])
(for ([url urls])
(printf "Hosting ~a\n"
(url->string url)))
(printf "\n")
(parameterize ([route-map (make-hash host-map)])
(serve/servlet doc-dispatch
#:servlet-regexp #rx""
#:port port
#:listen-ip listen-ip
#:quit? #f
#:launch-browser? #f)))))
(define-syntax (|project builder| stx)
(define (build-project exprs
[source-map #hash()]
[output-dir 'public]
[port 8000]
[visibility 'local])
(cond
[(null? exprs)
#`(begin
(define output-dir (string->path (symbol->string '#,output-dir)))
(define build-map (dict-map
#,source-map
(λ (o i)
(cons (path->complete-path
(string->path
(string-append i ".rkt")))
(path->complete-path
(build-path output-dir
(string->path o)))))))
(define host-map (dict-map
#,source-map
(λ (o i)
(cons (string-append "/" o)
(path->complete-path
(string->path
(string-append i ".rkt")))))))
(define build-all (make-build-all build-map))
(define start-server (make-start-server host-map #,port '#,visibility))
(provide output-dir build-map host-map build-all start-server)
(module* configure-runtime #f
(start-server)))]
[(keyword? (syntax-e (car exprs)))
(cond
[(eq? (syntax-e (car exprs)) '#:output)
(build-project (cddr exprs)
source-map
(syntax-e (cadr exprs))
port
visibility)]
[(eq? (syntax-e (car exprs)) '#:port)
(build-project (cddr exprs)
source-map
output-dir
(syntax-e (cadr exprs))
visibility)]
[(eq? (syntax-e (car exprs)) '#:visibility)
(build-project (cddr exprs)
source-map
output-dir
port
(syntax-e (cadr exprs)))]
[else (raise-syntax-error #f
"Invalid configuration declaration"
(car exprs))])]
[(and (symbol? (syntax-e (car exprs)))
(input-id? (car exprs)))
(build-project (cddr exprs)
(dict-set source-map
(symbol->string (syntax-e (cadr exprs)))
(syntax->input-string (car exprs)))
output-dir
port
visibility)]
[else (raise-syntax-error #f
"You gave me a declaration I don't understand"
(car exprs))]))
(build-project (cdr (syntax->list stx))))
(define-syntax-rule (module-begin expr ...)
(#%plain-module-begin
(|project builder| expr ...)))
| true |
72c78645c0475c753ab916a9787460dd67bf86ef | f912c2d031b6d763cebb4a6732388285cf553a0a | /Klausurvorbereitung.rkt | 578111e44343885d5e8c15b6b83502f65d96d7ca | []
| no_license | brunothg/LogischesUndFunktionalesProgrammieren | 1386e299e6e1ba0488984f4f61986f01cec3b677 | 3ae9065b6a739c9dbcc99b262a2f850eea153e36 | refs/heads/master | 2020-03-31T13:53:36.039807 | 2019-02-21T11:53:06 | 2019-02-21T11:53:06 | 152,271,888 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 4,187 | rkt | Klausurvorbereitung.rkt | (load "k1816-extensions.scm")
;; Übungsaufgaben aus den Kurseinheiten und den Klausurprotokollen
;; average - Berechnung des Durchschnitts zweier Zahlen
(define (average x y) (* (+ x y) 0.5))
;(average 3 7)
;; abs - Berechnung des Absolutbetrags einer Zahl
(define (abs x) (if (< x 0) (* x -1) x))
;(abs -123)
;; atom? - Testet, ob das ihr übergebene Argument ein Atom ist (mit cond)
(define (atom? x) (
cond
((boolean? x) #t)
((number? x) #t)
((string? x) #t)
((symbol? x) #t)
(else #f)
))
;(atom? 1) (atom? atom?) (atom? "abc") (atom? 'abc)
;; atom? - Variation mit OR
(define (atom? x) (
if
(or (boolean? x) (number? x) (string? x) (symbol? x))
#t
#f
))
;(atom? 1) (atom? atom?) (atom? "abc") (atom? 'abc)
;; ith - Liefert das i-te Element einer Liste zurück
(define (ith liste n)
(if (> n 0)
(ith (cdr liste) (- n 1))
(car liste)
)
)
;(ith '(a b c d e f g) 4)
;; length - Berechnet die Länge einer Liste
(define (length liste)
(define (length liste counter)(
if (null? liste)
counter
(length (cdr liste) (+ counter 1))
))
(length liste 0)
)
;(length '(1 2 3 4)) (length (list 1 2 3 4 5))
;; append - Listenkonkatenation
(define (append liste1 liste2)
(cond
((null? liste1) liste2)
((null? liste2) liste1)
(else (cons (car liste1) (append (cdr liste1) liste2)))
)
)
;(append '(a b c d) '(e f g h))
;; produkt - Gib das Produkt einer Liste von Zahlen zurück
(define (product liste)
(define (product liste counter)
(if (null? liste)
counter
(product (cdr liste) (* counter (car liste)))
)
)
(product liste 1)
)
;(product '(3 4 5))
;; sum-with - Eine Funktion (Summe von bis), die eine andere Funktion zurückgibt
(define (sum-with func)
(define (sum-with von bis func counter)
(if (> von bis)
counter
(sum-with (+ von 1) bis func (+ counter (func von)))
)
)
(lambda (von bis) (sum-with von bis func 0))
)
;(define sumsquare (sum-with (lambda (n) (* n n)))) (sumsquare 3 5)
;; dreimal - Gibt eine Funktion zurück, die die übergebene Funktion dreimal anwendet.
(define (dreimal f) (lambda (x) (f(f(f x)))))
;(define (p1 x) (+ x 1)) (let ((f (dreimal p1))) (f 5))
;; n-mal - eine Funktion, die eine Funktion n-mal ausführt
(define (n-mal n f) (
if (> n 0)
(begin
(f)
(n-mal (- n 1) f)
)
))
;(n-mal 3 (lambda () (begin (display 1) (newline))))
;; filter - eine Funktion, die eine Liste und ein Prädikat als Eingabe erwartet und eine Liste der Elemente aus der Eingabeliste zurückgibt, die das Prädikat erfüllen
(define (filter liste check)
(cond
((null? liste) '())
((check (car liste)) (cons (car liste) (filter (cdr liste) check)))
(else (filter (cdr liste) check))
)
)
;(filter '(1 2 3 4 5 6 7 8 9) (lambda (x) (= 0 (modulo x 2))))
;; insert - Fügt ein Element sortiert in eine Liste ein
(define (insert liste ele)
(if (null? liste)
(cons ele '())
(begin
(if (<= ele (car liste))
(cons ele liste)
(cons (car liste) (insert (cdr liste) ele))
)
)
)
)
;(insert '(1 2 3 5 6) 4)
;; gerade? - Prüft, ob eine Zahl gerade ist
(define (gerade? x) (= (modulo x 2) 0))
;(gerade? 5) (gerade? 6)
;; member - Prüft, ob ein Element in einer Liste enthalten ist
(define (member liste ele)
(cond
((null? liste) #f)
((eq? ele (car liste)) #t)
(else (member (cdr liste) ele))
)
)
;(member '(a b c d e f) 'c) (member '(a b d e f) 'c)
;; last - Überprüft, ob ein Element das letzte Element einer Liste ist
(define (last liste ele)
(cond
((null? liste) #f)
((and (eq? ele (car liste)) (null? (cdr liste))) #t)
(else (last (cdr liste) ele))
)
)
;(last '(a b c) 'c) (last '(a b c d e f) 'c)
;; Definition der Stream-Funktionen.
(define the-empty-stream '())
(define-syntax cons-stream
(syntax-rules ()
((cons-stream x y)
(cons x (delay y)))))
(define head car)
(define (tail s) (force (cdr s)))
(define empty-stream? null?)
| true |
608d38f1dbf823982099b2e6a3fe979fcb1a67b7 | d755de283154ca271ef6b3b130909c6463f3f553 | /htdp-lib/htdp/dir.rkt | 27db63a549bf6c4dea41af04eddb4896fe82a277 | [
"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 | 5,253 | rkt | dir.rkt | #lang racket/base
(provide
;; map the directory tree at the given path into a data representation according to model 3 of
;; HtDP/1e (part III) and HtDP/2e (Part IV);
;; effects: if a directory d isn't accessible, the function prints (inaccessible d) to stdout
create-dir ; String -> Dir.v3
; structure
dir? make-dir dir-name dir-dirs dir-files
; structure
file? [rename-out [create-file make-file]] file-name file-content file-size file-date
make-date date-year date-month date-day date-hours date-minutes date-seconds)
;; ---------------------------------------------------------------------------------------------------
(require
(only-in racket match-define natural-number/c)
; (only-in lang/htdp-beginner define-struct)
htdp/error
lang/prim
(only-in racket/base
[file-or-directory-modify-seconds s:file-or-directory-modify-seconds]
[file-size s:file-size]))
;; Structures:
(define-struct dir (name dirs files) #:transparent)
(define-struct file (name size date content) #:transparent)
(define-struct date (year month day hours minutes seconds) #:transparent)
(set! make-dir
(let ([old make-dir])
(lambda x
(cond
[(null? x) (error 'make-dir "expects 3 arguments, but found none" x)]
[(null? (cdr x)) (error 'make-dir "expects 3 arguments, but found only 1")]
[(null? (cddr x)) (error 'make-dir "expects 3 arguments, but found only 2")]
[(> (length x) 3) (error 'make-dir "expects 3 arguments, but found ~a" (length x))]
[else
(define name (car x))
(define dirs (cadr x))
(define files (caddr x))
(check-arg 'make-dir (or (string? name) (symbol? name)) "string or symbol" "first" name)
(check-arg 'make-dir (and (list? dirs) (andmap dir? dirs)) "list of dir-s" "second" dirs)
(check-arg 'make-dir (and (list? files) (andmap file? files)) "list of file-s" "third" files)
(apply old x)]))))
;; FilePath -> Date
(define (create-date x)
(define s (s:file-or-directory-modify-seconds x))
(match-define (date* sc mi h d mo y wd yd dst z nano zname) (seconds->date s))
(make-date y mo d h mi sc))
(define create-file
(let* ([old make-file]
[make-file
(case-lambda
[(name size time content)
(check-arg 'make-file (or (string? name) (symbol? name)) "string or symbol" "first" name)
(check-arg 'make-file (natural-number/c size) "natural number" "second" size)
(check-arg 'make-file (or (date? time) (and (number? time) (= 0 time))) "date (or 0)"
"third" time)
(old name size time content)]
[(name size content) (create-file name size 0 content)]
[x (error 'make-file "expects 3 or 4 arguments, but found only ~a" (length x))])])
make-file))
(define-primitive create-dir create-dir/proc)
;; Data:
;; Directory = (make-dir (U String Symbol) (listof Dir) (listof File))
;; File = (make-file (U String Symbol) Number Nat (union '() X))
(define (create-dir/proc a-path)
(check-arg 'create-dir (string? a-path) "string" "first" a-path)
(let ([a-path! (string->path a-path)])
(if (directory-exists? a-path!)
(car (explore (list a-path!)))
(error 'create-dir "not a directory: ~e" a-path))))
;; explore : (listof String[directory-names]) -> (listof Directory)
(define (explore dirs)
(map (lambda (d)
(let-values ([(fs ds) (pushd d directory-files&directories)])
(define files (map (lambda (x) (build-path d x)) fs))
(make-dir
#;string->symbol #;path->string (my-split-path d)
(explore (map (lambda (x) (build-path d x)) ds))
(map make-file
(map path->string fs)
(map (lambda (x) (if (file-exists? x) (s:file-size x) 0)) files)
(map (lambda (x) (if (file-exists? x) (create-date x) 0)) files)
(map (lambda (x) "") fs)))))
dirs))
;; Path -> String
(define (my-split-path d)
(let-values ([(base name mbd?) (split-path d)])
(cond
[(symbol? name) (symbol->string name)]
[(string? name) name]
[(path? name) (path->string name)]
[else d])))
;; pushd : String[directory-name] (-> X) -> X
(define (pushd d f)
(parameterize ([current-directory d])
(f)))
;; directory-files&directories :
;; (-> (values (listof String[file-names]) (listof String[directory-names])))
(define (directory-files&directories)
(with-handlers ((exn:fail:filesystem?
(lambda (x)
(displayln `(inaccessible ,(current-directory)))
(values '() '()))))
(let ((contents (directory-list)))
(values
(filter (lambda (x) (or (file-exists? x) (link-exists? x))) contents)
(filter (lambda (x) (and (directory-exists? x) (not (link-exists? x))))
contents)))))
;; get-file-content : file -> (int -> string)
;; to read a file on demand as a string
;; option to expand the library ...
;; cache it ...
(define (get-file-content f)
(read-string (file-size f) (open-input-file (symbol->string (file-name f)))))
| false |
84af98d7312b4f9a632e2dcbc93121991a22cf35 | cbfdcb97813c7c0ca831be9f5cc3b9f91ed5fc89 | /eval.rkt | dad85230b0d6cceeb4fad370f11331f7948f5b12 | []
| no_license | zthomae/sicp | 8e099268c4a6ebdbf2bee185f91404a4816a04f2 | 00c26034c53eb9717de976c27fe608c4b967c8dc | refs/heads/main | 2021-07-31T21:11:23.209094 | 2021-07-31T05:28:39 | 2021-07-31T05:38:37 | 45,854,544 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 480 | rkt | eval.rkt | #lang racket/base
(require racket/sandbox)
(provide make-eval)
(define (make-eval)
(define ev (parameterize ([sandbox-output 'string]
[sandbox-error-output 'string])
(call-with-trusted-sandbox-configuration
(lambda ()
(make-evaluator 'sicp)))))
(ev '(#%require (only racket/base error)))
(ev '(#%require (only racket/pretty pretty-display)))
(ev '(#%require (only racket/base random)))
ev)
| false |
a38a25c6483c4053fae67a9743572c8f32381b2a | 37858e0ed3bfe331ad7f7db424bd77bf372a7a59 | /book/2ed/06-infinite-&-divergence/very-recursiveo.rkt | 950573aca0858d7ccfdde6d2e5d3104a3a935091 | []
| 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 | 331 | rkt | very-recursiveo.rkt | #lang racket
(require "../libs/trs2/trs2-impl.rkt")
(require "./alwayso.rkt")
(require "./nevero.rkt")
(provide (all-defined-out))
(defrel (very-recursiveo)
(conde
((nevero))
((very-recursiveo))
((alwayso))
((very-recursiveo))
((nevero))))
(module+ main
(run 10 q (very-recursiveo))
)
| false |
298db09900bec865182fa605ad5582b5e1871167 | 1ae479672668733f0fb94fc6988ec7bfef697501 | /drawing.rkt | 62789215a1f00110bf95fc821a830d33577f3977 | []
| no_license | bboskin/records | 441435ca9d8044ce00b42ead25b5476d891b9337 | 683678c450934cc7d5e66d8757c4499ff421eed0 | refs/heads/master | 2022-04-26T19:58:08.307316 | 2020-03-31T17:56:28 | 2020-03-31T17:56:28 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 6,554 | rkt | drawing.rkt | #lang racket
(require 2htdp/image
"basics.rkt"
"tasks.rkt")
(provide draw)
;; code for drawing record stores.
;; constants for drawing
(define SCENE-HEIGHT 500)
(define SCENE-WIDTH 500)
(define PLAYER-COLOR "blue")
(define CLERK-COLOR "red")
(define CLERK-DESK-COLOR "brown")
(define CLERK-TEXT-COLOR "brown")
(define FLOOR-COLOR "tan")
(define RECORD-TEXT-SIZE 20)
(define RECORD-TEXT-COLOR "blue")
(define NO-RECORD-TEXT-COLOR "red")
(define NO-RECORDS-MESSAGE "No Records Here...")
;; drawing helpers for each kind of square (to be improved)
(define (draw-player w h)
(let ()
(overlay
(above
(circle (floor (/ (- h (/ h 5) (/ h 3)) 3)) "solid" "beige")
(beside
(rectangle (/ w 10) (/ h 3) "solid" "red")
(overlay
(square (/ h 5) "solid" "red")
(rectangle (/ w 3) (/ h 3) "solid" "white"))
(rectangle (/ w 10) (/ h 3) "solid" "red"))
(rectangle (/ w 3) (/ h 3) "solid" "brown")
)
(rectangle w h "solid" FLOOR-COLOR))))
#;
(define (draw-player w h)
(overlay
(circle (/ (min w h) 2) "solid" PLAYER-COLOR)
(rectangle w h "solid" FLOOR-COLOR)))
(define (draw-floor w h)
(rectangle w h "solid" FLOOR-COLOR))
(define (draw-clerk w h)
(overlay
(circle (/ (min w h) 2) "solid" CLERK-COLOR)
(rectangle w h "solid" CLERK-DESK-COLOR)))
(define (draw-records w h)
(if (zero? h) empty-image
(above (rectangle w 1 "solid" (color (random 255) (random 255) (random 255)))
(draw-records w (sub1 h)))))
;; drawing a column of the store
(define (draw-square s)
(match s
[#f draw-floor]
[`(clerk ,mode) draw-clerk]
['player draw-player]
[`(section ,records) draw-records]
[else (error "Invalid object in the store")]))
(define (draw-store-background grid w h)
(foldr
(λ (r a) (above (foldr (λ (s a) (beside ((draw-square s) w h) a)) empty-image r) a))
empty-image
grid))
(define (draw-record r)
(match r
[(Record title artist cost tracks facts)
(above (text title RECORD-TEXT-SIZE RECORD-TEXT-COLOR)
(text artist RECORD-TEXT-SIZE RECORD-TEXT-COLOR)
(text (string-append "" (number->string cost)) RECORD-TEXT-SIZE RECORD-TEXT-COLOR))]))
(define (draw-record-selection recs)
(overlay
(if (null? recs) (text NO-RECORDS-MESSAGE RECORD-TEXT-SIZE NO-RECORD-TEXT-COLOR) (draw-record (car recs)))
(rectangle (* SCENE-WIDTH 4/5) (* SCENE-HEIGHT 4/5) "solid" "white")))
(define (clerk-text s)
(text s RECORD-TEXT-SIZE CLERK-TEXT-COLOR))
(define (draw-clerk-interaction mode)
(overlay
(match mode
['start
(above
(clerk-text "what can i do ya for?")
(clerk-text "press b to buy the current records in your bag.")
(clerk-text "press t if you finished a task!")
(clerk-text "press r to restart our conversation."))]
['bought
(clerk-text "great choices!")]
['not-enough
(clerk-text "you need more money!")]
['task-done
(clerk-text "Way to go!")]
['no-task
(clerk-text "Sorry, that didn't complete any new tasks")])
(rectangle (* SCENE-WIDTH 4/5) (* SCENE-HEIGHT 4/5) "solid" "white")))
(define (draw-record-store R)
(match R
[(Store grid mode taskbar bag money owned)
(let* ((k-cols (length grid))
(k-rows (length (car grid)))
(SPACE-WIDTH (/ SCENE-WIDTH k-cols))
(SPACE-HEIGHT (/ SCENE-HEIGHT k-rows)))
(let ((store-background (draw-store-background grid SPACE-WIDTH SPACE-HEIGHT)))
(match mode
['walking store-background]
['won store-background]
[`(digging ,recs)
(overlay (draw-record-selection recs)
store-background)]
[`(clerk ,mode)
(overlay (draw-clerk-interaction mode)
store-background)])))]))
;;; a sidebar with useful info
(define SIDEBAR-TEXT-COLOR "black")
(define SIDEBAR-TEXT-SIZE 20)
(define SIDEBAR-BACKGROUND-COLOR "white")
(define (sidebar-text x) (text x SIDEBAR-TEXT-SIZE SIDEBAR-TEXT-COLOR))
(define (draw-sidebar R)
(match R
[(Store grid mode taskbar bag money owned)
(overlay
(above (sidebar-text (format "Cash: $~s" money))
(sidebar-text "\n\n")
(sidebar-text (format "Record Bag:"))
(foldr above empty-image (map (λ (x) (sidebar-text (string-append (Record-title x) ": $" (number->string (Record-cost x))))) bag))
(sidebar-text "\n\n")
(sidebar-text "To walk around,")
(sidebar-text "use the arrow keys.")
(sidebar-text "To look at records,")
(sidebar-text "walk up to a shelf and press space.")
(sidebar-text "To put a record in your bag,")
(sidebar-text "press space while looking at the one you want.")
(sidebar-text "To talk to the clerk,")
(sidebar-text "walk up to him and press space.")
(sidebar-text "To return to the floor from a submenu,")
(sidebar-text "press x.")
(sidebar-text "To empty your record bag, press d."))
(rectangle (/ SCENE-WIDTH 2) SCENE-HEIGHT "solid" SIDEBAR-BACKGROUND-COLOR))]))
(define (draw-personal-collection R)
(match R
[(Store grid mode taskbar bag money owned)
(overlay
(foldr
(λ (x a) (above (text (Record-title x) 20 "black") a))
empty-image
owned)
(rectangle (/ SCENE-WIDTH 2) (/ SCENE-HEIGHT 2) "solid" SIDEBAR-BACKGROUND-COLOR))]))
;; drawing the taskbar
(define TASKBAR-BACKGROUND-COLOR "white")
(define TASKBAR-TEXT-SIZE 20)
(define TASKBAR-DONE-TEXT-COLOR "green")
(define TASKBAR-NOT-DONE-TEXT-COLOR "red")
(define TASKBAR-PAYMENT-COLOR "orange")
(define (draw-task t)
(match t
[(Task tt reward test?)
(above
(text tt TASKBAR-TEXT-SIZE TASKBAR-NOT-DONE-TEXT-COLOR)
(text (format "Pays: $~s and ~s records" (car reward) (length (cdr reward))) TASKBAR-TEXT-SIZE TASKBAR-PAYMENT-COLOR))]))
(define (draw-taskbar R)
(match R
[(Store grid mode taskbar bag money owned)
(overlay
(if (null? taskbar)
(text "You beat the level!" TASKBAR-TEXT-SIZE TASKBAR-PAYMENT-COLOR)
(foldr
(λ (x a) (above (draw-task x) a))
empty-image
taskbar))
(rectangle (/ SCENE-WIDTH 2) (/ SCENE-HEIGHT 2) "solid" TASKBAR-BACKGROUND-COLOR))]))
;; wrapper
(define (draw R)
(beside
(draw-record-store R)
(draw-sidebar R)
(above
(draw-taskbar R)
(draw-personal-collection R)))) | false |
8141e99ce6d41e2899840e3e7969a173d79b2c06 | a1791edada0da7a1f0938b433be063ec0fb06475 | /xsmith/private/test-fuzzers/no-types.rkt | d70bc8b6c29f03bc7d6a7d25a1834c4e2c04fea4 | [
"BSD-3-Clause",
"BSD-2-Clause"
]
| permissive | pmatos/xsmith | 2bfae1b4ac493e9fc684a398c2daf22fa390bcb0 | 6786830221aab31d2ab12edcba03448c54c2acf6 | refs/heads/master | 2022-12-28T13:46:26.698237 | 2020-10-05T17:40:21 | 2020-10-05T17:40:21 | 303,690,503 | 5 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 4,783 | rkt | no-types.rkt | #lang clotho
;; -*- mode: Racket -*-
;;
;; Copyright (c) 2019-2020 The University of Utah
;; All rights reserved.
;;
;; This file is part of Xsmith, a generator of highly effective fuzz testers.
;;
;; Redistribution and use in source and binary forms, with or without
;; modification, are permitted provided that the following conditions are met:
;;
;; * Redistributions of source code must retain the above copyright notice,
;; this list of conditions and the following disclaimer.
;;
;; * Redistributions in binary form must reproduce the above copyright
;; notice, this list of conditions and the following disclaimer in the
;; documentation and/or other materials provided with the distribution.
;;
;; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
;; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
;; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
;; ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
;; LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
;; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
;; SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
;; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
;; CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
;; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
;; POSSIBILITY OF SUCH DAMAGE.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(require
xsmith
xsmith/app
racr
racket/pretty
racket/string
racket/port)
(define-spec-component arith)
(add-to-grammar
arith
[Definition #f (name type Expression)
#:prop binder-info ()]
[Expression #f ()
#:prop may-be-generated #f]
[LetStar Expression ([definitions : Definition *]
[sideEs : Expression * = (random 2)]
Expression)
#:prop strict-child-order? #t]
[VariableReference Expression (name)
#:prop reference-info (read)]
[SetBangRet Expression (name Expression)
#:prop reference-info (write)]
[LiteralInt Expression ([v = (random 100)])]
[Addition Expression ([es : Expression * = (+ 1 (random 5))])
#:prop choice-weight 50])
(add-property arith render-node-info
[LetStar
(λ (n)
`(let* (,@(map (λ (d)
`[,(string->symbol (ast-child 'name d))
,($xsmith_render-node
(ast-child 'Expression d))])
(ast-children (ast-child 'definitions n))))
,@(map (λ (c) ($xsmith_render-node c))
(ast-children (ast-child 'sideEs n)))
,($xsmith_render-node (ast-child 'Expression n))))]
[LiteralInt (λ (n) (ast-child 'v n))]
[VariableReference (λ (n) (string->symbol (ast-child 'name n)))]
[SetBangRet (λ (n) `(begin (set! ,(string->symbol (ast-child 'name n))
,($xsmith_render-node
(ast-child 'Expression n)))
,(string->symbol (ast-child 'name n))))]
[Addition (λ (n) `(+ ,@(map (λ (c) ($xsmith_render-node c))
(ast-children (ast-child 'es n)))))])
(define extra-print-1-param (make-parameter #f))
(define extra-print-2-param (make-parameter #f))
(define-xsmith-interface-functions
[arith]
#:program-node LetStar
#:comment-wrap (λ (lines)
(string-join
(map (λ (x) (format ";; ~a" x)) lines)
"\n"))
#:format-render (λ (ast)
(and (extra-print-1-param)
(eprintf "extra-print-1: ~a\n" (extra-print-1-param)))
(and (extra-print-2-param)
(eprintf "extra-print-2: ~a\n" (extra-print-2-param)))
(with-output-to-string
(λ ()
(pretty-print ast (current-output-port) 1))))
#:features ([test-feature #f])
#:extra-parameters ([extra-print-1
"print an extra thing with no normalizer"
extra-print-1-param
#f]
[extra-print-2
"print an extra thing backwards"
extra-print-2-param
(λ (s) (apply string (reverse (string->list s))))])
)
(module+ main
(arith-command-line))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; End of file.
| false |
a3e3025afad3647c62aea6638439bde90f7f4402 | 099418d7d7ca2211dfbecd0b879d84c703d1b964 | /whalesong/tests/older-tests/moby-programs/math.rkt | a549abbeecc11a37758acb385e1149c61ab5a585 | []
| 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 | 1,240 | rkt | math.rkt | #lang s-exp "../../lang/wescheme.rkt"
"math.rkt"
(check-expect (number? pi) true)
(check-expect (number? e) true)
(check-within pi 22/7 0.1)
(check-within e 2.718 0.1)
(check-expect (=~ 3 4 1) true)
(check-expect (=~ 3 4 .9) false)
(check-expect (< 3 4) true)
(check-expect (< 4 3) false)
(check-expect (< 3 3) false)
(check-expect (> 3 4) false)
(check-expect (> 4 3) true)
(check-expect (> 4 4) false)
(check-expect (<= 3 4) true)
(check-expect (<= 4 3) false)
(check-expect (<= 3 3) true)
(check-expect (>= 3 4) false)
(check-expect (>= 4 3) true)
(check-expect (>= 4 4) true)
(check-expect (abs 3) 3)
(check-expect (abs -3) 3)
(check-expect (quotient 42 2) 21)
(check-expect (remainder 42 2) 0)
(check-expect (modulo 5 3) 2)
(check-expect (max 3 4 5) 5)
(check-expect (max 5) 5)
(check-expect (min 3 4 5) 3)
(check-expect (min 5) 5)
(check-expect (gcd 3 4) 1)
(check-expect (gcd 5 10 20) 5)
(check-expect (lcm 3 4) 12)
(check-expect (lcm 5 10 20) 20)
(check-expect (floor 3) 3)
(check-expect (ceiling 3) 3)
(check-expect (round 3) 3)
(check-expect (round 3) 3)
(check-expect (floor 3.5) 3.0)
(check-expect (ceiling 3.5) 4.0)
(check-expect (floor -3.5) -4.0)
(check-expect (ceiling -3.5) -3.0)
"math.rkt end" | false |
d2a6a96dcc1832eb0bb47909d15f0c2bffce1dee | ecfd9ed1908bdc4b099f034b121f6e1fff7d7e22 | /old1/eopl/3/lib.rkt | d3e2ad63ec30f507dd31be13297bd49e6f2fe0db | [
"MIT"
]
| permissive | sKabYY/palestra | 36d36fc3a03e69b411cba0bc2336c43b3550841c | 06587df3c4d51961d928bd8dd64810c9da56abf4 | refs/heads/master | 2021-12-14T04:45:20.661697 | 2021-11-25T08:29:30 | 2021-11-25T08:29:30 | 12,856,067 | 6 | 3 | null | null | null | null | UTF-8 | Racket | false | false | 548 | rkt | lib.rkt | #lang eopl
(#%provide (all-defined))
(define (begin-red) (display "\033[91m"))
(define (begin-green) (display "\033[92m"))
(define (end-color) (display "\033[0m"))
(define (interp-disp interp sources)
(define (iter count sources)
(if (null? sources)
'done
(let ((src (car sources)))
(display count)(display ":")(newline)
(begin-green)
(display src)(newline)
(begin-red)
(eopl:pretty-print (interp src))
(end-color)
(iter (+ count 1) (cdr sources)))))
(iter 1 sources))
| false |
16f0007fb920f5d61f07c6f7a5bd99ea79f5c307 | b0c07ea2a04ceaa1e988d4a0a61323cda5c43e31 | /langs/extort/interp.rkt | 86836693a077d809e6f9deea590a5f05d92f63ce | [
"AFL-3.0"
]
| permissive | cmsc430/www | effa48f2e69fb1fd78910227778a1eb0078e0161 | 82864f846a7f8f6645821e237de42fac94dff157 | refs/heads/main | 2023-09-03T17:40:58.733672 | 2023-08-28T15:26:33 | 2023-08-28T15:26:33 | 183,064,322 | 39 | 30 | null | 2023-08-28T15:49:59 | 2019-04-23T17:30:12 | Racket | UTF-8 | Racket | false | false | 660 | rkt | interp.rkt | #lang racket
(provide interp)
(require "ast.rkt" "interp-prim.rkt")
;; type Answer = Value | 'err
;; type Value =
;; | Integer
;; | Boolean
;; | Character
;; | Eof
;; | Void
;; Expr -> Answer
(define (interp e)
(match e
[(Int i) i]
[(Bool b) b]
[(Char c) c]
[(Eof) eof]
[(Prim0 p)
(interp-prim0 p)]
[(Prim1 p e0)
(match (interp e0)
['err 'err]
[v (interp-prim1 p v)])]
[(If e1 e2 e3)
(match (interp e1)
['err 'err]
[v
(if v
(interp e2)
(interp e3))])]
[(Begin e1 e2)
(match (interp e1)
['err 'err]
[_ (interp e2)])]))
| false |
f9706dc718a0a5f3d34175cb3590c37c23180258 | 3424ab96c3265f69191dd3a219b2b66a1e61b57d | /sentientmonkey/ch22.rkt | e067f179c59070462410c1b52c715c85649ef8b2 | []
| 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 | 5,436 | rkt | ch22.rkt | #lang racket/base
(require rackunit)
(require "../lib/mk.rkt")
(require "reasoned.rkt")
(provide nullo pairo conso caro cdro)
;; 1
(define c 42)
(check-equal?
(let ([x (lambda (a) a)]
[y c])
(x y))
c)
;; 2
(check-run* (r)
(fresh (y x)
(== (list x y) r))
=> '((_.0 _.1)))
;; 3
(check-run* (r)
(fresh (v w)
(== (let ([x v]
[y w])
(list x y)) r))
=> '((_.0 _.1)))
;; 4
(check-equal? (car '(grape rasin pear)) 'grape)
;; 5
(check-equal? (car '(a c o r n)) 'a)
;; 9
(define (caro p a)
(fresh (d)
(== (cons a d) p)))
;; 6
(check-run* (r)
(caro '(a c o r n) r)
=> '(a))
;; 7
(check-run* (q)
(caro '(a c o r n) 'a)
(== #t q)
=> '(#t))
;; 8
(check-run* (r)
(fresh (x y)
(caro (list r y) x)
(== 'pear x))
=> '(pear))
;; 10
(check-equal? (cons
(car '(grape raisin pear))
(car '((a) (b) (c))))
'(grape a))
;; 11
(check-run* (r)
(fresh (x y)
(caro '(grape raisin pear) x)
(caro '((a) (b) (c)) y)
(== (cons x y) r))
=> '((grape a)))
;; 13
(check-equal? (cdr '(grape raisin pear)) '(raisin pear))
;; 14
(check-equal? (car (cdr '(a c o r n))) 'c)
;; 16
(define (cdro p d)
(fresh (a)
(== (cons a d) p)))
;; 15
(check-run* (r)
(fresh (v)
(cdro '(a c o r n) v)
(caro v r))
=> '(c))
;; 17
(check-equal? (cons
(cdr '(grape raisin pear))
(car '((a) (b) (c))))
'((raisin pear) a))
;; 18
(check-run* (r)
(fresh (x y)
(cdro '(grape raisin pear) x)
(caro '((a) (b) (c)) y)
(== (cons x y) r))
=> '(((raisin pear) a)))
;; 19
(check-run* (q)
(cdro '(a c o r n) '(c o r n))
(== #t q)
=> '(#t))
;; 20
(check-run* (x)
(cdro '(c o r n) `(,x r n))
=> '(o))
;; 21
(check-run* (l)
(fresh (x)
(cdro l '(c o r n))
(caro l x)
(== 'a x))
=> '((a c o r n)))
;; 28
(define (conso a d p)
(== (cons a d) p))
;; 22
(check-run* (l)
(conso '(a b c) '(d e) l)
=> '(((a b c) d e)))
;; 23
(check-run* (x)
(conso x '(a b c) '(d a b c))
=> '(d))
;; 24
(check-run* (r)
(fresh (x y z)
(== `(e a d ,x) r)
(conso y `(a ,z c) r))
=> '((e a d c)))
;; 25
(check-run* (x)
(conso x `(a ,x c) `(d a ,x c))
=> '(d))
;; 26
(check-run* (l)
(fresh (x)
(== `(d a ,x c) l)
(conso x `(a ,x c) l))
=> '((d a d c)))
;; 27
(check-run* (l)
(fresh (x)
(conso x `(a ,x c) l)
(== `(d a ,x c) l))
=> '((d a d c)))
;; 29
(check-run* (l)
(fresh (d x y w s)
(conso w '(a n s) s)
(cdro l s)
(caro l x)
(== 'b x)
(cdro l d)
(caro d y)
(== 'e y))
=> '((b e a n s)))
;; 30
(check-equal? (null? '(grape raisin pear)) #f)
;; 31
(check-equal? (null? '()) #t)
;; 35
(define (nullo x)
(== x '()))
;; 32
(check-run* (q)
(nullo '(grape raisin pear))
(== #t q)
=> '())
;; 33
(check-run* (q)
(nullo '())
(== #t q)
=> '(#t))
;; 34
(check-run* (x)
(nullo x)
=> '(()))
;; 36
(check-equal? (eq? 'pear 'plum) #f)
;; 37
(check-equal? (eq? 'plum 'plum) #t)
;; 40
(define (eqo x y)
(== x y))
;; 38
(check-run* (q)
(eqo 'pear 'plum)
(== #t q)
=> '())
;; 39
(check-run* (q)
(eqo 'plum 'plum)
(== #t q)
=> '(#t))
;; 43
(check-true (pair? '(split . pea)))
;; 44
(check-true (pair? '((split) . pea)))
;; 45
(check-false (pair? 'pair))
;; 46
(check-false (pair? 'pear))
;; 47
(check-true (pair? '(pear)))
;; 48
(check-equal? (car '(pear)) 'pear)
;; 49
(check-equal? (cdr '(pear)) '())
;; 51
(check-equal? (cons '(split) 'pea) '((split) . pea))
;; 52
(check-run* (r)
(fresh (x y)
(== (cons x (cons y 'salad)) r))
=> '((_.0 _.1 . salad)))
;; 53
(define (pairo p)
(fresh (a d)
(conso a d p)))
;; not recursive! o_O
;; 54
(check-run* (q)
(pairo (cons q q))
(== #t q)
=> '(#t))
;; 55
(check-run* (q)
(pairo '())
(== #t q)
=> '())
;; 56
(check-run* (q)
(pairo 'pair)
(== #t q)
=> '())
;; 57
(check-run* (x)
(pairo x)
=> '((_.0 . _.1)))
;; 58
(check-run* (r)
(pairo (cons r 'pear))
=> '(_.0))
;; 60
;; Oui.
;; Méfiez-vous des ombres. (Beware of shadows)
(define (caro* p a)
(fresh (d)
(conso a d p)))
(check-run* (r)
(caro* '(a c o r n) r)
=> '(a))
(define (cdro* p d)
(fresh (a)
(conso a d p)))
(check-run* (r)
(fresh (v)
(cdro* '(a c o r n) v)
(caro* v r))
=> '(c))
;; pario already defined in terms of conso
| false |
a52c82dc290ca138a4cda618be4dd56cafcc1fbe | 25a6efe766d07c52c1994585af7d7f347553bf54 | /gui-lib/mred/private/wx/win32/menu-bar.rkt | 089b8301a89e7cf4e80fb966734ba5310ac3c0df | [
"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 | 1,735 | rkt | menu-bar.rkt | #lang racket/base
(require racket/class
(only-in racket/list take drop)
ffi/unsafe
"../../lock.rkt"
"../../syntax.rkt"
"utils.rkt"
"types.rkt"
"const.rkt")
(provide
(protect-out menu-bar%))
(define-user32 CreateMenu (_wfun -> _HMENU))
(define-user32 SetMenu (_wfun _HWND _HMENU -> (r : _BOOL)
-> (unless r (failed 'SetMenu))))
(define-user32 DrawMenuBar (_wfun _HWND -> (r : _BOOL)
-> (unless r (failed 'DrawMenuBar))))
(define menu-bar%
(class object%
(super-new)
(define hmenu (CreateMenu))
(define menus null)
(define parent #f)
(define/public (set-label-top pos str)
(send (list-ref menus pos) set-menu-label hmenu pos str)
(refresh))
(define/public (number) (length menus))
(define/public (enable-top pos on?)
(send (list-ref menus pos) enable-self hmenu pos on?)
(refresh))
(define/public (delete which pos)
(atomically
(set! menus (append (take menus pos)
(drop menus (add1 pos))))
(RemoveMenu hmenu pos MF_BYPOSITION)
(refresh)))
(define/private (refresh)
(when parent
(send parent draw-menu-bar)))
(public [append-item append])
(define (append-item m lbl)
(let ([l (append menus (list m))])
(atomically
(set! menus l)
(send m set-parent this lbl hmenu)))
(refresh))
(define/public (popup-menu-with-char c)
(when parent
(send parent popup-menu-with-char c)))
(define/public (set-parent f)
(SetMenu (send f get-hwnd) hmenu)
(set! parent f)
(send parent draw-menu-bar))))
| false |
c8a4dd351914e62aa23ecdc09d36700fcfd193c1 | 6858cbebface7beec57e60b19621120da5020a48 | /15/3/7/8.rkt | c06e20082dbc6938e21e8c9ba75791eb5be72d3e | []
| 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 | 53 | rkt | 8.rkt | (S2 <: S1) and (T1 <: T2) => (S1 -> T1) <: (S2 -> T2) | false |
896012d59e99d289b700291ecc3c7b7abb2edaff | b5ba4d1dbf242593938292246f9c72cdcded39fc | /PartB/SetupFiles/PartBSetup.rkt | 20ec7e979d094248d66e9a5803d34b5d0a3f6514 | []
| no_license | aryzach/ProgrammingLanguagesClass | 33e9f81cda56e0b6ea4c4303155c3b1adfe57658 | ffc730138cbf34643ad408e83cb0a9f31f6152e9 | refs/heads/master | 2022-04-10T00:51:06.349675 | 2020-03-13T07:09:28 | 2020-03-13T07:09:28 | 230,686,305 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,775 | rkt | PartBSetup.rkt | #lang racket
(provide (all-defined-out))
(define xs (list 1 2 3 4))
(define ys (list 1 2 (list 4 5 (list 2 3 (list 9)) (list 7 8)) 3 5))
(define (sum1 xs)
(if (null? xs)
0
(if (number? (car xs))
(+ (car xs) (sum1 (cdr xs)))
(+ (sum1 (car xs)) (sum1 (cdr xs))))))
(define (ok n) (cons n (lambda () (ok (+ n 1)))))
(define nats
(letrec ([ok (lambda (n) (cons n (lambda () (ok (+ n 1)))))])
(lambda () (ok 1))))
(define (cool num g)
(letrec ([f (lambda (x) (cons x (lambda () (f (g x num)))))])
(lambda () (f num))))
;(define (temp num fun)
; (lambda (num fun) (cons num (lambda ()
(define nnats (cool 1 +))
(define ntwo (cool 2 *))
(define ob (lambda () (cons 1 ob)))
(define fib3
(letrec ([memo null]
[f (lambda (x)
(let ([ans (assoc x memo)])
(if ans
(cdr ans)
(let ([new-ans (if (or (= x 1) (= x 2))
1
(+ (fib3 (- x 1))
(fib3 (- x 2))))])
(begin
(set! memo (cons (cons x new-ans) memo))
new-ans)))))])
f))
(define (p1 low high stride)
(cond
[(> low high) null]
[#t (cons low (p1 (+ low stride) high stride))]))
(define (sap los sfx)
(map (lambda (s) (string-append s sfx)) los))
(define (lnm xs n)
(cond
[(negative? n) (error "list-nth-mod: negative number")]
[(null? xs) (error "list-nth-mod: empty list")]
[#t (car (list-tail xs (remainder n (length xs))))]))
(define (sfns s n)
(cond
[(= n 0) null]
[#t (cons (car (s)) (sfns (cdr (s)) (- n 1)))])) | false |
c5722221a88dccf1110af9bec3c68675b69ad5b4 | 4a7db912b57588506b4e9e7cdfffe84b70f6ba5e | /examples/old/robotics2/control.rkt | ee8b1b4a06ccc938ce5e5dfadb4f43cb3882adb6 | []
| no_license | tewk/racloud | 1bb9387069f4f12eafa70c573553f58a0e7a401e | 1f391546e87af1791ede35970076c6d2b7e8b225 | refs/heads/master | 2020-06-02T23:49:56.157186 | 2012-02-27T20:26:40 | 2012-02-27T20:26:40 | 2,892,691 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,385 | rkt | control.rkt | #lang racket/base
(require racket/place
racket/match
racket/runtime-path
"../../racloud.rkt")
(provide control-node
main
config)
(define CONTROL-ID 0)
(define EXECUTOR-ID 1)
(define-runtime-path executorpath "executor.rkt")
(define (control-node ch)
(define cg (dcg-get-cg ch))
(define direct-ch1 (dcg-send-new-dchannel cg EXECUTOR-ID))
(define direct-ch2 (dcg-send-new-dchannel cg EXECUTOR-ID))
(define direct-ch3 (dcg-send-new-dchannel cg EXECUTOR-ID))
(define direct-ch4 (dcg-send-new-dchannel cg EXECUTOR-ID))
(dchannel-put direct-ch1 "Hello on dchannel 1")
(dchannel-put direct-ch2 "Hello on dchannel 2")
(dchannel-put direct-ch3 "Hello on dchannel 3")
(dchannel-put direct-ch4 "Hello on dchannel 4")
(let loop ([a 0])
(dcg-send cg EXECUTOR-ID (format "Hello ~a" a))
(sleep 5)
(loop (add1 a))))
(define ssh-path (path->string (ssh-bin-path)))
(define racketpath (path->string (racket-path)))
(define racloudpath (racloud-path))
(define controlpath (get-current-module-path))
(define config
(list
(node-config "localhost" "6431" 1 ssh-path racketpath racloudpath controlpath 'control-node controlpath 'config)
(node-config "localhost" "6432" 1 ssh-path racketpath racloudpath (path->string executorpath) 'executor-node controlpath 'config)))
(define (main)
(launch-config config))
| false |
75cbf5efc2f20889d52b600b04b34e0ab6b773c4 | a1fcb2e07f8d9e1bd7e1cbd59c1f794ec1269cb0 | /plai-typed/info.rkt | 98917e8ea597f8d9e51d5c40d6e3f50604caa1cb | []
| no_license | mflatt/plai-typed | 2798f6f12967fc280e483a1229cd655c1ed1b175 | 07fd70cdf2678bc27e4d95346a7d5a2906410f99 | refs/heads/master | 2022-12-23T04:10:47.964383 | 2022-09-14T16:59:28 | 2022-09-14T22:04:22 | 5,820,619 | 37 | 10 | null | 2022-09-14T22:04:22 | 2012-09-15T13:59:08 | Racket | UTF-8 | Racket | false | false | 90 | rkt | info.rkt | #lang setup/infotab
(define scribblings '(("plai-typed.scrbl" (multi-page) (language))))
| false |
d2d4af289730cbd519df9e5e5613ff1bd0b6b7af | 925fa95cc25d1d4d9afbe036c2e7b01791f080da | /sdk/configuration/AndPPTV.rkt | 7e988a026737838e09799aafb526a7be61f66e52 | []
| no_license | fujingjunben/autopack-racket | 947a7f306f63624320320f7e08df3f89dbf70b8b | d274432f4649792d126c57149468a97f8592d744 | refs/heads/master | 2021-01-10T11:09:18.408427 | 2016-04-08T11:16:24 | 2016-04-08T11:16:24 | 55,772,328 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 739 | rkt | AndPPTV.rkt | ((name "PPTV")
(id "AndPPTV")
(channel "AND0036")
(version "4.4")
(inner-version "2.0")
(icon #t)
(exit-dialog? #t)
(unity-pack #t)
(package-suffix ".pptv")
(meta-data
(("Game Id" "游戏ID" "GAME_ID" #t "")
("checkUpdate" "true:检测更新;false:不检测更新" "CHECKUPDATE" #t "")
("debug" "true:开启调试模式;false:关闭调试模式。上线前请改成false" "PptvVasSdk_DebugMode" #f "")
("Pay KEY" "支付KEY" "" #f "key")
("回调地址版本号" "请在PPTV后台申请" "notifyUrlVersion" #t "")
("友盟appKey" "友盟appKey" "UMENG_APPKEY" #f "")
("是否使用友盟统计" "true:使用;false:不使用" "useUmeng" #t "")))
(manifest ())
(resource ())
(attention ()))
| false |
83bd3ea2d1bcfa8ee97d9ce416652e8a62e1eb54 | 20aa11a2d7244e651882065ef5b21541dd9c9651 | /scheme/racket/init.rkt | 92a361bf44bbef0ddb9c2d15363c4508d66cef26 | []
| no_license | hitchiker42/my-code | 355796707498775fe40bfedcdcb399b753d48cb2 | 571dd48bf6762e5d609ee5081f16a963a66151db | refs/heads/master | 2022-12-15T20:44:31.990015 | 2021-10-31T18:22:25 | 2021-10-31T18:22:25 | 8,269,809 | 0 | 0 | null | 2022-12-14T02:00:12 | 2013-02-18T14:20:22 | C | UTF-8 | Racket | false | false | 9,538 | rkt | init.rkt | #lang racket/base
;;Define basic imports and syntax rules, none of these should rely on each other,
;;this allows me to import this into util.rkt with for-syntax and avoid defining
;;things like define-macro twice.
;;Use only the basic language and explicitly import other modules, re-export
;;any modules that I would generally import. This will let me use racket base
;;as the language and then import util to get all the modules I generally need
;;without importing all of racket
;;Formatting note, lines should be 102 characters max (preferably < 80)
(require racket/bytes ;;byte vectors
rnrs/bytevectors-6 ;;r6rs bytevectors, for compatibility
racket/function ;;higher order function helpers (idenitiy, thunk, etc)
racket/future ;;futures, simple (mostly useless) concurrency
racket/place ;;limited wrapper around os threads
racket/string ;;String functions, including string-join
racket/math ;;pi, hyperbolic trig, exact-{round, floor, ceiling}
racket/sequence ;;Generic sequence functions
racket/vector ;;vector map/filter
racket/syntax ;;format-id
;; racket/port ;;with-{input,output}-to-{file,string,...}
rnrs/io/ports-6 ;;racket doesn't have input/output ports, somehow
racket/match ;;ml style pattern matching
racket/unsafe/ops
racket/pretty
(except-in racket/list last);;I define my own version that works with null
syntax/location
srfi/48 ;;format (the (format port fmt args ...) version)
srfi/71 ;;unifies let and let-values
)
;;To use a function at macroexpansion time we need to tell racket that we the
;;binding to be available at expansion time, not just run time
(require (for-syntax racket/base))
(require (for-meta 2 racket/base))
(require (for-syntax racket/string))
(require (for-syntax racket/syntax))
(require (for-syntax syntax/location))
(define-syntax-rule (identifier-syntax id) (make-rename-transformer #'id))
(define-syntax-rule (define-alias alias symbol)
(define-syntax alias (make-rename-transformer #'symbol)))
(define-syntax my-if
(syntax-rules ()
((_ cond then) (when cond then))
((_ cond then else) (if cond then else))
((_ cond then else rest ...) (if cond then (begin else rest ...)))))
;;; while and define-macro are taken from guile and slightly modifed
;;; to work with racket
(define-syntax (while stx)
(syntax-case stx ()
((while cond body ...)
#`(let ((break-tag (make-continuation-prompt-tag 'break))
(continue-tag (make-continuation-prompt-tag 'continue)))
(call-with-continuation-prompt
(lambda ()
;;Figure out how to fix this so I can break without a value
(define-syntax #,(datum->syntax #'while 'break)
(lambda (x)
(syntax-case x ()
((_)
#'(abort-current-continuation break-tag #f))
((_ arg args (... ...))
#'(abort-current-continuation break-tag arg args (... ...)))
(_
#'(lambda args
(apply abort-current-continuation break-tag args))))))
(let lp ()
(call-with-continuation-prompt
(lambda ()
(define-syntax #,(datum->syntax #'while 'continue)
(lambda (x)
(syntax-case x ()
((_)
#'(abort-current-continuation continue-tag))
((_ . args)
(error 'continue "too many arguments" x))
(_
#'(lambda ()
(abort-current-continuation continue-tag))))))
(do () ((not cond) #f) body ...))
continue-tag
(lambda (k) (lp)))))
break-tag
(lambda (arg . args)
(my-if (not arg)
#t
(apply values (list* arg args)))))))))
(define-syntax define-macro
(lambda (x)
;; "Define a defmacro."
(syntax-case x ()
((_ (macro . args) doc body1 body ...)
(string? (syntax->datum #'doc))
#'(define-macro macro doc (lambda args body1 body ...)))
((_ (macro . args) body ...)
#'(define-macro macro #f (lambda args body ...)))
((_ macro transformer)
#'(define-macro macro #f transformer))
((_ macro doc transformer)
(or (string? (syntax->datum #'doc))
(not (syntax->datum #'doc)))
#'(define-syntax macro
(lambda (y)
doc
#((macro-type . defmacro)
(defmacro-args args))
(syntax-case y ()
((_ . args)
(let ((v (syntax->datum #'args)))
(datum->syntax y (apply transformer v)))))))))))
(define (module-ref mod var)
(namespace-variable-value var (module->namespace mod)))
(define (symbol-ref var)
(namespace-variable-value var (current-namespace)))
(define-syntax (symbol-bound? stx)
(syntax-case stx ()
((_ sym)
(if (identifier-binding #'sym) (syntax #t) (syntax #f)))))
(define (macroexpand body) (syntax->datum (expand body)))
(define (macroexpand-1 body) (syntax->datum (expand-once body)))
(struct exn:fail:assertion exn:fail (srcloc)
#:property prop:exn:srclocs
(lambda (x) (list (exn:fail:assertion-srcloc x)))
#:extra-constructor-name make-exn:fail:assertion
#:transparent)
(struct exn:fail:assertion-simple exn:fail ()
#:extra-constructor-name make-exn:fail:assertion-simple
#:transparent)
(define-syntax (here stx)
#`(list (quote-source-file #,stx)
(quote-line-number #,stx)
(quote-column-number #,stx)
(quote-character-position #,stx)
(quote-character-span #,stx)))
(define-syntax (assert! args)
(syntax-case args ()
((_ expr)
(quasisyntax/loc args
(unless expr
(raise (make-exn:fail:assertion-simple
(format #f "Assertation failure: ~s~%~s:~s:~s:~s:~s" 'expr
(quote-source-file expr)
(quote-line-number expr)
(quote-column-number expr)
(quote-character-position expr)
(quote-character-span expr))
(current-continuation-marks))))))))
(define-syntax-rule (with-caught-exceptions f body ...)
(let ((prompt (make-continuation-prompt-tag)))
(call-with-continuation-prompt
call-with-exception-handler;;call this
prompt;;with this prompt
f;;and this handler
;;and these args
(lambda (exn) (abort-current-continuation prompt exn))
(lambda () body ...))))
(provide (all-defined-out)
(all-from-out
racket/bytes rnrs/bytevectors-6 rnrs/io/ports-6 racket/base racket/match
racket/function racket/future racket/string racket/math racket/list
racket/pretty racket/sequence srfi/48 srfi/71 racket/vector racket/syntax
racket/unsafe/ops))
;;An attempt to write while using syntax-parameters, it doesn't work
;; (define-syntax-parameter break
;; (lambda (stx)
;; (raise-syntax-error (syntax-e stx) "can only be used in a while loop")))
;; (define-syntax-parameter continue
;; (lambda (stx)
;; (raise-syntax-error (syntax-e stx) "can only be used in a while loop")))
;; (define-syntax (while stx)
;; (syntax-case stx ()
;; ((while cond body ...)
;; #`(let ((break-tag (make-continuation-prompt-tag 'break))
;; (continue-tag (make-continuation-prompt-tag 'continue)))
;; (call-with-continuation-prompt
;; (lambda ()
;; ;;Figure out how to fix this so I can break without a value
;; ;;(define-syntax #,(datum->syntax #'while 'break)
;; (syntax-parameterize
;; ((break (lambda (x)
;; (syntax-case x ()
;; ((_)
;; #'(abort-current-continuation break-tag))
;; ((_ arg (... ...))
;; #'(abort-current-continuation
;; break-tag arg (... ...)))
;; (_
;; #'(lambda args
;; (apply abort-current-continuation
;; break-tag args)))))))
;; (let lp ()
;; (call-with-continuation-prompt
;; (lambda ()
;; (syntax-parameterize
;; ((continue
;; (lambda (x)
;; (syntax-case x ()
;; ((_)
;; #'(abort-current-to-prompt continue-tag))
;; ((_ . args)
;; (error 'continue "too many arguments" x))
;; (_
;; #'(lambda ()
;; (abort-current-to-prompt continue-tag)))))))
;; (do () ((not cond) #f) body ...))
;; continue-tag
;; (lambda (k) (lp)))))
;; break-tag
;; (lambda (k . args)
;; (my-if (null? args)
;; #t
;; (apply values args))))))))))
| true |
c6ec6b82b20f509a0375dc3b7b79093c66f06904 | f5da4884c236512f9a945100234e213e51f980d3 | /serval/riscv/pmp.rkt | b5d75a25543a8ccda6d4c4427d6a970ec1720d04 | [
"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 | 2,321 | rkt | pmp.rkt | #lang rosette/safe
(require
"base.rkt"
"../lib/core.rkt"
(only-in racket/base for/list)
(only-in racket/list range)
(only-in racket/match match)
)
(provide pmp-privs)
(define PMPCFG_A_OFF 0)
(define PMPCFG_A_NAPOT 24)
(define PMPCFG_A_TOR 8)
(define PMPCFG_R 1)
(define PMPCFG_W 2)
(define PMPCFG_X 4)
(define PMPCFG_RWX 7)
(define (pmp-privs cpu ptr size)
(define pmpcfg0 (csr-ref cpu 'pmpcfg0))
(define pmpcfg2 (csr-ref cpu 'pmpcfg2))
(define addrs (map (lambda (r) (csr-ref cpu r))
'(pmpaddr0 pmpaddr1 pmpaddr2 pmpaddr3
pmpaddr4 pmpaddr5 pmpaddr6 pmpaddr7
pmpaddr8 pmpaddr9 pmpaddr10 pmpaddr11
pmpaddr12 pmpaddr13 pmpaddr14 pmpaddr15)))
(define configs
(list (extract 7 0 pmpcfg0)
(extract 15 8 pmpcfg0)
(extract 23 16 pmpcfg0)
(extract 31 24 pmpcfg0)
(extract 39 32 pmpcfg0)
(extract 47 40 pmpcfg0)
(extract 55 48 pmpcfg0)
(extract 63 56 pmpcfg0)
(extract 7 0 pmpcfg2)
(extract 15 8 pmpcfg2)
(extract 23 16 pmpcfg2)
(extract 31 24 pmpcfg2)
(extract 39 32 pmpcfg2)
(extract 47 40 pmpcfg2)
(extract 55 48 pmpcfg2)
(extract 63 56 pmpcfg2)))
(define (pmp-privs prev-addr any? cfgs addrs)
(match (cons cfgs addrs)
[(cons (cons cfg cfgs-rest) (cons addr addrs-rest))
(define cfg-a (bvand cfg (bv PMPCFG_A_NAPOT 8)))
(define cfg-perm (bvand cfg (bv PMPCFG_RWX 8)))
(define this-addr (bvshl addr (bv 2 64)))
(cond
[(bveq cfg-a (bv PMPCFG_A_OFF 8))
(pmp-privs this-addr any? cfgs-rest addrs-rest)]
[(bveq cfg-a (bv PMPCFG_A_TOR 8))
(define overlaps (&& (bvugt (bvadd ptr size) prev-addr)
(bvult ptr this-addr)))
(define contains (&& (bvuge ptr prev-addr)
(bvule (bvadd ptr size) this-addr)))
(if overlaps
(if contains cfg-perm (bv 0 8))
(pmp-privs this-addr #t cfgs-rest addrs-rest))]
[else (assert #f)])]
[(cons null null) (if (! any?) (bv PMPCFG_RWX 8) (bv 0 8))]
[_ (assert #f)]))
(pmp-privs (bv 0 64) #f configs addrs))
| false |
96482cebf6c95397e661b2430af4109e9902ebd6 | b08b7e3160ae9947b6046123acad8f59152375c3 | /Programming Language Detection/Experiment-2/Dataset/Train/Racket/conditional-structures-1.rkt | 398f001da0aa028a8620acf85ebd9b5ea974199f | []
| 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 | 32 | rkt | conditional-structures-1.rkt | (if (< x 10)
"small"
"big")
| false |
ea2ccf8053ac5d335259487e54a6b0680541cc34 | 52c2225c9f44c0da28ca1fd44606a8d197c8eac8 | /EOPL/ch1/1.34-test.rkt | 975113fe347ca1dc104695524be754367636a1f7 | []
| no_license | alanzplus/EOPL | c74c1e9dd27c0580107fd860b88016320a6f231c | d7b06392d26d93df851d0ca66d9edc681a06693c | refs/heads/master | 2021-06-20T00:59:21.685904 | 2019-08-15T06:18:10 | 2019-08-15T07:06:53 | 147,045,798 | 8 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 392 | rkt | 1.34-test.rkt | #lang eopl
(require "bst.rkt")
(require rackunit "1.34.rkt")
(require rackunit/text-ui)
(define input-tree
(bst 14
(bst 7
'()
(bst 12 '() '()))
(bst 26
(bst 20
(bst 17 '() '())
'())
(bst 31 '() '()))))
(define path-test
(test-suite
"Tests for path"
(check-equal? (path 17 input-tree) '(right left left))))
(run-tests path-test)
| false |
06fcaecf35c1cd036f315cb01bc18a48d3cf8ea4 | 099418d7d7ca2211dfbecd0b879d84c703d1b964 | /whalesong/lang/list.rkt | fb3faf2f32858a5cce17a789e0ce73e40bb63aea | []
| 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 | 13,281 | rkt | list.rkt | #lang s-exp "kernel.rkt"
(require (for-syntax racket/base))
(provide first second third fourth fifth sixth seventh eighth ninth tenth
last-pair last rest
cons?
empty
empty?
make-list
drop
take
split-at
drop-right
take-right
split-at-right
append*
flatten
add-between
;;remove-duplicates
filter-map
count
partition
argmin
argmax
;; convenience
append-map
filter-not
;;shuffle
)
(define (first x)
(if (and (pair? x) (list? x))
(car x)
(raise-type-error 'first "non-empty list" x)))
(define-syntax define-lgetter
(syntax-rules ()
[(_ name npos)
(define (name l0)
(if (list? l0)
(let loop ([l l0] [pos npos])
(if (pair? l)
(if (eq? pos 1) (car l) (loop (cdr l) (sub1 pos)))
(raise-type-error
'name (format "list with ~a or more items" npos) l0)))
(raise-type-error 'name "list" l0)))]))
(define-lgetter second 2)
(define-lgetter third 3)
(define-lgetter fourth 4)
(define-lgetter fifth 5)
(define-lgetter sixth 6)
(define-lgetter seventh 7)
(define-lgetter eighth 8)
(define-lgetter ninth 9)
(define-lgetter tenth 10)
(define (last-pair l)
(if (pair? l)
(let loop ([l l] [x (cdr l)])
(if (pair? x)
(loop x (cdr x))
l))
(raise-type-error 'last-pair "pair" l)))
(define (last l)
(if (and (pair? l) (list? l))
(let loop ([l l] [x (cdr l)])
(if (pair? x)
(loop x (cdr x))
(car l)))
(raise-type-error 'last "non-empty list" l)))
(define (rest l)
(if (and (pair? l) (list? l))
(cdr l)
(raise-type-error 'rest "non-empty list" l)))
(define cons? (lambda (l) (pair? l)))
(define empty? (lambda (l) (null? l)))
(define empty '())
(define (make-list n x)
(unless (exact-nonnegative-integer? n)
(raise-type-error 'make-list "non-negative exact integer" n))
(let loop ([n n] [r '()])
(if (zero? n) r (loop (sub1 n) (cons x r)))))
;; internal use below
(define (drop* list n) ; no error checking, returns #f if index is too large
(if (zero? n) list (and (pair? list) (drop* (cdr list) (sub1 n)))))
(define (too-large who list n)
(raise-mismatch-error
who
(format "index ~e too large for list~a: "
n (if (list? list) "" " (not a proper list)"))
list))
(define (take list0 n0)
(unless (exact-nonnegative-integer? n0)
(raise-type-error 'take "non-negative exact integer" 1 list0 n0))
(let loop ([list list0] [n n0])
(cond [(zero? n) '()]
[(pair? list) (cons (car list) (loop (cdr list) (sub1 n)))]
[else (too-large 'take list0 n0)])))
(define (split-at list0 n0)
(unless (exact-nonnegative-integer? n0)
(raise-type-error 'split-at "non-negative exact integer" 1 list0 n0))
(let loop ([list list0] [n n0] [pfx '()])
(cond [(zero? n) (values (reverse pfx) list)]
[(pair? list) (loop (cdr list) (sub1 n) (cons (car list) pfx))]
[else (too-large 'split-at list0 n0)])))
(define (drop list n)
;; could be defined as `list-tail', but this is better for errors anyway
(unless (exact-nonnegative-integer? n)
(raise-type-error 'drop "non-negative exact integer" 1 list n))
(or (drop* list n) (too-large 'drop list n)))
;; take/drop-right are originally from srfi-1, uses the same lead-pointer trick
(define (take-right list n)
(unless (exact-nonnegative-integer? n)
(raise-type-error 'take-right "non-negative exact integer" 1 list n))
(let loop ([list list]
[lead (or (drop* list n) (too-large 'take-right list n))])
;; could throw an error for non-lists, but be more like `take'
(if (pair? lead)
(loop (cdr list) (cdr lead))
list)))
(define (drop-right list n)
(unless (exact-nonnegative-integer? n)
(raise-type-error 'drop-right "non-negative exact integer" n))
(let loop ([list list]
[lead (or (drop* list n) (too-large 'drop-right list n))])
;; could throw an error for non-lists, but be more like `drop'
(if (pair? lead)
(cons (car list) (loop (cdr list) (cdr lead)))
'())))
(define (split-at-right list n)
(unless (exact-nonnegative-integer? n)
(raise-type-error 'split-at-right "non-negative exact integer" n))
(let loop ([list list]
[lead (or (drop* list n) (too-large 'split-at-right list n))]
[pfx '()])
;; could throw an error for non-lists, but be more like `split-at'
(if (pair? lead)
(loop (cdr list) (cdr lead) (cons (car list) pfx))
(values (reverse pfx) list))))
(define append*
(case-lambda [(ls) (apply append ls)] ; optimize common case
[(l1 l2) (apply append l1 l2)]
[(l1 l2 l3) (apply append l1 l2 l3)]
[(l1 l2 l3 l4) (apply append l1 l2 l3 l4)]
[(l . lss) (apply apply append l lss)]))
(define (flatten orig-sexp)
(let loop ([sexp orig-sexp] [acc null])
(cond [(null? sexp) acc]
[(pair? sexp) (loop (car sexp) (loop (cdr sexp) acc))]
[else (cons sexp acc)])))
;; General note: many non-tail recursive, which are just as fast in mzscheme
(define (add-between l x)
(cond [(not (list? l)) (raise-type-error 'add-between "list" 0 l x)]
[(null? l) null]
[(null? (cdr l)) l]
[else (cons (car l)
(let loop ([l (cdr l)])
(if (null? l)
null
(list* x (car l) (loop (cdr l))))))]))
;; This is nice for symmetry, but confusing to use, and we can get it using
;; something like (append* (add-between l ls)), or even `flatten' for an
;; arbitrary nesting.
;; (define (lists-join ls l)
;; (cond [(null? ls) ls]
;; [(null? l) ls] ; empty separator
;; [else (append (car ls)
;; (let loop ([ls (cdr ls)])
;; (if (null? ls)
;; ls
;; (append l (car ls) (loop (cdr ls))))))]))
#;(define (remove-duplicates l [=? equal?] #:key [key #f])
;; `no-key' is used to optimize the case for long lists, it could be done for
;; shorter ones too, but that adds a ton of code to the result (about 2k).
(define-syntax-rule (no-key x) x)
(unless (list? l) (raise-type-error 'remove-duplicates "list" l))
(let* ([len (length l)]
[h (cond [(<= len 1) #t]
[(<= len 40) #f]
[(eq? =? eq?) (make-hasheq)]
[(eq? =? equal?) (make-hash)]
[else #f])])
(case h
[(#t) l]
[(#f)
;; plain n^2 list traversal (optimized for common cases) for short lists
;; and for equalities other than `eq?' or `equal?' The length threshold
;; above (40) was determined by trying it out with lists of length n
;; holding (random n) numbers.
(let ([key (or key (lambda (x) x))])
(let-syntax ([loop (syntax-rules ()
[(_ search)
(let loop ([l l] [seen null])
(if (null? l)
l
(let* ([x (car l)] [k (key x)] [l (cdr l)])
(if (search k seen)
(loop l seen)
(cons x (loop l (cons k seen)))))))])])
(cond [(eq? =? equal?) (loop member)]
[(eq? =? eq?) (loop memq)]
[(eq? =? eqv?) (loop memv)]
[else (loop (lambda (x seen)
(ormap (lambda (y) (=? x y)) seen)))])))]
[else
;; Use a hash for long lists with simple hash tables.
(let-syntax ([loop
(syntax-rules ()
[(_ getkey)
(let loop ([l l])
(if (null? l)
l
(let* ([x (car l)] [k (getkey x)] [l (cdr l)])
(if (hash-ref h k #f)
(loop l)
(begin (hash-set! h k #t)
(cons x (loop l)))))))])])
(if key (loop key) (loop no-key)))])))
(define (filter-map f l . ls)
(unless (and (procedure? f) (procedure-arity-includes? f (add1 (length ls))))
(raise-type-error
'filter-map (format "procedure (arity ~a)" (add1 (length ls))) f))
(unless (and (list? l) (andmap list? ls))
(raise-type-error
'filter-map "proper list"
(ormap (lambda (x) (and (not (list? x)) x)) (cons l ls))))
(if (pair? ls)
(let ([len (length l)])
(if (andmap (lambda (l) (= len (length l))) ls)
(let loop ([l l] [ls ls])
(if (null? l)
null
(let ([x (apply f (car l) (map car ls))])
(if x
(cons x (loop (cdr l) (map cdr ls)))
(loop (cdr l) (map cdr ls))))))
(error 'filter-map "all lists must have same size")))
(let loop ([l l])
(if (null? l)
null
(let ([x (f (car l))])
(if x (cons x (loop (cdr l))) (loop (cdr l))))))))
;; very similar to `filter-map', one more such function will justify some macro
(define (count f l . ls)
(unless (and (procedure? f) (procedure-arity-includes? f (add1 (length ls))))
(raise-type-error
'count (format "procedure (arity ~a)" (add1 (length ls))) f))
(unless (and (list? l) (andmap list? ls))
(raise-type-error
'count "proper list"
(ormap (lambda (x) (and (not (list? x)) x)) (cons l ls))))
(if (pair? ls)
(let ([len (length l)])
(if (andmap (lambda (l) (= len (length l))) ls)
(let loop ([l l] [ls ls] [c 0])
(if (null? l)
c
(loop (cdr l) (map cdr ls)
(if (apply f (car l) (map car ls)) (add1 c) c))))
(error 'count "all lists must have same size")))
(let loop ([l l] [c 0])
(if (null? l) c (loop (cdr l) (if (f (car l)) (add1 c) c))))))
;; Originally from srfi-1 -- shares common tail with the input when possible
;; (define (partition f l)
;; (unless (and (procedure? f) (procedure-arity-includes? f 1))
;; (raise-type-error 'partition "procedure (arity 1)" f))
;; (unless (list? l) (raise-type-error 'partition "proper list" l))
;; (let loop ([l l])
;; (if (null? l)
;; (values null null)
;; (let* ([x (car l)] [x? (f x)])
;; (let-values ([(in out) (loop (cdr l))])
;; (if x?
;; (values (if (pair? out) (cons x in) l) out)
;; (values in (if (pair? in) (cons x out) l))))))))
;; But that one is slower than this, probably due to value packaging
(define (partition pred l)
(unless (and (procedure? pred) (procedure-arity-includes? pred 1))
(raise-type-error 'partition "procedure (arity 1)" 0 pred l))
(unless (list? l) (raise-type-error 'partition "proper list" 1 pred l))
(let loop ([l l] [i '()] [o '()])
(if (null? l)
(values (reverse i) (reverse o))
(let ([x (car l)] [l (cdr l)])
(if (pred x) (loop l (cons x i) o) (loop l i (cons x o)))))))
(define append-map
(case-lambda [(f l) (apply append (map f l))]
[(f l1 l2) (apply append (map f l1 l2))]
[(f l . ls) (apply append (apply map f l ls))]))
;; this is an exact copy of `filter' in scheme/private/list, with the
;; `if' branches swapped.
(define (filter-not f list)
(unless (and (procedure? f)
(procedure-arity-includes? f 1))
(raise-type-error 'filter-not "procedure (arity 1)" 0 f list))
(unless (list? list)
(raise-type-error 'filter-not "proper list" 1 f list))
;; accumulating the result and reversing it is currently slightly
;; faster than a plain loop
(let loop ([l list] [result null])
(if (null? l)
(reverse result)
(loop (cdr l) (if (f (car l)) result (cons (car l) result))))))
;(define (shuffle l)
; (sort l < #:key (lambda (_) (random)) #:cache-keys? #t))
;; mk-min : (number number -> boolean) symbol (X -> real) (listof X) -> X
(define (mk-min cmp name f xs)
(unless (and (procedure? f)
(procedure-arity-includes? f 1))
(raise-type-error name "procedure (arity 1)" 0 f xs))
(unless (and (list? xs)
(pair? xs))
(raise-type-error name "non-empty list" 1 f xs))
(let ([init-min-var (f (car xs))])
(unless (real? init-min-var)
(raise-type-error name "procedure that returns real numbers" 0 f xs))
(let loop ([min (car xs)]
[min-var init-min-var]
[xs (cdr xs)])
(cond
[(null? xs) min]
[else
(let ([new-min (f (car xs))])
(unless (real? new-min)
(raise-type-error name "procedure that returns real numbers" 0 f xs))
(cond
[(cmp new-min min-var)
(loop (car xs) new-min (cdr xs))]
[else
(loop min min-var (cdr xs))]))]))))
(define (argmin f xs) (mk-min < 'argmin f xs))
(define (argmax f xs) (mk-min > 'argmax f xs))
| true |
7f05c175ab661b294a98efa1bbb2155a0ed27114 | 93fd61180e3ad2db364085053b1ea1bdec19f7bf | /compiler/eval/cps.rkt | 358320a1d80927ef09da94152ae3b1007e85b213 | [
"BSD-3-Clause"
]
| permissive | nilern/complement | c14de84c1ac08c12b8b1f07038ae3961e423d9d9 | 7bbf2ed0eafaa0b881926f2c432e3091a522bef5 | refs/heads/master | 2021-01-21T09:28:33.600811 | 2018-04-21T11:13:33 | 2018-04-21T11:13:33 | 101,971,610 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 3,590 | rkt | cps.rkt | #lang racket/base
(provide eval-CPS)
(require racket/match racket/hash racket/undefined (only-in srfi/26 cute)
nanopass/base
"../util.rkt"
"../langs.rkt"
(prefix-in primops: "../primops.rkt"))
;;;; Values
(module value racket/base
(provide $fn $cont)
(struct $fn (labels conts entry env) #:transparent)
(struct $cont (code env) #:transparent))
;;;; Environments
(module env racket/base
(provide empty push-args insert ref)
(require "../util.rkt")
(define (empty) (hash))
(define (push-args parent formals args)
(for/fold ([env parent])
([formal formals]
[arg args])
(hash-set env formal arg)))
(define insert hash-set)
(define (ref env name)
(if (hash-has-key? env name)
(hash-ref env name)
(raise (exn:unbound (format "unbound variable ~s" name)
(current-continuation-marks))))))
;;;; Eval
(require (prefix-in value: (submod "." value))
(prefix-in env: (submod "." env)))
;; TODO: dominator scoping rule
(define-pass eval-CPS : CPS (ir) -> * ()
(definitions
(define (eval-block stmts transfer env kenv)
(match stmts
[(cons stmt stmts*) (Stmt stmt env kenv stmts* transfer)]
['() (Transfer transfer env kenv)]))
(define primapply (primops:primapply primops:portable-ops))
(define (apply-label k env kenv args)
(nanopass-case (CPS Cont) k
[(cont (,n* ...) ,s* ... ,t)
(let ([env (env:push-args env n* args)])
(eval-block s* t env kenv))]))
(define (apply-cont cont kenv args)
(match-let ([(value:$cont label env) cont])
(apply-label label env kenv args)))
(define (apply-fn f args)
(match-let* ([(value:$fn labels conts entry env) f]
[kenv (zip-hash labels conts)])
(apply-label (hash-ref kenv entry) env kenv args))))
(CFG : CFG (ir) -> * ()
[(cfg ([,n* ,k*] ...) ,n)
(define env (env:empty))
(define kenv (zip-hash n* k*))
(apply-label (hash-ref kenv n) env kenv '())])
(Stmt : Stmt (ir env kenv stmts transfer) -> * ()
[(def ,n ,e) (Expr e env kenv n stmts transfer)]
[,e (Expr e env kenv #f stmts transfer)])
(Expr : Expr (ir env kenv name stmts transfer) -> * ()
[,a
(define res (Atom a env kenv))
(define env* (if name (env:insert env name res) env))
(eval-block stmts transfer env* kenv)]
[(fn ,blocks)
(nanopass-case (CPS CFG) blocks
[(cfg ([,n* ,k*] ...) ,n)
(define f (value:$fn n* k* n env))
(define env* (if name (env:insert env name f) env))
(eval-block stmts transfer env* kenv)])]
[(primcall ,p ,a* ...)
(define res (primapply p (map (cute Atom <> env kenv) a*)))
(define env* (if name (env:insert env name res) env))
(eval-block stmts transfer env* kenv)])
(Transfer : Transfer (ir env kenv) -> * ()
[(continue ,x ,a* ...)
(apply-cont (Var x env kenv) kenv (map (cute Atom <> env kenv) a*))]
[(if ,a? ,x1 ,x2)
(apply-cont (Var (match (Atom a? env kenv) [#t x1] [#f x2]) env kenv) kenv '())]
[(call ,x1 ,x2 ,a* ...)
(apply-fn (Var x1 env kenv) (cons (Var x2 env kenv) (map (cute Atom <> env kenv) a*)))]
[(ffncall ,x1 ,x2 ,a* ...) (error "unimplemented")]
[(halt ,a) (Atom a env kenv)]
[(raise ,a) (error "unimplemented")])
(Atom : Atom (ir env kenv) -> * ()
[(const ,c) c]
[,x (Var x env kenv)])
(Var : Var (ir env kenv) -> * ()
[(lex ,n) (env:ref env n)]
[(label ,n) (value:$cont (hash-ref kenv n) env)]))
| false |
8ac4bb05d78e66cd8fb8e336b6fa0d0cd4eb1acb | 898dceae75025bb8eebb83f6139fa16e3590eb70 | /pl1/asg2/osx-dist/lib/plt/assignment2-osx/collects/racket/stream.rkt | efe26e38328a11446f152a2b75d6dd6f2aedbc84 | []
| no_license | atamis/prog-hw | 7616271bd4e595fe864edb9b8c87c17315b311b8 | 3defb8211a5f28030f32d6bb3334763b2a14fec2 | refs/heads/master | 2020-05-30T22:17:28.245217 | 2013-01-14T18:42:20 | 2013-01-14T18:42:20 | 2,291,884 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 6,146 | rkt | stream.rkt | #lang racket/base
(require racket/private/generic
(rename-in "private/for.rkt"
[stream-ref stream-get-generics]
[stream-empty? -stream-empty]
[stream-first -stream-first]
[stream-rest -stream-rest])
"private/sequence.rkt"
(only-in "private/stream-cons.rkt"
stream-cons))
(provide empty-stream
stream-cons
stream?
gen:stream
;; we don't need the generics versions of these because
;; the original sequence functions will work fine
;; for the dispatch. (the method table layout is
;; identical)
(rename-out [-stream-empty stream-empty?]
[-stream-first stream-first]
[-stream-rest stream-rest])
prop:stream
in-stream
stream
stream->list
stream-length
stream-ref
stream-tail
stream-append
stream-map
stream-andmap
stream-ormap
stream-for-each
stream-fold
stream-filter
stream-add-between
stream-count)
(define-generics (-stream gen:stream prop:stream stream?
#:defined-table defined-table
#:prop-defined-already? stream-get-generics)
;; These three are never used for the reasons explained above.
;; We still need the headers for clients who extend racket/stream.
(stream-empty? -stream)
(stream-first -stream)
(stream-rest -stream))
(define-syntax stream
(syntax-rules ()
((_)
empty-stream)
((_ hd tl ...)
(stream-cons hd (stream tl ...)))))
(define (stream->list s)
(for/list ([v (in-stream s)]) v))
(define (stream-length s)
(unless (stream? s) (raise-argument-error 'stream-length "stream?" s))
(let loop ([s s] [len 0])
(if (stream-empty? s)
len
(loop (stream-rest s) (add1 len)))))
(define (stream-ref st i)
(unless (stream? st) (raise-argument-error 'stream-ref "stream?" st))
(unless (exact-nonnegative-integer? i)
(raise-argument-error 'stream-ref "exact-nonnegative-integer?" i))
(let loop ([n i] [s st])
(cond
[(stream-empty? s)
(raise-arguments-error 'stream-ref
"stream ended before index"
"index" i
"stream" st)]
[(zero? n)
(stream-first s)]
[else
(loop (sub1 n) (stream-rest s))])))
(define (stream-tail st i)
(unless (stream? st) (raise-argument-error 'stream-tail "stream?" st))
(unless (exact-nonnegative-integer? i)
(raise-argument-error 'stream-tail "exact-nonnegative-integer?" i))
(let loop ([n i] [s st])
(cond
[(zero? n) s]
[(stream-empty? s)
(raise-arguments-error 'stream-tail
"stream ended before index"
"index" i
"stream" st)]
[else
(loop (sub1 n) (stream-rest s))])))
(define (stream-append . l)
(for ([s (in-list l)])
(unless (stream? s) (raise-argument-error 'stream-append "stream?" s)))
(streams-append l))
(define (streams-append l)
(cond
[(null? l) empty-stream]
[(stream-empty? (car l)) (streams-append (cdr l))]
[else
(make-do-stream (lambda () #f)
(lambda () (stream-first (car l)))
(lambda () (streams-append (cons (stream-rest (car l)) (cdr l)))))]))
(define (stream-map f s)
(unless (procedure? f) (raise-argument-error 'stream-map "procedure?" f))
(unless (stream? s) (raise-argument-error 'stream-map "stream?" s))
(let loop ([s s])
(if (stream-empty? s)
empty-stream
(stream-cons (f (stream-first s)) (loop (stream-rest s))))))
(define (stream-andmap f s)
(unless (procedure? f) (raise-argument-error 'stream-andmap "procedure?" f))
(unless (stream? s) (raise-argument-error 'stream-andmap "stream?" s))
(sequence-andmap f s))
(define (stream-ormap f s)
(unless (procedure? f) (raise-argument-error 'stream-ormap "procedure?" f))
(unless (stream? s) (raise-argument-error 'stream-ormap "stream?" s))
(sequence-ormap f s))
(define (stream-for-each f s)
(unless (procedure? f) (raise-argument-error 'stream-for-each "procedure?" f))
(unless (stream? s) (raise-argument-error 'stream-for-each "stream?" s))
(sequence-for-each f s))
(define (stream-fold f i s)
(unless (procedure? f) (raise-argument-error 'stream-fold "procedure?" f))
(unless (stream? s) (raise-argument-error 'stream-fold "stream?" s))
(sequence-fold f i s))
(define (stream-count f s)
(unless (procedure? f) (raise-argument-error 'stream-count "procedure?" f))
(unless (stream? s) (raise-argument-error 'stream-count "stream?" s))
(sequence-count f s))
(define (stream-filter f s)
(unless (procedure? f) (raise-argument-error 'stream-filter "procedure?" f))
(unless (stream? s) (raise-argument-error 'stream-filter "stream?" s))
(cond
[(stream-empty? s) empty-stream]
[else
(let ([done? #f]
[empty? #f]
[fst #f]
[rst #f])
(define (force!)
(unless done?
(let loop ([s s])
(cond
[(stream-empty? s)
(set! done? #t)
(set! empty? #t)]
[(f (stream-first s))
(set! fst (stream-first s))
(set! rst (stream-filter f (stream-rest s)))]
[else (loop (stream-rest s))]))
(set! done? #t)))
(make-do-stream (lambda () (force!) empty?)
(lambda () (force!) fst)
(lambda () (force!) rst)))]))
(define (stream-add-between s e)
(unless (stream? s)
(raise-argument-error 'stream-add-between "stream?" s))
(if (stream-empty? s)
empty-stream
(stream-cons
(stream-first s)
(let loop ([s (stream-rest s)])
(cond [(stream-empty? s) empty-stream]
[else (stream-cons e (stream-cons (stream-first s)
(loop (stream-rest s))))])))))
| true |
8acb6e730119c14f5ae3bfd85d1243801adafeef | 4d6d3bc9bc33bcf83f3bad1cca510adceaa7ba42 | /Plan/ql/color-lexer.rkt | 8ccd2edb1350d6519e9df53c40e90bdf3665898d | []
| no_license | mfelleisen/RacketSchool | fafaf20d50e1a34976d4514e4e4e6fa1f80c8cae | ada599f31d548a538a37d998b32d80aa881d699a | refs/heads/master | 2020-04-05T11:47:42.700262 | 2019-04-19T12:51:27 | 2019-04-19T12:51:27 | 81,274,050 | 14 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 1,111 | rkt | color-lexer.rkt | #lang racket
(require parser-tools/lex
"parser.rkt")
;; Environment support for token coloring
(provide color-lexer)
(define (color-lexer in offset mode)
;; Get next token:
(define tok (lex in))
;; Package classification with srcloc:
(define (ret mode paren [eof? #f])
(values (if eof?
eof
(token->string (position-token-token tok)
(token-value (position-token-token tok))))
mode
paren
(position-offset (position-token-start-pos tok))
(position-offset (position-token-end-pos tok))
0
#f))
;; Convert token to classification:
(case (token-name (position-token-token tok))
[(EOF) (ret 'eof #f #t)]
[(BOPEN) (ret 'parenthesis '|{|)]
[(BCLOSE) (ret 'parenthesis '|}|)]
[(OPEN) (ret 'parenthesis '|(|)]
[(CLOSE) (ret 'parenthesis '|)|)]
[(NUM) (ret 'constant #f)]
[(STRING) (ret 'constant #f)]
[(ID) (ret 'symbol #f)]
[(WHITESPACE) (ret 'white-space #f)]
[(ERROR) (ret 'error #f)]
[else (ret 'other #f)]))
| false |
609685a194d301a4b44848a55c16954d4503843b | b08b7e3160ae9947b6046123acad8f59152375c3 | /Programming Language Detection/Experiment-2/Dataset/Train/Racket/loops-for-with-a-specified-step.rkt | 52aa39119abd8c869af9a4c0c0506f97092a7d8d | []
| 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 | 98 | rkt | loops-for-with-a-specified-step.rkt | #lang racket
(for ([i (in-range 2 9 2)])
(printf "~a, " i))
(printf "who do we appreciate?~n")
| false |
724abf304b0fb0810db69af3cef4cde474cbf49b | 5de040bc36cb7938ae1383863f670a30fe0f87b4 | /usr/racket-6.1/share/doc/racket/draw/blueboxes.rktd | 60c7e027f1876a500256111b0770ee419d704617 | []
| no_license | Kreachers/CS-112 | a53a9b926bc4c7a922ae8de1d891a2cfb97f336b | 5af6a26696614fc2fc3f0c1f09a0d73c2076075b | refs/heads/master | 2020-04-18T10:23:39.836792 | 2019-01-25T01:46:45 | 2019-01-25T01:46:45 | 167,466,313 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 74,093 | rktd | blueboxes.rktd | 16566
((3) 0 () 25 ((q lib "racket/draw.rkt") (c (? . 0) q bitmap%) (c (? . 0) q dc<%>) (c (? . 0) q region%) (c (? . 0) q ps-setup%) (c (? . 0) q bitmap-dc%) (c (? . 0) q radial-gradient%) (c (? . 0) q brush%) (c (? . 0) q dc-path%) (c (? . 0) q font-list%) (c (? . 0) q pen%) (c (? . 0) q gl-config%) (c (? . 0) q record-dc%) (c (? . 0) q gl-context<%>) (c (? . 0) q point%) (c (? . 0) q pdf-dc%) (c (? . 0) q color%) (c (? . 0) q font-name-directory<%>) (c (? . 0) q font%) (c (? . 0) q brush-list%) (c (? . 0) q color-database<%>) (c (? . 0) q pen-list%) (c (? . 0) q linear-gradient%) (c (? . 0) q post-script-dc%) (c (? . 0) q svg-dc%)) () (h ! (equal) ((c meth c (c (? . 1) q get-argb-pixels)) q (1439 . 17)) ((c meth c (c (? . 13) q swap-buffers)) q (36373 . 2)) ((c meth c (c (? . 8) q arc)) q (24604 . 15)) ((c meth c (c (? . 1) q is-color?)) q (2695 . 2)) ((c meth c (c (? . 10) q set-color)) q (39125 . 9)) ((c meth c (c (? . 3) q xor)) q (49529 . 3)) ((c meth c (c (? . 2) q set-text-mode)) q (23660 . 3)) ((c meth c (c (? . 2) q draw-arc)) q (13109 . 13)) ((c meth c (c (? . 5) q get-pixel)) q (7117 . 5)) ((q def ((lib "racket/draw/unsafe/brush.rkt") make-handle-brush)) q (56819 . 13)) ((c meth c (c (? . 4) q set-mode)) q (44676 . 3)) ((c def c (c (? . 0) q make-color)) q (52425 . 6)) ((c meth c (c (? . 11) q set-double-buffered)) q (35467 . 3)) ((c meth c (c (? . 3) q set-arc)) q (47094 . 13)) ((c meth c (c (? . 7) q get-style)) q (9547 . 2)) ((c meth c (c (? . 4) q get-orientation)) q (43614 . 3)) ((c def c (c (? . 0) q pen-cap-style/c)) q (56645 . 2)) ((c meth c (c (? . 17) q set-post-script-name)) q (33869 . 10)) ((c meth c (c (? . 6) q get-stops)) q (46019 . 3)) ((c meth c (c (? . 2) q set-text-foreground)) q (23485 . 5)) ((c meth c (c (? . 2) q translate)) q (24215 . 4)) ((c meth c (c (? . 4) q set-scaling)) q (45064 . 4)) ((q form ((lib "racket/draw/draw-sig.rkt") draw^)) q (56789 . 2)) ((c meth c (c (? . 5) q get-bitmap)) q (7042 . 2)) ((c meth c (c (? . 2) q get-char-width)) q (18208 . 2)) ((c constructor c (? . 6)) q (45361 . 17)) ((c meth c (c (? . 2) q get-char-height)) q (18131 . 2)) ((c meth c (c (? . 2) q draw-point)) q (16063 . 4)) ((c meth c (c (? . 14) q set-y)) q (41559 . 3)) ((c def c (? . 9)) q (29920 . 3)) ((c meth c (c (? . 3) q set-polygon)) q (48133 . 10)) ((c meth c (c (? . 7) q get-gradient)) q (9218 . 4)) ((c meth c (c (? . 2) q draw-rectangle)) q (16574 . 6)) ((c meth c (c (? . 7) q get-stipple)) q (9475 . 2)) ((c meth c (c (? . 8) q line-to)) q (25639 . 4)) ((c meth c (c (? . 2) q draw-bitmap)) q (13574 . 14)) ((c meth c (c (? . 9) q find-or-create-font)) q (30030 . 41)) ((c meth c (c (? . 8) q close)) q (25152 . 2)) ((c meth c (c (? . 2) q ok?)) q (20218 . 2)) ((c meth c (c (? . 4) q set-translation)) q (45210 . 4)) ((c meth c (c (? . 2) q set-text-background)) q (23310 . 5)) ((c meth c (c (? . 2) q suspend-flush)) q (24061 . 2)) ((c constructor c (? . 12)) q (46197 . 6)) ((c meth c (c (? . 6) q get-circles)) q (45926 . 3)) ((c meth c (c (? . 10) q is-immutable?)) q (38989 . 2)) ((c constructor c (? . 1)) q (50 . 30)) ((c meth c (c (? . 2) q start-doc)) q (23943 . 3)) ((c meth c (c (? . 16) q blue)) q (12085 . 2)) ((c def c (? . 3)) q (46584 . 3)) ((c meth c (c (? . 7) q set-stipple)) q (10128 . 8)) ((c meth c (c (? . 1) q set-loaded-mask)) q (4764 . 3)) ((c meth c (c (? . 2) q get-device-scale)) q (18361 . 3)) ((c meth c (c (? . 5) q get-argb-pixels)) q (6347 . 15)) ((c meth c (c (? . 2) q get-size)) q (19093 . 3)) ((c meth c (c (? . 1) q get-handle)) q (2380 . 2)) ((c meth c (c (? . 4) q set-preview-command)) q (44973 . 3)) ((c meth c (c (? . 2) q copy)) q (12878 . 8)) ((c meth c (c (? . 2) q resume-flush)) q (20257 . 2)) ((c meth c (c (? . 5) q draw-bitmap-section-smooth)) q (5048 . 27)) ((c meth c (c (? . 11) q get-stencil-size)) q (35159 . 2)) ((c def c (? . 12)) q (46124 . 4)) ((c meth c (c (? . 11) q get-accum-size)) q (34795 . 2)) ((c constructor c (? . 15)) q (37180 . 17)) ((c def c (c (? . 0) q font-smoothing/c)) q (56526 . 2)) ((c def c (c (? . 0) q the-color-database)) q (56194 . 2)) ((c meth c (c (? . 13) q call-as-current)) q (35972 . 7)) ((c meth c (c (? . 11) q set-depth-size)) q (35375 . 3)) ((c def c (? . 20)) q (12517 . 2)) ((c def c (c (? . 0) q font-hinting/c)) q (56568 . 2)) ((c meth c (c (? . 1) q ok?)) q (3504 . 2)) ((c meth c (c (? . 2) q get-text-extent)) q (19368 . 13)) ((c meth c (c (? . 2) q draw-lines)) q (15414 . 8)) ((c meth c (c (? . 8) q reset)) q (26355 . 2)) ((c def c (? . 5)) q (4854 . 4)) ((c meth c (c (? . 8) q rotate)) q (26443 . 3)) ((c meth c (c (? . 4) q copy-from)) q (42700 . 5)) ((c def c (c (? . 0) q make-platform-bitmap)) q (54824 . 8)) ((c def c (c (? . 0) q font-family/c)) q (56410 . 2)) ((c constructor c (? . 24)) q (49675 . 12)) ((c meth c (c (? . 1) q load-file)) q (2744 . 14)) ((c meth c (c (? . 10) q get-style)) q (38885 . 2)) ((c meth c (c (? . 3) q get-bounding-box)) q (46735 . 2)) ((c meth c (c (? . 14) q get-x)) q (41417 . 2)) ((c meth c (c (? . 11) q get-depth-size)) q (34864 . 2)) ((c meth c (c (? . 10) q get-stipple)) q (38815 . 2)) ((c meth c (c (? . 2) q get-pen)) q (18785 . 2)) ((c def c (? . 15)) q (37110 . 4)) ((c meth c (c (? . 14) q get-y)) q (41458 . 2)) ((c meth c (c (? . 7) q is-immutable?)) q (9802 . 2)) ((c meth c (c (? . 2) q get-text-mode)) q (19912 . 2)) ((c constructor c (? . 19)) q (10723 . 2)) ((c meth c (c (? . 5) q set-bitmap)) q (7911 . 3)) ((c meth c (c (? . 8) q scale)) q (26965 . 4)) ((c meth c (c (? . 2) q set-clipping-rect)) q (21569 . 9)) ((c meth c (c (? . 7) q set-color)) q (9854 . 9)) ((c meth c (c (? . 2) q set-initial-matrix)) q (22079 . 3)) ((c meth c (c (? . 2) q clear)) q (12840 . 2)) ((c meth c (c (? . 8) q ellipse)) q (25367 . 6)) ((c meth c (c (? . 1) q get-height)) q (2431 . 2)) ((c constructor c (? . 8)) q (24468 . 2)) ((c def c (c (? . 0) q the-brush-list)) q (56146 . 2)) ((c meth c (c (? . 2) q draw-ellipse)) q (15091 . 6)) ((c meth c (c (? . 1) q has-alpha-channel?)) q (2637 . 2)) ((c meth c (c (? . 2) q try-color)) q (24299 . 4)) ((c meth c (c (? . 2) q set-transformation)) q (23754 . 4)) ((c meth c (c (? . 3) q union)) q (49451 . 3)) ((c meth c (c (? . 2) q set-background)) q (20635 . 5)) ((c constructor c (? . 3)) q (46634 . 3)) ((c meth c (c (? . 2) q set-clipping-region)) q (21902 . 3)) ((c def c (c (? . 0) q the-font-name-directory)) q (56298 . 2)) ((c meth c (c (? . 16) q copy-from)) q (12337 . 3)) ((c meth c (c (? . 18) q get-size-in-pixels)) q (29470 . 2)) ((q def ((lib "racket/draw/draw-unit.rkt") draw@)) q (56767 . 2)) ((c meth c (c (? . 4) q get-mode)) q (43539 . 2)) ((c meth c (c (? . 10) q get-join)) q (38762 . 2)) ((c meth c (c (? . 17) q get-post-script-name)) q (33202 . 8)) ((c meth c (c (? . 13) q get-handle)) q (36271 . 2)) ((c meth c (c (? . 11) q get-share-context)) q (35070 . 3)) ((c constructor c (? . 21)) q (39792 . 2)) ((c meth c (c (? . 2) q get-background)) q (18018 . 2)) ((c meth c (c (? . 18) q get-family)) q (29242 . 2)) ((c meth c (c (? . 7) q set-style)) q (10589 . 3)) ((c meth c (c (? . 22) q get-stops)) q (37003 . 3)) ((c meth c (c (? . 13) q ok?)) q (36326 . 2)) ((c meth c (c (? . 2) q get-brush)) q (18077 . 2)) ((c meth c (c (? . 2) q get-path-bounding-box)) q (18835 . 5)) ((c meth c (c (? . 4) q get-command)) q (42894 . 2)) ((c meth c (c (? . 19) q find-or-create-brush)) q (10782 . 19)) ((c meth c (c (? . 2) q get-origin)) q (18735 . 2)) ((c meth c (c (? . 2) q get-text-foreground)) q (19848 . 2)) ((c meth c (c (? . 17) q find-or-create-font-id)) q (32324 . 7)) ((c def c (? . 6)) q (45302 . 3)) ((c def c (c (? . 0) q recorded-datum->procedure)) q (56041 . 4)) ((c meth c (c (? . 10) q set-join)) q (39393 . 3)) ((c meth c (c (? . 2) q glyph-exists?)) q (20150 . 3)) ((c meth c (c (? . 7) q get-transformation)) q (9600 . 4)) ((c meth c (c (? . 2) q get-font)) q (18506 . 2)) ((c constructor c (? . 18)) q (27674 . 36)) ((c meth c (c (? . 4) q set-margin)) q (44531 . 4)) ((c meth c (c (? . 10) q get-cap)) q (38656 . 2)) ((c meth c (c (? . 2) q get-alpha)) q (17966 . 2)) ((c meth c (c (? . 11) q get-stereo)) q (35230 . 2)) ((c def c (c (? . 0) q pen-join-style/c)) q (56686 . 2)) ((c def c (c (? . 0) q get-family-builtin-face)) q (50587 . 4)) ((c meth c (c (? . 3) q set-rectangle)) q (48575 . 9)) ((c meth c (c (? . 4) q get-editor-margin)) q (42946 . 5)) ((c meth c (c (? . 8) q reverse)) q (26398 . 2)) ((c meth c (c (? . 2) q transform)) q (24107 . 3)) ((c meth c (c (? . 4) q get-scaling)) q (43808 . 4)) ((c meth c (c (? . 16) q green)) q (12044 . 2)) ((c meth c (c (? . 18) q get-point-size)) q (29405 . 2)) ((c def c (? . 16)) q (11648 . 3)) ((c def c (c (? . 0) q make-pen)) q (53909 . 18)) ((c meth c (c (? . 18) q get-weight)) q (29688 . 2)) ((c meth c (c (? . 4) q set-orientation)) q (44776 . 3)) ((c meth c (c (? . 5) q set-pixel)) q (8015 . 5)) ((c meth c (c (? . 2) q set-font)) q (22002 . 3)) ((c meth c (c (? . 5) q set-argb-pixels)) q (7246 . 15)) ((c constructor c (? . 11)) q (34738 . 2)) ((c meth c (c (? . 8) q text-outline)) q (27046 . 11)) ((c constructor c (? . 16)) q (11697 . 9)) ((c meth c (c (? . 2) q draw-bitmap-section)) q (14115 . 22)) ((c def c (c (? . 0) q font-style/c)) q (56449 . 2)) ((c def c (? . 7)) q (8141 . 3)) ((c meth c (c (? . 3) q set-ellipse)) q (47577 . 6)) ((c meth c (c (? . 2) q set-alpha)) q (20552 . 3)) ((c def c (c (? . 0) q font-weight/c)) q (56487 . 2)) ((c def c (c (? . 0) q make-font)) q (52593 . 21)) ((c def c (? . 18)) q (27626 . 3)) ((c def c (c (? . 0) q pen-style/c)) q (56608 . 2)) ((c meth c (c (? . 2) q end-doc)) q (17809 . 2)) ((c meth c (c (? . 2) q get-text-background)) q (19304 . 2)) ((c meth c (c (? . 1) q get-depth)) q (2313 . 2)) ((c def c (c (? . 0) q current-ps-setup)) q (50249 . 4)) ((c meth c (c (? . 11) q get-multisample-size)) q (34995 . 2)) ((c meth c (c (? . 8) q open?)) q (26110 . 2)) ((c meth c (c (? . 4) q set-level-2)) q (44458 . 3)) ((c def c (c (? . 0) q the-pen-list)) q (56366 . 2)) ((c meth c (c (? . 2) q set-brush)) q (20800 . 17)) ((c meth c (c (? . 18) q screen-glyph-exists?)) q (29741 . 5)) ((c meth c (c (? . 18) q get-smoothing)) q (29526 . 2)) ((c meth c (c (? . 3) q subtract)) q (49370 . 3)) ((c def c (? . 4)) q (42593 . 3)) ((c def c (? . 11)) q (34685 . 3)) ((c meth c (c (? . 2) q draw-line)) q (15288 . 6)) ((c meth c (c (? . 2) q get-scale)) q (19044 . 2)) ((c meth c (c (? . 2) q get-initial-matrix)) q (18636 . 3)) ((c meth c (c (? . 11) q set-stencil-size)) q (35766 . 3)) ((c meth c (c (? . 2) q set-scale)) q (23100 . 4)) ((c meth c (c (? . 7) q get-color)) q (9161 . 2)) ((c def c (? . 8)) q (24417 . 3)) ((c meth c (c (? . 17) q set-screen-name)) q (34278 . 9)) ((c def c (? . 14)) q (41228 . 3)) ((c meth c (c (? . 11) q get-double-buffered)) q (34933 . 2)) ((c meth c (c (? . 14) q set-x)) q (41499 . 3)) ((c constructor c (? . 10)) q (38051 . 14)) ((c meth c (c (? . 8) q append)) q (24521 . 3)) ((c meth c (c (? . 20) q find-color)) q (12560 . 4)) ((c def c (c (? . 0) q the-font-list)) q (56252 . 2)) ((c def c (? . 13)) q (35933 . 2)) ((c def c (? . 17)) q (32062 . 2)) ((c meth c (c (? . 8) q curve-to)) q (25195 . 8)) ((c meth c (c (? . 18) q get-style)) q (29585 . 2)) ((c def c (? . 23)) q (41619 . 4)) ((c meth c (c (? . 21) q find-or-create-pen)) q (39847 . 28)) ((c meth c (c (? . 2) q end-page)) q (17849 . 2)) ((c meth c (c (? . 18) q get-face)) q (29185 . 2)) ((c constructor c (? . 7)) q (8190 . 18)) ((c def c (? . 21)) q (39740 . 3)) ((c meth c (c (? . 2) q draw-spline)) q (17220 . 8)) ((c meth c (c (? . 2) q set-origin)) q (22196 . 4)) ((c meth c (c (? . 20) q get-names)) q (12679 . 2)) ((c meth c (c (? . 2) q get-smoothing)) q (19222 . 3)) ((c meth c (c (? . 8) q move-to)) q (26027 . 4)) ((c meth c (c (? . 22) q get-line)) q (36928 . 2)) ((c meth c (c (? . 16) q is-immutable?)) q (12429 . 2)) ((c meth c (c (? . 2) q get-transformation)) q (19981 . 4)) ((c meth c (c (? . 17) q get-family)) q (32737 . 5)) ((c meth c (c (? . 1) q get-loaded-mask)) q (2496 . 2)) ((c def c (? . 2)) q (12745 . 2)) ((c meth c (c (? . 2) q draw-rounded-rectangle)) q (16773 . 11)) ((c meth c (c (? . 4) q set-editor-margin)) q (44223 . 4)) ((c meth c (c (? . 18) q get-hinting)) q (29350 . 2)) ((c meth c (c (? . 2) q rotate)) q (20302 . 3)) ((c def c (c (? . 0) q make-bitmap)) q (50763 . 9)) ((c meth c (c (? . 11) q set-share-context)) q (35647 . 3)) ((c meth c (c (? . 2) q erase)) q (17890 . 2)) ((c def c (? . 22)) q (36426 . 3)) ((c meth c (c (? . 17) q get-font-id)) q (32929 . 7)) ((c meth c (c (? . 10) q get-color)) q (38707 . 2)) ((c meth c (c (? . 2) q get-gl-context)) q (18558 . 2)) ((c meth c (c (? . 12) q get-recorded-datum)) q (46435 . 2)) ((c meth c (c (? . 4) q get-margin)) q (43309 . 5)) ((c constructor c (? . 22)) q (36485 . 13)) ((c meth c (c (? . 2) q draw-polygon)) q (16144 . 10)) ((c meth c (c (? . 8) q transform)) q (27428 . 3)) ((c meth c (c (? . 2) q draw-path)) q (15719 . 9)) ((c meth c (c (? . 4) q get-file)) q (43190 . 2)) ((c meth c (c (? . 8) q translate)) q (27541 . 4)) ((c def c (c (? . 0) q get-face-list)) q (50372 . 6)) ((c meth c (c (? . 17) q find-family-default-font-id)) q (32110 . 5)) ((c meth c (c (? . 12) q get-recorded-procedure)) q (46493 . 3)) ((c meth c (c (? . 3) q get-dc)) q (46809 . 2)) ((c meth c (c (? . 4) q get-translation)) q (43972 . 4)) ((c meth c (c (? . 4) q get-preview-command)) q (43748 . 2)) ((c meth c (c (? . 18) q get-underlined)) q (29636 . 2)) ((c meth c (c (? . 11) q set-accum-size)) q (35283 . 3)) ((c meth c (c (? . 17) q get-screen-name)) q (33543 . 8)) ((c meth c (c (? . 4) q get-paper-name)) q (43693 . 2)) ((c meth c (c (? . 7) q get-handle)) q (9413 . 2)) ((c meth c (c (? . 10) q set-stipple)) q (39483 . 3)) ((c constructor c (? . 14)) q (41277 . 5)) ((c def c (c (? . 0) q read-bitmap)) q (55154 . 19)) ((c def c (c (? . 0) q make-brush)) q (51162 . 22)) ((c meth c (c (? . 2) q get-clipping-region)) q (18284 . 2)) ((c meth c (c (? . 3) q in-region?)) q (46875 . 4)) ((c meth c (c (? . 2) q set-pen)) q (22277 . 17)) ((c meth c (c (? . 2) q flush)) q (17928 . 2)) ((c meth c (c (? . 2) q set-smoothing)) q (23204 . 3)) ((c constructor c (? . 9)) q (29973 . 2)) ((c meth c (c (? . 4) q set-command)) q (44140 . 3)) ((c constructor c (? . 5)) q (4927 . 3)) ((c meth c (c (? . 2) q set-rotation)) q (23028 . 3)) ((c meth c (c (? . 10) q set-width)) q (39658 . 3)) ((c meth c (c (? . 10) q set-cap)) q (39039 . 3)) ((c meth c (c (? . 8) q lines)) q (25722 . 8)) ((c def c (? . 1)) q (0 . 3)) ((c meth c (c (? . 1) q get-backing-scale)) q (2254 . 2)) ((c meth c (c (? . 2) q scale)) q (20368 . 4)) ((c meth c (c (? . 1) q get-width)) q (2573 . 2)) ((c meth c (c (? . 3) q set-path)) q (47777 . 9)) ((c meth c (c (? . 2) q draw-text)) q (17390 . 13)) ((c meth c (c (? . 1) q set-argb-pixels)) q (3979 . 17)) ((c meth c (c (? . 3) q is-empty?)) q (47045 . 2)) ((c def c (c (? . 0) q make-monochrome-bitmap)) q (53711 . 5)) ((c meth c (c (? . 3) q intersect)) q (46963 . 3)) ((c constructor c (? . 23)) q (41697 . 17)) ((c meth c (c (? . 1) q make-dc)) q (3444 . 2)) ((c meth c (c (? . 18) q get-font-id)) q (29295 . 2)) ((c meth c (c (? . 10) q set-style)) q (39582 . 3)) ((c meth c (c (? . 16) q alpha)) q (12125 . 2)) ((c meth c (c (? . 2) q set-alignment-scale)) q (20468 . 3)) ((c meth c (c (? . 8) q get-bounding-box)) q (25564 . 2)) ((c meth c (c (? . 16) q ok?)) q (12481 . 2)) ((c meth c (c (? . 8) q rounded-rectangle)) q (26518 . 11)) ((c meth c (c (? . 11) q set-multisample-size)) q (35549 . 3)) ((c meth c (c (? . 17) q get-face-name)) q (32619 . 4)) ((c def c (? . 10)) q (38004 . 3)) ((c constructor c (? . 4)) q (42645 . 2)) ((c meth c (c (? . 3) q set-rounded-rectangle)) q (48908 . 11)) ((c meth c (c (? . 2) q start-page)) q (24018 . 2)) ((c meth c (c (? . 16) q set)) q (12176 . 6)) ((c meth c (c (? . 16) q red)) q (12005 . 2)) ((c def c (c (? . 0) q brush-style/c)) q (56728 . 2)) ((c meth c (c (? . 10) q get-width)) q (38934 . 2)) ((c meth c (c (? . 8) q rectangle)) q (26156 . 6)) ((c meth c (c (? . 1) q save-file)) q (3547 . 9)) ((c meth c (c (? . 4) q set-paper-name)) q (44893 . 3)) ((c meth c (c (? . 4) q set-file)) q (44359 . 3)) ((c meth c (c (? . 4) q get-level-2)) q (43256 . 2)) ((c meth c (c (? . 2) q cache-font-metrics-key)) q (12776 . 2)) ((q def ((lib "racket/draw/unsafe/cairo-lib.rkt") cairo-lib)) q (57480 . 2)) ((c meth c (c (? . 11) q set-stereo)) q (35860 . 3)) ((c def c (? . 19)) q (10669 . 3)) ((c def c (? . 24)) q (49605 . 4)) ((c meth c (c (? . 2) q get-rotation)) q (18999 . 2))))
class
bitmap% : class?
superclass: object%
constructor
(make-object bitmap% width
height
[monochrome?
alpha?
backing-scale]) -> (is-a?/c bitmap%)
width : exact-positive-integer?
height : exact-positive-integer?
monochrome? : any/c = #f
alpha? : any/c = #f
backing-scale : (>/c 0.0) = 1.0
(make-object bitmap% in
[kind
bg-color
complain-on-failure?
backing-scale]) -> (is-a?/c bitmap%)
in : (or/c path-string? input-port?)
kind : (or/c 'unknown 'unknown/mask 'unknown/alpha = 'unknown
'gif 'gif/mask 'gif/alpha
'jpeg 'jpeg/alpha
'png 'png/mask 'png/alpha
'xbm 'xbm/alpha 'xpm 'xpm/alpha
'bmp 'bmp/alpha)
bg-color : (or/c (is-a?/c color%) #f) = #f
complain-on-failure? : any/c = #f
backing-scale : (>/c 0.0) = 1.0
(make-object bitmap% bits width height) -> (is-a?/c bitmap%)
bits : bytes?
width : exact-positive-integer?
height : exact-positive-integer?
method
(send a-bitmap get-argb-pixels x
y
width
height
pixels
[just-alpha?
pre-multiplied?
#:unscaled? unscaled?]) -> void?
x : real?
y : real?
width : exact-nonnegative-integer?
height : exact-nonnegative-integer?
pixels : (and/c bytes? (not/c immutable?))
just-alpha? : any/c = #f
pre-multiplied? : any/c = #f
unscaled? : any/c = #f
method
(send a-bitmap get-backing-scale) -> (>/c 0.0)
method
(send a-bitmap get-depth) -> exact-nonnegative-integer?
method
(send a-bitmap get-handle) -> cpointer?
method
(send a-bitmap get-height) -> exact-positive-integer?
method
(send a-bitmap get-loaded-mask) -> (or/c (is-a?/c bitmap%) #f)
method
(send a-bitmap get-width) -> exact-positive-integer?
method
(send a-bitmap has-alpha-channel?) -> boolean?
method
(send a-bitmap is-color?) -> boolean?
method
(send a-bitmap load-file in
[kind
bg-color
complain-on-failure?]) -> boolean?
in : (or/c path-string? input-port?)
kind : (or/c 'unknown 'unknown/mask 'unknown/alpha = 'unknown
'gif 'gif/mask 'gif/alpha
'jpeg 'jpeg/alpha
'png 'png/mask 'png/alpha
'xbm 'xbm/alpha 'xpm 'xpm/alpha
'bmp 'bmp/alpha)
bg-color : (or/c (is-a?/c color%) #f) = #f
complain-on-failure? : any/c = #f
method
(send a-bitmap make-dc) -> (is-a?/c bitmap-dc%)
method
(send a-bitmap ok?) -> boolean?
method
(send a-bitmap save-file name
kind
[quality
#:unscaled? unscaled?]) -> boolean?
name : (or/c path-string? output-port?)
kind : (or/c 'png 'jpeg 'xbm 'xpm 'bmp)
quality : (integer-in 0 100) = 75
unscaled? : any/c = #f
method
(send a-bitmap set-argb-pixels x
y
width
height
pixels
[just-alpha?
pre-multiplied?
#:unscaled? unscaled?]) -> void?
x : real?
y : real?
width : exact-nonnegative-integer?
height : exact-nonnegative-integer?
pixels : bytes?
just-alpha? : any/c = #f
pre-multiplied? : any/c = #f
unscaled? : any/c = #f
method
(send a-bitmap set-loaded-mask mask) -> void?
mask : (is-a?/c bitmap%)
class
bitmap-dc% : class?
superclass: object%
extends: dc<%>
constructor
(new bitmap-dc% [bitmap bitmap]) -> (is-a?/c bitmap-dc%)
bitmap : (or/c (is-a?/c bitmap%) #f)
method
(send a-bitmap-dc draw-bitmap-section-smooth source
dest-x
dest-y
dest-width
dest-height
src-x
src-y
src-width
src-height
[style
color
mask])
-> boolean?
source : (is-a?/c bitmap%)
dest-x : real?
dest-y : real?
dest-width : (and/c real? (not/c negative?))
dest-height : (and/c real? (not/c negative?))
src-x : real?
src-y : real?
src-width : (and/c real? (not/c negative?))
src-height : (and/c real? (not/c negative?))
style : (or/c 'solid 'opaque 'xor) = 'solid
color : (is-a?/c color%)
= (send the-color-database find-color "black")
mask : (or/c (is-a?/c bitmap%) #f) = #f
method
(send a-bitmap-dc get-argb-pixels x
y
width
height
pixels
[just-alpha?
pre-multiplied?]) -> void?
x : real?
y : real?
width : exact-nonnegative-integer?
height : exact-nonnegative-integer?
pixels : (and/c bytes? (not/c immutable?))
just-alpha? : any/c = #f
pre-multiplied? : any/c = #f
method
(send a-bitmap-dc get-bitmap) -> (or/c (is-a?/c bitmap%) #f)
method
(send a-bitmap-dc get-pixel x y color) -> boolean?
x : real?
y : real?
color : (is-a?/c color%)
method
(send a-bitmap-dc set-argb-pixels x
y
width
height
pixels
[just-alpha?
pre-multiplied?]) -> void?
x : real?
y : real?
width : exact-nonnegative-integer?
height : exact-nonnegative-integer?
pixels : bytes?
just-alpha? : any/c = #f
pre-multiplied? : any/c = #f
method
(send a-bitmap-dc set-bitmap bitmap) -> void?
bitmap : (or/c (is-a?/c bitmap%) #f)
method
(send a-bitmap-dc set-pixel x y color) -> void?
x : real?
y : real?
color : (is-a?/c color%)
class
brush% : class?
superclass: object%
constructor
(new brush%
[[color color]
[style style]
[stipple stipple]
[gradient gradient]
[transformation transformation]])
-> (is-a?/c brush%)
color : (or/c string? (is-a?/c color%)) = "black"
style : brush-style/c = 'solid
stipple : (or/c #f (is-a?/c bitmap%)) = #f
gradient : (or/c #f = #f
(is-a?/c linear-gradient%)
(is-a?/c radial-gradient%))
transformation : (or/c #f (vector/c (vector/c real? real? real?
real? real? real?)
real? real? real? real? real?))
= #f
method
(send a-brush get-color) -> (is-a?/c color%)
method
(send a-brush get-gradient) -> (or/c (is-a?/c linear-gradient%)
(is-a?/c radial-gradient%)
#f)
method
(send a-brush get-handle) -> (or/c cpointer? #f)
method
(send a-brush get-stipple) -> (or/c (is-a?/c bitmap%) #f)
method
(send a-brush get-style) -> brush-style/c
method
(send a-brush get-transformation)
-> (or/c #f (vector/c (vector/c real? real? real? real? real? real?)
real? real? real? real? real?))
method
(send a-brush is-immutable?) -> boolean?
method
(send a-brush set-color color) -> void?
color : (is-a?/c color%)
(send a-brush set-color color-name) -> void?
color-name : string?
(send a-brush set-color red green blue) -> void?
red : byte?
green : byte?
blue : byte?
method
(send a-brush set-stipple bitmap
[transformation]) -> void?
bitmap : (or/c (is-a?/c bitmap%) #f)
transformation : (or/c #f (vector/c (vector/c real? real? real?
real? real? real?)
real? real? real? real? real?))
= #f
method
(send a-brush set-style style) -> void?
style : brush-style/c
class
brush-list% : class?
superclass: object%
constructor
(new brush-list%) -> (is-a?/c brush-list%)
method
(send a-brush-list find-or-create-brush color
style)
-> (is-a?/c brush%)
color : (is-a?/c color%)
style : (or/c 'transparent 'solid 'opaque
'xor 'hilite 'panel
'bdiagonal-hatch 'crossdiag-hatch
'fdiagonal-hatch 'cross-hatch
'horizontal-hatch 'vertical-hatch)
(send a-brush-list find-or-create-brush color-name
style)
-> (or/c (is-a?/c brush%) #f)
color-name : string?
style : (or/c 'transparent 'solid 'opaque
'xor 'hilite 'panel
'bdiagonal-hatch 'crossdiag-hatch
'fdiagonal-hatch 'cross-hatch
'horizontal-hatch 'vertical-hatch)
class
color% : class?
superclass: object%
constructor
(make-object color%) -> (is-a?/c color%)
(make-object color% red green blue [alpha]) -> (is-a?/c color%)
red : byte?
green : byte?
blue : byte?
alpha : (real-in 0 1) = 1.0
(make-object color% color-name) -> (is-a?/c color%)
color-name : string?
method
(send a-color red) -> byte?
method
(send a-color green) -> byte?
method
(send a-color blue) -> byte?
method
(send a-color alpha) -> (real-in 0 1)
method
(send a-color set red green blue [alpha]) -> void?
red : byte?
green : byte?
blue : byte?
alpha : (real-in 0 1) = 1.0
method
(send a-color copy-from src) -> (is-a?/c color%)
src : (is-a?/c color%)
method
(send a-color is-immutable?) -> boolean?
method
(send a-color ok?) -> #t
interface
color-database<%> : interface?
method
(send a-color-database find-color color-name)
-> (or/c (is-a?/c color%) #f)
color-name : string?
method
(send a-color-database get-names) -> (listof string?)
interface
dc<%> : interface?
method
(send a-dc cache-font-metrics-key) -> exact-integer?
method
(send a-dc clear) -> void?
method
(send a-dc copy x y width height x2 y2) -> void?
x : real?
y : real?
width : (and/c real? (not/c negative?))
height : (and/c real? (not/c negative?))
x2 : real?
y2 : real?
method
(send a-dc draw-arc x
y
width
height
start-radians
end-radians) -> void?
x : real?
y : real?
width : (and/c real? (not/c negative?))
height : (and/c real? (not/c negative?))
start-radians : real?
end-radians : real?
method
(send a-dc draw-bitmap source
dest-x
dest-y
[style
color
mask]) -> boolean?
source : (is-a?/c bitmap%)
dest-x : real?
dest-y : real?
style : (or/c 'solid 'opaque 'xor) = 'solid
color : (is-a?/c color%)
= (send the-color-database find-color "black")
mask : (or/c (is-a?/c bitmap%) #f) = #f
method
(send a-dc draw-bitmap-section source
dest-x
dest-y
src-x
src-y
src-width
src-height
[style
color
mask]) -> boolean?
source : (is-a?/c bitmap%)
dest-x : real?
dest-y : real?
src-x : real?
src-y : real?
src-width : (and/c real? (not/c negative?))
src-height : (and/c real? (not/c negative?))
style : (or/c 'solid 'opaque 'xor) = 'solid
color : (is-a?/c color%)
= (send the-color-database find-color "black")
mask : (or/c (is-a?/c bitmap%) #f) = #f
method
(send a-dc draw-ellipse x y width height) -> void?
x : real?
y : real?
width : (and/c real? (not/c negative?))
height : (and/c real? (not/c negative?))
method
(send a-dc draw-line x1 y1 x2 y2) -> void?
x1 : real?
y1 : real?
x2 : real?
y2 : real?
method
(send a-dc draw-lines points
[xoffset
yoffset]) -> void?
points : (or/c (listof (is-a?/c point%))
(listof (cons/c real? real?)))
xoffset : real? = 0
yoffset : real? = 0
method
(send a-dc draw-path path
[xoffset
yoffset
fill-style]) -> void?
path : (is-a?/c dc-path%)
xoffset : real? = 0
yoffset : real? = 0
fill-style : (or/c 'odd-even 'winding) = 'odd-even
method
(send a-dc draw-point x y) -> void?
x : real?
y : real?
method
(send a-dc draw-polygon points
[xoffset
yoffset
fill-style]) -> void?
points : (or/c (listof (is-a?/c point%))
(listof (cons/c real? real?)))
xoffset : real? = 0
yoffset : real? = 0
fill-style : (or/c 'odd-even 'winding) = 'odd-even
method
(send a-dc draw-rectangle x y width height) -> void?
x : real?
y : real?
width : (and/c real? (not/c negative?))
height : (and/c real? (not/c negative?))
method
(send a-dc draw-rounded-rectangle x
y
width
height
[radius]) -> void?
x : real?
y : real?
width : (and/c real? (not/c negative?))
height : (and/c real? (not/c negative?))
radius : real? = -0.25
method
(send a-dc draw-spline x1 y1 x2 y2 x3 y3) -> void?
x1 : real?
y1 : real?
x2 : real?
y2 : real?
x3 : real?
y3 : real?
method
(send a-dc draw-text text
x
y
[combine?
offset
angle]) -> void?
text : string?
x : real?
y : real?
combine? : any/c = #f
offset : exact-nonnegative-integer? = 0
angle : real? = 0
method
(send a-dc end-doc) -> void?
method
(send a-dc end-page) -> void?
method
(send a-dc erase) -> void?
method
(send a-dc flush) -> void?
method
(send a-dc get-alpha) -> (real-in 0 1)
method
(send a-dc get-background) -> (is-a?/c color%)
method
(send a-dc get-brush) -> (is-a?/c brush%)
method
(send a-dc get-char-height) -> (and/c real? (not/c negative?))
method
(send a-dc get-char-width) -> (and/c real? (not/c negative?))
method
(send a-dc get-clipping-region) -> (or/c (is-a?/c region%) #f)
method
(send a-dc get-device-scale) -> (and/c real? (not/c negative?))
(and/c real? (not/c negative?))
method
(send a-dc get-font) -> (is-a?/c font%)
method
(send a-dc get-gl-context) -> (or/c (is-a?/c gl-context<%>) #f)
method
(send a-dc get-initial-matrix)
-> (vector/c real? real? real? real? real? real?)
method
(send a-dc get-origin) -> real? real?
method
(send a-dc get-pen) -> (is-a?/c pen%)
method
(send a-dc get-path-bounding-box path type)
-> real? real? real? real?
path : (is-a?/c dc-path%)
type : (or/c 'path 'stroke 'fill)
method
(send a-dc get-rotation) -> real?
method
(send a-dc get-scale) -> real? real?
method
(send a-dc get-size) -> (and/c real? (not/c negative?))
(and/c real? (not/c negative?))
method
(send a-dc get-smoothing)
-> (or/c 'unsmoothed 'smoothed 'aligned)
method
(send a-dc get-text-background) -> (is-a?/c color%)
method
(send a-dc get-text-extent string
[font
combine?
offset])
-> (and/c real? (not/c negative?))
(and/c real? (not/c negative?))
(and/c real? (not/c negative?))
(and/c real? (not/c negative?))
string : string?
font : (or/c (is-a?/c font%) #f) = #f
combine? : any/c = #f
offset : exact-nonnegative-integer? = 0
method
(send a-dc get-text-foreground) -> (is-a?/c color%)
method
(send a-dc get-text-mode) -> (or/c 'solid 'transparent)
method
(send a-dc get-transformation)
-> (vector/c (vector/c real? real? real? real? real? real?)
real? real? real? real? real?)
method
(send a-dc glyph-exists? c) -> boolean?
c : char?
method
(send a-dc ok?) -> boolean?
method
(send a-dc resume-flush) -> void?
method
(send a-dc rotate angle) -> void?
angle : real?
method
(send a-dc scale x-scale y-scale) -> void?
x-scale : real?
y-scale : real?
method
(send a-dc set-alignment-scale scale) -> void?
scale : (>/c 0.0)
method
(send a-dc set-alpha opacity) -> void?
opacity : (real-in 0 1)
method
(send a-dc set-background color) -> void?
color : (is-a?/c color%)
(send a-dc set-background color-name) -> void?
color-name : string?
method
(send a-dc set-brush brush) -> void?
brush : (is-a?/c brush%)
(send a-dc set-brush color style) -> void?
color : (is-a?/c color%)
style : (or/c 'transparent 'solid 'opaque
'xor 'hilite 'panel
'bdiagonal-hatch 'crossdiag-hatch
'fdiagonal-hatch 'cross-hatch
'horizontal-hatch 'vertical-hatch)
(send a-dc set-brush color-name style) -> void?
color-name : string?
style : (or/c 'transparent 'solid 'opaque
'xor 'hilite 'panel
'bdiagonal-hatch 'crossdiag-hatch
'fdiagonal-hatch 'cross-hatch
'horizontal-hatch 'vertical-hatch)
method
(send a-dc set-clipping-rect x
y
width
height) -> void?
x : real?
y : real?
width : (and/c real? (not/c negative?))
height : (and/c real? (not/c negative?))
method
(send a-dc set-clipping-region rgn) -> void?
rgn : (or/c (is-a?/c region%) #f)
method
(send a-dc set-font font) -> void?
font : (is-a?/c font%)
method
(send a-dc set-initial-matrix m) -> void?
m : (vector/c real? real? real? real? real? real?)
method
(send a-dc set-origin x y) -> void?
x : real?
y : real?
method
(send a-dc set-pen pen) -> void?
pen : (is-a?/c pen%)
(send a-dc set-pen color width style) -> void?
color : (is-a?/c color%)
width : (real-in 0 255)
style : (or/c 'transparent 'solid 'xor 'hilite
'dot 'long-dash 'short-dash 'dot-dash
'xor-dot 'xor-long-dash 'xor-short-dash
'xor-dot-dash)
(send a-dc set-pen color-name width style) -> void?
color-name : string?
width : (real-in 0 255)
style : (or/c 'transparent 'solid 'xor 'hilite
'dot 'long-dash 'short-dash 'dot-dash
'xor-dot 'xor-long-dash 'xor-short-dash
'xor-dot-dash)
method
(send a-dc set-rotation angle) -> void?
angle : real?
method
(send a-dc set-scale x-scale y-scale) -> void?
x-scale : real?
y-scale : real?
method
(send a-dc set-smoothing mode) -> void?
mode : (or/c 'unsmoothed 'smoothed 'aligned)
method
(send a-dc set-text-background color) -> void?
color : (is-a?/c color%)
(send a-dc set-text-background color-name) -> void?
color-name : string?
method
(send a-dc set-text-foreground color) -> void?
color : (is-a?/c color%)
(send a-dc set-text-foreground color-name) -> void?
color-name : string?
method
(send a-dc set-text-mode mode) -> void?
mode : (or/c 'solid 'transparent)
method
(send a-dc set-transformation t) -> void?
t : (vector/c (vector/c real? real? real? real? real? real?)
real? real? real? real? real?)
method
(send a-dc start-doc message) -> void?
message : string?
method
(send a-dc start-page) -> void?
method
(send a-dc suspend-flush) -> void?
method
(send a-dc transform m) -> void?
m : (vector/c real? real? real? real? real? real?)
method
(send a-dc translate dx dy) -> void?
dx : real?
dy : real?
method
(send a-dc try-color try result) -> void?
try : (is-a?/c color%)
result : (is-a?/c color%)
class
dc-path% : class?
superclass: object%
constructor
(new dc-path%) -> (is-a?/c dc-path%)
method
(send a-dc-path append path) -> void?
path : (is-a?/c dc-path%)
method
(send a-dc-path arc x
y
width
height
start-radians
end-radians
[counter-clockwise?]) -> void?
x : real?
y : real?
width : real?
height : real?
start-radians : real?
end-radians : real?
counter-clockwise? : any/c = #t
method
(send a-dc-path close) -> void?
method
(send a-dc-path curve-to x1 y1 x2 y2 x3 y3) -> void?
x1 : real?
y1 : real?
x2 : real?
y2 : real?
x3 : real?
y3 : real?
method
(send a-dc-path ellipse x y width height) -> void?
x : real?
y : real?
width : (and/c real? (not/c negative?))
height : (and/c real? (not/c negative?))
method
(send a-dc-path get-bounding-box) -> real? real? real? real?
method
(send a-dc-path line-to x y) -> void?
x : real?
y : real?
method
(send a-dc-path lines points
[xoffset
yoffset]) -> void?
points : (or/c (listof (is-a?/c point%))
(listof (cons/c real? real?)))
xoffset : real? = 0
yoffset : real? = 0
method
(send a-dc-path move-to x y) -> void?
x : real?
y : real?
method
(send a-dc-path open?) -> boolean?
method
(send a-dc-path rectangle x y width height) -> void?
x : real?
y : real?
width : (and/c real? (not/c negative?))
height : (and/c real? (not/c negative?))
method
(send a-dc-path reset) -> void?
method
(send a-dc-path reverse) -> void?
method
(send a-dc-path rotate radians) -> void?
radians : real?
method
(send a-dc-path rounded-rectangle x
y
width
height
[radius]) -> void?
x : real?
y : real?
width : (and/c real? (not/c negative?))
height : (and/c real? (not/c negative?))
radius : real? = -0.25
method
(send a-dc-path scale x y) -> void?
x : real?
y : real?
method
(send a-dc-path text-outline font
str
x
y
[combine?]) -> void?
font : (is-a?/c font%)
str : string?
x : real?
y : real?
combine? : any/c = #f
method
(send a-dc-path transform m) -> void?
m : (vector/c real? real? real? real? real? real?)
method
(send a-dc-path translate x y) -> void?
x : real?
y : real?
class
font% : class?
superclass: object%
constructor
(make-object font%) -> (is-a?/c font%)
(make-object font% size
family
[style
weight
underline?
smoothing
size-in-pixels?
hinting]) -> (is-a?/c font%)
size : (integer-in 1 1024)
family : font-family/c
style : font-style/c = 'normal
weight : font-weight/c = 'normal
underline? : any/c = #f
smoothing : font-smoothing/c = 'default
size-in-pixels? : any/c = #f
hinting : font-hinting/c = 'aligned
(make-object font% size
face
family
[style
weight
underline?
smoothing
size-in-pixels?
hinting]) -> (is-a?/c font%)
size : (integer-in 1 1024)
face : string?
family : font-family/c
style : font-style/c = 'normal
weight : font-weight/c = 'normal
underline? : any/c = #f
smoothing : font-smoothing/c = 'default
size-in-pixels? : any/c = #f
hinting : font-hinting/c = 'aligned
method
(send a-font get-face) -> (or/c string? #f)
method
(send a-font get-family) -> font-family/c
method
(send a-font get-font-id) -> exact-integer?
method
(send a-font get-hinting) -> font-hinting/c
method
(send a-font get-point-size) -> (integer-in 1 1024)
method
(send a-font get-size-in-pixels) -> boolean?
method
(send a-font get-smoothing) -> font-smoothing/c
method
(send a-font get-style) -> font-style/c
method
(send a-font get-underlined) -> boolean?
method
(send a-font get-weight) -> font-weight/c
method
(send a-font screen-glyph-exists? c
[for-label?]) -> boolean?
c : char?
for-label? : any/c = #f
class
font-list% : class?
superclass: object%
constructor
(new font-list%) -> (is-a?/c font-list%)
method
(send a-font-list find-or-create-font size
family
style
weight
[underline?
smoothing
size-in-pixels?
hinting])
-> (is-a?/c font%)
size : (integer-in 1 255)
family : (or/c 'default 'decorative 'roman 'script
'swiss 'modern 'symbol 'system)
style : (or/c 'normal 'italic 'slant)
weight : (or/c 'normal 'bold 'light)
underline? : any/c = #f
smoothing : (or/c 'default 'partly-smoothed 'smoothed 'unsmoothed)
= 'default
size-in-pixels? : any/c = #f
hinting : (or/c 'aligned 'unaligned) = 'aligned
(send a-font-list find-or-create-font size
face
family
style
weight
[underline
smoothing
size-in-pixels?
hinting])
-> (is-a?/c font%)
size : (integer-in 1 255)
face : string?
family : (or/c 'default 'decorative 'roman 'script
'swiss 'modern 'symbol 'system)
style : (or/c 'normal 'italic 'slant)
weight : (or/c 'normal 'bold 'light)
underline : any/c = #f
smoothing : (or/c 'default 'partly-smoothed 'smoothed 'unsmoothed)
= 'default
size-in-pixels? : any/c = #f
hinting : (or/c 'aligned 'unaligned) = 'aligned
interface
font-name-directory<%> : interface?
method
(send a-font-name-directory find-family-default-font-id family)
-> exact-integer?
family : (or/c 'default 'decorative 'roman 'script
'swiss 'modern 'symbol 'system)
method
(send a-font-name-directory find-or-create-font-id name
family)
-> exact-integer?
name : string?
family : (or/c 'default 'decorative 'roman 'script
'swiss 'modern 'symbol 'system)
method
(send a-font-name-directory get-face-name font-id)
-> (or/c string? #f)
font-id : exact-integer?
method
(send a-font-name-directory get-family font-id)
-> (or/c 'default 'decorative 'roman 'script
'swiss 'modern 'symbol 'system)
font-id : exact-integer?
method
(send a-font-name-directory get-font-id name
family)
-> exact-integer?
name : string?
family : (or/c 'default 'decorative 'roman 'script
'swiss 'modern 'symbol 'system)
method
(send a-font-name-directory get-post-script-name font-id
weight
style)
-> (or/c string? #f)
font-id : exact-integer?
weight : (or/c 'normal 'bold 'light)
style : (or/c 'normal 'italic 'slant)
method
(send a-font-name-directory get-screen-name font-id
weight
style)
-> (or/c string? #f)
font-id : exact-integer?
weight : (or/c 'normal 'bold 'light)
style : (or/c 'normal 'italic 'slant)
method
(send a-font-name-directory set-post-script-name font-id
weight
style
name)
-> void?
font-id : exact-integer?
weight : (or/c 'normal 'bold 'light)
style : (or/c 'normal 'italic 'slant)
name : string?
method
(send a-font-name-directory set-screen-name font-id
weight
style
name) -> void?
font-id : exact-integer?
weight : (or/c 'normal 'bold 'light)
style : (or/c 'normal 'italic 'slant)
name : string?
class
gl-config% : class?
superclass: object%
constructor
(new gl-config%) -> (is-a?/c gl-config%)
method
(send a-gl-config get-accum-size) -> (integer-in 0 256)
method
(send a-gl-config get-depth-size) -> (integer-in 0 256)
method
(send a-gl-config get-double-buffered) -> boolean?
method
(send a-gl-config get-multisample-size) -> (integer-in 0 256)
method
(send a-gl-config get-share-context)
-> (or/c #f (is-a?/c gl-context<%>))
method
(send a-gl-config get-stencil-size) -> (integer-in 0 256)
method
(send a-gl-config get-stereo) -> boolean?
method
(send a-gl-config set-accum-size on?) -> void?
on? : (integer-in 0 256)
method
(send a-gl-config set-depth-size on?) -> void?
on? : (integer-in 0 256)
method
(send a-gl-config set-double-buffered on?) -> void?
on? : any/c
method
(send a-gl-config set-multisample-size on?) -> void?
on? : (integer-in 0 256)
method
(send a-gl-config set-share-context context) -> void?
context : (or/c #f (is-a?/c gl-context<%>))
method
(send a-gl-config set-stencil-size on?) -> void?
on? : (integer-in 0 256)
method
(send a-gl-config set-stereo on?) -> void?
on? : any/c
interface
gl-context<%> : interface?
method
(send a-gl-context call-as-current thunk
[alternate
enable-breaks?]) -> any/c
thunk : (-> any)
alternate : evt? = never-evt
enable-breaks? : any/c = #f
method
(send a-gl-context get-handle) -> cpointer?
method
(send a-gl-context ok?) -> boolean?
method
(send a-gl-context swap-buffers) -> void?
class
linear-gradient% : class?
superclass: object%
constructor
(new linear-gradient%
[x0 x0]
[y0 y0]
[x1 x1]
[y1 y1]
[stops stops])
-> (is-a?/c linear-gradient%)
x0 : real?
y0 : real?
x1 : real?
y1 : real?
stops : (listof (list/c (real-in 0 1) (is-a?/c color%)))
method
(send a-linear-gradient get-line) -> real? real? real? real?
method
(send a-linear-gradient get-stops)
-> (listof (list/c (real-in/c 0 1) (is-a?/c color%)))
class
pdf-dc% : class?
superclass: object%
extends: dc<%>
constructor
(new pdf-dc%
[[interactive interactive]
[parent parent]
[use-paper-bbox use-paper-bbox]
[as-eps as-eps]
[width width]
[height height]
[output output]])
-> (is-a?/c pdf-dc%)
interactive : any/c = #t
parent : (or/c (is-a?/c frame%) (is-a?/c dialog%) #f) = #f
use-paper-bbox : any/c = #f
as-eps : any/c = #t
width : (or/c (and/c real? (not/c negative?)) #f) = #f
height : (or/c (and/c real? (not/c negative?)) #f) = #f
output : (or/c path-string? output-port? #f) = #f
class
pen% : class?
superclass: object%
constructor
(new pen%
[[color color]
[width width]
[style style]
[cap cap]
[join join]
[stipple stipple]]) -> (is-a?/c pen%)
color : (or/c string? (is-a?/c color%)) = "black"
width : (real-in 0 255) = 0
style : pen-style/c = 'solid
cap : pen-cap-style/c = 'round
join : pen-join-style/c = 'round
stipple : (or/c #f (is-a?/c bitmap%)) = #f
method
(send a-pen get-cap) -> pen-cap-style/c
method
(send a-pen get-color) -> (is-a?/c color%)
method
(send a-pen get-join) -> pen-join-style/c
method
(send a-pen get-stipple) -> (or/c (is-a?/c bitmap%) #f)
method
(send a-pen get-style) -> pen-style/c
method
(send a-pen get-width) -> (real-in 0 255)
method
(send a-pen is-immutable?) -> boolean?
method
(send a-pen set-cap cap-style) -> void?
cap-style : pen-cap-style/c
method
(send a-pen set-color color) -> void?
color : (is-a?/c color%)
(send a-pen set-color color-name) -> void?
color-name : string?
(send a-pen set-color red green blue) -> void?
red : byte?
green : byte?
blue : byte?
method
(send a-pen set-join join-style) -> void?
join-style : pen-join-style/c
method
(send a-pen set-stipple bitmap) -> void?
bitmap : (or/c (is-a?/c bitmap%) #f)
method
(send a-pen set-style style) -> void?
style : pen-style/c
method
(send a-pen set-width width) -> void?
width : (real-in 0 255)
class
pen-list% : class?
superclass: object%
constructor
(new pen-list%) -> (is-a?/c pen-list%)
method
(send a-pen-list find-or-create-pen color
width
style
[cap
join]) -> (is-a?/c pen%)
color : (is-a?/c color%)
width : (real-in 0 255)
style : (or/c 'transparent 'solid 'xor 'hilite
'dot 'long-dash 'short-dash 'dot-dash
'xor-dot 'xor-long-dash 'xor-short-dash
'xor-dot-dash)
cap : (or/c 'round 'projecting 'butt) = 'round
join : (or/c 'round 'bevel 'miter) = 'round
(send a-pen-list find-or-create-pen color-name
width
style
[cap
join])
-> (or/c (is-a?/c pen%) #f)
color-name : string?
width : (real-in 0 255)
style : (or/c 'transparent 'solid 'xor 'hilite
'dot 'long-dash 'short-dash 'dot-dash
'xor-dot 'xor-long-dash 'xor-short-dash
'xor-dot-dash)
cap : (or/c 'round 'projecting 'butt) = 'round
join : (or/c 'round 'bevel 'miter) = 'round
class
point% : class?
superclass: object%
constructor
(make-object point%) -> (is-a?/c point%)
(make-object point% x y) -> (is-a?/c point%)
x : real?
y : real?
method
(send a-point get-x) -> real?
method
(send a-point get-y) -> real?
method
(send a-point set-x x) -> void?
x : real?
method
(send a-point set-y y) -> void?
y : real?
class
post-script-dc% : class?
superclass: object%
extends: dc<%>
constructor
(new post-script-dc%
[[interactive interactive]
[parent parent]
[use-paper-bbox use-paper-bbox]
[as-eps as-eps]
[width width]
[height height]
[output output]])
-> (is-a?/c post-script-dc%)
interactive : any/c = #t
parent : (or/c (is-a?/c frame%) (is-a?/c dialog%) #f) = #f
use-paper-bbox : any/c = #f
as-eps : any/c = #t
width : (or/c (and/c real? (not/c negative?)) #f) = #f
height : (or/c (and/c real? (not/c negative?)) #f) = #f
output : (or/c path-string? output-port? #f) = #f
class
ps-setup% : class?
superclass: object%
constructor
(new ps-setup%) -> (is-a?/c ps-setup%)
method
(send a-ps-setup copy-from source
[copy-filename?]) -> void?
source : (is-a?/c ps-setup%)
copy-filename? : any/c = #f
method
(send a-ps-setup get-command) -> string?
method
(send a-ps-setup get-editor-margin h-margin
v-margin) -> void?
h-margin : (box/c (and/c real? (not/c negative?)))
v-margin : (box/c (and/c real? (not/c negative?)))
method
(send a-ps-setup get-file) -> (or/c path-string? #f)
method
(send a-ps-setup get-level-2) -> boolean?
method
(send a-ps-setup get-margin h-margin
v-margin) -> void?
h-margin : (box/c (and/c real? (not/c negative?)))
v-margin : (box/c (and/c real? (not/c negative?)))
method
(send a-ps-setup get-mode) -> (or/c 'preview 'file 'printer)
method
(send a-ps-setup get-orientation)
-> (or/c 'portrait 'landscape)
method
(send a-ps-setup get-paper-name) -> string?
method
(send a-ps-setup get-preview-command) -> string?
method
(send a-ps-setup get-scaling x y) -> void?
x : (box/c (and/c real? (not/c negative?)))
y : (box/c (and/c real? (not/c negative?)))
method
(send a-ps-setup get-translation x y) -> void?
x : (box/c (and/c real? (not/c negative?)))
y : (box/c (and/c real? (not/c negative?)))
method
(send a-ps-setup set-command command) -> void?
command : string?
method
(send a-ps-setup set-editor-margin h v) -> void?
h : exact-nonnegative-integer?
v : exact-nonnegative-integer?
method
(send a-ps-setup set-file filename) -> void?
filename : (or/c path-string? #f)
method
(send a-ps-setup set-level-2 on?) -> void?
on? : any/c
method
(send a-ps-setup set-margin h v) -> void?
h : (and/c real? (not/c negative?))
v : (and/c real? (not/c negative?))
method
(send a-ps-setup set-mode mode) -> void?
mode : (or/c 'preview 'file 'printer)
method
(send a-ps-setup set-orientation orientation) -> void?
orientation : (or/c 'portrait 'landscape)
method
(send a-ps-setup set-paper-name type) -> void?
type : string?
method
(send a-ps-setup set-preview-command command) -> void?
command : string?
method
(send a-ps-setup set-scaling x y) -> void?
x : (and/c real? (not/c negative?))
y : (and/c real? (not/c negative?))
method
(send a-ps-setup set-translation x y) -> void?
x : real?
y : real?
class
radial-gradient% : class?
superclass: object%
constructor
(new radial-gradient%
[x0 x0]
[y0 y0]
[r0 r0]
[x1 x1]
[y1 y1]
[r1 r1]
[stops stops])
-> (is-a?/c radial-gradient%)
x0 : real?
y0 : real?
r0 : real?
x1 : real?
y1 : real?
r1 : real?
stops : (listof (list/c (real-in 0 1) (is-a?/c color%)))
method
(send a-radial-gradient get-circles)
-> real? real? real? real? real? real?
method
(send a-radial-gradient get-stops)
-> (listof (list/c (real-in 0 1) (is-a?/c color%)))
class
record-dc% : class?
superclass: object%
extends: dc<%>
constructor
(new record-dc%
[[width width]
[height height]]) -> (is-a?/c record-dc%)
width : (>=/c 0) = 640
height : (>=/c 0) = 480
method
(send a-record-dc get-recorded-datum) -> any/c
method
(send a-record-dc get-recorded-procedure)
-> ((is-a?/c dc<%>) . -> . void?)
class
region% : class?
superclass: object%
constructor
(new region% [dc dc]) -> (is-a?/c region%)
dc : (or/c (is-a?/c dc<%>) #f)
method
(send a-region get-bounding-box) -> real? real? real? real?
method
(send a-region get-dc) -> (or/c (is-a?/c dc<%>) #f)
method
(send a-region in-region? x y) -> boolean?
x : real?
y : real?
method
(send a-region intersect rgn) -> void?
rgn : (is-a?/c region%)
method
(send a-region is-empty?) -> boolean?
method
(send a-region set-arc x
y
width
height
start-radians
end-radians) -> void?
x : real?
y : real?
width : (and/c real? (not/c negative?))
height : (and/c real? (not/c negative?))
start-radians : real?
end-radians : real?
method
(send a-region set-ellipse x y width height) -> void?
x : real?
y : real?
width : (and/c real? (not/c negative?))
height : (and/c real? (not/c negative?))
method
(send a-region set-path path
[xoffset
yoffset
fill-style]) -> void?
path : (is-a?/c dc-path%)
xoffset : real? = 0
yoffset : real? = 0
fill-style : (or/c 'odd-even 'winding) = 'odd-even
method
(send a-region set-polygon points
[xoffset
yoffset
fill-style]) -> void?
points : (or/c (listof (is-a?/c point%))
(listof (cons/c real? real?)))
xoffset : real? = 0
yoffset : real? = 0
fill-style : (or/c 'odd-even 'winding) = 'odd-even
method
(send a-region set-rectangle x
y
width
height) -> void?
x : real?
y : real?
width : (and/c real? (not/c negative?))
height : (and/c real? (not/c negative?))
method
(send a-region set-rounded-rectangle x
y
width
height
[radius]) -> void?
x : real?
y : real?
width : (and/c real? (not/c negative?))
height : (and/c real? (not/c negative?))
radius : real? = -0.25
method
(send a-region subtract rgn) -> void?
rgn : (is-a?/c region%)
method
(send a-region union rgn) -> void?
rgn : (is-a?/c region%)
method
(send a-region xor rgn) -> void?
rgn : (is-a?/c region%)
class
svg-dc% : class?
superclass: object%
extends: dc<%>
constructor
(new svg-dc%
[width width]
[height height]
[output output]
[[exists exists]]) -> (is-a?/c svg-dc%)
width : (and/c real? (not/c negative?))
height : (and/c real? (not/c negative?))
output : (or/c path-string? output-port?)
exists : (or/c 'error 'append 'update 'can-update = 'error
'replace 'truncate
'must-truncate 'truncate/replace)
parameter
(current-ps-setup) -> (is-a?/c ps-setup%)
(current-ps-setup pss) -> void?
pss : (is-a?/c ps-setup%)
procedure
(get-face-list [kind
#:all-variants? all-variants?])
-> (listof string?)
kind : (or/c 'mono 'all) = 'all
all-variants? : any/c = #f
procedure
(get-family-builtin-face family) -> string?
family : (or/c 'default 'decorative 'roman 'script
'swiss 'modern 'symbol 'system)
procedure
(make-bitmap width
height
[alpha?
#:backing-scale backing-scale]) -> (is-a?/c bitmap%)
width : exact-positive-integer?
height : exact-positive-integer?
alpha? : any/c = #t
backing-scale : (>/c 0.0) = 1.0
procedure
(make-brush [#:color color
#:style style
#:stipple stipple
#:gradient gradient
#:transformation transformation
#:immutable? immutable?]) -> (is-a?/c brush%)
color : (or/c string? (is-a?/c color%)) = (make-color 0 0 0)
style : (or/c 'transparent 'solid 'opaque = 'solid
'xor 'hilite 'panel
'bdiagonal-hatch 'crossdiag-hatch
'fdiagonal-hatch 'cross-hatch
'horizontal-hatch 'vertical-hatch)
stipple : (or/c #f (is-a?/c bitmap%)) = #f
gradient : (or/c #f = #f
(is-a?/c linear-gradient%)
(is-a?/c radial-gradient%))
transformation : (or/c #f (vector/c (vector/c real? real? real?
real? real? real?)
real? real? real? real? real?))
= #f
immutable? : any/c = #t
procedure
(make-color red green blue [alpha]) -> (is-a?/c color%)
red : byte?
green : byte?
blue : byte?
alpha : (real-in 0 1) = 1.0
procedure
(make-font [#:size size
#:face face
#:family family
#:style style
#:weight weight
#:underlined? underlined?
#:smoothing smoothing
#:size-in-pixels? size-in-pixels?
#:hinting hinting]) -> (is-a?/c font%)
size : (integer-in 1 1024) = 12
face : (or/c string? #f) = #f
family : (or/c 'default 'decorative 'roman 'script = 'default
'swiss 'modern 'symbol 'system)
style : (or/c 'normal 'italic 'slant) = 'normal
weight : (or/c 'normal 'bold 'light) = 'normal
underlined? : any/c = #f
smoothing : (or/c 'default 'partly-smoothed = 'default
'smoothed 'unsmoothed)
size-in-pixels? : any/c = #f
hinting : (or/c 'aligned 'unaligned) = 'aligned
procedure
(make-monochrome-bitmap width height [bits]) -> (is-a?/c bitmap%)
width : exact-positive-integer?
height : exact-positive-integer?
bits : (or/c bytes? #f) = #f
procedure
(make-pen [#:color color
#:width width
#:style style
#:cap cap
#:join join
#:stipple stipple
#:immutable? immutable?]) -> (is-a?/c pen%)
color : (or/c string? (is-a?/c color%)) = (make-color 0 0 0)
width : (real-in 0 255) = 0
style : (or/c 'transparent 'solid 'xor 'hilite = 'solid
'dot 'long-dash 'short-dash 'dot-dash
'xor-dot 'xor-long-dash 'xor-short-dash
'xor-dot-dash)
cap : (or/c 'round 'projecting 'butt) = 'round
join : (or/c 'round 'bevel 'miter) = 'round
stipple : (or/c #f (is-a?/c bitmap%)) = #f
immutable? : any/c = #t
procedure
(make-platform-bitmap width
height
[#:backing-scale backing-scale])
-> (is-a?/c bitmap%)
width : exact-positive-integer?
height : exact-positive-integer?
backing-scale : (>/c 0.0) = 1.0
procedure
(read-bitmap in
[kind
bg-color
complain-on-failure?
#:backing-scale backing-scale
#:try-@2x? try-@2x?]) -> (is-a?/c bitmap%)
in : (or path-string? input-port?)
kind : (or/c 'unknown 'unknown/mask 'unknown/alpha
'gif 'gif/mask 'gif/alpha
'jpeg 'jpeg/alpha
'png 'png/mask 'png/alpha
'xbm 'xbm/alpha 'xpm 'xpm/alpha
'bmp 'bmp/alpha)
= 'unknown/alpha
bg-color : (or/c (is-a?/c color%) #f) = #f
complain-on-failure? : any/c = #t
backing-scale : (>/c 0.0) = 1.0
try-@2x? : any/c = #f
procedure
(recorded-datum->procedure datum)
-> ((is-a?/c dc<%>) . -> . void?)
datum : any/c
value
the-brush-list : (is-a?/c brush-list%)
value
the-color-database : (is-a?/c color-database<%>)
value
the-font-list : (is-a?/c font-list%)
value
the-font-name-directory : (is-a?/c font-name-directory<%>)
value
the-pen-list : (is-a?/c pen-list%)
value
font-family/c : flat-contract?
value
font-style/c : flat-contract?
value
font-weight/c : flat-contract?
value
font-smoothing/c : flat-contract?
value
font-hinting/c : flat-contract?
value
pen-style/c : flat-contract?
value
pen-cap-style/c : flat-contract?
value
pen-join-style/c : flat-contract?
value
brush-style/c : flat-contract?
value
draw@ : unit?
signature
draw^ : signature
procedure
(make-handle-brush handle
width
height
transformation
[#:copy? copy?]) -> (is-a?/c brush%)
handle : cpointer?
width : exact-nonnegative-integer?
height : exact-nonnegative-integer?
transformation : (or/c #f (vector/c (vector/c real? real? real?
real? real? real?)
real? real? real? real? real?))
copy? : any/c = #t
value
cairo-lib : (or/c ffi-lib? #f)
| false |
510a355d3e7646739859c38c6f57461cae21b791 | d9276fbd73cdec7a5a4920e46af2914f8ec3feb1 | /data/scheme/dyn-syntax.rkt | 9548a7c195e8cd6d4883596b0b0b71a760947957 | []
| no_license | CameronBoudreau/programming-language-classifier | 5c7ab7d709b270f75269aed1fa187e389151c4f7 | 8f64f02258cbab9e83ced445cef8c1ef7e5c0982 | refs/heads/master | 2022-10-20T23:36:47.918534 | 2016-05-02T01:08:13 | 2016-05-02T01:08:13 | 57,309,188 | 1 | 1 | null | 2022-10-15T03:50:41 | 2016-04-28T14:42:50 | C | UTF-8 | Racket | false | false | 3,717 | rkt | dyn-syntax.rkt | #lang racket/base
(require (for-syntax racket/base
racket/local
racket/list
syntax/parse
syntax/strip-context)
racket/function
racket/list
racket/match
racket/stxparam
"lib.rkt"
"syntax.rkt"
(for-syntax "lib.rkt"))
(define-syntax-parameter =>*
(λ (stx) (raise-syntax-error '=>* "Only allowed inside formlet*" stx)))
(define (snoc x l) (append l (list x)))
(struct label-formlet (p))
(define (label-formlet-answers labels formlet)
(label-formlet
(cross (pure (λ anss
(λ (answers)
(for ([label (in-list labels)]
[ans (in-list anss)])
(hash-update! answers label (curry snoc ans) empty)))))
formlet)))
(define xexpr-forest->label-formlet
(match-lambda
[(list)
(pure (λ (x) x))]
[(list-rest xe xf)
(cross* (pure (lambda (xe-populate-hash! xf-populate-hash!)
(lambda (answers)
(xe-populate-hash! answers)
(xf-populate-hash! answers))))
(xexpr->label-formlet xe)
(xexpr-forest->label-formlet xf))]))
(define xexpr->label-formlet
(match-lambda
[(#%#-mark l)
(xexpr-forest->label-formlet l)]
[(list (? symbol? tag) (list (list (? symbol? attr) (? string? str)) ...) xexpr ...)
(tag-xexpr tag (map list attr str)
(xexpr-forest->label-formlet xexpr))]
[(list (? symbol? tag) xexpr ...)
(tag-xexpr tag empty
(xexpr-forest->label-formlet xexpr))]
[(label-formlet p)
p]
[(? string? s)
(text s)]))
(define (label-formlet-cross handler xexpr/labeled-formlets)
(cross (pure (λ (populate-hash!)
(define ht (make-hasheq))
(populate-hash! ht)
(handler ht)))
(xexpr->label-formlet xexpr/labeled-formlets)))
(struct #%#-mark (l))
(define-syntax-rule (inner-#%# e ...) (#%#-mark (list e ...)))
(define-syntax (formlet* stx)
(syntax-case stx ()
[(_ q e)
(local [(define label->name (make-hash))
(define (this-=>* stx)
(syntax-parse stx
#:literals (values)
[(=>* formlet:expr name:id)
#'(=>* formlet (values name))]
[(_ formlet:expr (values name:id ...))
(define names (syntax->list #'(name ...)))
(define labels (map (compose gensym syntax->datum) names))
(for ([label (in-list labels)]
[name (in-list names)])
(hash-set! label->name label (replace-context #'e name)))
#`(label-formlet-answers '#,labels formlet)]))
(define q-raw
(local-expand #`(syntax-parameterize ([=>* #,this-=>*]
[#%# (make-rename-transformer #'inner-#%#)])
q)
'expression empty))]
(with-syntax ([((label . name) ...)
(for/list ([(k v) (in-hash label->name)])
(cons k v))])
(quasisyntax/loc stx
(label-formlet-cross (lambda (labeled)
(let ([name (hash-ref labeled 'label empty)]
...)
e))
#,q-raw))))]))
(provide formlet* =>*)
| true |
1a19bee67a68d38abea25b70856baa644d88bec9 | daefa90afaaffa35dd6815542ee3921d4db60103 | /termination/tests/Dyn/sct-1.rkt | 526cc790e2e7ba101229ed1f4f91615bdb3ebd6d | []
| no_license | philnguyen/termination | 6d8fc518dfd267fd75f2aff29123ba7f62f1e265 | 1d05c1bf8e9bd59d2fbaaa213b490fd8e59644bd | refs/heads/master | 2020-03-07T08:33:46.951853 | 2019-05-30T02:28:47 | 2019-05-30T02:28:47 | 127,381,963 | 0 | 1 | null | 2018-05-21T19:57:33 | 2018-03-30T04:37:01 | Racket | UTF-8 | Racket | false | false | 168 | rkt | sct-1.rkt | #lang racket
(require termination)
(define/termination (rev ls) (r1 ls '()))
(define (r1 ls a) (if (null? ls) a (r1 (cdr ls) (cons (car ls) a))))
(rev '(1 2 3 4 5))
| false |
9a05cb82d351de333ca7f8897f4d3d30d4e6af46 | acd21c71090f99fcaa8b1455b44f55743be90e1e | /tp/tp9/object.rkt | 199b6b4e2a4b69d9819ddaf90ce7e2ed917d080f | []
| no_license | margauxschmied/Paradigme | 703d4ba21a2ec938e82851133d2a1782923df176 | 5d3c0d52d7f5e5c5dd0881a17c4c45874e6e2829 | refs/heads/main | 2023-04-22T00:18:52.320312 | 2021-05-15T08:31:31 | 2021-05-15T08:31:31 | 336,850,768 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 4,814 | rkt | object.rkt | ; Cours 09 : Objets
#lang plait
;;;;;;;;;;;;;;;;;;;;;;;;
; Définition des types ;
;;;;;;;;;;;;;;;;;;;;;;;;
; Représentation des expressions
(define-type Exp
[thisE]
[argE]
[numE (n : Number)]
[plusE (l : Exp) (r : Exp)]
[multE (l : Exp) (r : Exp)]
[objE (fields : (Listof (Symbol * Exp)))
(methods : (Listof (Symbol * Exp)))]
[getE (object : Exp) (field : Symbol)]
[sendE (object : Exp) (method : Symbol) (arg : Exp)])
; Représentation des valeurs
(define-type Value
[numV (n : Number)]
[objV (fields : (Listof (Symbol * Value)))
(methods : (Listof (Symbol * Exp)))])
;;;;;;;;;;;;;;;;;;;;;;
; Analyse syntaxique ;
;;;;;;;;;;;;;;;;;;;;;;
; Analyse d'une classe
(define (parse [s : S-Exp] [in-method : Boolean]) : Exp
(local [(define (parse-r s) (parse s in-method))]
(cond
[(s-exp-match? `this s) (if in-method (thisE) (error 'parse "invalid input"))]
[(s-exp-match? `arg s) (if in-method (argE) (error 'parse "invalid input"))]
[(s-exp-match? `NUMBER s) (numE (s-exp->number s))]
[(s-exp-match? `{+ ANY ANY} s)
(let ([sl (s-exp->list s)])
(plusE (parse-r (second sl)) (parse-r (third sl))))]
[(s-exp-match? `{* ANY ANY} s)
(let ([sl (s-exp->list s)])
(multE (parse-r (second sl)) (parse-r (third sl))))]
[(s-exp-match? `{object {[SYMBOL ANY] ...} [SYMBOL ANY] ...} s)
(let ([sl (s-exp->list s)])
(let ([fds (s-exp->list (second sl))]
[mtds (rest (rest sl))])
(objE (map (lambda (fd)
(let ([fdl (s-exp->list fd)])
(pair (s-exp->symbol (first fdl))
(parse-r (second fdl)))))
fds)
(map (lambda (mtd)
(let ([mtdl (s-exp->list mtd)])
(pair (s-exp->symbol (first mtdl))
(parse (second mtdl) #t))))
mtds))))]
[(s-exp-match? `{get ANY SYMBOL} s)
(let ([sl (s-exp->list s)])
(getE (parse-r (second sl)) (s-exp->symbol (third sl))))]
[(s-exp-match? `{send ANY SYMBOL ANY} s)
(let ([sl (s-exp->list s)])
(sendE (parse-r (second sl)) (s-exp->symbol (third sl)) (parse-r (fourth sl))))]
[else (error 'parse "invalid input")])))
;;;;;;;;;;;;;;;;;;
; Interprétation ;
;;;;;;;;;;;;;;;;;;
; Interpréteur
(define (interp [e : Exp] [this-v : Value] [arg-v : Value]) : Value
(type-case Exp e
[(thisE) this-v]
[(argE) arg-v]
[(numE n) (numV n)]
[(plusE l r) (num+ (interp l this-v arg-v) (interp r this-v arg-v))]
[(multE l r) (num* (interp l this-v arg-v) (interp r this-v arg-v))]
[(objE fields methods)
(objV (map (lambda (fd)
(pair (fst fd)
(interp (snd fd) this-v arg-v)))
fields)
methods)]
[(getE obj fd)
(type-case Value (interp obj this-v arg-v)
[(objV fields methods) (find fd fields)]
[else (error 'interp "not an object")])]
[(sendE obj mtd arg)
(let ([obj-v (interp obj this-v arg-v)])
(type-case Value obj-v
[(objV fields methods)
(interp (find mtd methods)
obj-v
(interp arg this-v arg-v))]
[else (error 'interp "not an object")]))]))
; Fonctions utilitaires pour l'arithmétique
(define (num-op [op : (Number Number -> Number)]
[l : Value] [r : Value]) : Value
(if (and (numV? l) (numV? r))
(numV (op (numV-n l) (numV-n r)))
(error 'interp "not a number")))
(define (num+ [l : Value] [r : Value]) : Value
(num-op + l r))
(define (num* [l : Value] [r : Value]) : Value
(num-op * l r))
; Recherche dans des listes d'association
(define (find [name : Symbol]
[pairs : (Listof (Symbol * 'a))]) : 'a
(cond
[(empty? pairs) (error 'find "not found")]
[(equal? name (fst (first pairs))) (snd (first pairs))]
[else (find name (rest pairs))]))
;;;;;;;;;
; tests ;
;;;;;;;;;
(define (interp-expr [s : S-Exp]) : Value
(interp (parse s #f)
(numV 0)
(numV 0)))
(test (interp-expr `{+ 1 2})
(numV 3))
(test (interp-expr `{object {}})
(objV empty empty))
(test (interp-expr `{object
{[x {+ 1 2}]}
[incr {+ arg 1}]})
(objV (list (pair 'x (numV 3)))
(list (pair 'incr (plusE (argE) (numE 1))))))
(test (interp-expr `{get {object
{[x {+ 1 2}]}
[incr {+ arg 1}]}
x})
(numV 3))
(test (interp-expr `{send {object
{[x {+ 1 2}]}
[incr {+ arg 1}]}
incr 3})
(numV 4)) | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.