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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
20a3d3fd0fcaafd932ff0dc17930db4deb036a20 | 01f1f5d15fcd3e29fb6086131963cd17fb4669d3 | /src/selectors.rkt | 23c6cbdb6b10959e5a204e7d882d2b2213fe5b30 | [
"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 | 9,409 | rkt | selectors.rkt | #lang racket
(require "common.rkt" "tree.rkt" "spec/css-properties.rkt" "spec/media-query.rkt")
(module+ test (require rackunit))
(provide equivalence-classes selector-matches?
rule-matchlist (struct-out rulematch) rule-allows-property?)
(define (property? sym)
(and (symbol? sym)
(for/first ([(property type default) (in-css-properties)] #:when (equal? property sym)) true)))
(define-by-match selector?
`*
`(id ,(? symbol?))
`(class ,(? symbol?))
`(tag ,(? symbol?))
`(and ,(? selector?) ...)
`(desc ,(? selector?) ...)
`(child ,(? selector?) ...)
`(pseudo-class ,(or 'first-child 'last-child 'hover 'last-of-type 'first-of-type))
`(type ,(? symbol?))
`(media ,(? media-query?) ,(? selector?))
`(fake ,(? string?) ,(? selector?) ...))
(define-by-match rule?
(list (? selector?) (? attribute?) ... (list (? property?) _ (? attribute?) ...) ...))
(define-by-match partial-rule?
(list (? selector?) (? attribute?) ... (or (list (? property?) _ (? attribute?) ...) '?) ...))
(define/contract (rule-allows-property? rule prop)
(-> partial-rule? property? boolean?)
(match-define (list selector (? attribute? attrs) ... (and (or (? list?) '?) props) ...) rule)
(or (set-member? props '?)
(and (dict-has-key? props prop)
(not (null? (dict-ref props prop))))))
(define/contract (selector-matches? sel elt)
(-> selector? node? boolean?)
"Given an element and a selector, returns whether the selector matches the element"
(match sel
[`(fake ,true ,subsels ...)
(ormap (curryr selector-matches? elt) subsels)]
[`* true]
[`(id ,id) ; IDs are case-sensitive
(equal? (node-get elt ':id) id)]
[`(class ,cls) ; CLASSes are case-insensitive
(define ecls (map slower (node-get elt ':class #:default '())))
(set-member? ecls (slower cls))]
[`(tag ,tag)
(equal? (slower (node-type elt)) (slower tag))]
[`(pseudo-class first-child) (not (node-prev elt))]
[`(pseudo-class last-child) (not (node-next elt))]
[`(pseudo-class first-of-type)
(let loop ([sib (node-prev elt)])
(cond
[(not sib) true]
[(equal? (slower (node-type sib)) (slower (node-type elt)))
false]
[else (loop (node-prev sib))]))]
[`(pseudo-class last-of-type)
(let loop ([sib (node-next elt)])
(cond
[(not sib) true]
[(equal? (slower (node-type sib)) (slower (node-type elt)))
false]
[else (loop (node-next sib))]))]
[`(pseudo-class hover) (node-get* elt ':hover #:default #f)]
[`(type ,type)
(and (node-get elt ':type) (equal? (node-get elt ':type) type))]
[`(media ,query ,sel)
;; TODO: Subtle
(selector-matches? sel elt)]
[(list 'and sels ...) (andmap (curryr selector-matches? elt) sels)]
[(list 'desc sels ...)
(match-define (cons sel rsels) (reverse sels))
(and (selector-matches? sel elt)
(or (node-parent elt) (null? rsels))
(let loop ([rsels rsels] [elt (node-parent elt)])
(cond
[(null? rsels) true]
[(not (node-parent elt)) false]
[(selector-matches? (car rsels) elt)
(loop (cdr rsels) (node-parent elt))]
[else
(loop rsels (node-parent elt))])))]
[(list 'child sels ...)
(let loop ([rsels (reverse sels)] [elt elt])
(cond
[(null? rsels) true]
[(not (node-parent elt)) false]
[(selector-matches? (car rsels) elt)
(loop (cdr rsels) (node-parent elt))]
[else false]))]))
(module+ test
(define tree
(parse-tree
'([html] ; 0
([body] ; 1
([div :id content] ; 2
([h1 :class (title)]) ; 3
([div :class (abstract)] ; 4
([blockquote] ; 5
([p]))) ; 6
([p]) ; 7
([div :class (aside)] ; 8
([p]))))))) ; 9
(define (check-selector sel ns)
(for ([n (in-naturals)] [elt (in-tree tree)])
((if (set-member? ns n) check-true check-false)
(selector-matches? sel elt))))
(check-selector '* (range 10))
(check-selector '(id content) '(2))
(check-selector '(tag html) '(0))
(check-selector '(tag p) '(6 7 9))
(check-selector '(class title) '(3))
(check-selector '(class aside) '(8))
(check-selector '(and (tag div) (class aside)) '(8))
(check-selector '(and (tag p) (class aside)) '())
(check-selector '(desc (tag div) (tag p)) '(6 7 9))
(check-selector '(child (tag div) (tag p)) '(7 9))
(check-selector '(child (and (tag div) (id content)) (tag p)) '(7)))
(define-by-match partial-selector-score?
(list (? number?) (? number?) (? number?)))
(define-by-match selector-score?
(list (or 'browser 'user 'author) (? boolean?) (? number?) (? number?) (? number?) (? number?)))
(define/contract (compute-score selector)
(-> selector? partial-selector-score?)
"Given a selector, return a list (ids classes tags) of counts"
(match selector
[(list 'id id) '(1 0 0)]
[(list 'class cls) '(0 1 0)]
[(list 'tag tag) '(0 0 1)]
[(list 'pseudo-class _) '(0 1 0)]
[(list 'type _) '(0 0 0)]
[(list 'media _ sel) (compute-score sel)]
['* '(0 0 0)]
[(list 'fake _ ...) '(100 0 0)] ; TODO: Should it be 0 0 0 ?
[(list (or 'and 'desc 'child) sels ...)
(map (curry apply +) (apply (curry map list) (map compute-score sels)))]))
(define/contract (rule-scores rules)
(-> (listof partial-rule?) (listof selector-score?))
"Given a list of rules, return a list of cascade scores (io fromstyle ids classes tags idx)"
(for/list ([rule rules] [i (in-naturals)])
(match-define (list (? selector? selector) (? attribute? attrs) ... _ ...) rule)
(define browser? (set-member? attrs ':browser))
(define user? (set-member? attrs ':user))
(define style? (set-member? attrs ':style))
(match-define (list ids classes tags) (compute-score selector))
(list (cond [browser? 'browser] [user? 'user] [else 'author]) style? ids classes tags i)))
(define/match (io<? io1 io2)
[((or 'browser 'user) 'author) true]
[('browser 'user) true]
[(_ _) false])
(define score<? (lex<? io<? boolean<? < < < <))
(struct rulematch (rule elts idx)
#:methods gen:equal+hash
[(define (equal-proc a b equal?)
(and (equal? (rulematch-rule a) (rulematch-rule b))
(equal? (rulematch-elts a) (rulematch-elts b))))
(define (hash-proc a hash)
(hash (list (rulematch-rule a) (rulematch-elts a))))
(define (hash2-proc a hash)
(hash (list (rulematch-rule a) (rulematch-elts a) 'secondary)))])
(define (rulematch-props rm)
(filter list? (cdr (rulematch-rule rm))))
(define (rulematch-important? rm prop)
(set-member? (dict-ref (rulematch-props rm) prop '()) ':important))
(define (split-rule rule)
(match-define (list (? selector? selector) (? attribute? attrs) ...
(list (? property? properties) values (? attribute? propattrs) ...) ...) rule)
(define-values (important unimportant)
(partition (λ (x) (set-member? (cddr x) ':important))
(map list* properties values propattrs)))
(list
(if (null? important) #f `(,selector ,@attrs ,@important))
(if (null? unimportant) #f `(,selector ,@attrs ,@unimportant))))
(define (split-rm rm)
(for/list ([r* (split-rule (rulematch-rule rm))])
(and r* (struct-copy rulematch rm [rule r*]))))
(define/contract (rule-matchlist rules elts)
(-> (listof partial-rule?) (listof node?) (listof rulematch?))
(define scores (rule-scores rules))
(define matches (for/list ([rule rules]) (for/set ([elt (in-list elts)] #:when (selector-matches? (car rule) elt)) elt)))
(define presort
(map cdr
(reverse ; Reverse so that HIGHEST score comes first
(sort
(for/list ([s scores] [r rules] [m matches] [i (in-naturals)])
(cons s (rulematch r m i)))
score<? #:key car))))
(define split (map split-rm presort))
(filter identity (append (map first split) (map second split))))
(define/contract (matchlist-find matchlist elt prop)
(-> (listof rulematch?) node? property? (or/c rulematch? #f))
(define valid-rms
(filter
(λ (rm)
(and (set-member? (rulematch-elts rm) elt)
(dict-has-key? (rulematch-props rm) prop)))
matchlist))
(for/first ([rm valid-rms])
rm))
(define equivalence-classes?
(hash/c property? (cons/c (hash/c node? (or/c integer? #f)) (hash/c (or/c integer? #f) any/c))))
(define/contract (matchlist-equivalence-classes ml elts)
(-> (listof rulematch?) (listof node?) equivalence-classes?)
(for/hash ([(prop type* default) (in-css-properties)])
(define class-hash (make-hash))
(define value-hash (make-hash))
(for* ([elt elts])
(define rm (matchlist-find ml elt prop))
(define idx (and rm (rulematch-idx rm)))
(define value
(match idx
[(? number?)
(car (dict-ref (rulematch-props rm) prop))]
[#f
(if (and (css-inheritable? prop) (node-parent elt)) 'inherit default)]))
(dict-set! value-hash idx value)
(dict-set! class-hash elt idx))
(values prop (cons class-hash value-hash))))
(define/contract (equivalence-classes rules elts)
(-> (listof rule?) (listof node?) equivalence-classes?)
(define ml (rule-matchlist rules elts))
(matchlist-equivalence-classes ml elts))
| false |
340c34caa597423a0c6c1ec30a4ffa8bccf6ad9f | 89b7353f1ab0aae0fe37b2f199ab4d6572defa62 | /scribblings/numerics/functions/elliptic.scrbl | 9d6b94c85ef2827c0d1af0249ddb2fc9c975b956 | [
"MIT"
]
| permissive | elplatt/mechanics | dcc16754ea1b74675e0e9f7e042cf556edfbfc27 | f65242d4ad0872de7c321a1c9a8e04d9b17b9259 | refs/heads/master | 2022-06-26T06:47:56.588459 | 2020-05-01T20:29:25 | 2020-05-01T20:30:15 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 4,871 | scrbl | elliptic.scrbl | #lang scribble/manual
@(require
(for-label
racket
mechanics/private/numerics/functions/elliptic))
@title{elliptic}
@defmodule[mechanics/private/numerics/functions/elliptic]
@section{Carlon Symmetric Forms}
Defines the canonical set of elliptic integrals: the
@link["http://en.wikipedia.org/wiki/Carlson_symmetric_form"]{Carlson
symmetric forms}. Many aliases are provided for backward compatibility
with @racket[scmutils].
@defproc[
(Rf [x (not/c (and/c real? negative?))]
[y (not/c (and/c real? negative?))]
[z (not/c (and/c real? negative?))])
number?
]
Defines the first Carlson symmetric form, @italic{R@subscript{F}}. The
restriction on the inputs is to avoid numerical instability branch cut
on the negative real axis.
@defproc[
(Carlson-elliptic₁ [x (not/c (and/c real? negative?))]
[y (not/c (and/c real? negative?))]
[z (not/c (and/c real? negative?))])
number?
]
Alias for @racket[Rf].
@defproc[
(Carlson-elliptic-1 [x (not/c (and/c real? negative?))]
[y (not/c (and/c real? negative?))]
[z (not/c (and/c real? negative?))])
number?
]
Alias for @racket[Rf].
@defproc[
(Carlson-elliptic₁-simple [x (not/c (and/c real? negative?))]
[y (not/c (and/c real? negative?))]
[z (not/c (and/c real? negative?))])
number?
]
Same as @racket[Rf], but with less numerical precision.
@defproc[
(Carlson-elliptic-1-simple [x (not/c (and/c real? negative?))]
[y (not/c (and/c real? negative?))]
[z (not/c (and/c real? negative?))])
number?
]
Alias for @racket[Carlson-elliptic₁-simple].
@defproc[
(Rd [x (not/c (and/c real? negative?))]
[y (not/c (and/c real? negative?))]
[z (not/c (and/c real? negative?))])
number?
]
Defines the second Carlson symmetric form @italic{R@subscript{D}}.
@defproc[
(Carlson-elliptic₂ [x (not/c (and/c real? negative?))]
[y (not/c (and/c real? negative?))]
[z (not/c (and/c real? negative?))])
number?
]
Alias for @racket[Rd].
@defproc[
(Carlson-elliptic-2 [x (not/c (and/c real? negative?))]
[y (not/c (and/c real? negative?))]
[z (not/c (and/c real? negative?))])
number?
]
Alias for @racket[Rd].
@section{Incomplete Elliptic Integrals}
@defproc[
(elliptic-integral-F
[φ real?]
[k (and/c real? positive? (</c 1))])
number?
]
Defines the first
@link["http://en.wikipedia.org/wiki/Carlson_symmetric_form#Incomplete_elliptic_integrals"]{incomplete
elliptic integral} via the Carlson symmetric form. Only defined for
@italic{φ ∈ (0, 2π)} and @italic{k²sin² ≤ 1}.
@defproc[
(elliptic-integral-E
[φ real?]
[k (and/c real? positive? (</c 1))])
number?
]
The second incomplete elliptic integral.Only defined for @italic{φ ∈
(0, 2π)} and @italic{k²sin² ≤ 1}.
@section{Complete Elliptic Integrals}
These are just the incomplete elliptic integrals with @italic{φ =
1/2}.
@defproc[
(complete-elliptic-integral-K
[k (and/c real? positive? (</c 1))])
number?
]
Computes the first complete elliptic integral.
@defproc[
(complete-elliptic-integral-E
[k (and/c real? positive? (</c 1))])
number?
]
Computes the second complete elliptic integral.
@defproc[
(elliptic-integrals
[k (and/c real? positive? (</c 1))]
[cc (-> flonum? flonum? any)])
any
]
An older definition of the complete elliptic integrals. @racket[_k] is
the elliptic modulus and @racket[_cc] is a continuation that takes the
values of the first and second complete elliptic integrals. The result
is the result of calling @racket[_cc].
@defproc[
(first-elliptic-integral
[k (and/c real? positive? (</c 1))])
number?
]
An alias for @racket[complete-elliptic-integral-K] computed using
@racket[elliptic-integrals].
@defproc[
(second-elliptic-integral
[k (and/c real? positive? (</c 1))])
number?
]
An alias for @racket[complete-elliptic-integral-E] computed using
@racket[elliptic-integrals].
@defproc[
(first-elliptic-integral&derivative
[k (and/c real? (</c 1))]
[cont (-> number? number? any)])
[result (k)
(if (= k 0)
(cons/c flonum? flonum?)
any/c)]
]
Computes the first elliptic integral and it's derivative at the
elliptic modulus @racket[_k]. @racket[_cont], the continuation
parameter, is oly applied if @racket[_k] is non-zero.
@section{Jacobi Elliptic Functions}
Defines the
@link["http://en.wikipedia.org/wiki/Jacobi_elliptic_functions"](Jacobi
elliptic functions).
@defproc[
(Jacobi-elliptic-functions
[u number?]
[k (and/c real? positive? (</c 1))]
[cont (-> number? number? number? any)])
any
]
Computes the three Jacobi elliptic functions, @italic{sn},
@italic{cn}, @italic{dn} evaluated at @racket[_u] with elliptic
modulus @racket[_k]. These values are passed to the continuation
@racket[_cont].
| false |
ea798344716be0df0c17af659fab4706695f9dd7 | 1be6d6a351510c03150a763f3f4a02e9f8f25ee6 | /chapter_1/1.2x.rkt | 19a47810e63ba78d830b8688cd9592c7e421e7bf | []
| no_license | Alexander-Blair/sicp | c6fde5db4274465f37e50202e9dea07a4ce0587d | b6e035d023e233bf83f40b78ed9af4c08b873642 | refs/heads/main | 2023-07-09T21:53:37.987513 | 2021-08-10T09:31:01 | 2021-08-10T09:31:01 | 394,595,506 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 5,561 | rkt | 1.2x.rkt | ; 1.20
; 4 times for applicative order
; It'd keep expanding forever for normal order (i.e. would never actually execute)
; 1.21
; (smallest-divisor 199) => 199
; (smallest-divisor 1999) => 1999
; (smallest-divisor 19999) => 7
; 1.22
(define (search-for-primes starting-n)
(define (search-iter n primes-remaining)
(cond ((= primes-remaining 0) (display "done"))
(else (timed-prime-test n)
(if (prime? n)
(search-iter (+ n 2) (- primes-remaining 1))
(search-iter (+ n 2) primes-remaining)))))
(if (even? starting-n)
(search-iter (+ starting-n 1) 3)
(search-iter starting-n 3)))
; Runtime on prime search:
; 1,000 - 3
; 10,000 - 7 / 8
; 100,000 - 23
; 1,000,000 - 71 / 78 / 79
; Roughly increases at a rate of root 10
; 1.23
(define (smallest-divisor n)
(find-divisor n 2))
(define (find-divisor n test-divisor)
(define (next test-divisor)
(if (= test-divisor 2) 3 (+ test-divisor 2)))
(cond ((> (square test-divisor) n)
n)
((divides? test-divisor n)
test-divisor)
(else (find-divisor
n
(next test-divisor)))))
(define (divides? a b)
(= (remainder b a) 0))
; Runtime on prime search using new smallest-divisor:
; 1,000 - ~2/3
; 10,000 - ~6
; 100,000 - ~15
; 1,000,000 - ~45
;
; Doesn't run twice as fast. There's an additional equality check in the new function
; 1.24
; log2 of 1,000 is ~10
; log2 of 1,000,000 is ~20
;
; Should see roughly double the time. This roughly plays out.
; The time taken per test is affected by the number of Fermat tests we perform,
; but that wouldn't affect the order of growth
;
; Note it won't be affected by choice of random number (the number of steps is dependent on the
; number we're testing, not the random number).
; 1.25
;
; It's a very bad idea to use the fast-expt function, as we're using the n value as the exponent.
; When we're checking primes > 1,000,000, we'll be trying to do a^1,000,000, which will not be kind
; on memory.
;
; With the alternative expmod implementation, since we're checking the remainder at each stage, that
; is guaranteed to be a number smaller than n (the number of the prime test), and the maximum possible
; value would be that number squared.
(expmod 2 26 26)
1.
(remainder
(square (expmod 2 13 26))
26)
2.
(remainder
(square (remainder
(* 2 (expmod 2 12 26))
26))
26)
3.
(remainder
(square (remainder
(* 2 (remainder
(square (expmod 2 6 26))
26))
26))
26)
4.
(remainder
(square (remainder
(* 2 (remainder
(square (remainder
(square (expmod 2 3 26))
26))
26))
26))
26)
5.
(remainder
(square (remainder
(* 2 (remainder
(square (remainder
(square (remainder
(* 2 (expmod 2 2 26))
26))
26))
26))
26))
26)
6.
(remainder
(square (remainder
(* 2 (remainder
(square (remainder
(square (remainder
(* 2
(remainder
(square (remainder
(* 2 (expmod 2 0 26))
26))
26))
26))
26))
26))
26))
26)
; 1.26
;
; Say if you took an exponent which was a power of 2, each time you halved the exponent, the
; number of calls to expmod would increase exponentially (cancelling out the reduction in
; the number of steps from being able to half the exponent).
; Without squaring:
(expmod 10 16 16)
(remainder
(* (expmod 10 8 16)
(expmod 10 8 16))
16)
(remainder
(* (remainder (* (expmod 10 4 16)
(expmod 10 4 16))
16)
(remainder (* (expmod 10 4 16)
(expmod 10 4 16))
16))
16)
; With squaring:
(expmod 10 16 16)
(remainder
(square (expmod 10 8 16))
16)
(remainder
(square (remainder
(square (expmod 10 4 16))
16))
16)
; 1.27
; Carmichael numbers: 561, 1105, 1729, 2465, 2821, and 6601
; 561 - divides by three
(define (exhaustive-fermat-test n)
(define (test-iter test-n)
(cond ((= (+ test-n 1) n) #t)
(else
(if (= (expmod test-n n n) test-n)
(test-iter (+ test-n 1))
#f))))
(test-iter 1))
; 1.28
;
; a^(n - 1) % n congruent to 1 % n
;
; Take n to be 17
; a to be < 17 -> 12
;
; (12^16) % 17 congruent to 1 % 17 (it is)
(define (miller-rabin-test n)
(define (try-it a)
(= (expmod a (- n 1) n)
1))
(try-it (+ 1 (random (- n 1)))))
(define (expmod base exp m)
(cond ((= exp 0) 1)
((even? exp)
(let* ((root (expmod base (/ exp 2) m))
(rem (remainder (square root) m)))
(if (and (= rem 1)
(not (= root 1))
(not (= root (- m 1))))
0
rem)))
(else
(remainder
(* base (expmod base (- exp 1) m))
m))))
| false |
4249b301daa2f2cb485efcdaecb16ba3cf665529 | 627680558b42ab91471b477467187c3f24b99082 | /chapters/util.rkt | 24a54e34540ac9018952219bd706e26dabc292d1 | []
| 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 | 2,509 | rkt | util.rkt | #lang racket/base
(require scribble/core
scribble/manual
racket/list
racket/port
rackunit
scribble/decode
(for-syntax racket/base))
(provide raw-latex a-quote
tx
tx-wide
racketblock/define
add-commas
theorem
lemma
proof
definition
qed
assert)
(define-syntax (assert stx)
(syntax-case stx ()
[(_ e)
#`(assert/proc '#,(syntax-source stx) #,(syntax-line stx) (λ () e) 'e)]))
(define (assert/proc source line thunk exp)
(unless (thunk)
(error 'assert "assertion ~a:~a failed:\n ~s" source line exp)))
(define (tx arg)
(raw-latex (string-append "$" arg "$")))
(define (tx-wide arg)
(raw-latex (string-append "$$" arg "$$")))
(define (raw-latex . args)
(element (style "relax" '(exact-chars))
args))
(define (a-quote . args)
(nested-flow (style 'inset '()) (list (paragraph (style #f '()) args))))
(define-syntax-rule
(racketblock/define exp)
(begin (racketblock exp)
exp))
(define (add-commas n)
(define s (format "~a" n))
(define comma-every 3)
(define cs
(let loop ([chars (reverse (string->list s))])
(cond
[(<= (length chars) comma-every) chars]
[else
(append (take chars comma-every)
'(#\,)
(loop (drop chars comma-every)))])))
(apply string (reverse cs)))
(check-equal? (add-commas 1) "1")
(check-equal? (add-commas 12) "12")
(check-equal? (add-commas 123) "123")
(check-equal? (add-commas 1234) "1,234")
(check-equal? (add-commas 12345) "12,345")
(check-equal? (add-commas 123456789) "123,456,789")
(check-equal? (add-commas 1234567890) "1,234,567,890")
(define-syntax (define-environment stx)
(syntax-case stx ()
[(_ id)
(identifier? #'id)
#'(define-environment id #f)]
[(_ id neg-space?)
#`(define (id . args) (environment/proc 'id args neg-space?))]))
(define (environment/proc id args neg-space?)
(compound-paragraph (style (symbol->string id) '())
(list (decode-compound-paragraph
(if neg-space?
(cons (element (style "vspace" '(exact-chars)) "-.15in")
args)
args)))))
(define-environment theorem)
(define-environment lemma)
(define-environment proof #t)
(define-environment definition)
(define qed (element (style "qed" '()) '()))
| true |
f1046dc9bbaffc68c63fee31051e5eb5e1d43b1e | d2fc383d46303bc47223f4e4d59ed925e9b446ce | /courses/2015/spring/250/notes/9.rkt | c2b027ebec6f68947529be5bc77a10dd7d97f692 | []
| no_license | jeapostrophe/jeapostrophe.github.com | ce0507abc0bf3de1c513955f234e8f39b60e4d05 | 48ae350248f33f6ce27be3ce24473e2bd225f6b5 | refs/heads/master | 2022-09-29T07:38:27.529951 | 2022-09-22T10:12:04 | 2022-09-22T10:12:04 | 3,734,650 | 14 | 5 | null | 2022-03-25T14:33:29 | 2012-03-16T01:13:09 | HTML | UTF-8 | Racket | false | false | 2,596 | rkt | 9.rkt | #lang racket/base
(require plot
plot/utils
math/bigfloat
racket/format
racket/list)
(module+ main
(plot-new-window? #t)
(define (plot-integral f actual-int a b N)
(define actual
(if actual-int
(bf- (actual-int b) (actual-int a))
#f))
(define h (bf/ (bf- b a) (bf N)))
(define samples
(for/list ([i (in-range (add1 N))])
(define x (bf+ a (bf* (bf i) h)))
(list x (f x))))
(define (all-but-last l)
(reverse (rest (reverse l))))
(define numeric
(bf* h (bf+ (bf* (bf/ 1.bf 2.bf) (bf+ (second (first samples)) (second (last samples))))
(foldr bf+ 0.bf (map second (all-but-last (rest samples)))))))
(define ((normal-lerp start end) x)
(bf+ (bf* (bf- 1.bf x) start)
(bf* x end)))
(define ((lerp start end) x)
((normal-lerp (second start) (second end))
(bf/ (bf- (bf x) (first start))
(bf- (first end)
(first start)))))
(define an-error
(if actual
(bfabs (bf- actual numeric))
#f))
(define (bf-> x)
(bigfloat->real x))
(printf "f is ~a\n" f)
(printf "numeric integral = ~a\n"
(bigfloat->string numeric))
(when actual
(printf "actual integral = ~a\n"
(bigfloat->string actual))
(printf "error = ~a\n"
(bigfloat->string an-error)))
(printf "\n")
(plot (list*
(function (compose bf-> f))
(points (map (λ (l) (map bf-> l)) samples))
(for/list ([left (in-list samples)]
[right (in-list (rest samples))]
[which (in-naturals)])
(function-interval (λ (x) 0) (compose bf-> (lerp left right))
(bf-> (first left))
(bf-> (first right))
#:color (if (even? which) 1 2)
#:line1-style 'transparent)))
#:x-min (bf-> a)
#:x-max (bf-> b)))
(bf-precision (round (* 1/2 53)))
(plot-integral (λ (x) (bf* (bf 2) x))
(λ (x) (bfexpt x (bf 2)))
(bf 0) pi.bf
10)
(plot-integral (λ (x) (bfsin x))
(λ (x) (bf* -1.bf (bfcos x)))
(bf/ pi.bf (bf 3)) (bf/ (bf* (bf 3) pi.bf) (bf 4))
10)
(plot-integral (λ (x) (bf* (bflog x) (bfsin (bfexp (bf* -1.bf x)))))
#f
(bfexpt (bf 10) (bf -4)) (bf 4)
10))
| false |
08c65b7a95f43b6a48c6a7bd64b62b17886bb3f1 | 063934d4e0bf344a26d5679a22c1c9e5daa5b237 | /racket/scribblings/oldapi.scrbl | fded92145f2013bc165980e934f7d478fd355fc2 | []
| no_license | tnelson/Margrave | 329b480da58f903722c8f7c439f5f8c60b853f5d | d25e8ac432243d9ecacdbd55f996d283da3655c9 | refs/heads/master | 2020-05-17T18:43:56.187171 | 2014-07-10T03:24:06 | 2014-07-10T03:24:06 | 749,146 | 5 | 2 | null | null | null | null | UTF-8 | Racket | false | false | 1,438 | scrbl | oldapi.scrbl | #lang scribble/manual
@; (Still getting warning message... why?)
@(require (for-label "../margrave.rkt"))
@title{Reference: Racket API}
<< Racket interfaces with Java; here are the functions... >>
@section{Starting and Stopping the Java Engine}
@defproc[(start-margrave-engine
(margrave-home path? (current-directory))
(engine-args (listof string?) empty)
(margrave-args (listof string?) empty))
boolean?]{
If the Java engine is already started, returns #f.
Otherwise, starts the Java engine for a Margrave installation at
@italic{margrave-home}. The JVM is given each string in @italic{engine-args} as
arguments, and the Margrave engine is given each string in
@italic{margrave-args} as arguments. Returns #t.
}
@defproc[(stop-margrave-engine) boolean?]{
If the Java engine is started, terminates it and returns #t.
Otherwise, returns #f.
}
@section{Loading Policies}
@defproc[(load-policy
(filename string?))
string?]{
Loads the policy at the given filename, returning the name of the policy (as given in the policy file).
}
<<< IOS auto-load functions >>>
@section{Running Queries}
<<< mtext >>>
@section{Handling Query Results}
<<< display-response, conversion functions, ... >>>
@section{Other Functions}
<<< make-applies-list, make-matches-list >>>
| false |
3679872e9a5a91afcf9a68a9e4b4c483b57ec12e | 2ed21adcc393425c0793e4042ffec07dcca02e82 | /window/context.rkt | 5866221cc242d73f1af6993e618bcd1e1337ba45 | []
| no_license | shargoj/racket-sfml | 5ffa7b57c7d6742303cc7ebf5adbe4338d6b29c5 | 904949fb245a3657100b4fceed6215fe7bd85e55 | refs/heads/master | 2021-01-15T23:40:02.370391 | 2013-05-12T22:04:12 | 2013-05-12T22:04:12 | 9,787,382 | 5 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 294 | rkt | context.rkt | #lang racket
(provide (all-defined-out))
(require
ffi/unsafe
"../sfml-util.rkt"
"defwin.rkt"
"types.rkt")
(define-all-types defwin sfContext
([create (_fun -> _sfContext-pointer)]
[destroy (_fun _sfContext-pointer -> _void)]
[setActive (_fun _sfContext-pointer _bool -> _void)]))
| false |
f1a74257cba7bad52763bfa06e77502db00babb8 | 616e16afef240bf95ed7c8670035542d59cdba50 | /redex-test/redex/tests/sewpr/underspec/oo-ex.rkt | 73c6c992bfd289b920b0688f1b2a85c39f555bc6 | [
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | racket/redex | bd535d6075168ef7be834e7c1b9babe606d5cd34 | 8df08b313cff72d56d3c67366065c19ec0c3f7d0 | refs/heads/master | 2023-08-19T03:34:44.392140 | 2023-07-13T01:50:18 | 2023-07-13T01:50:18 | 27,412,456 | 102 | 43 | NOASSERTION | 2023-04-07T19:07:30 | 2014-12-02T03:06:03 | Racket | UTF-8 | Racket | false | false | 804 | rkt | oo-ex.rkt | #lang racket/base
(require redex/reduction-semantics "oo.rkt")
;; ENDDEFS
;; EXAMPLE sch1
(redex-match sch
(o M_1 ... M_2 M_3 ...)
(term (+ (* 1 2) (↑ 3 4))))
;; STOP sch1
;; EXAMPLE sch2
(redex-match sch
(o M_1 ... M_2 M_3 ...)
(term (+ (set (+ (get) 1))
(set (- (get) 1)))))
;; STOP sch2
#;
(begin
(require redex)
(initial-font-size 10)
#;
(parameterize ((initial-char-width 20) [reduction-steps-cutoff 100]) (traces all-red main-example))
#;
(parameterize ([reduction-steps-cutoff 10]) (traces sch1-red main-example))
(parameterize ([reduction-steps-cutoff 20]) (traces sch2-red main-example))
#;
(parameterize ((initial-char-width 20) [reduction-steps-cutoff 100]) (traces sch3-red main-example)))
| false |
af5452566bab3c1dfb383827d6ab281e6efc65bb | 0f6e59eeda27cfb61e0623e5e795c514da53f95f | /macro-debugger/macro-debugger/tests/test-docs-complete.rkt | b328a0634c9cecf5b7e60473b7f3c114ae171d4e | [
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | racket/macro-debugger | 1679a781fe0d601bb0e9c97d224f0d06ee777b24 | 047c36a4d6a0b15a31d0fa7509999b9bf2c5f295 | refs/heads/master | 2023-08-24T04:09:14.428768 | 2023-01-18T02:27:26 | 2023-01-18T02:27:26 | 27,413,285 | 10 | 14 | NOASSERTION | 2021-05-04T22:30:05 | 2014-12-02T03:30:26 | Racket | UTF-8 | Racket | false | false | 279 | rkt | test-docs-complete.rkt | #lang racket/base
(require rackunit/docs-complete)
(check-docs (quote macro-debugger/syntax-browser))
(check-docs (quote macro-debugger/stepper))
(check-docs (quote macro-debugger/stepper-text))
(check-docs (quote macro-debugger/expand))
(check-docs (quote macro-debugger/emit))
| false |
6133ba03f98c73b77bfc7ed2e9222e80d6436fdc | 0257eaae7e78fcdeaf286f589efe7c5eb083ca68 | /day1.rkt | 1c1500264cfab9d2c274f67e8dcaa252a0f9f38b | []
| no_license | thoughtstem/ts-curric-wetware | 2cb1a1d37ff8b16e71e2e247d3193b9885241416 | 3ee78b603cc63cf590b742eda0ec3917d2324e8a | refs/heads/master | 2020-03-30T21:46:06.223092 | 2018-10-19T18:41:26 | 2018-10-19T18:41:26 | 151,641,333 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 36,025 | rkt | day1.rkt | #reader(lib"read.ss""wxme")WXME0108 ##
#|
This file uses the GRacket editor format.
Open this file in DrRacket version 7.0 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/
|#
33 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 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 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 29 #"drscheme:bindings-snipclass%\0"
1 0 101
(
#"((lib \"ellipsis-snip.rkt\" \"drracket\" \"private\") (lib \"ellipsi"
#"s-snip-wxme.rkt\" \"drracket\" \"private\"))\0"
) 2 0 88
(
#"((lib \"pict-snip.rkt\" \"drracket\" \"private\") (lib \"pict-snip.r"
#"kt\" \"drracket\" \"private\"))\0"
) 0 0 55
#"((lib \"snip.rkt\" \"pict\") (lib \"snip-wxme.rkt\" \"pict\"))\0"
1 0 34 #"(lib \"bullet-snip.rkt\" \"browser\")\0"
0 0 25 #"(lib \"matrix.ss\" \"htdp\")\0"
1 0 22 #"drscheme:lambda-snip%\0"
1 0 29 #"drclickable-string-snipclass\0"
0 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 68 0 1 #"\0"
0 75 1 #"\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 0 9
#"Standard\0"
0 75 6 #"Menlo\0"
0 18 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 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 150 0 150 0 0 0 -1 -1 2 15
#"text:ports out\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 150 0 150 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 -1 -1 93 -1 -1 -1 0 1 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 0 0 175 0 0 0 -1 -1 2 17
#"text:ports value\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 175 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 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 38 38 128 0 0 0 -1 -1 2 37
#"framework:syntax-color:scheme:symbol\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 38 38 128 0 0 0 -1 -1 2 38
#"framework:syntax-color:scheme:keyword\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 38 38 128 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 194 116 31 0 0 0 -1 -1 2
38 #"framework:syntax-color:scheme:comment\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 194 116 31 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 41 128 38 0 0 0 -1 -1 2 37
#"framework:syntax-color:scheme:string\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 41 128 38 0 0 0 -1 -1 2 35
#"framework:syntax-color:scheme:text\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 41 128 38 0 0 0 -1 -1 2 39
#"framework:syntax-color:scheme:constant\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 41 128 38 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 132 60 36 0 0 0 -1 -1 2 49
#"framework:syntax-color:scheme:hash-colon-keyword\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 132 60 36 0 0 0 -1 -1 2 42
#"framework:syntax-color:scheme:parenthesis\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 132 60 36 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 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 93 -1 -1 0 1 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 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 -1 -1 2 36
#"framework:syntax-color:scheme:other\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 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 0 0 0 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 81 112 203 0 0 0 -1 -1 2
38 #"drracket:check-syntax:lexically-bound\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 81 112 203 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 178 34 34 0 0 0 -1 -1 2 28
#"drracket:check-syntax:set!d\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 178 34 34 0 0 0 -1 -1 2 37
#"drracket:check-syntax:unused-require\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 255 0 0 0 0 0 -1 -1 2 36
#"drracket:check-syntax:free-variable\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 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 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 68 0 203 0 0 0 -1 -1 2 31
#"drracket:check-syntax:imported\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 68 0 203 0 0 0 -1 -1 2 47
#"drracket:check-syntax:my-obligation-style-pref\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 178 34 34 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 0 116 0 0 0 0 -1 -1 2 50
#"drracket:check-syntax:their-obligation-style-pref\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 0 116 0 0 0 0 -1 -1 2 48
#"drracket:check-syntax:unk-obligation-style-pref\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 139 142 28 0 0 0 -1 -1 2
49 #"drracket:check-syntax:both-obligation-style-pref\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 139 142 28 0 0 0 -1 -1 2
26 #"plt:htdp:test-coverage-on\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 -1 -1 2 1
#"\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 1 0 0 0 0 0 0 255 165 0 0 0 0 -1 -1 2 27
#"plt:htdp:test-coverage-off\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 1 0 0 0 0 0 0 255 165 0 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 37 #"plt:module-language:test-coverage-on\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 -1 -1 2 38
#"plt:module-language:test-coverage-off\0"
0 -1 1 #"\0"
1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 1 0 0 0 0 0 0 255 165 0 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 1 #"\0"
0.0 10 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 0 1 #"\0"
0 75 12 #"Courier New\0"
0.0 11 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 0 0 0 0 0 0
-1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 150 0 150 0
0 0 -1 -1 2 1 #"\0"
0 -1 1 #"\0"
1.0 0 -1 -1 93 -1 -1 -1 0 1 0 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 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 0 0 175 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.0 0.0 0 0 0 255
255 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 200 0 0 0 0
0 -1 -1 0 1 #"\0"
0 -1 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
0 -1 2 1 #"\0"
0 75 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 0 92 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1.0 1.0 1.0 36 36 140 0 0 0 -1
-1 2 1 #"\0"
0 75 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 36 36 140 0 0 0 -1
-1 0 1 #"\0"
0 75 6 #"Menlo\0"
0.0 18 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 0 1301 0 28 3 15 #"#lang slideshow"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 14 3 7 #"provide"
0 0 24 3 1 #" "
0 0 14 3 8 #"lecture1"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 7 #"require"
0 0 24 3 1 #" "
0 0 14 3 9 #"pict/code"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 7 #"require"
0 0 24 3 1 #" "
0 0 14 3 16 #"ts-curric-common"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 7 #"require"
0 0 24 3 1 #" "
0 0 14 3 19 #"racket/runtime-path"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 19 #"define-runtime-path"
0 0 24 3 1 #" "
0 0 14 3 6 #"images"
0 0 24 3 1 #" "
0 0 19 3 8 #"\"images\""
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 7 #"require"
0 0 24 3 1 #" "
0 0 19 3 11 #"\"icons.rkt\""
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 12 #"my-day-alg-1"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 14 3 5 #"scale"
0 0 24 29 1 #"\n"
0 0 24 3 4 #" ("
0 0 14 3 4 #"code"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 9 #"every-day"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" ("
0 0 14 3 7 #"wake-up"
0 0 24 3 2 #" "
0 0 14 3 6 #"8:00am"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" ("
0 0 14 3 4 #"work"
0 0 24 3 5 #" "
0 0 14 3 6 #"9:00am"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" ("
0 0 14 3 7 #"workout"
0 0 24 3 2 #" "
0 0 14 3 6 #"5:00pm"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" ("
0 0 14 3 5 #"sleep"
0 0 24 3 4 #" "
0 0 14 3 7 #"10:00pm"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" "
0 0 21 3 1 #"2"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 2 #" ("
0 0 14 3 12 #"local-bitmap"
0 0 24 3 1 #" "
0 0 14 3 1 #"s"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 14 3 6 #"bitmap"
0 0 24 3 2 #" ("
0 0 14 3 2 #"~a"
0 0 24 3 2 #" ("
0 0 14 3 12 #"path->string"
0 0 24 3 1 #" "
0 0 14 3 6 #"images"
0 0 24 3 2 #") "
0 0 19 3 3 #"\"/\""
0 0 24 3 1 #" "
0 0 14 3 1 #"s"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 14 3 11 #"set-margin!"
0 0 24 3 1 #" "
0 0 21 3 2 #"50"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 12 #"my-day-alg-2"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 14 3 4 #"para"
0 0 24 29 1 #"\n"
0 0 24 3 4 #" "
0 0 19 3 1 #"\""
0 0 19 3 5 #"Every"
0 0 19 3 1 #" "
0 0 19 3 3 #"day"
0 0 19 3 1 #" "
0 0 19 3 1 #"I"
0 0 19 3 1 #" "
0 0 19 3 4 #"wake"
0 0 19 3 1 #" "
0 0 19 3 2 #"up"
0 0 19 3 1 #" "
0 0 19 3 2 #"at"
0 0 19 3 1 #" "
0 0 19 3 7 #"8:00am."
0 0 19 3 2 #" "
0 0 19 3 1 #"I"
0 0 19 3 1 #" "
0 0 19 3 2 #"go"
0 0 19 3 1 #" "
0 0 19 3 2 #"to"
0 0 19 3 1 #" "
0 0 19 3 4 #"work"
0 0 19 3 1 #" "
0 0 19 3 2 #"at"
0 0 19 3 1 #" "
0 0 19 3 7 #"9:00pm."
0 0 19 3 2 #" "
0 0 19 3 1 #"I"
0 0 19 3 1 #" "
0 0 19 3 4 #"work"
0 0 19 3 1 #" "
0 0 19 3 3 #"out"
0 0 19 3 1 #" "
0 0 19 3 2 #"at"
0 0 19 3 1 #" "
0 0 19 3 7 #"5:00pm."
0 0 19 3 2 #" "
0 0 19 3 3 #"And"
0 0 19 3 1 #" "
0 0 19 3 1 #"I"
0 0 19 3 1 #" "
0 0 19 3 2 #"go"
0 0 19 3 1 #" "
0 0 19 3 2 #"to"
0 0 19 3 1 #" "
0 0 19 3 5 #"sleep"
0 0 19 3 1 #" "
0 0 19 3 2 #"at"
0 0 19 3 9 #" 10:00pm\""
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 18 #"history-math-alg-1"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 14 3 5 #"scale"
0 0 24 29 1 #"\n"
0 0 24 3 4 #" ("
0 0 14 3 4 #"code"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 8 #"subtract"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" ("
0 0 14 3 12 #"current-year"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" ("
0 0 14 3 13 #"death-year-of"
0 0 24 3 1 #" "
0 0 14 3 14 #"al-Khw\304\201rizm\304\253"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" "
0 0 21 3 1 #"2"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 15 #"digestion-alg-1"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 14 3 5 #"scale"
0 0 24 29 1 #"\n"
0 0 24 3 4 #" ("
0 0 14 3 4 #"code"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 4 #"chew"
0 0 24 3 10 #" "
0 0 14 3 4 #"food"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 7 #"swallow"
0 0 24 3 7 #" "
0 0 14 3 4 #"food"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 13 #"intestinalize"
0 0 24 3 1 #" "
0 0 14 3 4 #"food"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 4 #"poop"
0 0 24 3 10 #" "
0 0 14 3 4 #"food"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" "
0 0 21 3 1 #"2"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 15 #"digestion-alg-2"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 14 3 5 #"scale"
0 0 24 29 1 #"\n"
0 0 24 3 4 #" ("
0 0 14 3 4 #"code"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 4 #"poop"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" ("
0 0 14 3 13 #"intestinalize"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 14 3 7 #"swallow"
0 0 24 29 1 #"\n"
0 0 24 3 8 #" ("
0 0 14 3 4 #"chew"
0 0 24 3 1 #" "
0 0 14 3 4 #"food"
0 0 24 3 5 #")))))"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" "
0 0 21 3 1 #"2"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 24 #"digestion-alg-2-metaphor"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 14 3 5 #"scale"
0 0 24 29 1 #"\n"
0 0 24 3 4 #" ("
0 0 14 3 4 #"code"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 6 #"square"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" ("
0 0 14 3 5 #"halve"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 14 3 6 #"triple"
0 0 24 29 1 #"\n"
0 0 24 3 8 #" ("
0 0 14 3 6 #"double"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 5 #")))))"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" "
0 0 21 3 1 #"2"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 15 #"digestion-alg-3"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 14 3 5 #"scale"
0 0 24 29 1 #"\n"
0 0 24 3 4 #" ("
0 0 14 3 4 #"code"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 4 #"chew"
0 0 24 29 1 #"\n"
0 0 24 3 6 #" ("
0 0 14 3 7 #"swallow"
0 0 24 29 1 #"\n"
0 0 24 3 7 #" ("
0 0 14 3 13 #"intestinalize"
0 0 24 29 1 #"\n"
0 0 24 3 8 #" ("
0 0 14 3 4 #"poop"
0 0 24 3 1 #" "
0 0 14 3 4 #"food"
0 0 24 3 5 #")))))"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" "
0 0 21 3 1 #"2"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 15 #"digestion-alg-4"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 14 3 5 #"scale"
0 0 24 29 1 #"\n"
0 0 24 3 4 #" ("
0 0 14 3 4 #"code"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 6 #"food-2"
0 0 24 3 2 #" ("
0 0 14 3 4 #"chew"
0 0 24 3 1 #" "
0 0 14 3 4 #"food"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 6 #"food-3"
0 0 24 3 2 #" ("
0 0 14 3 7 #"swallow"
0 0 24 3 1 #" "
0 0 14 3 6 #"food-2"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 6 #"food-4"
0 0 24 3 2 #" ("
0 0 14 3 13 #"intestinalize"
0 0 24 3 1 #" "
0 0 14 3 6 #"food-3"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 4 #"poop"
0 0 24 3 1 #" "
0 0 14 3 6 #"food-4"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" "
0 0 21 3 1 #"2"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 2 #" ("
0 0 14 3 22 #"programmer-brain-slide"
0 0 24 3 1 #" "
0 0 14 3 6 #"output"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 14 3 5 #"slide"
0 0 24 3 1 #" "
0 0 23 3 7 #"#:title"
0 0 24 3 1 #" "
0 0 19 3 1 #"\""
0 0 19 3 10 #"Programmer"
0 0 19 3 9 #"'s Brain\""
0 0 24 29 1 #"\n"
0 0 24 3 10 #" ("
0 0 14 3 2 #"io"
0 0 24 3 1 #" "
0 0 14 3 5 #"world"
0 0 24 29 1 #"\n"
0 0 24 3 13 #" "
0 0 14 3 5 #"brain"
0 0 24 29 1 #"\n"
0 0 24 3 13 #" "
0 0 14 3 6 #"output"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 1 #" "
0 0 14 3 6 #"spacer"
0 0 24 3 2 #" ("
0 0 14 3 8 #"colorize"
0 0 24 3 2 #" ("
0 0 14 3 16 #"filled-rectangle"
0 0 24 3 1 #" "
0 0 21 3 1 #"1"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 3 2 #") "
0 0 19 3 7 #"\"white\""
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 1 #"("
0 0 15 3 6 #"define"
0 0 24 3 2 #" ("
0 0 14 3 8 #"lecture1"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 3 #" ("
0 0 15 3 12 #"parameterize"
0 0 24 3 3 #" [("
0 0 14 3 17 #"current-main-font"
0 0 24 3 1 #" "
0 0 19 3 11 #"\"Helvetica\""
0 0 24 3 2 #")]"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 5 #"slide"
0 0 24 3 2 #" ("
0 0 14 3 1 #"t"
0 0 24 3 1 #" "
0 0 19 3 11 #"\"Wetware++\""
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 5 #"slide"
0 0 24 3 2 #" ("
0 0 14 3 1 #"t"
0 0 24 3 1 #" "
0 0 19 3 23 #"\"Brain (Re)programming\""
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 5 #"slide"
0 0 24 3 1 #" "
0 0 14 3 15 #"big-tshirt-joke"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 5 #"slide"
0 0 24 3 1 #" "
0 0 23 3 7 #"#:title"
0 0 24 3 1 #" "
0 0 19 3 44 #"\"An organism that turns coffee into code...\""
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 14 3 2 #"io"
0 0 24 3 1 #" "
0 0 14 3 6 #"coffee"
0 0 24 29 1 #"\n"
0 0 24 3 15 #" "
0 0 14 3 5 #"brain"
0 0 24 29 1 #"\n"
0 0 24 3 15 #" "
0 0 14 3 19 #"computer-with-alg-2"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 3 #"map"
0 0 24 3 1 #" "
0 0 14 3 22 #"programmer-brain-slide"
0 0 24 29 1 #"\n"
0 0 24 3 10 #" ("
0 0 14 3 4 #"list"
0 0 24 3 1 #" "
0 0 14 3 4 #"tree"
0 0 24 29 1 #"\n"
0 0 24 3 15 #" "
0 0 14 3 10 #"flow-chart"
0 0 24 29 1 #"\n"
0 0 24 3 15 #" "
0 0 14 3 12 #"flow-chart-2"
0 0 24 29 1 #"\n"
0 0 24 3 15 #" "
0 0 14 3 6 #"system"
0 0 24 29 1 #"\n"
0 0 24 3 15 #" "
0 0 14 3 5 #"graph"
0 0 24 29 1 #"\n"
0 0 24 3 15 #" "
0 0 14 3 7 #"diagram"
0 0 24 29 1 #"\n"
0 0 24 3 15 #" "
0 0 14 3 14 #"code-on-screen"
0 0 24 29 1 #"\n"
0 0 24 3 15 #" "
0 0 14 3 17 #"computer-with-alg"
0 0 24 29 1 #"\n"
0 0 24 3 15 #" "
0 0 14 3 19 #"computer-with-alg-2"
0 0 24 29 1 #"\n"
0 0 24 3 15 #" "
0 0 14 3 19 #"computer-with-alg-3"
0 0 24 29 1 #"\n"
0 0 24 3 15 #" "
0 0 14 3 5 #"heart"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 4 #" "
0 0 17 3 23 #";Framing. One thing..."
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 4 #" "
0 0 17 3 8 #";Warm up"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 5 #"slide"
0 0 24 3 1 #" "
0 0 23 3 7 #"#:title"
0 0 24 3 1 #" "
0 0 19 3 1 #"\""
0 0 19 3 9 #"Algorithm"
0 0 19 3 2 #" 1"
0 0 19 3 1 #"\""
0 0 24 3 1 #" "
0 0 14 3 12 #"my-day-alg-1"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 5 #"slide"
0 0 24 3 1 #" "
0 0 23 3 7 #"#:title"
0 0 24 3 1 #" "
0 0 19 3 1 #"\""
0 0 19 3 9 #"Algorithm"
0 0 19 3 2 #" 2"
0 0 19 3 1 #"\""
0 0 24 3 1 #" "
0 0 14 3 12 #"my-day-alg-2"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 5 #"slide"
0 0 24 3 1 #" "
0 0 23 3 7 #"#:title"
0 0 24 3 1 #" "
0 0 19 3 11 #"\"Comparison"
0 0 19 3 1 #"\""
0 0 24 3 1 #" "
0 0 14 3 12 #"my-day-alg-2"
0 0 24 3 1 #" "
0 0 14 3 12 #"my-day-alg-1"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 5 #"slide"
0 0 24 3 1 #" "
0 0 23 3 7 #"#:title"
0 0 24 3 1 #" "
0 0 19 3 1 #"\""
0 0 19 3 4 #"Your"
0 0 19 3 6 #" turn!"
0 0 19 3 1 #"\""
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 4 #" "
0 0 17 3 60
#";Maybe an activity now? Have them write similar algorithms?"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 5 #"slide"
0 0 24 3 1 #" "
0 0 23 3 7 #"#:title"
0 0 24 3 1 #" "
0 0 19 3 1 #"\""
0 0 19 3 8 #"Pipeline"
0 0 19 3 1 #" "
0 0 19 3 9 #"Algorithm"
0 0 19 3 2 #" 1"
0 0 19 3 1 #"\""
0 0 24 3 1 #" "
0 0 14 3 15 #"digestion-alg-1"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 5 #"slide"
0 0 24 3 1 #" "
0 0 23 3 7 #"#:title"
0 0 24 3 1 #" "
0 0 19 3 1 #"\""
0 0 19 3 8 #"Pipeline"
0 0 19 3 1 #" "
0 0 19 3 9 #"Algorithm"
0 0 19 3 2 #" 2"
0 0 19 3 1 #"\""
0 0 24 3 1 #" "
0 0 14 3 15 #"digestion-alg-2"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 5 #"slide"
0 0 24 3 1 #" "
0 0 23 3 7 #"#:title"
0 0 24 3 1 #" "
0 0 19 3 1 #"\""
0 0 19 3 8 #"Pipeline"
0 0 19 3 1 #" "
0 0 19 3 9 #"Algorithm"
0 0 19 3 1 #" "
0 0 19 3 1 #"2"
0 0 19 3 2 #" ("
0 0 19 3 4 #"What"
0 0 19 3 1 #" "
0 0 19 3 7 #"order?)"
0 0 19 3 1 #"\""
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 14 3 9 #"hc-append"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 29 1 #"\n"
0 0 24 3 22 #" "
0 0 14 3 15 #"digestion-alg-2"
0 0 24 29 1 #"\n"
0 0 24 3 22 #" "
0 0 14 3 15 #"digestion-alg-3"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 5 #"slide"
0 0 24 3 1 #" "
0 0 23 3 7 #"#:title"
0 0 24 3 1 #" "
0 0 19 3 1 #"\""
0 0 19 3 8 #"Pipeline"
0 0 19 3 1 #" "
0 0 19 3 9 #"Algorithm"
0 0 19 3 1 #" "
0 0 19 3 1 #"2"
0 0 19 3 2 #" ("
0 0 19 3 4 #"What"
0 0 19 3 1 #" "
0 0 19 3 7 #"order?)"
0 0 19 3 1 #"\""
0 0 24 29 1 #"\n"
0 0 24 3 11 #" "
0 0 14 3 24 #"digestion-alg-2-metaphor"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 5 #"slide"
0 0 24 3 1 #" "
0 0 23 3 7 #"#:title"
0 0 24 3 1 #" "
0 0 19 3 1 #"\""
0 0 19 3 8 #"Pipeline"
0 0 19 3 1 #" "
0 0 19 3 9 #"Algorithm"
0 0 19 3 1 #" "
0 0 19 3 1 #"2"
0 0 19 3 2 #" ("
0 0 19 3 4 #"What"
0 0 19 3 1 #" "
0 0 19 3 7 #"order?)"
0 0 19 3 1 #"\""
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 14 3 9 #"hc-append"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 29 1 #"\n"
0 0 24 3 22 #" "
0 0 14 3 15 #"digestion-alg-2"
0 0 24 29 1 #"\n"
0 0 24 3 22 #" "
0 0 14 3 15 #"digestion-alg-3"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 5 #"slide"
0 0 24 3 1 #" "
0 0 23 3 7 #"#:title"
0 0 24 3 1 #" "
0 0 19 3 1 #"\""
0 0 19 3 8 #"Pipeline"
0 0 19 3 1 #" "
0 0 19 3 9 #"Algorithm"
0 0 19 3 2 #" 4"
0 0 19 3 1 #"\""
0 0 24 3 1 #" "
0 0 14 3 15 #"digestion-alg-4"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 5 #"slide"
0 0 24 3 1 #" "
0 0 23 3 7 #"#:title"
0 0 24 3 1 #" "
0 0 19 3 6 #"\"Best?"
0 0 19 3 1 #"\""
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 14 3 9 #"vc-append"
0 0 24 3 1 #" "
0 0 21 3 2 #"30"
0 0 24 29 1 #"\n"
0 0 24 3 23 #" ("
0 0 14 3 11 #"thick-frame"
0 0 24 3 1 #" "
0 0 14 3 15 #"digestion-alg-1"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 23 #" ("
0 0 14 3 11 #"thick-frame"
0 0 24 3 1 #" "
0 0 14 3 15 #"digestion-alg-2"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 23 #" ("
0 0 14 3 11 #"thick-frame"
0 0 24 3 1 #" "
0 0 14 3 15 #"digestion-alg-4"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 5 #"slide"
0 0 24 3 1 #" "
0 0 23 3 7 #"#:title"
0 0 24 3 1 #" "
0 0 19 3 1 #"\""
0 0 19 3 4 #"Your"
0 0 19 3 1 #" "
0 0 19 3 5 #"turn."
0 0 19 3 2 #" "
0 0 19 3 8 #"Pipeline"
0 0 19 3 11 #" something!"
0 0 19 3 1 #"\""
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 2 #" "
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 5 #"slide"
0 0 24 3 1 #" "
0 0 23 3 7 #"#:title"
0 0 24 3 1 #" "
0 0 19 3 1 #"\""
0 0 19 3 12 #"Kindergarten"
0 0 19 3 7 #" Brains"
0 0 19 3 1 #"\""
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 14 3 2 #"io"
0 0 24 3 2 #" ("
0 0 14 3 5 #"scale"
0 0 24 3 2 #" ("
0 0 14 3 4 #"code"
0 0 24 3 2 #" ("
0 0 21 3 1 #"2"
0 0 24 3 1 #" "
0 0 14 3 1 #"+"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #")) "
0 0 21 3 1 #"3"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 15 #" "
0 0 14 3 5 #"brain"
0 0 24 29 1 #"\n"
0 0 24 3 16 #" ("
0 0 14 3 5 #"scale"
0 0 24 3 2 #" ("
0 0 14 3 4 #"code"
0 0 24 3 1 #" "
0 0 21 3 1 #"4"
0 0 24 3 2 #") "
0 0 21 3 1 #"3"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 5 #"slide"
0 0 24 3 1 #" "
0 0 23 3 7 #"#:title"
0 0 24 3 1 #" "
0 0 19 3 1 #"\""
0 0 19 3 9 #"3rd-Grade"
0 0 19 3 1 #" "
0 0 19 3 7 #"Brains\""
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 14 3 2 #"io"
0 0 24 3 2 #" ("
0 0 14 3 5 #"scale"
0 0 24 3 2 #" ("
0 0 14 3 4 #"code"
0 0 24 3 2 #" ("
0 0 21 3 4 #"3012"
0 0 24 3 1 #" "
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 8 10 21 4 #"1/2\0"
3 #"#e\0"
6 #"mixed\0"
2 #"1\0"
0 0 24 3 3 #")) "
0 0 21 3 1 #"3"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 15 #" "
0 0 14 3 5 #"brain"
0 0 24 29 1 #"\n"
0 0 24 3 16 #" ("
0 0 14 3 5 #"scale"
0 0 24 3 2 #" ("
0 0 14 3 4 #"code"
0 0 24 3 1 #" "
0 0 21 3 4 #"6024"
0 0 24 3 2 #") "
0 0 21 3 1 #"3"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 5 #"slide"
0 0 24 3 1 #" "
0 0 23 3 7 #"#:title"
0 0 24 3 1 #" "
0 0 19 3 27 #"\"Algorithms in your Brain?\""
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 14 3 9 #"vc-append"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 29 1 #"\n"
0 0 24 3 23 #" ("
0 0 14 3 2 #"io"
0 0 24 3 2 #" ("
0 0 14 3 5 #"scale"
0 0 24 3 2 #" ("
0 0 14 3 4 #"code"
0 0 24 3 2 #" ("
0 0 21 3 1 #"2"
0 0 24 3 1 #" "
0 0 14 3 1 #"+"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #")) "
0 0 21 3 1 #"3"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 26 #" "
0 0 14 3 14 #"brain-with-alg"
0 0 24 29 1 #"\n"
0 0 24 3 27 #" ("
0 0 14 3 5 #"scale"
0 0 24 3 2 #" ("
0 0 14 3 4 #"code"
0 0 24 3 1 #" "
0 0 21 3 1 #"4"
0 0 24 3 2 #") "
0 0 21 3 1 #"3"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 23 #" ("
0 0 14 3 2 #"io"
0 0 24 3 2 #" ("
0 0 14 3 5 #"scale"
0 0 24 3 2 #" ("
0 0 14 3 4 #"code"
0 0 24 3 2 #" ("
0 0 21 3 4 #"3012"
0 0 24 3 1 #" "
0 0 14 3 1 #"/"
0 0 24 3 1 #" "
0 8 10 21 4 #"1/2\0"
3 #"#e\0"
6 #"mixed\0"
2 #"1\0"
0 0 24 3 3 #")) "
0 0 21 3 1 #"3"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 26 #" "
0 0 14 3 14 #"brain-with-alg"
0 0 24 29 1 #"\n"
0 0 24 3 27 #" ("
0 0 14 3 5 #"scale"
0 0 24 3 2 #" ("
0 0 14 3 4 #"code"
0 0 24 3 1 #" "
0 0 21 3 4 #"6024"
0 0 24 3 2 #") "
0 0 21 3 1 #"3"
0 0 24 3 4 #"))))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 5 #"slide"
0 0 24 3 1 #" "
0 0 23 3 7 #"#:title"
0 0 24 3 1 #" "
0 0 19 3 42 #"\"Brain algorithms vs computer algorithms?\""
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 14 3 9 #"vc-append"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 29 1 #"\n"
0 0 24 3 23 #" ("
0 0 14 3 2 #"io"
0 0 24 3 2 #" ("
0 0 14 3 5 #"scale"
0 0 24 3 2 #" ("
0 0 14 3 4 #"code"
0 0 24 3 2 #" ("
0 0 21 3 1 #"2"
0 0 24 3 1 #" "
0 0 14 3 1 #"+"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #")) "
0 0 21 3 1 #"3"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 26 #" "
0 0 14 3 5 #"brain"
0 0 24 29 1 #"\n"
0 0 24 3 27 #" ("
0 0 14 3 5 #"scale"
0 0 24 3 2 #" ("
0 0 14 3 4 #"code"
0 0 24 3 1 #" "
0 0 21 3 1 #"4"
0 0 24 3 2 #") "
0 0 21 3 1 #"3"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 23 #" ("
0 0 14 3 2 #"io"
0 0 24 3 2 #" ("
0 0 14 3 5 #"scale"
0 0 24 3 2 #" ("
0 0 14 3 4 #"code"
0 0 24 3 2 #" ("
0 0 21 3 1 #"2"
0 0 24 3 1 #" "
0 0 14 3 1 #"+"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #")) "
0 0 21 3 1 #"3"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 26 #" "
0 0 14 3 8 #"computer"
0 0 24 29 1 #"\n"
0 0 24 3 27 #" ("
0 0 14 3 5 #"scale"
0 0 24 3 2 #" ("
0 0 14 3 4 #"code"
0 0 24 3 1 #" "
0 0 21 3 1 #"4"
0 0 24 3 2 #") "
0 0 21 3 1 #"3"
0 0 24 3 4 #"))))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 5 #"slide"
0 0 24 3 1 #" "
0 0 23 3 7 #"#:title"
0 0 24 3 1 #" "
0 0 19 3 42 #"\"Brain algorithms vs computer algorithms?\""
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 14 3 9 #"vc-append"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 29 1 #"\n"
0 0 24 3 23 #" ("
0 0 14 3 2 #"io"
0 0 24 3 2 #" ("
0 0 14 3 5 #"scale"
0 0 24 3 2 #" ("
0 0 14 3 4 #"code"
0 0 24 3 2 #" ("
0 0 21 3 1 #"2"
0 0 24 3 1 #" "
0 0 14 3 1 #"+"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #")) "
0 0 21 3 1 #"3"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 26 #" "
0 0 14 3 14 #"brain-with-alg"
0 0 24 29 1 #"\n"
0 0 24 3 27 #" ("
0 0 14 3 5 #"scale"
0 0 24 3 2 #" ("
0 0 14 3 4 #"code"
0 0 24 3 1 #" "
0 0 21 3 1 #"4"
0 0 24 3 2 #") "
0 0 21 3 1 #"3"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 23 #" ("
0 0 14 3 2 #"io"
0 0 24 3 2 #" ("
0 0 14 3 5 #"scale"
0 0 24 3 2 #" ("
0 0 14 3 4 #"code"
0 0 24 3 2 #" ("
0 0 21 3 1 #"2"
0 0 24 3 1 #" "
0 0 14 3 1 #"+"
0 0 24 3 1 #" "
0 0 21 3 1 #"2"
0 0 24 3 3 #")) "
0 0 21 3 1 #"3"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 26 #" "
0 0 14 3 17 #"computer-with-alg"
0 0 24 29 1 #"\n"
0 0 24 3 27 #" ("
0 0 14 3 5 #"scale"
0 0 24 3 2 #" ("
0 0 14 3 4 #"code"
0 0 24 3 1 #" "
0 0 21 3 1 #"4"
0 0 24 3 2 #") "
0 0 21 3 1 #"3"
0 0 24 3 4 #"))))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 5 #"slide"
0 0 24 3 1 #" "
0 0 23 3 7 #"#:title"
0 0 24 3 1 #" "
0 0 19 3 1 #"\""
0 0 19 3 8 #"Musician"
0 0 19 3 8 #" Brains\""
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 14 3 2 #"io"
0 0 24 3 1 #" "
0 0 14 3 11 #"sheet-music"
0 0 24 29 1 #"\n"
0 0 24 3 15 #" "
0 0 14 3 14 #"brain-with-alg"
0 0 24 29 1 #"\n"
0 0 24 3 15 #" "
0 0 14 3 5 #"music"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 5 #"slide"
0 0 24 3 1 #" "
0 0 23 3 7 #"#:title"
0 0 24 3 1 #" "
0 0 19 3 1 #"\""
0 0 19 3 10 #"Programmer"
0 0 19 3 8 #" Brains\""
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 14 3 2 #"io"
0 0 24 3 1 #" "
0 0 14 3 5 #"world"
0 0 24 29 1 #"\n"
0 0 24 3 15 #" "
0 0 14 3 14 #"brain-with-alg"
0 0 24 29 1 #"\n"
0 0 24 3 15 #" "
0 0 14 3 17 #"computer-with-alg"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 5 #"slide"
0 0 24 3 1 #" "
0 0 23 3 7 #"#:title"
0 0 24 3 1 #" "
0 0 19 3 24 #"\"Learning to program...\""
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 14 3 9 #"vc-append"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 29 1 #"\n"
0 0 24 3 23 #" ("
0 0 14 3 1 #"t"
0 0 24 3 1 #" "
0 0 19 3 22 #"\"Non-programmer Brain\""
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 23 #" ("
0 0 14 3 2 #"io"
0 0 24 3 1 #" "
0 0 14 3 5 #"world"
0 0 24 29 1 #"\n"
0 0 24 3 26 #" "
0 0 14 3 5 #"brain"
0 0 24 29 1 #"\n"
0 0 24 3 26 #" "
0 0 14 3 18 #"computer-with-blob"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 22 #" "
0 0 14 3 6 #"spacer"
0 0 24 29 1 #"\n"
0 0 24 3 23 #" ("
0 0 14 3 1 #"t"
0 0 24 3 1 #" "
0 0 19 3 18 #"\"Programmer Brain\""
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 23 #" ("
0 0 14 3 2 #"io"
0 0 24 3 1 #" "
0 0 14 3 5 #"world"
0 0 24 29 1 #"\n"
0 0 24 3 26 #" "
0 0 14 3 14 #"brain-with-alg"
0 0 24 29 1 #"\n"
0 0 24 3 26 #" "
0 0 14 3 19 #"computer-with-alg-2"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 5 #"slide"
0 0 24 3 1 #" "
0 0 23 3 7 #"#:title"
0 0 24 3 1 #" "
0 0 19 3 16 #"\"Teacher Brains\""
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 14 3 2 #"io"
0 0 24 3 1 #" "
0 0 14 3 5 #"brain"
0 0 24 29 1 #"\n"
0 0 24 3 15 #" "
0 0 14 3 16 #"brain-with-alg-3"
0 0 24 29 1 #"\n"
0 0 24 3 15 #" "
0 0 14 3 14 #"brain-with-alg"
0 0 24 3 2 #"))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 5 #"slide"
0 0 24 3 1 #" "
0 0 23 3 7 #"#:title"
0 0 24 3 1 #" "
0 0 19 3 24 #"\"Learning to program...\""
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 14 3 9 #"vc-append"
0 0 24 3 1 #" "
0 0 21 3 2 #"20"
0 0 24 29 1 #"\n"
0 0 24 3 23 #" ("
0 0 14 3 1 #"t"
0 0 24 3 1 #" "
0 0 19 3 15 #"\"Teacher Brain\""
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 23 #" ("
0 0 14 3 2 #"io"
0 0 24 3 1 #" "
0 0 14 3 5 #"brain"
0 0 24 29 1 #"\n"
0 0 24 3 26 #" "
0 0 14 3 16 #"brain-with-alg-3"
0 0 24 29 1 #"\n"
0 0 24 3 26 #" "
0 0 14 3 14 #"brain-with-alg"
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 22 #" "
0 0 14 3 6 #"spacer"
0 0 24 29 1 #"\n"
0 0 24 3 23 #" ("
0 0 14 3 1 #"t"
0 0 24 3 1 #" "
0 0 19 3 18 #"\"Programmer Brain\""
0 0 24 3 1 #")"
0 0 24 29 1 #"\n"
0 0 24 3 23 #" ("
0 0 14 3 2 #"io"
0 0 24 3 1 #" "
0 0 14 3 5 #"world"
0 0 24 29 1 #"\n"
0 0 24 3 26 #" "
0 0 14 3 14 #"brain-with-alg"
0 0 24 29 1 #"\n"
0 0 24 3 26 #" "
0 0 14 3 19 #"computer-with-alg-2"
0 0 24 3 3 #")))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 3 5 #" ("
0 0 14 3 5 #"slide"
0 0 24 3 1 #" "
0 0 23 3 7 #"#:title"
0 0 24 3 1 #" "
0 0 19 3 41 #"\"Your Turn! How do you program a brain?\""
0 0 24 29 1 #"\n"
0 0 24 3 12 #" ("
0 0 14 3 2 #"io"
0 0 24 3 1 #" "
0 0 14 3 5 #"brain"
0 0 24 29 1 #"\n"
0 0 24 3 15 #" "
0 0 14 3 16 #"brain-with-alg-3"
0 0 24 29 1 #"\n"
0 0 24 3 15 #" "
0 0 14 3 14 #"brain-with-alg"
0 0 24 3 4 #"))))"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0 24 29 1 #"\n"
0 0
| false |
95f97f784bc9f68788d492f79b97d91a4672a9fb | bf3128c6b1cf2a164077bcef1ffa23c26c440a0b | /while-break/while-break.rkt | b150cf6bd35101ece5b0679e487493a7ac736e8b | [
"MIT"
]
| permissive | bennn/syntax-parse-example | 9e961fefc50c265991665d5de7ec1047dd445ed7 | b1616936eafd97f952af050dc41cab25c50041e2 | refs/heads/master | 2022-09-21T15:43:20.335490 | 2022-09-06T00:17:37 | 2022-09-06T00:17:37 | 423,293,870 | 1 | 1 | NOASSERTION | 2021-11-01T00:38:01 | 2021-11-01T00:38:00 | null | UTF-8 | Racket | false | false | 492 | rkt | while-break.rkt | #lang racket/base
(provide while break)
(require syntax/parse/define racket/stxparam (for-syntax racket/base))
(define-syntax-parameter break
(lambda (stx)
(raise-syntax-error (syntax-e stx) "can only be used inside `while`")))
(define-syntax-parse-rule (while condition body ...)
(call/ec
(λ (return)
(syntax-parameterize ([break (make-rename-transformer #'return)])
(let loop ()
(when condition
(begin body ...
(loop))))))))
| true |
f6a42543d82a0e79d79c577ec35eaa1723fdbf68 | d6498c0c3d973717dbbd9154b037f5564e82d3e8 | /cpu.rkt | 8229579b304beb974f3d632e218b350615c8ec25 | [
"MIT"
]
| permissive | soegaard/6502 | 2347825a91bf550806a85ae1fcbee16024faa23a | 095036ee020b334c370b728146ce2410e058ae51 | refs/heads/master | 2020-03-23T00:04:22.451899 | 2018-07-13T12:46:24 | 2018-07-13T12:46:24 | 140,842,235 | 9 | 2 | null | null | null | null | UTF-8 | Racket | false | false | 92,452 | rkt | cpu.rkt | #lang racket
(require (for-syntax syntax/parse racket/syntax racket/format racket/base)
racket/draw)
(provide
;; Emulation
run ; run until STOP
continue ; continue from STOP
step ; single step
;; Memory
load load2 store mem-dump
;; Registers
A X Y PC S C Z V
;; Assembler
assembler traditional->assembler assembler->traditional
install-opcodes-from-assembler
;; Other
split-string-into-lines hex hex$ bin bin%)
;;;
;;; References
;;;
;;; Opcode reference:
;;; http://www.6502.org/tutorials/6502opcodes.html#SBC
;;; Opcode reference and pseudo code from Vice:
;;; http://nesdev.com/6502.txt
;;;
;;; SETTINGS
;;;
(define video-type 'pal)
;;;
;;; TODO
;;;
; - implement sbc
; Extend tradional->assembler to handle comments
; The +1 extra cycle for page boundary crossings needs to be handled.
; Finish the assembler. I.e. support labels and symbols.
; Tests ...
; Load files from other assemblers
; Load and save rom files.
; Memory banks
; Support the unsupported opcodes:
; ALR: A:=(A and #{imm})/2;
; ANC: A:=A and #{imm}; Generates opcode $0B.
; ARR: A:=(A and #{imm})/2;
; AXS: X:=A and X-#{imm};
; DCP: {adr}:={adr}-1; A-{adr};
; ISC: {adr}:={adr}+1; A:=A-{adr};
; LAS: A,X,S:={adr} and S;
; LAX: A,X:={adr};
; RLA: {adr}:={adr}rol; A:=A and {adr};
; RRA: {adr}:={adr}ror; A:=A adc {adr};
; SAX: {adr}:=A and X;
; SLO: {adr}:={adr}*2; A:=A or {adr};
; SRE: {adr}:={adr}/2; A:=A xor {adr};
;;;
;;; SYNTAX UTILITIES
;;;
(module utils racket
(provide symbol-downcase symbol-upcase syntax-downcase syntax-upcase)
(define (convert s f)
(if (syntax? s)
(convert (syntax-e s) f)
(string->symbol (f (symbol->string s)))))
(define (symbol-downcase s) (convert s string-downcase))
(define (symbol-upcase s) (convert s string-upcase))
(define (syntax-downcase ctx stx-sym)
(datum->syntax ctx (symbol-downcase (syntax-e stx-sym))))
(define (syntax-upcase ctx stx-sym)
(datum->syntax ctx (symbol-upcase (syntax-e stx-sym)))))
(require (submod "." utils))
(begin-for-syntax
(require (submod "." utils))
(define (format-ids locs fmt vss)
(for/list ([vs (syntax->list vss)] [loc (syntax->list locs)])
(apply format-id loc fmt (syntax->list vs)))))
;;;
;;; BITS AND BYTES
;;;
(define bitand bitwise-and)
(define bitor bitwise-ior)
(define bitxor bitwise-xor)
(define (bitasl n) (arithmetic-shift n 1))
(define (bitlsr n) (arithmetic-shift n -1)) ; introduces 0 as msb
(define byte-masks #(1 2 4 8 16 32 64 128))
(define negated-byte-masks (for/vector ([b byte-masks]) (- 255 b)))
(define (bit-clear? b pos) (zero? (bitand b (vector-ref byte-masks pos))))
(define (bit-set? b pos) (not (zero? (bitand b (vector-ref byte-masks pos)))))
(define (bit-clear b pos) (bitand b (vector-ref negated-byte-masks pos)))
(define (bit-set b pos) (bitor b (vector-ref byte-masks pos)))
(define (low bits) (bitwise-and bits #xff)) ; returns the low 8 bits
(define (high bits) (arithmetic-shift bits -8)) ; returns the high 8 bits
(define (bit-ref bits pos) (byte>> (bitwise-and bits (vector-ref byte-masks pos)) pos))
(define (byte-msb? b) (not (zero? (bitand b #b10000000))))
(define (byte-set-msb b) (bitor b #b10000000))
(define (byte-clear-msb b) (bitand b #b01111111))
(define (byte-set-lsb b) (bitor b #b00000001))
(define (byte-clear-lsb b) (bitand b #b11111110))
(define (byte-inc b) (if (= b 255) 0 (+ b 1)))
(define (byte-dec b) (if (= b 0) 255 (- b 1)))
(define (byte-pos? b) (not (byte-msb? b)))
(define (byte-neg? b) (byte-msb? b))
(define (byte-neg b) (byte (bitxor b #xff))) ; negation
(define (byte-zero? b) (= b 0))
(define (byte-one? b) (= b 1))
(define (byte n) (bitand n #xFF))
(define (byte+ b c) (bitand (+ b c) #xFF))
(define (byte- b c) (bitand (- b c) #xFF)) ; todo check this!
(define (byte-or b c) (bitand (bitor b c) #xFF))
(define (byte-xor b c) (bitand (bitxor b c) #xFF))
(define (byte-and b c) (bitand (bitand b c) #xFF))
(define (byte-asl b) (bitand (bitasl b) #xFF))
(define (byte-lsr b) (bitand (bitlsr b) #xFF))
(define (byte-rol b c?) (if c? (byte-set-lsb (byte-asl b)) (byte-asl b)))
(define (byte-ror b c?) (if c? (byte-set-msb (byte-lsr b)) (byte-lsr b)))
(define (byte<< b n) (arithmetic-shift b n))
(define (byte>> b n) (arithmetic-shift b (- n)))
(define (byte-lower-nibble b) (bitand b #b00001111))
(define (byte-upper-nibble b) (arithmetic-shift b -4))
(define (nibbles->byte u l) (byte-or (arithmetic-shift u 4) l))
(define (word hi lo) (+ (* hi 256) lo))
(define (word+ w1 w2) (bitand (+ w1 w2) #xFFFF))
(define (word- w1 w2) (bitand (- w1 w2) #xFFFF))
(define (word>> w n) (arithmetic-shift w (- n)))
(define (word-and b c) (bitand (bitand b c) #xFFFF))
(define (word-msb w) (word>> w 8))
(define (word-lsb w) (word-and w #xFF))
(define (hex2 n) (~r n #:base 16 #:min-width 2 #:pad-string "0"))
(define (hex4 n) (~r n #:base 16 #:min-width 4 #:pad-string "0"))
(define hex hex2)
(define (hex$ n) (string->symbol (string-append "$" (if (<= n #xff) (hex2 n) (hex4 n)))))
(define (bin8 n) (~r n #:base 2 #:min-width 8 #:pad-string "0"))
(define (bin16 n) (~r n #:base 2 #:min-width 16 #:pad-string "0"))
(define bin bin8)
(define (bin% n) (string->symbol (string-append "%" (if (<= n #xff) (bin8 n) (bin16 n)))))
;;;
;;; REGISTERS
;;;
(define-syntax (define-register stx)
(syntax-parse stx
[(_define-register name)
(with-syntax ([name! (format-id #'name "~a!" #'name)])
#'(begin (define name 0)
(define-syntax (name! so)
(syntax-parse so [(_name! expr) (syntax/loc so (set! name expr))]))))]))
(define-register A) ; accumulator ( 8 bit)
(define-register X) ; index register ( 8 bit)
(define-register Y) ; index register ( 8 bit)
(define-register SP) ; stack pointer ( 8 bit)
(define-register PC) ; program counter (16 bit)
(define (~registers)
(~a "A:" (hex2 A) " "
"X:" (hex2 X) " "
"Y:" (hex2 Y) " "
"SP:" (hex2 SP)))
;;;
;;; STATUS REGISTER: FLAGS
;;;
; The status register contains 8 flags.
; The status register is represented as 8 individual flags.
(define-syntax (define-flags stx)
(syntax-parse stx
[(_define-flags (name bit-number description) ...)
(with-syntax ([(name! ...) (format-ids #'(name ...) "~a!" #'((name) ...))])
#'(begin (define name 0) ...
(define (name! v) (set! name v)) ...))]))
(define-flags
(C 0 carry) ; contains the result affecting the flag (set if result<#0x100 )
(Z 1 zero) ; contains the last byte affecting the flag
(I 2 interrupt) ; boolean
(D 3 decimal-mode) ; boolean
(B 4 break) ; boolean
(U 5 unused) ; #t
(V 6 overflow) ; 0 or 1
(S 7 sign)) ; contains the last byte affecting the flag
(define (reset-status-register)
(C! #x100) (Z! 0) (I! #f) (D! #t) (B! #f) (U! #t) (V! 0) (S! 0))
; Note: The sign flag is also known as the N flag (for Negative)
(define (S?) (byte-neg? S)) ; true, if the (negative) sign is set
(define (set-S) (S! #b10000000))
(define (clear-S) (S! 0))
(define (Z?) (zero? Z)) ; true, if the zero flag is set
(define (set-Z) (Z! 0))
(define (clear-Z) (Z! 1))
(define (V?) (= V 1)) ; true, if overflow is set
(define (set-V) (V! 1))
(define (clear-V) (V! 0))
(define (C?) (< C #x100)) ; true, if the carry flag is set
(define (set-C) (C! 0))
(define (clear-C) (C! #x100))
(define (I?) I)
(define (set-I) (I! #t))
(define (clear-I) (I! #f))
(define (B?) B)
(define (set-B) (B! #t))
(define (clear-B) (B! #f))
(define (D?) D)
(define (set-D) (D! #t))
(define (clear-D) #;(D! #f) (void)) ; The 6502 in the NES doesn't support the decimal flag
; ; so .. make this void
(define (~flags)
(~a (if (C?) "C" ".")
(if (Z?) "Z" ".")
(if I "I" ".")
(if D "D" ".")
(if B "B" ".")
(if U "_" "_")
(if (V?) "V" ".")
(if (S?) "S" ".")))
(define (flags->integer)
(string->number
(string-append*
(reverse
(list (if (C?) "1" "0")
(if (Z?) "1" "0")
(if I "1" "0")
(if D "1" "0")
(if B "1" "0")
(if U "1" "0")
(if (V?) "1" "0")
(if (S?) "1" "0"))))
2))
;;;
;;; CLOCK
;;;
(define cycle-count 0)
;;;
;;; MEMORY
;;;
;; SIMPLEST MODEL: Simple 64KB address space. No memory mapped IO-registers.
;; The memory is represented as a mutable array of bytes.
; (define mem (make-bytes #x10000 0))
; (define (load a) (bytes-ref mem a))
; (define (store a v) (bytes-set! mem a v))
;;; MEMORY MAPPER
; Due to the memory mapping of the NES all loads and stores to the memory
; will go through the load and store below.
; The smallest ram chips used in the NES (and/or cartridges) are 2KB,
; so let's call a 2KB sized piece of memory a page.
(define (page) (make-vector #x800 0))
; Besides standard ram a few addresses are memory mapped.
; The PPU (graphics chip) have 8 registers that are accessed throgh
; addresses $2000-$2007.
; For now, let's represent the PPU registers as a vector.
(define ppu-registers (make-vector 8 0))
; We can change the representation later, if all access to the PPU goes through ppu-ref and ppu-set!
(define (ppu-reg-ref i) (vector-ref ppu-registers i))
(define (ppu-reg-set! i b)
(case i
[(7) (ppu-data-write b)] ; $2007 ; fast path
[(0) ;(displayln (list 'ppu-ctrl (bin b)) (current-error-port))
(vector-set! ppu-registers i b)] ; $2000
[(3) ;(displayln (list 'ppu-oam-addr (bin b)) (current-error-port))
(vector-set! ppu-registers i b)]
[(4) ;(displayln (list 'ppu-oam-data (bin b)) (current-error-port))
(vector-set! ppu-registers i b)]
; [(1) (ppu-mask-set! b)] ; $2001
; [(2) (ppu-status-set! b)] ; $2002
; [(3) (ppu-oam-addr! b)] ; $2003
; [(4) (ppu-oam-data! b)] ; $2004
; [(5) (ppu-scroll-set! b)] ; $2005
[(6) (ppu-addr-write b)] ; $2006
[else (vector-set! ppu-registers i b)]))
; The actual memory layout depends on which chips are present in the cartridge.
; However there are 2KB internal ram (i.e. not on a cartridge) at the beginning
; of the address space. Further more page 2, 3, and, 4 are mirrors of that first page.
; The first page is internal ram.
; The following pages are mirrors of the first page.
(define page0 (page)) ; $0000 - $0800
(define page1 page0) ; $0800 - $0FFF 2KB mirror of $0-$7FF
(define page2 page0) ; $1000 - $17FF 2KB mirror of $0-$7FF
(define page3 page0) ; $1800 - $1FFF 2KB mirror of $0-$7FF
(define memmap
(vector page0 page1 page2 page3 ; $0000 - $1FFF
#f #f #f #f ; $2000 - $3FFF PPU
#f (page) (page) (page) ; $4000 - $5FFF APU + IO + more
(page) (page) (page) (page) ; $6000 - $7FFF
(page) (page) (page) (page) ; $8000 - $9FFF
(page) (page) (page) (page) ; $A000 - $BFFF
(page) (page) (page) (page) ; $C000 - $DFFF
(page) (page) (page) (page))) ; $E000 - $FFFF
(define (make-$C000-$FFFF-a-mirror-of-$8000-BFFF)
; If the prg rom is only 16KB then it needs to be mirrored.
(for ([i (in-range 8)])
(vector-set! memmap (+ 24 i) (vector-ref memmap (+ 16 i)))))
(define (load a) ; retrieve the byte value stored at address a
(define bank (word>> a 11)) ; upper 5 bits = the bank number
(define page (vector-ref memmap bank)) ; the memmap maps bank to page
(cond
[page (vector-ref page (word-and a #b11111111111))] ; index = lower 11 bits
[(<= 4 bank 7) (ppu-reg-ref (word-and a #b111))] ; index of PPU register = lower 3 bits
[(= bank 8) (cond
[(= a #x4017) 1] ; JOY 1 ; XXX TODO
[else 0])] ; we will ignore the APU for the time being
[else (error 'load "unexpected ")])) ; no other banks need special treatment
(define (store a b) ; store the byte value b at address a
(define bank (word>> a 11))
(define page (vector-ref memmap bank))
(cond
[page (vector-set! page (word-and #b11111111111 a) b)]
[(<= 4 bank 7) (ppu-reg-set! (word-and a #b111) b)]
[(= bank 8) (void)]
[else (error 'store "unexpected ")]))
(define (load2 a) (word (load (+ a 1)) (load a)))
(define (load2bug a) (word (load (word (high a) (byte+ a 1))) (load a)))
(define (push! v) (store (+ #x100 SP) v) (SP! (byte- SP 1)))
(define (pull!) (SP! (byte+ SP 1)) (load (+ #x100 SP)))
(define (on-zero-page? adr) (< adr 256))
;;;
;;; PPU - Picture Processing Unit
;;;
; The PPU is the graphics chip. It is a small CPU that runs in parallel with the main CPU.
; The PPU has a 16KB ram chip. This ram is refered to as video ram.
; The address space of the PPU is
; A ppu page is 256 bytes.
(define ppu-page-size 256)
(define (ppu-page) (make-vector ppu-page-size 0))
(define ppu-memmap (make-vector (/ (* 64 1024) ppu-page-size) #f)) ; the address space is 64kb
(define ppu-palettes (ppu-page))
(define (ppu-reset)
; allocate pages and put them into the memmap
(define (install-ram from-address to-address)
(for ([i (in-range (/ from-address ppu-page-size)
(/ to-address ppu-page-size))])
(vector-set! ppu-memmap i (ppu-page))))
; make memap entries point to already existing pages (thus introducing mirroring)
(define (mirror-range from-address to-address source)
(define src (/ source ppu-page-size))
(for ([i (in-range (/ from-address ppu-page-size)
(/ to-address ppu-page-size))]
[j (in-naturals)])
(vector-set! ppu-memmap i (vector-ref ppu-memmap (+ src j)))))
(install-ram #x0000 #x2000) ; Pattern Tables
(install-ram #x2000 #x3F00) ; Name Tables
; #x3F00 #x4000 ; Palettes (needs special handling)
(mirror-range #x3000 #x3F00 #x2000) ; Mirrors of name tables
(mirror-range #x4000 #x10000 #x0000) ; Mirrors bottom 16KB (four times)
; From https://wiki.nesdev.com/w/index.php/PPU_power_up_state
; Initial Register Values
; Register At Power After Reset
; PPUCTRL ($2000) 0000 0000 0000 0000
; XXX
; PPUMASK ($2001) 0000 0000 0000 0000
; PPUSTATUS ($2002) +0+x xxxx U??x xxxx
; OAMADDR ($2003) $00 unchanged1
; $2005 / $2006 latch cleared cleared
; PPUSCROLL ($2005) $0000 $0000
; PPUADDR ($2006) $0000 unchanged
; PPUDATA ($2007) read buffer $00 $00
; odd frame no no
; OAM pattern pattern
; NT RAM (external, in Control Deck) mostly $FF unchanged
; CHR RAM (external, in Game Pak) unspecified pattern unchanged
)
; The palettes are only from $3F00 to $3F1F.
; The range $3F20-$3FFF mirrors $3F00-$3F1F, but since that's within a page,
; this needs to be handled in the load and store. We store #f in the
; memory map to indicate special handling.
(define (ppuload a) ; retrieve the byte value stored at address a
(define bank (word>> a 8)) ; upper 8 bits = the bank number
(define page (vector-ref ppu-memmap bank)) ; the memmap has the page of the bank
(if page
(vector-ref page (word-and a #b11111111)) ; lower 8 bits = position in page
(vector-ref ppu-palettes (word-and a #b00011111)))) ; $0-$1f is 5 bits
(define (ppustore a b) ; store the byte b at address a
; (displayln (list 'ppustore a b) (current-error-port))
(define bank (word>> (word-and #b1111111100000000 a) 8)) ; upper 8 bits = the bank number
(define page (vector-ref ppu-memmap bank)) ; the memmap has the page of the bank
(if page
(vector-set! page (word-and a #b11111111) b) ; lower 8 bits = position in page
(vector-set! ppu-palettes (word-and a #b00011111) b))) ; $0-$1f is 5 bits
(ppu-reset)
;;;
;;; Addressing Modes
;;;
; EXAMPLES
(define immediate 0) ; LDA #$20
(define zero-page 1) ; LDA $20
(define zero-page-x 2) ; LDA $20,x
(define zero-page-y 3) ; LDX $20,y
(define absolute 4) ; LDA $1234
(define absolute-x 5) ; LDA $1234,x
(define absolute-y 6) ; LDA $1234,y
(define indirect 7) ; JMP ($1234) (JMP only)
(define indirect-x 8) ; LDA ($44,x)
(define indirect-y 9) ; LDA ($44),y
(define relative 10) ; BNE label
(define implied 11) ; BRK
(define accumulator 12) ; ROL A
(define todo 13)
;;;
;;; FETCH/DECODE/EXECUTE
;;;
(define opcode-modes (make-bytes 256 todo))
(define opcode-sizes (make-bytes 256 0))
(define opcode-cycles (make-bytes 256 0))
(define opcode-handlers (for/vector ([i 256]) (λ _ (error 'opcode-handler (opcode-handler-error i)))))
(define (opcode-handler-error i) (~a "The opcode handler for opcode " i " has not been defined"))
(define trace-fuel 0)
(define (trace [n 10]) (set! trace-fuel n))
(define (step)
;; TODO handle interrupts here? Note - use exceptions and handle it in run.
; Note: The 6502 increments the PC first, then fetches the instruction
;;; Uddate PC
(PC! (word+ PC 1)) ; increment pc
(unless (zero? trace-fuel)
(displayln (disassemble-single PC))
(set! trace-fuel (- trace-fuel 1)))
(when (zero? trace-fuel) (raise 'done))
(define pc PC) ; save old pc
;;; Fetch
(define opcode (load PC)) ; fetch opcode
;;; Decode
(define mode (bytes-ref opcode-modes opcode)) ; find adressing mode
(define size (bytes-ref opcode-sizes opcode)) ; instruction size
(define cycles (bytes-ref opcode-cycles opcode)) ; clock cycles needed
(define handle (vector-ref opcode-handlers opcode)) ; does the work
(set! cycle-count (+ cycle-count cycles)) ; increment clock
;;; Execute
(define effective-operand
; todo: order these in most-used-first order
(cond ; ; ***EXAMPLES***
[(= mode immediate) (+ pc 1)] ; LDA #$20
[(= mode zero-page) (load (+ pc 1))] ; LDA $20
[(= mode zero-page-x) (byte+ X (load (+ pc 1)))] ; LDA $20,x
[(= mode zero-page-y) (byte+ Y (load (+ pc 1)))] ; LDX $20,y (LDX, STX only)
[(= mode absolute) (load2 (+ pc 1))] ; LDA $1234
[(= mode absolute-x) (word+ X (load2 (+ pc 1)))] ; LDA $1234,x
[(= mode absolute-y) (word+ Y (load2 (+ pc 1)))] ; LDA $1234,y
[(= mode indirect) (load2bug (load2 (+ pc 1)))] ; JMP ($1234) (JMP only)
[(= mode indirect-x) (load2bug (word+ X (load (+ pc 1))))] ; LDA ($44,x)
[(= mode indirect-y) (word+ Y (load2bug (load (+ pc 1))))] ; LDA ($44),y
[(= mode relative) (let ([offset (load (+ pc 1))]) ; BNE label
; (displayln (list 'pc pc 'offset offset))
(if (byte-neg? offset)
(+ pc +1 offset (- #x100))
(+ pc +1 offset)))]
[(= mode implied) #f] ; BRK
[(= mode accumulator) #f] ; ROL A
[else (error 'step (~a "Unhandled mode: " mode " Opcode: " opcode))]))
;;; Update PC before calling handler
(when (> size 1) (PC! (word+ PC (- size 1))))
(handle effective-operand)
#;(displayln (~a " "
"P:" (number->string (flags->integer) 16) " " (~flags) " "
(~registers)))
cycles)
;;;
;;; OPCODES / INSTRUCTIONS
;;;
; Main references used for the instruction table:
; http://www.6502.org/tutorials/6502opcodes.html
; The remaining (undocumented) opcodes are still missing:
; http://visual6502.org/wiki/index.php?title=6502_all_256_Opcodes
(define-syntax affects (syntax-rules ())) ; used as keyword
(define opcode-to-instruction-name-ht (make-hash)) ; for the disassembler
(define mnemonic-to-mode-to-opcode-ht (make-hash)) ; for the assembler
(define (register-mnemonic! mne mode opcode)
(define (register mne)
(define mode-to-opcode-ht (or (hash-ref mnemonic-to-mode-to-opcode-ht mne #f)
(let ([ht (make-hash)])
(hash-set! mnemonic-to-mode-to-opcode-ht mne ht)
ht)))
(hash-set! mode-to-opcode-ht mode opcode))
(register (symbol-downcase mne))
(register (symbol-upcase mne)))
(define (mnemonic+mode->opcode mne mode)
(define ht (hash-ref mnemonic-to-mode-to-opcode-ht mne))
(hash-ref ht mode))
(define (has-mode? mne mode)
(let ([mode-to-opcode-ht (hash-ref mnemonic-to-mode-to-opcode-ht mne #f)])
(and mode-to-opcode-ht
(hash-ref mode-to-opcode-ht mode #f)
#t)))
(define (opcode->mnemonic opcode)
(hash-ref opcode-to-instruction-name-ht opcode #f))
(define (reset)
; http://www.pagetable.com/?p=410
; Reset vector: $FFFC/$FFFD
(PC! (load2 #xFFFC)))
(define (run start-address)
(reset-status-register)
(PC! (- start-address 1))
(SP! #xff) ; note: sp=$ff means address $01ff
(continue))
(define nmi-due-to-vblank? #f)
(define (continue)
(let loop ()
;(display "C")
; generate NMI due to vblank?
(when nmi-due-to-vblank?
; (displayln 'NMI (current-error-port))
(set! nmi-due-to-vblank? #f)
(handle-nmi))
; business as usual
(let cpu-loop ([fuel 113])
(unless (zero? fuel)
(step)
(cpu-loop (- fuel 1))))
;(display "P")
(ppu-step 1364)
(loop)))
(define-syntax (define-opcodes stx)
(define-syntax-class mnemonic
(pattern mnemonic:id #:with name (syntax-upcase stx #'mnemonic)))
(define-syntax-class opcode-specification
(pattern (mode opcode size cycles) #:with extra-cycles #'0)
(pattern (mode opcode size cycles extra) #:with extra-cycles #'extra))
(define-syntax-class flag
#:literals (C Z I D B V S)
(pattern (~or C Z I D B V S)))
(syntax-parse stx
#:literals (affects)
[(_define-opcodes register-opcode-handlers
(NAME:mnemonic (affects f:flag ...) (spec:opcode-specification ...)) ...)
#'(begin
(let ([name 'NAME.name])
(hash-set! opcode-to-instruction-name-ht spec.opcode name) ...
(bytes-set! opcode-sizes spec.opcode spec.size) ...
(bytes-set! opcode-cycles spec.opcode spec.cycles) ...
(bytes-set! opcode-modes spec.opcode spec.mode) ...
(register-mnemonic! name spec.mode spec.opcode) ...)
...
(define (register-opcode-handlers)
(let ([Name NAME.name]) (vector-set! opcode-handlers spec.opcode Name) ...)
...))]))
(define-opcodes
register-opcode-handlers ; use this after all instructions are defined
(STOP (affects) ((implied #xff 1 1))) ; fake instruction - emulator only
(ADC ; Add with carry
(affects S V Z C)
; (mode hex size cycles extra-cycle-on-page-crossed
((immediate #x69 2 2)
(zero-page #x65 2 3)
(zero-page-x #x75 2 4)
(absolute #x6d 3 4)
(absolute-x #x7d 3 4 1) ; 1 means extra cycle
(absolute-y #x79 3 4 1) ; on crossed page boundary
(indirect-x #x61 2 6)
(indirect-y #x71 2 5 1)))
(AND ; bitwise and with accumulator
(affects S Z)
((immediate #x29 2 2)
(zero-page #x25 2 3)
(zero-page-x #x35 2 4)
(absolute #x2d 3 4)
(absolute-x #x3d 3 4 1)
(absolute-y #x39 3 4 1)
(indirect-x #x21 2 6)
(indirect-y #x31 2 5 1)))
(ASL ; arithmetic shift left
(affects S Z C)
((accumulator #x0a 1 2)
(zero-page #x06 2 5)
(zero-page-x #x16 2 6)
(absolute #x0e 3 6)
(absolute-x #x1e 3 7)))
(BIT ; test bits
(affects S V Z)
((zero-page #x24 2 3)
(absolute #x2c 3 4)))
;;; BRANCH INSTRUCTIONS
;;; branch not taken: 2 cycles
;;; branch taken: 3 cycles
;;; +1 if page boundary crossed
(BPL (affects) ((relative #x10 2 2 1))) ; plus
(BMI (affects) ((relative #x30 2 2 1))) ; minus
(BVC (affects) ((relative #x50 2 2 1))) ; overflow clear
(BVS (affects) ((relative #x70 2 2 1))) ; overflow set
(BCC (affects) ((relative #x90 2 2 1))) ; carry clear
(BCS (affects) ((relative #xb0 2 2 1))) ; carry set
(BNE (affects) ((relative #xd0 2 2 1))) ; not equal
(BEQ (affects) ((relative #xf0 2 2 1))) ; equal
(BRK ; Break - causes non-maskable interupt
(affects B)
((implied #x00 1 7)))
(CMP ; compare accumulator
(affects S Z C)
((immediate #xc9 2 2)
(zero-page #xc5 2 3)
(zero-page-x #xd5 2 4)
(absolute #xcd 3 4)
(absolute-x #xdd 3 4 1)
(absolute-y #xd9 3 4 1)
(indirect-x #xc1 2 6)
(indirect-y #xd1 2 5 1)))
(CPX ; compare X register
(affects S Z C)
((immediate #xe0 2 2)
(zero-page #xe4 2 3)
(absolute #xec 3 4)))
(CPY ; compare Y register
(affects S Z C)
((immediate #xc0 2 2)
(zero-page #xc4 2 3)
(absolute #xcc 3 4)))
(DEC ; decrement memory
(affects S Z)
((zero-page #xc6 2 5)
(zero-page-x #xd6 2 6)
(absolute #xce 3 6)
(absolute-x #xde 3 7)))
(INC ; increment memory
(affects S Z)
((zero-page #xe6 2 5)
(zero-page-x #xf6 2 6)
(absolute #xee 3 6)
(absolute-x #xfe 3 7)))
(EOR ; bitwise exclusive or
(affects S Z)
((immediate #x49 2 2)
(zero-page #x45 2 3)
(zero-page-x #x55 2 4)
(absolute #x4d 3 4)
(absolute-x #x5d 3 4 1)
(absolute-y #x59 3 4 1)
(indirect-x #x41 2 6)
(indirect-y #x51 2 5 1)))
;;; STATUS / FLAG INSTRUCTIONS
(CLC (affects C) ((implied #x18 1 2))) ; clear carry
(SEC (affects C) ((implied #x38 1 2))) ; set carry
(CLI (affects I) ((implied #x58 1 2))) ; clear interrupt
(SEI (affects I) ((implied #x78 1 2))) ; set interrupt
(CLV (affects V) ((implied #xb8 1 2))) ; clear overflow
(CLD (affects D) ((implied #xd8 1 2))) ; clear decimal
(SED (affects D) ((implied #xf8 1 2))) ; set decimal
(JMP ; jump
(affects)
((absolute #x4c 3 6)
(indirect #x6c 3 5)))
(JSR ; jump to subroutine
(affects)
((absolute #x20 3 6)))
(LDA ; load accumulator
(affects S Z)
((immediate #xa9 2 2)
(zero-page #xa5 2 3)
(zero-page-x #xb5 2 4)
(absolute #xad 3 4)
(absolute-x #xbd 3 4 1)
(absolute-y #xb9 3 4 1)
(indirect-x #xa1 2 6)
(indirect-y #xb1 2 5 1)))
(LDX ; load X register
(affects S Z)
((immediate #xa2 2 2)
(zero-page #xa6 2 3)
(zero-page-y #xb6 2 4)
(absolute #xae 3 4)
(absolute-y #xbe 3 4 1)))
(LDY ; load Y register
(affects S Z)
((immediate #xa0 2 2)
(zero-page #xa4 2 3)
(zero-page-x #xb4 2 4)
(absolute #xac 3 4)
(absolute-x #xbc 3 4 1)))
(LSR ; logical shift right
(affects S Z C)
((accumulator #x4a 1 2)
(zero-page #x46 2 5)
(zero-page-x #x56 2 6)
(absolute #x4e 3 6)
(absolute-x #x5e 3 7)))
(NOP ; no operation
(affects)
((implied #xea 1 2)))
(ORA ; bitwise or with accumulator
(affects S Z)
((immediate #x09 2 2)
(zero-page #x05 2 3)
(zero-page-x #x15 2 4)
(absolute #x0d 3 4)
(absolute-x #x1d 3 4 1)
(absolute-y #x19 3 4 1)
(indirect-x #x01 2 6)
(indirect-y #x11 2 5 1)))
;;; REGISTER INSTRUCTIONS
(TAX (affects S Z) ((implied #xaa 1 2))) ; transfer a to x
(TXA (affects S Z) ((implied #x8a 1 2))) ; transfer x to a
(DEX (affects S Z) ((implied #xca 1 2))) ; decrement x
(INX (affects S Z) ((implied #xe8 1 2))) ; increment x
(TAY (affects S Z) ((implied #xa8 1 2))) ; transfer a to y
(TYA (affects S Z) ((implied #x98 1 2))) ; transfer y to a
(DEY (affects S Z) ((implied #x88 1 2))) ; decrement y
(INY (affects S Z) ((implied #xc8 1 2))) ; increment y
(ROL ; rotate left
(affects S Z C)
((accumulator #x2a 1 2)
(zero-page #x26 2 5)
(zero-page-x #x36 2 6)
(absolute #x2e 3 6)
(absolute-x #x3e 3 7)))
(ROR ; rotate right
(affects S Z C)
((accumulator #x6a 1 2)
(zero-page #x66 2 5)
(zero-page-x #x76 2 6)
(absolute #x6e 3 6)
(absolute-x #x7e 3 7)))
(RTI ; return from interrupt
(affects C Z I D B V S)
((implied #x40 1 6)))
(RTS ; return from subroutine
(affects)
((implied #x60 1 6)))
(SBC ; subtract with carry
(affects S V Z C)
((immediate #xe9 2 2)
(zero-page #xe5 2 3)
(zero-page-x #xf5 2 4)
(absolute #xed 3 4)
(absolute-x #xfd 3 4 1)
(absolute-y #xf9 3 4 1)
(indirect-x #xe1 2 6)
(indirect-y #xf1 2 5 1)))
(STA ; store accumulator
(affects)
((zero-page #x85 2 3)
(zero-page-x #x95 2 4)
(absolute #x8d 3 4)
(absolute-x #x9d 3 5)
(absolute-y #x99 3 5)
(indirect-x #x81 2 6)
(indirect-y #x91 2 6)))
;;; STACK INSTRUCTIONS
; TODO: look up flags affected
(TXS (affects) ((implied #x9a 1 2))) ; transfer X to SP
(TSX (affects) ((implied #xba 1 2))) ; transfer SP to X
(PHA (affects) ((implied #x48 1 3))) ; push A
(PLA (affects) ((implied #x68 1 4))) ; pull A
(PHP (affects) ((implied #x08 1 3))) ; push status
(PLP (affects) ((implied #x28 1 4))) ; pull status
(STX ; store X register
(affects)
((zero-page #x86 2 3)
(zero-page-y #x96 2 4)
(absolute #x8e 3 4)))
(STY ; store Y register
(affects)
((zero-page #x84 2 3)
(zero-page-x #x94 2 4)
(absolute #x8c 3 4))))
;;;
;;; INSTRUCTIONS
;;;
;;; Reference: http://www.6502.org/tutorials/6502opcodes.html
(define-syntax (define-instruction stx)
(define-syntax-class mnemonic
(pattern mnemonic:id #:with name (syntax-upcase stx #'mnemonic)))
(syntax-parse stx
; Most adressing modes result in a an adress adr
[(_define-instruction (mne:mnemonic adr) . body)
#'(define (mne.name adr) #;(displayln (list 'mne adr)) . body)]
; The addression mode "implied" has no adress.
[(_define-instruction (mne:mnemonic) . body)
#'(define (mne.name) #;(displayln (list 'mne)) . body)]))
; TODO: Handle cycles on branch operations
(define-syntax (extra-cycle stx) (syntax-parse stx [(_extra-cycle) #'(void)]))
;;; EMULATOR ONLY
(define-instruction (stop a) (raise 'stop)) ; stop emulation
;;; MOVE INSTRUCTIONS
(define-instruction (sta a) (store a A))
(define-instruction (stx a) (store a X))
(define-instruction (sty a) (store a Y))
(define-instruction (lda a) (let ([v (load a)]) (A! v) (S! v) (Z! v)))
(define-instruction (ldx a) (let ([v (load a)]) (X! v) (S! v) (Z! v)))
(define-instruction (ldy a) (let ([v (load a)]) (Y! v) (S! v) (Z! v)))
(define-instruction (tax _) (X! A) (S! X) (Z! X))
(define-instruction (tay _) (Y! A) (S! Y) (Z! Y))
(define-instruction (txa _) (A! X) (S! A) (Z! A))
(define-instruction (tya _) (A! Y) (S! A) (Z! A))
(define-instruction (pla _) (let ([v (pull!)]) (A! v) (S! v) (Z! v)))
(define-instruction (tsx _) (let ([v (pull!)]) (X! v) (S! v) (Z! v)))
(define-instruction (pha _) (push! A))
(define-instruction (txs _) (push! X))
(define-instruction (bit a) (let ([v (load a)])
(S! v)
(if (= (byte-and v #b01000000) #b01000000) (V! 1) (V! 0))
(Z! (byte-and v A))))
;;; LOGICAL AND ARITHMETICAL
(define-instruction (ora a) (let ([v (byte-or A (load a))]) (A! v) (S! v) (Z! v)))
(define-instruction (and a) (let ([v (byte-and A (load a))]) (A! v) (S! v) (Z! v)))
(define-instruction (eor a) (let ([v (byte-xor A (load a))]) (A! v) (S! v) (Z! v)))
(define-instruction (cmp a) (let ([v (byte- A (load a))]) (C! v) (S! v) (Z! v)))
(define-instruction (cpx a) (let ([v (byte- X (load a))]) (C! v) (S! v) (Z! v)))
(define-instruction (cpy a) (let ([v (byte- Y (load a))]) (C! v) (S! v) (Z! v)))
(define-instruction (dex _) (let ([v (byte-dec X)]) (X! v) (S! v) (Z! v)))
(define-instruction (inx _) (let ([v (byte-inc X)]) (X! v) (S! v) (Z! v)))
(define-instruction (dey _) (let ([v (byte-dec Y)]) (Y! v) (S! v) (Z! v)))
(define-instruction (iny _) (let ([v (byte-inc Y)]) (Y! v) (S! v) (Z! v)))
(define-instruction (dec a) (let ([v (byte-dec (load a))]) (store a v) (S! v) (Z! v)))
(define-instruction (inc a) (let ([v (byte-inc (load a))]) (store a v) (S! v) (Z! v)))
(define-instruction (adc a) (adc-body (load a)))
(define-instruction (sbc a) (adc-body (byte-neg (load a))))
(define (adc-body v)
; Note: The NES doesn't support decimal mode, so the D flag is ignored.
; Formulas for overflow flag:
; http://www.righto.com/2012/12/the-6502-overflow-flag-explained.html
(let* ([c (if (C?) 1 0)]
[t (+ A v c)]
[s (byte t)])
(if (> t #xff) (set-C) (clear-C))
; TODO : Use one of the efficient formulas for V instead
(V! (if (or (and (byte-neg? A) (byte-neg? v) (byte-pos? s))
(and (byte-pos? A) (byte-pos? v) (byte-neg? s)))
1 0))
(A! s)
(Z! s)
(S! t)))
(define-instruction (ror a)
(let* ([v (if a (load a) A)]
[w (byte-ror v (C?))])
(if (odd? v) (set-C) (clear-C))
(S! w)
(Z! w)
(if a (store a w) (A! w))))
(define-instruction (rol a)
(let* ([v (if a (load a) A)]
[w (byte-rol v (C?))])
(if (byte-msb? v) (set-C) (clear-C))
(S! w)
(Z! w)
(if a (store a w) (A! w))))
(define-instruction (lsr a)
(let* ([v (if a (load a) A)]
[w (byte-lsr v)])
(if (odd? v) (set-C) (clear-C))
(S! w)
(Z! w)
(if a (store a w) (A! w))))
(define-instruction (asl a)
(let* ([v (if a (load a) A)]
[w (byte-asl v)])
(if (byte-msb? v) (set-C) (clear-C))
(S! w)
(Z! w)
(if a (store a w) (A! w))))
;;; CONTROL
; Note: When the addressing mode is relative, a is the pc+displacement
(define-instruction (bpl a) (unless (S?) (PC! a)))
(define-instruction (bmi a) (when (S?) (PC! a)))
(define-instruction (bvc a) (when (= V 0) (PC! a)))
(define-instruction (bvs a) (when (= V 1) (PC! a)))
(define-instruction (bcc a) (unless (C?) (PC! a)))
(define-instruction (bcs a) (when (C?) (PC! a)))
(define-instruction (bne a) (unless (Z?) (PC! a)))
(define-instruction (beq a) (when (Z?) #;(displayln (list 'HERE 'PC PC 'a a)) (PC! a)))
(define-instruction (brk _)
(let ([pc+2 (+ PC 2)] ; todo: only +1 here?
[sr ; status register as integer
(+ (if (C?) 1 0)
(if (Z?) 2 0)
(if (I?) 4 0)
(if (D?) 8 0) ; D = 1 on the NES
16 ; B = 1 when PHP or BRK is used
32 ; U, unused, that is, always set
(if (V?) 64 0)
(if (S?) 128 0))])
(push! (high pc+2))
(push! (low pc+2))
(push! sr)
(set-B) ; set break flag
(PC! (word- (word (load #xFFFF) (load #xFFFE)) 1))))
(define (handle-nmi)
(let ([pc (+ PC 1)] ; RTI will subtract 1
[sr ; status register as integer
(+ (if (C?) 1 0)
(if (Z?) 2 0)
(if (I?) 4 0)
(if (D?) 8 0) ; D = 1 on the NES
0 ; B = 1 when PHP or BRK is used
32 ; U, unused, that is, always set
(if (V?) 64 0)
(if (S?) 128 0))])
(push! (high pc))
(push! (low pc))
(push! sr)
; (set-B) ; set break flag
(PC! (word- (word (load #xFFFB) (load #xFFFA)) 1))))
(define-instruction (rti _); (affects C Z I D B V S)
(let ([sr (pull!)] [l (pull!)] [h (pull!)])
(if (bit-clear? sr 0) (clear-C) (set-C))
(if (bit-clear? sr 1) (clear-Z) (set-Z))
(if (bit-clear? sr 2) (clear-I) (set-I))
; (if (bit-clear? sr 3) (clear-D) (set-D)) ; not on the NES
(if (bit-clear? sr 4) (clear-B) (set-B))
; (if (bit-clear? sr 5) (clear-U) (set-U)) ; unused flag always 1
(if (bit-clear? sr 6) (clear-V) (set-V))
(if (bit-clear? sr 7) (clear-S) (set-S))
(PC! (- (word h l) 1))))
; TODO: check that we are in fact pushing the correct PC
(define-instruction (jmp a) (PC! (- a 1))) ; this must match handling of pc in step
(define-instruction (jsr a) (push! (high PC)) (push! (low PC)) (PC! (- a 1)))
(define-instruction (rts _) (let ([l (pull!)] [h (pull!)]) (PC! (word h l))))
(define-instruction (nop _) (void))
;;; STATUS REGISTER
(define-instruction (clc _) (clear-C))
(define-instruction (sec _) (set-C))
(define-instruction (cld _) (clear-D))
(define-instruction (sed _) (set-D))
(define-instruction (cli _) (clear-I))
(define-instruction (sei _) (set-I))
(define-instruction (clv _) (clear-V))
(define-instruction (php a)
(push! (+ (if (C?) 1 0)
(if (Z?) 2 0)
(if I 4 0)
(if (D?) 8 0)
; 8 ; D = 1 on the NES
16 ; B = 1 when PHP or BRK is used
32 ; U, unused, that is, always set
(if (V?) 64 0)
(if (S?) 128 0))))
(define-instruction (plp a)
(let ([b (pull!)])
(if (zero? (bitand b 1)) (clear-C) (set-C))
(if (zero? (bitand b 2)) (clear-Z) (set-Z))
(if (zero? (bitand b 4)) (clear-I) (set-I))
(if (zero? (bitand b 8)) (clear-D) (set-D))
(if (zero? (bitand b 16)) (clear-B) (set-B))
; ignore U
(if (zero? (bitand b 64)) (clear-V) (set-V))
(if (zero? (bitand b 128)) (clear-S) (set-S))))
; Now that the instructions are defined, we can associate each opcode
; with its handler.
(register-opcode-handlers)
;;;
;;; DISASSEMBLE
;;;
(define (disassemble-single a)
; Disassemble a single instruction
(define opcode (load a)) ; fetch opcode
(define mode (bytes-ref opcode-modes opcode)) ; find adressing mode
(define size (bytes-ref opcode-sizes opcode)) ; instruction size
(define b1 (and (> size 1) (load (+ a 1))))
(define b2 (and (> size 2) (load (+ a 2))))
(define b1$ (and b1 (~a "$" (hex2 b1))))
(define b2$ (and b2 (~a "$" (hex2 b2))))
(define b$ (and b1 b2 (~a "$" (hex4 (word b2 b1)))))
(define (br+ a x) (if (byte-neg? x) (+ a x (- #x100) 2) (+ a x 2)))
; (displayln (list 'opcode opcode 'mode mode 'size size b1 b2))
(define effective-operand
; todo: order these in most-used-first order
(cond ; ; ***EXAMPLES***
[(= mode immediate) (list (list 'quote b1$))] ; LDA #$20
[(= mode zero-page) (list b1$)] ; LDA $20
[(= mode zero-page-x) (list b1$ 'x)] ; LDA $20,x
[(= mode zero-page-y) (list b1$ 'y)] ; LDX $20,y (LDX, STX only)
[(= mode absolute) (list b$ )] ; LDA $1234
[(= mode absolute-x) (list b$ 'x)] ; LDA $1234,x
[(= mode absolute-y) (list b$ 'y)] ; LDA $1234,y
[(= mode indirect) (list (list b$) )] ; JMP ($1234) (JMP only)
[(= mode indirect-x) (list (list b1$ 'x))] ; LDA ($44,x)
[(= mode indirect-y) (list (list b1$ 'y))] ; LDA ($44),y
[(= mode relative) (list (hex4 (br+ a b1)))] ; RELATIVE BRANCHING
[(= mode implied) (list)] ; BRK
[(= mode accumulator) (list 'A)] ; ROL A
[else (error 'step (~a "Unhandled mode: " mode " Opcode: " opcode))]))
(define mnemonic (opcode->mnemonic opcode))
(define (hex2* n) (if n (~a (hex2 n) " ") " "))
(list (string-append (hex4 a) " " (hex2* opcode) (hex2* b1) (hex2* b2))
(cons mnemonic effective-operand)))
(define (mem-dump a [lines 8])
(define (byte a) (hex (load (word-and a #xFFFF))))
(define (bytes4 a) (~a (byte a) " " (byte (+ a 1)) " " (byte (+ a 2)) " " (byte (+ a 3)) " "))
(define (printable? c) (regexp-match #px"[ -~]" (string c)))
(define (ch x) (let ([c (integer->char x)]) (if (printable? c) c #\.)))
(define (str a) (apply string (for/list ([x 16]) (ch (load (word-and (+ a x) #xFFFF))))))
(string-append*
(for/list ([l lines])
(let ([a (+ a (* l 16))])
(define bytes
(~a (bytes4 a) " " (bytes4 (+ a 4)) " " (bytes4 (+ a 8)) " " (bytes4 (+ a 12)) " "))
(~a (hex4 a) " " bytes " " (str a) "\n")))))
(define (ppu-mem-dump a [lines 8])
(define (byte a) (hex (ppuload (word-and a #xFFFF))))
(define (bytes4 a) (~a (byte a) " " (byte (+ a 1)) " " (byte (+ a 2)) " " (byte (+ a 3)) " "))
(define (printable? c) (regexp-match #px"[ -~]" (string c)))
(define (ch x) (let ([c (integer->char x)]) (if (printable? c) c #\.)))
(define (str a) (apply string (for/list ([x 16]) (ch (ppuload (word-and (+ a x) #xFFFF))))))
(string-append*
(for/list ([l lines])
(let ([a (+ a (* l 16))])
(define bytes
(~a (bytes4 a) " " (bytes4 (+ a 4)) " " (bytes4 (+ a 8)) " " (bytes4 (+ a 12)) " "))
(~a (hex4 a) " " bytes " " (str a) "\n")))))
;;;
;;; ASSEMBLER
;;;
; (define immediate 0)
; (define zero-page 1)
; (define zero-page-x 2) ; aka pre-indexed indirect
; (define zero-page-y 3) ; aka pre-indexed indirect
; (define absolute 4)
; (define absolute-x 5)
; (define absolute-y 6)
; (define indirect 7)
; (define indirect-x 8) ; modeIndexedIndirect
; (define indirect-y 9) ; modeIndirectIndexed
; (define relative 10)
; (define implied 11)
; (define accumulator 12)
; (define todo 13)
; | Addressing Mode | SEXP-based format | String format |
; |-----------------|-------------------|----------------|
; | Implied | (brk) | "brk" |
; | Immediate | (lda $00) | "lda #$00" |
; | Accumulator | (rol A) | "rol a" |
; | Zero-page | (lda $03) | "lda $03" |
; | Zero-page, X | (lda $03 x) | "lda $03, x" |
; | Zero-page, Y | (ldx $03 y) | "ldx $03, y" |
; | Absolute | (sbc $0001) | "sbc $0001" |
; | Absolute, X | (lda $1234 x) | "lda $1234, x" |
; | Absolute, Y | (lda $1234 y) | "lda $1234, y" |
; | Indirect | (jmp ($1234) ) | "jmp ($1234) |
; | Indirect, X | (lda ($12) x) | "lda ($12), x" |
; | Indirect, Y | (lda ($34) y) | "lda ($34), y" |
; | Relative | (bne fd) | "bne &fd" |
(define (literal lit [signal-error? #t])
(cond
[(number? lit) lit]
[(symbol? lit) (literal (symbol->string lit))]
[(string? lit) (match lit
[(regexp #rx"\\$([0-9a-fA-F]*)" (list all hex)) (string->number hex 16)]
[(regexp #rx"([0-9]*)" (list all dec)) (string->number dec 10)]
[else (if signal-error? (error 'literal lit) #f)])]
[else (error 'literal "expected number, got ~a" lit)]))
(define (assembler lines [pass 1] [symbol-table (make-hash)])
(when (= pass 2) (displayln symbol-table))
;; Pass 1 and 2 are almost identical.
;; When pass 1 begins the symbol table is empty.
;; When pass 2 begins the symbol table contains all labels seen in pass 1,
;; which means jumps and branches can be resolved.
(define cur 0)
(define (label? sym) (and (symbol? sym) (regexp-match #px"^.*[:]$" (symbol->string sym))))
(define (label-name sym) (string->symbol (second (regexp-match #px"^(.*)[:]$" (~a sym)))))
(define (resolve sym) (hash-ref symbol-table sym (if (= pass 1) 0
(begin
(displayln sym)
#f))))
(define (assemble-all lines) (for/list ([line lines]) (assemble-line line)))
(define (pick-mode mne adr zp-mode abs-mode)
(if (and (has-mode? mne zp-mode) (<= 0 adr 255)) zp-mode abs-mode))
(define (assemble-line line)
; (displayln (list 'assemble-line line))
(match line
[(list '* '= adr) (set! cur (literal adr)) `(* = ,(literal adr))]
[lab #:when (label? lab) (when (= pass 1) (hash-set! symbol-table (label-name lab) cur)) lab]
[(list mne) (assemble-instruction line implied mne)]
[(list mne 'A) (assemble-instruction line accumulator mne)]
[(list mne 'a) (assemble-instruction line accumulator mne)]
[(list mne (list 'quote const)) (assemble-instruction line immediate mne (literal const))]
[(list mne (list adr)) (assemble-instruction line indirect mne (literal adr))]
[(list mne (list adr (or 'x 'X)))(assemble-instruction line indirect-x mne (literal adr))]
[(list mne (list adr)(or 'y 'Y)) (assemble-instruction line indirect-y mne (literal adr))]
[(list mne offset)
#:when (has-mode? mne relative)
(let ([offset (if (symbol? offset) (resolve offset) offset)])
(assemble-instruction line relative mne (literal offset)))]
[(list mne adr)
(let* ([a (or (literal adr #f) (resolve adr))] [mode (pick-mode mne a zero-page absolute)])
(assemble-instruction line mode mne a))]
[(list mne adr (or 'x 'X))
(let* ([a (or (literal adr #f) (resolve adr))] [mode (pick-mode mne a zero-page-x absolute-x)])
(assemble-instruction line mode mne a))]
[(list mne adr (or 'y 'Y))
(let* ([a (or (literal adr #f) (resolve adr))] [mode (pick-mode mne a zero-page-y absolute-y)])
(assemble-instruction line mode mne a))]
[_ (error 'assembler "got: ~a " line)]))
(define (assert-mode line mne mode)
(unless (has-mode? mne mode)
(displayln (list 'assert-mode 'line line))
(error 'assembler (~a "The mode " mode " is not a legal addressing mode for " mne))))
(define (assemble-instruction line mode mne [operand 0])
; (displayln (list 'assemble-instruction 'operand operand))
; (displayln (list 'ai 'line line))
(assert-mode line mne mode)
(define opcode (mnemonic+mode->opcode mne mode))
(define operand-bytes
(cond
[(member mode (list accumulator implied)) '()]
[(member mode (list immediate indirect-x indirect-y )) (list operand)]
[(member mode (list indirect absolute absolute-x absolute-y)) (if operand
(list (low operand)
(high operand))
(list 0 0))]
[(member mode (list zero-page zero-page-x zero-page-y)) (list operand)]
[(member mode (list relative)) (list (byte (- operand cur 2)))]
[else (displayln (list 'assembler 'line line 'mne mne 'mode mode 'opcode opcode))
(error 'assembler "unexpected mode?")]))
(let ([c cur])
(unless (= (+ (length operand-bytes) 1) (bytes-ref opcode-sizes opcode))
(displayln line) (error 'assembler))
(set! cur (+ cur 1 (length operand-bytes)))
(cons opcode operand-bytes)
; Use (cons c version to get addresses for each line
#;(list (hex4 c) line (list (map hex2 (cons opcode operand-bytes))))))
(cond
[(= pass 1) (assemble-all lines)
(assembler lines 2 symbol-table)]
[(= pass 2) (assemble-all lines)]))
(define (install-opcodes-from-assembler instructions [cur-pc 0])
(define cur cur-pc)
(for ([instruction instructions])
(match instruction
[(list '* '= adr) (set! cur adr)]
[(list b1) (store cur b1)
(set! cur (+ cur 1))]
[(list b1 b2) (store cur b1) (store (+ cur 1) b2)
(set! cur (+ cur 2))]
[(list b1 b2 b3) (store cur b1) (store (+ cur 1) b2) (store (+ cur 2) b3)
(set! cur (+ cur 3))]
[label #:when (symbol? label) (void)]
[_ (displayln instruction) (error 'install-opcodes-from-assembler)])))
(define (assembler->traditional sexp-lines)
(define (to-hex n) (if (symbol? n) n (~a "$" (number->string n 16))))
(define (to-traditional s)
(match s
[(list '* '= a) (~a "* = " a)]
[(list mne 'A) (~a mne " A")] ; accumulator
[(list mne 'a) (~a mne " a")]
[(list mne (list 'quote const)) (~a mne " #" (to-hex const) )]
[(list mne (list adr)) (~a mne " (" (to-hex adr) ")")]
[(list mne (list adr 'x)) (~a mne " (" (to-hex adr) ",x)")]
[(list mne (list adr) 'y) (~a mne " (" (to-hex adr) "),y")]
[(list mne adr) (~a mne " " (to-hex adr) )]
[(list mne adr 'x) (~a mne " " (to-hex adr) ",x" )]
[(list mne adr 'y) (~a mne " " (to-hex adr) ",y" )]
[_else (displayln s)
(error 'sexp-source->traditional "missed an addressing mode?")]))
(apply string-append
(for/list ([line sexp-lines])
(string-append (to-traditional line) "\n"))))
; ADDRESSING MODE TRADITIONAL SEXP
; immediate 0 LDA #$20 (LDA '$20)
; zero-page 1 LDA $20 (LDA $20)
; zero-page-x 2 LDA $20,x (LDA $20 x)
; zero-page-y 3 LDX $20,y (LDA $20 y)
; absolute 4 LDA $1234 (LDA $1234)
; absolute-x 5 LDA $1234,x (LDA $1234 x)
; absolute-y 6 LDA $1234,y (LDA $1234 y)
; indirect 7 JMP ($1234) (JMP ($1234))
; indirect-x 8 LDA ($44,x) (LDA ($44 x)
; indirect-y 9 LDA ($44),y (LDA ($44) y)
; relative 10 BNE label (BNE label)
; implied 11 BRK (BRK)
; accumulator 12 ROL A (ROL A)
(define (traditional->assembler lines)
;;; The following syntax is a very small subset of the syntax expected by cc65.
; [] means optional
; <line> ::= <directive> | <label> | [<label>] <mnemonic>
; <label> ::= <name>: ; a label is a name followed by a colon
; <directive> ::= * = <address> ; pc at start of line
; | name = <number> ; symbolic constant
; <number> The $ and h prefix means hexadecimal number ; hex numbers
; The % prefix means binary ; binary numbers
; A bare number is a decimal number ; decimal numbers
;
(define (convert-line line)
(let ([line (skip-whitespace line)])
(or (lex-star-line line)
(match (lex-label line)
[(list label rest)
(define after-label
(match (lex-mnemonic (skip-whitespace rest))
[(list #f rest) '()]
[(list mne rest) (match (lex-operand (skip-whitespace rest))
[(list #f) (list mne)] ; implied
[operand (cons mne operand)])]))
(if label
(cons label after-label)
after-label)]))))
(define (lex-star-line line)
(match (regexp-match #px"^\\*[ \t]*=[ \t]*(.*)$" line)
[(list _ rest) (list* '* '= (lex-operand (skip-whitespace rest)))]
[_ #f]))
(define (lex-label line)
(match (regexp-match #px"^(\\D\\S*):(.*)$" line)
[(list _ label rest) (list label rest)]
[_ (list #f line)]))
(define (skip-whitespace line)
(second (regexp-match #px"^\\s*(.*)$" line)))
(define (lex-mnemonic line)
(match (regexp-match #px"^(\\D\\D\\D)(.*)$" line)
[(list _ mne rest) (list (string->symbol mne) rest)]
[_ (list #f line)]))
(define (lex-number line)
(let ([str (skip-whitespace line)])
(match (regexp-match #px"^([$h][0-9a-fA-F]+)(.*)$" line) ; hex
[(list _ operand rest) (string->symbol operand)]
[_ (match (regexp-match #px"^[%]([01]+)(.*)$" line) ; binary
[(list _ operand rest) (string->number operand 2)]
[_ (match (regexp-match #px"^([0-9]+)(.*)$" line) ; decimal
[(list _ operand rest) (string->number operand)]
[_ (match (regexp-match #px"^([a-zA-Z][a-zA-Z0-9_]*)(.*)$" line)
[(list _ reference more) (string->symbol reference)]
[_ #f])])])])))
(define (lex-operand line)
(displayln line)
(match (regexp-match #px"^#(.*)$" line) ; immediate
[(list _ rest) (match (lex-number rest)
[#f "ERROR: number after # missing"]
[n (list (list 'quote n))])]
[_ (match (regexp-match #px"^[(](.*)[)][ \t]*,[ \t]*([yY])(.*)$" line) ; indirect y-indexed
[(list _ num index more) (list (list (lex-number num)) (string->symbol index))]
[_ (match (regexp-match #px"^[(](.*),[ \t]*([xXyY])[ \t]*[)](.*)$" line) ; indirect x/y-in
[(list _ num index more) (list (list (lex-number num) (string->symbol index)))]
[_ (match (regexp-match #px"^[(](.*)[)](.*)$" line) ; indirect
[(list _ num more) (list (list (lex-number num)))]
[_ (match (regexp-match #px"^(.*),[ \t]*([xXyY])$" line) ; indexed
[(list _ more index)
(list (lex-number (skip-whitespace more)) (string->symbol index))]
[_ (list (lex-number line))])])])])])) ; absolute
(for/list ([line lines])
(convert-line line)))
(define (split-string-into-lines text)
(for/list ([line (in-lines (open-input-string text))])
line))
;;;
;;; INITIALIZATION
;;;
(define (hexify n) (number->string n 16))
(define (hexify* xs) (map hexify xs))
(define (hexify** xss) (map hexify* xss))
(define (hexes->vector str)
(define (hex x) (string->number x 16))
(list->vector (map hex (string-split str " "))))
(define (install-program vec start-address)
(for ([a (in-naturals start-address)]
[v (in-vector vec)])
(store a v)))
#;(begin
(assembler '((lda '10)
(bne 20)
(lda 30 x)
(lda (40) y)))
(define test-program "a9 20 ff")
(hexes->vector test-program)
(install-program (hexes->vector test-program) 0)
; (run 0)
(traditional->assembler
(split-string-into-lines
"* = $400
lda #$20
bne $a
lda foo,y
lda ($54,x)
ldx $54,y"))
(assembler
(traditional->assembler
(split-string-into-lines
"* = $400
LDA #$20
LDA $20
LDA $20,x
LDX $20,y
LDA $1234
LDA $1234,x
LDA $1234,y
JMP ($1234)
LDA ($44,x)
LDA ($44),y
BNE 20
ROL A")))
(hexify**
(rest
(assembler
(traditional->assembler
(split-string-into-lines
"* = $0
LDA #$20
LDA $20
LDA $20,x
LDX $20,y
LDA $1234
LDA $1234,x
LDA $1234,y
JMP ($1234)
LDA ($44,x)
LDA ($44),y
BNE 20
ROL A")))))
)
(define test06
'((* = $600)
(ROL A)
(LDA '$6A)
(STA $50)
(LDA '$6B)
(STA $51)
(LDA '$A1)
(STA $60)
(LDA '$A2)
(STA $61)
(LDA '$FF)
(ADC '$FF)
(ADC '$FF)
(SBC '$AE)
(STA $40)
(LDX $40)
(ADC $00 X)
(SBC $01 X)
(ADC $60)
(SBC $61)
(STA $0120)
(LDA '$4D)
(STA $0121)
(LDA '$23)
(ADC $0120)
(SBC $0121)
(STA $F0)
(LDX $F0)
(LDA '$64)
(STA $0124)
(LDA '$62)
(STA $0125)
(LDA '$26)
(ADC $0100 X)
(SBC $0101 X)
(STA $F1)
(LDY $F1)
(LDA '$E5)
(STA $0128)
(LDA '$E9)
(STA $0129)
(LDA '$34)
(ADC $0100 Y)
(SBC $0101 Y)
(STA $F2)
(LDX $F2)
(LDA '$20)
(STA $70)
(LDA '$01)
(STA $71)
(LDA '$24)
(STA $72)
(LDA '$01)
(STA $73)
(ADC ($41 X))
(SBC ($3F X))
(STA $F3)
(LDY $F3)
(LDA '$DA)
(STA $80)
(LDA '$00)
(STA $81)
(LDA '$DC)
(STA $82)
(LDA '$00)
(STA $83)
(LDA '$AA)
(ADC ($80) Y)
(SBC ($82) Y)
(STA $30)))
(define adc-test
'((* = $600)
(clc)
(lda '$f0)
(adc '$07)
(sta $00) ; C=0 expected $f7
(sec)
(lda '$f0)
(adc '$07)
(sta $01) ; C=0 expected $f8
(clc)
(lda '$f0)
(adc '$20)
(sta $02) ; C=1 expected $110 aka _10
(sec)
(lda '$f0)
(adc '$20)
(sta $03) ; C=1 expected $111 aka _11
(STOP)))
#;(begin (install-opcodes-from-assembler
(assembler (append adc-test '((STOP)))))
(run #x0600)
(displayln (mem-dump 0)))
;;;
;;; ROM FILES
;;;
;; NES files are stored in the file format ines. The file extension is usually "nes".
(struct ines (header ; a header with more information
trainer ; 0 or 512 bytes
prg-rom ; 16384 * x bytes
chr-rom ; if present (8192 * y bytes
playchoice-inst-rom ; if present (0 or 8192 bytes
playchoice-prom ; if present (16 bytes Data)
mirroring-type ;
mapper)
#:transparent)
(struct head (prg-rom-size chr-rom-size flag6 flag7 prg-ram-size flag9 flag10)
#:transparent)
(define (read-ines-file path)
(with-input-from-file path
(λ() (read-ines))))
(define (read-ines [in (current-input-port)])
(parameterize ([current-input-port in])
;; Header (16 bytes in total)
; 1. Tag: "NES^Z"
(define header (read-bytes 16))
(unless (equal? (subbytes header 0 3) #"NES")
(displayln "Warning: rom files does not have NES header" (current-error-port)))
; 2. Size of PRG ROM in 16 KB Units
(define prg-rom-size (* 16 1024 (bytes-ref header 4)))
; 3. Size of CHR ROM in 8 KB Units
; (If the size is 0, then the board uses CHR RAM)
(define chr-rom-size (* 8 1024 (bytes-ref header 5)))
; 4. Flags 6 and 7
(define flag6 (bytes-ref header 6))
(define flag7 (bytes-ref header 7))
; 5. Size of PRG RAM in 8 KB Units
(define prg-ram-size (* 8 1024 (bytes-ref header 8)))
; 6. Flags 9 and 10
(define flag9 (bytes-ref header 10))
(define flag10 (bytes-ref header 11))
; The remaining bytes of the header are zero-filled
;; Interpret flag 6
(define mirroring-type (if (bit-set? flag6 0) 'vertical 'horizontal))
(define sram-at-6000-7fff (bit-set? flag6 1))
(define trainer? (bit-set? flag6 2)) ; If yes, 512 byte trainer at 7000-71FF
(define four-screen-mode? (bit-set? flag6 3)) ; If yes, the M bit has no effect
(define lower-4bit-of-mapper (bitlsr (bitlsr (bitlsr (bitlsr (byte-and flag6 #b11110000))))))
;; Interpret flag 7
(define vs-system? (bit-set? flag7 0)) ; arcade system
(define playchoice? (bit-set? flag7 1)) ; arcade system with two players
(define nes-2.0-rules? (and (bit-set? flag7 3) (bit-clear? flag7 2)))
(define upper-4bit-of-mapper (byte-and flag7 #b11110000))
;; Mapper
(define mapper (byte-or upper-4bit-of-mapper lower-4bit-of-mapper))
;; Trainer (0 or 512 bytes)
(define trainer (if trainer? (read-bytes 512) #""))
;; PRG ROM
(define prg-rom (read-bytes prg-rom-size))
;; CHR ROM
(define chr-rom (read-bytes chr-rom-size))
;; PlayChoice
(define playchoice-inst-rom (and playchoice? (read-bytes 8192)))
(define playchoice-prom (and playchoice? (read-bytes 16)))
(ines (head prg-rom-size chr-rom-size flag6 flag7 prg-ram-size flag9 flag10)
trainer prg-rom chr-rom playchoice-inst-rom playchoice-prom
mirroring-type mapper)))
(define (ines-human-info r)
(define h (ines-header r))
(list 'prg-rom-size (head-prg-rom-size h)
'prg-ram-size (head-prg-ram-size h)
'chr-size (head-chr-rom-size h)
'mapper (ines-mapper r)
'mirroring (ines-mirroring-type r)))
;;;
;;; INSTALLING THE ROM INTO MEMORY
;;;
; DK '(prg-rom-size 16384 prg-ram-size 0 chr-size 8192 mapper 0 mirroring horizontal)
(define (install-rom r)
(define h (ines-header r))
(define prg-size (head-prg-rom-size h))
(define chr-size (head-chr-rom-size h))
(define prg (ines-prg-rom r))
(define chr (ines-chr-rom r)) ; this is to be installed in the PPU
(define mapper (ines-mapper r))
; $6000 - $7FFF Battery backed ram (size 2KB or $KB - mirrored to fill range)
; $8000 - $BFFF First 16KB of ROM
; $C000 - $FFFF Last 16KB of ROM (or mirror of first part)
(displayln (list 'prg-size prg-size))
(match mapper
[0 (for ([a (in-naturals #x8000)]
[b prg]) ; install prg into $8000 - ...
(store a b))
(when (= prg-size (* 16 1024)) ; mirror if prg is only 16KB
(make-$C000-$FFFF-a-mirror-of-$8000-BFFF))
(for ([a chr-size] [b chr])
(ppustore a b))]))
;;;
;;; CHR ROM TO IMAGE
;;;
(define (make-half-row-cache)
;;; There are four different colors in a tile.
;;; The actual color is determined by the palette.
;;; For now just use four gray tones.
(for/vector ([b (in-range 256)])
; The cache is indexed as:
; (word nibble-from-bitplane0 nibble-from-bitplane1)
; Get the nibbles:
(define u (byte-upper-nibble b))
(define l (byte-lower-nibble b))
; Then combine bit pairs to get color number
(define (combine-bits l u i)
(if (bit-set? l i) ; lower bit
(if (bit-set? u i) ; upper bit
3 ; 11
1) ; 01
(if (bit-set? u i) ; upper bit
2 ; 10
0))) ; 00
;; Let's make a palette.
(define (gray n) (bytes 255 n n n))
(define palette (vector (gray 0) (gray 85) (gray 170) (gray 255)))
(bytes-append (vector-ref palette (combine-bits u l 3))
(vector-ref palette (combine-bits u l 2))
(vector-ref palette (combine-bits u l 1))
(vector-ref palette (combine-bits u l 0)))))
(define the-row-cache (make-half-row-cache))
(define (draw-tile cr n dc x y)
; draw tile number n from the chr-rom to the drawingcontext at position (x,y)
(define start (* 16 n)) ; each tile is 16 bytes
(define bp1 start) ; bitplane 1 is stored in the first 8 bytes
(define bp2 (+ start 8)) ; bitplace 2 is stored in the last 8 bytes
(for ([i 8])
(define b0 (bytes-ref cr (+ bp1 i)))
(define b1 (bytes-ref cr (+ bp2 i)))
(define u0 (byte-upper-nibble b0))
(define u1 (byte-upper-nibble b1))
(define l0 (byte-lower-nibble b0))
(define l1 (byte-lower-nibble b1))
; x y w h
(send dc set-argb-pixels x (+ y i) 4 1 (vector-ref the-row-cache (nibbles->byte u0 u1)))
(send dc set-argb-pixels (+ x 4) (+ y i) 4 1 (vector-ref the-row-cache (nibbles->byte l0 l1)))))
(define (chr-rom->image cr)
;; Each tile is stored using 16 bytes.
(define size (bytes-length cr))
(define n-tiles (/ size 16))
(define bank-size (* 16 16 16)) ; 4096 bytes contains 16x16 tiles og size 8x8 pixels
(define n-banks (/ size bank-size))
(define bank-width (* 16 8))
(define bank-height (* 16 8))
(displayln (list size n-tiles bank-size n-banks bank-width bank-height))
;; A pixel in a tile is represented as a 2 bit number.
;; The number is an index into a palette which holds the actual colors.
;; Make a bitmap large enough to contain all tiles
(define rows (quotient n-tiles 8))
(define cols 8)
(define bm (make-object bitmap% (* n-banks bank-width) bank-height))
(displayln bm)
(define dc (new bitmap-dc% [bitmap bm]))
(define cache (make-half-row-cache))
(for ([bank n-banks])
(for ([i 16]) ; row number
(for ([j 16]) ; col number
(define n (+ (* bank 256) (* i 16) j)) ; 16 tiles per row
(define x (+ (* bank bank-width) (* j 8)))
(define y (* i 8))
(draw-tile cr n dc x y))))
bm)
;;;
;;; PPU - Picture Processing Units
;;;
; Reference: https://wiki.nesdev.com/w/index.php/PPU_registers
(define-syntax (define-ppu-register stx)
(define-syntax-class access-type
(pattern read)
(pattern write)
(pattern read/write)
(pattern write-twice)
(pattern read/write-increment))
(define byte-masks #(1 2 4 8 16 32 64 128))
(define negated-byte-masks (for/vector ([b byte-masks]) (- 255 b)))
(define (bit-clear b pos) (bitwise-and b (vector-ref negated-byte-masks pos)))
(define (bit-set b pos) (bitwise-ior b (vector-ref byte-masks pos)))
(syntax-parse stx #:datum-literals (access fields bits)
[(_ name:id ; name of register
address:exact-nonnegative-integer ; located at this memory address
(access at:access-type) ; access type
(fields (field-name:id from:exact-nonnegative-integer to:exact-nonnegative-integer) ...)
(bits ( bit-name:id index:exact-nonnegative-integer) ...))
(with-syntax (; REGISTER NAME
[ppu-name ; a variable holds the value of the ppu register
(format-id #'name "ppu-~a" #'name)]
[ppu-name-set! ; store byte in register
(format-id #'name "ppu-~a-set!" #'name)]
; FIELDS
[(ppu-field-name! ...) ; used to set bit fields to a given number
(format-ids #'(field-name ...) "ppu-~a-~a!" #'((name field-name) ...))]
[(ppu-field-name-set! ...) ; used to set bit fields to a given number
(format-ids #'(field-name ...) "ppu-~a-~a!" #'((name field-name) ...))]
[(ppu-field-name ...) ; used to read fields as a number
(format-ids #'(field-name ...) "ppu-~a-~a" #'((name field-name) ...))]
; BITS
[(ppu-bit-name! ...) ; used to set bit to 0 or 1
(format-ids #'(bit-name ...) "ppu-~a-~a!" #'((name bit-name) ...))]
[(ppu-bit-name-clear ...) ; used to set bit to 0
(format-ids #'(bit-name ...) "ppu-~a-~a-clear" #'((name bit-name) ...))]
[(ppu-bit-name-set ...) ; used to set bit to 1
(format-ids #'(bit-name ...) "ppu-~a-~a-set" #'((name bit-name) ...))]
[(ppu-bit-name ...) ; used to read the bit as 0 or 1
(format-ids #'(bit-name ...) "ppu-~a-~a" #'((name bit-name) ...))]
[(ppu-bit-name? ...) ; used to read bit as a boolean
(format-ids #'(bit-name ...) "ppu-~a-~a?" #'((name bit-name) ...))]
; Derived information
[reg-index (- (syntax->datum #'address) #x2000)]
[(field-zero-mask ...) (for/list ([f (syntax->datum #'(from ...))]
[t (syntax->datum #'(to ...))])
(for/fold ([mask #x11111111]) ([i (in-range f (+ t 1))])
(bit-clear mask i)))]
[(field-one-mask ...) (for/list ([f (syntax->datum #'(from ...))]
[t (syntax->datum #'(to ...))])
(for/fold ([mask 0]) ([i (in-range f (+ t 1))])
(bit-set mask i)))])
(syntax/loc stx
(begin
; REGISTER
(define (ppu-name) (ppu-reg-ref reg-index))
(define (ppu-name-set! b) (ppu-reg-set! reg-index b))
; FIELDS
(begin
; TODO fix writing to fields
(define (ppu-field-name-set! v) (bitwise-ior (bitwise-and (ppu-name) field-zero-mask)
(byte<< v from)))
(define (ppu-field-name) (byte>> (bitwise-and (ppu-name) field-one-mask) from)))
...
; BITS
(begin
(define (ppu-bit-name-clear) (ppu-reg-set! reg-index (bit-clear (ppu-name) index)))
(define (ppu-bit-name-set) (ppu-reg-set! reg-index (bit-set (ppu-name) index)))
(define (ppu-bit-name?) (bit-set? (ppu-name) index))
(define (ppu-bit-name) (if (bit-set? (ppu-name) index) 1 0)))
...)))]))
(define-ppu-register ctrl #x2000
(access write)
(fields (N 0 1)) ; nametable select (two bit)
(bits (I 2) ; increment mode
(S 3) ; sprite tile select
(B 4) ; background tile select
(H 5) ; sprite height
(P 6) ; PPU master/slave
(V 7))) ; NMI Enable
(define (base-nametable-address) (+ #x2000 (* (ppu-ctrl-N) #x400)))
(define (vram-address-increment) (if (ppu-ctrl-I?) 32 1)) ; corresponds to down or right
(define (sprite-pattern-table-address) (if (ppu-ctrl-S?) #x1000 #x0000)) ; for 8x8 sprites
(define (background-pattern-table-address) (if (ppu-ctrl-B?) #x1000 #x0000))
(define (sprite-height) (if (ppu-ctrl-H?) 16 8)) ; width is always 8
(define (generate-nmi-at-start-of-vblank?) (ppu-ctrl-V?))
(define-ppu-register mask #x2001
(access write)
(fields)
(bits (g 0) ; grey scale
(m 1) ; background left column enable
(M 2) ; sprite left column enable
(b 3) ; background enable
(s 4) ; sprite enable
(R 5) ; color emphasis
(G 6) ; color emphasis
(B 7))) ; color emphasis
(define (greyscale?) (ppu-mask-g?))
(define (show-background-in-8-left-most-pixels?) (ppu-mask-m?))
(define (show-sprites-in-8-left-most-pixels?) (ppu-mask-M?))
(define (show-background?) (ppu-mask-b?))
(define (show-sprites?) (ppu-mask-s?))
(define (emphasize-red?) (case video-type [(ntsc) (ppu-mask-R?)] [(pal) (ppu-mask-G?)]))
(define (emphasize-green?) (case video-type [(ntsc) (ppu-mask-G?)] [(pal) (ppu-mask-R?)]))
(define (emphasize-blue?) (ppu-mask-B?))
(define-ppu-register status #x2002
(access read)
(fields)
; Reading bits 0,1,2,3,4 gets bits from the last value on the PPU bus (see "latch" below).
(bits (O 5) ; sprite overflow, read resets write pair for $2005/$2006 ?
(S 6) ; sprite 0 hit
(V 7))) ; vblank (0: not in vblank, 1: in vblank)
(define (sprite-overflow?) (ppu-status-O?)) ; see explanation on sprites
(define (sprite0-hit?) (ppu-status-S?)) ; see explanation on sprites
(define (vertical-blank?) (ppu-status-V?)) ; on during vertical blanking
(define-ppu-register oam-addr #x2003 ; oam read/write address
(access write) ; write twice with msb then lsb to set the address
(fields (a 0 7)) (bits))
(define-ppu-register oam-data #x2004 ; oam read/write data
(access read/write-increment) ; Note: writes will increment the address register
(fields (d 0 7)) (bits))
(define-ppu-register scroll #x2005 ; fine scroll position (two writes X, Y)
(access write-twice)
(fields (x 0 7)) (bits))
;; The PPU register ADDR needs special handling.
#;(define-ppu-register addr #x2006 ; PPU read/write address (two writes: MSB, LSB)
(access write-twice) (fields (a 0 7)) (bits))
(define ppu-addr-first-write? #f) ; first (of two) writes to ppu-addr ?
(define ppu-addr-current 0) ; current address
(define (ppu-addr-read) ppu-addr-current) ; read
(define (ppu-addr-write b) ; write
(set! ppu-addr-current (if ppu-addr-first-write?
(word (word-msb ppu-addr-current) b)
(word b (word-lsb ppu-addr-current))))
#;(unless ppu-addr-first-write?
(displayln (list 'ppu-addr-write ppu-addr-current) (current-error-port)))
(set! ppu-addr-first-write? (not ppu-addr-first-write?)))
;; The PPU register DATA also needs special handling.
#;(define-ppu-register data #x2007 ; PPU data read/write
(access read/write) (fields (d 0 7)) (bits))
(define (ppu-data-write b)
(ppustore ppu-addr-current b)
(set! ppu-addr-current (+ ppu-addr-current (if (ppu-ctrl-I?) 32 1))))
(define-ppu-register oam-dma #x4014 ; OAM DMA high address
(access write)
(fields (a 0 7)) (bits)) ; TODO: hook up in load / store
;;;
;;; PPU Stepping
;;;
; Reference: http://nesdev.icequake.net/PPU.txt
(define ppu-scan-line 0)
(define ppu-current-cycle 0)
(define ppu-step
; one scan line is 1364 ppu cycles (which is 1364/12 = 113+2/3 cpu cycles)
; one frame is 357368 cycles = 262 scanlines
(let ()
(define state 0) ; current state of the PPU
(define left 1) ; number of cycles remaining to stay in the current state
(define even-frame? #t) ; alternates between #f and #t
(define line 0) ; current scan line (counted from first visible line)
;; START OF FRAME
; these numbers does not match the code below
; 0. put vblank down (and generate nmi) <---!!!
; 1. wait 20 scan lines
; 2. 1 dummy scan line (alternates between 1360 and 1364 cycles)
; 3. 240 rendered scan lines
; 4. 1 wait one scan line
; 5. set vblank up
(λ (cycles)
(let loop ([cycles cycles]) ; cycles to spend
(cond
; 0. Start of frame
[(= state 0) ; (display "START FRAME" (current-error-port))
(set! even-frame? (not even-frame?))
(ppu-status-V-set) ; vblank starts
(set! nmi-due-to-vblank? #t) ; signal NMI to cpu
(send c on-paint)
(set! state 1)
(set! left (* 20 1364)) ; 20 lines, 1364 cycles each
(loop cycles)]
; 1. Wait 20 scan lines
[(= state 1) ;(display "1")
(cond
;; yield to cpu?
[(< cycles left) (set! left (- left cycles))]
;; waiting over
[else (define new-cycles (- cycles left)) ; use left cycles
(ppu-status-V-set) ; vblank stops
(set! state 2) ; next state
(set! left (if even-frame? 1364 1360)) ; dummy scan line
(loop new-cycles)])]
; 2. Dummy scan line. Alternates betwen 1364 and 1360 cycles
[(= state 2) ;(display "2")
(cond
;; yield to cpu?
[(< cycles left) (set! left (- left cycles))] ; use available cycles
;; ready for rendering
[else (define new-cycles (- cycles left)) ; use left cycles
(set! state 3)
(set! left 1364)
(set! line 0) ; next line is first
(render-line dc 0) ; visible line
(loop new-cycles)])]
; 3. Render one line at a time. Each lines is 1364 cycles.
[(= state 3) ;(display "3")
(cond
;; yield to cpu?
[(< cycles left) (set! left (- left cycles))] ; use available cycles
;; stay in state 3 (more lines to render)
[(< line 240) (define new-cycles (- cycles left)) ; use left cycles
(set! line (+ line 1))
(render-line dc line)
(set! left 1364)
(loop new-cycles)]
; ready for next state
[else (define new-cycles (- cycles left)) ; use left cycles
(set! state 4)
(set! left 1364)
(loop new-cycles)])]
; 4. Wait one scan line.
[(= state 4) ;(display "4")
(cond
;; yield to cpu?
[(< cycles left) (set! left (- left cycles))] ; use available cycles
;;
[else (define new-cycles (- cycles left))
(set! state 0)
(loop new-cycles)])]
[else (error)])))))
;;;
;;; PPU Tiles
;;;
; A screen consists of 32x30 (= 960) tiles.
; For each tile a byte is stored in a name table.
; SYNTAX (in-tiles a)
; The sequence syntax (in-tiles a) will generate a sequence of
; the 960 bytes in the nametable starting at address a.
(define-sequence-syntax in-tiles
(lambda () #'in-tiles/proc)
(lambda (stx)
(syntax-parse stx
[[(b) (_in-tiles start-address)]
(syntax/loc stx
[(b) (:do-in ([(start) start-address]
[(stop) (+ start-address 960)])
(integer? start)
([i start])
(< i stop)
([(b) (ppuload i)])
#t
#t
[(+ i 1)])])])))
(define (in-tiles/proc) (error 'in-tiles/proc))
; The 32x30 tiles can be divided into blocks of 2x2 tiles.
; This gives 16x16 blocks. The attribute table holds 2 bits
; per block indicating which palette is used in the block.
; Consider the first four tile rows:
; t00 t01 t02 t03 ... t30 t31 ; 32 tiles in a row
; t32 t33 t34 t53 ... t62 t63
; t64 t65 t66 t67 ... ...
; t96 t97 t98 t99 ... ...
; If we look at the block arrangement we get:
; b3 b2 b7 b6 ... b15 b14
; b1 b0 b5 b4 ... b13 b12
; The four bit pairs from block b0, b1, b2, and, b3 are stored in a single byte:
; bit position 76 54 32 10
; block 0 1 2 3
; That is if we have the attributes in the attribute table:
; a0, a1, a2, a3, ...
; then we need need to check whether we are on an even or an odd tile row number.
; On even rows (say row 0) we need to deliver the lower four bits.
; On odd rows (say row 1) we need to deliver the upper four bits.
; Of the four bits, the lower two bits are used first, then following two bits.
; However the bits are used twice since the block width is two tiles.
; The 32x30 tiles are 16x15 blocks. With 2 bits per block, we can store
; attributes for 4 blocks in each byte. This gives 16x15/4 = 60 bytes.
; However, the size of the attribute table is 64 bytes.
; SYNTAX (in-attributes a)
; The sequence syntax (in-tiles a) will generate a sequence of 2 bits numbers.
; The 2 bit numbers represent a palette.
; The sequences (in-tiles a) and (in-attributes a) can be used in parallel.
(define-sequence-syntax in-attributes
(lambda () #'in-attributes/proc)
(lambda (stx)
(syntax-parse stx
[[(a) (_in-attributes attribute-table scan-line)]
(syntax/loc stx
[(a) (:do-in ([(tile-row) (quotient scan-line 8)]
[(block-row) (quotient scan-line 16)]
[(start) (+ attribute-table (* 8 (quotient scan-line 16)))])
(and (integer? attribute-table) (integer? scan-line))
([c 0] ; tile column
[r tile-row]) ; tile row
(< r 30)
([(a) (let* ([j (+ attribute-table (* 8 (quotient r 4)) (quotient c 4))]
[b (ppuload j)]
[n (if (even? (quotient r 2)) ; even odd
(byte-lower-nibble b) ; even: 10 32
(byte-upper-nibble b))]) ; odd: 54 76
(if (even? (quotient c 2))
(byte-and (byte>> n 2) #b11)
(byte-and n #b11)))])
#t
#t
[(if (= c 31) 0 (+ c 1)) ; 32 tile columns in total
(if (= c 31) (+ r 1) r)])])])))
(define (in-attributes/proc) (error 'in-attributes/proc))
; The PPU bus works as a latch.
; "Latch" a circuit which retains whatever output state results from a momentary input signal
; until reset by another signal.
; Reading and writing to the PPU bus will fill the latch. I.e. the values stay on the bus.
; Rendering the background:
; A nametable contains tile numbers.
; There are 32 tiles in a row.
; The tile bitmap is stored in chr rom.
; Only two bits pr pixel is stored in the tile bitmap.
; The two bits are used as an index into a palette (each palette consists of four colors).
; The attribute table has two bits for each block (16x16 pixels) and determines
; for each block which which palette is used.
;
; The native rendering algorithm becomes.
; For each pixel:
; 1. Look up current palette in the attribute table.
; 2. Look up the tile number in the nametable.
; 3. Use the tile number to find the tile bitmap in chr rom,
; and use the palette to decode the tile.
; The following list of rgb values are from https://wiki.nesdev.com/w/index.php/PPU_palettes
; Note: The eight blacks are missing from the linked to table.
(define colors-as-rgb
#(#( 84 84 84) #( 0 30 116) #( 8 16 144) #( 48 0 136)
#( 68 0 100) #( 92 0 48) #( 84 4 0) #( 60 24 0)
#( 32 42 0) #( 8 58 0) #( 0 64 0) #( 0 60 0)
#( 0 50 60) #( 0 0 0) #( 0 0 0) #( 0 0 0)
#(152 150 152) #( 8 76 196) #( 48 50 236) #( 92 30 228)
#(136 20 176) #(160 20 100) #(152 34 32) #(120 60 0)
#( 84 90 0) #( 40 114 0) #( 8 124 0) #( 0 118 40)
#( 0 102 120) #( 0 0 0) #(236 238 236) #(76 154 236)
#(120 124 236) #(176 98 236) #( 0 0 0) #( 0 0 0)
#(228 84 236) #(236 88 180) #(236 106 100) #(212 136 32)
#(160 170 0) #(116 196 0) #( 76 208 32) #( 56 204 108)
#( 56 180 204) #( 60 60 60) #(236 238 236) #(168 204 236)
#(188 188 236) #(212 178 236) #( 0 0 0) #( 0 0 0)
#(236 174 236) #(236 174 212) #(236 180 176) #(228 196 144)
#(204 210 120) #(180 222 120) #(168 226 144) #(152 226 180)
#(160 214 228) #(160 162 160) #( 0 0 0) #( 0 0 0)))
(define color-objects
(for/vector ([rgb colors-as-rgb])
(match rgb [(vector r g b) (make-object color% r g b)])))
(define (color->color% c) (vector-ref color-objects c))
(define screen-buffer (make-bytes (* 4 256 240))) ; 4 bytes for each pixel
(define (plot-pixel/screen-buffer x y c)
(unless (>= y 240) ; skip the dummy line
(define i (+ (* (* 4 256) y) (* 4 x)))
(define rgb (if (< c (vector-length colors-as-rgb))
(vector-ref colors-as-rgb c)
#(255 0 0)))
(displayln (list x y i c))
(bytes-set! screen-buffer i 255) ; α = 255 means non-transparent
(bytes-set! screen-buffer (+ i 1) (vector-ref rgb 0))
(bytes-set! screen-buffer (+ i 2) (vector-ref rgb 1))
(bytes-set! screen-buffer (+ i 3) (vector-ref rgb 2))))
(define (render-screen-from-buffer dc)
;(displayln "SCREEN UPDATE" (current-error-port))
(send dc set-argb-pixels 0 0 256 240 screen-buffer))
#;(define line-buffer (make-bytes (* 4 256)))
#;(define (plot-pixel/line-buffer x c)
(define i (* 4 x))
(define rgb (vector-ref colors-as-rgb c))
(bytes-set! line-buffer i 255) ; α = 255 means non-transparent
(bytes-set! line-buffer (+ i 1) (vector-ref rgb 0))
(bytes-set! line-buffer (+ i 2) (vector-ref rgb 1))
(bytes-set! line-buffer (+ i 3) (vector-ref rgb 2)))
#;(define (render-line-from-buffer dc y)
(send dc set-argb-pixels 0 y 256 1 line-buffer))
(define (render-line dc y)
(define pattern-table (background-pattern-table-address)) ; stores the tile bitmaps
(define name-table (base-nametable-address)) ; stores the tile numbers
; ; ( ppu-ctrl-N picks 1 of 4 tables )
(define name-table-size (* 32 30)) ; = $03c0
(define attribute-table (+ name-table name-table-size)) ; the attribute table follows the name-table
; 32x30 tiles, or 256x240 pixels (Note: 8*32 = 256 and 8*30=240.)
; For each position the nametable has a byte with the tile number.
(define rows-done (byte>> y 3)) ; divide by 8 to find the number of tile rows already done
(define start-tile (* 32 rows-done)) ; each of the previous rows is 32 tiles wide
(define ∆y (remainder y 8)) ; 0 <= ∆y < 8
(for ([tile (in-tiles (+ name-table start-tile))] ; index into the pattern table
[attribute (in-attributes attribute-table y)] ; two bit attribute (repeated twice)
[n (in-range start-tile (+ start-tile 32))]) ; 32 tiles on a line
; 1. Background palettes from $3F00 and sprite palettes from $3F10.
; https://wiki.nesdev.com/w/index.php/PPU_palettes
; Each palette has four colors - but due to mirroring
; the first color of each palette are shared by all palettes.
; In hardware it is done by mirroring $3F00, $3F04 , $3F08, $3F0C
; and likewise -
; TODO wording is wrong. There is no mirroring, but rendering uses the universal color.
; The pattern starts at address pattern-table but we need to adjust for y
; Each pattern is 16 bytes. It has two bitplanes, so we need by ∆y and ∆y+8.
(define pat0 (ppuload (+ pattern-table (* 16 tile) ∆y)))
(define pat1 (ppuload (+ pattern-table (* 16 tile) 8 ∆y)))
(for ([i (in-range 0 8)]) ; for each pixel in the tile
; TODO: switched the bit order here ... WHY?
(define pixel-from-tile (byte-or (byte<< (bit-ref pat1 (- 7 i)) 1)
(bit-ref pat0 (- 7 i))))
(define palette-index (byte-or (byte<< attribute 2) pixel-from-tile))
; (displayln (list 'palette-index palette-index) (current-error-port))
(define color (ppuload (+ #x3F00 palette-index 0))) ; mirror => #3F00
; (displayln (list 'color color))
(define tile-row-start-x (remainder n 32)) ; 32 tiles on a row
(define x (+ (* 8 tile-row-start-x) i))
(plot-pixel/screen-buffer x y color)))
(when (= y 239)
(render-screen-from-buffer dc)))
;(define universal-background-color (ppuload (+ #x3F00 palette-index 0))) ; mirror => #3F00
;(define color1 (ppuload (+ #x3F00 palette-index 1)))
;(define color2 (ppuload (+ #x3F00 palette-index 2)))
;(define color3 (ppuload (+ #x3F00 palette-index 3)))
;;;
;;; EXAMPLE
;;;
; Donkey Kong (World) (Rev A) - mapper 0
(define (read-donkey-kong-rom) (read-ines-file "roms/dk.nes"))
(define (read-background-rom) (read-ines-file "roms/background.nes"))
(define (read-gauntlet-rom) (read-ines-file "roms/Gauntlet.nes"))
(define (read-balloon-fight-rom) (read-ines-file "roms/Balloon Fight.nes"))
(define (read-baseball-rom) (read-ines-file "roms/Baseball.nes"))
(define (read-mario-bros-rom) (read-ines-file "roms/Mario Bros.nes"))
(define (read-millipede-rom) (read-ines-file "roms/Millipede.nes"))
;;; Uncomment to try
(require pict)
#;(
(define dk-rom (read-donkey-kong-rom))
(define bg-rom (read-background-rom))
(define gt-rom (read-gauntlet-rom))
(define bf-rom (read-balloon-fight-rom))
(define bb-rom (read-baseball-rom))
(define mb-rom (read-mario-bros-rom))
(define mm-rom (read-millipede-rom))
(scale (bitmap (chr-rom->image (ines-chr-rom dk-rom))) 3)
(ines-mapper dk-rom)
(ines-mirroring-type dk-rom)
(install-rom dk-rom)
;(install-rom bg-rom)
;(install-rom gt-rom)
; (install-rom bf-rom)
; (install-rom bb-rom)
;(install-rom mm-rom)
)
(define (plot-pixel dc x y color)
(send dc set-pen (color->color% color) 1 'solid)
(send dc draw-point x y))
(define (draw-background)
(define bm (make-object bitmap% (* 32 8) (* 30 8)))
(define dc (new bitmap-dc% [bitmap bm]))
(for ([y (in-range 0 (* 30 8))])
(render-line dc y)))
(require racket/gui/base)
(define bm (make-bitmap (* 32 8) (* 30 8)))
(define dc (new bitmap-dc% [bitmap bm]))
(define f (new frame% [label "racket-nes"]))
(define c (new canvas% [parent f] [min-width 400] [min-height 400]
[paint-callback (λ (c dc) (send dc draw-bitmap bm 0 0))]))
(send f show #t)
(reset) ; soft reset sets PC to reset vector
(define the-process (thread (λ () (with-output-to-file "/users/soegaard/log.txt"
(λ () (trace 1000000) (run PC))
#:exists 'replace))))
(define (suspend) (thread-suspend the-process))
(define (resume) (thread-resume the-process))
; (thread (λ () (run PC)))
'done
| true |
238ed2bf63fa2d31b75220165d9094781eb98a47 | 25e7b8f1c62067869ab4d41c88230de4d87cf226 | /BookExercises/chapter4/evaluator.rkt | a48948d08b4e2c1593a308345307f96cab6fc59b | []
| no_license | LukasWoodtli/SchemeCourse | d0217ca6115a39f0256364c7493a3d63fb731bbe | e9bf13c52c2ecdfa6a7e7ff7e93d775d4dd86eaa | refs/heads/master | 2021-01-23T21:46:57.489633 | 2019-11-25T16:46:29 | 2019-11-25T16:47:07 | 57,337,107 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 15,993 | rkt | evaluator.rkt | #lang sicp
;; 4 Metalinguistic Abstraction
;; 4.1 The Metacircular Evaluator
;; the model has two basic parts:
;; 1. To evaluate a combination (a compound expression other than a special form),
;; evaluate the subexpressions and then apply the value of the operator subexpression
;; to the values of the operand subexpressions.
;; 2. To apply a compound procedure to a set of arguments, evaluate the body of the procedure
;; in a new envi- ronment. To construct this environment, extend the environment part of
;; the procedure object by a frame in which the formal parameters of the procedure are bound
;; to the arguments to which the procedure is applied.
;; The job of the evalu- ator is not to specify the primitives of the language, but rather to
;; provide the connective tissue—the means of combination and the means of abstraction—that
;; binds a collection of primitives to form a language. Specifically:
;; - The evaluator enables us to deal with nested expressions.
;; - The evaluator allows us to use variables. [...] We need an evaluator to keep track of
;; variables and obtain their values before invoking the primitive procedures.
;; - The evaluator allows us to define compound procedures. This involves keeping track of
;; procedure definitions, knowing how to use these definitions in evaluating expressions,
;; and providing a mechanism that enables procedures to accept arguments.
;; - The evaluator provides the special forms, which must be evaluated differently from
;; procedure calls.
;; 4.1.1 The Core of the Evaluator
;; The evaluation process can be described as the interplay between two procedures:
;; `eval` and `apply`.
;; Eval
;; `Eval` takes as arguments an expression and an environment. It classifies the expression
;; and directs its evaluation. `Eval` is structured as a case analysis of the syntactic type
;; of the expression to be evaluated.
;;
;; Each type of expression has a predicate that tests for it and an abstract means for
;; selecting its parts. This *abstract syntax* makes it easy to see how we can change the
;; syntax of the language by using the same evaluator.
;; Primitive expressions
;; - For self-evaluating expressions, such as numbers, eval returns the expression itself.
;; - Eval must look up variables in the environment to find their values.
;; Special forms
;; - For quoted expressions, `eval` returns the expression that was quoted.
;; - An assignment to (or a definition of) a variable must recursively call eval to compute
;; the new value to be as- sociated with the variable. The environment must be modified to
;; change (or create) the binding of the variable.
;; - An `if` expression requires special processing of its parts, so as to evaluate the
;; consequent if the predicate is true, and otherwise to evaluate the alternative.
;; - A `lambda` expression must be transformed into anapplicable procedure by packaging
;; together the parameters and body specified by the `lambda` expression with the
;; environment of the evaluation.
;; - A `begin` expression requires evaluating its sequence of expressions in the order in
;; which they appear.
;; - A case analysis (`cond`) is transformed into a nest of `if` expressions and then evaluated.
;; Combinations
;; - For a procedure application, `eval` must recursively evaluate the operator part and the
;; operands of the combination. The resulting procedure and arguments are passed to
;; `apply`, which handles the actual procedure application.
(define apply-in-underlying-scheme apply)
;; eval
(define (eval exp env)
(cond ((self-evaluating? exp)
exp)
((variable? exp)
(lookup-variable-value exp env))
((quoted? exp)
(text-of-quotation exp))
((assignment? exp)
(eval-assignment exp env))
((definition? exp)
(eval-definition exp env))
((if? exp)
(eval-if exp env))
((lambda? exp)
(make-procedure
(lambda-parameters exp)
(lambda-body exp)
env))
((begin? exp)
(eval-sequence (begin-actions exp) env))
((cond? exp) (eval (cond->if exp) env))
((application? exp)
(apply-impl (eval (operator exp) env)
(list-of-values (operands exp) env)))
(else
(error "Unknown expression type -- EVAL" exp))))
;; Apply
;; `Apply` takes two arguments, a procedure and a list of arguments to which the procedure
;; should be applied. `Apply` classifies procedures into two kinds: It calls
;; `apply-primitive-procedure` to apply primitives; it applies compound procedures by
;; sequentially evaluating the expressions that make up the body of the procedure. The
;; environment for the evaluation of the body of a compound procedure is constructed by
; extending the base environment carried by the procedure to include a frame that binds
; the parameters of the procedure to the arguments to which the procedure is to be applied.
(define (apply-impl procedure arguments)
(cond ((primitive-procedure? procedure)
(apply-primitive-procedure procedure arguments))
((compound-procedure? procedure)
(eval-sequence
(procedure-body procedure)
(extend-environment
(procedure-parameters procedure)
arguments
(procedure-environment procedure))))
(else
(error
"Unknown procedure type -- APPLY" procedure))))
;; Procedure arguments
;; When `eval` processes a procedure application, it uses `list-of-values` to produce the
;; list of arguments to which the procedure is to be applied.
(define (list-of-values exps env)
(if (no-operands? exps)
'()
(cons (eval (first-operand exps) env)
(list-of-values (rest-operands exps) env))))
;; Conditionals
;; `Eval-if` evaluates the predicate part of an `if` expression in the given environment.
;; If the result is true, `eval-if` evaluates the consequent, otherwise it evaluates the
;; alternative:
(define (eval-if exp env)
(if (true? (eval (if-predicate exp) env))
(eval (if-consequent exp) env)
(eval (if-alternative exp) env)))
;; Sequences
;; `Eval-sequence` is used by apply to evaluate the sequence of expressions in a procedure
;; body and by `eval` to evaluate the sequence of expressions in a begin expression. It
;; takes as arguments a sequence of expressions and an environment, and evaluates the
;; expressions in the order in which they occur. The value returned is the value of the
;; final expression.
(define (eval-sequence exps env)
(cond ((last-exp? exps) (eval (first-exp exps) env))
(else (eval (first-exp exps) env)
(eval-sequence (rest-exps exps) env))))
;; Assignments and definitions
;; The following procedure handles assignments to variables. It calls `eval` to find the
;; value to be assigned and transmits the variable and the resulting value to
;; `set-variable-value!` to be installed in the designated environment.
(define (eval-assignment exp env)
(set-variable-value! (assignment-variable exp)
(eval (assignment-value exp) env)
env)
'ok)
(define (eval-definition exp env)
(define-variable! (definition-variable exp)
(eval (definition-value exp) env)
env)
'ok)
;; 4.1.2 Representing Expressions
;;The only self-evaluating items are numbers and strings:
(define (self-evaluating? exp)
(cond ((number? exp) true)
((string? exp) true)
(else false)))
; Quotations have the form (quote <text-of-quot- ation>)
(define (quoted? exp)
(tagged-list? exp 'quote))
(define (text-of-quotation exp) (cadr exp))
(define (tagged-list? exp tag)
(if (pair? exp)
(eq? (car exp) tag)
false))
;; Variables are represented by symbols:
(define (variable? exp) (symbol? exp))
;; Assignments have the form (set! <var> <value>):
(define (assignment? exp)
(tagged-list? exp 'set!))
(define (assignment-variable exp) (cadr exp))
(define (assignment-value exp) (caddr exp))
;; Definitions
(define (definition? exp)
(tagged-list? exp 'define))
(define (definition-variable exp)
(if (symbol? (cadr exp))
(cadr exp)
(caadr exp)))
(define (definition-value exp)
(if (symbol? (cadr exp))
(caddr exp)
(make-lambda
(cdadr exp) ; formal parameters
(cddr exp)))) ;body
;; Lambda expressions are lists that begin with the symbol lambda:
(define (lambda? exp) (tagged-list? exp 'lambda))
(define (lambda-parameters exp) (cadr exp))
(define (lambda-body exp) (cddr exp))
;; constructor for lambda expressions
(define (make-lambda parameters body)
(cons 'lambda (cons parameters body)))
;; Conditionals
(define (if? exp) (tagged-list? exp 'if))
(define (if-predicate exp) (cadr exp))
(define (if-consequent exp) (caddr exp))
(define (if-alternative exp)
(if (not (null? (cdddr exp)))
(cadddr exp)
'false))
(define (make-if predicate consequent alternative)
(list 'if predicate consequent alternative))
;; Begin packages a sequence of expressions into a single expression.
(define (begin? exp) (tagged-list? exp 'begin))
(define (begin-actions exp) (cdr exp))
(define (last-exp? seq) (null? (cdr seq)))
(define (first-exp seq) (car seq))
(define (rest-exps seq) (cdr seq))
;; constructor sequence->exp (for use by cond->if) that transforms a
;; sequence into a single expression
(define (sequence->exp seq)
(cond ((null? seq) seq)
((last-exp? seq) (first-exp seq))
(else (make-begin seq))))
(define (make-begin seq) (cons 'begin seq))
;; procedure application
(define (application? exp) (pair? exp))
(define (operator exp) (car exp))
(define (operands exp) (cdr exp))
(define (no-operands? ops) (null? ops))
(define (first-operand ops) (car ops))
(define (rest-operands ops) (cdr ops))
;; Derived expressions
(define (cond? exp) (tagged-list? exp 'cond))
(define (cond-clauses exp) (cdr exp))
(define (cond-else-clause? clause)
(eq? (cond-predicate clause) 'else))
(define (cond-predicate clause) (car clause))
(define (cond-actions clause) (cdr clause))
(define (cond->if exp)
(expand-clauses (cond-clauses exp)))
(define (expand-clauses clauses)
(if (null? clauses)
'false ; no else clause
(let ((first (car clauses))
(rest (cdr clauses)))
(if (cond-else-clause? first)
(if (null? rest)
(sequence->exp (cond-actions first))
(error "ELSE clause isn't last -- COND->IF"
clauses))
(make-if (cond-predicate first)
(sequence->exp (cond-actions first))
(expand-clauses rest))))))
;; 4.1.3 Evaluator Data Structures
;; Testing of predicates
(define (true? x)
(not (eq? x false)))
(define (false? x)
(eq? x false))
;; Representing procedures
(define (make-procedure parameters body env)
(list 'procedure parameters body env))
(define (compound-procedure? p)
(tagged-list? p 'procedure))
(define (procedure-parameters p) (cadr p))
(define (procedure-body p) (caddr p))
(define (procedure-environment p) (cadddr p))
;; Operations on Environments
(define (enclosing-environment env) (cdr env))
(define (first-frame env) (car env))
(define the-empty-environment '())
(define (make-frame variables values)
(cons variables values))
(define (frame-variables frame) (car frame))
(define (frame-values frame) (cdr frame))
(define (add-binding-to-frame! var val frame)
(set-car! frame (cons var (car frame)))
(set-cdr! frame (cons val (cdr frame))))
(define (extend-environment vars vals base-env)
(if (= (length vars) (length vals))
(cons (make-frame vars vals) base-env)
(if (< (length vars) (length vals))
(error "Too many arguments supplied" vars vals)
(error "Too few arguments supplied" vars vals))))
(define (lookup-variable-value var env)
(define (env-loop env)
(define (scan vars vals)
(cond ((null? vars)
(env-loop (enclosing-environment env)))
((eq? var (car vars))
(car vals))
(else (scan (cdr vars) (cdr vals)))))
(if (eq? env the-empty-environment)
(error "Unbound variable" var)
(let ((frame (first-frame env)))
(scan (frame-variables frame)
(frame-values frame)))))
(env-loop env))
(define (set-variable-value! var val env)
(define (env-loop env)
(define (scan vars vals)
(cond ((null? vars)
(env-loop (enclosing-environment env)))
((eq? var (car vars))
(set-car! vals val))
(else (scan (cdr vars) (cdr vals)))))
(if (eq? env the-empty-environment)
(error "Unbound variable -- SET!" var)
(let ((frame (first-frame env)))
(scan (frame-variables frame)
(frame-values frame)))))
(env-loop env))
(define (define-variable! var val env)
(let ((frame (first-frame env)))
(define (scan vars vals)
(cond ((null? vars)
(add-binding-to-frame! var val frame))
((eq? var (car vars))
(set-car! vals val))
(else (scan (cdr vars) (cdr vals)))))
(scan (frame-variables frame)
(frame-values frame))))
;; 4.1.4 Running the Evaluator as a Program
;; Our evaluator program reduces expressions ultimately to the application
;; of primitive procedures.
;;
;; We thus set up a global environment that associates unique objects with the names
;; of the primitive procedures that can appear in the expressions we will be evaluating.
;; The global environment also includes bindings for the symbols `true` and `false`
(define (setup-environment)
(let ((initial-env
(extend-environment (primitive-procedure-names)
(primitive-procedure-objects)
the-empty-environment)))
(define-variable! 'true true initial-env)
(define-variable! 'false false initial-env)
initial-env))
(define (primitive-procedure? proc)
(tagged-list? proc 'primitive))
(define (primitive-implementation proc) (cadr proc))
(define primitive-procedures
(list (list 'car car)
(list 'cdr cdr)
(list 'cons cons)
(list 'null? null?)
;;〈more primitives
))
(define (primitive-procedure-names)
(map car
primitive-procedures))
(define (primitive-procedure-objects)
(map (lambda (proc) (list 'primitive (cadr proc)))
primitive-procedures))
(define (apply-primitive-procedure proc args)
(apply-in-underlying-scheme
(primitive-implementation proc) args))
;; For convenience in running the metacircular evaluator, we provide a *driver loop*
;; that models the read-eval-print loop of the underlying Lisp system.
(define input-prompt ";;; M-Eval input:")
(define output-prompt ";;; M-Eval value:")
;; Uncomment this to get an interactive prompt
;(define (driver-loop)
; (prompt-for-input input-prompt)
; (let ((input (read)))
; (let ((output (eval input the-global-environment)))
; (announce-output output-prompt)
; (user-print output)))
; (driver-loop))
(define (prompt-for-input string)
(newline) (newline) (display string) (newline))
(define (announce-output string)
(newline) (display string) (newline))
(define (user-print object)
(if (compound-procedure? object)
(display (list 'compound-procedure
(procedure-parameters object)
(procedure-body object)
'<procedure-env>))
(display object)))
;; This is part of the interactive
;; interpreter:
;; uncomment it to get an prompt
;(define the-global-environment (setup-environment))
;(driver-loop)
;; Test case
;;; M-Eval input:
;;(define (append x y)
;; (if (null? x)
;; y
;; (cons (car x) (append (cdr x) y))))
;;; M-Eval value:
;; ok
;;; M-Eval input:
;;(append '(a b c) '(d e f))
;;; M-Eval value:
;(a b c d e f)
| false |
07ecf69db7f5d010f30fbebe22e45848df5dc13c | 537789710941e25231118476eb2c56ae0b745307 | /ssh/tamer/performace/aes-ctr.rkt | 78ad47d6358a5de56481fea9ca4b3ed9892c8943 | []
| no_license | wargrey/lambda-shell | 33d6df40baecdbbd32050d51c0b4d718e96094a9 | ce1feb24abb102dc74f98154ec2a92a3cd02a17e | refs/heads/master | 2023-08-16T22:44:29.151325 | 2023-08-11T05:34:08 | 2023-08-11T05:34:08 | 138,468,042 | 0 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 1,555 | rkt | aes-ctr.rkt | #lang typed/racket/base
(require racket/runtime-path)
(require digimon/format)
(require "../confidentiality/inc/aes.rkt")
(require "../../digitama/algorithm/random.rkt")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define-runtime-path aes.txt "plain.txt")
(define fsize : Nonnegative-Integer (file-size aes.txt))
(define textsize : Nonnegative-Integer (* (quotient fsize aes-blocksize) aes-blocksize))
(define textpool : Bytes (make-bytes textsize))
(call-with-input-file* aes.txt
(λ [[/dev/aesin : Input-Port]]
(void (read-bytes! textpool /dev/aesin 0 textsize))))
(define display-info : (-> Flonum Void)
(lambda [time0]
(let ([timespan (- (current-inexact-milliseconds) time0)])
(printf "~a ~as ~aMB/s~n" (~size textsize)
(~r (* timespan 0.001) #:precision '(= 3))
(~r (~MB/s textsize timespan) #:precision '(= 3))))))
(define plaintext : Bytes (bytes-copy textpool))
(define IV : Bytes (ssh-cookie aes-blocksize))
(define key : Bytes (ssh-cookie aes-blocksize))
(define-values (encrypt! decrypt!) (aes-cipher-ctr! IV key))
(collect-garbage)
(collect-garbage)
(collect-garbage)
(printf "encrypting...~n")
(time (let ([time0 (current-inexact-milliseconds)])
(encrypt! textpool)
(display-info time0)))
(collect-garbage)
(collect-garbage)
(collect-garbage)
(printf "decrypting...~n")
(time (let ([time0 (current-inexact-milliseconds)])
(decrypt! textpool)
(display-info time0)))
(bytes=? textpool plaintext)
| false |
a85a7e89819dfd17432da5d791a783a816973cc6 | 8a7023acadbb77f621b48446957cc07b851217b1 | /R-without-constraints.rkt | 107da9bb50aab4bbc9eb273ebf8699b265a18897 | [
"MIT"
]
| permissive | jasonhemann/natlogic | 36b0102cade3dbf5b06c75eb470ca8d423719146 | 2dad647f53b4e6f1052a02cb83208a6e7e0eba21 | refs/heads/master | 2021-03-12T23:18:32.598804 | 2015-09-23T23:36:35 | 2015-09-23T23:36:35 | 17,519,531 | 6 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 13,114 | rkt | R-without-constraints.rkt | #lang racket
(require "pmatch.rkt")
(require cKanren)
(require cKanren/tree-unify)
(require cKanren/attributes)
(require cKanren/neq)
(provide (all-defined-out))
(define-syntax test-check
(syntax-rules ()
((_ title tested-expression expected-result)
(begin
(printf "Testing ~s\n" title)
(let* ((expected expected-result)
(produced tested-expression))
(or (equal? expected produced)
(error 'test-check
"Failed: ~a~%Expected: ~a~%Computed: ~a~%"
'tested-expression expected produced)))))))
(define unary-atomo
(lambda (a)
(fresh (sym)
(== `(-2 ,sym) a)
(symbol sym))))
(test-check "unary-atomo"
(run 100 (q) (unary-atomo q))
'(((-2 _.0) : (symbol _.0))))
(define make-un-atom
(lambda (sym)
`(-2 . ,sym)))
(define bin-atomo
(lambda (a)
(fresh (sym)
(symbol sym)
(== a `(-3 . ,sym)))))
(test-check "bin-atomo"
(run 100 (q) (bin-atomo q))
'(((-3 . _.0) : (symbol _.0))))
(define make-bin-atom
(lambda (sym)
`(-3 . ,sym)))
(define un-literalo
(lambda (l)
(conde
((unary-atomo l))
((fresh (a)
(== l `(not ,a))
(unary-atomo a))))))
(test-check "un-literalo"
(run 100 (q) (un-literalo q))
'(((-2 _.0) : (symbol _.0)) ((not (-2 _.0)) : (symbol _.0))))
(define negate-un-literal
(lambda (n)
(pmatch n
(`(not (-2 . ,x)) (guard (symbol? x))
`(-2 . ,x))
(`(-2 . ,x) (guard (symbol? x))
`(not (-2 . ,x))))))
(define negate-un-literalo
(lambda (l o)
(conde
((unary-atomo l)
(== o `(not ,l)))
((== l `(not ,o))
(unary-atomo o)))))
(define bin-literalo
(lambda (l)
(conde
((bin-atomo l))
((fresh (a)
(bin-atomo a)
(== l `(not ,a)))))))
(test-check "bin-literalo"
(run 100 (q) (bin-literalo q))
'(((-3 . _.0) : (symbol _.0)) ((not (-3 . _.0)) : (symbol _.0))))
(define negate-bin-literalo
(lambda (l o)
(conde
((bin-atomo l)
(== `(not ,l) o))
((bin-atomo o)
(== l `(not ,o))))))
(test-check "negate-bin-literalo"
(run 100 (q) (fresh (a b) (negate-bin-literalo a b) (== `(,a ,b) q)))
'((((-3 . _.0) (not (-3 . _.0))) : (symbol _.0))
(((not (-3 . _.0)) (-3 . _.0)) : (symbol _.0))))
(define negate-bin-literal
(lambda (n)
(pmatch n
(`(not (-3 . ,x)) (guard (symbol? x))
`(-3 . ,x))
(`(-3 . ,x) (guard (symbol? x))
`(not (-3 . ,x))))))
(define set-termo
(lambda (s)
(conde
((un-literalo s))
((fresh (p r)
(conde
((== s `(∃ ,p ,r))
(un-literalo p)
(bin-literalo r))
((== s `(∀ ,p ,r))
(un-literalo p)
(bin-literalo r))))))))
(test-check "set-termo"
(run 100 (q) (set-termo q))
'(((-2 _.0) : (symbol _.0)) ((not (-2 _.0)) : (symbol _.0))
((∃ (-2 _.0) (-3 . _.1)) : (symbol _.0 _.1))
((∀ (-2 _.0) (-3 . _.1)) : (symbol _.0 _.1))
((∃ (not (-2 _.0)) (-3 . _.1)) : (symbol _.0 _.1))
((∀ (not (-2 _.0)) (-3 . _.1)) : (symbol _.0 _.1))
((∃ (-2 _.0) (not (-3 . _.1))) : (symbol _.0 _.1))
((∀ (-2 _.0) (not (-3 . _.1))) : (symbol _.0 _.1))
((∃ (not (-2 _.0)) (not (-3 . _.1))) : (symbol _.0 _.1))
((∀ (not (-2 _.0)) (not (-3 . _.1))) : (symbol _.0 _.1))))
(define sentenceo
(lambda (s)
(conde
((fresh (p c)
(== `(∃ ,p ,c) s)
(un-literalo p)
(set-termo c)))
((fresh (p c)
(== `(∀ ,p ,c) s)
(un-literalo p)
(set-termo c))))))
(test-check "sentenceo"
(run 100 (q) (sentenceo q))
'(((∃ (-2 _.0) (-2 _.1)) : (symbol _.0 _.1))
((∀ (-2 _.0) (-2 _.1)) : (symbol _.0 _.1))
((∃ (not (-2 _.0)) (-2 _.1)) : (symbol _.0 _.1))
((∀ (not (-2 _.0)) (-2 _.1)) : (symbol _.0 _.1))
((∃ (-2 _.0) (not (-2 _.1))) : (symbol _.0 _.1))
((∀ (-2 _.0) (not (-2 _.1))) : (symbol _.0 _.1))
((∃ (not (-2 _.0)) (not (-2 _.1))) : (symbol _.0 _.1))
((∀ (not (-2 _.0)) (not (-2 _.1))) : (symbol _.0 _.1))
((∃ (-2 _.0) (∃ (-2 _.1) (-3 . _.2))) : (symbol _.0 _.1 _.2))
((∀ (-2 _.0) (∃ (-2 _.1) (-3 . _.2))) : (symbol _.0 _.1 _.2))
((∃ (-2 _.0) (∀ (-2 _.1) (-3 . _.2))) : (symbol _.0 _.1 _.2))
((∀ (-2 _.0) (∀ (-2 _.1) (-3 . _.2))) : (symbol _.0 _.1 _.2))
((∃ (not (-2 _.0)) (∃ (-2 _.1) (-3 . _.2)))
: (symbol _.0 _.1 _.2))
((∀ (not (-2 _.0)) (∃ (-2 _.1) (-3 . _.2)))
: (symbol _.0 _.1 _.2))
((∃ (not (-2 _.0)) (∀ (-2 _.1) (-3 . _.2)))
: (symbol _.0 _.1 _.2))
((∀ (not (-2 _.0)) (∀ (-2 _.1) (-3 . _.2)))
: (symbol _.0 _.1 _.2))
((∃ (-2 _.0) (∃ (not (-2 _.1)) (-3 . _.2)))
: (symbol _.0 _.1 _.2))
((∀ (-2 _.0) (∃ (not (-2 _.1)) (-3 . _.2)))
: (symbol _.0 _.1 _.2))
((∃ (-2 _.0) (∀ (not (-2 _.1)) (-3 . _.2)))
: (symbol _.0 _.1 _.2))
((∀ (-2 _.0) (∀ (not (-2 _.1)) (-3 . _.2)))
: (symbol _.0 _.1 _.2))
((∃ (not (-2 _.0)) (∃ (not (-2 _.1)) (-3 . _.2)))
: (symbol _.0 _.1 _.2))
((∀ (not (-2 _.0)) (∃ (not (-2 _.1)) (-3 . _.2)))
: (symbol _.0 _.1 _.2))
((∃ (-2 _.0) (∃ (-2 _.1) (not (-3 . _.2))))
: (symbol _.0 _.1 _.2))
((∀ (-2 _.0) (∃ (-2 _.1) (not (-3 . _.2))))
: (symbol _.0 _.1 _.2))
((∃ (not (-2 _.0)) (∀ (not (-2 _.1)) (-3 . _.2)))
: (symbol _.0 _.1 _.2))
((∀ (not (-2 _.0)) (∀ (not (-2 _.1)) (-3 . _.2)))
: (symbol _.0 _.1 _.2))
((∃ (-2 _.0) (∀ (-2 _.1) (not (-3 . _.2))))
: (symbol _.0 _.1 _.2))
((∀ (-2 _.0) (∀ (-2 _.1) (not (-3 . _.2))))
: (symbol _.0 _.1 _.2))
((∃ (not (-2 _.0)) (∃ (-2 _.1) (not (-3 . _.2))))
: (symbol _.0 _.1 _.2))
((∀ (not (-2 _.0)) (∃ (-2 _.1) (not (-3 . _.2))))
: (symbol _.0 _.1 _.2))
((∃ (not (-2 _.0)) (∀ (-2 _.1) (not (-3 . _.2))))
: (symbol _.0 _.1 _.2))
((∀ (not (-2 _.0)) (∀ (-2 _.1) (not (-3 . _.2))))
: (symbol _.0 _.1 _.2))
((∃ (-2 _.0) (∃ (not (-2 _.1)) (not (-3 . _.2))))
: (symbol _.0 _.1 _.2))
((∀ (-2 _.0) (∃ (not (-2 _.1)) (not (-3 . _.2))))
: (symbol _.0 _.1 _.2))
((∃ (-2 _.0) (∀ (not (-2 _.1)) (not (-3 . _.2))))
: (symbol _.0 _.1 _.2))
((∀ (-2 _.0) (∀ (not (-2 _.1)) (not (-3 . _.2))))
: (symbol _.0 _.1 _.2))
((∃ (not (-2 _.0)) (∃ (not (-2 _.1)) (not (-3 . _.2))))
: (symbol _.0 _.1 _.2))
((∀ (not (-2 _.0)) (∃ (not (-2 _.1)) (not (-3 . _.2))))
: (symbol _.0 _.1 _.2))
((∃ (not (-2 _.0)) (∀ (not (-2 _.1)) (not (-3 . _.2))))
: (symbol _.0 _.1 _.2))
((∀ (not (-2 _.0)) (∀ (not (-2 _.1)) (not (-3 . _.2))))
: (symbol _.0 _.1 _.2))))
(define negate-quant
(lambda (q q^)
(conde
((== q '∀) (== q^ '∃))
((== q '∃) (== q^ '∀)))))
(test-check "negate-quant"
(run 100 (q) (fresh (a b) (negate-quant a b) (== `(,a ,b) q)))
'((∀ ∃) (∃ ∀)))
(define negateo
(lambda (s o)
(fresh (qf1 p c)
(== `(,qf1 ,p ,c) s)
(conde
((un-literalo c)
(fresh (qf1^ c^)
(== `(,qf1^ ,p ,c^) c)
(negate-quant qf1 qf1^)
(negate-un-literalo c c^)))
((fresh (qf2 q r)
(== `(,qf2 ,q ,r) c)
(fresh (qf1^ qf2^ r^)
(== `(,qf1^ ,p (,qf2^ ,q ,r^)) o)
(negate-quant qf1 qf1^)
(negate-quant qf2 qf2^)
(negate-bin-literalo r r^))))))))
(test-check "negateo"
(run 100 (q) (fresh (a b) (negateo a b) (== `(,a ,b) q)))
'((((∀ _.0 (∀ _.1 (-3 . _.2)))
(∃ _.0 (∃ _.1 (not (-3 . _.2)))))
: (symbol _.2))
(((∀ _.0 (∀ _.1 (not (-3 . _.2))))
(∃ _.0 (∃ _.1 (-3 . _.2))))
: (symbol _.2))
(((∃ _.0 (∀ _.1 (-3 . _.2)))
(∀ _.0 (∃ _.1 (not (-3 . _.2)))))
: (symbol _.2))
(((∃ _.0 (∀ _.1 (not (-3 . _.2))))
(∀ _.0 (∃ _.1 (-3 . _.2))))
: (symbol _.2))
(((∀ _.0 (∃ _.1 (-3 . _.2)))
(∃ _.0 (∀ _.1 (not (-3 . _.2)))))
: (symbol _.2))
(((∃ _.0 (∃ _.1 (-3 . _.2)))
(∀ _.0 (∀ _.1 (not (-3 . _.2)))))
: (symbol _.2))
(((∀ _.0 (∃ _.1 (not (-3 . _.2))))
(∃ _.0 (∀ _.1 (-3 . _.2))))
: (symbol _.2))
(((∃ _.0 (∃ _.1 (not (-3 . _.2))))
(∀ _.0 (∀ _.1 (-3 . _.2))))
: (symbol _.2))))
(define membero
(lambda (x ls)
(fresh (a d)
(== `(,a . ,d) ls)
(conde
[(== a x)]
[(=/= a x) (membero x d)]))))
(test-check "membero"
(run 8 (q) (fresh (a b) (membero a b) (== `(,a ,b) q)))
'((_.0 (_.0 . _.1))
((_.0 (_.1 _.0 . _.2)) : (=/= ((_.0 . _.1))))
((_.0 (_.1 _.2 _.0 . _.3)) : (=/= ((_.0 . _.1)) ((_.0 . _.2))))
((_.0 (_.1 _.2 _.3 _.0 . _.4)) : (=/= ((_.0 . _.1)) ((_.0 . _.2)) ((_.0 . _.3))))
((_.0 (_.1 _.2 _.3 _.4 _.0 . _.5)) : (=/= ((_.0 . _.1)) ((_.0 . _.2)) ((_.0 . _.3)) ((_.0 . _.4))))
((_.0 (_.1 _.2 _.3 _.4 _.5 _.0 . _.6)) : (=/= ((_.0 . _.1)) ((_.0 . _.2)) ((_.0 . _.3)) ((_.0 . _.4)) ((_.0 . _.5))))
((_.0 (_.1 _.2 _.3 _.4 _.5 _.6 _.0 . _.7)) : (=/= ((_.0 . _.1)) ((_.0 . _.2)) ((_.0 . _.3)) ((_.0 . _.4)) ((_.0 . _.5)) ((_.0 . _.6))))
((_.0 (_.1 _.2 _.3 _.4 _.5 _.6 _.7 _.0 . _.8)) : (=/= ((_.0 . _.1)) ((_.0 . _.2)) ((_.0 . _.3)) ((_.0 . _.4)) ((_.0 . _.5)) ((_.0 . _.6)) ((_.0 . _.7))))))
(define R
(lambda (G phi proof)
(conde
((membero phi G)
(== `(Gamma : ,G => ,phi) proof))
((fresh (p c) ;; D1
(== `(∃ ,p ,c) phi)
(unary-atomo p)
(set-termo c)
(fresh (q r1 r2)
(== `((,r1 ,r2) D1=> ,phi) proof)
(unary-atomo q)
(R G `(∃ ,p ,q) r1)
(R G `(∀ ,q ,c) r2))))
((fresh (p c) ;; B
(== `(∀ ,p ,c) phi)
(unary-atomo p)
(set-termo c)
(fresh (q r1 r2)
(== `((,r1 ,r2) B=> ,phi) proof)
(unary-atomo q)
(R G `(∀ ,p ,q) r1)
(R G `(∃ ,p ,c) r2))))
((fresh (p c) ;; D2
(== `(∃ ,p ,c) phi)
(unary-atomo p)
(set-termo c)
(fresh (q r1 r2)
(== `((,r1 ,r2) D2=> ,phi) proof)
(unary-atomo q)
(R G `(∀ ,q ,p) r1)
(R G `(∃ ,q ,c) r2))))
((fresh (p) ;; T
(== `(∀ ,p ,p) phi)
(== phi proof)
(un-literalo p)))
((fresh (p) ;; I
(== `(∃ ,p ,p) phi)
(un-literalo p)
(fresh (c r)
(set-termo c)
(== `((,r) I=> ,phi) proof)
(R G `(∃ ,p ,c) r))))
((fresh (p nq) ;; D3
(== `(∃ ,p ,nq) phi)
(unary-atomo p)
(fresh (q c nc r1 r2)
(== `((,r1 ,r2) D3=> ,phi) proof)
(negateo c nc)
(un-literalo q) ;; these two lines could be better specialized.
(negate-un-literalo q nq)
(R G `(∀ ,q ,nc) r1)
(R G `(∃ ,p ,c) r2))))
((fresh (p c) ;; A
(== `(∀ ,p ,c) phi)
(un-literalo p)
(set-termo c)
(fresh (np r)
(negate-un-literalo p np)
(== `((,r) A=> ,phi) proof)
(R G `(∀ ,p ,np) r))))
((fresh (p) ;; II
(== `(∃ ,p ,p) phi)
(unary-atomo p)
(fresh (q r t)
(unary-atomo q)
(bin-literalo t)
(== `((,r) II=> ,phi) proof)
(R G `(∃ ,q (∃ ,p ,t)) r))))
((fresh (p q t) ;; AA
(== `(∀ ,p (∃ ,q ,t)) phi)
(unary-atomo p)
(unary-atomo q)
(bin-literalo t)
(fresh (q^ r1 r2)
(== `((,r1 ,r2) AA=> ,phi) proof)
(unary-atomo q^)
(R G `(∀ ,p (∀ ,q^ ,t)) r1)
(R G `(∃ ,q ,q^) r2))))
((fresh (p q t) ;; EE
(== `(∃ ,p (∃ ,q ,t)) phi)
(unary-atomo p)
(unary-atomo q)
(bin-literalo t)
(fresh (q^ r1 r2)
(== `((,r1 ,r2) EE=> ,phi) proof)
(unary-atomo q^)
(R G `(∃ ,p (∃ ,q^ ,t)) r1)
(R G `(∀ ,q^ ,q) r2))))
((fresh (p q t) ;; AE
(== `(∀ ,p (∃ ,q ,t)) phi)
(unary-atomo p)
(unary-atomo q)
(bin-literalo t)
(fresh (q^ r1 r2)
(== `((,r1 ,r2) AE=> ,phi) proof)
(unary-atomo q^)
(R G `(∀ ,p (∃ ,q^ ,t)) r1)
(R G `(∀ ,q^ ,q) r2))))
((sentenceo phi) ;; RAA
(fresh (p np nphi r)
(negate-un-literalo p np)
(negateo phi nphi)
(== `((,r) RAA=> ,phi) proof)
(R `(,nphi . ,G) `(∃ ,p ,np) r))))))
;; Requires unicode support to print prettily
(run 30 (q)
(fresh (b c p1 p2 p3 p4 p5)
(R `(,p1 ,p2 ,p3 ,p4 ,p5) b c)
(=/= b p1)
(=/= b p2)
(=/= b p3)
(=/= b p4)
(=/= b p5)
(== `((,p1 ,p2 ,p3 ,p4 ,p5) ,b ,c) q)))
(run 30 (q)
(fresh (b c p1 p2 p3)
(R `(,p1 ,p2 ,p3) b c)
(=/= b p1)
(=/= b p2)
(=/= b p3)
(== `((,p1 ,p2 ,p3) ,b ,c) q)))
| true |
89a0c8740a573cb92c3d3e180ce48eae5d8a94c6 | af481467d7c536538137aaca427abf9e8ddba33d | /algorithms/sort/quick/quicksort.vectors.rkt | a84ed8ea78eecf0488d8fad468f54d9d1007a13a | []
| no_license | ArnulfoPerez/racket | a770f8048982a13b470fa2eb37136296b41cd041 | 5e1029d0d35170d4c5bfa2d89728d289edadf252 | refs/heads/master | 2022-09-09T04:18:56.276676 | 2020-05-29T00:12:42 | 2020-05-29T00:12:42 | 254,758,994 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 826 | rkt | quicksort.vectors.rkt | #lang racket
(define (partition arr low high)
(define i (sub1 low))
(define pivot (vector-ref arr high))
(for ([j (in-range low high)])
(if (> (vector-ref arr j) pivot)
#f
(
())
i = ( low-1 )
pivot = arr[high] # pivot element
for j in range(low , high):
# If current element is smaller
if arr[j] <= pivot:
# increment
i = i+1
arr[i],arr[j] = arr[j],arr[i]
arr[i+1],arr[high] = arr[high],arr[i+1]
return ( i+1 )
# sort
def quickSort(arr,low,high):
if low < high:
# index
pi = partition(arr,low,high)
# sort the partitions
quickSort(arr, low, pi-1)
quickSort(arr, pi+1, high)
# main
arr = [2,5,3,8,6,5,4,7]
n = len(arr)
quickSort(arr,0,n-1)
print ("Sorted array is:")
for i in range(n):
print (arr[i],end=" ")
| false |
652ce1684ef75296df61a3567bbb248493b4d8e4 | 1e961c6871767a6c0e1b0a23460db345f674efd2 | /vector.rkt | 3377afee0a9830a0dc633995b461bcd5c7eb565e | []
| no_license | dedbox/racket-js-voxel | 0738d5c1a64d63756ca0e68549e5fb895562f1c5 | 661d75489af339dba515a972c6e66db8525ab4c9 | refs/heads/master | 2022-02-05T17:59:25.417394 | 2022-01-27T22:26:00 | 2022-01-27T22:26:00 | 212,428,233 | 1 | 0 | null | 2022-01-27T22:26:01 | 2019-10-02T19:49:16 | JavaScript | UTF-8 | Racket | false | false | 297 | rkt | vector.rkt | #lang racket/base
(require glm)
(provide (all-defined-out))
(define-values (^ ^+ ^- ^* ^/ ^? ^list)
(values ivec3 ivec+ ivec- ivec* ivec/ ivec3? ivec->list))
(define point? ^?)
(define-values ($ $+ $- $* $/ $? $list)
(values vec3 vec+ vec- vec* vec/ vec3? vec->list))
(define color? $?)
| false |
d759ff49d4e4e820c7e8b20ab5ea0e0287e20269 | 76df16d6c3760cb415f1294caee997cc4736e09b | /jitterbug-benchmarks/jitterbug-rosette3/racket/riscv/rv64/spec.rkt | 6554328bc54221c98bc4ca3b9c8006a38f4fc3e8 | [
"MIT"
]
| permissive | uw-unsat/leanette-popl22-artifact | 70409d9cbd8921d794d27b7992bf1d9a4087e9fe | 80fea2519e61b45a283fbf7903acdf6d5528dbe7 | refs/heads/master | 2023-04-15T21:00:49.670873 | 2021-11-16T04:37:11 | 2021-11-16T04:37:11 | 414,331,908 | 6 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 5,961 | rkt | spec.rkt | #lang rosette
(require
"bpf_jit_comp64.rkt"
"../../common.rkt"
"../../lib/hybrid-memory.rkt"
"../../lib/bpf-common.rkt"
"../impl-common.rkt"
"../spec-common.rkt"
"../../lib/spec/bpf.rkt"
"../../lib/spec/proof.rkt"
(prefix-in core: serval/lib/core)
(prefix-in bpf: serval/bpf)
(prefix-in riscv: serval/riscv/base)
(prefix-in riscv: serval/riscv/interp))
(provide (all-defined-out))
(define (rv64_put_bpf_reg rv_cpu bpf_reg value)
(riscv:gpr-set! rv_cpu (regmap bpf_reg) value))
(define (rv64_get_bpf_reg rv_cpu bpf_reg)
(riscv:gpr-ref rv_cpu (regmap bpf_reg)))
(define (rv64-simulate-call cpu call-addr call-fn)
(define memmgr (riscv:cpu-memmgr cpu))
(define args (list
(riscv:gpr-ref cpu 'a0)
(riscv:gpr-ref cpu 'a1)
(riscv:gpr-ref cpu 'a2)
(riscv:gpr-ref cpu 'a3)
(riscv:gpr-ref cpu 'a4)))
; Compute result.
(define result
(core:list->bitvector/le (hybrid-memmgr-get-fresh-bytes memmgr 8)))
; Generate trace event
(hybrid-memmgr-trace-event! memmgr
(apply call-event call-fn result args))
; Execute a "ret" (pseudo)instruction.
(riscv:interpret-insn cpu (rv_jalr RV_REG_ZERO RV_REG_RA 0))
(riscv:kill-jalr-mask cpu)
; Havoc caller-saved registers according to RISC-V calling convention
(riscv:havoc-caller-saved! cpu)
; Set return value
(riscv:gpr-set! cpu RV_REG_A0 result))
(define (rv64-init-arch-invariants! ctx cpu)
(for ([inv (rv64-cpu-invariant-registers ctx cpu)])
(riscv:gpr-set! cpu (car inv) (cdr inv))))
(define (rv64-arch-invariants ctx initial-cpu cpu)
(define pc (riscv:cpu-pc cpu))
(define aux (context-aux ctx))
(define mm (riscv:cpu-memmgr cpu))
(define bpf_stack_depth (bpf-prog-aux-stack_depth aux))
(define (loadsavedreg off)
(core:memmgr-load mm (hybrid-memmgr-stackbase mm)
(bv off 64)
(bv 8 64) #:dbg 'rv64-arch-invariants))
(&&
; Upper bits of tail-call counter are sign extension of lower
(equal? (riscv:gpr-ref cpu RV_REG_TCC_SAVED)
(sign-extend (extract 31 0 (riscv:gpr-ref cpu RV_REG_TCC_SAVED))
(bitvector 64)))
; Program counter is aligned.
(core:bvaligned? pc (bv 2 (type-of pc)))
; Stack size correct
(equal? (context-stack_size ctx)
(bvadd (round_up bpf_stack_depth (bv 16 32)) ; BPF stack size
(bv (* 8 8) 32))) ; Space for saved regs
; Saved regs correct
(equal? (riscv:gpr-ref initial-cpu 'ra) (loadsavedreg (- 8)))
(equal? (riscv:gpr-ref initial-cpu 'fp) (loadsavedreg (- 16)))
(equal? (riscv:gpr-ref initial-cpu 's1) (loadsavedreg (- 24)))
(equal? (riscv:gpr-ref initial-cpu 's2) (loadsavedreg (- 32)))
(equal? (riscv:gpr-ref initial-cpu 's3) (loadsavedreg (- 40)))
(equal? (riscv:gpr-ref initial-cpu 's4) (loadsavedreg (- 48)))
(equal? (riscv:gpr-ref initial-cpu 's5) (loadsavedreg (- 56)))
(equal? (riscv:gpr-ref initial-cpu 's6) (loadsavedreg (- 64)))
(apply && (for/list ([reg '(gp tp s7 s8 s9 s10 s11)])
(equal? (riscv:gpr-ref initial-cpu reg)
(riscv:gpr-ref cpu reg))))
; Registers have the correct values.
(apply &&
(for/list ([inv (rv64-cpu-invariant-registers ctx cpu)])
(equal? (riscv:gpr-ref cpu (car inv)) (cdr inv))))))
(define (rv64-cpu-invariant-registers ctx cpu)
(define memmgr (riscv:cpu-memmgr cpu))
(define stackbase (hybrid-memmgr-stackbase memmgr))
(list (cons 'fp stackbase)
(cons 'sp (bvsub stackbase
(zero-extend (context-stack_size ctx) (bitvector 64))))))
(define (rv64-max-stack-usage ctx)
(define aux (context-aux ctx))
(define bpf_stack_depth (bpf-prog-aux-stack_depth aux))
(bvadd (zero-extend (round_up bpf_stack_depth (bv 16 32)) (bitvector 64))
(bv (* 8 8) 64)))
(define (rv64-bpf-stack-range ctx)
(define bpf_stack_depth (zero-extend (bpf-prog-aux-stack_depth (context-aux ctx)) (bitvector 64)))
(define top (bvneg (bv (* 8 8) 64)))
(define bottom (bvsub top (round_up bpf_stack_depth (bv 16 64))))
(cons bottom top))
(define (rv64-initial-state? ctx input cpu)
(define pc (riscv:cpu-pc cpu))
(define memmgr (riscv:cpu-memmgr cpu))
(&&
; PC equals start of instructions
(equal? (riscv:cpu-pc cpu) (context-insns-addr ctx))
; Stack pointer is aligned.
(core:bvaligned? (riscv:gpr-ref cpu 'sp) (bv 16 64))
; Stack pointer points to base of stack.
(equal? (riscv:gpr-ref cpu 'sp) (hybrid-memmgr-stackbase memmgr))
; Program input matches
(equal? (rv64_get_bpf_reg cpu BPF_REG_1) (program-input-r1 input))))
(define rv64-target (make-bpf-target
#:target-bitwidth 64
#:init-cpu (riscv-init-cpu 64)
#:abstract-regs (riscv-abstract-regs rv64_get_bpf_reg)
#:abstract-tail-call-cnt (lambda (cpu) (bvsub (bv MAX_TAIL_CALL_CNT 32) (extract 31 0 (riscv:gpr-ref cpu RV_REG_TCC_SAVED))))
#:simulate-call rv64-simulate-call
#:arch-invariants rv64-arch-invariants
#:init-arch-invariants! rv64-init-arch-invariants!
#:run-code run-jitted-code
#:emit-insn emit_insn
#:init-ctx riscv-init-ctx
#:bpf-to-target-pc bpf-to-target-pc
#:code-size code-size
#:max-target-size #x8000000
#:max-stack-usage rv64-max-stack-usage
#:have-efficient-unaligned-access #f
#:function-alignment 2
#:ctx-valid? riscv-ctx-valid?
#:copy-target-cpu riscv-copy-cpu
#:epilogue-offset riscv-epilogue-offset
#:bpf-stack-range rv64-bpf-stack-range
#:initial-state? rv64-initial-state?
#:arch-safety riscv-arch-safety
#:abstract-return-value (lambda (cpu) (core:trunc 32 (riscv:gpr-ref cpu 'a0)))
#:emit-prologue (lambda (ctx)
(parameterize ([CONFIG_RISCV_ISA_C #f]) (bpf_jit_build_prologue ctx)) (context-insns ctx))
#:emit-epilogue (lambda (ctx)
(parameterize ([CONFIG_RISCV_ISA_C #f]) (bpf_jit_build_epilogue ctx)) (context-insns ctx))
))
(define (check-jit code)
(parameterize ([riscv:XLEN 64])
(verify-bpf-jit/64 code rv64-target)))
| false |
17cd6429439c3297e988c6c29e380bf091efea57 | 5fc2439218bb27a9aa0e6eb20b0384592b2d422e | /inc-example.rkt | 3919a29c45f49235ef407fd7545c28524743dfc0 | []
| no_license | eric93/incremental | 49b223abb6f104f1d131706a09943ddf6f19428c | b3ad6cff28af214ddb322529bd0e4aa59ab40d57 | refs/heads/master | 2021-05-16T02:02:04.361209 | 2019-05-21T18:30:21 | 2019-05-21T18:30:21 | 37,098,018 | 2 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 32,337 | rkt | inc-example.rkt | #lang s-exp rosette
(require rosette/lib/meta/meta)
(define base-ns (make-base-namespace))
(require "dnf-expression.rkt")
(current-bitwidth 8)
(define (rel-x width
width-auto
ml
ml-auto
mr
mr-auto
left
left-auto
right
right-auto
static-x
shrink-to-fit
container-width)
(if (not (|| width-auto left-auto right-auto))
(if (&& ml-auto mr-auto) (+ left (/ (- container-width (+ left right width )) 2) )
(+ left (if ml-auto 0 ml)))
(let ([new-ml (if ml-auto 0 ml)])
(if (not left-auto)
(+ left new-ml)
(if right-auto
(if width-auto
(- container-width (+ right (if mr-auto 0 mr) shrink-to-fit))
(- container-width (+ right (if mr-auto 0 mr) width)))
(+ static-x new-ml))))))
(define (inner-width width
width-auto
ml
ml-auto
mr
mr-auto
left
left-auto
right
right-auto
static-x
shrink-to-fit
container-width)
(if (not width-auto)
width
(if (|| left-auto right-auto)
shrink-to-fit
(- container-width (+ left right (if ml-auto 0 ml) (if mr-auto 0 mr))))))
(define (rel-y height
height-auto
mt
mt-auto
mb
mb-auto
top
top-auto
bottom
bottom-auto
static-y
intrins-height
container-height)
(if (|| top-auto bottom-auto height-auto)
(if top-auto
(if bottom-auto
(+ static-y (if mt-auto 0 mt))
(if height-auto
(- container-height (+ bottom (if mb-auto 0 mb) intrins-height))
(- container-height (+ bottom (if mb-auto 0 mb) height))))
(+ top (if mt-auto 0 mt)))
(if (&& mt-auto mb-auto)
(+ top (/ (- container-height (+ top bottom height )) 2))
(if mt-auto
(- container-height (+ bottom height mb))
(+ top mt)))))
(define (inner-height height
height-auto
mt
mt-auto
mb
mb-auto
top
top-auto
bottom
bottom-auto
static-y
intrins-height
container-height)
(if height-auto
(if (|| top-auto bottom-auto)
intrins-height
(- container-height (+ top bottom (if mt-auto 0 mt) (if mb-auto 0 mb))))
height))
; Given an assignment of auto values, determine which dirty bits
; need to be propagated.
(define (solve-db-constraints cond-lst)
(begin
; Construct symbols for old and new inputs
(define-symbolic width number?)
(define-symbolic ml number?)
(define-symbolic mr number?)
(define-symbolic left number?)
(define-symbolic right number?)
(define-symbolic static-x number?)
(define-symbolic shrink-to-fit number?)
(define-symbolic container-width number?)
(define-symbolic width-new number?)
(define-symbolic ml-new number?)
(define-symbolic mr-new number?)
(define-symbolic left-new number?)
(define-symbolic right-new number?)
(define-symbolic static-x-new number?)
(define-symbolic shrink-to-fit-new number?)
(define-symbolic container-width-new number?)
(define-symbolic height number?)
(define-symbolic mt number?)
(define-symbolic mb number?)
(define-symbolic top number?)
(define-symbolic bottom number?)
(define-symbolic static-y number?)
(define-symbolic intrins-height number?)
(define-symbolic container-height number?)
(define-symbolic height-new number?)
(define-symbolic mt-new number?)
(define-symbolic mb-new number?)
(define-symbolic top-new number?)
(define-symbolic bottom-new number?)
(define-symbolic static-y-new number?)
(define-symbolic intrins-height-new number?)
(define-symbolic container-height-new number?)
(define (changed-w f)
(not (eq? (f width
(car cond-lst)
ml
(cadr cond-lst)
mr
(caddr cond-lst)
left
(cadddr cond-lst)
right
(cadddr (cdr cond-lst))
static-x
shrink-to-fit
container-width)
(f width-new
(car cond-lst)
ml-new
(cadr cond-lst)
mr-new
(caddr cond-lst)
left-new
(cadddr cond-lst)
right-new
(cadddr (cdr cond-lst))
static-x-new
shrink-to-fit-new
container-width-new))))
(define (changed-h f)
(not (eq? (f height
(cadddr (cddr cond-lst))
mt
(cadddr (cdddr cond-lst))
mb
(cadddr (cddddr cond-lst))
top
(cadddr (cddddr (cdr cond-lst)))
bottom
(cadddr (cddddr (cddr cond-lst)))
static-y
intrins-height
container-height)
(f height-new
(cadddr (cddr cond-lst))
mt-new
(cadddr (cdddr cond-lst))
mb-new
(cadddr (cddddr cond-lst))
top-new
(cadddr (cddddr (cdr cond-lst)))
bottom-new
(cadddr (cddddr (cddr cond-lst)))
static-y-new
intrins-height-new
container-height-new)
)))
; Construct formula for whether the outputs changed.
(define output-changed
(|| (changed-w rel-x) (changed-w inner-width) (changed-h rel-y) (changed-h inner-height)))
(define (is-sat? expr)
(with-handlers ([exn:fail? (lambda (exn) (begin (displayln exn) #f))])
(begin
(solve (assert expr))
#t)))
; The formulae to solve are all of the form
; "the output changed and some inputs are
; the same". This allows us to conclude
; the change must have been instigated by a
; variable not in this set.
`(
; Container dirty-bit
,(is-sat? (&& (= width width-new)
(= ml ml-new)
(= mr mr-new)
(= left left-new)
(= right right-new)
(= shrink-to-fit shrink-to-fit-new)
(= height height-new)
(= mt mt-new)
(= mb mb-new)
(= top top-new)
(= bottom bottom-new)
(= intrins-height intrins-height-new)
output-changed))
; Inner dirty-bit
,(is-sat? (&& (= width width-new)
(= ml ml-new)
(= mr mr-new)
(= left left-new)
(= right right-new)
(= static-x static-x-new)
(= container-width container-width-new)
(= height height-new)
(= mt mt-new)
(= mb mb-new)
(= top top-new)
(= bottom bottom-new)
(= static-y static-y-new)
(= container-height container-height-new)
output-changed))
; Intrinsic dirty-bit
,(is-sat? (&& (= static-x static-x-new)
(= shrink-to-fit shrink-to-fit-new)
(= container-width container-width-new)
(= static-y static-y-new)
(= intrins-height intrins-height-new)
(= container-height container-height-new)
output-changed)))
))
; Recursive procedure to find the most precise dirty-bit function.
; Stored as a treemap from auto values to the set of dirty bits to
; be propagated.
(define (get-precise-db cond-lst)
(if (> (length cond-lst) 9)
(solve-db-constraints cond-lst)
`(,(get-precise-db (append cond-lst '(#t))) ,(get-precise-db (append cond-lst '(#f))))
))
(define (synthesize-expression precise)
(define-symbolic width-auto boolean?)
(define-symbolic ml-auto boolean?)
(define-symbolic mr-auto boolean?)
(define-symbolic left-auto boolean?)
(define-symbolic right-auto boolean?)
(define-symbolic height-auto boolean?)
(define-symbolic mt-auto boolean?)
(define-symbolic mb-auto boolean?)
(define-symbolic top-auto boolean?)
(define-symbolic bottom-auto boolean?)
(define-symbolic container-d boolean?)
(define-symbolic inner-d boolean?)
(define-symbolic intrins-d boolean?)
(define auto-lst (list width-auto ml-auto mr-auto left-auto right-auto height-auto mt-auto mb-auto top-auto bottom-auto))
(define (soundness-constraint lst precise)
(if (= (length lst) 0)
(|| (if (car precise) container-d #f) (if (cadr precise) inner-d #f) (if (caddr precise) intrins-d #f))
(|| (&& (not (car lst))
(soundness-constraint (cdr lst) (cadr precise)))
(&& (car lst)
(soundness-constraint (cdr lst) (car precise))))))
(define sound (soundness-constraint auto-lst precise))
(define (precision precise approximate)
(define count 0)
(define (do-count in-lst p)
(if (> (length in-lst) 9)
(begin
(if (|| (&& (car p) (not (approximate #t #f #f in-lst)))
(&& (cadr p) (not (approximate #f #t #f in-lst)))
(&& (caddr p) (not (approximate #f #f #t in-lst))))
(begin
(error "Invalid approximation"))
#f)
(set! count (+ count (if (&& (not (car p)) (approximate #t #f #f in-lst)) 1 0)))
(set! count (+ count (if (&& (not (cadr p)) (approximate #f #t #f in-lst)) 1 0)))
(set! count (+ count (if (&& (not (caddr p)) (approximate #f #f #t in-lst)) 1 0))))
(begin
(do-count (append in-lst '(#t)) (car p))
(do-count (append in-lst '(#f)) (cadr p)))))
(do-count '() precise)
count)
; (define-synthax (auto-expr k autos)
; #:assert (> k 0)
; [choose
; #t
; #f
; (car autos)
; (cadr autos)
; (caddr autos)
; (cadddr autos)
; (car (cddddr autos))
; (cadr (cddddr autos))
; (caddr (cddddr autos))
; (cadddr (cddddr autos))
; (car (cddddr (cddddr autos)))
; (cadr (cddddr (cddddr autos)))
; (not (auto-expr (- k 1) autos))
; ([choose && ||] (auto-expr (- k 1) autos) (auto-expr (- k 1) autos) (auto-expr (- k 1) autos) (auto-expr (- k 1) autos))
; ])
; (define-synthax (one-of autos)
; [choose #t #f
; (car autos)
; (not (car autos))
; (cadr autos)
; (not (cadr autos))
; (caddr autos) (not (caddr autos))
; (cadddr autos) (not (cadddr autos))
; (car (cddddr autos)) (not (car (cddddr autos)))
; (cadr (cddddr autos)) (not (cadr (cddddr autos)))
; (caddr (cddddr autos)) (not (caddr (cddddr autos)))
; (cadddr (cddddr autos)) (not (cadddr (cddddr autos)))
; (car (cddddr (cddddr autos))) (not (car (cddddr (cddddr autos))))
; (cadr (cddddr (cddddr autos))) (not (cadr (cddddr (cddddr autos))))])
;
; (define-synthax (subset autos)
; (and
; [choose #t (car autos) (not (car autos))]
; [choose #t (cadr autos) (not (cadr autos))]
; [choose #t (caddr autos) (not (caddr autos))]
; [choose #t (cadddr autos) (not (cadddr autos))]
; [choose #t (car (cddddr autos)) (not (car (cddddr autos)))]
; [choose #t (cadr (cddddr autos)) (not (cadr (cddddr autos)))]
; [choose #t (caddr (cddddr autos)) (not (caddr (cddddr autos)))]
; [choose #t (cadddr (cddddr autos)) (not (cadddr (cddddr autos)))]
; [choose #t (car (cddddr (cddddr autos))) (not (car (cddddr (cddddr autos))))]
; [choose #t (cadr (cddddr (cddddr autos))) (not (cadr (cddddr (cddddr autos))))]))
; (define-synthax (auto-expr autos)
; (or (subset autos) (subset autos) (subset autos) (subset autos) (subset autos) (subset autos) (subset autos)))
(define db1-expr (dnf-expression auto-lst 8))
(define db2-expr (dnf-expression auto-lst 8))
(define db3-expr (dnf-expression auto-lst 8))
(define (f db1 db2 db3 autos) (or (and (dnf-formula (replace-dnf-variables db1-expr autos)) db1)
(and (dnf-formula (replace-dnf-variables db2-expr autos)) db2)
(and (dnf-formula (replace-dnf-variables db3-expr autos)) db3)))
;(define limit-variables-formula (limit-num-variables (merge-dnf db1-expr (merge-dnf db2-expr db3-expr)) 9))
(define (synth f-old bounds)
(displayln "synthesizing...")
(define-symbolic* width-auto-w boolean?)
(define-symbolic* ml-auto-w boolean?)
(define-symbolic* mr-auto-w boolean?)
(define-symbolic* left-auto-w boolean?)
(define-symbolic* right-auto-w boolean?)
(define-symbolic* height-auto-w boolean?)
(define-symbolic* mt-auto-w boolean?)
(define-symbolic* mb-auto-w boolean?)
(define-symbolic* top-auto-w boolean?)
(define-symbolic* bottom-auto-w boolean?)
(define-symbolic* container-d-w boolean?)
(define-symbolic* inner-d-w boolean?)
(define-symbolic* intrins-d-w boolean?)
(define auto-lst-w (list width-auto-w ml-auto-w mr-auto-w left-auto-w right-auto-w height-auto-w mt-auto-w mb-auto-w top-auto-w bottom-auto-w))
;(define f-new-expr (tag [result] (f container-d inner-d intrins-d auto-lst)))
(define m (synthesize
#:forall (append auto-lst (list container-d inner-d intrins-d))
#:guarantee (assert (&& (implies sound (f container-d inner-d intrins-d auto-lst))
(<= (total-variables db1-expr) 11)
(<= (total-variables db2-expr) 8)
(<= (total-variables db3-expr) 8)
(f-old container-d-w inner-d-w intrins-d-w auto-lst-w)
(not (f container-d-w inner-d-w intrins-d-w auto-lst-w))
bounds
;limit-variables-formula
))))
(displayln "found expression: ")
(display "container-d: ")
(displayln (dnf-s-expr db1-expr m))
(display "inner-d: ")
(displayln (dnf-s-expr db2-expr m))
(display "intrins-d: ")
(displayln (dnf-s-expr db3-expr m))
(newline)
(define (f-new db1 db2 db3 lst)
(evaluate (f db1 db2 db3 lst) m))
(displayln "complexity: ")
(displayln (evaluate (+ (total-variables db1-expr)
(total-variables db2-expr)
(total-variables db3-expr))
m))
(display "computing precision... ")
(print (precision precise f-new))
(newline)
(displayln "simplifying...")
(define simple1 (simplify db1-expr m))
(define simple2 (simplify db2-expr m))
(define simple3 (simplify db3-expr m))
(define complexity (+ (evaluate (total-variables db1-expr) simple1)
(evaluate (total-variables db2-expr) simple2)
(evaluate (total-variables db3-expr) simple3)))
(display "minimum-complexity: ")
(displayln complexity)
(display "container-d: ")
(displayln (dnf-s-expr db1-expr simple1))
(display "inner-d: ")
(displayln (dnf-s-expr db2-expr simple2))
(display "intrins-d: ")
(displayln (dnf-s-expr db3-expr simple3))
(define concrete-witness
`(,(evaluate container-d-w m)
,(evaluate inner-d-w m)
,(evaluate intrins-d-w m)
(,(evaluate width-auto-w m)
,(evaluate ml-auto-w m)
,(evaluate mr-auto-w m)
,(evaluate left-auto-w m)
,(evaluate right-auto-w m)
,(evaluate height-auto-w m)
,(evaluate mt-auto-w m)
,(evaluate mb-auto-w m)
,(evaluate top-auto-w m)
,(evaluate bottom-auto-w m))))
(with-handlers ([exn:fail? (lambda (exn) (begin
(displayln exn)
(display "computing precision... ")
(print (precision precise f-new))
(newline)
f-new))])
(synth f-new (&& bounds (not (f (car concrete-witness)
(cadr concrete-witness)
(caddr concrete-witness)
(cadddr concrete-witness))))))
)
(synth (lambda (db1 db2 db3 lst) #t) #t)
)
(displayln "Starting execution...")
; Compute the most accurate dirty-bit function
(define precise-db (get-precise-db '()))
;(define m (synthesize-expression precise-db))
(define (num-true len precise)
(if (= len 0)
(apply + (map (lambda (x) (if x 0 1)) precise))
(+ (num-true (- len 1) (car precise)) (num-true (- len 1) (cadr precise)))))
(num-true 10 precise-db)
(print precise-db)
(define other-precise '(((((((((((#f #f #t) (#f #f #t)) ((#f #f #t) (#f #f #t))) (((#f #f #t) (#f #t #t)) ((#f #f #t) (#f #t #t)))) ((((#f #t #t) (#f #f #t)) ((#f #t #t) (#f #t #t))) (((#f #t #t) (#f #t #t)) ((#f #t #t) (#f #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t)))))) ((((((#f #f #t) (#f #f #t)) ((#f #f #t) (#f #f #t))) (((#f #f #t) (#f #t #t)) ((#f #f #t) (#f #t #t)))) ((((#f #t #t) (#f #f #t)) ((#f #t #t) (#f #t #t))) (((#f #t #t) (#f #t #t)) ((#f #t #t) (#f #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))))) (((((((#f #f #t) (#f #f #t)) ((#f #f #t) (#f #f #t))) (((#f #f #t) (#f #t #t)) ((#f #f #t) (#f #t #t)))) ((((#f #t #t) (#f #f #t)) ((#f #t #t) (#f #t #t))) (((#f #t #t) (#f #t #t)) ((#f #t #t) (#f #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t)))))) ((((((#f #f #t) (#f #f #t)) ((#f #f #t) (#f #f #t))) (((#f #f #t) (#f #t #t)) ((#f #f #t) (#f #t #t)))) ((((#f #t #t) (#f #f #t)) ((#f #t #t) (#f #t #t))) (((#f #t #t) (#f #t #t)) ((#f #t #t) (#f #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t)))))))) ((((((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t)))))) ((((((#f #f #t) (#f #f #t)) ((#f #f #t) (#f #f #t))) (((#f #f #t) (#f #t #t)) ((#f #f #t) (#f #t #t)))) ((((#f #t #t) (#f #f #t)) ((#f #t #t) (#f #t #t))) (((#f #t #t) (#f #t #t)) ((#f #t #t) (#f #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))))) (((((((#f #f #t) (#f #f #t)) ((#f #f #t) (#f #f #t))) (((#f #f #t) (#f #t #t)) ((#f #f #t) (#f #t #t)))) ((((#f #t #t) (#f #f #t)) ((#f #t #t) (#f #t #t))) (((#f #t #t) (#f #t #t)) ((#f #t #t) (#f #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t)))))) ((((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))))))) (((((((((#f #f #t) (#f #f #t)) ((#f #f #t) (#f #f #t))) (((#f #f #t) (#f #t #t)) ((#f #f #t) (#f #t #t)))) ((((#f #t #t) (#f #f #t)) ((#f #t #t) (#f #t #t))) (((#f #t #t) (#f #t #t)) ((#f #t #t) (#f #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t)))))) ((((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))))) (((((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t)))))) ((((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t)))))))) ((((((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t)))))) ((((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))))) (((((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t)))))) ((((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t)))))))))) ((((((((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t)))))) ((((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))))) (((((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t)))))) ((((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t)))))))) ((((((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t)))))) ((((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))))) (((((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t)))))) ((((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))))))) (((((((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t)))))) ((((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))))) (((((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t)))))) ((((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t)))))))) ((((((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t)))))) ((((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))))) (((((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t)))))) ((((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))) (((((#t #f #t) (#t #f #t)) ((#t #f #t) (#t #f #t))) (((#t #f #t) (#t #t #t)) ((#t #f #t) (#t #t #t)))) ((((#t #t #t) (#t #f #t)) ((#t #t #t) (#t #t #t))) (((#t #t #t) (#t #t #t)) ((#t #t #t) (#t #t #t))))))))))))
(define (precise-diff precise1 precise2)
(define count 0)
(define (diff len p1 p2 seq)
(if (= len 0)
(if (not (&& (eq? (car p1) (car p2)) (eq? (cadr p1) (cadr p2)) (eq? (caddr p1) (caddr p2))))
(begin
(set! count (+ count 1))
(display seq)
(display ":")
(display p1)
(display "-")
(displayln p2))
'())
(begin
(diff (- len 1) (car p1) (car p2) (append seq '(#t)))
(diff (- len 1) (cadr p1) (cadr p2) (append seq '(#f))))))
(diff 10 precise1 precise2 '())
count)
(precise-diff precise-db other-precise)
;(solve-db-constraints '(#f #f #f #f #f #f #f #f #f #f))
| false |
d1d76787746131546294f5fdd14692141afee44e | 22e2bf96f817afdca43132f793725a35c8f9918d | /rel-wasm-small.rkt | 23011010cd6293c9068442a39d92f7ed744d2fd8 | [
"Apache-2.0"
]
| permissive | jsjolen/relsym-wasm | 7cec004d9f62a7ae0a905295e7bb9a49dd28a382 | d943dbb034418a4c764e0eb53f901f33d90aa587 | refs/heads/master | 2023-01-01T05:55:20.377041 | 2020-10-26T18:47:47 | 2020-10-26T18:49:53 | 271,110,486 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 303 | rkt | rel-wasm-small.rkt | #lang racket
;;;; Copyright Johan Sjölén 2020
(require redex
"sym-wasm-small.rkt"
pict)
(provide (all-defined-out))
(define-extended-language rel-sym-wasm sym-wasm
(rel.e* ::= (pair e* e*))
(rel.mem ::=
(pair mem
mem))
(Config ::= (rel.mem ; rel.e* ; pc)))
| false |
7e7b0d011e4d21457393fc03797fae74a6e18940 | b996d458a2d96643176465220596c8b747e43b65 | /how-to-code-complex-data/problem-bank/2-one-of/pattern-match.rkt | 6f460acfabd2c87ed5d2b46b6d30ccfc5d1dd97a | [
"MIT"
]
| permissive | codingram/courses | 99286fb9550e65c6047ebd3e95eea3b5816da2e0 | 9ed3362f78a226911b71969768ba80fb1be07dea | refs/heads/master | 2023-03-21T18:46:43.393303 | 2021-03-17T13:51:52 | 2021-03-17T13:51:52 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 4,069 | rkt | pattern-match.rkt | #lang htdp/bsl+
;; Problem:
;;
;; It is often useful to be able to tell whether the first part of a sequence of
;; characters matches a given pattern. In this problem you will design a (somewhat
;; limited) way of doing this.
;;
;; Assume the following type comments and examples:
;; =================
;; Data Definitions:
;; OneString is String
;; interp. these are strings only one character long
(define EXAMPLE-ONE-SA "x")
(define EXAMPLE-ONE-SB "2")
;; Pattern is one of:
;; - empty
;; - (cons "A" Pattern)
;; - (cons "N" Pattern)
;; interp.
;; A pattern describing certain ListOfOneString.
;; "A" means the corresponding letter must be alphabetic.
;; "N" means it must be numeric. For example:
;; (list "A" "N" "A" "N" "A" "N")
;; describes Canadian postal codes like:
;; (list "V" "6" "T" "1" "Z" "4")
(define EXAMPLE-PATTERN (list "A" "N" "A" "N" "A" "N"))
;; ListOfOneString is one of:
;; - empty
;; - (cons OneString ListOfOneString)
;; interp. a list of strings each one long
(define EXAMPLE-LOS (list "V" "6" "T" "1" "Z" "4"))
;; Now design a function that consumes Pattern and ListOfOneString and produces true
;; if the pattern matches the ListOfOneString. For example,
;;
;; (pattern-match? (list "A" "N" "A" "N" "A" "N")
;; (list "V" "6" "T" "1" "Z" "4"))
;;
;; should produce true. If the ListOfOneString is longer than the pattern, but the
;; first part matches the whole pattern produce true. If the ListOfOneString is
;; shorter than the Pattern you should produce false.
;;
;; Treat this as the design of a function operating on 2 complex data. After your
;; signature and purpose, you should write out a cross product of type comments
;; table. You should reduce the number of cases in your cond to 4 using the table,
;; and you should also simplify the cond questions using the table.
;;
;; You should use the following helper functions in your solution:
;; ==========
;; Functions:
;; OneString -> Boolean
;; Produces true if one-string is alphabetic/numeric, false otherwise
(define (alphabetic? one-string) (char-alphabetic? (string-ref one-string 0)))
(define (numeric? one-string) (char-numeric? (string-ref one-string 0)))
;; Pattern ListOfOneString -> Boolean
;; Produces true if the given pattern matches the given list of one string, false
;; otherwise.
(define (pattern-match? pattern list-of-one-string)
(cond [(empty? pattern) true]
[(empty? list-of-one-string) false]
[(string=? (first pattern) "A")
(and (alphabetic? (first list-of-one-string))
(pattern-match? (rest pattern) (rest list-of-one-string)))]
[(string=? (first pattern) "N")
(and (numeric? (first list-of-one-string))
(pattern-match? (rest pattern) (rest list-of-one-string)))]))
;; ==========
;; Tests:
(define P0 empty)
(define P1 '("A"))
(define P2 '("N"))
(define P3 '("A" "A" "A"))
(define P4 '("N" "N" "N"))
(define P5 '("A" "N" "N" "A"))
(define P6 '("N" "A" "N" "N"))
(check-expect (alphabetic? " ") false)
(check-expect (alphabetic? "1") false)
(check-expect (alphabetic? "a") true)
(check-expect (numeric? " ") false)
(check-expect (numeric? "1") true)
(check-expect (numeric? "a") false)
(check-expect (pattern-match? P0 empty) true)
(check-expect (pattern-match? P0 '("A" "2")) true)
(check-expect (pattern-match? P5 empty) false)
(check-expect (pattern-match? P6 empty) false)
(check-expect (pattern-match? P1 '("G")) true)
(check-expect (pattern-match? P1 '("3")) false)
(check-expect (pattern-match? P2 '("6")) true)
(check-expect (pattern-match? P2 '("B")) false)
(check-expect (pattern-match? P3 '("G" "D" "E")) true)
(check-expect (pattern-match? P3 '("B" "3" "D")) false)
(check-expect (pattern-match? P4 '("2" "3" "4")) true)
(check-expect (pattern-match? P4 '("4" "2" "G")) false)
(check-expect (pattern-match? P5 '("F" "2" "5" "A")) true)
(check-expect (pattern-match? P5 '("A" "2" "G" "A")) false)
(check-expect (pattern-match? P6 '("2" "A" "2" "3")) true)
(check-expect (pattern-match? P6 '("3" "C" "A" "3")) false)
| false |
9dab2a8201a6d1fb205e89e14f61f678a9e66b25 | 91dc09382f6cc58925f46622212d36ab37e7e4ae | /pages/blog/post-2020-11-03.rkt | 7a7dcc092dffc7990bb18ff5c6a7cd86b9bdc49a | []
| no_license | srfoster/codespells.org | 53b4e62afb2131ed7198f76d02e023e977547bdc | fe6c14a70bf3a88579bfc675403e6a4605d6473c | refs/heads/master | 2023-08-16T20:40:03.931174 | 2021-05-24T21:29:26 | 2021-05-24T21:29:26 | 285,627,595 | 3 | 1 | null | 2021-09-11T23:53:09 | 2020-08-06T17:10:42 | Racket | UTF-8 | Racket | false | false | 375 | rkt | post-2020-11-03.rkt | #lang at-exp racket
(require "../../lang.rkt")
(require "./lang.rkt")
(define-post
2020-11-03
"Build page"
@div{
You may have noticed, there's a new link in the nav bar...
}
@md{
Or, you can use this link: @(link-to-builds).
There's not much there yet, but that's what I'm working on this week -- builds!
@p{- Stephen R. Foster}
@(logo 200)
})
| false |
60c224cf12ae93b5b90c4921439d747c12d96408 | a18fe897a706381f51033501501b54c0c91ddd7b | /ck/parser.rkt | 1a2a7fc539555240ceaab34d5a7673d299baa59f | []
| no_license | jeapostrophe/rack | fe4cdf608a39f14ff615a6b18f45e906093e5ef7 | 9bc82ec35600315e543db8284f121346bb58defc | refs/heads/master | 2022-12-08T04:53:57.782223 | 2022-12-02T20:33:29 | 2022-12-02T20:33:29 | 17,296,012 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 31,983 | rkt | parser.rkt | #lang racket/base
(require racket/match
racket/contract/base
unstable/match
rack/ck/ast
rack/ck/reader)
(module+ test
(require rackunit
(for-syntax racket/base)))
(module+ test
(define (pp v)
(match v
[(prec-state x y)
(prec-state (pp x) (pp y))]
[(term:ast-file _ l c)
(cons (pp l) (pp c))]
[(term:ast:str _ s)
s]
[(term:ast:id _ s)
s]
[(term:ast:num:int _ s _)
s]
[(term:ast:list:empty _)
null]
[(term:ast:list:cons _ f r)
(cons (pp f) (pp r))]
;; surface
[#f #f]
[(term:surface:text _ s)
(vector '#%text (pp s))]
[(term:surface:brackets _ s)
(vector '#%brackets (pp s))]
[(term:surface:parens _ s)
(vector '#%parens (pp s))]
[(term:surface:text-form _ c d b)
(vector '#%text-form (pp c) (pp d) (pp b))]
[(term:surface:str _ s)
s]
[(term:surface:num:int _ s _ _ _ _)
s]
[(term:surface:group _ s)
(vector '#%group (pp s))]
[(term:surface:swap _ s)
(pp s)]
[(term:surface:list:empty _)
null]
[(term:surface:list:cons _ f r)
(cons (pp f) (pp r))]
[(term:surface:id _ s)
s]
[(term:surface:op _ s)
(pp s)]
[(term:surface:unary-op _ s)
(pp s)]
[(term loc)
(en-error loc (format "pp: unexpected term: ~e" v))])))
(define (term:ast:list-append x y)
(match x
[(term:ast:list:empty _)
y]
[(term:ast:list:cons loc f r)
;; xxx should i loc-merge?
(term:ast:list:cons loc f (term:ast:list-append r y))]
[(term loc)
(en-error loc (format "list-append: unexpected term: ~e" x))]))
;; xxx term:ast:list-append
(define (loc-merge x y)
(match-define (srcloc src1 line1 col1 pos1 span1) x)
(match-define (srcloc src2 line2 col2 pos2 span2) y)
(srcloc src1 line1 col1 pos1 (- (+ pos2 span2) pos1)))
;; xxx loc-merge
(define (str-merge s)
(match s
[(term:ast:list:empty loc)
s]
[(term:ast:list:cons
loc1 (term:ast:str loc2 s1)
(term:ast:list:cons
loc3 (term:ast:str loc4 s2)
more))
(str-merge
(term:ast:list:cons
(loc-merge loc1 loc3)
(term:ast:str (loc-merge loc2 loc4) (string-append s1 s2))
more))]
[(term:ast:list:cons
loc1 before after)
(term:ast:list:cons
loc1 before (str-merge after))]
[(term loc)
(en-error loc (format "str-merge: unexpected term: ~e" s))]))
;; xxx str-merge
(define (en-error loc msg)
(error 'en "~a: ~a" loc msg))
(define (op? v)
(or (term:surface:op? v)
(and (term:surface:swap? v)
(not (op? (term:surface:swap-t v))))))
(define (op-id v)
(match v
[(term:surface:unary-op _ t)
(op-id t)]
[(term:surface:op _ t)
(op-id t)]
[(term:surface:swap _ t)
(op-id t)]
[(term:surface:id _ s)
s]
[else
#f]))
(module+ test
(define l0 (srcloc #f #f #f #f #f))
(define (term:surface:list . l)
(foldr (λ (e a)
(term:surface:list:cons l0 e a))
(term:surface:list:empty l0)
l))
(define (term:ast:list . l)
(foldr (λ (e a)
(term:ast:list:cons l0 e a))
(term:ast:list:empty l0)
l))
(define drop-srcloc
(match-lambda
[(term:ast:str _ s)
(term:ast:str l0 s)]
[(term:ast:id _ s)
(term:ast:id l0 s)]
[(term:ast:num:int _ s sz)
(term:ast:num:int l0 s sz)]
[(term:ast:list:empty _)
(term:ast:list:empty l0)]
[(term:ast:list:cons _ a d)
(term:ast:list:cons l0 (drop-srcloc a) (drop-srcloc d))]
;; surface
[(term:surface:id _ s)
(term:surface:id l0 s)]
[(term:surface:num:int _ n sgs sza szs b)
(term:surface:num:int l0 n sgs sza szs b)]
[(term:surface:op _ s)
(term:surface:op l0 (drop-srcloc s))]
[(term:surface:unary-op _ s)
(term:surface:unary-op l0 (drop-srcloc s))]
[(term:surface:swap _ s)
(term:surface:swap l0 (drop-srcloc s))]
[(term:surface:list:empty _)
(term:surface:list:empty l0)]
[(term:surface:list:cons _ a d)
(term:surface:list:cons l0 (drop-srcloc a) (drop-srcloc d))]))
(define (pps x)
(format "~a" (pp x)))
(define-syntax (check-en* stx)
(syntax-case stx ()
[(_ en i eoe)
(quasisyntax/loc stx
(test-case
(format "(~a ~v)" 'en (pp i))
(let ()
(define eo (drop-srcloc eoe))
(define ao (drop-srcloc (en i)))
(cond
[(equal? ao eo)
(check-equal? ao eo)]
[else
(define eos (pps eo))
(define aos (pps ao))
(if (string=? eos aos)
#,(syntax/loc stx
(fail (format "[pp eq] expected ~a, got ~a"
eo ao)))
#,(syntax/loc stx
(fail (format "[pp neq] expected ~a, got ~a"
eos aos))))]))))])))
(define (surface-group s)
(define (surface-until-op l)
(match l
[(? term:surface:list:empty?)
(values l l)]
[(term:surface:list:cons loc f r)
(cond
[(op? f)
(values (term:surface:list:empty loc) l)]
[else
(define-values (until-op more) (surface-until-op r))
(values (term:surface:list:cons loc f until-op)
more)])]
[(term loc)
(en-error loc (format "surface-until-op: unexpected term: ~e" s))]))
(define (singleton-extract l)
(match l
[(term:surface:list:cons _ f (term:surface:list:empty _))
f]
[_
l]))
(define (move-forward-two l)
(match l
[(? term:surface:list:empty?)
l]
[(term:surface:list:cons loc f r)
(term:surface:list:cons loc f (surface-group r))]
[(term loc)
(en-error loc (format "move-forward-two: unexpected term: ~e" s))]))
(match s
[(? term:surface:list:empty?)
s]
[(term:surface:list:cons loc _ _)
(define-values (until-op more)
(surface-until-op s))
(if (term:surface:list:cons? until-op)
(term:surface:list:cons
loc
(singleton-extract until-op)
(move-forward-two more))
(move-forward-two more))]
[(term loc)
(en-error loc (format "surface-group: unexpected term: ~e" s))]))
(module+ test
(define-syntax-rule (check-group i eo)
(check-en* surface-group i eo))
(check-group
(term:surface:list)
(term:surface:list))
(check-group
(term:surface:list
(term:surface:id l0 'a))
(term:surface:list
(term:surface:id l0 'a)))
(check-group
(term:surface:list
(term:surface:id l0 'a)
(term:surface:id l0 'b))
(term:surface:list
(term:surface:list
(term:surface:id l0 'a)
(term:surface:id l0 'b))))
(check-group
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:id l0 'a))
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:id l0 'a)))
(check-group
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:id l0 'a)
(term:surface:id l0 'b))
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:list (term:surface:id l0 'a)
(term:surface:id l0 'b))))
(check-group
(term:surface:list
(term:surface:id l0 'a)
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:id l0 'c))
(term:surface:list
(term:surface:id l0 'a)
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:id l0 'c)))
(check-group
(term:surface:list
(term:surface:id l0 'a)
(term:surface:id l0 'b)
(term:surface:swap l0 (term:surface:id l0 'OP))
(term:surface:id l0 'c)
(term:surface:id l0 'd))
(term:surface:list
(term:surface:list (term:surface:id l0 'a)
(term:surface:id l0 'b))
(term:surface:swap l0 (term:surface:id l0 'OP))
(term:surface:list (term:surface:id l0 'c)
(term:surface:id l0 'd))))
(check-group
(term:surface:list
(term:surface:id l0 'a)
(term:surface:id l0 'b)
(term:surface:swap
l0 (term:surface:swap l0 (term:surface:op l0 (term:surface:id l0 '+))))
(term:surface:id l0 'c)
(term:surface:id l0 'd))
(term:surface:list
(term:surface:list (term:surface:id l0 'a)
(term:surface:id l0 'b))
(term:surface:swap
l0 (term:surface:swap l0 (term:surface:op l0 (term:surface:id l0 '+))))
(term:surface:list (term:surface:id l0 'c)
(term:surface:id l0 'd))))
(check-group
(term:surface:list
(term:surface:id l0 'a)
(term:surface:id l0 'b)
(term:surface:swap l0 (term:surface:op l0 (term:surface:id l0 '+)))
(term:surface:id l0 'c)
(term:surface:id l0 'd))
(term:surface:list
(term:surface:list
(term:surface:id l0 'a)
(term:surface:id l0 'b)
(term:surface:swap l0 (term:surface:op l0 (term:surface:id l0 '+)))
(term:surface:id l0 'c)
(term:surface:id l0 'd))))
(check-group
(term:surface:list
(term:surface:list (term:surface:id l0 'a)
(term:surface:id l0 'b))
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:id l0 'c))
(term:surface:list
(term:surface:list (term:surface:id l0 'a)
(term:surface:id l0 'b))
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:id l0 'c)))
(check-group
(term:surface:list
(term:surface:id l0 'a)
(term:surface:id l0 'b)
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:id l0 'c))
(term:surface:list
(term:surface:list (term:surface:id l0 'a)
(term:surface:id l0 'b))
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:id l0 'c)))
(check-group
(term:surface:list
(term:surface:id l0 'a)
(term:surface:id l0 'b)
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:id l0 'c)
(term:surface:id l0 'd))
(term:surface:list
(term:surface:list (term:surface:id l0 'a)
(term:surface:id l0 'b))
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:list (term:surface:id l0 'c)
(term:surface:id l0 'd))))
(check-group
(term:surface:list
(term:surface:id l0 'a)
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:id l0 'b)
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:id l0 'c)
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:id l0 'd))
(term:surface:list
(term:surface:id l0 'a)
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:id l0 'b)
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:id l0 'c)
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:id l0 'd)))
(check-group
(term:surface:list
(term:surface:id l0 'i)
(term:surface:id l0 'width)
(term:surface:op l0 (term:surface:id l0 '|;|)))
(term:surface:list
(term:surface:list
(term:surface:id l0 'i)
(term:surface:id l0 'width))
(term:surface:op l0 (term:surface:id l0 '|;|)))))
(define DEBUG? (make-parameter #f))
(define (debug . args)
(when (DEBUG?)
(apply eprintf args)))
(struct prec-state (output operators) #:transparent)
(define (surface-precedence s)
(define fake-loc (srcloc #f #f #f #f #f))
(define (E input st)
(match input
[(term:surface:list:empty loc)
(pop-rators:top st)]
[(term:surface:list:cons loc f r)
(if (op? f)
(E r (push-rator loc (maybe-unary-rator loc f st) st))
(E r (push-rand loc f st)))]
[(term loc)
(en-error loc (format "prec/E: unexpected term: ~e" s))]))
(define (maybe-unary-rator loc f st)
(match st
[(prec-state (term:surface:list:empty _) _)
(term:surface:unary-op loc f)]
[_
f]))
(define (pop-rators:top st)
(match st
[(prec-state (or (and output (term:surface:list:empty _))
(term:surface:list:cons
_ (and output (not (? term:surface:list?)))
(term:surface:list:empty _)))
(term:surface:list:empty _))
output]
[(and #f
(prec-state
(term:surface:list:cons
rand-loc-0 (and rand0
(? term:surface:list?))
(term:surface:list:empty mt-loc))
(term:surface:list:cons rator-loc rator
(term:surface:list:empty _))))
(term:surface:list:cons
rator-loc rator
rand0)]
[_
(pop-rators st)]))
(define (pop-rators st)
(match st
[(prec-state (term:surface:list:cons _ f (term:surface:list:empty _))
(term:surface:list:empty _))
f]
[_
(define stp (pop-rator st))
(pop-rators stp)]))
(define (push-rand loc n st)
(match-define (prec-state rands rators) st)
(prec-state (term:surface:list:cons loc n rands) rators))
(define (push-rator loc op st)
(cond
[(op-precedence> (top-op st) op)
(push-rator loc op (pop-rator st))]
[else
(match-define (prec-state rands rators) st)
(prec-state rands (term:surface:list:cons loc op rators))]))
(define (top-op st)
(match-define (prec-state rands rators) st)
(match rators
[(term:surface:list:empty _)
#f]
[(term:surface:list:cons _ op _)
op]
[(term loc)
(en-error loc (format "prec/top-op: unexpected term: ~e" s))]))
(define (op-precedence o)
(case (op-id o)
[(-> |.|)
100]
[(! ~ ++ -- &)
90]
[(* / %)
80]
[(+ -)
70]
[(<< >>)
60]
[(< <= > >=)
50]
[(&)
40]
[(^)
30]
[(&&)
20]
[(\|\|)
10]
[(|,|)
5]
[(=)
-10]
[(|;|)
-20]
[else
0]))
(define (op-unary? x)
;; xxx actually look at id?
(term:surface:unary-op? x))
(define (op-binary? x)
;; xxx something else?
(not (op-unary? x)))
(define (op-left? x)
;; xxx something else?
#f)
(define (op-precedence> x y)
(cond
[(and (not x))
#f]
[(and (not y))
(error 'op-precedence> "impossible case: ~e ~e\n" x y)]
[(and (op-binary? x)
(op-binary? y))
(or (> (op-precedence x)
(op-precedence y))
(and (op-left? x)
(= (op-precedence x)
(op-precedence y))))]
[(and (op-unary? x)
(op-binary? y))
(>= (op-precedence x)
(op-precedence y))]
[(and (op-unary? y))
#f]
[else
(error 'op-precedence> "unknown case: ~e ~e\n" x y)]))
(define (pop-rator st)
(match st
[(prec-state
(term:surface:list:cons
rand-loc-1 rand1
(term:surface:list:cons rand-loc-0 rand0 rands))
(term:surface:list:cons rator-loc rator rators))
(prec-state
(term:surface:list:cons
rator-loc
(term:surface:list:cons
rator-loc rator
(term:surface:list:cons
rand-loc-0 rand0
(term:surface:list:cons
rand-loc-1 rand1
(term:surface:list:empty rand-loc-1))))
rands)
rators)]
[(prec-state
(and rands
(term:surface:list:cons
rand-loc-0 rand0
(term:surface:list:empty mt-loc)))
(term:surface:list:cons rator-loc rator rators))
(prec-state
(term:surface:list:cons
rator-loc
(term:surface:list:cons
rator-loc rator
rands)
(term:surface:list:empty mt-loc))
rators)]
[(term loc)
(en-error loc (format "prec/pop-op: unexpected term: ~e" s))]))
(E s
(prec-state
(term:surface:list:empty fake-loc)
(term:surface:list:empty fake-loc))))
(module+ test
(define-syntax-rule (check-prec i eo)
(check-en* surface-precedence i eo))
(check-prec
(term:surface:list)
(term:surface:list))
(check-prec
(term:surface:list
(term:surface:id l0 'a))
(term:surface:id l0 'a))
(check-prec
(term:surface:list
(term:surface:list
(term:surface:id l0 'i)
(term:surface:id l0 'width))
(term:surface:op l0 (term:surface:id l0 '|;|)))
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '|;|))
(term:surface:list
(term:surface:id l0 'i)
(term:surface:id l0 'width))))
(check-prec
(term:surface:list
(term:surface:id l0 'i)
(term:surface:op l0 (term:surface:id l0 '<))
(term:surface:id l0 'width)
(term:surface:op l0 (term:surface:id l0 '-))
(term:surface:id l0 'twenty))
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '<))
(term:surface:id l0 'i)
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '-))
(term:surface:id l0 'width)
(term:surface:id l0 'twenty))))
(check-prec
(term:surface:list
(term:surface:id l0 'i)
(term:surface:op l0 (term:surface:id l0 '>))
(term:surface:id l0 'thirty)
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:id l0 'seventy))
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '>))
(term:surface:id l0 'i)
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:id l0 'thirty)
(term:surface:id l0 'seventy))))
(check-prec
(term:surface:list
(term:surface:id l0 'four)
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:id l0 'two)
(term:surface:op l0 (term:surface:id l0 '*))
(term:surface:id l0 'eight))
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:id l0 'four)
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '*))
(term:surface:id l0 'two)
(term:surface:id l0 'eight))))
(check-prec
(term:surface:list
(term:surface:id l0 'i)
(term:surface:op l0 (term:surface:id l0 '>))
(term:surface:num:int l0 20 #f 32 #f #f)
(term:surface:op l0 (term:surface:id l0 '&&))
(term:surface:id l0 'i)
(term:surface:op l0 (term:surface:id l0 '<))
(term:surface:num:int l0 50 #f 32 #f #f)
(term:surface:op l0 (term:surface:id l0 (string->symbol "||")))
(term:surface:id l0 'i)
(term:surface:op l0 (term:surface:id l0 '>))
(term:surface:num:int l0 100 #f 32 #f #f)
(term:surface:op l0 (term:surface:id l0 '&&))
(term:surface:id l0 'i)
(term:surface:op l0 (term:surface:id l0 '<))
(term:surface:id l0 'width)
(term:surface:op l0 (term:surface:id l0 '-))
(term:surface:num:int l0 20 #f 32 #f #f))
(term:surface:list
(term:surface:op l0 (term:surface:id l0 (string->symbol "||")))
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '&&))
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '>))
(term:surface:id l0 'i)
(term:surface:num:int l0 20 #f 32 #f #f))
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '<))
(term:surface:id l0 'i)
(term:surface:num:int l0 50 #f 32 #f #f)))
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '&&))
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '>))
(term:surface:id l0 'i)
(term:surface:num:int l0 100 #f 32 #f #f))
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '<))
(term:surface:id l0 'i)
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '-))
(term:surface:id l0 'width)
(term:surface:num:int l0 20 #f 32 #f #f))))))
(check-prec
(term:surface:list
(term:surface:num:int l0 4 #f 32 #f #f)
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:num:int l0 2 #f 32 #f #f)
(term:surface:op l0 (term:surface:id l0 '*))
(term:surface:num:int l0 8 #f 32 #f #f)
(term:surface:op l0 (term:surface:id l0 '|,|))
(term:surface:num:int l0 52 #f 32 #f #f)
(term:surface:op l0 (term:surface:id l0 '-))
(term:surface:num:int l0 2 #f 32 #f #f))
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '|,|))
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:num:int l0 4 #f 32 #f #f)
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '*))
(term:surface:num:int l0 2 #f 32 #f #f)
(term:surface:num:int l0 8 #f 32 #f #f)))
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '-))
(term:surface:num:int l0 52 #f 32 #f #f)
(term:surface:num:int l0 2 #f 32 #f #f))))
(check-prec
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '-))
(term:surface:num:int l0 4 #f 32 #f #f)
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:num:int l0 2 #f 32 #f #f)
(term:surface:op l0 (term:surface:id l0 '*))
(term:surface:num:int l0 8 #f 32 #f #f))
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:list
(term:surface:unary-op l0 (term:surface:op l0 (term:surface:id l0 '-)))
(term:surface:num:int l0 4 #f 32 #f #f))
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '*))
(term:surface:num:int l0 2 #f 32 #f #f)
(term:surface:num:int l0 8 #f 32 #f #f))))
(check-prec
(term:surface:list
(term:surface:num:int l0 1 #f 32 #f #f)
(term:surface:op l0 (term:surface:id l0 '|;|)))
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '|;|))
(term:surface:num:int l0 1 #f 32 #f #f)))
(check-prec
(term:surface:list
(term:surface:num:int l0 1 #f 32 #f #f)
(term:surface:op l0 (term:surface:id l0 '|;|))
(term:surface:num:int l0 2 #f 32 #f #f))
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '|;|))
(term:surface:num:int l0 1 #f 32 #f #f)
(term:surface:num:int l0 2 #f 32 #f #f)))
(check-prec
(term:surface:list
(term:surface:num:int l0 1 #f 32 #f #f)
(term:surface:op l0 (term:surface:id l0 '|;|))
(term:surface:num:int l0 2 #f 32 #f #f)
(term:surface:op l0 (term:surface:id l0 '|;|)))
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '|;|))
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '|;|))
(term:surface:num:int l0 1 #f 32 #f #f)
(term:surface:num:int l0 2 #f 32 #f #f))))
(check-prec
(term:surface:list
(term:surface:num:int l0 1 #f 32 #f #f)
(term:surface:op l0 (term:surface:id l0 '|;|))
(term:surface:num:int l0 2 #f 32 #f #f)
(term:surface:op l0 (term:surface:id l0 '|;|))
(term:surface:num:int l0 3 #f 32 #f #f)
(term:surface:op l0 (term:surface:id l0 '|;|))
(term:surface:num:int l0 4 #f 32 #f #f)
(term:surface:op l0 (term:surface:id l0 '|;|)))
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '|;|))
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '|;|))
(term:surface:num:int l0 1 #f 32 #f #f)
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '|;|))
(term:surface:num:int l0 2 #f 32 #f #f)
(term:surface:list
(term:surface:op l0 (term:surface:id l0 '|;|))
(term:surface:num:int l0 3 #f 32 #f #f)
(term:surface:num:int l0 4 #f 32 #f #f)))))))
(define (force-list t)
(if (term:ast:list? t)
t
(term:ast:list:cons (term-src t) t (term:ast:list:empty (term-src t)))))
;; (en)forest : surface -> ast
(define (en s)
(match s
[(term:surface:str loc s)
(term:ast:str loc s)]
[(term:surface:id loc s)
(term:ast:id loc s)]
[(term:surface:op loc s)
(en s)]
[(term:surface:unary-op loc s)
(en s)]
[(term:surface:parens loc s)
(en s)]
[(term:surface:swap loc s)
(en s)]
[(term:surface:group loc s)
(en (surface-precedence (surface-group s)))]
[(term:surface:braces loc s)
(term:ast:list:cons
loc
(term:ast:id loc '#%braces)
(en s))]
[(term:surface:brackets loc s)
(term:ast:list:cons
loc
(term:ast:id loc '#%brackets)
(en s))]
[(term:surface:num:int loc s _ size _ _)
(term:ast:num:int loc s size)]
[(term:surface:text loc l)
(str-merge (en l))]
[(term:surface:list:empty loc)
(term:ast:list:empty loc)]
[(term:surface:list:cons loc first-t rest-t)
(term:ast:list:cons loc (en first-t) (en rest-t))]
[(term:surface:text-form loc cmd datums body)
(define skip (term:surface:list:empty loc))
(match* (cmd datums body)
[(#f #f #f)
(en-error loc "illegal text-form")]
[((term:surface:id _ '|;|) (not #f) _)
;; xxx why bother?
(en-error loc "illegal comment")]
[((not #f) #f #f)
(en cmd)]
[(_
(or (as ([datums skip]) #f)
(term:surface:brackets _ datums))
(or (as ([body skip]) #f)
(term:surface:braces _ body)))
(define inner
(term:ast:list-append
(force-list (en datums))
(force-list (en body))))
(if cmd
(term:ast:list:cons loc (en cmd) inner)
inner)])]
[(term loc)
(en-error loc (format "unexpected term: ~e" s))]))
(module+ test
(define-syntax-rule (check-en i eo)
(check-en* en i eo))
(check-en (term:surface:str l0 "test")
(term:ast:str l0 "test"))
(check-en (term:surface:id l0 'test)
(term:ast:id l0 'test))
(check-en (term:surface:num:int l0 20 #f 32 #f #f)
(term:ast:num:int l0 20 32))
(check-en (term:surface:op
l0 (term:surface:id l0 '+))
(term:ast:id l0 '+))
(check-en (term:surface:group
l0 (term:surface:list
(term:surface:num:int l0 0 #f 32 #f #f)
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:num:int l0 1 #f 32 #f #f)
(term:surface:num:int l0 2 #f 32 #f #f)))
(term:ast:list
(term:ast:id l0 '+)
(term:ast:num:int l0 0 32)
(term:ast:list
(term:ast:num:int l0 1 32)
(term:ast:num:int l0 2 32))))
(check-en (term:surface:group
l0 (term:surface:list
(term:surface:num:int l0 1 #f 32 #f #f)
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:id l0 'foo)
(term:surface:num:int l0 2 #f 32 #f #f)))
(term:ast:list
(term:ast:id l0 '+)
(term:ast:num:int l0 1 32)
(term:ast:list
(term:ast:id l0 'foo)
(term:ast:num:int l0 2 32))))
(check-en (term:surface:group
l0 (term:surface:list
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:num:int l0 1 #f 32 #f #f)
(term:surface:num:int l0 2 #f 32 #f #f)))
(term:ast:list
(term:ast:id l0 '+)
(term:ast:list
(term:ast:num:int l0 1 32)
(term:ast:num:int l0 2 32))))
(check-en (term:surface:group
l0 (term:surface:list
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:id l0 'foo)
(term:surface:num:int l0 2 #f 32 #f #f)))
(term:ast:list
(term:ast:id l0 '+)
(term:ast:list
(term:ast:id l0 'foo)
(term:ast:num:int l0 2 32))))
(check-en (term:surface:group
l0 (term:surface:list
(term:surface:id l0 'foo)
(term:surface:num:int l0 1 #f 32 #f #f)
(term:surface:num:int l0 2 #f 32 #f #f)))
(term:ast:list
(term:ast:id l0 'foo)
(term:ast:num:int l0 1 32)
(term:ast:num:int l0 2 32)))
(check-en (term:surface:group
l0 (term:surface:list
(term:surface:swap l0 (term:surface:op l0 (term:surface:id l0 '+)))
(term:surface:num:int l0 1 #f 32 #f #f)
(term:surface:num:int l0 2 #f 32 #f #f)))
(term:ast:list
(term:ast:id l0 '+)
(term:ast:num:int l0 1 32)
(term:ast:num:int l0 2 32)))
(check-en (term:surface:group
l0 (term:surface:list
(term:surface:num:int l0 1 #f 32 #f #f)
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:num:int l0 2 #f 32 #f #f)))
(term:ast:list
(term:ast:id l0 '+)
(term:ast:num:int l0 1 32)
(term:ast:num:int l0 2 32)))
(check-en (term:surface:group
l0 (term:surface:list
(term:surface:id l0 'f)
(term:surface:num:int l0 1 #f 32 #f #f)
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:num:int l0 2 #f 32 #f #f)))
(term:ast:list
(term:ast:id l0 '+)
(term:ast:list
(term:ast:id l0 'f)
(term:ast:num:int l0 1 32))
(term:ast:num:int l0 2 32)))
(check-en (term:surface:group
l0 (term:surface:list
(term:surface:id l0 'f)
(term:surface:num:int l0 1 #f 32 #f #f)
(term:surface:op l0 (term:surface:id l0 '+))
(term:surface:num:int l0 2 #f 32 #f #f)
(term:surface:op l0 (term:surface:id l0 '*))
(term:surface:num:int l0 3 #f 32 #f #f)))
(term:ast:list
(term:ast:id l0 '+)
(term:ast:list
(term:ast:id l0 'f)
(term:ast:num:int l0 1 32))
(term:ast:list
(term:ast:id l0 '*)
(term:ast:num:int l0 2 32)
(term:ast:num:int l0 3 32))))
;; xxx parens
;; xxx swap
;; xxx braces
;; xxx brackets
;; xxx text
;; xxx list - mt / cons
;; xxx text-form
(check-en (rd-body (open-input-string "@code[ext putchar ( 0x41 );]"))
(term:ast:list
(term:ast:list
(term:ast:id l0 'code)
(term:ast:id l0 '|;|)
(term:ast:list
(term:ast:id l0 'ext)
(term:ast:id l0 'putchar)
(term:ast:num:int l0 65 32))))))
(define (en-file s)
(match-define (term:surface-file loc lang c) s)
(term:ast-file
loc (en lang)
(term:ast:list:cons
loc (term:ast:id loc '#%module-begin)
(en c))))
;; xxx en-file tests
(module+ test
(require racket/runtime-path
racket/pretty)
(define-runtime-path examples "../rk/examples")
(define fip (open-input-file (build-path examples "first.rk")))
(port-count-lines! fip)
(pretty-write
(pp
(en-file (rd-file fip)))))
(define (ck-read ip)
(syntax->datum (ck-read-syntax #f ip)))
;; xxx ck-read
(define (srcloc->stx src)
(datum->syntax #f #f (cdr (vector->list (struct->vector src)))))
;; xxx srcloc->stx
(define (ast->stx t)
(match t
[(or (term:ast:id src i)
(term:ast:str src i)
;; xxx ignore size
(term:ast:num:int src i _)
(as ([i '()])
(term:ast:list:empty src)))
(datum->syntax #f i (srcloc->stx src))]
[(term:ast:list:cons src a d)
(quasisyntax/loc (srcloc->stx src)
(#,(ast->stx a) . #,(ast->stx d)))]))
;; xxx ast->stx
(define (ck-read-syntax name ip)
(port-count-lines! ip)
(ast->stx (en (rd-body ip))))
;; xxx ck-read-syntax
(provide
(contract-out
[ck-read
(-> input-port?
any/c)]
[ck-read-syntax
(-> any/c input-port?
any/c)]))
| true |
9949c6481b56b9567449370b86c4a0f8f843450f | 307e7ce615ea3de155d645c12a63c4deb8817f6f | /SafeScheme/translater.rkt | 75ddc56d1e2646a41f88a58c22c39e6d8fecc219 | []
| no_license | leanthonyrn/srcc | be059cf94494c3833f6daf93d625b2292bb17a84 | 1f1f41c6ed7b402fdde42e887d339fe4708066b0 | refs/heads/master | 2016-09-06T00:16:43.379168 | 2011-07-06T10:51:57 | 2011-07-06T10:51:57 | 32,238,319 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 129 | rkt | translater.rkt | #lang racket
(require "safe-scheme.rkt")
(apply safe-files->csharp-files (vector->list (current-command-line-arguments)))
| false |
93c2035fa7c23322f9fc40bb8182027f4e035c30 | ba5171ca08db9e0490db63df59ee02c85a581c70 | /group-a/Week5-Homework1/2.rkt | 54afacd43bee00b23054a87e18e7607f5cefe829 | []
| no_license | semerdzhiev/fp-2020-21 | 030071ed14688751d615b1d1d39fa406c131a285 | 64fa00c4f940f75a28cc5980275b124ca21244bc | refs/heads/master | 2023-03-07T10:17:49.583008 | 2021-02-17T11:46:08 | 2021-02-17T11:46:08 | 302,139,037 | 31 | 16 | null | 2021-01-17T15:22:17 | 2020-10-07T19:24:33 | Racket | UTF-8 | Racket | false | false | 1,601 | rkt | 2.rkt | #lang racket
;; 9876543210
;; 1111111111
;; 1111110000
;; 0000000111
;; 0000001000
(define (// x y) (quotient x y))
(define (left-shift set n)
(* set
(expt 2 n))
)
(define (right-shift set n)
(// set
(expt 2 n))
)
(define (drop-lower set n)
(left-shift (right-shift set n) n)
)
(define (drop-higher-then set n)
(- set (drop-lower set n))
)
(define (set-remove set elem)
(+ (drop-lower set (+ elem 1))
(drop-higher-then set elem))
)
(define (set-add set elem)
(+ (set-remove set elem)
(left-shift 1 elem)
)
)
(define (set-contains? set elem)
(= set
(set-add (set-remove set elem)
elem))
)
(define (set-empty? set)
(= 0 set)
)
(define (set-size set)
(define (loop s count)
(if (set-empty? s)
count
(loop (right-shift s 1)
(+ (drop-higher-then s 1)
count)))
)
(loop set 0)
)
(define (set-intersect s1 s2)
(define (loop set1 set2 num result)
(cond
((set-empty? set1) result)
((set-empty? set2) result)
(else (loop (right-shift set1 1)
(right-shift set2 1)
(+ num 1)
(+ result
(left-shift (min (drop-higher-then set1 1)
(drop-higher-then set2 1))
num)
)
))
)
)
(loop s1 s2 0 0)
)
(define the-set #b11111111)
(define a-set #b11001100)
(printf "~b\n" the-set)
(printf "~b\n" a-set)
(printf "~b\n" (set-intersect the-set a-set))
| false |
207e70e424d1e590de06cb40feaec6367d171931 | 69737038eb05d67fc7e5f2a793dad960174cc913 | /epeus/core.rkt | 4ef11370738d7a5d617f8edd3201442f85a08a7d | [
"MIT"
]
| permissive | hoelzl/Iliad-Racket | c3265b77dd6793e84f3b24da290d56613d2aef97 | b29e410662d9017f67a16292fb80639c7806ba07 | refs/heads/master | 2021-01-10T10:01:24.159725 | 2013-03-18T16:31:21 | 2013-03-18T16:31:21 | 8,446,223 | 0 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 83,816 | rkt | core.rkt | ;;; Implementation of a CLOS-like object system for racket.
;;; Based on tiny-clos by Gregor Kizcales
;;; Heavily hacked by Eli Barzilay: Maze is Life! ([email protected])
;;; Converted to plain racket and again heavily hacked by
;;; Matthias Hölzl ([email protected])
;;; Original copyright:
;;; ***************************************************************************
;;; Copyright (c) 1992 Xerox Corporation. All Rights Reserved.
;;;
;;; Use, reproduction, and preparation of derivative works are permitted. Any
;;; copy of this software or of any derivative work must include the above
;;; copyright notice of Xerox Corporation, this paragraph and the one after it.
;;; Any distribution of this software or derivative works must comply with all
;;; applicable United States export control laws.
;;; This software is made available AS IS, and XEROX CORPORATION DISCLAIMS ALL
;;; WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED
;;; WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, AND
;;; NOTWITHSTANDING ANY OTHER PROVISION CONTAINED HEREIN, ANY LIABILITY FOR
;;; DAMAGES RESULTING FROM THE SOFTWARE OR ITS USE IS EXPRESSLY DISCLAIMED,
;;; WHETHER ARISING IN CONTRACT, TORT (INCLUDING NEGLIGENCE) OR STRICT
;;; LIABILITY, EVEN IF XEROX CORPORATION IS ADVISED OF THE POSSIBILITY OF SUCH
;;; DAMAGES.
;;; ***************************************************************************
#lang racket
(require "utils.rkt")
(require "core-syntax.rkt")
(require racket/performance-hint)
(require (only-in srfi/1 find every append-reverse))
;;; For convenience; maybe import only required binding later
;;; (e.g., xor)
(require (for-syntax racket))
(require (for-syntax racket/syntax))
(require (for-syntax syntax/parse))
;;; For debugging
;;; (require macro-debugger/stepper)
;;; Documentation from the original file:
;;; TODO: Update this and add it to the scribble documentation. Most importantly,
;;; some functions now take racket keyword arguments instead of rest argument
;;; lists. --tc
;;;
;;; A very simple CLOS-like language, embedded in Scheme, with a simple MOP.
;;; The features of the default base language are:
;;; * Classes, with instance slots, but no slot options.
;;; * Multiple-inheritance.
;;; * Generic functions with multi-methods and class specializers only.
;;; * Primary methods and call-next-method; no other method combination.
;;; * Uses Scheme's lexical scoping facilities as the class and generic function
;;; naming mechanism. Another way of saying this is that class, generic
;;; function and methods are first-class (meta)objects.
;;;
;;; While the MOP is simple, it is essentially equal in power to both MOPs in
;;; AMOP. This implementation is not at all optimized, but the MOP is designed so
;;; that it can be optimized. In fact, this MOP allows better optimization of
;;; slot access extenstions than those in AMOP.
;;;
;;; In addition to calling a generic, the entry points to the default base
;;; language are:
;;;
;;; (MAKE-CLASS name list-of-superclasses list-of-slots)
;;; (MAKE-GENERIC-FUNCTION)
;;; (MAKE-METHOD #:name [name '-anonymous-] list-of-specializers procedure)
;;; (ADD-METHOD generic method)
;;;
;;; (MAKE <keyword-arg> ... class)
;;; (INITIALIZE <keyword-arg> ... instance) ; Add methods to this, dont call directly.
;;;
;;; (SLOT-REF object slot-name)
;;; (SLOT-SET! object slot-name new-value)
;;; (SLOT-BOUND? object slot-name)
;;;
;;; So, for example, one might do:
;;; (define <position> (make-class '<position> (list <object>) (list 'x 'y)))
;;; (add-method initialize
;;; (make-method (list <position>)
;;; (lambda (call-next-method pos initargs)
;;; (for-each (lambda (initarg-name slot-name)
;;; (slot-set! pos slot-name
;;; (getarg initargs initarg-name 0)))
;;; '(x y)
;;; '(x y)))))
;;; (set! p1 (make <position> 'x 1 'y 3))
;;;
;;; NOTE! Do not use EQUAL? to compare objects! Use EQ? or some hand written
;;; procedure. Objects have a pointer to their class, and classes are
;;; circular structures, and...
;;;
;;; The introspective part of the MOP looks like the following. Note that
;;; these are ordinary procedures, not generics.
;;; * CLASS-OF
;;; INSTANCE-OF?
;;; SUBCLASS?
;;; * CLASS-DIRECT-SUPERS
;;; CLASS-DIRECT-SLOTS
;;; CLASS-CPL
;;; CLASS-SLOTS
;;; CLASS-NAME
;;; * GENERIC-METHODS
;;; GENERIC-ARITY
;;; GENERIC-NAME
;;; GENERIC-COMBINATION
;;; * METHOD-SPECIALIZERS
;;; METHOD-PROCEDURE
;;; METHOD-NAME
;;;
;;; The intercessory protocol looks like (generics in uppercase):
;;; ELI: All of these are generic functions now!
;;; MAKE
;;; ALLOCATE-INSTANCE
;;; INITIALIZE (really a base-level generic)
;;; class initialization
;;; COMPUTE-CPL
;;; COMPUTE-SLOTS
;;; COMPUTE-GETTER-AND-SETTER
;;; method initialization
;;; COMPUTE-APPLY-METHOD
;;; ADD-METHOD (Notice this is not a generic!) [eli: yes!]
;;; COMPUTE-APPLY-GENERIC
;;; COMPUTE-METHODS
;;; COMPUTE-METHOD-MORE-SPECIFIC?
;;; COMPUTE-APPLY-METHODS
;;;; Instances
;;;; =========
;;; We need to build what, in a more real implementation, would be the interface
;;; to the memory subsystem: instances and entities. The former are used for
;;; instances of instances of <class>; the latter are used for instances of
;;; instances of <entity-class> (i.e., instances that can be called like
;;; procedures). In this MOP, none of this is visible to base- or MOP-level
;;; programmers.
;;; A few things to note, that have influenced the way all this is done:
;;; - R4RS doesn't provide a mechanism for specializing the
;;; behavior of the printer for certain objects.
;;; - Some Scheme implementations bomb when printing circular structures --
;;; that is, arrays and/or lists that somehow point back to themselves.
;;; So, the natural implementation of instances -- vectors whose first field
;;; point to the class -- is straight on out. Instead, we use a procedure to
;;; `encapsulate' that natural representation.
;;; Having gone that far, it makes things simpler to unify the way normal
;;; instances and entities are handled, at least in the lower levels of the
;;; system. Don't get faked out by this -- the user shouldn't think of normal
;;; instances as being procedures, they aren't. (At least not in this
;;; language.) If you are using this to teach, you probably want to hide the
;;; implementation of instances and entities from people.
(define unspecified-initializer
(kw-lambda (kws kw-args . args)
???))
;; Basic allocation follows, all was in a single let, but this is not needed
;; with Racket's modules. Also modified to use simple structs for
;; everything, including entities since PLT has applicable struct objects.
;;; TODO: Define the following functions as generic functions
(define (print-object obj port mode)
(define name (if (has-slot? obj 'name)
(slot-ref obj 'name)
'-unnamed-object-))
(define the-class (class-of obj))
(define the-class-name (and the-class (class-name the-class)))
(cond [(has-slot? obj 'direct-supers)
(define supers (slot-ref obj 'direct-supers))
(define super-names (map class-name supers))
(fprintf port "#{~a #:supers ~a #:class ~a}"
name super-names the-class-name)]
[name
(fprintf port "#{~a #:class ~a}"
name the-class-name)]
[else
(fprintf port "#{instance-of ~a}" the-class-name)]))
(define (object-equal? lhs rhs recursive-equal?)
(equal?/recur lhs rhs recursive-equal?))
(define (object-hash obj recursive-equal-hash)
(+ (recursive-equal-hash (instance-class obj))
(recursive-equal-hash (instance-slots obj))))
(define (object-secondary-hash obj recursive-equal-hash)
(+ (recursive-equal-hash (instance-class obj))
(recursive-equal-hash (instance-slots obj))))
(define %the-instance-proc
(kw-lambda (kws kw-args o . args)
(keyword-apply (instance-proc o) kws kw-args args)))
(provide instance?)
(define-values (struct:instance make-instance instance? inst-ref inst-set!)
;; slots: class, function, slots-vector
(make-struct-type 'instance ; name
#f ; super-type
3 ; init-field-cnt
0 ; auto-field-cnt
#f ; auto-value
(list ; props
(cons (generic->property-descriptor gen:custom-write)
(vector print-object))
(cons (generic->property-descriptor gen:equal+hash)
(vector object-equal?
object-hash
object-secondary-hash))
;; Note: need to define the procedure as property, not as
;; direct (8th) argument to `make-struct-type', otherwise
;; keyword arguments are not recognized.
(cons prop:procedure %the-instance-proc))
(current-inspector)))
(define-syntax-rule (instance-class x)
(inst-ref x 0))
(define-syntax-rule (instance-proc x)
(inst-ref x 1))
(define-syntax-rule (instance-slots x)
(inst-ref x 2))
;;; TODO: We should probably export some of these things in different modules,
;;; e.g., mop and mop-internals.
(provide set-instance-proc!) ; dangerous!
(define-syntax-rule (set-instance-class! x c)
(inst-set! x 0 c))
(define-syntax-rule (set-instance-proc! x p)
(inst-set! x 1 p))
(define-syntax-rule (set-instance-slots! x s)
(inst-set! x 2 s))
(define-syntax-rule (%instance-ref o f)
(vector-ref (instance-slots o) f))
(define-syntax-rule (%instance-set! o f n)
(vector-set! (instance-slots o) f n))
(define (%allocate-instance class nfields)
(make-instance class
(lambda args
(error 'instance
"an instance isn't a procedure -- can't apply it"))
(make-vector nfields ???)))
(define (%allocate-entity class nfields)
(make-instance class
(lambda args
(error 'entity
"tried to call an entity before its proc is set"))
(make-vector nfields ???)))
;; Basic allocation ends here.
;; This is used only once as part of bootstrapping the braid.
(define (set-instance-class-to-self! class)
(set-instance-class! class class))
(define object? instance?)
;;;; Slots
;;;; =====
;;; In contrast to the original tiny-clos we define slots as racket structures.
;;; The properties of a slot are stored in the `slot-properties' hash table, keyed
;;; by symbols (not keywords).
;;;
(struct slot (name properties))
(define (make-slot-named name)
(slot name (make-immutable-hasheq)))
(define (slot-property slot key [default #f])
(when (keyword? key)
(set! key (keyword->symbol key)))
(hash-ref (slot-properties slot) key default))
(define (slot-allocation slot)
(slot-property slot 'allocation))
(define (slot-valid-initargs slot)
;; TODO: Define protocol for other slot initargs?
(define initarg (slot-property slot 'initarg))
(if initarg (list initarg) null))
(define (merge-slots slots)
(unless (pair? slots)
(error 'merge-slots "argument must be a list of slots"))
(when (null? slots)
(error 'merge-slots "list of slots cannot be empty"))
(define first-slot (first slots))
(define other-slots (rest slots))
(define name (slot-name first-slot))
(unless (andmap (lambda (s)
(eq? (slot-name s) name))
other-slots)
(error 'merge-slots "cannot merge different slots"))
(define properties (slot-properties first-slot))
(for ([other (in-list other-slots)])
(for ([(property value) (in-hash (slot-properties other))])
;; TODO: Should probably call a generic `merge-properties' here instead of
;; overwriting the old value. Otherwise arguments that may appear multiple
;; times will break. But that has to wait until after we've bootstrapped
;; everything.
(set! properties (hash-set properties property value))))
(slot name properties))
;;;; Classes
;;;; =======
(define change-class!
(kw-lambda (kws kw-args obj new-class)
(let ([new (keyword-apply make kws kw-args new-class)]
[new-slots (%class-slots new-class)])
(for ([slot (in-list (%class-slots (class-of obj)))])
;; FIXME: Define a protocol to control which slot allocations
;; are actually allocated in instances and which ones are not
(when (and (not (eq? 'class (slot-allocation slot)))
(assq (slot-name slot) new-slots))
(slot-set! new (slot-name slot) (slot-ref obj (slot-name slot)))))
(set-instance-slots! obj (instance-slots new))
(set-instance-class! obj new-class))))
;; This might be cute for some ugly hacks but not needed for now.
;; Copies the contents of source to target, making it an "alias" object. This
;; is no re-provided by clos.rkt, but maybe it will in the future...
;; (define (copy-object-contents! target source)
;; (set-instance-class! target (instance-class source))
;; (set-instance-proc! target (instance-proc source))
;; (set-instance-slots! target (instance-slots source)))
(define (class-of x)
;; This is an early version that will be modified when built-in types are
;; introduced later.
(if (instance? x) (instance-class x) <top>))
;;; Now we can get down to business. First, we initialize the braid. For
;;; bootstrapping, we define an early version of `make'. It will be changed to
;;; the real version later on.
(define (make class
#:direct-supers [dsupers '()]
#:direct-slots [dslots '()]
#:name [name '-anonymous-]
#:arity [arity #f]
#:specializers [specializers '()]
#:procedure [procedure #f]
#:qualifier [qualifier 'primary])
(cond [(or (eq? class <class>) (eq? class <entity-class>))
(define new (%allocate-instance class
(length the-slots-of-a-class)))
(define cpl (let loop ([sups dsupers] [so-far (list new)])
(if (null? sups)
(reverse so-far)
(loop (append (cdr sups)
(%class-direct-supers (car sups)))
(if (memq (car sups) so-far)
so-far
(cons (car sups) so-far))))))
(define slots
(apply append dslots (map %class-direct-slots (cdr cpl))))
(define nfields 0)
(define field-initializers '())
;; this is a temporary allocator version, kept as the original
;; one in tiny-clos. the permanent version below is modified.
(define allocator
(lambda (init)
(let ([f nfields])
(set! nfields (+ nfields 1))
(set! field-initializers (cons init field-initializers))
(mcons (lambda (o) (%instance-ref o f))
(lambda (o n) (%instance-set! o f n))))))
(define getters-n-setters
(map (lambda (s)
(cons (slot-name s) (allocator unspecified-initializer)))
slots))
(%set-class-direct-supers! new dsupers)
(%set-class-direct-slots! new dslots)
(%set-class-cpl! new cpl)
(%set-class-slots! new slots)
(%set-class-nfields! new nfields)
(%set-class-field-initializers! new (reverse field-initializers))
(%set-class-getters-n-setters! new getters-n-setters)
(%set-class-name! new name)
(%set-class-initializers! new '()) ; no class inits now
(%set-class-valid-initargs! new #f) ; no initargs now
new]
[(eq? class <generic>)
(let ([new (%allocate-entity class (length (%class-slots class)))])
(%set-generic-methods! new '())
(%set-generic-arity! new arity)
(%set-generic-name! new name)
(%set-generic-combination! new #f)
new)]
[(eq? class <method>)
(let ([new (%allocate-entity class (length (%class-slots class)))])
(%set-method-specializers! new specializers)
(%set-method-procedure! new procedure)
(%set-method-qualifier! new qualifier)
(%set-method-name! new name)
(set-instance-proc! new (method:compute-apply-method #f new))
new)]))
;;; These are the real versions of slot-ref and slot-set!. Because of the way the
;;; new slot access protocol works, with no generic call in line, they can be
;;; defined up front like this. Cool eh?
(define/macro (slot-ref object slot-name)
((lookup-slot-info (class-of object) slot-name mcar)
object))
(define/macro (slot-set! object slot-name new-value)
((lookup-slot-info (class-of object) slot-name mcdr)
object new-value))
(define set-slot-ref! slot-set!)
;; This is a utility that is used to make locked slots
(define (lock-setter! g+s key error)
(let ([getter (mcar g+s)]
[setter (mcdr g+s)])
(set-mcdr! g+s
(lambda (o n)
(cond [(and (pair? n) (eq? key (car n)) (not (eq? key #t)))
(setter o (cdr n))]
[(eq? ??? (getter o)) (setter o n)]
[else (error)])))))
(define (has-slot? object slot-name)
(and (assq slot-name
(%class-getters-n-setters (class-of object)))
#t))
(define (slot-bound? object slot-name)
(not (eq? ??? (%slot-ref object slot-name))))
(define (lookup-slot-info class slot-name selector)
(define getter-n-setter
(assq slot-name (%class-getters-n-setters class)))
(if getter-n-setter
(selector (cdr getter-n-setter))
(raise* make-exn:fail:contract
"slot-ref: no slot `~.s' in ~.s"
slot-name class)))
;;; These are for optimizations - works only for single inheritance!
(define (%slot-getter class slot-name)
(lookup-slot-info class slot-name mcar))
(define (%slot-setter class slot-name)
(lookup-slot-info class slot-name mcdr))
;;; TODO: Change singletons to structs
;;; Singleton class. A hash-table is used so it is still possible to compare
;;; classes with eq?.
(define singleton-classes (make-weak-hasheq))
(define (singleton x)
(or (hash-ref singleton-classes x #f)
(let ([c (list 'singleton x)])
(hash-set! singleton-classes x c)
c)))
(define/macro (singleton? x)
(and (pair? x) (eq? (car x) 'singleton)))
(define singleton-value cadr)
(define struct-to-class-table (make-hasheq))
(define (struct-type->class stype)
(hash-ref
struct-to-class-table stype
(thunk
(let-values ([(name init-field-k auto-field-k accessor mutator
immutable-k-list super skipped?)
(struct-type-info stype)])
(let* ([supers (list (cond [super (struct-type->class super)]
[skipped? <opaque-struct>]
[else <struct>]))]
[proc? (procedure-struct-type? stype)]
[supers (if proc? (cons <primitive-procedure> supers) supers)]
[this (parameterize ([*default-object-class* #f])
(make (if proc? <procedure-class> <primitive-class>)
#:name name #:direct-supers supers))])
(hash-set! struct-to-class-table stype this)
this)))))
(define (class-direct-slots c) (%slot-ref c 'direct-slots))
(define (class-direct-supers c) (%slot-ref c 'direct-supers))
(define (class-slots c) (%slot-ref c 'slots))
(define (class-nfields c) (%slot-ref c 'nfields))
(define (class-field-initializers c) (%slot-ref c 'field-initializers))
(define (class-getters-n-setters c) (%slot-ref c 'getters-n-setters))
(define (class-cpl c) (%slot-ref c 'cpl))
(define (class-name c) (%slot-ref c 'name))
(define (class-initializers c) (%slot-ref c 'initializers))
(define (class-valid-initargs c) (%slot-ref c 'valid-initargs))
(define (generic-methods g) (%slot-ref g 'methods))
(define (generic-arity g) (%slot-ref g 'arity))
(define (generic-name g) (%slot-ref g 'name))
(define (generic-combination g) (%slot-ref g 'combination))
(define (method-specializers m) (%slot-ref m 'specializers))
(define (method-procedure m) (%slot-ref m 'procedure))
(define (method-qualifier m) (%slot-ref m 'qualifier))
(define (method-name m) (%slot-ref m 'name))
(define (method-arity m)
(let ([a (procedure-arity (%method-procedure m))])
(cond [(integer? a) (sub1 a)]
[(arity-at-least? a)
;; keyword-procedures always return (arity-at-least 0)...
(if (zero? (arity-at-least-value a))
(make-arity-at-least 0)
(make-arity-at-least (sub1 (arity-at-least-value a))))]
[else (error 'method-arity "the procedure in ~.s has bad arity ~e"
m a)])))
;;; These versions will be optimized later.
(define %class-direct-slots class-direct-slots)
(define %class-direct-supers class-direct-supers)
(define %class-slots class-slots)
(define %class-nfields class-nfields)
(define %class-field-initializers class-field-initializers)
(define %class-getters-n-setters class-getters-n-setters)
(define %class-cpl class-cpl)
(define %class-name class-name)
(define %class-initializers class-initializers)
(define %class-valid-initargs class-valid-initargs)
(define %generic-methods generic-methods)
(define %generic-arity generic-arity)
(define %generic-name generic-name)
(define %generic-combination generic-combination)
(define %method-specializers method-specializers)
(define %method-procedure method-procedure)
(define %method-qualifier method-qualifier)
(define %method-name method-name)
(define (%set-class-direct-slots! c x) (%slot-set! c 'direct-slots x))
(define (%set-class-direct-supers! c x) (%slot-set! c 'direct-supers x))
(define (%set-class-slots! c x) (%slot-set! c 'slots x))
(define (%set-class-nfields! c x) (%slot-set! c 'nfields x))
(define (%set-class-field-initializers! c x)
(%slot-set! c 'field-initializers x))
(define (%set-class-getters-n-setters! c x)
(%slot-set! c 'getters-n-setters x))
(define (%set-class-cpl! c x) (%slot-set! c 'cpl x))
(define (%set-class-name! c x) (%slot-set! c 'name x))
(define (%set-class-initializers! c x) (%slot-set! c 'initializers x))
(define (%set-class-valid-initargs! c x) (%slot-set! c 'valid-initargs x))
(define (%set-generic-methods! g x) (%slot-set! g 'methods x))
(define (%set-generic-arity! g x) (%slot-set! g 'arity x))
(define (%set-generic-name! g x) (%slot-set! g 'name x))
(define (%set-generic-combination! g x) (%slot-set! g 'combination x))
(define (%set-method-specializers! m x) (%slot-set! m 'specializers x))
(define (%set-method-procedure! m x) (%slot-set! m 'procedure x))
(define (%set-method-qualifier! m x) (%slot-set! m 'qualifier x))
(define (%set-method-name! m x) (%slot-set! m 'name x))
;;; These are used to access the two slots that optimize generic invocations.
(define (%generic-app-cache g ) (%slot-ref g 'app-cache))
(define (%generic-singletons-list g ) (%slot-ref g 'singletons-list))
(define (%set-generic-app-cache! g x) (%slot-set! g 'app-cache x))
(define (%set-generic-singletons-list! g x) (%slot-set! g 'singletons-list x))
;;; The next 7 clusters define the 6 initial classes. It takes 7 to 6 because
;;; the first and fourth both contribute to <class>.
(define the-slots-of-a-class
'(direct-supers ; (class ...)
direct-slots ; ((slot name properties) ...)
cpl ; (class ...)
slots ; ((name . options) ...)
nfields ; an integer
field-initializers ; (proc ...)
getters-n-setters ; ((slot-name getter setter) ...)
name ; a symbol
initializers ; (proc ...)
valid-initargs)) ; (initarg ...) or #f
(define getters-n-setters-for-class ; see lookup-slot-info
(map (lambda (s)
(let ([f (position-of s the-slots-of-a-class)])
(cons s (mcons (lambda (o) (%instance-ref o f))
(lambda (o n) (%instance-set! o f n))))))
the-slots-of-a-class))
(define <class> (%allocate-instance #f (length the-slots-of-a-class)))
(set-instance-class-to-self! <class>)
;; In the original tiny-clos, this block used to just set the getters-n-setters
;; slot of a class to '() since it wasn't used anyway. In Swindle the MOP
;; accessors are all optimized to directly get the vector element because the meta
;; hierarchy is assumed to be single-inheritance only (allocation of more slots
;; always come after the built in ones), so what I do here is set the slot value
;; properly, and since `%class-getters-n-setters' accesses the vector directly it
;; doesn't go through slot-ref, which means that the
;; slot-ref definition above is fine. So,
;; (%set-class-getters-n-setters! <class> getters-n-setters-for-class)
;; translates into this:
(define bootstrap-getters-n-setters
(cdr (assq 'getters-n-setters getters-n-setters-for-class)))
(define bootstrap-%set-class-getters-n-setters!
(mcdr bootstrap-getters-n-setters))
(define bootstrap-%get-class-getters-n-setters
(mcar bootstrap-getters-n-setters))
(bootstrap-%set-class-getters-n-setters!
<class> getters-n-setters-for-class)
;; and now the direct `%class-getters-n-setters' version:
(set! %class-getters-n-setters
bootstrap-%get-class-getters-n-setters)
(define <top> (make <class>
#:name '<top>
#:direct-supers '()
#:direct-slots '()))
(define <object> (make <class>
#:name '<object>
#:direct-supers (list <top>)
#:direct-slots '()))
;;; This cluster, together with the first cluster above that defines <class>
;;; and sets its class, have the effect of:
;;; (define <class>
;;; (make <class> #:name '<class>
;;; #:direct-supers (list <object>)
;;; #:direct-slots '(direct-supers ...)))
(%set-class-direct-supers! <class> (list <object>))
(%set-class-cpl! <class> (list <class> <object> <top>))
(%set-class-direct-slots! <class> (map make-slot-named
the-slots-of-a-class))
(%set-class-slots! <class> (map make-slot-named
the-slots-of-a-class))
(%set-class-nfields! <class> (length the-slots-of-a-class))
(%set-class-field-initializers! <class> (map (lambda (s)
unspecified-initializer)
the-slots-of-a-class))
(%set-class-name! <class> '<class>)
(%set-class-initializers! <class> '())
(%set-class-valid-initargs! <class> #f)
(define <procedure-class>
(make <class>
#:name '<procedure-class>
#:direct-supers (list <class>)
#:direct-slots '()))
(define <entity-class>
(make <class>
#:name '<entity-class>
#:direct-supers (list <procedure-class>)
#:direct-slots '()))
(define <function>
(make <class>
#:name '<function>
#:direct-supers (list <top>)
#:direct-slots '()))
;;; The two extra slots below (app-cache and singletons-list) are used to optimize
;;; generic invocations: app-cache holds an 'equal hash-table that maps a list of
;;; classes to the lambda expression that holds the method call (it used to be an
;;; l-hash-table, but 'equal is ok since we can't compare swindleobj instances
;;; recursively -- which is also why tool.rkt needs to redefine the
;;; `render-value/format' method). The contents of this slot is reset whenever a
;;; method is added to the generic. Two problems make things a little more
;;; complicated. First, if add-method is used to modify any of the
;;; generic-invocation-generics then all of these caches should be flushed, this
;;; is achieved by setting *generic-app-cache-tag* to a new [list] object and the
;;; value of app-cache is a cons of that value and the actual hash table - if we
;;; see that the car is not eq? to the current tag, then we flush the cache.
;;; Second, singleton values might screw things up, so we hold in singletons-list
;;; a list that has the same length as all method specializer lists, each element
;;; contains a hash table with all singleton values that appear in that place
;;; matched to #t, then when we try to see if we have a cached function for a
;;; generic application, we scan the argument list against this list, and any
;;; value that has a singleton with that value at some method, is left in place
;;; for the app-cache lookup (it is used itself rather than its class). This
;;; whole thing is a bit complicated but leads to dramatic run-time improvement.
(define <generic>
(make <entity-class>
#:direct-supers (list <object> <function>)
#:direct-slots (map make-slot-named
'(methods arity name combination
app-cache singletons-list)) ; see above
#:name '<generic>))
(define <method>
(make <entity-class>
#:direct-supers (list <object> <function>)
#:direct-slots (map make-slot-named
'(specializers procedure qualifier name))
#:name '<method>))
;; Do this since compute-apply-method relies on them not changing, as well as a
;; zillion other places. A method should be very similar to a lambda.
(for ([slot (in-list '(specializers procedure qualifier))])
(lock-setter! (lookup-slot-info <method> slot values)
#t
(lambda ()
(raise* make-exn:fail:contract
"slot-set!: slot `~.s' in <method> is locked" slot))))
;;; Default values
;;; --------------
;;; Having defined the necessary classes, we can now introduce parameters for
;;; default values.
(define *default-class-class* (make-parameter <class>))
(define *default-entityclass-class* (make-parameter <entity-class>))
(define *default-method-class* (make-parameter <method>))
(define *default-generic-class* (make-parameter <generic>))
(define *default-object-class* (make-parameter #f))
(define (make-class [name '-anonymous-]
[direct-supers (list <object>)]
[direct-slots '()])
(make <class>
#:name name
#:direct-supers direct-supers
#:direct-slots direct-slots))
(define (make-generic-function [name '-anonymous-] [arity #f])
(make <generic> #:name name #:arity arity))
(define (make-method #:name [name '-anonymous-] specializers procedure)
(make <method>
#:name name
#:specializers specializers
#:procedure procedure))
(define no-next-method (make-generic-function 'no-next-method))
(define no-applicable-method (make-generic-function 'no-applicable-method))
;;; Add possibility of generic-independent method application - this is the
;;; instance-proc of methods, which is activated when you apply the object (in the
;;; original, methods could not be applied). This is defined using this name and
;;; arguments because it is later used directly by the generic function (cannot
;;; use the generic in the initial make since methods need to be created when the
;;; generics are constructed).
(define (method:compute-apply-method call-next-method method)
;; (printf "method:compute-apply-method\n")
(let* ([specializers (%method-specializers method)]
[*no-next-method* ; see the *no-next-method* trick below
(kw-lambda (kws kw-args . args)
(apply no-next-method #f method kws kw-args args))]
[proc (%method-procedure method)]
[arity (method-arity method)]
[exact? (integer? arity)]
[required ((if exact? identity arity-at-least-value) arity)])
(when (and exact? (> (length specializers) required))
(error 'compute-apply-method
"got ~e specializers for ~s - too many for procedure arity ~a"
(length specializers) (%method-name method) required))
;;; TODO: Check keyword args
(kw-lambda (kws kw-args . args)
;; (printf "applying method ~a\n" (method-name method))
(cond [(if exact?
(not (= (length args) required))
(< (length args) required))
(raise* make-exn:fail:contract:arity
"method ~a: expects ~a~e argument~a, given ~e~a"
(%method-name method)
(if exact? "" "at least ") required
(if (= 1 required) "" "s") (length args)
(if (null? args) "" (format ": ~e" args)))]
[(not (every instance-of? args specializers))
(let loop ([args args] [specs specializers])
(if (instance-of? (car args) (car specs))
(loop (cdr args) (cdr specs))
(raise* make-exn:fail:contract
"method ~a: expects argument of type ~a; given ~e"
(%method-name method) (%class-name (car specs))
(car args))))]
[else (keyword-apply proc kws kw-args *no-next-method* args)]))))
(define allocate-instance
(make-generic-function 'allocate-instance))
(define initialize
(make-generic-function 'initialize))
(define compute-getter-and-setter
(make-generic-function 'compute-getter-and-setter))
(define compute-cpl
(make-generic-function 'compute-cpl))
(define compute-slots
(make-generic-function 'compute-slots))
(define compute-apply-method
(make-generic-function 'compute-apply-method))
(define compute-apply-generic
(make-generic-function 'compute-apply-generic))
(define compute-methods
(make-generic-function 'compute-methods))
(define compute-method-more-specific?
(make-generic-function 'compute-method-more-specific?))
(define compute-apply-methods
(make-generic-function 'compute-apply-methods))
;;; The next thing to do is bootstrap generic functions.
(define generic-invocation-generics
(list compute-apply-generic compute-methods
compute-method-more-specific? compute-apply-methods))
;;; This is used to signal whenever all method caches are to be reset - so when
;;; a method is added to generic-invocation-generics, this is set to some value
;;; which is not eq? to the current one.
(define *generic-app-cache-tag* #t)
(define (add-method generic method)
;; add singleton specializer value (if any) to the corresponding hash table
;; in singletons-list.
(define (add-to-singletons-list specs tables)
;; (printf "add-to-singletons-list\n")
(cond
[(null? specs) null]
[(%singleton? (car specs))
(let ([ht (or (car tables)
(make-weak-hasheq))])
(hash-set! ht (singleton-value (car specs)) #t)
(cons ht (add-to-singletons-list (cdr specs) (cdr tables))))]
[else
(cons (car tables)
(add-to-singletons-list (cdr specs) (cdr tables)))]))
(define (n-falses n)
;; (printf "n-falses\n")
(let loop ([n n] [r '()]) (if (zero? n) r (loop (sub1 n) (cons #f r)))))
(let ([tables (%generic-singletons-list generic)]
[specs (%method-specializers method)]
[qualifier (%method-qualifier method)])
;; make sure that tables always contain enough hash tables (or #f's)
;; (printf "add-method ~a\n" (generic-name generic))
(cond [(eq? tables ???)
(set! tables (n-falses (length specs)))]
[(< (length tables) (length specs))
(set! tables (append
tables
(n-falses (- (length specs) (length tables)))))])
;; (printf "add-method: 1\n")
(set! tables (add-to-singletons-list specs tables))
;; (printf "add-method: 2\n")
(%set-generic-singletons-list! generic tables)
;; (printf "add-method: 3\n")
(if (memq generic generic-invocation-generics)
;; reset all caches by changing the value of *generic-app-cache-tag*
(set! *generic-app-cache-tag* (list #f))
;; reset this generic app-cache
(%set-generic-app-cache! generic ???))
;; (printf "add-method 4\n")
(%set-generic-methods!
generic
(cons method
(filter (lambda (m)
(not (and (= (length (method-specializers m)) (length specs))
(every eq? (method-specializers m) specs)
(eq? (%method-qualifier m) qualifier))))
(%generic-methods generic))))
;; (printf "add-method 5\n")
(set-instance-proc! generic (compute-apply-generic generic))))
;;; Adding a method calls COMPUTE-APPLY-GENERIC, the result of which calls the
;;; other generics in the generic invocation protocol. Two, related, problems
;;; come up. A chicken and egg problem and a infinite regress problem. In order
;;; to add our first method to COMPUTE-APPLY-GENERIC, we need something sitting
;;; there, so it can be called. The first definition below does that.
;;;
;;; Then, the second definition solves both the infinite regress and the not
;;; having enough of the protocol around to build itself problem the same way:
;;; it special cases invocation of generics in the invocation protocol.
(set-instance-proc!
compute-apply-generic
(lambda (generic)
;; (printf "compute-apply-generic (bootstrap)\n")
((%method-procedure (car (%generic-methods generic))) '() generic)))
(add-method
compute-apply-generic
(make-method #:name "{compute-apply-generic <generic>}"
(list <generic>)
(lambda (call-next-method generic)
;; (printf "compute-apply-generic ~a\n" (generic-name generic))
;; This function converts the list of arguments to a list of keys to look for
;; in the cache - use the argument's class except when there is a
;; corresponding singleton with the same value at the same position.
(define (get-keys args tables)
;; (printf "get-keys\n")
(let loop ([args args] [tables tables] [ks '()])
(if (or (null? tables) (null? args))
(reverse ks)
(loop (cdr args) (cdr tables)
(cons (if (and (car tables)
(hash-ref
(car tables) (car args) false-func))
(car args)
(class-of (car args)))
ks)))))
;; This is the main function that brings the correct value from the cache, or
;; generates one and store it if there is no entry, or the cache was reset.
;; Finally, it is applied to the arguments as usual.
;; NOTE: This code is delicate! Handle with extreme care!
(kw-lambda (kws kw-args . args)
;; (printf "applying generic ~a\n" (generic-name generic))
(let ([app-cache (%generic-app-cache generic)]
[arity (%generic-arity generic)]
[keys (get-keys args (%generic-singletons-list generic))]
[ground? (and ;* Ground case
(memq generic generic-invocation-generics)
(pair? args)
(memq (car args) generic-invocation-generics))])
;; This function creates the cached closure -- the assumption is that
;; `keys' contain a specification that will identify all calls that will
;; have this exact same list.
;; TODO: Include keyword args here!
;; (printf "applying generic: computed caches\n")
(define (compute-callable)
;; (printf "compute-callable\n")
(let ([c (if ground?
(let ([m (%method-procedure
(last (%generic-methods generic)))])
(kw-lambda (kws kw-args . args)
(keyword-apply m kws kw-args #f args)))
(compute-apply-methods
generic (compute-methods generic args)))])
(hash-set! (cdr app-cache) keys c)
c))
;; TODO: checks for keyword args
;; (printf "applying generic: arity checks\n")
(when (cond [(not arity) #f]
[(integer? arity) (not (= (length args) arity))]
[else (< (length args) (arity-at-least-value arity))])
(let ([least (and (arity-at-least? arity)
(arity-at-least-value arity))])
(raise* make-exn:fail:contract:arity
"generic ~a: expects ~a~e argument~a, given ~e~a"
(%generic-name generic)
(if least "at least " "") (or least arity)
(if (= 1 (or least arity)) "" "s") (length args)
(if (null? args) "" (format ": ~e" args)))))
;; (printf "applying generic: performed arity checks\n")
(when (or (eq? app-cache ???)
(not (eq? (car app-cache) *generic-app-cache-tag*)))
;; (printf "applying generic: invalidating app cache\n")
(set! app-cache (cons *generic-app-cache-tag*
(make-weak-hash)))
(%set-generic-app-cache! generic app-cache))
;; (printf "applying method: extracting method from app cache: ~a\n" keys)
(define real-method (hash-ref (cdr app-cache) keys compute-callable))
;; (printf "applying generic: calling keyword-apply\n")
(keyword-apply real-method kws kw-args args))))))
(add-method compute-methods
(make-method #:name "{compute-methods <generic>}"
(list <generic>)
(lambda (call-next-method generic args)
(printf "compute-methods\n")
(define more-specific-for-args? (compute-method-more-specific? generic))
(define nargs (length args))
(sort (filter
(lambda (m)
;; Note that every only goes as far as the shortest list
(and
(procedure-arity-includes? m nargs)
(every instance-of? args (%method-specializers m))))
(%generic-methods generic))
(lambda (m1 m2) (more-specific-for-args? m1 m2 args))))))
(add-method compute-method-more-specific?
(make-method #:name "{method-more-specific <generic>}"
(list <generic>)
(lambda (call-next-method generic)
(printf "compute-method-more-specific?\n")
(lambda (m1 m2 args)
(let loop ([specls1 (%method-specializers m1)]
[specls2 (%method-specializers m2)]
[args args])
(cond [(and (null? specls1) (null? specls2))
(if (eq? (%method-qualifier m1) (%method-qualifier m2))
(error 'generic
"two methods are equally specific in ~e" generic)
#f)]
;; some methods in this file have fewer specializers than
;; others, for things like args -- so remove this, leave the
;; args check but treat the missing as if it's <top>
;; ((or (null? specls1) (null? specls2))
;; (error 'generic
;; "two methods have different number of ~
;; specializers in ~e" generic))
[(null? args) ; shouldn't happen
(error 'generic
"fewer arguments than specializers for ~e" generic)]
[(null? specls1) ; see above -> treat this like <top>
(if (eq? <top> (car specls2))
(loop specls1 (cdr specls2) (cdr args))
#f)]
[(null? specls2) ; see above -> treat this like <top>
(if (eq? <top> (car specls1))
(loop (cdr specls1) specls2 (cdr args))
#t)]
[else (let ([c1 (car specls1)] [c2 (car specls2)])
(if (eq? c1 c2)
(loop (cdr specls1) (cdr specls2) (cdr args))
(more-specific? c1 c2 (car args))))]))))))
(add-method compute-apply-methods
(make-method #:name "{compute-apply-methods <generic>}"
(list <generic>)
(lambda (call-next-method generic methods)
(printf "compute-apply-methods ~a\n" (generic-name generic))
(let ([primaries '()] [arounds '()] [befores '()] [afters '()]
[combination (%generic-combination generic)])
(define-syntax (let-args stx)
(syntax-parse stx
[(_ ([kws:id new-kws:id]
[kw-args:id new-kw-args:id]
[args:id new-args:id])
body:expr ...+)
(syntax-protect
#'(begin
(when (xor (null? new-kws) (null? new-kw-args))
(error 'compute-apply-methods
"~e and ~e must both be null or non-null"
new-kws new-kw-args))
(printf "compute-apply-methods: ~a, ~a\n" kws new-kws)
(let-values ([(kws kw-args)
(merge-sorted-keyword-lists
kws kw-args new-kws new-kw-args)])
(let ([args (if (null? new-args) args new-args)])
body ...))))]))
;; TODO: This comment does not seem to be relevant anymore... --tc
;; *** Trick: this (and in <method> above) is the only code that is
;; supposed to ever apply a method procedure. So, the closure that
;; will invoke `no-next-method' is named `*no-next-method*' so it is
;; identifiable. The only way to break this would be to call the
;; method-procedure directly on an object with such a name.
(define one-step
(if combination
(combination generic)
(lambda (tail kws kw-args args)
;; tail is never null: (null? (cdr tail)) below, and the fact
;; that this function is applied on the primaries which are
;; never null
(kw-lambda (new-kws new-kw-args . new-args)
(let-args ([kws new-kws]
[kw-args new-kw-args]
[args new-args])
(keyword-apply
(cdar tail) kws kw-args
(if (null? (cdr tail))
(kw-lambda (kws kw-args . args)
(apply no-next-method generic (caar tail)
kws kw-args args))
(one-step (cdr tail) kws kw-args args))
args))))))
(define ((apply-before/after-method kws kw-args args) method)
(keyword-apply (cdr method) kws kw-args
(kw-lambda (kws kw-args . args)
(apply no-next-method generic (car method)
kws kw-args args))
args))
(define (call-before-primary-after kws kw-args args)
(kw-lambda (new-kws new-kw-args . new-args)
;; could supply newargs below, but change before calling befores
(let-args ([kws new-kws]
[kw-args new-kw-args]
[args new-args])
(for-each (apply-before/after-method kws kw-args args) befores)
(begin0 ((one-step primaries args))
(for-each (apply-before/after-method args) afters)))))
(define (one-around-step tail kws kw-args args)
(if (null? tail)
(call-before-primary-after kws kw-args args)
(kw-lambda (new-kws new-kw-args . new-args)
(let-args ([kws new-kws]
[kw-args new-kw-args]
[args new-args])
(keyword-apply (cdar tail) kws kw-args
(one-around-step (cdr tail) args) args)))))
;; first sort by qualifier and pull out method-procedures
(let loop ([ms methods])
(unless (null? ms)
(let-syntax ([push! (syntax-rules ()
[(_ p)
(set! p (cons (cons (car ms)
(%method-procedure (car ms)))
p))])])
(case (%method-qualifier (car ms))
[(primary) (push! primaries)]
[(around) (push! arounds)]
[(before) (push! befores)]
[(after) (push! afters)]
;; ignore other qualifiers
;; [else (error 'compute-apply-methods
;; "a method ~e has an unexpected qualifier `~e'"
;; (car methods)
;; (%method-qualifier (car methods)))]
)
(loop (cdr ms)))))
(set! primaries (reverse primaries))
(set! arounds (reverse arounds))
(set! befores (reverse befores))
;; no reverse for afters
(cond [(null? primaries)
(lambda args (apply no-applicable-method generic args))]
;; optimize common case of only primaries
[(and (null? befores) (null? afters) (null? arounds))
;; args is initialized to () since if it is a generic of no
;; arguments then it will always stay so, otherwise, the first call
;; will have the real arguments anyway
(one-step primaries '() '() '())]
[else (one-around-step arounds '() '() '())])))))
(define (make-generic-combination
#:init [init '()] #:combine [combine cons]
#:process-methods [process-methods #f]
#:process-result [process-result #f]
#:control [control #f])
(lambda (generic)
(lambda (tail kws kw-args dummy-args)
(let ([tail (if process-methods (process-methods tail) tail)])
(kw-lambda (kws kw-args . args)
(let loop ([res init] [tail tail])
;; see *no-next-method* trick above
(let ([*no-next-method*
(kw-lambda (kws kw-args . args)
(apply no-next-method generic (caar tail)
kws kw-args args))])
(if (null? tail)
(if process-result (process-result res) res)
(if control
(control loop res
(lambda ()
(keyword-apply (cdar tail) kws kw-args
*no-next-method* args))
(cdr tail))
(loop (combine
(keyword-apply (cdar tail) kws kw-args
*no-next-method* args) res)
(cdr tail)))))))))))
(define generic-+-combination
(make-generic-combination #:init 0 #:combine +))
(define generic-list-combination
(make-generic-combination #:process-result reverse))
(define generic-min-combination
(make-generic-combination #:process-result (lambda (r) (apply min r))))
(define generic-max-combination
(make-generic-combination #:process-result (lambda (r) (apply max r))))
(define generic-append-combination
(make-generic-combination
#:process-result (lambda (r) (apply append (reverse r)))))
(define generic-append!-combination
(make-generic-combination
#:process-result (lambda (r) (apply append (reverse r)))))
(define generic-begin-combination
(make-generic-combination #:init #f #:combine (lambda (x y) x)))
(define generic-and-combination
(make-generic-combination
#:init #t
#:control (lambda (loop val this tail) (and val (loop (this) tail)))))
(define generic-or-combination
(make-generic-combination
#:init #f
#:control (lambda (loop val this tail) (or (this) (loop #f tail)))))
;; optimized helper
(define-syntax-rule (%struct->class c)
(if (struct-type? c)
(struct-type->class c)
c))
(define (subclass? c1 c2)
(if (%singleton? c1)
(if (%singleton? c2)
(eq? (singleton-value c1) (singleton-value c2))
(instance-of? (singleton-value c1) (%struct->class c2)))
(memq (%struct->class c2) (%class-cpl (%struct->class c1)))))
(define (instance-of? x c)
;; efficiency: many cases use <top> (all untyped arguments)
(or (eq? c <top>)
(if (%singleton? c)
;; efficiency: similar to `subclass?' above
(eq? (singleton-value c) x)
;;; TODO: Why do we need %struct->class here? Should class-of not always
;;; return a "real" class?
(memq (%struct->class c) (%class-cpl (%struct->class (class-of x)))))))
(define/macro (class? x)
(instance-of? x <class>))
(define (specializer? x) (or (class? x) (%singleton? x) (struct-type? x)))
(define (more-specific? c1 c2 arg)
(if (%singleton? c1)
(and (eq? (singleton-value c1) arg)
(not (and (%singleton? c2) (eq? (singleton-value c1) arg))))
(let ([cc1 (memq (%struct->class c1) (%class-cpl (class-of arg)))])
(and cc1 (memq (%struct->class c2) (cdr cc1))))))
(add-method initialize
(make-method #:name "{initialize <top>}"
(list <top>)
(kw-lambda (kws kw-args call-next-method object)
;; (printf "initialize: <top>\n")
(error 'initialize "can't initialize an instance of ~e"
(class-of object)))))
(add-method initialize
(make-method #:name "{initialize <object>}"
(list <object>)
(kw-lambda (kws kw-args call-next-method object)
;; (printf "initialize: <object>\n")
(let* ([class (class-of object)]
[field-initializers (%class-field-initializers class)])
;; TODO: Define the initializers so that they can be keyword-applied.
(for-each (lambda (init) (keyword-apply kws kw-args init '()))
(%class-initializers class))
(let loop ([n 0] [inits field-initializers])
(when (pair? inits)
(%instance-set! object n (keyword-apply (car inits) kws kw-args '()))
(loop (+ n 1) (cdr inits))))))))
(add-method initialize
(make-method #:name "{initialize <class>}"
(list <class>)
(lambda (call-next-method class
#:name [name '-anonymous-]
#:direct-supers [supers '()]
#:autoinitargs [autoinitargs #f]
#:direct-slots [dslots '()]
#:valid-initargs [valid-initargs '()])
;; (printf "initialize: <class>\n")
(call-next-method)
(%set-class-direct-supers!
class
(let ([default (*default-object-class*)])
;; check valid supers, and always have an object class
(cond
[(not default) supers] ; check disabled
[(or (not supers) (null? supers)) (list default)]
[(not (list? supers)) (error 'class "bad superclasses: ~e" supers)]
[else (let ([c (find
(lambda (c)
;; TODO: should we use <object> here
;; instead of default? We might want to
;; set a specialized default class but
;; still be able to inherit from
;; <object>. --tc
(not (and (%class? c) (subclass? c default))))
supers)])
(if c
(error 'class "cannot inherit from a ~a, ~e"
(if (%class? c) "non-object class" "non-class") c)
supers))])))
(%set-class-direct-slots!
class
(map (lambda (s)
(cond [(slot? s)
s]
[(pair? s)
(slot (first s) (initargs->hash (rest s)))]
[(symbol? s)
(make-slot-named s)]
[else
(error 'initialize
(format "~a is not a valid slot spec" s))]))
dslots))
(%set-class-cpl! class (compute-cpl class))
(%set-class-slots! class (compute-slots class))
(%set-class-name! class name)
(define nfields 0)
(define field-initializers '())
;; allocator: give me an initializer function, get a slot number
(define allocator
(lambda (init)
(let ([f nfields])
(set! nfields (+ nfields 1))
(set! field-initializers
(cons init field-initializers))
f)))
(define getters-n-setters
(map (lambda (slot)
(cons (slot-name slot)
(compute-getter-and-setter class slot allocator)))
(%class-slots class)))
(%set-class-nfields! class nfields)
(%set-class-field-initializers! class (reverse field-initializers))
(%set-class-getters-n-setters! class getters-n-setters)
(%set-class-initializers!
class (reverse
(append-map
(lambda (c)
(if (instance-of? c <class>) (%class-initializers c) '()))
(rest (%class-cpl class)))))
(for ([slot (in-list (%class-slots class))])
(set! valid-initargs
(append (slot-valid-initargs slot) valid-initargs)))
(%set-class-valid-initargs! ; for sanity checks
class valid-initargs))))
(add-method initialize
(make-method #:name "{initialize <generic>}"
(list <generic>)
(lambda (#:arity [arity #f] #:name [name '-anonymous-]
#:combination [combination #f]
call-next-method generic)
;; (printf "initialize <generic> ~a\n" name)
(call-next-method)
(%set-generic-methods! generic '())
(%set-generic-arity! generic arity)
(%set-generic-name! generic name)
(%set-generic-combination! generic combination)
(set-instance-proc! generic
(kw-lambda (kws ks-args . args)
(raise* make-exn:fail:contract
"~s: no methods added yet"
(%generic-name generic)))))))
(add-method initialize
(make-method #:name "{initialize <generic>}"
(list <method>)
(lambda (#:specializers [specializers '()]
#:procedure procedure
#:qualifier [qualifier 'primary]
#:name [name '-anonymous-]
call-next-method method)
(call-next-method)
(%set-method-specializers! method
(map (lambda (c) (%struct->class c))
'() #; (getarg initargs #:specializers)
))
(%set-method-procedure! method procedure)
(%set-method-qualifier! method qualifier)
(%set-method-name! method name)
(set-instance-proc! method (compute-apply-method method)))))
(add-method allocate-instance
(make-method (list <class>)
(lambda (call-next-method class)
(%allocate-instance class (length (%class-field-initializers class))))))
(add-method allocate-instance
(make-method (list <entity-class>)
(lambda (call-next-method class)
(%allocate-entity class (length (%class-field-initializers class))))))
(add-method compute-cpl
(make-method (list <class>)
(lambda (call-next-method class)
(compute-std-cpl class %class-direct-supers))))
(add-method compute-slots
(make-method (list <class>)
(lambda (call-next-method class)
;; TODO: Check that this simplified implementation is still correct.
;; Sort the slots by order of appearance in cpl, makes them stay in the same
;; index, allowing optimizations for single-inheritance
(define all-slots (append-map %class-direct-slots
(reverse (%class-cpl class))))
(let collect ([to-process all-slots]
[result '()])
(if (null? to-process)
(reverse result)
(let*-values ([(name) (slot-name (first to-process))]
[(current-slots remaining-to-process)
(partition (lambda (s) (eq? (slot-name s) name))
to-process)])
(collect remaining-to-process
(cons (merge-slots current-slots)
result))))))))
(add-method compute-getter-and-setter
(make-method (list <class>)
(letrec ([nothing "nothing"]
[l-getarg
;; apply getarg on a list of names until get a value
(lambda (args initargs)
;; give priority to first initargs
(if (null? initargs)
nothing
(let ([x #f #;(getarg args (car initargs) nothing)
])
(if (eq? x nothing) (l-getarg args (cdr initargs)) x))))])
(lambda (call-next-method class slot allocator)
(define initarg (slot-property slot 'initarg #f))
(define initializer (slot-property slot 'initializer #f))
(define initvalue (slot-property slot 'initvalue ???))
(define type (slot-property slot 'type #f))
(define allocation (slot-property slot 'allocation 'instance))
(define lock (slot-property slot 'lock #f))
(define (simple-initializer? fun)
(and (eq? 0 (procedure-arity fun))
(not (procedure-accepts-keywords? fun))))
(define init
(if initializer
;; TODO: Should we really special case this?
(if (simple-initializer? initializer)
(kw-lambda (kws kw-args . args) (initializer))
initializer)
(lambda args initvalue)))
(define (init-slot kws kw-args args)
(let ([result (find-keyword-value initarg kws kw-args nothing)])
(when (eq? result nothing)
(set! result (keyword-apply init args)))
(when (and type (not (eq? result ???))
(not (instance-of? result type)))
(error 'class
"bad initial value type for slot ~e in ~e (~e not a ~e)"
(car slot) class result type))
result))
(when (and type (not (specializer? type)))
(error 'class "bad type specifier for ~e: ~e" (car slot) type))
(case allocation
[(#:instance)
(let* ([f (allocator init-slot)]
[g+s (mcons (lambda (o) (%instance-ref o f))
(if (and type (not (eq? <top> type)))
(lambda (o n)
(if (instance-of? n type)
(%instance-set! o f n)
(raise* make-exn:fail:contract
"slot-set!: wrong type for slot ~
`~.s' in ~e (~e not in ~e)"
(car slot) class n type)))
(lambda (o n) (%instance-set! o f n))))])
(when lock
(lock-setter! g+s lock
(lambda ()
(raise* make-exn:fail:contract
"slot-set!: slot `~.s' in ~.s is locked"
(car slot) (%class-name class)))))
g+s)]
[(#:class)
(when initarg
(let ([setter #f])
(%set-class-initializers!
class
(cons (lambda (kws kw-args . args)
(let ([result (find-keyword-value initarg kws kw-args #f)])
;; cache the setter
(unless setter
(set! setter
(mcdr (cdr (assq (car slot)
(%class-getters-n-setters
class))))))
(unless (eq? result nothing)
(setter #f result))))
(%class-initializers class)))))
(if (and (assq (slot-name slot) (%class-direct-slots class))
(slot-property slot 'allocation #f))
;; the slot was declared as #:class here
(let* ([cell (init)] ; default value - no arguments
[g+s (mcons (lambda (o) cell)
(lambda (o n)
(if (and type (not (instance-of? n type)))
(raise*
make-exn:fail:contract
"slot-set!: wrong type for shared slot ~
`~.s' in ~e (~e not in ~e)"
(car slot) class n type)
(set! cell n))))])
(when lock
(lock-setter! (slot-name slot) g+s lock
(lambda ()
(raise* make-exn:fail:contract
"slot-set!: slot `~.s' in ~.s is locked"
(car slot) (%class-name class)))))
g+s)
;; the slot was inherited as #:class - fetch its getters/setters
(let loop ([cpl (rest (%class-cpl class))])
(cond [(assq (slot-name slot) (%class-getters-n-setters (first cpl)))
=> cdr]
[else (loop (rest cpl))])))]
[else
;;; TODO: Define a protocol for other slot allocations (or allow at
;;; least 'each-subclass and 'virtual slots.
(error 'class
"allocation for `~.s' must be #:class or #:instance, got ~e"
(car slot) allocation)])))))
;;; Use the previous function when populating this generic.
(add-method compute-apply-method
(make-method (list <method>) method:compute-apply-method))
(add-method no-next-method
(make-method (list <generic> <method>)
(lambda (call-next-method generic method kws kw-args . args)
(raise* make-exn:fail:contract
(string-append
"~s: no applicable next method to call"
(case (%method-qualifier method)
[(#:before) " in a `before' method"]
[(#:after) " in an `after' method"]
[else ""])
" with arguments: ~e"
(if (null? kws)
""
(format " and keywords: ~e"
(append-map list kws kw-args))))
(%generic-name generic) args))))
(add-method no-next-method
(make-method (list (singleton #f) <method>)
(lambda (call-next-method generic method kws kw-args . args)
(raise* make-exn:fail:contract
(string-append
"~s: no applicable next method in a direct method call"
" with arguments: ~e"
(if (null? kws)
""
(format " and keywords: ~e"
(append-map list kws kw-args))))
(%method-name method) args))))
(add-method no-applicable-method
(make-method (list <generic>)
(lambda (call-next-method generic . args)
(raise* make-exn:fail:contract
"~s: no applicable primary methods for arguments ~e, of types ~e"
(%generic-name generic) args (map class-of args)))))
;;; ---------------------------------------------------------------------------
;;; Customization variables
(define *make-safely* (make-parameter #f))
(define (check-initargs class initargs)
;; sanity check - verify sensible keywords given
(let ([valid-initargs (%class-valid-initargs class)])
(or (not valid-initargs)
(let loop ([args initargs])
(cond [(null? args) #t]
[(not (and (pair? args) (pair? (cdr args))))
(error 'make "error in initargs for ~e; arg list not balanced"
class)]
[(not (symbol? (car args)))
(error 'make "error in initargs for ~e; ~e is not a keyword"
class (car args))]
[(not (memq (car args) valid-initargs))
(error 'make "error in initargs for ~e; unknown keyword: ~e"
class (car args))]
[else (loop (cddr args))])))))
(define-placeholders <primitive-class> <primitive-procedure>
<opaque-struct> <struct>)
#||
;;; ---------------------------------------------------------------------------
;;; Make `make' a generic function
;;; Now everything works, both generic functions and classes, so we can turn on
;;; the real MAKE.
;;; ELI: This is turned into a generic function - do this carefully - first
;;; create the generic function and the method instances, then change make.
(let ([m (make-method (list <class>)
(procedure-reduce-keyword-arity
(kw-lambda (kws kw-args call-next-method class)
(let ([instance (keyword-apply allocate-instance kws kw-args class)])
;; FIXME
#;(when (*make-safely*) (check-initargs class initargs))
(keyword-apply kws kw-args initialize instance)
instance))
2 '() #f))]
[g (make-generic-function 'make)])
(add-method g m)
(set! make g))
;; The clean concept behind this is due to Joe Marshall.
(provide rec-make)
(define-syntax-rule (rec-make (name class arg ...) ...)
(let ([name (allocate-instance class (list arg ...))] ...)
(when (*make-safely*) (check-initargs class (list arg ...)) ...)
(initialize name (list arg ...)) ...
(values name ...)))
;;; ---------------------------------------------------------------------------
;;; Make `add-method' a generic function
;;; Use this to compute a name for the method. specs is a list of classes or
;;; class-names (in case of unnamed-methods in clos.rkt).
(define (compute-method-name specs generic-name)
(define (spec-string spec)
(cond [(%singleton? spec) (format "{~.s}" (singleton-value spec))]
[(%class? spec) (symbol->string
(%class-name (%struct->class spec)))]
[else "???"]))
(string->symbol
(apply string-append
(symbol->string generic-name) ":"
(if (null? specs)
'("()")
(cons (spec-string (car specs))
(map (lambda (c) (string-append "," (spec-string c)))
(cdr specs)))))))
(let ([old-add-method add-method])
(set! add-method (make <generic> #:name 'add-method #:arity 2))
(old-add-method add-method
(make-method (list <generic> <method>)
(lambda (call-next-method generic method)
(let ([method-arity (method-arity method)]
[generic-arity (%generic-arity generic)])
(cond
[(not generic-arity)
(%set-generic-arity! generic method-arity)]
;; note: equal? works on arity-at-least structs
[(not (equal? generic-arity method-arity))
(error 'add-method
"wrong arity for `~.s', expects ~a; given a method with ~a"
(%generic-name generic)
(if (integer? generic-arity)
generic-arity
(format "at-least-~a"
(arity-at-least-value generic-arity)))
(if (integer? method-arity)
method-arity
(format "at-least-~a"
(arity-at-least-value method-arity))))])
;; set a name for the method if none (when attached to a generic)
(let ([n (%method-name method)])
(unless (and n (not (eq? n '-anonymous-)))
(%set-method-name!
method
(let* ([psym (object-name (%method-procedure method))]
[pstr (and psym (symbol->string psym))])
(if (or (not pstr) (regexp-match? #rx":[0-9]*:[0-9]*$" pstr))
(compute-method-name (%method-specializers method)
(%generic-name generic))
psym)))))
(old-add-method generic method))))))
;;; Optimized frequently used accessors:
;;; This is possible because of the ordering of the slots in compute-slots,
;;; works only for single-inheritance. Note that there is no type checking -
;;; it is unsafe, but makes things around 5-6 times faster!
(set! %class-direct-slots (%slot-getter <class> 'direct-slots))
(set! %class-direct-supers (%slot-getter <class> 'direct-supers))
(set! %class-slots (%slot-getter <class> 'slots))
(set! %class-nfields (%slot-getter <class> 'nfields))
(set! %class-field-initializers (%slot-getter <class> 'field-initializers))
(set! %class-getters-n-setters (%slot-getter <class> 'getters-n-setters))
(set! %class-cpl (%slot-getter <class> 'cpl))
(set! %class-name (%slot-getter <class> 'name))
(set! %class-initializers (%slot-getter <class> 'initializers))
(set! %class-valid-initargs (%slot-getter <class> 'valid-initargs))
(set! %generic-methods (%slot-getter <generic> 'methods))
(set! %generic-arity (%slot-getter <generic> 'arity))
(set! %generic-name (%slot-getter <generic> 'name))
(set! %generic-combination (%slot-getter <generic> 'combination))
(set! %method-specializers (%slot-getter <method> 'specializers))
(set! %method-procedure (%slot-getter <method> 'procedure))
(set! %method-qualifier (%slot-getter <method> 'qualifier))
(set! %method-name (%slot-getter <method> 'name))
(set! %set-class-direct-slots! (%slot-setter <class> 'direct-slots))
(set! %set-class-direct-supers! (%slot-setter <class> 'direct-supers))
(set! %set-class-slots! (%slot-setter <class> 'slots))
(set! %set-class-nfields! (%slot-setter <class> 'nfields))
(set! %set-class-field-initializers! (%slot-setter <class> 'field-initializers))
(set! %set-class-getters-n-setters! (%slot-setter <class> 'getters-n-setters))
(set! %set-class-cpl! (%slot-setter <class> 'cpl))
(set! %set-class-name! (%slot-setter <class> 'name))
(set! %set-class-initializers! (%slot-setter <class> 'initializers))
(set! %set-class-valid-initargs! (%slot-setter <class> 'valid-initargs))
(set! %set-generic-methods! (%slot-setter <generic> 'methods))
(set! %set-generic-arity! (%slot-setter <generic> 'arity))
(set! %set-generic-name! (%slot-setter <generic> 'name))
(set! %set-generic-combination! (%slot-setter <generic> 'combination))
(set! %set-method-specializers! (%slot-setter <method> 'specializers))
(set! %set-method-procedure! (%slot-setter <method> 'procedure))
(set! %set-method-qualifier! (%slot-setter <method> 'qualifier))
(set! %set-method-name! (%slot-setter <method> 'name))
;; Optimize these internal ones as well.
(set! %generic-app-cache (%slot-getter <generic> 'app-cache))
(set! %generic-singletons-list (%slot-getter <generic> 'singletons-list))
(set! %set-generic-app-cache! (%slot-setter <generic> 'app-cache))
(set! %set-generic-singletons-list! (%slot-setter <generic> 'singletons-list))
;;; ---------------------------------------------------------------------------
;;; Built-in classes.
(define <primitive-class>
(make <class> #:direct-supers (list <class>)
#:direct-slots '()
#:name '<primitive-class>
;; needed so structs can turn to classes even if *make-safely*
#:valid-initargs #f))
;; Normally, can't allocate these.
(add-method allocate-instance
(make-method (list <primitive-class>)
(lambda (call-next-method class initargs)
(error 'allocate-instance "can't instantiate a primitive class ~e"
class))))
(define <builtin>
(make <class> #:direct-supers (list <top>)
#:direct-slots '()
#:name '<builtin>))
(define-syntax defprimclass
(syntax-rules ()
[(_ primclass)
(defprimclass primclass <builtin>)]
[(_ primclass supers ...)
(define primclass
(make <primitive-class>
#:name 'primclass
#:direct-supers (list supers ...)
#:direct-slots '()))]))
(defprimclass <sequence>)
(defprimclass <mutable>)
(defprimclass <immutable>)
(defprimclass <pair> <sequence>)
(defprimclass <mutable-pair> <pair> <mutable>)
(define <mpair> <mutable-pair>) ; alias
(defprimclass <immutable-pair> <pair> <immutable>)
(defprimclass <list> <sequence>)
(defprimclass <nonempty-list> <pair> <list> <immutable>)
(defprimclass <null> <list>)
(defprimclass <vector> <sequence> <mutable>)
(defprimclass <char>)
(defprimclass <string-like> <sequence>)
(defprimclass <mutable-string-like> <string-like> <mutable>)
(defprimclass <immutable-string-like> <string-like> <immutable>)
(defprimclass <string> <string-like>)
(defprimclass <mutable-string> <string> <mutable-string-like>)
(defprimclass <immutable-string> <string> <immutable-string-like>)
(defprimclass <bytes> <string-like>)
(defprimclass <mutable-bytes> <bytes> <mutable-string-like>)
(defprimclass <immutable-bytes> <bytes> <immutable-string-like>)
(defprimclass <path> <immutable-string-like>)
(defprimclass <symbol>)
(defprimclass <keyword> <symbol>)
(defprimclass <real-keyword>)
(defprimclass <boolean>)
;; Have all possible number combinations in any case
(defprimclass <number>)
(defprimclass <exact> <number>)
(defprimclass <inexact> <number>)
(defprimclass <complex> <number>)
(defprimclass <real> <complex>)
(defprimclass <rational> <real>)
(defprimclass <integer> <rational>)
(defprimclass <exact-complex> <complex> <exact>)
(defprimclass <inexact-complex> <complex> <inexact>)
(defprimclass <exact-real> <real> <exact-complex>)
(defprimclass <inexact-real> <real> <inexact-complex>)
(defprimclass <exact-rational> <rational> <exact-real>)
(defprimclass <inexact-rational> <rational> <inexact-real>)
(defprimclass <exact-integer> <integer> <exact-rational>)
(defprimclass <inexact-integer> <integer> <inexact-rational>)
(defprimclass <end-of-file>)
(defprimclass <port>)
(defprimclass <input-port> <port>)
(defprimclass <output-port> <port>)
(defprimclass <stream-port> <port>)
;; Racket stuff
(defprimclass <input-stream-port> <input-port> <stream-port>)
(defprimclass <output-stream-port> <output-port> <stream-port>)
(defprimclass <void>)
(defprimclass <box> <mutable>)
(defprimclass <weak-box> <box>)
(defprimclass <regexp>)
(defprimclass <byte-regexp>)
(defprimclass <parameter>)
(defprimclass <promise>)
(defprimclass <exn>)
(defprimclass <exn:fail> <exn>)
(defprimclass <exn:break> <exn>)
;; make these classes used when we see exn structs
(let ([set-exn-class
(lambda (class make-exn . xs)
(hash-set! struct-to-class-table
(let-values ([(e _)
(struct-info
(apply make-exn "foo"
(current-continuation-marks)
xs))])
e)
class))])
(set-exn-class <exn> make-exn)
(set-exn-class <exn:fail> make-exn:fail)
(set-exn-class <exn:break> make-exn:break (let/ec e e)))
(defprimclass <semaphore>)
(defprimclass <hash-table>)
(defprimclass <subprocess>)
(defprimclass <thread>)
(defprimclass <syntax>)
(defprimclass <identifier-syntax> <syntax>)
(defprimclass <namespace>)
(defprimclass <custodian>)
(defprimclass <tcp-listener>)
(defprimclass <security-guard>)
(defprimclass <will-executor>)
(defprimclass <struct-type>)
(defprimclass <inspector>)
(defprimclass <pseudo-random-generator>)
(defprimclass <compiled-expression>)
(defprimclass <unknown-primitive>)
(defprimclass <struct>)
(defprimclass <opaque-struct> <struct>)
(define <procedure>
(make <procedure-class> #:name '<procedure>
#:direct-supers (list <builtin> <function>)
#:direct-slots '()))
(define <primitive-procedure>
(make <procedure-class>
#:name '<primitive-procedure>
#:direct-supers (list <procedure>)
#:direct-slots '()))
(*default-object-class* <object>) ; turn auto-superclass back on
(set! class-of
(lambda (x)
;; If all Schemes were IEEE compliant, the order of these wouldn't
;; matter?
;; ELI: changed the order so it fits better the expected results.
(cond [(instance? x) (instance-class x)]
[(struct? x)
(let-values ([(type _) (struct-info x)])
(if type (struct-type->class type) <opaque-struct>))]
[(procedure? x) (cond [(parameter? x) <parameter>]
[(primitive? x) <primitive-procedure>]
[else <procedure>])]
[(string? x) (if (immutable? x) <immutable-string> <string>)]
[(pair? x) (if (list? x) <nonempty-list> <immutable-pair>)]
[(null? x) <null>]
[(symbol? x) (if (keyword? x) <keyword> <symbol>)]
[(number? x)
(if (exact? x)
(cond [(integer? x) <exact-integer>]
[(rational? x) <exact-rational>]
[(real? x) <exact-real>]
[(complex? x) <exact-complex>]
[else <exact>]) ; should not happen
(cond [(integer? x) <inexact-integer>]
[(rational? x) <inexact-rational>]
[(real? x) <inexact-real>]
[(complex? x) <inexact-complex>]
[else <inexact>]))] ; should not happen
[(boolean? x) <boolean>]
[(char? x) <char>]
[(bytes? x) (if (immutable? x) <immutable-bytes> <bytes>)]
[(path? x) <path>]
[(vector? x) <vector>]
[(mpair? x) <mutable-pair>]
[(eof-object? x) <end-of-file>]
[(input-port? x)
(if (file-stream-port? x) <input-stream-port> <input-port>)]
[(output-port? x)
(if (file-stream-port? x) <output-stream-port> <output-port>)]
[(void? x) <void>]
[(box? x) <box>]
[(weak-box? x) <weak-box>]
[(regexp? x) <regexp>]
[(byte-regexp? x) <byte-regexp>]
[(promise? x) <promise>]
[(keyword? x) <keyword>]
[(semaphore? x) <semaphore>]
[(hash? x) <hash-table>]
[(thread? x) <thread>]
[(subprocess? x) <subprocess>]
[(syntax? x)
(if (identifier? x) <identifier-syntax> <syntax>)]
[(namespace? x) <namespace>]
[(custodian? x) <custodian>]
[(tcp-listener? x) <tcp-listener>]
[(security-guard? x) <security-guard>]
[(will-executor? x) <will-executor>]
[(struct-type? x) <struct-type>]
[(inspector? x) <inspector>]
[(pseudo-random-generator? x) <pseudo-random-generator>]
[(compiled-expression? x) <compiled-expression>]
[else <unknown-primitive>])))
;;; Some useful predicates.
(define (builtin? x) (instance-of? x <builtin>))
(define (function? x) (instance-of? x <function>))
(define (generic? x) (instance-of? x <generic>))
(define (method? x) (instance-of? x <method>))
||#
;;; Add some additional indentation information for emacs
#||
Local Variables:
eval: (mapc (lambda (sym)
(put sym 'scheme-indent-function #'scheme-let-indent))
(list 'let-args))
eval: (mapc (lambda (sym)
(put sym 'scheme-indent-function 1))
(list 'kw-lambda))
fill-column: 82
End:
||#
| true |
d21414659ac4e0c3278e39eeff4e9ebf6748bd5d | 662e55de9b4213323395102bd50fb22b30eaf957 | /dissertation/scrbl/shallow/data/blame/lnm.rktd | 717533593d59bfa2f6542da2f786f3497794a92b | []
| 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 | 218 | rktd | lnm.rktd | #lang gtp-measure/output/file
cpu time: 31078 real time: 31092 gc time: 3969
cpu time: 30070 real time: 30084 gc time: 3752
cpu time: 29593 real time: 29606 gc time: 3897
cpu time: 29694 real time: 29708 gc time: 3829
| false |
e4b9aea62ddb825482bfc161876358c54b2a62d7 | 515aa73de02b29e1dfa0f4567b0853d61a8bbac3 | /dotmethod/tests/test-require.rkt | 76fd3bf16d73ae9fef9c4d3dac84a0925c0d5896 | [
"MIT"
]
| permissive | AlexKnauth/dotmethod | ef4c8390f4d2087620434a920d5594052719b51e | 4414f7708a68a560453946af4ba6dbc5672037c1 | refs/heads/master | 2022-02-15T19:37:43.601940 | 2022-01-07T14:59:12 | 2022-01-07T14:59:12 | 38,323,747 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 392 | rkt | test-require.rkt | #lang dotmethod racket
require rackunit
racket/set
"test-lang.rkt"
dotmethods
generic-set? st.conj(x)
set-add st x
generic-set? st.rmv(x)
set-remove st x
generic-set? st.len
set-count st
define s set(1 2 3)
define l list(1 2 3)
check-equal? s.conj(4) set(1 2 3 4)
check-equal? s.rmv(2) set(1 3)
check-equal? s.len 3
check-equal? l.conj(4) list(4 1 2 3)
| false |
bda18994494896c2185cd55536a6716ecc24f78d | 8559293672192f7adbb433ab0ea908a275dea156 | /lalr/autogrammar.rkt | 7c55cdbf6e730f1a96decdd167e56c23575e673d | []
| no_license | jpolitz/autogrammar | d72386ff13eba59b8ff84e574d55cdc7f5057e1b | 86c62d68768d15ccb686368627c1650e5af43a4d | refs/heads/master | 2021-01-20T19:13:31.515199 | 2012-12-04T01:57:00 | 2012-12-04T01:57:00 | 5,534,957 | 0 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 2,611 | rkt | autogrammar.rkt | #lang racket/base
;; A language level for automatically generating parser grammars for
;; parser-tools/yacc.
;;
;; Danny Yoo ([email protected])
;;
;; Intent: make it trivial to generate languages for Racket. At the
;; moment, I find it painful to use parser-tools. This library is
;; meant to make it less agonizing.
;;
;; The intended use of this language is as follows:
;;
;;;;; s-exp-grammar.rkt ;;;;;;;;;
;; #lang planet dyoo/autogrammar
;; s-exp : "(" s-exp* ")" | ATOM
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; What this generates is a module that binds constructors associated
;; to the token types in upper-case, plus the following:
;;
;; * grammar: a grammar that consumes a source and a
;; position-aware lexer, and produces a syntax object.
;;
;; * default-lex/1: a partially-defined lexer that knows how to read
;; the literal strings. You'll use this to create the full lexer.
;;
;; You'll still need to do a little work, by providing a lexer that
;; defines what the uppercased tokens mean.
;;
;; (require "sexp-grammar.rkt"
;; parser-tools/lex
;; parser-tools/lex-sre)
;;
;; (define tokenize/1
;; (lexer-src-pos
;; [(:+ alphabetic)
;; (token-ATOM lexeme)]
;; [whitespace
;; (return-without-pos (tokenize/1 input-port))]
;; [else
;; (return-without-pos (default-lex/1 input-port))]))
;;
;; However, that should be all you need. The output of an
;; autogrammar-generated grammar is an honest-to-goodness syntax
;; object with source locations, fully-labeled by the rules.
;;
;; (grammar "some-source" tokenize/1)
;;
;;
;; The first rule is treated as the start rule; any successful parse
;; must finish with end-of-file.
;; Terminology:
;;
;; * An identifier follows the Racket rules for identifiers, except
;; that it can't contain * or +.
;;
;; * A rule identifier is an identifier that is not in upper case.
;;
;; * A token is an identifier that is all in upper case.
;; A rule is:
;;
;; * a rule identifier, followed by a colon ":", followed by a pattern.
;;
;; A pattern may either be
;;
;; * an implicit sequence of patterns,
;;
;; * a literal string,
;;
;; * a rule identifier,
;;
;; * a quanitifed pattern, either with "*" or "+",
;;
;; * an optional pattern, a pattern surrounded by "[" and "]", or
;;
;; * an explicit sequence, a pattern surrounded by "(" and ")".
;;
;; TODO: handle precedence
;;
(require (for-syntax racket/base
"codegen.rkt"))
(provide rules (rename-out [#%plain-module-begin #%module-begin]))
(define-syntax rules rules-codegen)
| true |
9b780b965db3f56a19e6f91179b3b4d49e6a73db | e553691752e4d43e92c0818e2043234e7a61c01b | /test/base/term.rkt | 48bf741bf171dfab4e43f003e36a8b4f027182b5 | [
"BSD-2-Clause"
]
| permissive | emina/rosette | 2b8c1bcf0bf744ba01ac41049a00b21d1d5d929f | 5dd348906d8bafacef6354c2e5e75a67be0bec66 | refs/heads/master | 2023-08-30T20:16:51.221490 | 2023-08-11T01:38:48 | 2023-08-11T01:38:48 | 22,478,354 | 656 | 89 | NOASSERTION | 2023-09-14T02:27:51 | 2014-07-31T17:29:18 | Racket | UTF-8 | Racket | false | false | 2,558 | rkt | term.rkt | #lang racket
(require rackunit rackunit/text-ui rosette/lib/roseunit
rosette/base/core/term
rosette/base/core/bool
rosette/base/core/real
(only-in rosette/base/form/define define-symbolic))
(define-symbolic x @integer?)
(define-symbolic y @integer?)
(define-symbolic z @integer?)
(define-symbolic a @boolean?)
(define-symbolic b @boolean?)
(define-symbolic c @boolean?)
(define (f type)
(define-symbolic x type)
x)
(define (check-ordered v1 v2)
(check-true (and (or (term<? v1 v2) (term<? v2 v1))
(not (and (term<? v1 v2) (term<? v2 v1))))))
(define (check-cached op . args)
(check-true (equal? (apply op args) (apply op args))))
(define value-tests
(test-suite+
"Tests for rosette/base/term.rkt"
(check-false (term<? x x))
(check-false (term<? a a))
(check-false (term<? (&& a b) (&& b a)))
(check-false (term<? (@+ x y z) (@+ x y z)))
(check-ordered b a)
(check-ordered x a)
(check-ordered x y)
(check-ordered (! b) (! a))
(check-ordered (&& b a) (&& a c))
(check-ordered x (@* x y))
(check-ordered (@/ x y) (@- x y))
(check-ordered (@remainder x y) (@+ x y z))
(check-ordered a (|| a b))
(check-cached && a b)
(check-cached || a b)
(check-cached ! a)
(check-cached @+ x y)
(check-cached @- x y)
(check-cached @* x y)
(check-cached @/ x y)
(check-cached @remainder x y)
(check-cached @= x y)
(check-cached @< x y)
(f @integer?)
(check-exn #px"type should remain unchanged" (lambda () (f @boolean?)))))
(define clear-terms!+gc-terms!-tests
(test-suite+
"Tests for clear-terms! and gc-terms!"
(with-terms '()
(let ()
(define-symbolic x y z @integer?)
(define a (@+ x 1))
(define b (@+ y 2))
(define c (@+ z 3))
(check-equal? (length (terms)) 6)
;; this should evict z and c
(clear-terms! (list z))
(check-equal? (length (terms)) 4)
;; this doesn't affect strongly-held values
(set! b #f)
(check-equal? (length (terms)) 4)
(gc-terms!) ; change the representation
(collect-garbage)
(check-equal? (length (terms)) 3)
(clear-terms! (list x))
(collect-garbage)
(check-equal? (length (terms)) 1)
;; this is a dummy check to reference a, b, and c so that
;; they are not garbage-collected earlier
(check-equal? (length (list a b c)) 3)))))
(module+ test
(time (run-tests value-tests))
(time (run-tests clear-terms!+gc-terms!-tests)))
| false |
44d5b4674a7b45a76261f78d439278f449d8c036 | e4c6743198cbd4e8a5659bf6b8a96d54467a85d4 | /web-ide/plain-jane/xml-to-html.rkt | de0ba2459366e0deeee9712060c397b54ba22f24 | [
"BSD-3-Clause"
]
| permissive | jbclements/WebIDE | c9c9f3604c08bf141699bc0e5ac5e3d1038b657a | 0cd41024357a14e6f6770a692ffdddda44c9ebc5 | refs/heads/master | 2021-01-22T07:18:12.629063 | 2019-09-04T16:23:49 | 2019-09-04T16:23:49 | 1,227,356 | 2 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 6,908 | rkt | xml-to-html.rkt | #lang racket
;; copyright 2010-2014 John Clements ([email protected])
(require sxml
"apat.rkt"
"validate-lib.rkt")
(module+ test (require rackunit))
(provide port->xml
xml->steps
pcon)
(define webide-1-namespace "http://www.web-ide.org/namespaces/labs/1")
(define webide-2-namespace "http://www.web-ide.org/namespaces/labs/2")
(define webide-ns `((w1 . ,webide-1-namespace)
(w2 . ,webide-2-namespace)))
;; read the lab xml from a port
(define (port->xml port)
(ssax:xml->sxml port webide-ns))
;; extract the steps from a lab *that uses w1 as a namespace prefix*
(define (xml->steps lab-sxml)
((sxpath '(w1:lab w1:step)) lab-sxml))
;; turn a step into html
(define (pcon content)
(pre-post-order content stylesheet))
;; this stylesheet provides transformations from
;; webide XML elements to HTML elements
(define stylesheet
(list
[apat (w1:step (name . others) . content)
`(div (h3 "step name: " ,name) . ,content)]
;; eat the evaluators for display
[apat (w1:evaluator any . content)
""]
;; eat the buttons for now...
[apat (w1:button attrs . elts)
"*THERE WOULD BE A BUTTON HERE*"]
;; userfields become textareas
[apat (w1:userfield (id . others) . content)
`(textarea (@ (name ,id))
"" ,@content)]
;; don't process attributes or text
`(@ *preorder* . ,(lambda args args))
`(*text* . ,(lambda (t a) a))
`(*default* . ,(lambda (tag . elts)
(cons (strip-tag tag) elts)))))
;; version 1 stylesheet:
(define v1-stylesheet
(list
[apat (w1:step attrs . content)
(match (dict-ref attrs 'buttonName)
;; no buttonName specified
[#f (error)]
[(list name)
(define other-attrs (dict-remove attrs 'buttonName))
(define new-button
`(w1:button
(@ (label ,name) (evaluator "BOGUS"))))
`(w1:step (@ ,@other-attrs)
(w1:content . ,(append content
(list new-button))))])]
;; eat the evaluators
#;[apat (w1:evaluator any . content)
""]
;; segments become textareas
#;[apat (w1:segment (id width height . others) . content)
`(textarea (@ (name ,id)
(width ,width)
(height ,height))
"" ,@content)]
;; tables
#;[apat (w1:labtable (rows cols . otherattrs) . elts)
`(table (@ (rows ,rows) (cols ,cols))
,@(regroup rows cols elts))]
#;[apat (w1:add attrs . content)
`(td . ,content)]
;; code tag becomes pre tag
#;[apat (w1:code attrs . content)
`(pre (@ ,@attrs) ,@content)]
;; don't process attributes or text
`(@ *preorder* . ,(lambda args args))
`(*text* . ,(lambda (t a) a))
`(*default* . ,(lambda args args)
#;(lambda (tag . elts)
(cons (strip-tag tag) elts)))))
;; regroup : string string (listof sxml) -> (listof td)
(define (regroup rows cols elts)
(define width (string->number cols))
(unless (andmap (tag-checker 'td) elts)
(error 'process-content "expected only cells in table, got: ~a" elts))
(unless (integer? (/ (length elts) width))
(error 'process-content "number of table entries (~a) is not divisible by number of table columns (~a)" (length elts) width))
(unless (integer? (/ (length elts) (string->number rows)))
(error 'process-content "number of table entries (~a) is not divisible by number of table rows (~a)" (length elts) (string->number rows)))
(let loop ([left elts])
(cond [(empty? left) empty]
[else (cons `(tr . ,(take left width))
(loop (drop left width)))])))
;; extract an attribute representing a number
(define (num-attr attrs key)
(match (assoc key attrs)
[`(,dc ,num-str) (string->number num-str)]
[other (error 'num-attr "no ~a attribute found among ~a" key attrs)]))
;; tag-checker : tag -> element -> boolean?
(define ((tag-checker tag) element)
(and (list? element) (equal? (first element) tag)))
;; strip the colon-separated part of a symbol off.
(define (strip-tag s)
(match (regexp-match #px"[^:]*:(.*)" (symbol->string s))
[(list match rhs) (string->symbol rhs)]
[false (error 'strip-tag "tag without prefix: ~a" s)]))
;; TEST CASES
(module+ test
(check-equal? (num-attr '((a "13") (b "14")) 'a) 13)
(check-equal? (num-attr '((a "13") (b "14")) 'b) 14)
(check-equal? (strip-tag 'w1:br) 'br)
(check-equal? ((tag-checker 'w1:evaluator) `(3 w1:evaluator)) #f)
(check-equal? ((tag-checker 'w1:evaluator) `(w1:evaluator (@ (abc "def")))) #t)
(check-equal? (pcon `(w1:b (w1:i "zoobah")))
`(b (i "zoobah")))
(check-equal? (pcon `(w1:b (w1:evaluator (@ (name "bigbug")))))
`(b ""))
(check-equal? (pcon `(w1:b (@ (awesomeness "35")) "trip"))
`(b (@ (awesomeness "35")) "trip"))
(check-equal? (pcon `(w1:code "abc
def"))
`(code "abc
def"))
(check-equal? (pcon `(w1:step (@ (name "bob")) "a step"))
`(div (h3 "step name: " "bob")
"a step"))
(check-equal? (xml->steps `(*TOP* (@ (*NAMESPACES* (w1 ,webide-1-namespace)))
(w1:lab (w1:step "abc") (w1:step "def"))))
'((w1:step "abc") (w1:step "def")))
;; tests for version 1 spec
#;(check-equal? (pcon `(w1:add "bc"))
`(td "bc"))
#;(check-equal? (regroup "3" "2"
`((td "a1")
(td "a2")
(td "a3")
(td "a4")
(td "a5")
(td "a6")))
`((tr (td "a1") (td "a2"))
(tr (td "a3") (td "a4"))
(tr (td "a5") (td "a6"))))
#;(check-equal? (pcon `(w1:labtable (@ (rows "2") (cols "1"))
(w1:add "a")
(w1:add "b")))
`(table (@ (rows "2") (cols "1"))
(tr (td "a"))
(tr (td "b"))))
#;(check-equal? (pcon `(w1:segment (@ (id "boo")(width "20") (height "1"))))
`(textarea (@ (name "boo")(width "20") (height "1")) ""))
)
(define lab1
(call-with-input-file "/Users/clements/trac-webide/labs/android.xml"
(lambda (p)
(port->xml p))))
(define the-lab
(match ((sxpath '(w1:lab)) lab1)
[(list l) l]
[other (error 'aontehu)]))
(define (wrap-with-top element)
`(*TOP* (@
(*NAMESPACES*
(w1 "http://www.web-ide.org/namespaces/labs/2")))
,element))
(when (file-exists? "/tmp/a.xml")
(delete-file "/tmp/a.xml"))
(define processed
(wrap-with-top
(pre-post-order
the-lab
v1-stylesheet)))
processed
(validate-sxml processed)
| false |
f5edc7dd36e7f548662b0a96ed7834042d107fd2 | b12446d5e0210a91d11dce731ace0deb845d9e38 | /inclass/inclass2.rkt | 8853dcd8c545a8c6a037443cfb3434e30061f6c2 | []
| no_license | metehangelgi/Lisp | b0d1ad0c9eafeaee7ea8e8324b45cd34ab8e4117 | 40167847728cd8e6bb7969560bca474a717ff2b4 | refs/heads/master | 2022-10-05T17:45:38.504354 | 2020-06-08T15:59:16 | 2020-06-08T15:59:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 465 | rkt | inclass2.rkt | ;; The first three lines of this file were inserted by DrRacket. They record metadata
;; about the language level of this file in a form that our tools can easily process.
#reader(lib "htdp-beginner-reader.ss" "lang")((modname inclass2) (read-case-sensitive #t) (teachpacks ()) (htdp-settings #(#t constructor repeating-decimal #f #t none #f () #f)))
(define a 0 )
(= a 5)
(sqr 9)
(define fact(lambda (n)
(if (= n 1)1
(* n (fact (- n 1))))))
(fact 81)
| false |
307f2ce36e28469567d90a889a58bbc6b41bd7c0 | ba5171ca08db9e0490db63df59ee02c85a581c70 | /group-g/ex03-20201027-solutions.rkt | ab199eca8f66446602161abef27f24b6788f6343 | []
| no_license | semerdzhiev/fp-2020-21 | 030071ed14688751d615b1d1d39fa406c131a285 | 64fa00c4f940f75a28cc5980275b124ca21244bc | refs/heads/master | 2023-03-07T10:17:49.583008 | 2021-02-17T11:46:08 | 2021-02-17T11:46:08 | 302,139,037 | 31 | 16 | null | 2021-01-17T15:22:17 | 2020-10-07T19:24:33 | Racket | UTF-8 | Racket | false | false | 3,964 | rkt | ex03-20201027-solutions.rkt | (define (accumulate op nv a b term next)
(if (> a b) nv
(op (term a)
(accumulate op nv (next a) b term next))))
(define (id x) x)
(define (1+ x) (+ x 1))
(define (sum a b)
(accumulate + 0 a b id 1+))
; Зад.1
(define (!! n)
(accumulate * 1
(if (odd? n) 1 2) n
id
(lambda (x) (+ x 2))))
; Зад.2
(define (fact n)
(accumulate * 1 1 n id 1+))
(define (nchk n k)
(/ (fact n) (fact (- n k)) (fact k)))
; Зад.3
; (nchk n k) = n*(n-1)*...*(n-k+1) / k*(k-1)*...*1
; Идея: множителите над и под знаменателя са равен брой
; -> групираме ги две по две
(define (nchk* n k)
(accumulate * 1
0 (- k 1)
(lambda (i) (/ (- n i) (- k i)))
1+))
; Зад.4
(define (2^ n)
(accumulate * 1 1 n (lambda (x) 2) 1+)) ; (constantly 2)
(define (2^* n)
(accumulate + 0 0 n (lambda (k) (nchk* n k)) 1+))
; Зад.5
; Забележка: accumulate винаги обхожда целият интервал,
; докато ръчно разписаната функция (може и с cond)
; има short-circuiting и връща лъжа при първия срещнат
; елемент, който не изпълнява предиката.
; За проба: (all? even? 1 1000000000)
(define (all? p? a b)
;(accumulate (lambda (x y) (and x y)) #t
; a b
; p?
; 1+)
(if (> a b) #t
(and (p? a)
(all? p? (+ a 1) b)))
)
(define (complement p?)
(lambda (x) (not (p? x))))
; по ДеМорган
(define (any? p? a b)
(not (all? (complement p?) a b)))
; 1 2 3 4 5
;
; (and (p? 1) (and (p? 2) (and (p? 3) ...)))
; Зад. 5 1/2: Понякога е по-удобно да обходим целия
; интервал и да филтрираме някои от числата, вместо
; да мислим сложни начини за прескачане от едно на друго
(define (filter-accum p? op nv a b term next)
(cond ((> a b) nv)
((p? a) (op (term a)
(filter-accum p? op nv (next a) b term next)))
(else (filter-accum p? op nv (next a) b term next))))
(define (!!* n)
(filter-accum (if (even? n) even? odd?)
* 1
1 n
id 1+))
; 1 2 3 4 5
;
; 1 3 ....
; Зад.6
(define (divisors-sum n)
(filter-accum (lambda (x) (zero? (remainder n x)))
+ 0
1 n
id 1+))
; по-хакаво решение
(define (divisors-sum* n)
(accumulate + 0
1 n
; "фалшива" функция за общ член: делителите се
; трансформират в себе си, а другите числа в 0
(lambda (x) (if (zero? (remainder n x)) x 0))
1+))
; Зад.7
; Брои за колко от числата в интервала
; [a;b] е изпълнен предиката p?
(define (count p? a b)
(accumulate + 0 a b (lambda (x) (if (p? x) 1 0)) 1+))
; Зад.8
; Вече имаме няколко начина да проверим дали число е просто
; Използваме accumulate, макар и индиректно (няма нужда да пишем едно и също по два пъти)
(define (prime? n)
(and (> n 1)
(zero? (count (lambda (x) (zero? (remainder n x)))
2
(sqrt n)))))
(define (prime?* n)
(and (> n 1)
(not (any? (lambda (x) (zero? (remainder n x)))
2
(sqrt n)))))
; Зад.8*
; Понякога работим не само с числа :)
(define (compose f g)
(lambda (x) (f (g x))))
(define (repeat n f)
(accumulate compose id 1 n (lambda (x) f) 1+))
; ((repeat 5 1+) 10) -> 15
| false |
45d4f1fb304c7a93a4fae8368d48f8e5431a9904 | 3ae6b0fc0109132d2752f82fa70d2c998bc05840 | /package-scribblings-tools/main.rkt | cd42abf7d366eed283e37feb80b8a2c580c0f097 | []
| no_license | jackfirth/package-scribblings-tools | e1c858e2d019c5374681ae826dd22dfa0f5ce923 | 614db7ce3ddabde42f4efedf3ea40b52228bee8e | refs/heads/master | 2020-04-15T10:06:27.472192 | 2016-02-16T22:38:37 | 2016-02-16T22:38:37 | 33,213,957 | 0 | 2 | null | 2015-10-03T16:37:54 | 2015-03-31T22:37:02 | Racket | UTF-8 | Racket | false | false | 282 | rkt | main.rkt | #lang racket
(provide
(all-from-out "defpredicate.rkt"
"example-evaluator.rkt"
"module-title.rkt"
"source-code.rkt"))
(require "defpredicate.rkt"
"example-evaluator.rkt"
"module-title.rkt"
"source-code.rkt")
| false |
eae3e8df9945f3807af532bbe106a1cac9328ebb | 592a279f868ebe8c0fbdffc1136461c85e818cad | /racket/monad/maybe.rkt | de438573b002cf784b652fc51ec53c390970e2cd | [
"Unlicense"
]
| permissive | seckcoder/lang-learn | ad0e849e7575a47bd5cd88d1ff4c56a4eec8ec65 | 1e0d6f412bbd7f89b1af00293fd907ddb3c1b571 | refs/heads/master | 2021-01-20T06:56:49.322037 | 2015-10-28T22:25:05 | 2015-10-28T22:25:05 | 13,863,341 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 431 | rkt | maybe.rkt | #lang racket
(require "do.rkt")
(define (fail)
'(Nothing))
(define (return-maybe v)
`(Just ,v))
(define (div-maybe a b)
(if (= b 0)
(fail)
(return-maybe (/ a b))))
(define (bind-maybe ma f)
(match ma
['(Nothing)
(fail)]
[`(Just ,v)
(f v)]))
(do bind-maybe
(x <- (return-maybe (+ 7 8)))
(div-maybe x 4))
#|(bind-maybe|#
;(return-maybe (+ 7 8))
;(lambda (x)
#|(div-maybe x 4)))|#
| false |
83b0615bc033f9cd82d9b3bf1e1f13ed7eeda8d6 | 6582bfe2990716ee85fb69338aebf1abaa158bc0 | /brag-lib/brag/test/test-nested-repeats.rkt | 1cc518e935af7a0587d9e1d367724aed5e94c619 | [
"MIT"
]
| permissive | mbutterick/brag | 2a3962b8d4ed80488812caae870b852a44c247d8 | f52c2a80c9cb6840b96532c2ca1371d12aea61e7 | refs/heads/master | 2022-06-03T00:15:21.317870 | 2022-02-09T18:04:04 | 2022-02-09T18:04:04 | 82,710,347 | 67 | 15 | MIT | 2022-03-16T01:04:27 | 2017-02-21T17:57:12 | Racket | UTF-8 | Racket | false | false | 174 | rkt | test-nested-repeats.rkt | #lang racket/base
(require brag/examples/nested-repeats
rackunit)
(check-equal?
(syntax->datum (parse (list "X" "Y" "X")))
'(start "X" "Y" "X"))
| false |
61e533527ba9241c03c41a6fdb705e8a4bf441d8 | 898dceae75025bb8eebb83f6139fa16e3590eb70 | /pl1/asg2/osx-dist/lib/plt/assignment2-osx/collects/racket/contract/private/box.rkt | 4ea01f7c1659dc7e2ff94829985887e3f328fb06 | []
| 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 | 5,069 | rkt | box.rkt | #lang racket/base
(require (for-syntax racket/base)
"prop.rkt"
"blame.rkt"
"guts.rkt"
"misc.rkt")
(provide box-immutable/c
(rename-out [wrap-box/c box/c]))
(define/subexpression-pos-prop (box-immutable/c elem)
(box/c elem #:immutable #t))
(define-struct base-box/c (content immutable))
(define (check-box/c ctc val blame)
(define elem-ctc (base-box/c-content ctc))
(define immutable (base-box/c-immutable ctc))
(unless (box? val)
(raise-blame-error blame val '(expected "a box," given: "~e") val))
(case immutable
[(#t)
(unless (immutable? val)
(raise-blame-error blame val '(expected "an immutable box," given: "~e") val))]
[(#f)
(when (immutable? val)
(raise-blame-error blame val '(expected "a mutable box," given: "~e") val))]
[(dont-care) (void)]))
(define (box/c-first-order ctc)
(define elem-ctc (base-box/c-content ctc))
(define immutable (base-box/c-immutable ctc))
(λ (val)
(and (box? val)
(case immutable
[(#t) (immutable? val)]
[(#f) (not (immutable? val))]
[(dont-care) #t])
(contract-first-order-passes? elem-ctc (unbox val)))))
(define (box/c-name ctc)
(let ([elem-name (contract-name (base-box/c-content ctc))]
[immutable (base-box/c-immutable ctc)]
[flat? (flat-box/c? ctc)])
(apply build-compound-type-name
'box/c
elem-name
(if (and flat? (eq? immutable #t))
(list '#:immutable #t)
(append
(if (not (eq? immutable 'dont-care))
(list '#:immutable immutable)
null)
(if flat?
(list '#:flat? #t)
null))))))
(define-struct (flat-box/c base-box/c) ()
#:property prop:flat-contract
(build-flat-contract-property
#:name box/c-name
#:first-order box/c-first-order
#:projection
(λ (ctc)
(λ (blame)
(λ (val)
(check-box/c ctc val blame)
(((contract-projection (base-box/c-content ctc)) blame) (unbox val))
val)))))
(define (ho-projection box-wrapper)
(λ (ctc)
(let ([elem-ctc (base-box/c-content ctc)]
[immutable (base-box/c-immutable ctc)])
(λ (blame)
(let ([pos-elem-proj ((contract-projection elem-ctc) blame)]
[neg-elem-proj ((contract-projection elem-ctc) (blame-swap blame))])
(λ (val)
(check-box/c ctc val blame)
(if (immutable? val)
(box-immutable (pos-elem-proj (unbox val)))
(box-wrapper val
(λ (b v) (pos-elem-proj v))
(λ (b v) (neg-elem-proj v))
impersonator-prop:contracted ctc))))))))
(define-struct (chaperone-box/c base-box/c) ()
#:property prop:chaperone-contract
(build-chaperone-contract-property
#:name box/c-name
#:first-order box/c-first-order
#:projection (ho-projection chaperone-box)))
(define-struct (impersonator-box/c base-box/c) ()
#:property prop:contract
(build-contract-property
#:name box/c-name
#:first-order box/c-first-order
#:projection (ho-projection impersonate-box)))
(define-syntax (wrap-box/c stx)
(syntax-case stx ()
[x
(identifier? #'x)
(syntax-property
(syntax/loc stx box/c)
'racket/contract:contract
(vector (gensym 'ctc) (list #'x) null))]
[(b/c arg ...)
(let ([args (syntax->list #'(arg ...))]
[this-one (gensym 'ctc)])
(define (convert-args args)
(let loop ([args args]
[new-args null])
(cond
[(null? args) (reverse new-args)]
[(keyword? (syntax-e (car args)))
(if (null? (cdr args))
(reverse (cons (car args) new-args))
(loop (cddr args)
(list* (cadr args) (car args) new-args)))]
[else (append (reverse new-args)
(cons (syntax-property
(car args)
'racket/contract:positive-position
this-one)
(cdr args)))])))
(with-syntax ([(new-arg ...) (convert-args args)]
[app (datum->syntax stx '#%app)])
(syntax-property
(syntax/loc stx
(app box/c new-arg ...))
'racket/contract:contract
(vector this-one (list #'b/c) null))))]))
(define (box/c elem #:immutable [immutable 'dont-care] #:flat? [flat? #f])
(let ([ctc (if flat?
(coerce-flat-contract 'box/c elem)
(coerce-contract 'box/c elem))])
(cond
[(or flat?
(and (eq? immutable #t)
(flat-contract? ctc)))
(make-flat-box/c ctc immutable)]
[(chaperone-contract? ctc)
(make-chaperone-box/c ctc immutable)]
[else
(make-impersonator-box/c ctc immutable)])))
| true |
6dc370205921c00ae38a152e3972e25c4a7f815f | b64657ac49fff6057c0fe9864e3f37c4b5bfd97e | /ch2/ex-09.rkt | 55e11b8c2ac1535273498644fcbdc242e0255373 | []
| no_license | johnvtan/sicp | af779e5bf245165bdfbfe6965e290cc419cd1d1f | 8250bcc7ee4f4d551c7299643a370b44bc3f7b9d | refs/heads/master | 2022-03-09T17:30:30.469397 | 2022-02-26T20:22:24 | 2022-02-26T20:22:24 | 223,498,855 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,682 | rkt | ex-09.rkt | #!/usr/bin/racket
#lang sicp
(define (make-interval a b)
(cons a b))
(define (lower-bound interval)
(min (car interval) (cdr interval)))
(define (upper-bound interval)
(max (car interval) (cdr interval)))
(define (width interval)
(/ (- (upper-bound interval) (lower-bound interval)) 2))
(define (add-interval x y)
(make-interval (+ (lower-bound x) (lower-bound y))
(+ (upper-bound x) (upper-bound y))))
(define (mul-interval x y)
(let [(p1 (* (lower-bound x) (lower-bound y)))
(p2 (* (upper-bound x) (lower-bound y)))
(p3 (* (lower-bound x) (upper-bound y)))
(p4 (* (upper-bound x) (upper-bound y)))]
(make-interval (min p1 p2 p3 p4)
(max p1 p2 p3 p4))))
; The width of some interval t3, where t3 = t1 + t2
; is the same as (width t2) + (width t1)
; Because (width t3) = ((upper t3) + (lower t3)) / 2
; and (upper t3) = (upper t1) + (upper t2)
; and (lower t3) = (lower t1) + (lower t2)
; therefore (width t3) = (((upper t1) + (upper t2)) + (lower t1 + lower t2)) / 2
; and the rhs of the above is the same as (width t1) + (width t2)
(define t1 (make-interval 4 6))
(define t2 (make-interval 3 7))
(width t1)
(width t2)
(width (add-interval t1 t2))
(newline)
; If it's true that the width of a multiplied interval is dependent only on widths,
; then multiplying t3 and t4 (which have the same widths as t1 and t2) should result
; in an interval with the same width as multiplying t1 and t2.
; But this is not the case
(define t3 (make-interval -1 1))
(define t4 (make-interval -2 2))
(= (width t1) (width t3))
(= (width t2) (width t4))
(= (width (mul-interval t1 t2)) (width (mul-interval t3 t4))) | false |
057c9aab6cd19bf2d1525193519105bf0a4c0e97 | b7f6598f749572a7c2ac4f13dddc139e41e0d6bb | /old-evaluator.rkt | 9b132b590f67cd09b638540c939e31877298167a | []
| no_license | bhickey/yaspl | 3e47391aecd10c084410adbb660321ceeea682cc | b62b41612eeb6a7e048f4ba442af798565a8c001 | refs/heads/master | 2021-01-15T16:17:33.264146 | 2012-12-08T05:46:48 | 2012-12-08T05:46:48 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 3,566 | rkt | old-evaluator.rkt | #lang racket
(require
"linearize-modules.rkt"
"source-structures.rkt")
(provide interp-program initialize-module-store)
;; Runtime Structures
;; Values
(struct rt-int (val) #:transparent)
(struct rt-str (val) #:transparent)
(struct rt-adt (tag fields) #:transparent)
(struct rt-closure (arg body (env #:mutable)) #:transparent)
(struct rt-prim-closure (fn) #:transparent)
(define (interp env expr)
(define (rinterp subexpr)
(interp env subexpr))
(match expr
((int v) (rt-int v))
((str v) (rt-str v))
((id v) (dict-ref env v))
((lam arg bdy) (rt-closure arg bdy env))
((app fn arg)
(match (rinterp fn)
((rt-closure arg-name body senv) (interp (dict-set senv arg-name (rinterp arg)) body))
((rt-prim-closure fn) (fn (rinterp arg)))))
((case expr clauses)
(define val (rinterp expr))
(ormap (lambda (clause) (interp-clause clause val env)) clauses))))
(define (interp-clause clause val env)
(define expr (clause-expr clause))
(match* ((clause-pattern clause) val)
(((wildcard-pattern) _) (interp env expr))
(((number-pattern v) (rt-int val))
(and (equal? v val) (interp env expr)))
(((string-pattern v) (rt-str val))
(and (equal? v val) (interp env expr)))
(((constructor-pattern constructor (list (identifier-pattern ids) ...)) (rt-adt tag vals))
(and (equal? constructor tag) (interp (foldl (lambda (id val env) (dict-set env id val))
env ids vals) expr)))
(((identifier-pattern id) _) (interp (dict-set env id val) expr))))
(define (simple-interp expr)
(match expr
((lam arg body) (rt-closure arg body #f))
((int v) (rt-int v))
((str v) (rt-str v))))
(define (module-env store mod)
(match mod
((module name imports (list (export export-names) ...) data defns)
(define values (map (compose simple-interp defn-expr) defns))
(define env-list (cons (import-env store imports)
(append
(map data-env data)
(map defn-env defns values))))
(define full-env (env-union env-list))
(for ((value values))
(when (rt-closure? value)
(set-rt-closure-env! value full-env)))
(for/fold ((env (hash))) ((export export-names))
(dict-set env export (dict-ref full-env export))))))
(define (initialize-module-store modules)
(define linear-modules (linearize-modules modules))
(define module-store (make-hash))
(for ((module linear-modules))
(dict-set! module-store
(module-name module)
(module-env module-store module)))
module-store)
(define (import-env store imports)
(env-union (map (compose (curry dict-ref store) import-name)
imports)))
(define (defn-env defn value)
(hash (defn-name defn) value))
(define (env-union envs)
(for/fold ((env (hash))) ((new-env envs))
(for/fold ((env env)) (((key value) new-env))
(dict-set env key value))))
(define (data-env a-data)
(match a-data
((data _ _ (list (variant names fieldss) ...))
(for/hash ((name names) (fields fieldss))
(values name
(let ((base (lambda (args) (rt-adt name args))))
((for/fold ((inner base)) ((field fields))
(lambda (args) (rt-prim-closure (lambda (arg) (inner (cons arg args))))))
null)))))))
(define (interp-program module-store prog)
(match prog
((program imports expr) (interp (import-env module-store imports) expr))))
| false |
4f98cc2b151ce53358beceaacbf60a916b18f70d | 3e934e1eb7037ebc9ef5461e66981383cab6d373 | /examples/forall-test.rkt | 813e9c5879462daa134aecb8322fb681ed0f0f9b | [
"MIT"
]
| permissive | GaloisInc/SEEC | 7f28bd1a48a1092be63586683f8138615e6a92ad | 36c3f50b08038d4133acaf94ede7e09a97e1693c | refs/heads/master | 2023-06-07T23:21:38.954186 | 2021-07-06T23:39:14 | 2021-07-06T23:39:14 | 308,738,514 | 5 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 4,406 | rkt | forall-test.rkt | #lang seec
(define-grammar map
(mapping ::= (integer integer))
(intmap ::= list<mapping>)
)
(define (lookup-in-map key m)
(for*/all ([key key #:exhaustive]
[m m]) ; Both these for/all clauses are important to make sure the
; output of this function is a concise union, and not too
; large
(match m
[(map nil) 0]
[(map (cons (key+:integer value+:integer) m+:intmap))
(for/all ([key+ key+ #:exhaustive])
(if (equal? key key+)
value+
(lookup-in-map key m+)))]
)))
(define symbolic-map
(cond
[(havoc!) (list->seec (list (map (200 3)) (map (200 2))))]
[else (list->seec (list (map (200 2))))]
))
(define (test-symbolic-map)
(displayln (lookup-in-map 200 symbolic-map)) ; produces (ite havoc$0 3 2)
(for/all ([x (lookup-in-map 200 symbolic-map)])
(displayln x)) ; produces (ite havoc$0 3 2)
(for/all ([x (lookup-in-map 200 symbolic-map) #:exhaustive])
(displayln x)) ; produces 3, and then 2
)
(define wrapped-map
(let ([x (lookup-in-map 200 symbolic-map)])
(seec-cons (map (300 ,x)) symbolic-map)))
(define (test-wrapped-map)
(displayln wrapped-map) ; produces (300, ite havoc0 3 2) :: {2-element union}
(for/all ([x wrapped-map])
(displayln x)) ; same as above since wrapped-map is not a union
(for/all ([x wrapped-map #:exhaustive])
(displayln x)) ; same as above since wrapped-map is not a union
)
(define wrapped-map-union
(for/all ([x (lookup-in-map 200 symbolic-map) #:exhaustive])
(seec-cons (map (300 ,x)) symbolic-map)))
(define (test-wrapped-map-union)
(displayln wrapped-map-union) ; 2-element union
(for/all ([m+ wrapped-map-union])
(displayln m+)) ; Produces {(300,3)::2-element union ; (300,2)::2-element union}
(for/all ([m+ wrapped-map-union #:exhaustive])
(displayln m+)) ; Same as above
)
(define wrapped-map-union-final
(for*/all ([m+ symbolic-map]
[x (lookup-in-map 200 m+) #:exhaustive])
(seec-cons (map (300 ,x)) m+)))
(define (test-wrapped-map-union-final)
(displayln wrapped-map-union-final) ; 2-element union
(for/all ([m+ wrapped-map-union-final])
(displayln m+)) ; Produces {(300,3)::(200:3)::(200,2) ; (300,2)::(200,2)}
(for/all ([m+ wrapped-map-union-final #:exhaustive])
(displayln m+)) ; Same as above
)
(struct point (x y))
(define symbolic-pt (cond
[(havoc!) (point 1 2)]
[else (point 3 4)]))
(define (display-point pt)
(displayln (format "(point ~a ~a)" (point-x pt) (point-y pt))))
(define (test-point)
(display-point symbolic-pt) ; produces a single struct with two symbolic arguments
(for/all ([p symbolic-pt])
(display-point p)) ; produces a union of the two points
(for/all ([p symbolic-pt #:exhaustive])
(display-point p)) ; produces a union of the two points
(displayln (format "union? ~a" (union? symbolic-pt))) ; #t
)
(struct point-transparent (x y) #:transparent
#:mutable)
(define symbolic-pt-transparent (cond
[(havoc!) (point-transparent 1 2)]
[else (point-transparent 3 4)]))
(define (display-point-transparent pt)
(displayln (format "(point-transparent ~a ~a)"
(point-transparent-x pt)
(point-transparent-y pt))))
(define (test-point-transparent)
(display-point-transparent symbolic-pt-transparent) ; produces a single struct
; with two symbolic
; arguments
(for/all ([p symbolic-pt-transparent])
(display-point-transparent p)) ; same as above
(for/all ([p symbolic-pt-transparent #:exhaustive])
(display-point-transparent p)) ; same as above
(displayln (format "union? ~a" (union? symbolic-pt-transparent))) ; #f
(define maybe-union
(for/all ([x (point-transparent-x symbolic-pt-transparent) #:exhaustive]
)
(set-point-transparent-x! symbolic-pt-transparent x)
(display-point-transparent symbolic-pt-transparent)
symbolic-pt-transparent
))
(displayln (format "union? ~a" (union? maybe-union)))
(for/all ([p maybe-union])
(display-point-transparent p))
(for/all ([p maybe-union #:exhaustive])
(display-point-transparent p))
)
| false |
d4d3ce6ae7e9c8dcc02aa2f816394739436cca02 | 9cbb96cb040396a15919493a185d91f27f257acc | /catalog/src/pkg-server-user.rkt | e52d8b2fff756d61fa6f8265c2d59ffd1ebd10dd | [
"Apache-2.0"
]
| permissive | jackfirth/docker-racket-catalog | f9a33912f8ce9f758a23fa712d28f956e706056a | fe0a99b0a958dfdd54a78d4537141fc3d9264309 | refs/heads/master | 2021-01-10T10:26:22.842983 | 2016-12-04T08:23:31 | 2016-12-04T08:23:31 | 36,909,410 | 3 | 0 | null | 2015-09-05T07:47:21 | 2015-06-05T03:18:30 | Racket | UTF-8 | Racket | false | false | 1,384 | rkt | pkg-server-user.rkt | #lang racket
(require web-server/http/request-structs)
(module+ test
(require rackunit))
(provide
(contract-out
[request->user-email (-> request? (or/c string? #f))]))
(define (request->user-email req)
(define headers (request-headers/raw req))
(define user-agent (headers-assq* #"User-Agent" headers))
(and user-agent (user-agent-email user-agent)))
(define user-agent-email-regexp (regexp "\\(Email: .+\\)"))
(module+ test
(check-false (regexp-match? user-agent-email-regexp "Email: foo@bar"))
(check-false (regexp-match? user-agent-email-regexp "(Email: )"))
(check-true (regexp-match? user-agent-email-regexp "(Email: foo@bar)"))
(check-false (regexp-match? user-agent-email-regexp "(email: foo@bar)"))
(check-false (regexp-match? user-agent-email-regexp "( foo@bar)")))
(define (user-agent-email user-agent)
(define user-agent-str (bytes->string/utf-8 user-agent))
(define matches (regexp-match user-agent-email-regexp user-agent-str))
(and (not (empty? matches))
(user-agent-email-match->email (first matches))))
(define (user-agent-email-match->email email-match)
(define chars (string->list email-match))
(define without-prefix (drop chars 8))
(apply string (drop-right without-prefix 1)))
(module+ test
(check string=? (user-agent-email #"foof jkdlfkjlasf ksjdaf lkjasfl jfklds (Email: [email protected]) kljs") "[email protected]")) | false |
8c6f522124e2d1e2801b3bf8d31627be5cadcf53 | 60b6707dbd61950877e4a7fd8c3cc627efb79a5b | /examples/macros/define.rkt | eb0a6d9997001f594dbd6ce0efa608f13b590ae1 | []
| no_license | chrisnevers/racket-compiler | 536e2a4aa3e8bc71c5637bc887a1bdb6084d0e43 | 900d190b1ca4046a39047e18682a623324e7f68a | refs/heads/master | 2020-03-28T17:24:06.380557 | 2019-05-03T21:02:58 | 2019-05-03T21:02:58 | 148,785,877 | 7 | 0 | null | 2019-02-04T17:59:34 | 2018-09-14T12:32:58 | OCaml | UTF-8 | Racket | false | false | 107 | rkt | define.rkt | (define (xor [r : Int][l : Int]) : Bool (or (and (eq? l 0) (eq? r 1)) (and (eq? l 1) (eq? r 0)))) (xor 1 0) | false |
b607f70ea0e8861577cfe4fd78656f994aea2349 | 616e16afef240bf95ed7c8670035542d59cdba50 | /redex-test/redex/tests/sewpr/cont/cont.rkt | 7c206b5ee1653c04ffab40b1c74c68b6defa80bc | [
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | racket/redex | bd535d6075168ef7be834e7c1b9babe606d5cd34 | 8df08b313cff72d56d3c67366065c19ec0c3f7d0 | refs/heads/master | 2023-08-19T03:34:44.392140 | 2023-07-13T01:50:18 | 2023-07-13T01:50:18 | 27,412,456 | 102 | 43 | NOASSERTION | 2023-04-07T19:07:30 | 2014-12-02T03:06:03 | Racket | UTF-8 | Racket | false | false | 1,738 | rkt | cont.rkt | #lang racket/base
(require redex/reduction-semantics "../iswim/iswim.rkt")
(provide c-iswim-red ☺-iswim-red ☠-iswim-red ☠-iswim)
;; START lang
(define-extended-language c-iswim
iswim
(M ....
(call/cc M)
(abort M))
(E ....
(call/cc E)))
;; STOP lang
;; START red
(define c-iswim-red
(extend-reduction-relation
iswim-red
c-iswim
(--> (in-hole E (call/cc V))
(in-hole E (V (λ X (abort (in-hole E X)))))
(fresh X)
call/cc)
(--> (in-hole E (abort M))
M
throw)))
;; STOP red
#; (where X ,(variable-not-in (term (in-hole E V)) (term X)))
;; START lang-wrong
(define-extended-language ☠-iswim
iswim
(M ....
(call/cc M)
(cont E))
(V ....
(cont E))
(E ....
(call/cc E)))
;; STOP lang-wrong
;; START red-wrong
(define ☠-iswim-red
(extend-reduction-relation
iswim-red
☠-iswim
(--> (in-hole E (call/cc V))
(in-hole E (V (cont E)))
call/cc)
(--> (in-hole E_1 ((cont E_2) V))
(in-hole E_2 V)
throw)))
;; STOP red-wrong
;; START lang-ok
(define-extended-language ☺-iswim
iswim
(M ....
(call/cc M)
(cont (hide-hole E)))
(V ....
(cont (hide-hole E)))
(E ....
(call/cc E)))
;; STOP lang-ok
;; START red-ok
(define ☺-iswim-red
(extend-reduction-relation
iswim-red
☺-iswim
(--> (in-hole E (call/cc V))
(in-hole E (V (cont E)))
call/cc)
(--> (in-hole E_1 ((cont E_2) V))
(in-hole E_2 V)
throw)))
;; STOP red-ok
;; ENDDEFS
; (+ 42 (call/cc (λ k (k 1))))
; E = (+ 42 [])
; (+ 42 ((\ k (k 1)) (+ 42 [])))
; (apply-reduction-relation* ☠-iswim-red (term (+ 42 ((λ k (k 1)) (cont (+ 42 hole))))))
| false |
51f7b11a4d1233fbfeb67dbc1035e0bd35dc1537 | 565dab8666a65a092143e3c7b57681683bbf9837 | /mini-hdl/rca-hdl.rkt | 4a4a43df7c3ccd4da7ee78de1a5eac500fc7eb7f | []
| no_license | rfindler/lambdajam-2015-racket-pl-pl | 51cd2159188b9c43a279ecc4fe7607b68597932c | 4c9001dca9fb72c885d8cc1bef057ac8f56c24d0 | refs/heads/master | 2021-01-10T05:10:46.168336 | 2015-10-29T12:46:59 | 2015-10-29T17:41:27 | 45,050,373 | 6 | 2 | null | 2015-10-29T17:43:29 | 2015-10-27T15:27:24 | Racket | UTF-8 | Racket | false | false | 474 | rkt | rca-hdl.rkt | #lang mini-hdl
inputs a5,a4,a3,a2,a1,a0=11;
inputs b5,b4,b3,b2,b1,b0=22;
s0 = a0 ⊕ b0;
c0 = a0 ∧ b0;
s1 = a1 ⊕ b1 ⊕ c0;
c1 = (a1 ∧ b1) ∨ (c0 ∧ (a1 ⊕ b1));
s2 = a2 ⊕ b2 ⊕ c1;
c2 = (a2 ∧ b2) ∨ (c1 ∧ (a2 ⊕ b2));
s3 = a3 ⊕ b3 ⊕ c2;
c3 = (a3 ∧ b3) ∨ (c2 ∧ (a3 ⊕ b3));
s4 = a4 ⊕ b4 ⊕ c3;
c4 = (a4 ∧ b4) ∨ (c3 ∧ (a4 ⊕ b4));
s5 = a5 ⊕ b5 ⊕ c4;
c5 = (a5 ∧ b5) ∨ (c4 ∧ (a5 ⊕ b5));
showint(c5,s5,s4,s3,s2,s1,s0);
| false |
d10d2386ec43d2c1f656b9692e97873b3a36e862 | 6359e6a83c6e867c7ec4ee97c5b4215fe6867fdf | /adventure-mario/scribblings/assets-library.rkt | abec1769794f5510d696abcd1ad9e0618b3bfdfb | []
| no_license | thoughtstem/TS-GE-Languages | 629cba7d38775f4b636b328dfe8297cd79b5e787 | 49a8ad283230e5bcc38d583056271876c5d6556e | refs/heads/master | 2020-04-13T21:22:38.618374 | 2020-02-03T22:44:30 | 2020-02-03T22:44:30 | 163,454,521 | 3 | 0 | null | 2020-02-03T22:44:32 | 2018-12-28T22:28:18 | Racket | UTF-8 | Racket | false | false | 6,327 | rkt | assets-library.rkt | #lang scribble/manual
@require[scribble/extract]
@require[ game-engine
fandom-sprites-ge]
@title{Assets Library}
@section{Characters}
@defthing[mario-sprite animated-sprite?]
@(sprite->sheet mario-sprite)
@defthing[luigi-sprite animated-sprite?]
@(sprite->sheet luigi-sprite)
@defthing[princesspeach-sprite animated-sprite?]
@(sprite->sheet princesspeach-sprite)
@defthing[toad-sprite animated-sprite?]
@(sprite->sheet toad-sprite)
@defthing[yoshi-sprite animated-sprite?]
@(sprite->sheet yoshi-sprite)
@defthing[redyoshi-sprite animated-sprite?]
@(sprite->sheet redyoshi-sprite)
@; Big Marios
@defthing[bigmario-sprite animated-sprite?]
@(sprite->sheet bigmario-sprite)
@defthing[orangebigmario-sprite animated-sprite?]
@(sprite->sheet orangebigmario-sprite)
@defthing[bluebigmario-sprite animated-sprite?]
@(sprite->sheet bluebigmario-sprite)
@defthing[greybigmario-sprite animated-sprite?]
@(sprite->sheet greybigmario-sprite)
@; Small Marios
@defthing[smallmario-sprite animated-sprite?]
@(sprite->sheet smallmario-sprite)
@defthing[orangesmallmario-sprite animated-sprite?]
@(sprite->sheet orangesmallmario-sprite)
@defthing[bluesmallmario-sprite animated-sprite?]
@(sprite->sheet bluesmallmario-sprite)
@defthing[greysmallmario-sprite animated-sprite?]
@(sprite->sheet greysmallmario-sprite)
@section{Enemies}
@defthing[blooper-sprite animated-sprite?]
@(sprite->sheet blooper-sprite)
@defthing[blueblooper-sprite animated-sprite?]
@(sprite->sheet blueblooper-sprite)
@defthing[orangeblooper-sprite animated-sprite?]
@(sprite->sheet orangeblooper-sprite)
@defthing[greyblooper-sprite animated-sprite?]
@(sprite->sheet greyblooper-sprite)
@defthing[bowser-sprite animated-sprite?]
@(sprite->sheet bowser-sprite)
@defthing[bluebowser-sprite animated-sprite?]
@(sprite->sheet bluebowser-sprite)
@defthing[orangebowser-sprite animated-sprite?]
@(sprite->sheet orangebowser-sprite)
@defthing[greybowser-sprite animated-sprite?]
@(sprite->sheet greybowser-sprite)
@defthing[buzzy-sprite animated-sprite?]
@(sprite->sheet buzzy-sprite)
@defthing[bluebuzzy-sprite animated-sprite?]
@(sprite->sheet bluebuzzy-sprite)
@defthing[orangebuzzy-sprite animated-sprite?]
@(sprite->sheet orangebuzzy-sprite)
@defthing[greybuzzy-sprite animated-sprite?]
@(sprite->sheet greybuzzy-sprite)
@defthing[cheep-sprite animated-sprite?]
@(sprite->sheet cheep-sprite)
@defthing[bluecheep-sprite animated-sprite?]
@(sprite->sheet bluecheep-sprite)
@defthing[orangecheep-sprite animated-sprite?]
@(sprite->sheet orangecheep-sprite)
@defthing[greycheep-sprite animated-sprite?]
@(sprite->sheet greycheep-sprite)
@defthing[goomba-sprite animated-sprite?]
@(sprite->sheet goomba-sprite)
@defthing[bluegoomba-sprite animated-sprite?]
@(sprite->sheet bluegoomba-sprite)
@defthing[orangegoomba-sprite animated-sprite?]
@(sprite->sheet orangegoomba-sprite)
@defthing[greygoomba-sprite animated-sprite?]
@(sprite->sheet greygoomba-sprite)
@defthing[lakitu-sprite animated-sprite?]
@(sprite->sheet lakitu-sprite)
@defthing[bluelakitu-sprite animated-sprite?]
@(sprite->sheet bluelakitu-sprite)
@defthing[orangelakitu-sprite animated-sprite?]
@(sprite->sheet orangelakitu-sprite)
@defthing[greylakitu-sprite animated-sprite?]
@(sprite->sheet greylakitu-sprite)
@defthing[paratroopa-sprite animated-sprite?]
@(sprite->sheet paratroopa-sprite)
@defthing[blueparatroopa-sprite animated-sprite?]
@(sprite->sheet blueparatroopa-sprite)
@defthing[orangeparatroopa-sprite animated-sprite?]
@(sprite->sheet orangeparatroopa-sprite)
@defthing[greyparatroopa-sprite animated-sprite?]
@(sprite->sheet greyparatroopa-sprite)
@defthing[piranha-sprite animated-sprite?]
@(sprite->sheet piranha-sprite)
@defthing[bluepiranha-sprite animated-sprite?]
@(sprite->sheet bluepiranha-sprite)
@defthing[orangepiranha-sprite animated-sprite?]
@(sprite->sheet orangepiranha-sprite)
@defthing[greypiranha-sprite animated-sprite?]
@(sprite->sheet greypiranha-sprite)
@defthing[spiny-sprite animated-sprite?]
@(sprite->sheet spiny-sprite)
@defthing[bluespiny-sprite animated-sprite?]
@(sprite->sheet bluespiny-sprite)
@defthing[orangespiny-sprite animated-sprite?]
@(sprite->sheet orangespiny-sprite)
@defthing[greyspiny-sprite animated-sprite?]
@(sprite->sheet greyspiny-sprite)
@defthing[troopa-sprite animated-sprite?]
@(sprite->sheet troopa-sprite)
@defthing[bluetroopa-sprite animated-sprite?]
@(sprite->sheet bluetroopa-sprite)
@defthing[orangetroopa-sprite animated-sprite?]
@(sprite->sheet orangetroopa-sprite)
@defthing[greytroopa-sprite animated-sprite?]
@(sprite->sheet greytroopa-sprite)
@section{Items}
@defthing[pinkblock-sprite animated-sprite?]
@(sprite->sheet pinkblock-sprite)
@defthing[blueblock-sprite animated-sprite?]
@(sprite->sheet blueblock-sprite)
@defthing[orangeblock-sprite animated-sprite?]
@(sprite->sheet orangeblock-sprite)
@defthing[greyblock-sprite animated-sprite?]
@(sprite->sheet greyblock-sprite)
@defthing[pinkbrick-sprite animated-sprite?]
@(sprite->sheet pinkbrick-sprite)
@defthing[bluebrick-sprite animated-sprite?]
@(sprite->sheet bluebrick-sprite)
@defthing[orangebrick-sprite animated-sprite?]
@(sprite->sheet orangebrick-sprite)
@defthing[greybrick-sprite animated-sprite?]
@(sprite->sheet greybrick-sprite)
@defthing[pinkfence-sprite animated-sprite?]
@(sprite->sheet pinkfence-sprite)
@defthing[bluefence-sprite animated-sprite?]
@(sprite->sheet bluefence-sprite)
@defthing[orangefence-sprite animated-sprite?]
@(sprite->sheet orangefence-sprite)
@defthing[greyfence-sprite animated-sprite?]
@(sprite->sheet greyfence-sprite)
@defthing[pinkpipe-sprite animated-sprite?]
@(sprite->sheet pinkpipe-sprite)
@defthing[bluepipe-sprite animated-sprite?]
@(sprite->sheet bluepipe-sprite)
@defthing[orangepipe-sprite animated-sprite?]
@(sprite->sheet orangepipe-sprite)
@defthing[greypipe-sprite animated-sprite?]
@(sprite->sheet greypipe-sprite)
@defthing[pinkquestion-sprite animated-sprite?]
@(sprite->sheet pinkquestion-sprite)
@defthing[bluequestion-sprite animated-sprite?]
@(sprite->sheet bluequestion-sprite)
@defthing[orangequestion-sprite animated-sprite?]
@(sprite->sheet orangequestion-sprite)
@defthing[greyquestion-sprite animated-sprite?]
@(sprite->sheet greyquestion-sprite)
@;----
@(include-section adventure/scribblings/assets-library)
| false |
86bd256211d242ef4cc7723c0cc09ab67dffc6f5 | 6858cbebface7beec57e60b19621120da5020a48 | /15/3/5/2.rkt | 4c43d8b204d73620a5cca14c84fed7411b99f909 | []
| 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 | 58 | rkt | 2.rkt | ((number U string) (number U string) -> (number U string)) | false |
277ef0ebc04f4b07d224cd6749b925ffe4b88d2f | d29c2c4061ea24d57d29b8fce493d116f3876bc0 | /util/field.rkt | 1cbfedec3a6d159d963583724ca78da7ce0e2de7 | []
| no_license | jbejam/magnolisp | d7b28e273550ff0df884ecd73fb3f7ce78957d21 | 191d529486e688e5dda2be677ad8fe3b654e0d4f | refs/heads/master | 2021-01-16T19:37:23.477945 | 2016-10-01T16:02:42 | 2016-10-01T16:02:42 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 2,113 | rkt | field.rkt | #lang racket/base
#|
A `fields` match pattern for matching against individual fields of
`struct` instances, concrete AST nodes (see `define-ast`), and
views (see `define-view`), and potentially other things as well.
E.g.:
(fields Ast)
(fields Expr e [type t])
(fields AssignExpr [rv e] [lv (? Var?)])
See also: `struct*`
|#
(require "module.rkt"
racket/match
(for-syntax racket/base racket/syntax syntax/parse))
(define-match-expander* fields
(lambda (stx)
(define-splicing-syntax-class maybe-id ;; matches #'(id) or #'()
(pattern (~or (~seq (~var _ id)) (~seq))))
(syntax-parse stx
[(_ t:id obj:maybe-id [fn:id pat:expr] ...)
(define tsym (syntax-e #'t))
(with-syntax ([t? (format-id #'t "~a?" tsym)]
[(fget ...)
(map
(lambda (x) (format-id #'t "~a-~a" tsym (syntax-e x)))
(syntax->list #'(fn ...)))])
#'(? t? (app fget pat) ... . obj))])))
(define-match-expander _-or
(lambda (stx)
(syntax-case stx ()
[(_ c-pat t-pat)
(if (eq? '_ (syntax-e #'c-pat))
#'_
#'t-pat)])))
;; Returns syntax for a match pattern transformer, for things of the
;; specified predicate `pred-id`, and its specified field accessors
;; `get-id-lst`. Pattern matching is positional, so the order of the
;; fields in `get-id-lst` matters, as does their number. A datum
;; literal pattern `_` is treated specially, to avoid unnecessary
;; field accesses.
(define-for-syntax* (make-fields-match-proc-expr pred-id get-id-lst)
(with-syntax*
([pred? pred-id]
[(get ...) get-id-lst]
[(pat ...) (generate-temporaries get-id-lst)]
[(fld-pat ...) #'((app get pat) ...)])
#'(syntax-rules ()
[(_ pat ...)
(? pred? (_-or pat fld-pat) ...)])))
(define-syntax* (define-fields-match-expander stx)
(syntax-parse stx
[(_ n:id pred:id (get:id ...))
(define/with-syntax lam
(make-fields-match-proc-expr #'pred (syntax->list #'(get ...))))
#'(define-match-expander n
lam)]))
| true |
63e9f210782836b49380d7210afa997e2ca169aa | bfd875e987a49d8e64f780c296a99ba4c28d7dfa | /blog/adjacency.rkt | cad7028a6cc913437d931abc0302742c61e39b88 | [
"BSD-3-Clause"
]
| permissive | jpverkamp/small-projects | b794cfc445306c5caea7a96d9dadd3e8d0ed5d28 | 363dc7294d5b215279eba38f34d02647e9d0a2e4 | refs/heads/master | 2021-08-05T03:08:25.041519 | 2021-06-28T16:43:35 | 2021-06-28T16:43:35 | 6,299,271 | 20 | 3 | null | 2018-07-10T00:33:16 | 2012-10-19T18:00:56 | Racket | UTF-8 | Racket | false | false | 1,652 | rkt | adjacency.rkt | #lang racket
; hashset adt, a hash with sets for values
(define (hashset-add! hash key val)
(hash-set! hash key (set-add (hash-ref hash key (set)) val)))
(define (hashset-has? hash key val)
(set-member? (hash-ref hash key (set)) val))
; Convert a string containing a list of nubmers into those numbers
(define (number-string->list str)
(map string->number (string-split (string-trim str))))
; Given a properly formatted list of edges, print an adjaceny matrix
(define (adjacency [in/str (current-input-port)])
; Read from either a string or a port
(define in (if (string? in/str) (open-input-string in/str) in/str))
; Read header: <n = number of nodes> <m = number of lines defining edges>
(define node-count (read in))
(define line-count (read in))
; Read edges, each line is: <edge start>+ "->" <edge end> "\n"
; Skip empty lines
(define edges (make-hash))
(for ([line (in-lines in)] #:when (not (equal? "" (string-trim line))))
(define parts (string-split line "->"))
; Add all edges, there can be one or more of both from or to nodes
(for* ([from (in-list (number-string->list (first parts)))]
[to (in-list (number-string->list (second parts)))])
(hashset-add! edges from to)))
; Print out the adjacency matrix
(for ([i (in-range node-count)])
(for ([j (in-range node-count)])
(display (if (hashset-has? edges i j) 1 0)))
(newline)))
(module+ test
(require rackunit)
(define in
"5 4
0 -> 1 3
1 -> 2
2 -> 4
3 -> 4
")
(define out
"01010
00100
00001
00001
00000
")
(check-equal?
(with-output-to-string (thunk (adjacency in)))
out))
| false |
aecb08977cd588fbb7f77f48c1e1e9747c7b1864 | 83f012cd14475dfa4384fa48024f2c55607f6c75 | /picts.scrbl | a6632f4f1c52be2b4f38ae4369a31278a9434d9d | [
"MIT"
]
| permissive | deeglaze/slideshow-helpers | 48a428b024eb7474e2385629324e063c37114af8 | 8e81ac71f99463eee0b9d589f79922991bfdfdc8 | refs/heads/master | 2021-01-16T21:01:36.043258 | 2015-03-26T21:32:13 | 2015-03-26T21:32:13 | 13,180,627 | 2 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 7,766 | scrbl | picts.scrbl | #lang scribble/manual
@(require scribble/eval
racket/sandbox
(for-label scribble/struct
"picts.rkt"
racket/set
racket/base))
@(define main-eval
(make-base-eval)
#;
(call-with-trusted-sandbox-configuration
(λ ()
(parameterize ([sandbox-output 'string]
[sandbox-error-output 'string])
(make-evaluator 'racket/base #:requires (list 'racket/set "picts.rkt" 'pict/code 'pict))))))
@(main-eval '(require racket/set "picts.rkt" pict/code pict))
@title[#:tag "picts"]{Constructors and combinators for @racket[pict]}
@(declare-exporting slideshow-helpers/picts)
@defmodule*/no-declare[(slideshow-helpers/picts)]{}
This library provides some extra support for constructing and combining @racket[pict]s.
It originated as a helper library for several of my presentations, and since I've had some reuse with them, so might others.
@defproc[(list*of [contract contract?]) contract?]{The "contract" constructor that is alluded to by the documentation for @racket[table]. It is an improper list contract, where the last cons pair's @racket[cdr] may be @racket['()] or a value satisfying @racket[contract].
@examples[#:eval main-eval
(andmap (list*of number?) '(3 (0 1) (0 1 . 2) ()))
((list*of number?) '(0 . nope))]}
@defproc[(colorize-if [test any/c] [pict pict?] [color color/c]) pict?]{A useful pattern: @racket[(if test (colorize pict color) pict)]}
@defproc[(pin-over-center [base pict?] [x real?] [y real?] [pict pict?]) pict?]{Pin the center of @racket[pict] to @racket[x] and @racket[y] over @racket[base].}
@defproc[(pin-over-hcenter [base pict?] [x real?] [y real?] [pict pict?]) pict?]{Like @racket[pin-over-center], only centers the x-axis.}
@defproc[(pin-over-vcenter [base pict?] [x real?] [y real?] [pict pict?]) pict?]{Like @racket[pin-over-hcenter], but for the y-axis.}
@defproc[(both [fn (-> boolean? void?)]) void?]{To be used with @racket[slide]-producing functions that have only two modes, signified by @racket[#t] and @racket[#f].}
@defproc[(pin-under-all [base pict?] [tag symbol?] [pict pict?]) pict?]{Center @racket[pict] under all picts that are tagged (with @racket[tag-pict]) with @racket[tag] in @racket[base].}
@defproc[(pin-over-tag [base pict?] [finder (-> pict? pict-path? (values real? real?))] [tag symbol?] [wrap (-> pict? pict?)]) pict?]{Find a pict in @racket[base] tagged @racket[tag], apply @racket[wrap] to the found pict and pin over @racket[base] at the coordinates given by @racket[finder].}
@defproc[(pin-under-tag [base pict?] [finder (-> pict? pict-path? (values real? real?))] [tag symbol?] [wrap (-> pict? pict?)]) pict?]{Like @racket[pin-over-tag], but uses @racket[pin-under].}
@defproc[(thick-ellipse [w nonneg-real?] [h nonneg-real?] [border-width (real-in 0 255)] [color color/c] [#:fill-color fill-color (or/c #f color/c) #f]) pict?]{Like @racket[ellipse/border], only uses the pen to draw a border rather than layer different colored ellipses. This produces more consistent borders.}
@defproc[(thick-filled-rounded-rectangle [w nonneg-real?]
[h nonneg-real?]
[corner-radius real? -0.25]
[#:color color color/c "black"]
[#:style style brush-style/c 'solid]
[#:angle angle real? 0]
[#:border-width border-width (real-in 0 255) 1]
[#:border-color border-color (or/c #f color/c) #f]
[#:border-style border-style pen-style/c]) pict?]{
Like @racket[filled-rounded-rectangle], but adds a border with a pen. Can additionally rotate the rectangle by @racket[angle].}
@defproc[(filled-rounded-rectangle-frame
[pict pict?]
[#:corner-radius corner-radius real? -0.25]
[#:scale scale nonneg-real? 1]
[#:x-scale x-scale nonneg-real? 1]
[#:y-scale y-scale nonneg-real? 1]
[#:color color color/c "white"]
[#:angle angle real? 0]
[#:border-width border-width (real-in 0 255) 1]
[#:border-color border-color (or/c #f color/c) #f]
[#:border-style border-style pen-style/c])
pict?]{
Uses @racket[thick-filled-rounded-rectangle] to form a frame around a given pict, and gives the ability to scale uniformly and with each dimension. The x-axis and y-axis are scaled by @racket[(* scale x-axis)] and @racket[(* scale y-axis)] respectively.}
@defproc[(filled-flash-frame [pict pict?] [#:scale scale nonneg-real? 1]
[#:corner-radius corner-radius real? -0.25]
[#:outline outline (or/c #f color/c) #f]
[#:n-points n-points exact-positive-integer? 10]
[#:spike-fraction spike-fraction (real-in 0 1) 1]
[#:rotation rotation real? 0])
pict?]{
Use @racketmodname[pict/flash] to produce a frame around a given pict. If @racket[outline] not @racket[#f], then additionally draws an outlined flash with the color bound to @racket[outline].}
@defproc[(play-n-at [n exact-nonnegative-integer?]
[stage exact-nonnegative-integer?]
[stages (nondecreasing-listof exact-nonnegative-integer?)]
[picts (listof pict?)]
[ghost-rest? boolean?])
(listof pict?)]{
Chunks @racket[picts] into strides of @racket[n], for each number in @racket[stages]. If @racket[stage] is less than or equal to a stage given in @racket[stages], then that stride is present in the output. If not, either stop and produce an empty tail, or ghost the rest of the picts in the tail, depending on @racket[ghost-rest?].}
@defproc[(slide-and-compose [base pict?]
[pict-vec (vectorof pict?)]
[from-pic pict?]
[comp (pict? (real-in 0 1) . -> . pict?) (λ (p n) p)])
((real-in 0 1) . -> . pict?)]{
Creates a function for use in @racket[play] that slides all picts in @racket[pict-vec]
to their places in @racket[base], starting from @racket[from-pic].
While sliding, the pic can be further transformed by @racket[comp].
All picts in @racket[pict-vec] must be in @racket[base], as well as @racket[from-pic].}
@defproc[(progressive-table [stage exact-nonnegative-integer?]
[stages (nondecreasing-listof exact-nonnegative-integer?)]
[ncols exact-nonnegative-integer?]
[picts (listof pict?)]
[col-aligns (list*of (pict? pict? . -> . pict?))]
[row-aligns (list*of (pict? pict? . -> . pict?))]
[col-seps (list*of real?)]
[row-seps (list*of real?)]
[#:ghost? ghost? boolean? #t])
pict?]{
An interface for staging rows in a @racket[table], that uses @racket[play-n-at] to produce the picts for @racket[table].
@examples[#:eval main-eval
(define (foo stage)
(define (angles p) (hc-append (text "〈") p (text "〉")))
(progressive-table stage (list 0 0 1 2) 2
(list (angles (code x ρ₁ σ₂)) (code 1)
(angles (code (f y) ρ₁ σ₁)) (code 1)
(angles (code x ρ₅ σ₅)) (code 2)
(angles (code (f y) ρ₄ σ₄)) (code 2))
lc-superimpose cc-superimpose 24 5))
(foo 0)
(foo 1)
(foo 2)]
}
@close-eval[main-eval]
| false |
f3fee23b165a08daff8e5fae9f2e5e8da1a5be98 | 50508fbb3a659c1168cb61f06a38a27a1745de15 | /macrotypes-example/macrotypes/examples/mlish-do.rkt | 1c96b151756b07efaf0e0d5b1f6834d14b3b9be6 | [
"BSD-2-Clause"
]
| permissive | phlummox/macrotypes | e76a8a4bfe94a2862de965a4fefd03cae7f2559f | ea3bf603290fd9d769f4f95e87efe817430bed7b | refs/heads/master | 2022-12-30T17:59:15.489797 | 2020-08-11T16:03:02 | 2020-08-11T16:03:02 | 307,035,363 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 560 | rkt | mlish-do.rkt | #lang racket/base
(provide do)
(require (only-in "mlish.rkt" #%app λ Unit)
(for-syntax racket/base
syntax/parse))
(define-syntax do
(syntax-parser
#:datum-literals (<- :)
[(do bind:id body:expr)
#'body]
[(do bind:id
[x1:id <- m1:expr]
rst ...
body:expr)
#'(bind
m1
(λ (x1)
(do bind rst ... body)))]
[(do bind:id
[m1:expr]
rst ...
body:expr)
#'(bind
m1
(λ (dummy)
(do bind rst ... body)))]
))
| true |
3ed5aa995e012c486eebd37f84bd4179cc5a98dd | 49d98910cccef2fe5125f400fa4177dbdf599598 | /exercism.io/anagram/anagram-test.rkt | dce20fa3b7654320cda388ca7df0b5723d7f77ab | [
"MIT"
]
| permissive | lojic/LearningRacket | 0767fc1c35a2b4b9db513d1de7486357f0cfac31 | a74c3e5fc1a159eca9b2519954530a172e6f2186 | refs/heads/master | 2023-01-11T02:59:31.414847 | 2023-01-07T01:31:42 | 2023-01-07T01:31:42 | 52,466,000 | 30 | 4 | null | null | null | null | UTF-8 | Racket | false | false | 2,045 | rkt | anagram-test.rkt | #lang racket
(require "anagram.rkt")
(module+ test
(require rackunit rackunit/text-ui)
(define suite
(test-suite
"Tests for the anagram exercise"
(test-case "no matches"
(check-equal? (anagrams "diaper" '("hello" "world" "zombies" "pants")) '()))
(test-case "detect simple anagram"
(check-equal? (anagrams "ant" '("tan" "stand" "at")) '("tan")))
(test-case "detect multiple anagrams"
(check-equal? (anagrams "master" '("stream" "pigeon" "maters")) '("stream" "maters")))
(test-case "do not detect anagram subsets"
(check-equal? (anagrams "good" '("dog" "goody")) '()))
(test-case "detect anagram"
(check-equal? (anagrams "listen" '("enlists" "google" "inlets" "banana"))
'("inlets")))
(test-case "multiple anagrams"
(check-equal? (anagrams "allergy"
(map symbol->string
'(gallery ballerina regally clergy largely leading)))
'("gallery" "regally" "largely")))
(test-case "anagrams must use all letters exactly once"
(check-equal? (anagrams "patter" '("tapper")) '()))
(test-case "detect anagrams with case-insensitive subject"
(check-equal? (anagrams "Orchestra" '("cashregister" "Carthorse" "radishes"))
'("Carthorse")))
(test-case "detect anagrams with case-insensitive candidate"
(check-equal? (anagrams "orchestra" '("cashregister" "Carthorse" "radishes"))
'("Carthorse")))
(test-case "anagrams must not be the source word"
(check-equal? (anagrams "corn" '("corn" "dark" "Corn" "rank" "CORN" "cron" "park"))
'("cron")))
(test-case "do not detect words based on checksum"
(check-equal? (anagrams "mass" '("last")) '()))
))
(run-tests suite))
| false |
4ace9d2341082bde13b1b7dc0197306563a29f65 | b996d458a2d96643176465220596c8b747e43b65 | /how-to-code-complex-data/problem-bank/accumulators/strictly-decreasing.rkt | 260d4140f0e4c394b4ee203cc498d4aa97b2243c | [
"MIT"
]
| permissive | codingram/courses | 99286fb9550e65c6047ebd3e95eea3b5816da2e0 | 9ed3362f78a226911b71969768ba80fb1be07dea | refs/heads/master | 2023-03-21T18:46:43.393303 | 2021-03-17T13:51:52 | 2021-03-17T13:51:52 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,112 | rkt | strictly-decreasing.rkt | #lang htdp/asl
;; PROBLEM:
;;
;; Design a function that consumes a list of numbers and produces true if the
;; numbers in lon are strictly decreasing. You may assume that the list has at
;; least two elements.
;; (listof Number) -> Boolean
;; Produces true if all the numbers in lon are strictly decreasing, false otherwise.
(define (strictly-decreasing? lon0)
(local
; acc: Natural, represents the number before (first lon)
; (strictly-decreasing? '(9 5 2))
; (strictly-decreasing? '( 5 2) 9)
; (strictly-decreasing? '( 2) 5)
; (strictly-decreasing? '( ) 2)
[(define (helper lon acc)
(if (empty? lon)
true
(if (< (first lon) acc)
(helper (rest lon) (first lon))
false)))]
(helper (rest lon0) (first lon0))))
(check-expect (strictly-decreasing? '(-4 -6 -9)) true)
(check-expect (strictly-decreasing? '(2 1)) true)
(check-expect (strictly-decreasing? '(2 4 5)) false)
(check-expect (strictly-decreasing? '(1 1)) false)
(check-expect (strictly-decreasing? '(5 2)) true)
(check-expect (strictly-decreasing? '(9 5 2)) true)
| false |
d376f9d8f0fccfe7b40701eddb9abc170c26c28b | dc548fd5d8625ef18ce9f5a0cdb7ae7f400ea111 | /examples/to-number.rkt | 51c7a807ca2c18351f0cc31dddf290fb7e660230 | []
| no_license | soegaard/bind | 913e444b8f7fb9751c201adcb0d33c10250676db | 013526292ebba3d33ffa242fa3ee58aee693b84f | refs/heads/master | 2022-06-22T14:59:32.924825 | 2022-05-10T12:00:28 | 2022-05-10T12:00:28 | 9,018,515 | 5 | 0 | null | 2013-03-26T00:11:34 | 2013-03-25T23:27:37 | Racket | UTF-8 | Racket | false | false | 1,209 | rkt | to-number.rkt | #lang racket
(require "../private/bind.rkt"
(for-syntax syntax/parse))
; Semantics:
; The binding clause
; [id <-number e]
; will bind id to the result of (to-number e).
;
; Example:
; (bind ([x <-number 2]
; [y <-number "32"]
; [z <-number #\a])
; (list x y z))
; =>
; (list 2 32 97)
(define (to-number t)
(cond
[(number? t) t]
[(string? t) (string->number t)]
[(char? t) (char->integer t)]
[else #f]))
(define-binding-clause-transformer (<-number stx)
(define msg "expected value, that can be converted to a number")
(syntax-parse stx
[(id:id _ expr)
(values
(list
#`[(id)
#,(quasisyntax/loc #'expr
(or (to-number expr)
(quasisyntax/loc #'expr
(error '<-number (~a #,msg ", got " t)))))])
'())]))
(module* test #f
(require rackunit)
(check-equal? (bind ([x <-number 2]
[y <-number "32"]
[z <-number #\a])
(list x y z))
(list 2 32 97))
(check-exn exn:fail:contract:arity?
(λ () (bind ([x <-number (values 1 2)]) x))))
| false |
8e8f7e829623ad1fba92074e73578495923cd8f4 | af2c279d201311b76f1931a67fef94c42c1cc2e1 | /Set.rkt | 418420cd49a2dc95f94e8ab307a4d0af9a7d13bb | [
"MIT"
]
| permissive | fayelee0/Y.16_the_seasoned_schemer | f3c1d4e055754537772c3f524bcafee206ea5601 | 1be123d53103c894749b78944b3d93b507dd6665 | refs/heads/master | 2021-06-01T07:30:31.123900 | 2016-08-12T14:47:29 | 2016-08-12T14:47:29 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 4,380 | rkt | Set.rkt | #lang racket
(require "help_proc.rkt")
;;;; 16. Ready, Set, Bang!
(define sweet-tooth
(lambda (food)
(cons food
(cons 'cake '()))))
(define last 'angelfood)
(sweet-tooth 'chocolate)
last
(sweet-tooth 'fruit)
last
(define sweet-toothL
(lambda (food)
(set! last food)
(cons food
(cons 'cake '()))))
(sweet-toothL 'chocolate)
last
(sweet-toothL 'fruit)
last
(sweet-toothL 'cheese)
last
(sweet-toothL 'carrot)
last
(define ingredients '())
(define sweet-toothR
(lambda (food)
(set! ingredients (cons food ingredients))
(cons food
(cons 'cake '()))))
(sweet-toothR 'chocolate)
ingredients
(sweet-toothR 'fruit)
ingredients
(sweet-toothR 'cheese)
ingredients
(sweet-toothR 'carrot)
ingredients
(define deep
(lambda (m)
(cond
((zero? m) 'pizza)
(else (cons (deep (sub1 m)) '())))))
(deep 3)
#|
(define Ns '())
(define deepR
(lambda (n)
(set! Ns (cons n Ns))
(deep n)))
|#
(define Ns '())
(define Rs '())
#|
(define deepR
(lambda (n)
(set! Rs (cons (deep n) Rs))
(set! Ns (cons n Ns))
(deep n)))
|#
(define deepR
(lambda (n)
(let ((result (deep n)))
(set! Rs (cons result Rs))
(set! Ns (cons n Ns))
result)))
(deepR 3)
(deepR 5)
(deepR 3)
#|
(define find
(lambda (n Ns Rs)
(letrec
((A (lambda (ns rs)
(cond
((= (car ns) n) (car rs))
(else (A (cdr ns) (cdr rs)))))))
(A Ns Rs))))
|#
(define find
(lambda (n Ns Rs)
(letrec
((A (lambda (ns rs)
(cond
((null? ns) #f)
((= (car ns) n) (car rs))
(else (A (cdr ns) (cdr rs)))))))
(A Ns Rs))))
#|
(define deepM
(lambda (n)
(if (member? n Ns)
(find n Ns Rs)
(deepR n))))
|#
#|
(set! deep
(lambda (m)
(cond
((zero? m) 'pizza)
(else (cons (deepM (sub1 m)) '())))))
(define deepM
(lambda (n)
(if (member? n Ns)
(find n Ns Rs)
(let ((result (deep n)))
(set! Rs (cons result Rs))
(set! Ns (cons n Ns))
result))))
(set! Ns (cdr Ns))
(set! Rs (cdr Rs))
Ns
Rs
(deepM 6)
Ns
Rs
(deepM 9)
Ns
Rs
|#
#|
(define deepM
(let ((Rs '())
(Ns '()))
(lambda (n)
(if (member? n Ns)
(find n Ns Rs)
(let ((result (deep n)))
(set! Rs (cons result Rs))
(set! Ns (cons n Ns))
result)))))
|#
#|
(define deepM
(let ((Rs '()) (Ns '()))
(lambda (n)
(if (atom? (find n Ns Rs))
(let ((result (deep n)))
(set! Rs (cons result Rs))
(set! Ns (cons n Ns))
result)
(find n Ns Rs)))))
|#
(define deepM
(let ((Rs '()) (Ns '()))
(lambda (n)
(let ((exists (find n Ns Rs)))
(if (atom? exists)
(let ((result (deep n)))
(set! Rs (cons result Rs))
(set! Ns (cons n Ns))
result)
exists)))))
(deepM 16)
#|
(define length
(lambda (l)
(cond
((null? l) 0)
(else (add1 (length (cdr l)))))))
|#
#|
(define length
(lambda (l)
0))
(set! length
(lambda (l)
(cond
((null? l) 0)
(else (add1 (length (cdr l)))))))
|#
#|
(define length
(let ((h (lambda (l) 0)))
(set! h
(lambda (l)
(cond
((null? l) 0)
(else (add1 (h (cdr l)))))))
h))
|#
(define L
(lambda (length)
(lambda (l)
(cond
((null? l) 0)
(else (add1 (length (cdr l))))))))
#|
(define length
(let ((h (lambda (l) 0)))
(set! h (L (lambda (arg) (h arg))))
h))
|#
(define Y!
(lambda (L)
(let ((h (lambda (l) '())))
(set! h (L (lambda (arg) (h arg))))
h)))
(define Y-bang
(lambda (f)
(letrec
((h (f (lambda (arg) (h arg)))))
h)))
(define length (Y! L))
(define D
(lambda (depth*)
(lambda (s)
(cond
((null? s) 1)
((atom? (car s))
(depth* (cdr s)))
(else
(max (add1 (depth* (car s)))
(depth* (cdr s))))))))
(define depth* (Y! D))
(define biz
(let ((x 0))
(lambda (f)
(set! x (add1 x))
(lambda (a)
(if (= a x)
0
(f a))))))
((Y biz) 5)
((Y! biz) 5)
| false |
7c7e2cb48099babbae507ac89bbe533dcad1f12c | 254dab60a34e46710f8c2a3d644a3d7acdadd856 | /chapter1/exercises.rkt | 159e3519451fe2f43d21b0db0eae308607478cf1 | []
| no_license | justuswilhelm/sicp | c4b3cbab160329084cbac630be5fd011408800f7 | 09b4399971cc07d2c08001c12c227306529f65f5 | refs/heads/master | 2020-06-16T08:45:15.993296 | 2016-11-29T20:44:34 | 2016-11-29T20:44:34 | 75,120,325 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 6,596 | rkt | exercises.rkt | #lang racket
(provide (all-defined-out))
(require "../helpers.rkt")
(exercise 1 1)
10
(+ 5 3 4)
(- 9 1)
(/ 6 2)
(+ (* 2 4) (- 4 6))
(define a 3)
(define b (+ a 1))
(+ a b (* a b))
(= a b)
(if (and (> b a) (< b (* a b)))
b
a)
(cond ((= a 4) 6)
((= b 4) (+ 6 7 a))
(else 25))
(+ 2 (if (> b a) b a))
(* (cond ((> a b) a)
((< a b) b)
(else -1))
(+ a 1))
(exercise 1 2)
(exercise 1 3)
(define (square x) (* x x))
(define (square-sum a b)
(+ (square a) (square b)))
(define (larger-square a b c)
(cond ((< a b c) (square-sum b c))
((< b a c) (square-sum a c))
((< c b a) (square-sum a b))
((< c a b) (square-sum a b))
((< b c a) (square-sum c a))
((< a c b) (square-sum c b))))
(exercise 1 4)
(define (a-plus-abs-b a b) ((if (> b 0) + -) a b))
; The if expression allows us to switch the operator used on a and b
(exercise 1 5)
; Applicative order would result in an endless recursion because the two if
; arguments are being evaluated regardless of the predicate's result.
(exercise 1 6)
; First, the original sqrt
(define (sqrt x)
(define (sqrt-iter guess)
(if (good-enough? guess)
guess
(sqrt-iter (improve guess))))
(define (improve guess)
(average guess (/ x guess)))
(define (average x y)
(/ (+ x y) 2))
(define (good-enough? guess)
(< (abs (- (square guess) x)) 0.001))
(sqrt-iter 1.0))
; Then, our implementation
(define (new-if predicate then-clause else-clause)
(cond (predicate then-clause) (else else-clause)))
(define (new-sqrt x)
(define (sqrt-iter guess)
(new-if (good-enough? guess)
guess
(sqrt-iter (improve guess))))
(define (improve guess)
(average guess (/ x guess)))
(define (average x y)
(/ (+ x y) 2))
(define (good-enough? guess)
(< (abs (- (square guess) x)) 0.001))
(sqrt-iter 1.0)
)
; All arguments will be evaluated -- since this is not a special form anymore
(exercise 1 7)
(define (sqrt-improved x)
(define (sqrt-iter last-guess guess)
(if (good-enough? last-guess guess)
guess
(sqrt-iter guess (improve guess))))
(define (average x y)
(/ (+ x y) 2))
(define (improve guess)
(average guess (/ x guess)))
(define (good-enough? last-guess guess)
(let ((change (abs (- (square last-guess) (square guess)))))
(< (/ change guess) 0.001)))
(sqrt-iter x 1.0))
(exercise 1 8)
(define (cube x) (* x x x))
(define (cube-root x)
(define (cube-root-iter guess)
(if (close-enough? guess)
guess
(cube-root-iter (improve guess))))
(define (close-enough? guess)
(< (abs (- (cube guess) x)) 0.01))
(define (improve guess)
(/ (+ (/ x (square guess)) (* 2 guess)) 3))
(cube-root-iter 1))
(code 1 2 1)
(define (factorial n)
(if (= n 1)
1
(* n (factorial (- n 1)))))
(define (factorial-iter n)
(define (iter product counter max-count)
(if (> counter max-count)
product
(iter (* counter product)
(+ counter 1)
max-count)))
(iter 1 1 n))
(exercise 1 9)
(define (new-+-a a b)
(if (= a 0)
b
(inc (new-+-a (dec a) b))))
(define (new-+-b a b)
(if (= a 0)
b
(new-+-b (dec a) (inc b))))
; The first + describes a recursive process, the second one describes an
; iterative process (tail recusion!)
(exercise 1 10)
(define (A x y)
(cond ((= y 0) 0)
((= x 0) (* 2 y))
((= y 1) 2)
(else (A (- x 1)
(A x (- y 1))))))
(define (f n)
(A 0 n))
(define (f-simple n)
(* n 2))
(define (g n)
(A 1 n))
(define (g-simple n)
(expt 2 n))
(define (h n)
(A 2 n))
(define (h-simple n)
(define (iter n acc)
(if (= n 0)
acc
(iter (- n 1) (expt acc 2))))
(if (= n 0)
0
(iter n 2)))
; Example from exercise
(define (k n)
(* 5 n n))
(define (k-simple n)
(* 5 (square n)))
(code 1 2 2)
(define (fib n)
(cond ((= n 0) 0)
((= n 1) 1)
(else (+ (fib (- n 1))
(fib (- n 2))))))
(define (fib-improved n)
(define (iter a b count)
(if (= count 0)
b
(iter (+ a b) a (- count 1))))
(iter 1 0 n))
; Counting change
(define (count-change amount)
(define (cc amount kinds-of-coins)
(cond ((= amount 0) 1)
((or (< amount 0)
(= kinds-of-coins 0))
0)
(else
(+ (cc amount (- kinds-of-coins 1))
(cc (- amount (first-denomination kinds-of-coins))
kinds-of-coins)))))
(define (first-denomination kinds-of-coins)
(cond ((= kinds-of-coins 1) 1)
((= kinds-of-coins 2) 5)
((= kinds-of-coins 3) 10)
((= kinds-of-coins 4) 25)
((= kinds-of-coins 5) 50)))
(cc amount 5))
(exercise 1 11)
(define (f-recur n)
(cond ((< n 3) n)
(else (+ (f-recur (- n 1))
(* 2 (f-recur (- n 2)))
(* 3 (f-recur (- n 3)))))))
(define (f-iter n)
(define (iter a b c count)
(let ([current-iteration (+ a (* 2 b) (* 3 c))])
(cond ((> count 0) (iter current-iteration a b (- count 1)))
(else current-iteration))))
(match n
[1 1]
[2 2]
[3 4]
[_ (iter 4 2 1 (- n 4))]))
(exercise 1 12)
(define (pascal row element)
(cond
[(< element 1) 0]
[(> element row) 0]
[(= row element 1) 1]
[else (let ([left (- element 1)]
[right element])
(+ (pascal (- row 1) left)
(pascal (- row 1) right)))]))
(exercise 1 13)
; Let's skip this
(exercise 1 14)
; Let's skip this
(exercise 1 15)
; already defined above
; (define (cube x) (* x x x))
(define (p x) (- (* 3 x) (* 4 (cube x))))
(define (sine angle)
(if (not (> (abs angle) 0.1))
angle
(p (sine (/ angle 3.0)))))
; 1) p is applied 5 times for
;>(sine 12.5)
; > (sine 4.166666666666667)
; > >(sine 1.388888888888889)
; > > (sine 0.462962962962963)
; > > >(sine 0.154320987654321)
; 2) the number of steps required is most likely in O(sqrt(n)), as a is
; continuously divided by a constant
(code 1 2 4)
(define (expt b n)
(if (= n 0)
1
(* b (expt b (- n 1)))))
(define (expt-iter b n)
(define (iter b counter product)
(if (= counter 0)
product
(iter b
(- counter 1)
(* b product))))
(iter b n 1))
(define (fast-expt b n)
(cond ((= n 0) 1)
((even? n) (square (fast-expt b (/ n 2))))
(else (* b (fast-expt b (- n 1))))))
(define (fast-expt-recur b n)
(define (iter b n a)
(if (= 0 n)
a
(iter b 0 a)))
(iter b n 1))
| false |
166a207211a57aede67610bfff054418e48da458 | 0f6e59eeda27cfb61e0623e5e795c514da53f95f | /macro-debugger-text-lib/macro-debugger/analysis/private/nom-use-alg.rkt | a7dc997e666185a65b229d4bcf91b9c001b7b6fa | [
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | racket/macro-debugger | 1679a781fe0d601bb0e9c97d224f0d06ee777b24 | 047c36a4d6a0b15a31d0fa7509999b9bf2c5f295 | refs/heads/master | 2023-08-24T04:09:14.428768 | 2023-01-18T02:27:26 | 2023-01-18T02:27:26 | 27,413,285 | 10 | 14 | NOASSERTION | 2021-05-04T22:30:05 | 2014-12-02T03:30:26 | Racket | UTF-8 | Racket | false | false | 8,255 | rkt | nom-use-alg.rkt | #lang racket/base
(require racket/match
"moduledb.rkt"
"util.rkt")
(provide nom-use-alg)
;; nom-use-alg : Refs compiled -> (listof recommendation)
(define (nom-use-alg refs0 compiled)
(let ([refs (append (provides->refs compiled) refs0)])
(let-values ([(NOM-USES DEF-USES) (calculate-used-approximations refs)])
(report NOM-USES DEF-USES (get-requires compiled)))))
;; ========
;; sMPI = S-expr form of mpi (see mpi->key)
;; Using MPIs doesn't work. I conjecture that the final module shift means that
;; all during-expansion MPIs are different from all compiled-expr MPIs.
;; A UsedTable = hash[(list int sMPI) => Refs]
;; calculate-used-approximations : Refs -> (values UsedTable UsedTable)
(define (calculate-used-approximations refs)
(let ([NOM-USES (make-hash)]
[DEF-USES (make-hash)])
(for ([ref (in-list refs)])
(when (relevant? ref)
(match (ref-binding ref)
[(list def-mod def-sym nom-mod nom-sym
def-phase nom-imp-phase nom-exp-phase)
(define use-phase (ref-phase ref))
(when def-mod
;; use-phase = def-phase + required-phase
;; thus required-phase = use-phase - def-phase
(let* ([required-phase (- use-phase def-phase)]
[key (list required-phase (mpi->key def-mod))])
(hash-set! DEF-USES key
(cons ref (hash-ref DEF-USES key null)))))
;; We just care about nom-imp-phase, since importing into *here*
(let* ([key (list nom-imp-phase (mpi->key nom-mod))])
(hash-set! NOM-USES key
(cons ref (hash-ref NOM-USES key null))))]
[_ (void)])))
(values NOM-USES DEF-USES)))
;; relevant? : Ref -> boolean
;; Only want identifiers actually originating from module being analyzed,
;; not identifiers from other modules inserted by macro expansion.
;; - Actually, want identifiers with lexical context of module, which includes
;; some identifiers not originating from module (eg, inserted by unit-from-context).
;; - Also, if ref represents a re-export, no identifier but still relevant.
;; So, use syntax-source-module conservatively: only to disqualify refs.
(define (relevant? ref)
(let* ([phase (ref-phase ref)]
[id (ref-id ref)]
[binding (ref-binding ref)]
[srcmod (and id (syntax-source-module id))])
(cond [(and srcmod (not (here-mpi? srcmod))) #f]
[else #t])))
;; ========
;; get-requires : compiled-module-expr -> (listof (list int MPI))
(define (get-requires compiled)
(let ([phase+mods-list (module-compiled-imports compiled)])
(for*/list ([phase+mods (in-list phase+mods-list)]
#:when (car phase+mods) ;; Skip for-label requires
[mod (cdr phase+mods)])
(list (car phase+mods) mod))))
;; provides->refs : compiled-module-expr -> Refs
(define (provides->refs compiled)
(let-values ([(vprov sprov) (module-compiled-exports compiled)])
(for*/list ([phase+exps (in-list (append vprov sprov))]
#:when (car phase+exps) ;; Skip for-label provides
[name+srcs (in-list (cdr phase+exps))]
[src (in-list (cadr name+srcs))])
(let ([phase (car phase+exps)]
[name (car name+srcs)])
(define (->ref nom-mod exp-sym phase-shift sym orig-phase)
;; We don't have the DEF information, so put #f
(let ([b (list #f #f nom-mod sym #f phase-shift orig-phase)])
(ref phase #f 'provide b)))
(match src
[(? module-path-index?)
(->ref src name 0 name phase)]
[(list imp-mod imp-phase-shift imp-name imp-orig-phase)
(->ref imp-mod name imp-phase-shift imp-name imp-orig-phase)])))))
;; ========
;; A RefineTable is hash[(cons mpi phase) => (or RefineTable Imps)]
;; preserve nesting because inner MPIs need to be resolved wrt outer MPIs
;; try-bypass : mpi phase Refs -> RefineTable or #f
(define (try-bypass mod reqphase refs)
;; refs are all nominally from mod
(let* ([imps (map ref->imp refs)])
(refine-imps/one-require mod reqphase imps)))
;; refine-imps/one-require : mpi phase Imps -> RefineTable or #f
;; where all imps come from mod at phase
;; the result table contains new (refined) imps
(define (refine-imps/one-require mod reqphase imps)
(let ([use-table (make-hash)] ;; RefineTable
[bytable (mod->bypass-table mod)])
(and (for/and ([i (in-list imps)])
(match i
[(imp _m _rp sym exp-phase r)
(let* ([bykey (cons sym exp-phase)]
[src (hash-ref bytable bykey #f)])
(match src
[(renm srcmod phase-shift srcsym srcphase)
(let ([use-key (cons srcmod (+ reqphase phase-shift))]
[imp* (imp srcmod (+ reqphase phase-shift) srcsym srcphase r)])
(hash-set! use-table use-key (cons imp* (hash-ref use-table use-key null))))
#t]
[else #f]))]))
(refine-imps* use-table))))
(define (refine-imps* partitions)
(for/hash ([(mod+reqphase imps) (in-hash partitions)])
(values mod+reqphase
(let ([mod (car mod+reqphase)]
[reqphase (cdr mod+reqphase)])
(or (and (allow-bypass? mod)
(refine-imps/one-require mod reqphase imps))
imps)))))
;; ========
;; A BypassTable is hash[(cons sym phase) => Renm
;; Contains only approved modules (no private, etc).
;; A Renm is (renm srcmod reqphase srcsym)
(struct renm (srcmod phase-shift srcsym srcphase))
;; mod->bypass-table : mpi -> BypassTable
;; FIXME: cache tables
(define (mod->bypass-table mod)
(define table (make-hash))
(let/ec escape
(define prov
;; FIXME: hack around mis-resolution of mpis in case of submodules
;; by just bailing out; should just result in missed bypass opportunities
(with-handlers ([(lambda (e) #t)
(lambda (e) (escape (void)))])
(get-module-all-exports mod)))
(for* ([phase+exps (in-list prov)]
#:when (car phase+exps) ;; Skip for-label provides
[name+srcs (in-list (cdr phase+exps))]
[src (in-list (cadr name+srcs))])
(let ([phase (car phase+exps)]
[name (car name+srcs)])
(define (add-source! src-mod phase-offset src-sym)
(when (bypass-ok-mpi? src-mod)
(let ([key (cons name phase)]
;; src-phase + phase-shift = phase
[src-phase (- phase phase-offset)])
(hash-ref! table key (renm src-mod phase-offset src-sym src-phase)))))
(match src
[(? module-path-index?)
(add-source! src 0 name)]
[(list imp-mod imp-phase-shift imp-name imp-orig-phase)
(add-source! imp-mod imp-phase-shift imp-name)]))))
table)
;; ========
;; report : UseTable UseTable (listof (list int mpi)) -> (listof recommendation)
(define (report NOM-USES DEF-USES phase+mod-list)
(for/list ([phase+mod (in-list phase+mod-list)])
(let* ([phase (car phase+mod)]
[mod (cadr phase+mod)]
[key (list phase (mpi->key mod))]
[nom-refs (hash-ref NOM-USES key null)]
[def-refs (hash-ref DEF-USES key null)])
(cond [(and (pair? nom-refs) (pair? def-refs))
;; We use refs defined in the module (and we got them from the module)
(list 'keep mod phase (map ref->imp nom-refs))]
[(pair? nom-refs)
;; We use refs gotten from the module (but defined elsewhere)
(let ([bypass
(and (allow-bypass? mod)
(try-bypass mod phase nom-refs))])
(if bypass
(list 'bypass mod phase bypass)
(list 'keep mod phase (map ref->imp nom-refs))))]
[else
;; We don't have any refs gotten from the module
;; (although we may---possibly---have refs defined in it, but gotten elsewhere)
(if (allow-drop? mod)
(list 'drop mod phase)
(list 'keep mod phase null))]))))
| false |
dff3e9f522733dc3e5d31b01e037ad3c48173ef3 | 49d98910cccef2fe5125f400fa4177dbdf599598 | /advent-of-code-2021/solutions/day21/day21-hyper-neutrino.rkt | 3253c9d1f40a0155bb6ead7777bc0ee41d253414 | []
| no_license | lojic/LearningRacket | 0767fc1c35a2b4b9db513d1de7486357f0cfac31 | a74c3e5fc1a159eca9b2519954530a172e6f2186 | refs/heads/master | 2023-01-11T02:59:31.414847 | 2023-01-07T01:31:42 | 2023-01-07T01:31:42 | 52,466,000 | 30 | 4 | null | null | null | null | UTF-8 | Racket | false | false | 1,282 | rkt | day21-hyper-neutrino.rkt | #lang racket
;; Port of https://github.com/hyper-neutrino/advent-of-code/blob/main/2021/day21p2.py
(define cache (make-hash))
(define rolls (for*/list ([ x (in-inclusive-range 1 3) ]
[ y (in-inclusive-range 1 3) ]
[ z (in-inclusive-range 1 3) ])
(+ x y z)))
(define (play pos0 pos1 [score0 0] [score1 0])
(let* ([ key (list pos0 pos1 score0 score1) ]
[ pair (hash-ref cache key #f) ])
(if pair
pair
(let ([ wins0 0 ][ wins1 0 ])
(for ([ roll (in-list rolls) ])
(let* ([ pos0* (+ pos0 roll) ]
[ pos0* (if (> pos0* 10) (- pos0* 10) pos0*) ]
[ score0* (+ score0 pos0*) ])
(if (>= score0* 21)
(set! wins0 (add1 wins0))
(let* ([ pair (play pos1 pos0* score1 score0*) ]
[ delta-wins1 (car pair) ]
[ delta-wins0 (cdr pair) ])
(set! wins0 (+ wins0 delta-wins0))
(set! wins1 (+ wins1 delta-wins1))))))
(let ([ pair (cons wins0 wins1) ])
(hash-set! cache key pair)
pair)))))
(time (play 1 3))
| false |
16db3a9e2aa5566326fc67289e0a9bbcf13d04cd | 9d4c39a3e5f500d557139151e4aa926c3bfeccc6 | /aws/take.rkt | f74d611492bd72f8dcb79799190206a444c97454 | [
"BSD-3-Clause",
"BSD-2-Clause"
]
| permissive | greghendershott/aws | 19cdc7d852b23eede8a9b81cbe44b2269f4ea67e | ddeee9c2152f6aabaa55753fe8f4872088db060d | refs/heads/master | 2023-07-25T13:42:24.904752 | 2023-07-15T15:20:11 | 2023-07-15T15:20:11 | 5,463,553 | 72 | 23 | BSD-2-Clause | 2023-07-15T15:20:13 | 2012-08-18T15:10:09 | Racket | UTF-8 | Racket | false | false | 4,803 | rkt | take.rkt | ;; Copyright (c) 2012-2022 by Greg Hendershott.
;; SPDX-License-Identifier: BSD-2-Clause
#lang racket/base
(require racket/contract/base
racket/contract/region)
(provide in-take)
;; Background: Functions like `hash', `hash-set*', `dict-set*' and so
;; on take argument couples as alternating arguments rather than a
;; cons pair. Using such functions can be refreshing, as you can type
;; simply (hash k0 v0 k1 v1) instead of all the dots and parens with
;; #hash([k0 . v0][k1 v2]).
;;
;; Using such functions is nice, but defining them is a bit awkward --
;; unless you have in-take. It lets you sequence a flat list of items
;; in groups of N, much like using `take' and `drop'.
;;
;; Likewise, this makes it easy to write simple flat wrappers. For example
;; here is a `hash'-like initializer for association lists:
;;
;; (define (alist . xs)
;; (for/list ([(k v) (in-take xs 2)])
;; (cons k v)))
;;
;; Generalizing:
;;
;; 1. At first I wrote this for couples in lists.
;;
;; 2. Then I generalized it to any group size -- couples, triples,
;; whatever -- in lists.
;;
;; 3. Then I generalized it to any single-valued sequence: list,
;; vector, string, etc.
(define (make-fill who n)
(lambda (_)
(error who "list not multiple of ~a items" n)))
(define fill/c (exact-nonnegative-integer? . -> . any/c))
;; (in-take seq n fill) is a way to take `n' elements at a time from
;; `seq'. For instance with n=2 you will get successive couples of
;; elements, with n=3 you get triples, and so on. `n' defaults to 2.
;; If there aren't exactly `n' elements at the end of the list, `fill'
;; is called with an index from 0 to (sub1 n). `fill' defaults to a
;; procedure that raises an error, but you may supply a procedure that
;; "fills in missing values".
;;
;; Note: Just as I was finishing this, I discovered `in-slice' in
;; racket/unstable. Although that's great as far as it goes, I've
;; found that my optional `fill' functionality to handle missing
;; values is very useful.
(define/contract (in-take seq [n 2] [fill (make-fill 'in-take n)])
((sequence?) (exact-positive-integer? fill/c) . ->* . sequence?)
(make-do-sequence ;Model: unstable/sequence
(lambda ()
(define-values (more? get) (sequence-generate seq))
(values (lambda (_) ;pos->element
(apply values (for/list ([i n])
(cond [(more?) (get)]
[else (fill i)]))))
(lambda (_) #t) ;next-pos
#t ;initial-pos
(lambda (_) (more?)) ;continue-with-pos?
(lambda _ #t) ;continue-with-val?
(lambda _ #t) ;continue-after-pos+val?
))))
(module+ test
(require rackunit)
(test-case
"in-take"
;; Take from an empty sequence is '() (not an error)
(check-equal? (for/list ([(k v) (in-take (list))])
(cons k v))
'())
(check-equal? (for/list ([(k v) (in-take (vector))])
(cons k v))
'())
(check-equal? (for/list ([(k v) (in-take "")])
(cons k v))
'())
;; Sequence is multiple of take size
(check-equal? (for/list ([(k v) (in-take (list 'a "1" 'b "2"))])
(cons k v))
'([a . "1"][b . "2"]))
(check-equal? (for/list ([(k v) (in-take (vector 'a "1" 'b "2"))])
(cons k v))
'([a . "1"][b . "2"]))
(check-equal? (for/list ([(k v) (in-take "a1b2")])
(cons k v))
'([#\a . #\1][#\b . #\2]))
;; Missing values raising an error (the default `fill')
(check-exn exn:fail?
(lambda () (for/list ([(k v) (in-take '(a "1" b "2" c) 2)])
(cons k v))))
;; Missing values filled in
(check-equal? (for/list ([(k v) (in-take '(a "1" b "2" c) 2
(λ _ "FILL"))])
(cons k v))
'([a . "1"][b . "2"][c . "FILL"]))
;; Fill function is passed expected "index"
(check-equal? (for/list ([(a b c d e) (in-take '(0 1) 5 values)])
(list a b c d e))
'((0 1 2 3 4))) ;fill was called with 2 3 4
;; Taking the same list with different take-sizes.
(define test-xs (list 0 1 2 3 4 5 6 7 8 9))
(define (test-take n)
(for/list ([ts (in-values-sequence (in-take test-xs n))])
ts))
(check-equal? (test-take 1)
'((0) (1) (2) (3) (4) (5) (6) (7) (8) (9)))
(check-equal? (test-take 2)
'((0 1) (2 3) (4 5) (6 7) (8 9)))
(check-equal? (test-take 5)
'((0 1 2 3 4) (5 6 7 8 9)))))
| false |
d7e7d65d07162b4ee55a1fb907adaa3307bc216b | b08b7e3160ae9947b6046123acad8f59152375c3 | /Programming Language Detection/Experiment-2/Dataset/Train/Racket/symmetric-difference.rkt | b692a2e958d8383c63a6d05b192c2c9f3c1103b2 | []
| 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 | 172 | rkt | symmetric-difference.rkt | #lang racket
(define A (set "John" "Bob" "Mary" "Serena"))
(define B (set "Jim" "Mary" "John" "Bob"))
(set-symmetric-difference A B)
(set-subtract A B)
(set-subtract B A)
| false |
c778bf43bf97b009364d17a5cd5fd473eb52f083 | 894df548c3c94d5d315a83a3fa2ec4b5e8be064a | /class/w02/thurs.rkt | a77212bbb397a615ea858d62884f8c536fed88d8 | []
| no_license | mgarcia77/cs37 | ede79f1db5f8898837f16776052e1f18642acbb9 | 9247a6516f1758217409b3087f3df43103c6465b | refs/heads/master | 2021-01-10T18:45:14.960703 | 2013-04-05T19:59:45 | 2013-04-05T19:59:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,134 | rkt | thurs.rkt | #lang racket
(require rackunit)
(define sorted?
(lambda (lst comparator)
(cond ((or (null? lst) (null? (cdr lst))) #t)
((comparator (car lst) (cadr lst)) (sorted? (cdr lst)
comparator))
(else #f))))
(check-equal? (sorted? '(1 2 4 6) <=) #t)
(check-equal? (sorted? '(1) <=) #t)
(check-equal? (sorted? '() <=) #t)
(check-equal? (sorted? '(1 2 8 6) <=) #f)
(check-equal? (sorted? '("apple" "banana" "pear") string<=?) #t)
(check-equal? (sorted? '(10 5 2 1) >=) #t)
(check-equal? (sorted? '(5 5 5 5 5) =) #t)
(check-equal? (sorted? '(5 5 4 5 5) =) #f)
#|
(define do-this
(lambda (op a b)
(op a b)))
(do-this + 1 2)
(do-this * 4 8)
|#
(define boring
(lambda (k) (+ k 5)))
(boring 7) ;12
(define add-n
(lambda (n)
(lambda (k) (+ k n))))
(define add-5 (add-n 5))
(add-5 7)
(add-5 100)
; some oddball list of functions in a list
(define fnlist (list (lambda (n) (+ n 1)) (add-n 2) cons))
(define range
(lambda (n)
(cond ((<= n 0) null)
(else (cons (add-n n) (range (- n 1)))))))
(define functions (range 5))
| false |
3a4dda7ea52a921a359fac9b97ec8f670357082f | 3c5bd480a57c1d072a99fb88bdffbc57fc539b61 | /poof.scrbl | a2df9a298c244ead540ae2bd8399e144522142fe | [
"Apache-2.0"
]
| permissive | kwannoel/poof | 4a43779e01c1a3c86093e5591050a3dad2ce25e8 | 104f8c63cab467a5638bdd26cca420a7bc0b11d7 | refs/heads/main | 2023-04-19T13:20:05.384334 | 2021-05-14T10:15:16 | 2021-05-14T10:15:16 | 367,080,628 | 0 | 0 | Apache-2.0 | 2021-05-13T14:49:31 | 2021-05-13T14:49:30 | null | UTF-8 | Racket | false | false | 102,755 | scrbl | poof.scrbl | #lang scribble/acmart @acmsmall @10pt @natbib
@; @authordraft
@; Submitted to OOPSLA 2021 https://2021.splashcon.org/track/splash-2021-oopsla
@title{Prototypes: Object-Orientation, Functionally}
@author[
#:email (email "[email protected]")
#:affiliation (affiliation #:institution @institution{@emph{Mutual Knowledge Systems, Inc.}})
]{François-René Rideau}
@author[
#:email (email "[email protected]")
#:affiliation (affiliation #:institution @institution{@emph{Mutual Knowledge Systems, Inc.}})
]{Alex Knauth}
@author[
#:email (email "[email protected]")
#:affiliation (affiliation #:institution @institution{@emph{Harvard University}})
]{Nada Amin}
@abstract{
This paper elucidates the essence of Object-Oriented Programming (OOP),
independent of idiosyncrasies of past incarnations.
We reconstruct OOP in a pure lazy functional style with dynamic or dependent types.
We build protototype-based objects first, then class-based objects as a special case.
We illustrate our reconstruction in Scheme.
Using our approach, any language that contains the untyped lambda calculus
can now implement an object system in handful of functions or about 30 lines of code.
Multiple inheritance can be implemented in an additional 50 lines of code.
}
@(require scriblib/bibtex
(only-in scribble/core make-paragraph make-style)
(only-in scribble/manual racket racketblock code codeblock litchar itemize item)
(only-in scribble/example examples make-base-eval)
(only-in scriblib/footnote note)
(only-in scribble-abbrevs appendix)
(only-in scribble-math/dollar $)
@; scribble/minted
syntax/parse/define
"util/examples-module.rkt"
(for-label racket))
@;@(define (nix . foo) (apply minted "nix" foo))
@(define (nix . foo) (apply verbatim foo))
@(define (pretitle content) (make-paragraph (make-style 'pretitle '()) content))
@(define (tex . args) (apply elem #:style (make-style #f '(exact-chars)) args))
@(define (noindent) @tex{\noindent})
@(define (~nocite . x) (let ((_ (apply @~cite x))) (void)))
@(define-simple-macro (r a ...) (racket a ...))
@(define-simple-macro (Definitions a ...) (examples/module poof #:no-result a ...))
@(define-simple-macro (Examples a ...) (examples #:eval poof #:no-result a ...))
@(define-simple-macro (Checks a ...) (examples #:eval poof #:label #f a ...))
@(define-bibtex-cite "poof.bib" ~cite citet generate-bibliography)
@(define (section1) @seclink["Prototypes_bottom_up"]{section 1})
@(define (section2) @seclink["pure_objective_fun"]{section 2})
@(define (section3) @seclink["beyond_objects"]{section 3})
@(define (section34) @seclink["without_subtyping"]{section 3.4})
@(define (section4) @seclink["Better_objects"]{section 4})
@(define (section43) @seclink["multiple_inheritance"]{section 4.3})
@(define (section5) @seclink["Classes"]{section 5})
@(define (section6) @seclink["Mutability"]{section 6})
@(define (section7) @seclink["Future_Work"]{section 7})
@(define (AppendixA) @seclink["Appendix_A"]{Appendix A})
@(define (AppendixB) @seclink["Appendix_B"]{Appendix B})
@(define (AppendixC) @seclink["Appendix_C"]{Appendix C})
@(declare-examples/module poof racket
(provide (all-defined-out)))
@examples/module[poof #:hidden
(require (only-in racket/base [define def])
srfi/1
"util/eval-check.rkt")
@;{TODO:
Some lighter syntax than code:comment.
Get scribble/comment-reader to work?
Manual traversal of the syntax object?
}
]
@;{TODO: For Checks, instead of
> (+ 1 1)
2
rather have
(+ 1 1)
;=> 2
}
@;@(current-pygmentize-default-style 'colorful)
@pretitle{
@tex{
\acmYear{2021}
\copyrightyear{2021}
\acmConference[IN SUBMISSION]{some future conference that will hopefully accept this paper}{2021 or later}{some future place}
%\acmConference[IN SUBMISSION TO OOPSLA 2021]{some future conference that will hopefully accept this paper}{October 17--22 2021}{Chicago, Illinois}
\acmISBN{978-1-xxxx-xxxx-x/21/10}
\acmPrice{00.00}
\acmDOI{https://dx.doi.org/xx.xxxx/xxxxxxx.xxxxxxx}
\setcopyright{none}
}}
@section[#:tag "Prototypes_bottom_up"]{Prototypes, bottom up}
@subsection{The Essence of OOP}
@subsubsection{Object Orientation in 26 symbols of standard Scheme}
@Definitions[
(define (fix p b) (define f (p (lambda i (apply f i)) b)) f)
(define (mix c p) (lambda (f b) (c f (p f b))))
]
@(noindent)
We will make the case that the above two definitions summarize
the essence of Object-Oriented Programming (OOP), and that
all the usual OOP concepts can be easily recovered from them—all while
staying within the framework of pure Functional Programming (FP).
@subsubsection{Plan of this Essay}
In @(section1), we explain how the above functions
implement a minimal but recognizable model of OOP,
with open recursion and inheritance.
In @(section2), we illustrate this OOP model actually enables
incremental definition of complex data structures.
In @(section3), we show how prototypes are useful beyond traditional notions of objects,
and identify how they have a special place in computer science.
In @(section4), we examine how our model can be extended to support
more advanced features of OOP.
In @(section5), we demonstrate how classes are “just” prototypes for type descriptors.
In @(section6), we discuss our pure functional model relates
to models with mutable objects.
Finally in @(section7), we propose a path for further research.
Along the way, we relate our approach to both OOP and FP traditions, both decades-old and recent.
@subsubsection{Modular Increments of Computation}
OOP consists in specifying computations in modular increments
each contributing their part based on the combined whole and the computation so far.
We will realize these increments as @emph{prototypes}:
functions of two arguments, @r[self] and @r[super]
(or, above, @r[f] and @r[b], for fixed-point and base value).
Function @r[fix] @emph{instantiates} a prototype @r[p]
given a super/base value @r[b].
Function @r[mix] has @emph{child} prototype @r[c] @emph{inherit}
from @emph{parent} prototype @r[p]
so they operate on a same fixed-point @r[f]
while chaining their effects on @r[b].
Given some arbitrary instance type @r[Self],
and a super-type @r[Super] of @r[Self],
a prototype for @r[Self] from @r[Super] will thus be
a function from @r[Self] and @r[Super] to @r[Self].
@racketblock[
(code:comment "(deftype (Proto Self Super) (Fun Self Super -> Self st: (<: Self Super)))")
(code:comment "fix : (Fun (Proto Self Super) Super -> Self st: (<: Self Super))")
(code:comment "mix : (Fun (Proto Self Super) (Proto Super Sup2) -> (Proto Self Sup2))")
(code:comment "Note: \"<:\" is a Type Constraint for subtyping (see Appendix B.4)")
]
@(noindent)
The first argument @r[self] of type @r[Self] will hold the instance
resulting as a fixed point from the entire computation.
When composing multiple prototypes, every prototype will receive
the @emph{same} value as their @r[self] argument:
the complete instance that results from applying each prototype in order.
This allows prototypes to “cooperate” with each other
on @emph{different} aspects of the computation,
wherein one prototype defines some aspect (e.g. a “method” in some dictionary)
while relying on aspects to be defined by other prototypes (e.g. other methods),
accessed through the @r[self] argument in what is called “late binding”.
The second argument @r[super] by contrast holds the partial result of the
fixed-point computation after applying only the “next” prototypes.
When composing multiple prototypes, each prototype will (presumably) receive
a different value. The last prototype in the list (rightmost, most ancestral
parent) will receive the “base” or “bottom” value from the fix function
(often literally the bottom value or function in the language), then the
"previous" prototype (its child, to the left) will receive ("inherit")
the result of that “next” computation (its parent, to the right), and so on
until the first prototype (leftmost, most recent child) inherits
its @r[super] value from the rest and computes the final instance.
This allows prototypes to cooperate with other prototypes on a @emph{same} aspect
of the instance computation, wherein children prototypes can accumulate, modify
or override the method values inherited from the parent prototypes.
@subsubsection{Applicability to other Programming Languages}
The two definitions above can be easily translated to any language with closures
and either dynamic types or dependent types. However, their potential is not
fully realized in languages with mere parametric polymorphism.
@; TODO: insert above reference to type discussion?
Furthermore, for an @emph{efficient} implementation of objects with our formulas,
we will also require lazy evaluation (see @(section3)),
whether an ubiquitous language feature or an optional one
(possibly user-implemented with side-effects).
We do not otherwise require side-effects---though they can be used
for the usual optimizations in the common “linear” case (see @(section6)).
@subsection{A minimal object system}
@subsubsection{Records as functions}
Let us relate the above two functions to objects,
by first encoding “records” of multiple named values as functions
from symbol (the name of a slot) to value (bound to the slot).
In accordance with Lisp tradition,
we will say “slot” where others may say “field” or “member” or “method”,
and say that the slot is bound to the given value
rather than it “containing” the value or any such thing.
Thus function @r[x1-y2] below encodes a record with two slots
@r[x], @r[y] bound respectively to @r[1] and @r[2].
@Examples[
(code:comment "x1-y2 : (Fun 'x -> Nat | 'y -> Nat)")
(define (x1-y2 msg) (case msg ((x) 1)
((y) 2)
(else (error "unbound slot" msg))))
]
@(noindent)
We can check that we can indeed access the record slots
and get the expected values:
@Checks[
(eval:check (list (x1-y2 'x) (x1-y2 'y)) '(1 2))
]
@(noindent)
Note that we use Scheme symbols for legibility.
Poorer languages could instead use any large enough type with decidable equality,
such as integers or strings.
Richer languages (e.g. Racket or some Scheme with @r[syntax-case])
could use resolved hygienic identifiers, thereby avoiding accidental clashes.
@subsubsection{Prototypes for Records}
A @emph{prototype} for a record is a function of two record arguments @r[self],
@r[super] that returns a record extending @r[super].
To easily distinguish prototypes from instances and other values,
we will follow the convention of prefixing with @litchar{$} the names of prototypes.
Thus, the following prototype extends or overrides its super-record with
slot @r[x] bound to @r[3]:
@Examples[
(code:comment "$x3 : (Proto (Fun 'x -> Nat | A) A)")
(define ($x3 self super) (λ (msg) (if (eq? msg 'x) 3 (super msg))))
]
@(noindent)
This prototype computes a complex number slot @r[z] based on real and
imaginary values bound to the respective slots @r[x] and @r[y] of its
@r[self]:
@Examples[
(code:comment "$z<-xy : (Proto (Fun (Or 'x 'y) -> Real | 'z -> Complex | A)")
(code:comment " (Fun (Or 'x 'y) -> Real | A))")
(define ($z<-xy self super)
(λ (msg) (case msg
((z) (+ (self 'x) (* 0+1i (self 'y))))
(else (super msg)))))
]
@(noindent)
This prototype doubles the number in slot @r[x] that it @emph{inherits} from its @r[super] record:
@Examples[
(code:comment "$double-x : (Proto (Fun 'x -> Number | A) (Fun 'x -> Number | A))")
(define ($double-x self super)
(λ (msg) (if (eq? msg 'x) (* 2 (super 'x)) (super msg))))
]
@(noindent)
More generally a record prototype extends its @r[super] record with new slots
and/or overrides the values bound to its existing slots, and may in the
process refer to both the records @r[self] and @r[super] and their slots,
with some obvious restrictions to avoid infinite loops from circular definitions.
@subsubsection{Basic testing} How to test these prototypes?
With the @r[fix] operator using the above record @r[x1-y2] as base value:
@Checks[
(code:comment "x3-y2 : (Fun 'x -> Nat | 'y -> Nat)")
(define x3-y2 (fix $x3 x1-y2))
(eval:check (list (x3-y2 'x) (x3-y2 'y)) '(3 2))
(code:comment "z1+2i : (Fun 'x -> Nat | 'y -> Nat | 'z -> Complex)")
(define z1+2i (fix $z<-xy x1-y2))
(eval:check (list (z1+2i 'x) (z1+2i 'y) (z1+2i 'z)) '(1 2 1+2i))
(code:comment "x2-y2 : (Fun 'x -> Nat | 'y -> Nat)")
(define x2-y2 (fix $double-x x1-y2))
(eval:check (list (x2-y2 'x) (x2-y2 'y)) '(2 2))
]
@(noindent)
We can also @r[mix] these prototypes together before to compute the @r[fix]:
@Checks[
(code:comment "z6+2i : (Fun 'x -> Nat | 'y -> Nat | 'z -> Complex)")
(define z6+2i (fix (mix $z<-xy (mix $double-x $x3)) x1-y2))
(eval:check (map z6+2i '(x y z)) '(6 2 6+2i))
]
@(noindent)
And since the @r[$z<-xy] prototype got the @r[x] and @r[y] values
from @r[self] and not @r[super], we can freely commute it with the other two prototypes
that do not affect either override slot @r[z] or inherit from it:
@Checks[
(eval:check (list ((fix (mix $z<-xy (mix $double-x $x3)) x1-y2) 'z)
((fix (mix $double-x (mix $z<-xy $x3)) x1-y2) 'z)
((fix (mix $double-x (mix $x3 $z<-xy)) x1-y2) 'z))
'(6+2i 6+2i 6+2i))
]
@(noindent)
@r[mix] is associative, and therefore the following forms are equivalent to the previous ones,
though the forms above (fold right) are slightly more efficient than the forms below (fold left):
@Checks[
(eval:check (list ((fix (mix (mix $z<-xy $double-x) $x3) x1-y2) 'z)
((fix (mix (mix $double-x $z<-xy) $x3) x1-y2) 'z)
((fix (mix (mix $double-x $x3) $z<-xy) x1-y2) 'z))
'(6+2i 6+2i 6+2i))
]
@(noindent)
Now, since @r[$double-x] inherits slot @r[x] that @r[$x3] overrides,
there is clearly a dependency between the two that prevents them from commuting:
@Checks[
(code:comment "x6-y2 : (Fun 'x -> Nat | 'y -> Nat)")
(define x6-y2 (fix (mix $double-x $x3) x1-y2))
(code:comment "x3-y2 : (Fun 'x -> Nat | 'y -> Nat)")
(define x3-y2 (fix (mix $x3 $double-x) x1-y2))
(eval:check (list (x6-y2 'x) (x3-y2 'x)) '(6 3))
]
@subsubsection{Record prototype generators}
Now that we understand record prototypes, we can look at various utility
functions to build them.
To define an object with a slot @r[k] mapped to a value @r[v], use:
@Definitions[
(code:comment "$slot : (Fun k:Symbol V -> (Proto (Fun 'k -> V | A) A))")
(define ($slot k v) (code:comment "k v: constant key and value for this defined slot")
(λ (self super) (code:comment "self super: usual prototype variables")
(λ (msg) (code:comment "msg: message received by the object, a.k.a. method name.")
(if (equal? msg k) v (code:comment "if the message matches the key, return the value")
(super msg))))) (code:comment "otherwise, recur to the object's super object")
]
@(noindent)
What of inheritance? Well, we can modify an inherited slot using:
@Definitions[
(code:comment "$slot-modify : (Fun k:Symbol (Fun V -> W)")
(code:comment " -> (Proto (Fun 'k -> W | A) (Fun 'k -> V | A) A) st: (<: V W))")
(define ($slot-modify k modify) (code:comment "modify: function from super-value to value")
(λ (self super) (λ (msg)
(if (equal? msg k) (modify (super msg))
(super msg)))))
]
@(noindent)
What if a slot depends on other slots? We can use this function
@Definitions[
(code:comment "$slot-compute : (Fun k:Symbol (Fun A -> V) -> (Proto (Fun 'k -> V | A) A))")
(define ($slot-compute k fun) (code:comment "fun: function from self to value.")
(λ (self super)
(λ (msg)
(if (equal? msg k) (fun self)
(super msg)))))
]
@(noindent)
A general function to compute and override a slot would take as arguments both @r[self]
and a function to @r[inherit] the super slot value,
akin to @r[call-next-method] in CLOS@~cite{gabriel1991clos}.
@Definitions[
(code:comment "$slot-gen : (Fun k:Symbol (Fun A (Fun -> V) -> W)")
(code:comment " -> (Proto (Fun 'k -> W | A) (Fun 'k -> V | A) A) st: (<: V W))")
(define ($slot-gen k fun) (code:comment "fun: from self and super-value thunk to value.")
(λ (self super)
(λ (msg)
(define (inherit) (super msg))
(if (equal? msg k) (fun self inherit) (inherit)))))
]
@(noindent)
We could redefine the former ones in terms of that latter:
@Examples[
(define ($slot k v) ($slot-gen k (λ (__self __inherit) v)))
(define ($slot-modify k modify) ($slot-gen k (λ (__ inherit) (modify (inherit)))))
(define ($slot-compute k fun) ($slot-gen k (λ (self __) (fun self))))
]
@(noindent)
Thus you can re-define the above prototypes as:
@Examples[
(define $x3 ($slot 'x 3))
(define $double-x ($slot-modify 'x (λ (x) (* 2 x))))
(define $z<-xy ($slot-compute 'z (λ (self) (+ (self 'x) (* 0+1i (self 'y))))))
]
@(noindent)
Here is a universal bottom function to use as the base for fix:
@Definitions[
(code:comment "bottom-record : (Fun Symbol -> _)")
(define (bottom-record msg) (error "unbound slot" msg))
]
@(noindent)
To define a record with a single slot @r[foo] bound to @r[0], we can use:
@Checks[
(code:comment "x3 : (Fun 'x -> Nat)")
(define x3 (fix $x3 bottom-record))
(eval:check (x3 'x) 3)
]
@(noindent)
To define a record with two slots @r[x] and @r[y] bound to @r[1]
and @r[2] respectively, we can use:
@Checks[
(code:comment "x1-y2 : (Fun 'x -> Nat | 'y -> Nat)")
(define x1-y2 (fix (mix ($slot 'x 1) ($slot 'y 2)) bottom-record))
(eval:check (map x1-y2 '(x y)) '(1 2))
]
@subsubsection{Back to 1981!}
Interestingly, the above approach to objects is essentially equivalent,
though not exactly isomorphic, to what Yale T had in 1981@~cite{adams88oopscheme}.
This object system was notably reprised by YASOS in 1992@~cite{dickey1992scheming}
and distributed with SLIB since.
There are minor differences: what we call “instance”, T calls “object” or “instance”,
but instead of “prototypes” it has “components” with a slightly different API.
Also T assumes methods are all function-valued, to be immediately called
when methods are looked up, as if all accesses to an object went through the @r[operate] function below.
Methods in T can be directly represented as slots with a function value in our approach.
Non-function-valued slots in our approach above can be represented in T
by nullary methods returning a constant value.
@Definitions[
(define (operate instance selector . args) (apply (instance selector) args))
]
@subsection{Prototype Basics}
@subsubsection{Long-form Basics}
Let's rewrite @r[fix] and @r[mix] in long-form
with variables @r[self] and @r[super] instead of @r[f] and @r[b], etc.
Thus, the instantiation function @r[(fix p b)] becomes:
@Definitions[
(code:comment "instantiate-prototype : (Fun (Proto Self Super) Super -> Self)")
(define (instantiate-prototype prototype base-super)
(define self (prototype (λ i (apply self i)) base-super))
self)
]
@(noindent)
A more thorough explanation of the above fixed-point function is in @(AppendixC).
Meanwhile, the composition function @r[(mix p q)] becomes:
@Definitions[
(code:comment "compose-prototypes : (Fun (Proto Self Super) (Proto Super Super2)")
(code:comment " -> (Proto Self Super2) st: (<: Self Super Super2))")
(define (compose-prototypes child parent)
(λ (self super2) (child self (parent self super2))))
]
@(noindent)
Note the types of the variables and intermediate expressions:
@tabular[
(list (list
@racketblock[
child : (Proto Self Super)
self : Self
(child self (parent self super2)) : Self]
@racketblock[
parent : (Proto Super Super2)
super2 : Super2
(parent self super2) : Super]))]
@(noindent)
When writing long-form functions, instead of vying for conciseness, we will
use the same naming conventions as in the function above:
@itemize[
@item{@r[child] for a @emph{prototype} at hand, in leftmost position;}
@item{@r[parent] for a @emph{prototype} that is being mixed with, in latter position;}
@item{@r[self] for the @emph{instance} that is a fixed point of the computation;}
@item{@r[super] for the @emph{instance} so-far accumulated or at the base of the computation.}
]
Note the important distinction between @emph{prototypes} and @emph{instances}.
Instances are the non-composable complete outputs of instantiation,
whereas prototypes are the composable partial inputs of instantiation.
Prototypes, increments of computation, are functions from an instance (of a
subtype @r[Self]) and another instance (of a supertype @r[Super])
to yet another instance of the subtype @r[Self].
@subsubsection{Composing prototypes}
The identity prototype as follows is neutral element for mix.
It doesn't override any information from the super/base object,
but only passes it through. It also doesn't consult information in
the final fixed-point nor refers to it.
@Definitions[
(code:comment "identity-prototype : (Proto Instance Instance)")
(define (identity-prototype self super) super)
]
@(noindent)
Now, prototypes are interesting because @r[compose-prototypes] (a.k.a. @r[mix])
is an associative operator with neutral element @r[identity-prototype].
Thus prototypes form a monoid, and you can compose or instantiate a list of prototypes:
@Definitions[
(code:comment "compose-prototype-list : (Fun (IndexedList I (λ (i)")
(code:comment " (Proto (A_ i) (A_ (1+ i))))) -> (Proto (A_ 0) (A_ (Card I))))")
(define (compose-prototype-list prototype-list)
(foldr compose-prototypes identity-prototype prototype-list))
(code:comment "instantiate-prototype-list : (Fun (IndexedList I (λ (i)")
(code:comment " (Proto (A_ i) (A_ (1+ i))))) (A_ (Card I)) -> (A_ 0))")
(define (instantiate-prototype-list prototype-list base-super)
(instantiate-prototype (compose-prototype-list prototype-list) base-super))
]
@;|{@Definitions[
(code:comment "compose-prototype-list : (Fun (IndexedList I (λ (i)")
(code:comment " (Proto (A_ i) (A_ (1+ i))))) -> (Proto (A_ 0) (A_ (Card I))))")
(define (compose-prototype-list l)
(cond
((null? l) identity-prototype)
((null? (cdr l)) (car l))
((null? (cddr l)) (compose-prototypes (car l) (cadr l)))
(else (compose-prototypes (car l) (compose-prototype-list (cdr l))))))
]
@; TODO: if we need space, delete the above or move it to an appendix.
@(noindent)
A more succint way to write the same function is:
@Examples[
(define (compose-prototype-list prototype-list)
(foldr compose-prototypes identity-prototype prototype-list))
]
@(noindent)
You can also instantiate a list of prototypes:
@Definitions[
(code:comment "instantiate-prototype-list : (Fun (IndexedList I (λ (i)")
(code:comment " (Proto (A_ i) (A_ (1+ i))))) (A_ (Card I)) -> (A_ 0))")
(define (instantiate-prototype-list prototype-list base-super)
(instantiate-prototype (compose-prototype-list prototype-list) base-super))
]
@(noindent)
And we can define a syntactic short-cut that composes prototypes in its list of arguments:
@Definitions[
(define ($compose . proto-list) (compose-prototype-list proto-list))
]
}|
@(noindent)
Prototype composition is notably more expressive than “single inheritance”
as commonly used in many “simple” object systems:
Object systems with “single inheritance” require programmers to @r[cons]
objects (or classes) one component at a time in the front of a rigid list of
"parent" objects (or classes), where the base object (or class) is set.
Prototype object systems enable programmers to @r[append] lists of prototypes
independently from any base object, to compose and recompose prototypes
in different orders and combinations.
Prototypes are thus more akin to the “mixins” or “traits” of more advanced
objects systems@~cite{Cannon82 bracha1990mixin Flatt06schemewith}.
Prototype composition however, does not by itself subsume multiple inheritance.
We will show in @(section4) how to combine the two.
@subsubsection{The Bottom of it}
In a language with partial functions, such as Scheme, there is a practical
choice for a universal base super instance to pass to
@r[instantiate-prototype]: the @r[bottom] function, that never returns,
but instead, for enhanced usability, may throw a helpful error.
@Definitions[
(code:comment "bottom : (Fun I ... -> O ...)")
(define (bottom . args) (error "bottom" args))
]
@(noindent)
Thus, in dialects with optional arguments, we could make @r[bottom] the default
value for @r[base-super]. Furthermore, in any variant of Scheme, we can define
the following function @r[instance] that takes the rest of its arguments as
a list of prototypes, and instantiates the composition of them:
@Definitions[
(code:comment "instance : (Fun (IndexedList I (λ (i) (Proto (A_ i) (A_ (1+ i)))))...")
(code:comment " -> (A_ 0)))")
(define (instance . prototype-list)
(instantiate-prototype-list prototype-list bottom))
]
@(noindent)
What if you @emph{really} wanted to instantiate your list of prototypes with some
value @r[b] as the base super instance? “Just” tuck
@r[(constant-prototype b)] at the tail end of your prototype list:
@Definitions[
(code:comment "$constant-prototype : (Fun A -> (Proto A _))")
(define ($constant-prototype base-super) (λ (__self __super) base-super))
]
@;{
@(noindent)
Or the same with a shorter name and a familiar definition as a combinator
@Definitions[
(code:comment "$const : (Fun A -> (Proto A _))")
(define ($const b) (λ _ b))
]}
@(noindent)
Small puzzle for the points-free Haskellers reading this essay:
what change of representation will enable prototypes to be composed like regular functions
without having to apply a binary function like @r[mix]? Solution in footnote.@note{
A general purpose trick to embed an arbitrary monoid into usual composable functions is
to curry the composition function (here, @r[mix]) with the object to be composed.
Thus, the functional embedding of prototype @r[p] will be
@r[(λ (q) (mix p q)) : (Fun (Proto Super S2) -> (Proto Self S2))].
To recover @r[p] from that embedding, just apply it to @r[identity-prototype].
}
@section[#:tag "pure_objective_fun"]{Pure Objective Fun}
@subsection{Using prototypes to incrementally define simple data structures}
@subsubsection{Prototypes for Order}
Let's use prototypes to build some simple data structures.
First, we'll write prototypes that offer an abstraction for the ability
to compare elements of a same type at hand, in this case,
either numbers or strings.
@Definitions[
(define ($number-order self super)
(λ (msg) (case msg
((<) (λ (x y) (< x y)))
((=) (λ (x y) (= x y)))
((>) (λ (x y) (> x y)))
(else (super msg)))))
(define ($string-order self super)
(λ (msg) (case msg
((<) (λ (x y) (string<? x y)))
((=) (λ (x y) (string=? x y)))
((>) (λ (x y) (string>? x y)))
(else (super msg)))))
]
@(noindent)
We can add a “mixin” for a @r[compare] operator that summarizes in one call
the result of comparing two elements of the type being described.
A mixin is a prototype meant to extend other prototypes.
See how this mixin can be used to extend either of the prototypes above.
Also notice how, to refer to other slots in the eventual instance,
we call @r[(self '<)] and suches.
@Definitions[
(define ($compare<-order self super)
(λ (msg) (case msg
((compare) (λ (x y)
(cond (((self '<) x y) '<)
(((self '>) x y) '>)
(((self '=) x y) '=)
(else (error "incomparable" x y)))))
(else (super msg)))))
(define number-order (instance $number-order $compare<-order))
(define string-order (instance $string-order $compare<-order))]
@Checks[
(eval:check (list ((number-order '<) 23 42) ((number-order 'compare) 8 4)
((string-order '<) "Hello" "World") ((string-order 'compare) "Foo" "FOO")
((string-order 'compare) "42" "42"))
'(#t > #t > =))
]
@(noindent)
We can define a order on symbols by delegating to strings!
@Definitions[
(define ($symbol-order self super)
(λ (msg) (case msg
((< = > compare)
(λ (x y) ((string-order msg) (symbol->string x) (symbol->string y))))
(else (super msg)))))
(define symbol-order (instance $symbol-order))]
@Checks[
(eval:check (list ((symbol-order '<) 'aardvark 'aaron) ((symbol-order '=) 'zzz 'zzz)
((symbol-order '>) 'aa 'a) ((symbol-order 'compare) 'alice 'bob)
((symbol-order 'compare) 'b 'c) ((symbol-order 'compare) 'c 'a))
'(#t #t #t < < >))
]
@subsubsection{Prototypes for Binary Trees}
We can use the above @r[order] prototypes to build binary trees
over a suitable ordered key type @r[Key].
We'll represent a tree as a list of left-branch,
list of key-value pair and ancillary data, and right-branch,
which preserves the order of keys when printed:
@Definitions[
(define ($binary-tree-map self super)
(λ (msg)
(define (node l kv r) ((self 'node) l kv r))
(case msg
((empty) '())
((empty?) null?)
((node) (λ (l kv r) (list l (list kv) r)))
((singleton) (λ (k v) (node '() (cons k v) '())))
((acons)
(λ (k v t)
(if ((self 'empty?) t) ((self 'singleton) k v)
(let* ((tl (car t)) (tkv (caadr t)) (tk (car tkv)) (tr (caddr t)))
(case (((self 'Key) 'compare) k tk)
((=) (node tl (cons k v) tr))
((<) (node ((self 'acons) k v tl) tkv tr))
((>) (node tl tkv ((self 'acons) k v tr))))))))
((ref)
(λ (t k e)
(if ((self 'empty?) t) (e)
(let ((tl (car t)) (tk (caaadr t)) (tv (cdaadr t)) (tr (caddr t)))
(case (((self 'Key) 'compare) k tk)
((=) tv)
((<) ((self 'ref) tl k e))
((>) ((self 'ref) tr k e)))))))
((afoldr)
(λ (acons empty t)
(if ((self 'empty?) t) empty
(let ((tl (car t)) (tk (caaadr t)) (tv (cdaadr t)) (tr (caddr t)))
((self 'afoldr)
acons (acons tk tv ((self 'afoldr) acons empty tl)) tr)))))
(else (super msg)))))]
@(noindent)
With this scaffolding, we can define a dictionary data structure
that we can use later to differently represent objects:
@Definitions[
(define symbol-tree-map (instance ($slot 'Key symbol-order) $binary-tree-map))
]
@(noindent)
However, when we use it, we immediately find an issue:
trees will too often be skewed, leading to long access times,
especially so when building them from an already ordered list:
@Checks[
(define my-binary-dict (code:comment "heavily skewed right, height 5")
(foldl (λ (kv t) ((symbol-tree-map 'acons) (car kv) (cdr kv) t))
(symbol-tree-map 'empty)
'((a . "I") (b . "II") (c . "III") (d . "IV") (e . "V"))))
(eval:check my-binary-dict '(() ((a . "I")) (() ((b . "II")) (() ((c . "III")) (() ((d . "IV")) (() ((e . "V")) ()))))))]
@(noindent)
But binary trees otherwise work:
@Checks[
(eval:check (map (λ (k) ((symbol-tree-map 'ref) my-binary-dict k (λ () #f))) '(a b c d e z))
'("I" "II" "III" "IV" "V" #f))]
@subsubsection{Prototypes for @emph{Balanced} Binary Trees}
We can incrementally define a balanced tree data structure
(in this case, using the AVL balancing algorithm)
by overriding a single method of the original binary tree prototype:
@Definitions[
(define ($avl-tree-rebalance self super)
(λ (msg)
(define (left t) (car t))
(define (kv t) (caadr t))
(define (height t) (if (null? t) 0 (cdadr t)))
(define (right t) (caddr t))
(define (balance t) (if (null? t) 0 (- (height (right t)) (height (left t)))))
(define (mk l kv r)
(let ((lh (height l)) (rh (height r)))
(or (member (- rh lh) '(-1 0 1)) (error "tree unbalanced!"))
(list l (cons kv (+ 1 (max lh rh))) r)))
(define (node l ckv r)
(case (- (height r) (height l))
((-1 0 1) (mk l ckv r))
((-2) (case (balance l)
((-1 0) (mk (left l) (kv l) (mk (right l) ckv r))) ;; LL rebalance
((1) (mk (mk (left l) (kv l) (left (right l))) ;; LR rebalance
(kv (right l)) (mk (right (right l)) ckv r)))))
((2) (case (balance r)
((-1) (mk (mk l ckv (left (left r))) ;; RL rebalance
(kv (left r)) (mk (right (left r)) (kv r) (right r))))
((0 1) (mk (mk l ckv (left r)) (kv r) (right r))))))) ;; RR rebalance
(case msg ((node) node) (else (super msg)))))
(define Dict
(instance $avl-tree-rebalance $binary-tree-map ($slot 'Key symbol-order)))]
@(noindent)
Our dictionary is now well-balanced, height 3, and the tests still pass:
@Checks[
(define my-avl-dict
(foldl (λ (kv t) ((Dict 'acons) (car kv) (cdr kv) t))
(Dict 'empty)
'((a . "I") (b . "II") (c . "III") (d . "IV") (e . "V"))))
(eval:check my-avl-dict
'((() ((a . "I") . 1) ()) ((b . "II") . 3)
((() ((c . "III") . 1) ()) ((d . "IV") . 2) (() ((e . "V") . 1) ()))))
(eval:check (map (λ (k) ((Dict 'ref) my-avl-dict k (λ () #f))) '(a b c d e z))
'("I" "II" "III" "IV" "V" #f))
]
@section[#:tag "beyond_objects"]{Beyond Objects and back}
Prototypes are not just for records as functions from symbol to value:
they can be used to incrementally specify any kind of functions!
@subsection{Prototypes for Numeric Functions}
Let's see how prototypes can be used to build functions from real numbers to real numbers.
The following prototype is a mixin for an even function,
that delegates to other prototypes the images of positive values
and returns the image of the opposite for negative values:
@Examples[
(define ($even self super)
(λ (x) (if (< x 0) (self (- x)) (super x))))
]
@(noindent)
The following prototype is a mixin for taking the cube of the parent value:
@Examples[
(define ($cube self super)
(λ (x) (let ((y (super x))) (* y y y))))
]
@(noindent)
We can instantiate a function out of those of prototypes, and test it:
@Checks[
(define absx3 (instance $even $cube ($constant-prototype (λ (x) x))))
(eval:check (map absx3 '(3 -2 0 -1)) '(27 8 0 1))
]
@subsubsection{Number Thunks}
Now, the simplest numeric functions are thunks: nullary functions that yield a number.
@Checks[
(define (p1+ __ b) (λ () (+ 1 (b))))
(define (p2* __ b) (λ () (* 2 (b))))
(eval:check (list ((fix (mix p1+ p2*) (λ () 30)))
((fix (mix p2* p1+) (λ () 30))))
'(61 62))
]
@subsection[#:tag "computations_not_values"]{Prototypes are for Computations not Values}
Prototypes for number thunks can be generalized to prototypes for any kind of thunks:
you may incrementally specify instances of arbitrary types using prototypes,
by first wrapping values of that type into a thunk.
An alternative to thunks would be to use Scheme's @r[delay] special form,
or whatever form of @emph{lazy evaluation} is available in the language at hand.
To reprise the Call-By-Push-Value paradigm@~cite{conf/tlca/Levy99},
prototypes incrementally specify @emph{computations} rather than @emph{values}.
In applicative languages we can reify these computations as values
either as functions (as in @(section1)), or as delayed values as follows:
@Definitions[
(code:comment "(deftype (δProto Self Super) (Fun (Delayed Self) (Delayed Super) -> Self))")
(code:comment "δfix : (Fun (δProto Self Super) (Delayed Super) -> (Delayed Self))")
(define (δfix p b) (define f (delay (p f b))) f)
(code:comment "δmix : (Fun (δProto Self Mid) (δProto Mid Super) -> (δProto Self Super))")
(define (δmix c p) (λ (f b) (c f (delay (p f b)))))
(code:comment "δ$id : (δProto X X)")
(define (δ$id f b) (λ (__self super) (force super)))
]
@(noindent)
Now, most interesting prototypes will only lead to error or divergence if you try
to instantiate them by themselves---they are “mixins”,
just like @r[$compare<-order] or @r[$avl-tree-rebalance] above,
designed to be combined with other prototypes.
Indeed, the whole entire point of incrementally specifying computations is
that you want to manipulate fragments that are not complete specifications.
To use these fragments in a total language where all computations terminates
will require attaching to each prototype some side-condition as to
which aspects of a computation it provides that other prototypes may rely on,
and which aspects of a computation it requires that other prototypes must provide.
This side-condition may well be a type in one of the many existing type systems
for objects@~cite{Abadi97atheory tapl}.
@subsection{Prototypes in Lazy Pure Functional Dynamic Languages}
@subsubsection{Prototypes in Nix}
Interestingly, prototypes for lazy mappings from keys to values
is exactly how objects are encoded in
the pure lazy functional dynamically typed language Nix@~cite{dolstra2008nixos}.
Since 2015, the Nix standard library contains variants of the @r[fix] et @r[mix] functions,
wherein “attribute sets” or @emph{attrsets}, mapping from strings to values,
are defined as fixed-points of functions obtained from a “base” function
and a list of composable “extensions”.
These “extensions” are functions from attrsets @r[self] and @r[super] to
an attrset that is meant to extend and override @r[super]
as incremental contribution to the computation of the @r[self] fixed-point.
This is a reasonable restriction on how prototypes may affect super values,
that matches usual object-oriented practice, and suggests where
an extension point could be in a general meta-object protocol@~cite{amop}.
The “base” is a function from attrset @r[self] to attrset;
this makes the API slightly less uniform than ours, introducing an extra type,
but is otherwise isomorphic to our approach wherein
the last prototype in the list to be instantiated ignores
the @r[bottom] passed as its @r[super] argument.
Apart from the minor details above,
this is the very same design as the one we are presenting,
even though Nix's extension system was not even consciously meant
as an object system when it was designed.
This is not a coincidence, since the present essay emerged from
an effort to formalize the essence of objects as understood from Nix and Jsonnet.
We also simplify their approach (e.g. with respect to the base case of open-recursion)
and generalize it to arbitrary instance types (i.e. not just attrsets);
and in the following @(section4)
we further improve on it.
@subsubsection{Prototypes in Jsonnet}
Now, Jsonnet@~cite{jsonnet}, another lazy pure functional dynamic language,
sports an object system that is semantically equivalent to that of Nix,
published one year before Nix's extension system was invented.
Jsonnet itself was invented as a simplified semantic reconstruction of the essential ideas
behind GCL, the decade-older Google Configuration Language used everywhere inside Google.
GCL also wasn't explicitly designed as OOP, yet ended up having discovered
an excellent point in the design space, despite the reputed overall clunkiness of the language.
A notable difference between Nix and Jsonnet is that
Jsonnet supports objects as builtins with a nice syntax, when
in Nix they are implemented as a handful library functions in under 20 lines of code.
Also, Jsonnet uses the empty object as the implicit base super object for inheritance;
this is equivalent to the bottom function in the representation from our
@seclink["Prototypes_bottom_up"]{section 1}—but not in theirs!
Unlike the representation from our @(section1),
Jsonnet's representation (as Nix's) also allows for introspection of what slots are bound.
Finally, Jsonnet has builtin support for fields being either visible or hidden when printing.
The fact that, across several decades, closely matching designs were independently reinvented many times
without the intention to do so, is a good sign that this design is a “fixed point in design space”,
akin to the notion of “fixed point in time” in Dr Who@~cite{DrWhoFPIT}:
however you may try to reach a different conclusion, you still end-up with that fixed-point eventually.
@subsubsection{A Pure Lazy Fit}
Still, there are ways in which Jsonnet and Nix improved upon
the prototype object systems as initially designed in ThingLab@~cite{Borning77 Borning86}
or T@~cite{Rees82t:a adams88oopscheme},
or later made popular by SELF@~cite{chambers1989efficient}
or JavaScript@~cite{ecmascript DBLP:journals/corr/GuhaSK15}
As in these previous inventions, Jsonnet and Nix use first-class functions to construct objects.
They also rely on dynamic types to avoid the need for dependent types and internal type theories
required to statically type first-class prototypes in the most general case.
But unlike previous incarnations, they also rely on lazy evaluation as a way to express
first-class computations that can be manipulated whether or not they terminate,
without a clumsy explicit wrapping in a thunk or a lazy constructor.
They also do without having to resort to side-effects;
the pure functional semantics are thus not only especially clean and simple,
fitting in a few hundreds of characters,
but reveal an underlying mathematical structure of universal interest.
The success of Jsonnet and Nix at modularly managing complex configurations
through object extensions suggest that pure lazy functional programming is useful
way beyond the popular package offered by Haskell, of this programming model
with ML-like static typesystem that sports parametric polymorphism but no dependent types.
That typesystem rejects most interesting uses of prototypes,
thereby neglecting an important application domain for pure lazy functional programming.
Thus, though some claim the ML typesystem is at a "sweet spot",
wherein it provides good expressiveness while still being computable
and providing understandable error messages@~cite{minsky08},
maybe the spot is too sweet to be healthy, and
is lacking in proteins, or at least in prototypes.
Now, there is another special way by which Jsonnet and Nix improve upon T's objects,
that provides insight into OOP:
they unify instances and prototypes as objects. See @(section4).
@subsection[#:tag "without_subtyping"]{Prototypes are Useful Even Without Subtyping}
The above prototypes for numeric functions also illustrate that
even if a language's only subtyping relationship is the identity
whereby each type is the one and only subtype or itself
(or something slightly richer with syntactic variable substitution in parametric polymorphism),
then you can use prototypes to incrementally specify computations,
with the following monomorphic types:
@racketblock[
(code:comment "(deftype (MProto A) (Fun A A -> A))")
(code:comment "fix : (Fun (MProto A) A -> A)")
(code:comment "mix : (Fun (MProto A) (MProto A) -> (MProto A))")
]
@(noindent)
As per the previous discussion, if the language doesn't use lazy evaluation,
@r[A]'s may be constrained to be functions, or to they may have to be wrapped
inside a @r[Lazy] or @r[delay] special form.
Lack of subtyping greatly reduces the expressive power of prototypes;
yet, as we'll see in @(section5),
the most popular use of prototypes in Object-Oriented Programming is completely monomorphic:
prototypes for type descriptors, a.k.a. classes;
only this common use of prototypes happens at the meta-level,
classes being second-class objects (pun not intended by the clueless practitioners).
@section[#:tag "Better_objects"]{Better objects, still pure}
In @(section1),
we implemented a rudimentary object system on top of prototypes.
Compared to mainstream object systems, it not only was much simpler to define,
but also enabled mixins, making it more powerful than common single-inheritance systems.
Still, many bells and whistles found in other object systems are missing.
Now that we have a nice and simple semantic framework for “objects”,
can we also reimplement the more advanced features of object systems of yore?
@subsection[#:tag "field_introspection"]{Field Introspection}
@subsubsection{Both feature and bug in OOP snake-oil literature}
When representing objects as functions from symbol to value,
it isn't generally possible to access the list of symbols that constitute valid keys.
Most “object” systems do not allow for this kind of introspection at runtime,
and a 1990s marketing department would probably tout that
as some kind of ill-defined “encapsulation” or “information hiding” feature
sold as part of the “object-oriented” package deal of the day.
Yet, introspection can be useful to e.g. automatically
input and output human-readable or network-exchangeable representations of an instance.
Thus, the same 1990s marketing departments have long sold “reflection” as
an extra feature counter-acting their previous “feature”.
@subsubsection{Same concrete representation, abstract constructor}
Field introspection can be achieved while keeping instances as functions from keys to values,
by adding a “special” key, e.g. @r[keys],
that will be bound to the list of valid keys.
To save themselves the error-prone burden of maintaining the list of keys by hand,
programmers would then use a variant of @r[$slot-gen] that maintains this list, as in:
@Definitions[
(define ($slot-gen/keys k fun)
(λ (self super)
(λ (msg)
(cond ((equal? msg k) (fun self (λ () (super msg))))
((equal? msg 'keys) (cons k (super 'keys)))
(else (super msg))))))
]
@subsubsection{Different instance representation}
Field introspection can also be achieved by using a different representation for instances.
Just like in Nix, instances could be mappings from symbols to value,
internally implemented as hash-tables, or, preferrably for pure usage, balanced trees.
Purposefully, we included an implementation of such balanced trees in
@seclink["pure_objective_fun"]{section 2}.
Thus, we could represent objects as thunks that return @r[symbol-avl-map], as follows:
@Definitions[
(define ($slot-gen/dict k fun)
(λ (self super)
(define (inherit) ((Dict 'ref) (super) k bottom))
(λ () ((Dict 'acons) k (fun self inherit) (super)))))
]
@(noindent)
However, while the above definition yields the correct result,
it potentially recomputes the entire dictionary @r[(super)] twice at every symbol lookup,
with exponential explosion as the number of super prototypes increases.
We could carefully implement sharing by precomputing @r[(define super-dict (super))].
But the instance is itself a thunk that would recomputing the entire dictionary at every call,
and is better evaluated only once.
Now, if we adopt lazy evaluation as in Nix, we can automatically share results
across both copies of computations and multiple consumers of a same copy of computation,
without having to manually reimplement this caching every time.
Thus, using @r[δfix] and @r[δmix] instead of @r[fix] and @r[mix], we can have:
@Definitions[
(define (δ$slot-gen/dict k fun)
(λ (self super)
(delay (let ((inherit ((Dict 'ref) (force super) k (λ () (delay (bottom))))))
((Dict 'acons) k (delay (fun self inherit)) (force super))))))
]
@subsubsection[#:tag "different_prototype"]{Same instance representation, different prototype representation}
Finally, field introspection can be achieved while preserving the same instance representation
by instead changing the representation for @emph{prototypes}.
Though the concise functional representation we offered gives an enlightening
expression of the essence of object systems, we can maintain equivalent semantics
with a more efficient implementation, for instance a pair @r[pk] of
the same prototype as before and a list of keys. The @r[mix] and @r[fix] functions become:
@Definitions[
(define (mix/pk child parent)
(cons (mix (car child) (car parent))
(append (cdr child) (cdr parent))))
(define (fix/pk proto base)
(fix (mix ($slot 'keys (cdr proto)) (car proto)) base))
]
@(noindent)
One could also put @r[$slot] invocation after the @r[(car proto)] rather than before it,
to allow prototypes to intercept field introspection.
@subsubsection{Abstracting over representations}
We can generalize the above solutions by realizing that
both instances and prototypes may be
may be wrapped, unwrapped or otherwise represented in a variety of ways,
and augmented with various other information,
when designing and implementing an object system for usability and performance.
Yet, the representation given in @(section1) is a good guide to the semantics of OOP,
and the conceptual distinction between instance and prototype is instrumental to keeping this semantics
simple and understandable.
@subsection{Unifying Instances and Prototypes}
@subsubsection{OOP without Objects}
While the distinction between instance and prototype is essential,
neither instances nor prototypes are arguably “objects”.
We are thus in a strange situation wherein we have been doing
“Object-Oriented Programming” without any actual object!
This is a practical problem, not a mere curiosity, as this distinction
makes it painful to write extensible specifications for nested or recursive data structures:
you need to decide for each field of each data structure at each stage of computation
whether it contains an extensible prototype or an instance to call the proper API.
This incurs both a psychological cost to programmers and a runtime cost to evaluation,
that without careful design may in the worst case cause an exponential explosion
of the code the programmers must write and/or of the recomputations of sub-expressions
that the evaluator will do at runtime.
@subsubsection{Conflation without confusion}
Jsonnet and Nix both confront and elegantly solve the above issue,
and in the very same way, with one small trick:
they bundle and conflate together instance and prototype in a same single entity, the “object”.
Indeed, in a pure context, and given the base super value for the given prototype representation,
there is one and only one instance associated to a prototype up to any testable equality,
and so we may usefully cache the computation of this instance together with the prototype.
The same “object” entity can thus be seen as an instance and queried for method values,
or seen as a prototype and composed with other objects (also seen as prototypes) into a new object.
Thanks to the conflation of instance and prototype as two aspects of a same object,
configurations can be written in either language
that can refer to other parts of the configuration
without having to track and distinguish which parts are instantiated at which point,
and it all just works.
Still, distinguishing the two concepts of instance and prototype is important
to dispel the confusion that can often reign in even the most experienced OO practitioner
regarding the fine behavior of objects when trying to assemble or debug programs.
In Jsonnet, this conflation is done implicitly as part of the builtin object system implementation.
In Nix, interestingly, there are several unassuming variants of the same object system,
that each store the prototype information in one or several special fields of the @r[attrset]
that is otherwise used for instance information.
Thus, in the simplest Nix object system, one could write:
@nix|{
fix' (self: { x = 1; y = 2 + self.x; })
}|
and it would evaluate to an attrset equivalent to:
@nix|{
{ x = 1; y = 3; __unfix__ = self: { x = 1; y = 2 + self.x; }; }
}|
Nix contains many variants of the same object system, that use one or several of
@r[extend], @r[override], @r[overrideDerivation], @r[meta], etc., instead of @tt{__unfix__}
to store composable prototype information.
@subsubsection{Practical Conflation for Fun and Profit}
For the sake of this article, we'll represent an object as a pair of an instance and a prototype:
@Definitions[
(define (make-object instance prototype) (cons instance prototype))
(define (object-instance object) (car object))
(define (object-prototype object) (cdr object))
]
@(noindent)
In a more robust implementation, we would use an extension to the language Scheme
to define a special structure type for objects as pairs of instance and prototype,
disjoint from the regular pair type.
Thus, we can distinguish objects from regular lists, and
hook into the printer to offer a nice way to print instance information
that users are usually interested in while skipping prototype information
that they usually aren't.
To reproduce the semantics of Jsonnet@~cite{jsonnet},
instances will be a delayed @r[Dict] (as per @(section2)),
mapping symbols as slot names to delayed values as slot computations;
meanwhile the prototype will be a prototype function of type @r[(δProto Object Object)]
(as in @seclink["computations_not_values"]{section 4.1.3}),
that preserves the prototype while acting on the instance.
Thus the basic function @r[slot-ref] to access a slot, and
the basic prototypes to define one, analogous to the above
@r[$slot-gen], @r[$slot], @r[$slot-modify], @r[$slot-compute] are as follow:
@Definitions[
(define (slot-ref object slot)
(force ((Dict 'ref) (force (object-instance object)) slot bottom)))
(define ($slot/gen k fun)
(λ (self super)
(make-object ((Dict 'acons) k (fun self (delay (slot-ref super k)))
(object-instance (force super)))
(object-prototype (force super)))))
(define ($slot/value k v) ($slot/gen k (λ (__self __inherit) (delay v))))
(define ($slot/modify k modify)
($slot/gen k (λ (__ inherit) (delay (modify (force inherit))))))
(define ($slot/compute k fun) ($slot/gen k (λ (self __) (delay (fun self)))))
]
@(noindent)
And for the common case of just overriding some slots with constant values, we could use:
@Definitions[
(define ($slot/values . kvs)
(if (null? kvs) identity-prototype
(compose-prototypes ($slot/value (car kvs) (cadr kvs))
(apply $slot/values (cddr kvs)))))
]
@subsection[#:tag "multiple_inheritance"]{Multiple Inheritance}
@; TODO: citations required on modularity, inheritance, multiple inheritance
@subsubsection{The inheritance modularity issue}
To write incremental OO programs, developers need to be able to express dependencies
between objects, such that an object @r[Z]
depends on super objects @r[K1], @r[K2], @r[K3] being present after it
in the list of prototypes to be instantiated.
We'll also say that @r[Z] @emph{inherits from} from these super objects,
or @emph{extends} them, or that they are its direct super objects.
But what if @r[K1], @r[K2], @r[K3] themselves
inherit from super objects @r[A], @r[B], @r[C], @r[D], @r[E],
e.g. with @r[K1] inheriting from direct supers @r[A B C],
@r[K2] inheriting from direct supers @r[D B E], and
@r[K3] inheriting from direct supers @r[D A], and what more
each of @r[A], @r[B], @r[C], @r[D], @r[E] inheriting from a base super object @r[O]?
(See @(AppendixA) for details on this example.)
With the basic object model offered by Nix, Jsonnet, or our @(section1),
these dependencies couldn't be represented in the prototype itself.
If the programmer tried to “always pre-mix” its dependencies into a prototype,
then @r[K1] would be a pre-mix @r[K1 A B C O],
@r[K2] would be a pre-mix @r[K2 D B E O],
@r[K3] would be a pre-mix @r[K3 D A O],
and when trying to specify @r[Z], the pre-mix
@r[Z K1 A B C O K2 D B E O K3 D A O] would be incorrect,
with unwanted repetitions of @r[A], @r[B], @r[D], @r[O]
redoing their effects too many times and possibly undoing overrides made by @r[K2] and @r[K3].
Instead, the programmer would have to somehow remember and track those dependencies,
such that when he instantiates @r[Z], he won't write just @r[Z],
but @r[Z] followed a topologically sorted @emph{precedence list}
where each of the transitive dependencies appears once and only once,
e.g. @r[Z K1 K2 K3 D A B C E O].
Not only does this activity entail a lot of tedious and error-prone bookkeeping,
it is not modular.
If these various objects are maintained by different people as part of separate libraries,
each object's author must keep track not just of their direct dependencies,
but all their transitive indirect dependencies, with a proper ordering.
Then they must not only propagate those changes to their own objects,
but notify the authors of objects that depend on theirs.
To get a change fully propagated might required hundreds of modifications
being sent and accepted by tens of different maintainers, some of whom might not be responsive.
Even when the sets of dependencies are properly propagated, inconsistencies between
the orders chosen by different maintainers at different times may cause subtle miscalculations
that are hard to detect or debug.
In other words, while possible, manual maintenance of precedence lists is a modularity nightmare.
@subsubsection{Multiple inheritance to the rescue}
With multiple inheritance, programmers only need declare the dependencies
between objects and their direct super objects:
the object system will automatically compute
a suitable precedence list in which order to compose the object prototypes.
Thus, defining objects with dependencies becomes modular.
The algorithm that computes this precedence list is called a linearization:
It considers the dependencies as defining a directed acyclic graph (DAG),
or equivalently, a partial order, and
it completes this partial order into a total (or linear) order,
that is a superset of the ordering relations in the partial order.
The algorithm can also detect any ordering inconsistency or circular dependency
whereby the dependencies as declared fail to constitute a DAG;
in such a situation, no precedence list can satisfy all the ordering constraints,
and instead an error is raised.
Recent modern object systems seem to have settled on the C3 linearization algorithm,
as described in @(AppendixB).
@(define/local-expand c3-definitions @Definitions[
(code:comment "The (require srfi/1) below imports SRFI 1 list functions into Racket")
(code:comment "YMMV if you use another Scheme implementation")
(require srfi/1)
(code:comment "not-null? : Any -> Bool")
(define (not-null? l) (not (null? l)))
(code:comment "remove-nulls : (List (List X)) -> (List (NonEmptyList X))")
(define (remove-nulls l) (filter not-null? l))
(code:comment "remove-next : X (List (NonEmptyList X)) -> (List (NonEmptyList X))")
(define (remove-next next tails)
(remove-nulls (map (λ (l) (if (equal? (car l) next) (cdr l) l)) tails)))
(code:comment "c3-compute-precedence-list : A (A -> (List A)) (A -> (NonEmptyList A))")
(code:comment " -> (NonEmptyList A)")
(define (c3-compute-precedence-list x get-supers get-precedence-list)
(define supers (get-supers x)) ;; : (List A)
(define super-precedence-lists (map get-precedence-list supers)) ;; : (List (NonEmptyList A))
(define (c3-select-next tails) ;; : (NonEmptyList (NonEmptyList A)) -> A
(define (candidate? c) (every (λ (tail) (not (member c (cdr tail)))) tails)) ;; : A -> Bool
(let loop ((ts tails))
(when (null? ts) (error "Inconsistent precedence graph"))
(define c (caar ts))
(if (candidate? c) c (loop (cdr ts)))))
(let loop ((rhead (list x)) ;; : (NonEmptyList X)
(tails (remove-nulls (append super-precedence-lists (list supers))))) ;; : (List (NonEmptyList X))
(cond ((null? tails) (reverse rhead))
((null? (cdr tails)) (append-reverse rhead (car tails)))
(else (let ((next (c3-select-next tails)))
(loop (cons next rhead) (remove-next next tails)))))))
])
@(define/local-expand c3-extra-definitions @Definitions[
(define (alist->Dict alist)
(foldl (λ (kv a) ((Dict 'acons) (car kv) (cdr kv) a)) (Dict 'empty) alist))
(define (Dict->alist dict)
((Dict 'afoldr) (λ (k v a) (cons (cons k v) a)) '() dict))
(define (Dict-merge override-dict base-dict)
((Dict 'afoldr) (Dict 'acons) base-dict override-dict))
])
@subsubsection{A prototype is more than a function}
But where is the inheritance information to be stored?
A prototype must contain more than the function being composed to implement open-recursion.
@italic{A minima} it must also contain the list of direct super objects
that the current object depends on.
We saw in @seclink["different_prototype"]{4.1.4} that and how we can and sometimes must indeed
include additional information in a prototype.
Such additional information will include a precomputed cache for the precedence list below,
but could also conceivably include
type declarations, method combinations, and support for any imaginable future feature.
We could start by making the prototype a pair of prototype function and list of supers;
if more data elements are later needed, we could use a vector with every element at a fixed location.
But since we may be adding further features to the object system,
we will instead make the prototype itself an object,
with a special base case to break the infinite recursion.
Thus, the same functions as used to query the slot values of an object's instance
can be used to query the data elements of the prototype (modulo this special case).
But also, the functions used to construct an object can be used to construct a prototype,
which lays the foundation for a meta-object protocol@~cite{amop},
wherein object implementation can be extended from the inside.
When it is an object, a prototype will have
slot @r[function] bound to a prototype function as previously, and
slot @r[supers] bound to a list of super objects to inherit from,
as well as a slot @r[precedence-list] bound to a precomputed cache of the precedence list.
When it is the special base case, for which we below chose the empty list,
slots @r[supers] and @r[precedence-list] are bound to empty lists, and slot @r[function]
is bound to a function that overrides its super with constant fields from the instance.
@Definitions[
(define (Dict->Object dict) (make-object dict '()))
(define (object-prototype-function object)
(define prototype (object-prototype object))
(if (null? prototype)
(λ (self super)
(make-object (Dict-merge (object-instance object) (object-instance super))
(object-prototype super)))
(slot-ref prototype 'function)))
(define (object-supers object)
(define prototype (object-prototype object))
(if (null? prototype) '() (slot-ref prototype 'supers)))
(define (object-precedence-list object)
(define prototype (object-prototype object))
(if (null? prototype) '() (slot-ref prototype 'precedence-list)))
(define (compute-precedence-list object)
(c3-compute-precedence-list object object-supers object-precedence-list))
(define base-dict (Dict 'empty))
(define (instantiate supers function)
(define proto
(Dict->Object ((Dict 'acons) 'function (delay function)
((Dict 'acons) 'supers (delay supers)
((Dict 'acons) 'precedence-list (delay precedence-list)
(Dict 'empty))))))
(define base (make-object base-dict proto))
(define precedence-list (compute-precedence-list base))
(define prototype-functions (map object-prototype-function precedence-list))
(instantiate-prototype-list prototype-functions (delay base)))
(define (object function . supers) (instantiate supers function))
]
@subsection{Multiple Dispatch}
@subsubsection{Generic Functions}
Some object systems, starting with CommonLoops@~cite{bobrow86commonloops}
then CLOS@~cite{bobrow88clos},
feature the ability to define “generic functions” whose behavior
can be specialized on each of multiple arguments.
For instance, a generic multiplication operation
will invoke different methods when called with two integers, two complex numbers,
an integer and a floating-point number, a complex number and a vector of complex numbers, etc.
Selection of behavior based on multiple arguments is called “multiple dispatch”,
as contrasted with “single dispatch” which is selection of behavior based on a single argument.
Methods that may specialize on multiple arguments are sometimes called “multi-methods”
to distinguish them from single dispatch methods.
It is possible to macro-expand multiple dispatch into single dispatch,
@; TODO @~cite{} double dispatch?
by chaining dispatch of the first argument into a collection of functions
that each dispatch on the second argument, and so on.
But the process is tedious and non-local, and better left to be
handled by an automated implementation of multiple dispatch.
Since this feature is rather involved yet was already implemented in
previous prototype systems@~cite{chambers92objectoriented Salzman05prototypeswith},
we'll restrict our discussion to additional challenges presented in
a pure or mostly pure functional setting.
@subsubsection{Extending previous objects}
Generic functions and their multi-methods are associated to multiple objects,
thus they cannot be defined as part of the definition of a single object;
these methods, and the generic function that they are part of,
are necessarily defined outside of (some) objects.
Therefore, language designers and implementers must resolve a first issue
before they may implement generic functions:
adding “multi-methods” to existing functions or objects
after they have been initially defined.
Indeed, generic functions when introduced, involve adding new methods
that specialize the behavior of the new function on existing objects;
and when new objects are introduced, they often involve adding new methods
to specialized the behavior of the existing functions on the new objects.
Moreover, when generic functions and objects are introduced in independent code libraries
(e.g. some graphical user-interface library and some data structure library),
the specialized behavior might be introduced in yet another library
(e.g. that defines a graphical interface for this data structure).
Worse, there might be conflicts between several such libraries.
Even without conflicting definitions,
a definition might conflict in time with the absence of the same definition,
if there is any chance that some code depending on its presence is compiled or run
both before and after the definition was evaluated.
That is why, for instance, the Glasgow Haskell Compiler @;TODO @~cite{GHC}
issues warnings if you declare an “orphan instance”:
a typeclass instance (rough analogue to methods of generic functions)
in a file other than one where either the typeclass is defined (analogous to generic functions)
or the type is defined (analogous to objects).
The language offers weak guarantees in such situations.
One way to avoid “orphan” situations might be to declare
either new typeclasses (new generic functions) or newtype aliases (new objects)
that will shadow or replace the previous ones in the rest of the program;
but this is a non-local and non-composable transformation
that potentially involves wrapping over all the transitive dependencies of an application,
and defeat the purpose of incremental program specification.
Another approach suitable in a more dynamic language would be to maintain at runtime
a “negative” cache of methods previously assumed to be absent,
and issue a warning or error when a new method is introduced that conflicts with such an assumption.
Then again, a solution might be to eschew purity and embrace side-effects:
the original T just didn't cache method invocation results, and
re-ran fixed-point computations, with their possible side-effects,
at every method invocation (objects can specify their own explicit cache when desired).
The behavior of new generic functions on previously existing objects would be optionally specified
in a default method, to be called in lieu of raising a “method not found” error.
The T object paper@~cite{adams88oopscheme} mentions an alternate approach
that was rejected in its implementation, though it is essentially equivalent in behavior,
wherein default methods are added to a “default” object used as the base super value
instead of an empty object when (re)computing instance fixed-points.
@subsection{Method Combinations}
@subsubsection{Combining Method Fragments}
With method combination, as pioneered in Flavors@~cite{Cannon82},
then standardized by CLOS@~cite{bobrow88clos} via @~cite{bobrow86commonloops}
and made slightly popular outside the Lisp tradition by Aspect-Oriented Programming@~cite{aop97},
object methods to be specified in multiple fragments
that can be subsequently combined into the “effective method” that will be called.
Thus, in CLOS, “primary” methods are composed the usual way,
but “before” methods are executed beforehand for side-effects from most-specific to least-specific,
and “after” methods are executed afterwards for side-effects from least-specific to most-specific,
and “around” methods wrap all the above, with from most-specific wrapper outermost
to least-specific inner-most.
Furthermore, programmers may override the above standard “method combinations”
with alternative method combinations, either builtin or user-specified.
The builtin method combinations, @r[progn + list nconc and max or append min] in CLOS,
behave as if the calls to the (suitably sorted) methods had been wrapped in
one of the corresponding Lisp special form or function.
User-specified method combinations allow for arbitrary behavior based on
an arbitrary set of sorted, labelled (multi)methods
(though, in CLOS, with a fixed finite set of labels).
@subsubsection{Generalized Prototype Combination}
As determined above, generic functions are made of many labelled fragments (multi-methods);
fragments of a same label are sorted according to some partial or total order
(and, in the case of multiple dispatch, filtered for applicability);
they are then composed via some representation-dependent mixing function;
a fixed-point is extracted from the composed fragments, with some base value;
finally a representation-dependent wrapper is applied to the fixed-point
to instantiate the effective method...
this is very much like an object!
Actually, since we have accepted in @(section3) that prototypes and “object orientation”
are not just to compute records that map field names to values, but for arbitrary computations,
then we realize there is a more general protocol for computing with prototypes.
A full treatment of generalized prototypes is a topic for future work.
Still, here are a few hints as to what they would be.
A generalized prototype would involve:
(a) a @emph{lens}@~cite{Foster2007CombinatorsFB Pickering_2017}
@; TODO: re-cite Kmett, Laarhoven from the Pickering_2017 article? Cite 2006 Pierce on Lens rather than 2007, see later Gibbons article
that can extract or update the method from the current partial computation
of the raw prototype fixed-point;
(b) an object-setter that “cooks” the raw prototype fixed-point into a referenceable
@r[self] object;
(c) a method-wrapper that turns the user-provided “method” into a composable prototype.
The lens, passed below as two function arguments @r[getter] and @r[setter],
generalizes the fetching or storing of a method as the entry in a @r[Dict],
or as the response to a message;
it expresses how a prototype overrides some specific fragment of some specific method
in some specific sub-sub-object, encoded in some specific way.
The object-setter may apply a method combination to extract a function from fragments;
it may transcode an object from a representation suitable for object production
to a representation suitable for object consumption;
it may be the setter from a lens making the prototype-based computation
that of a narrow component in a wider computation,
at which point the corresponding getter allows a method to retrieve the computation at hand
from the overall computation;
it may be a composition of some of the above and more.
The method-wrapper may to automate some of the builtin method combinations;
for instance, in a @r[+] combination, it would, given an number,
return the prototype that increments the super result by that number;
it may also handle the merging of a @r[Dict] override returned by the method
into the super @r[Dict] provided by its super method; etc.
Here then is a generalization that subsumes the above @r[$slot-gen] or @r[$slot/gen]:
@Definitions[
(define ($lens-gen setter getter wrapper method)
(λ (cooked-self raw-super)
(setter ((wrapper method) cooked-self (delay (getter raw-super)))
raw-super)))
]
@;{ @para{
The types might look a bit as follows:
@Definitions[
(code:comment "(deftype (ObjectWrapper Raw Cooked)")
(code:comment " (Forall (Object) (Fun (Raw Object) -> (Cooked Object))))")
(code:comment "(deftype (CookedProto Cooked)")
(code:comment " (Forall (ObjectSuper ObjectSelf MethodSuper MethodSelf) ; s t a b")
(code:comment " (Fun (Cooked ObjectSelf) (Delayed MethodSuper) -> MethodSelf)))")
(code:comment "(deftype (MethodSetter Raw)")
(code:comment " (Forall (ObjectSuper ObjectSelf MethodSelf) ; s t b")
(code:comment " (Fun MethodSelf (Raw ObjectSuper) -> (Raw ObjectSelf))))")
(code:comment "(deftype (MethodGetter Raw)")
(code:comment " (Forall (Object Method) ; s a")
(code:comment " (Fun (Raw Object) -> Method)))")
(code:comment "(deftype (MethodWrapper Cooked RawProto)")
(code:comment " (Fun (RawProto Cooked) -> (CookedProto Cooked)))")
]
}}
@section{Classes}
@subsection{Classes on top of Prototypes}
@subsubsection{Layering Language Features}
So far we have reconstructed prototype-based OOP;
yet class-based OOP comes first both in history and in popularity.
@; TODO cite Simula? Smalltalk? C++? Newspeak?
There have been implementations of classes on top of prototypes in the past,
notably for JavaScript@~cite{EcmaScript:15}. @; TODO: CECIL?
But these implementations relied heavily on side-effects over some object encoding,
to achieve efficiency within some existing language.
Instead we will propose our own reconstruction on how to
@emph{macro-express}@~cite{eppl91} classes on top of our pure functional prototypes.
This reconstruction will shed light on the essence of the relationship between classes and prototypes.
@subsubsection{Prototypes for Type Descriptors}
In our reconstruction, a @emph{class} is “just” a prototype for type descriptors.
Type descriptors, as detailed below, are a runtime data structure
describing what operations are available to recognize and deal with elements of the given type.
Type descriptors therefore don't have to themselves be objects,
and no mention of objects is required to describe type descriptors themselves.
They can be just a type on which to apply the monomorphic prototypes of @(section34).
Still, it is typical in OOP to conflate into a “class” both the instance of a type descriptor
and the prototype for the type descriptor. Our distinction of the two concepts can then help avoid
a lot of the confusion present in classical presentations of OOP.
Every compiler or language processor for a statically typed language (even without OOP)
necessarily has type descriptors, since the language's compile-time is the compiler's runtime.
But in most statically typed languages, there are no dependent types,
and the types themselves (and the classes that are their prototypes)
are not first-class entities@~cite{Strachey67}
that can be arguments and results of runtime computations,
only second-class entities that are fully resolved at compile-time.
Therefore, class-based languages only have second-class classes
whereas only prototype-based languages have first-class classes.
@subsection{Type Descriptors}
@subsubsection{I/O Validation and Beyond}
One common programming problem is validation of data at the inputs and outputs of programs.
Static types solve the easy cases of validation in languages that have them.
Dynamically typed languages can't use this tool so often grow libraries
of “type descriptors” or “data schemas”, etc.
These runtime type descriptors often contain more information
than typically available in a static type, such as:
methods to encode and decode values, to print and parse them,
to display them or interact with them in a graphical interface;
default values for use in user interfaces or simple tests;
pseudo-random value generators and value compressors
for use in automated testing and other search algorithms;
algebraic operations whereby this type implements an interface,
satisfies a constraint, or instantiates a typeclass; etc.
Types used at compile-time would have additional data to deal with
how to infer them, how they lead to further inferences,
how to compute unions or intersections with other types,
how to generate code for operations that deals with them,
etc.
Therefore, even statically typed languages often involve runtime type descriptors.
Better languages will provide “reflection” facilities or “macros”
to automatically generate those descriptors without humans having to
try keeping two different representations in synch as programs evolve.
@; TODO cite reflection mechanism for Java? C#? Scala?
@subsubsection{Simple Types}
In a dynamic language, all types would have at least a recognizer slot @r[is?],
bound to a function to recognize whether a runtime value is element of the type.
In the most basic types, @r[Top] (that tells nothing about everything) and
@r[Bottom] (that tells everything about nothing),
this might be the only slot (though an additional @r[name] slot would help), with trivial values:
@;@Definitions[
@verbatim{
(define Top (object ($slot/value 'is? (λ (_) #t))))
(define Bottom (object ($slot/value 'is? (λ (_) #f))))
}@;]
Other simple types might include the type of representable values;
here they will sport a single additional method @r[->sexp] to turn a value into
a type-specific source expression, but a real library would have many more I/O operations.
Numbers would also have various arithmetic operations.
@;@verbatim{(define Representable (object ($slot/value '->sexp (λ (x) (list 'quote x))) Top))
@Definitions[
(define Number (object ($slot/values 'is? number? '->sexp identity
'+ + '- - 'zero 0 'one 1)))
]
@subsubsection{Parameterized Types}
A parameterized type at runtime can be function that return a type descriptor
given its parameter, itself a type descriptor,
or any runtime value (yielding a runtime dependent type).
Thus, monomorphic lists might be:
@Definitions[
(define (list-of? t x) (or (null? x)
(and (pair? x) ((slot-ref t 'is?) (car x)) (list-of? t (cdr x)))))
(define (ListOf t) (object ($slot/value 'is? (λ (x) (list-of? t x)))))
]
@subsubsection{More Elaborate Types}
By using object prototypes, we have, in a few hundreds of lines of code@~cite{GerbilPOO},
defined type descriptors for functions with given input and output types;
for dicts, objects, and objects having specific slots with values of specific types;
for slot and type descriptors, and functions that compute type descriptors
from type descriptors or other values; etc.
@; TODO: add that in appendix? Cite GerbilPOO again?
The type descriptor system can describe itself as well as all pieces of the system,
generating routines for all kinds of automation or user interaction.
Along the way, prototype-based OOP enables a compact and extensible style of programming,
leveraging all the advantages of classes or typeclasses
for defining pure functional types.
@subsubsection{Classes and Typeclasses}
Runtime type descriptors correspond to the “dictionaries”
passed around at runtime in implementations of typeclasses@~cite{ImplementingTypeClasses}
in various FP languages.
They also correspond to the “vtable” describing an “object”'s type at runtime
in implementations of class-based OOP languages.
Indeed, the correspondance can be made formal, with automated transformations
between the two styles@~cite{LIL2012}.
Note however how “object” denotes very different notions in the two styles:
what is called “object” in class-based OOP is the notional pair of
the type descriptor and the type element,
whereas the type descriptor is (an instance of) an “object” in our prototype-based formalism,
handled independently from the values of described types,
that themselves may or may not be objects.
@section[#:tag "Mutability"]{Mutability}
@subsection{Mutability as Pure Linearity}
@subsubsection{From Pure to Mutable and Back}
Note how all the objects and functions defined in previous sections were pure.
They didn't use any side-effect.
No @r[set!]. No @r[call/cc]. Only laziness at times, which still counts as pure.
This contrasts with all OOP literature from the 1960s to the 1980s, and most since.
But what if we are OK with side-effects? How much does that simplify computations?
What insights does the pure case offer on the mutable case, and vice versa?
A simple implementation of mutable objects is to store pure object values into mutable cells.
Conversely, a mutable object can be viewed as a monadic thread of pure object state references,
with an enforced linearity constraint wherein effectful operations return a new state reference
after invalidating the previous one.
Indeed, this isomorphism is not just a curiosity from category theory,
it is a pair of transformations that can be and have been automated
for practical purposes@~cite{LIL2012}.
@subsubsection{Combining Mutable and Functional Wins}
Mutability allows for various optimizations,
wherein objects follow common linearity constraints of consuming some arguments
that are never referenced again after use, at which point their parts
can be transformed or recycled “in place” with local modifications in @${O(1)} machine operations,
rather than global copies in @${O(\log n)} or @${O(n)} machine operations.
@;TODO cite regarding state vs linearity
As a notable simplification, the “super” computation as inherited by a prototype is linear
(or more precisely, affine: the prototype may either consume the super value, or ignore it).
Thus, the entire fixed-point computation can be done in-place by updating slots as they are defined.
This is a win for mutability over purity.
Yet, even mutable (or linear) rather than pure (and persistent),
the functional approach solves an important problem with the traditional imperative approach:
traditionally, programmers must be very careful to initialize object slots in a suitable order,
even though there is no universal solution that possibly works
for all future definitions of inheriting objects.
The traditional approach is thus programmer-intensive in a subtle way,
and leads to many errors from handling of unbound slots.
Depending on the quality of the implementation, the consequences may range from
a error being raised with a helpful message at compile-time or at runtime,
to useless results, wrong results, memory corruption, or catastrophic failures.
@; TODO: cite Tony Hoare regarding the billion-dollar mistake of NULL?
By defining objects functionally or lazily rather than imperatively and eagerly,
programmers can let the implementation gracefully handle mutual references between slots;
an initialization order can be automatically inferred wherein slots are defined before they are used,
with a useful error detected and raised (at runtime) if no such order exists.
@subsubsection{Simplified Prototype Protocol}
A prototype for a mutable object can be implemented
with a single mutable data structure argument @r[self]
instead of two immutable value arguments @r[self] and @r[super]:
the @emph{identity} of that data structure
provides the handle to future complete computation,
as previously embodied in the @r[self] argument;
and the current @emph{storage} of the data structure provides state of the computation so far,
as previously embodied in the @r[super] argument.
A prototype function would then be of type @r[(deftype μProto (Fun Object ->))],
where the @r[Object]'s instance component would typically contain a mutable hash-table
mapping slot names (symbols) to effective methods to compute each slot value.
These effective methods would be either thunks or lazy computations,
and would already close over the identity of the object as well as reuse its previous state.
Overriding a slot would update the effective method in place,
based on the new method, the self (identity of the object) and
the super-inherited entry previously in the hash-table.
Since this protocol is based on side-effects, no need to return @r[self] in the end;
the fix operator variant will also rely on side-effects.
@Definitions[
(define (fix! p b) (def f (hash-copy b)) (p f) f)
(define (mix! p q) (λ (f) (q f) (p f)))
(define ($slot-gen! k fun)
(λ (self) (define inherit (hash-ref self k (delay (bottom))))
(hash-set! self k (fun self inherit))))
]
@subsection{Cache invalidation}
@italic{There are two hard things in computer science:
cache invalidation, naming things, and off-by-one errors} (Phil Karton).
One issue with making objects mutable is that modifications may make
some previously computed results invalid. There are several options then,
none universally satisfactory.
The object system may embrace mutation and just
never implicitly cache the result of any computation,
and let the users explicitly insert any cache desired.
That's the design commonly followed by prototype systems
in effectful languages from T to JavaScript.
But constant recomputation can be extremely expensive;
moreover, many heavy computations may be below the level at which users may intervene—including
computing precedence lists. This probably explains why these languages tend
not to support multiple inheritance, and if so to handle it specially.
At the opposite end of the spectrum, the object system may assume purity-by-default
and cache all the computations it can.
It is then up to users to explicitly create cells to make some things mutable,
or flush some caches when appropriate.
We used this option in @citet{GerbilPOO}.
In between these two opposites, the system can automatically track which mutations happen,
and invalidate those caches that need be, with a tradeoff between how cheap it will be
to use caches versus to mutate objects.
However, to be completely correct, this mutation tracking and cache invalidation
must be pervasive in the entire language, not just the object system implementation,
at which point the language is more in the style of higher-order
reactive or incremental programming. @;TODO: @~cite{}
@;;; Here, we silently cite things that only appear in the appendices,
@;;; so they appear in the bibliography, that is being computed before the appendices.
@~nocite{Barrett96amonotonic wikiC3}
@section[#:tag "Future_Work"]{Future Work}
Using the ideas in this essay, we have implemented in both Nix and Scheme
object systems with unified instances and prototypes and multiple inheritance,
that are being used in an actual application.
In the future, we would like to explore the Generalize Prototypes mentioned in @(section4)
to also implement multiple dispatch and method combination.
Method combination in particular will require attaching meta-data to method prototypes
regarding how they are to be combined in the end,
which means we will have to explore what insights our approach may bring into
Meta-Object Protocols@~cite{amop}.
Another important kind of meta-data we may want to attach to prototypes is type information
and/or logical constraints, that may be enforced either at runtime or at compile-time.
Finally, we may want to study how prototype OOP interacts
with staged computations or cache invalidation
so as to require less-than-dependent types, or enable various optimizations at compile-time
especially with respect to object representation.
@(generate-bibliography)
@section[#:tag "Appendix_A"]{Code Library} @appendix
@emph{We have used Racket to develop this document in such a way that the very same file is used
as source file for a reusable Racket library, a test module, and the printable document.}
The code is available under the Apache License, version 2.0, and
adapting it to run on any Scheme implementation should take minimal effort.
Alternatively, you could use the full-fledged library we built on the same general model
in another Scheme dialect@~cite{GerbilPOO}:
it features many practical optimizations and syntactic abstractions for enhanced usability,
as well as a extensive support for type descriptors.
In this appendix, we include library code of relatively obvious or well-known functions,
that provide no original insight, yet that we rely upon in the implementation of the object system.
This code is included for the sake of completeness and reproducibility.
It is also required to get this file running, though we could have kept the code hidden.
@subsection{C3 Linearization Algorithm}
Below is the C3 Linearization algorithm to topologically sort an inheritance DAG
into a precedence list such that direct supers are all included before indirect supers.
Initially introduced in Dylan@~cite{Barrett96amonotonic},
it has since been adopted by many modern languages, including
Python, Raku, Parrot, Solidity, PGF/TikZ.
The algorithm ensures that the precedence list of an object always contains as ordered sub-lists
(though not necessarily with consecutive elements) the precedence list of
each of the object's super-objects, as well as the list of direct supers.
It also favors direct supers appearing as early as possible in the precedence list.
We import the standard library @r[srfi/1] for the sake of
the standard functions @r[every] and @r[filter].
@c3-definitions
@(noindent)
We will now test this linearization algorithm on the inheritance graph from @(section43).
This test case was originally taken from the Wikipedia article on C3 linearization@~cite{wikiC3},
that usefully includes the following diagram
(that nevertheless fails to represent the ordering constraints imposed on A, B, C, D, E
by their order of appearance in the supers list of K1, K2, K3):
@(noindent) @image[#:scale 0.67]{C3_linearization_example.eps}
@;;; NB: The EPS file was converted using inkscape from the SVG originally at
@;;; https://en.wikipedia.org/wiki/C3_linearization
@(noindent)
The definitions for this test case are as follows:
@Examples[
(define test-inheritance-dag-alist
'((O) (A O) (B O) (C O) (D O) (E O)
(K1 A B C) (K2 D B E) (K3 D A) (Z K1 K2 K3)))
(define (test-get-supers x) (cdr (assoc x test-inheritance-dag-alist)))
(define (test-compute-precedence-list x)
(c3-compute-precedence-list x test-get-supers test-compute-precedence-list))
]
@(noindent)
And the test are thus:
@Checks[
(eval:check (map not-null? '(() (1) (a b c) nil)) '(#f #t #t #t))
(eval:check (remove-nulls '((a b c) () (d e) () (f) () ())) '((a b c) (d e) (f)))
(eval:check (map test-compute-precedence-list '(O A K1 Z))
'((O) (A O) (K1 A B C O) (Z K1 K2 K3 D A B C E O)))
]
@subsection{More Helper Functions}
To help with defining multiple inheritance, we'll also define the following helper functions:
@c3-extra-definitions
@;{ Memoizing?
;; II.1.2- Memoizing values, so field access isn't O(n) every time.
;; Usage: Put memoize-proto as first prototype.
;; NB1: Memoization uses side-effects internally, but does not expose them.
;; NB2: It's still O(n^2) overall rather than O(n); we can do better, later.
(define (memoize f)
(nest (let ((cache (make-hash)))) (λ x) (apply values) (hash-ref! cache x)
(λ ()) (call-with-values (λ () (apply f x))) list))
(define (make-counter)
(nest (let ((count 0))) (λ ())
(let ((result count)) (set! count (+ count 1)) result)))
(define my-counter (make-counter))
(define my-memo-counter (memoize my-counter))
(check! (= (my-counter) 0)
(check! (= (my-memo-counter) 1)
(check! (= (my-counter) 2)
(check! (= (my-memo-counter) 1)
(define (memoize-proto self super) (memoize super))
(define (count-proto self super)
(make-counter))
(define count-fun (instance count-proto))
(check! (= (count-fun) 0)
(check! (= (count-fun) 1)
(check! (= (count-fun) 2)
(define zero-fun (instance memoize-proto count-proto))
(check! (= (zero-fun) 0))
(check! (= (zero-fun) 0))
}
@subsection{Extra tests}
Here are some tests to check that our functions are working.
@Examples[
(define test-instance
(alist->Dict `((a . ,(delay 1)) (b . ,(delay 2)) (c . ,(delay 3)))))
(define test-prototype
(alist->Dict `((function . ,(delay (λ (self super)
(Dict-merge (force test-instance) (force super)))))
(supers . ,(delay '()))
(precedence-list . ,(delay '())))))
(define test-object (make-object test-instance test-prototype))
(define test-p1 ($slot/value 'foo 1))
]
@;{
(define (pair-tree-for-each! x f)
(let loop ((x x))
(cond ((pair? x) (loop (car x)) (loop (cdr x)))
((null? x) (void))
(else (f x)))))
(define (call-with-list-builder f)
(define l '())
(f (λ (x) (set! l (cons x l))))
(reverse l))
(define (flatten-pair-tree x)
(call-with-list-builder (λ (c) (pair-tree-for-each! x c))))
}
@Checks[
(eval:check (map (λ (x) (slot-ref test-object x)) '(a b c)) '(1 2 3))
(eval:check (slot-ref (instantiate '() test-p1) 'foo) 1)
(eval:check (map (slot-ref (ListOf Number) 'is?) '(() (1 2 3) (1 a 2) (1 . 2)))
'(#t #t #f #f))
]
@section[#:tag "Appendix_B"]{Digression about type notation}
There is no standard type system for the language Scheme,
so we will keep our type declarations as comments that are unenforced by the compiler,
yet that will informally document what the types for our functions would be
in a hypothetical dependent type system (with possible effect extensions?)
that would be powerful enough to describe our computations.
@subsection{Variables and Type Variables}
We will use lowercase letters, such as @r[a], @r[f], @r[x], to denote variables,
that may be bound any value in the language.
We will use uppercase letters, such as @r[A], @r[F], @r[X], to denote @emph{type variables}.
That is, variables representing a type, that is not currently specified,
but such that the formulas we write must hold for any type,
in a hypothetical type system that one could layer on top of the language.
@subsection{Variable Rows and Type Variable Rows}
We will write a @r[...] for a "row" of multiple values, such as may be used
as input arguments to a function, or return values of a function.
We will write A @r[...] for a "row" of multiple types, such as may be used
to type the inputs or outputs of a function.
Indeed, in Scheme, a function may take multiple inputs arguments and
and return multiple output values.
For instance, a row of types could be:
@racketblock[Integer]
@(noindent)
for the single type of integers, or:
@racketblock[String]
@(noindent)
for the single type of strings, or:
@racketblock[Integer String]
@(noindent)
for the two types (in order) @r[Integer] and @r[String], or:
@racketblock[Integer Symbol ...]
@(noindent)
for the types of one integer followed by zero or many symbols.
@subsection{Function Types}
The type of functions that take inputs @r[I ...] and return outputs @r[O ...]
we will write as any one of the following:
@racketblock[
I ... -> O ...
O ... <- I ...
(I ... -> O ...)
(O ... <- I ...)
(Fun I ... -> O ...)
(Fun O ... <- I ...)
]
@(noindent)
As usual, the arrows are associative such that these denote the same type:
@racketblock[
A -> B -> C
A -> (B -> C)
C <- B <- A
(C <- B) <- A
]
@(noindent)
In papers such as this essay, or when contributing to other people's code bases,
we will use the conventional left-to-right arrows.
However, in our own codebase, we favor right-to-left arrows, that are covariant with
the right-to-left flow of information from arguments to function in the traditional
prefix notation for function application.
Still, we revert to left-to-right arrows when we use concatenative languages
or stack virtual machines that use the “Reverse Polish Notation”
as in FORTH, PostScript or the much missed HP RPL.
@subsection{Type Constraints}
We will use the keyword @r[st:] (being a keyword short for "such that")
to denote type constraints, as in:
@racketblock[
st: Constraint1 Constraint2 ...
]
@(noindent)
The constraints we will consider will be subtyping constraints of the form:
@racketblock[
(<: A B C ...)
]
meaning @r[A] is a subtype of @r[B], which is a subtype of @r[C], etc.
@section[#:tag "Appendix_C"]{Fixed-Point functions}
In @(section1), we quickly went over the fixed-point function @r[fix]
that we used to instantiate prototypes.
Reminder:
A function prototype @r[(Proto A B)] is function @r[p : (Fun A B -> A)]
where @r[A] and @r[B] are function types, and @r[A] is a subtype of @r[B].
Thus, @r[p] takes a function @r[f] of type @r[A], and a function @r[B] of type @r[B],
and returns a new function @r[g] of same type @r[A].
To instantiate a prototype is get a function of type @r[A]
from a function of type @r[B].
Given these premises, there is one and only one construction that
allows us to and only one way to get an @r[A]: it's by calling @r[p].
But to call @r[p], we need to already have an @r[A]!
Where do we get this function of type @r[A] to begin with?
That's where the magic of fixed-point functions comes in:
they will somehow @emph{tie a knot}, and get a reference to the
function being defined, even before the function is defined.
Here is how we want a fixed point to look like:
@Examples[
(define (well-typed-but-invalid p b)
(define f (p f b))
f)
]
@(noindent)
Unhappily, this doesn't work in Scheme, because Scheme is eager:
the call to @r[p] needs to fully evaluate its arguments,
but @r[f] hasn't been fully defined yet, so the call is invalid.
Some Scheme implementations may detect that this definition tries to use
@r[f] before it is defined and raise an error at compile-time.
Some implementations will initially bind @r[f] to a magic “unbound” marker,
and trying to use @r[f] before it is defined will result in an error at runtime.
In yet other implementations, @r[f] will initially be bound to
some default “null” value such as @r[#f] or @r[(void)]
that will be used without immediately raising an error---until
you try to call @r[f] while expecting it to be a function, and then
the implementation will raise a runtime error while you are left wondering
why the program is trying to call this null value.
Finally, some reckless implementations may try to use @r[f]
before the data frame was even properly initialized at all,
and some random low-level value is used that might not make sense with
respect to the garbage collector, and you'll eventually dance fandango on core.
Yet, in a lazy languages, the above definition works!
Indeed in Nix, you can write the equivalent definition:
@nix{
let fix = p: b: let f = p f b; in f
}
@(noindent)
In Scheme, we can similarly write:
@Examples[
(define (delayed-fix p b)
(define df (delay (p f b)))
f)
]
@(noindent)
But in this only works if @r[p] accepts delayed computations as arguments
rather than direct function values (and still eagerly computes the result from them).
Then we have will have:
@racketblock[
(code:comment "(deftype (DelayedProto A B) (Fun (Delayed A) (Delayed B) -> A))")
(code:comment "delayed-fix : (Fun (DelayedProto A B) (Delayed B) -> (Delayed A))")
]
@(noindent)
On the other hand, this works for arbitrary types @r[A] and @r[B],
and not just for function types!
So, how do we get around this issue without delay?
One solution would be as follows---can you tell why it works,
and why it isn't fully satisfactory?
@Examples[
(define (fix--0 p b)
(define (f . i) (apply (p f b) i))
f)
]
@(noindent)
First, why it works: by making @r[f] a function, we can recursively refer to @r[f]
from within the body of function @r[f] itself, since by the time this reference
is used, @r[f] was called, and by the time @r[f] was called, @r[f] was defined.
Thus we can give @r[f] to @r[p] to compute the fixed-point value @r[(p f b)].
But by that time, we're trying to call the fixed point, so
we take all the input arguments passed to @r[f] in a list @r[i],
and we pass them all forward to the fixed-point expression
using the builtin function @r[apply].
All is well. Try it, it works.
However, there is an issue:
@r[fix--0] calls @r[p] again at every invocation of the fixed-point @r[f].
Therefore, if @r[p] makes expensive computations,
it will pay to recompute them every time from scratch.
Worse, if @r[p] wants to build data structures
meant to be shared between invocations, such as a cache,
this sharing will be lost between calls to @r[f].
There can be no sharing of information between calls to @r[f].
No pre-computation, no cacheing, no memoization, no shared mutable state.
Therefore a better solution, that does allow for sharing computations
and state between invocations of the fixed-point result, is:
@Examples[
(define (fix--1 p b)
(define f (p (lambda i (apply f i)) b))
f)
]
@(noindent)
That's the same as the fix function from @(section1).
Note how the anonymous lambda closure does part of the “protection”
or “delay” whereby the recursive data structure will only be called
after @r[f] is defined, but relies on @r[p] not causing its first argument
to be called during its evaluation, only stored in a data structure
or in a closure to be called later after @r[p] has returned.
If you don't like internal defines, you can write the same function
equivalently using @r[letrec], as:
@Examples[
(define (fix--2 p b)
(letrec ((f (p (lambda i (apply f i)) b)))
f))
]
@(noindent)
And if you don't even like @r[letrec], you can use a Y-combinator variant: @; TODO cite
@Examples[
(define (fix--3 p b)
((lambda (yf) (yf yf))
(lambda (yf) (p (lambda i (apply (yf yf) i)) b))))
]
@section[#:tag "Appendix_D"]{Note for code minimalists}
In our introduction, we described the @r[fix] and @r[mix] functions
in only 26 symbols or 109 characters of Scheme.
We can do even shorter with various extensions.
MIT Scheme and after it Racket, Gerbil Scheme, and more,
allow you to curried function definitions, to cut 1 symbol and 9 characters.
@Examples[
(define ((mix p q) f b) (p f (q f b)))
]
@(noindent)
And then we'd have Object Orientation in only 25 symbols, 100 characters.
Then again, in Gerbil Scheme, we could get it down to only 24 symbols,
and 88 characters, counting newline:
@racketblock[
(def (fix p b) (def f (p (cut apply f <>) b)) f)
]
@(noindent)
Or, compressing spaces, to 24 symbols and 73 characters,
not counting newline, since we elide spaces:
@racketblock[
(def(fix p b)(def f(p(cut apply f <>)b))f)(def((mix p q)f b)(p f(q f b)))
]
@(finalize-examples/module poof)
@;;; Make sure to comment this out before to submit:
@;@table-of-contents[]
@;;;only works for HTML output: @local-table-of-contents[#:style 'immediate-only]
| false |
40472374cf14958eb4f6d17ae42ffe9939c96fc1 | 1c2209c90f3a026361465e9e7d7a291394a77fc6 | /sxml/scribblings/sxml-rep.scrbl | 9ce2bdc5fdcf0699bcdce31aa5d16ec11705c81b | []
| no_license | jbclements/sxml | 2c1d1b06cdf40187c2141d47ae472ad2708cd456 | 5d1d65561b7bf5059456934c34a5c5f257de4416 | refs/heads/master | 2023-03-11T23:57:19.065847 | 2023-03-03T05:56:52 | 2023-03-03T05:56:52 | 1,371,026 | 30 | 10 | null | 2023-03-03T05:56:53 | 2011-02-15T20:23:20 | Racket | UTF-8 | Racket | false | false | 10,022 | scrbl | sxml-rep.scrbl | #lang scribble/doc
@(require scribble/manual
"util.rkt"
(for-label sxml))
@title{SXML}
@deftech{SXML} is a representation of XML elements using
unique s-expressions. The following grammar describes the structure of SXML:
@(define ATSIGN (racketidfont "@"))
@racketgrammar*[
#:literals (*TOP* *PI* *COMMENT* *ENTITY* URI *NAMESPACES* |@|)
[top (*TOP* maybe-annotations
PI ...
comment ...
element)]
[element (name maybe-annot-attributes child ...)]
[annot-attributes (|@| attribute ... maybe-annotations)]
[attribute (name maybe-value maybe-annotations)]
[child element
character-data-string
PI
comment
entity]
[PI (*PI* pi-target
maybe-annotations
processing-instruction-content-string)]
[comment (*COMMENT* comment-string)]
[entity (*ENTITY* public-id-string system-id-string)]
[name local-name
exp-name]
[local-name @#,elem{symbol conforming to XML Namespace recommendation}]
[exp-name @#,elem{symbol of the form @racket[_namespace-id]@litchar{:}@racket[_local-name]}]
[namespace-id URI-symbol
user-ns-shortcut-symbol]
[namespaces (*NAMESPACES* namespace-assoc ...)]
[namespace-assoc (namespace-id uri-string maybe-original-prefix)]
[annotations (|@| maybe-namespaces annotation ...)]
[annotation @#,elem{not yet specified}]
]
Some tools, such as SXPath, use the following coarse approximation of
SXML structure for simplicity:
@racketgrammar*[
#:literals (*TOP* *PI* *COMMENT* *ENTITY* URI *NAMESPACES* |@|)
[node (name . node-list)
string]
[node-list (node ...)]
[name local-name exp-name |@| *TOP* *PI* *COMMENT* *ENTITY* *NAMESPACES*]
]
In short, an XML element is represented as a list consisting of its
tag name as a symbol followed by its children nodes. If the XML
element has attributes, they come immediately after the tag symbol, in
a list tagged by an @racket[|@|] symbol.
For example, the XML element
@tt{<abc>def<ghi />jkl</abc>}
is represented by the SXML datum
@racket['(abc "def" (ghi) "jkl")]
and the XML element
@tt{<customer specialness="gazonga">Barry White</customer>}
is represented by the SXML datum
@racket['(customer (|@| (specialness "gazonga")) "Barry White")]
NOTE! Some of the sxml libraries, particularly sxml:modify, depend
on the fact that sxml elements in a legal document are all "unique";
as I understand it, the requirement is that no two subtrees of a given
SXML document can be 'eq?' to each other. This can easily
occur when rewriting a tree, for instance a pass that inserts `(delete-me)
in multiple places.
That's the easy part. Things get more tricky when you start talking
about documents and namespaces.
Refer to @hyperlink["http://okmij.org/ftp/Scheme/SXML.html"]{the
original SXML specification} for a more detailed explanation of the
representation, including examples.
@;{ ============================================================ }
@section{SXML Functions}
@defproc[(sxml:element? [v any/c]) boolean?]{
Returns @racket[#t] if @racket[v] is a list starting with a symbol
that is not a special symbol, @racket[#f] otherwise.
@examples[#:eval the-eval
(sxml:element? '(p "blah"))
(sxml:element? '(*COMMENT* "ignore me"))
(sxml:element? '(|@| (href "link.html")))
]
}
@defproc[(ntype-names?? [tags (listof symbol?)])
(-> any/c boolean?)]{
Given a list of allowable tag names, returns a predicate that
recognizes @racket[_element]s with those tags.
@examples[#:eval the-eval
((ntype-names?? '(a p)) '(p "blah"))
((ntype-names?? '(a p)) '(br))
]
}
@defproc[(ntype?? [crit symbol?])
(-> any/c boolean?)]{
If @racket[_crit] is a special symbol, a predicate is returned that
accepts the following classes of @racket[_node]:
@itemlist[
@item{@racket['|@|]: an @racket[_annot-attributes] node}
@item{@racket['*]: any @racket[_element] (@racket[sxml:element?])}
@item{@racket['*any*]: any @racket[_node]}
@item{@racket['*text*]: any string}
@item{@racket['*data*]: anything except a pair (@racket[_element])}
@item{@racket['*COMMENT*]: a @racket[_comment] node}
@item{@racket['*PI*]: a @racket[_PI] (processing instruction) node}
@item{@racket['*ENTITY*]: an @racket[_entity] node}
]
Otherwise, it is an ordinary tag name, and a predicate is returned
that recognizes @racket[_element]s with that tag.
@examples[#:eval the-eval
((ntype?? '*) "blah")
((ntype?? '*) '(p "blah"))
((ntype?? '*text*) "blah")
((ntype?? '*text*) '(p "blah"))
]
}
@defproc[(ntype-namespace-id?? [ns-id (or/c string? #f)])
(-> any/c boolean?)]{
Returns a predicate that recognizes @racket[_element]s with tags
belonging to the namespace @racket[ns-id]. If @racket[ns-id] is
@racket[#f], the predicate recognizes elements whose tags have no
namespace.
@examples[#:eval the-eval
((ntype-namespace-id?? "atom") '(atom:id "blah"))
((ntype-namespace-id?? "atom") '(atomic "section"))
((ntype-namespace-id?? #f) '(atomic "section"))
]
}
@defproc[(sxml:node? [v any/c]) boolean?]{
Returns @racket[#t] for anything except an attribute list (that is,
a list whose first element is @racket['|@|]).
Note that the set of values accepted by @racket[sxml:node?] is
different from the non-terminal @racket[_node].
@examples[#:eval the-eval
(sxml:node? '(a (|@| (href "link.html")) "blah"))
(sxml:node? '(|@| (href "link.html")))
]
}
@defproc[(sxml:attr-list [node _node])
(listof _attribute)]{
If @racket[node] is an @racket[_element], returns its list of
attributes (or @racket['()]) if it has no attributes; for all other
types of @racket[_node], returns @racket['()].
@examples[#:eval the-eval
(sxml:attr-list '(a (|@| (href "link.html")) "blah"))
(sxml:attr-list '(p "blah"))
(sxml:attr-list "blah")
]
}
@;{ ============================================================ }
@;{ -- From sxml-tools.rkt -- }
@defproc[(sxml:attr-list-node [elem sxml:element?])
(or/c #f (cons/c '|@| (listof @#,racket[_attribute])))]{
Returns an element's attribute list node, or @racket[#f] it is has
none. Compare @racket[sxml:attr-list].
@examples[#:eval the-eval
(sxml:attr-list-node '(a (|@| (href "link.html")) "blah"))
(sxml:attr-list-node '(p "blah"))
]
}
@;{
sxml:attr-as-list
sxml:aux-list-node
sxml:aux-as-list
}
@defproc[(sxml:empty-element? [elem sxml:element?])
boolean?]{
Returns @racket[#t] if @racket[elem] has no nested elements, text
nodes, etc. The element may have attributes.
@examples[#:eval the-eval
(sxml:empty-element? '(br))
(sxml:empty-element? '(p "blah"))
(sxml:empty-element? '(link (|@| (rel "self") (href "here.html"))))
]
}
@;{
sxml:shallow-normalized?
sxml:normalized
sxml:shallow-minimized?
sxml:minimized?
sxml:name ;; what is domain???
}
@defproc[(sxml:element-name [elem sxml:element?])
symbol?]{
Returns an element's tag.
}
@defproc[(sxml:ncname [qualified-name symbol?])
string?]{
Returns the local part of a qualified name.
}
@defproc[(sxml:name->ns-id [qualified-name symbol?])
(or/c string? #f)]{
Returns the namespace part of a qualified name.
}
@defproc[(sxml:content [node-or-nodeset (or/c _node nodeset?)])
(listof _node)]{
Returns the contents (elements and text nodes) of an element or
nodeset.
}
@defproc[(sxml:text [node-or-nodeset (or/c _node nodeset?)])
string?]{
Returns a string consisting of all of the character data immediately
within @racket[node-or-nodeset].
@examples[#:eval the-eval
(sxml:text '(p (em "red") " fish; " (em "blue") " fish"))
]
}
@defproc[(sxml:attr [elem sxml:element?]
[attr-name symbol?])
(or/c string? #f)]{
Gets the value of the @racket[attr-name] attribute of @racket[elem].
}
@;{
sxml:content-raw
sxml:attr-list-u
sxml:aux-list
sxml:aux-list-u
sxml:aux-node
sxml:aux-nodes
sxml:attr-from-list
sxml:num-attr
sxml:attr-u
sxml:ns-list
sxml:ns-id->nodes
sxml:ns-id->uri
sxml:ns-uri->nodes
sxml:ns-id
sxml:ns-uri
sxml:ns-prefix
}
@defproc[(sxml:change-content [elem sxml:element?]
[new-content (listof _child)])
sxml:element?]{
Replaces the content of @racket[elem] with @racket[new-content],
preserving its attributes and auxiliary information.
}
@defproc[(sxml:change-attrlist [elem sxml:element?]
[new-attrlist (listof _attribute)])
sxml:element?]{
Replaces the attributes of @racket[elem] with @racket[new-attrlist],
preserving its contents and auxiliary information.
}
@defproc[(sxml:change-name [elem sxml:element?]
[tag symbol?])
sxml:element?]{
Changes the tag name of @racket[elem], preserving its attributes,
auxiliary information, and contents.
}
@defproc[(sxml:set-attr [elem sxml:element?]
[attr (list/c symbol? any/c)])
sxml:element?]{
Returns an element like @racket[elem] but with the attribute
@racket[attr], which replaces any existing attribute with
@racket[attr]'s key.
}
@defproc[(sxml:add-attr [elem sxml:element?]
[attr (list/c symbol? any/c)])
(or/c sxml:element? #f)]{
Like @racket[sxml:set-attr], but returns @racket[#f] if
@racket[elem] already contains an attribute with @racket[attr]'s
key.
}
@defproc[(sxml:change-attr [elem sxml:element?]
[attr (list/c symbol? any/c)])
(or/c sxml:element? #f)]{
Like @racket[sxml:set-attr], but returns @racket[#f] unless
@racket[elem] already contains an attribute with @racket[attr]'s
key.
}
@defproc[(sxml:squeeze [elem sxml:element?])
sxml:element?]{
Eliminates empty attribute lists and auxiliary lists.
}
@defproc[(sxml:clean [elem sxml:element?])
sxml:element?]{
Eliminates empty attribute lists and removes all auxilary lists.
}
@;{
sxml:add-aux
}
@;{ -- }
@;{
sxml:node-parent
sxml:lookup
sxml:attr->xml
sxml:string->xml
sxml:sxml->xml
sxml:attr->html
sxml:string->html
sxml:sxml->html
}
| false |
f2f58d12e22472a79e2e59e6a98675ffcb52c3b2 | d496f55be3026bc79b5c890d9e82be893af87867 | /digital_schemas/main.rkt | aebe039817f81bfbf6f1376a025c40eacf32f557 | []
| no_license | juraseg/sicp-racket | db42053f1f66c799ec320ab5a85698d98588674e | 75577291b5aa716d88fdbff11aa449ab9ee515b1 | refs/heads/master | 2021-06-05T01:18:57.541530 | 2018-06-08T09:12:47 | 2018-06-08T09:12:47 | 16,341,327 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,336 | rkt | main.rkt | #lang racket
(require "the-agenda.rkt")
(require "schemas.rkt")
(define a1 (make-wire))
(define a2 (make-wire))
(define a3 (make-wire))
(define a4 (make-wire))
(define b1 (make-wire))
(define b2 (make-wire))
(define b3 (make-wire))
(define b4 (make-wire))
(define s1 (make-wire))
(define s2 (make-wire))
(define s3 (make-wire))
(define s4 (make-wire))
(define c (make-wire))
; riple-carry added
; A - first number, which digits are passed to wires a1a2a3a4
; B - first number, which digits are passed to wires b1b2b3b4
; S - sum, with digits s1, s2, s3, s4
(define (ripple-carry-adder A B S c)
(let ((c-in (make-wire)))
(full-adder (car A) (car B) c-in (car S) c)
(cond ((pair? (cdr S))
(ripple-carry-adder (cdr A) (cdr B) (cdr S) c-in))
(else
(set-signal! c-in 0))))
'ok)
(ripple-carry-adder (list a1 a2 a3 a4) (list b1 b2 b3 b4) (list s1 s2 s3 s4) c)
; 1001 + 0101 = 1110
(set-signal! a1 1)
(set-signal! a2 0)
(set-signal! a3 0)
(set-signal! a4 1)
(set-signal! b1 0)
(set-signal! b2 1)
(set-signal! b3 1)
(set-signal! b4 0)
(display (list (get-signal s1) (get-signal s2) (get-signal s3) (get-signal s4)))
(newline)
(display (get-signal c))
(newline)
(propagate)
(display (list (get-signal s1) (get-signal s2) (get-signal s3) (get-signal s4)))
(newline)
(display (get-signal c)) | false |
7f499ac3e4f486b0d04a4298e1466832a88d70ed | 5bbc152058cea0c50b84216be04650fa8837a94b | /experimental/micro/synth/untyped/array-utils-vector-copy-all.rkt | 03a7a231f2eee5ad421a345fe99da8d2d9d90c9f | []
| 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 | 445 | rkt | array-utils-vector-copy-all.rkt | #lang racket/base
(provide vector-copy-all)
;; -----------------------------------------------------------------------------
(require (only-in racket/performance-hint begin-encourage-inline)
(only-in "array-utils-vector-supertype-vector.rkt"
vector->supertype-vector))
;; =============================================================================
(begin-encourage-inline
(define (vector-copy-all js) (vector->supertype-vector js))
)
| false |
bc3cac4199947154a6cb711bc4a7b93d1a026c63 | 7e500549765a0bdc49d4fcf40158fb9bb5b07e3e | /continuation.rkt | 78997231826f225287e943b6587be24a932e9ff6 | []
| no_license | capfredf/digimon | 94f3b3946ce115e8ae4472fc757b5f548c519f04 | 1215bb3b1ab86fd115a6f2e393afa4d8530ed576 | refs/heads/master | 2023-04-05T01:27:59.773661 | 2021-04-14T05:32:44 | 2021-04-14T05:32:44 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 5,650 | rkt | continuation.rkt | #lang typed/racket/base
(provide (all-defined-out))
(require racket/format)
(require (for-syntax racket/base))
(require (for-syntax racket/syntax))
(require (for-syntax syntax/parse))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define-for-syntax (prompt-type stx)
(syntax-case stx []
[(a b) (list #'a #'b)]
[(a b c d ...) (raise-syntax-error 'define-continuation-prompt-control "too many range types" #'c #false (syntax->list #'(d ...)))]
[(a) (list #'a #'a)]))
(define-syntax (define-continuation-prompt-control stx)
(syntax-parse stx #:datum-literals []
[(_ (call abort) (~optional name:id) #:-> [Type ...]
(~alt (~optional (~seq #:with AbortInType (~optional (~seq #:default default-datum)) abort-map:expr) #:defaults ([abort-map #'values]))
(~optional (~seq #:default-abort-callback default-abort-callback) #:defaults ([default-abort-callback #'void]))
(~optional (~seq #:default-handler-map default-handler-map)))
...)
(with-syntax* ([default-prompt-name (or (attribute name) (generate-temporary 'prompt))]
[handler-map (generate-temporary 'map)]
[ret-arg (generate-temporary 'arg)]
[(a b) (prompt-type #'(Type ...))]
[c (or (attribute AbortInType) #'b)]
[(Call [def-map ...] call-map)
(if (attribute default-handler-map)
(list #'(->* ((Option Symbol) (-> a)) ((-> b b)) (U a b)) (list #'[handler-map default-handler-map]) #'handler-map)
(list #'(-> (Option Symbol) (-> a) (U a b)) null #'values))]
[(Abort def-arg)
(if (attribute default-datum)
(list #'(->* () (c (-> b Any)) Nothing) #'[ret-arg default-datum])
(list #'(->* (c) ((-> b Any)) Nothing) #'ret-arg))])
(syntax/loc stx
(begin (define default-prompt : (Parameterof (Prompt-Tagof a (-> (-> b) b)))
(make-parameter ((inst make-continuation-prompt-tag a (-> (-> b) b)) 'default-prompt-name)))
(define call : Call
(lambda [tagname do-task def-map ...]
(define current-prompt ((inst make-continuation-prompt-tag a (-> (-> b) b)) (or tagname 'default-prompt-name)))
(parameterize ([default-prompt current-prompt])
(call-with-continuation-prompt do-task current-prompt
(λ [[at-collapse : (-> b)]] : b
(call-map (at-collapse)))))))
(define abort : Abort
(let ([abort-datum-transform : (-> c b) abort-map])
(lambda [def-arg [on-abort default-abort-callback]]
(let ([ret-datum (abort-datum-transform ret-arg)])
(abort-current-continuation (default-prompt)
(λ [] (on-abort ret-datum) ret-datum)))))))))]))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define-type Continuation-Stack (Pairof Symbol (Option (Vector (U String Symbol) Integer Integer))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define continuation-mark->stacks : (->* () ((U Continuation-Mark-Set Thread exn)) (Listof Continuation-Stack))
(lambda [[cm (current-continuation-marks)]]
((inst map (Pairof Symbol (Option (Vector (U String Symbol) Integer Integer))) (Pairof (Option Symbol) Any))
(λ [[stack : (Pairof (Option Symbol) Any)]]
(define maybe-name (car stack))
(define maybe-srcinfo (cdr stack))
(cons (or maybe-name 'λ)
(and (srcloc? maybe-srcinfo)
(let ([src (srcloc-source maybe-srcinfo)]
[line (srcloc-line maybe-srcinfo)]
[column (srcloc-column maybe-srcinfo)])
(vector (if (symbol? src) src (~a src))
(or line -1)
(or column -1))))))
(cond [(continuation-mark-set? cm) (continuation-mark-set->context cm)]
[(exn? cm) (continuation-mark-set->context (exn-continuation-marks cm))]
[else (continuation-mark-set->context (continuation-marks cm))]))))
(define display-continuation-stacks : (->* () ((U Continuation-Mark-Set Thread exn) Output-Port) Void)
(lambda [[errobj (current-continuation-marks)] [/dev/errout (current-error-port)]]
(let display-stack ([stacks : (Listof Continuation-Stack) (continuation-mark->stacks errobj)]
[idx : Byte 0])
(when (pair? stacks)
(define stack (car stacks))
(define maybe-location (cdr stack))
(cond [(not maybe-location) (display-stack (cdr stacks) idx)]
[else (when (> idx 0) (display #\newline /dev/errout))
(display "»»»» " /dev/errout)
(display (car stack) /dev/errout)
(display #\: /dev/errout)
(display #\space /dev/errout)
(display (vector-ref maybe-location 0) /dev/errout)
(display #\: /dev/errout)
(display (vector-ref maybe-location 1) /dev/errout)
(display #\: /dev/errout)
(display (vector-ref maybe-location 2) /dev/errout)
(display-stack (cdr stacks) 1)])))))
| true |
6d5528dde4c65bc1cd3c00c898b9825dfecb6afb | dd35befa9b766ef8cb6f6a28a8b8ca51887d2185 | /Misc/lsh.rkt | 92ced8728de7fc828a3c0f7cf9c531402d20fe9f | []
| no_license | Aurametrix/Lisp | 9dfd782d5514d0175a85cffa964608347b3f4f98 | fc47e5dd31a0f29de6e402434c074992600362d7 | refs/heads/master | 2023-06-10T18:08:31.426527 | 2023-06-05T23:02:59 | 2023-06-05T23:02:59 | 15,462,162 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 21,077 | rkt | lsh.rkt | #lang racket/gui
; A library to explore files and directories DOS and UNIX style.
; Typically, DOS commands will display path objects while their UNIX counterparts will pretty-print paths instead.
; Version history:
; Alpha
; v0.1 - First version. Racket 6.7.
; v0.2 - Adds support for extra commands such as google, touch, edit, find, show, earch and echo. Racket 6.10.
; v0.3 - Adds support for variables (get/set) and self-editing with edit-me. Racket 6.11.
; v0.3b - Light version without gui library support. Racket 6.11.
; v0.3.1b - fixes save-script. Racket 6.11.
; v0.4 - First posted on GitHub, gui enabled.
(define current-version "v0.4 Alpha")
(provide help ; displays this message
cd ; displays the current working directory or change it
cd/ ; same as (cd "/") - goes back to filesystem root
pwd ; print the current directory's path
dir ; list the current directory's file list or the specified path
ls ; prints the current folder's file list
mkdir ; makes a folder
run ; run a program from the current directory, optionally takes parameters
run# ; run a program directly using its path
racket ; edit a file using DrRacket
edit ; edit a file using notepad
edit-me ; edit lsh source file using DrRacket
url ; browse to an url
google ; google an url
cp ; copy a file or folder
mkdir ; create a folder
touch ; create an empty file
find ; walk the current path
show ; pretty-prints a command result
rm ; delete a file
rmdir ; delete a folder
echo ; display something on the screen
search) ; equivalent to Google's 'I'm feeling lucky'
;;; defs
;; generic about message
(define (about) (echo "Welcome to LSH (Lisp SHell) " current-version " - type help for usage."))
;; display help page
(define (help)
(newline)
(about)
(displayln "Available commands:
help ; displays this message
cd ; displays the current working directory or change it
cd\\ ; same as (cd \"/\") - goes back to the filesystem's root
pwd ; print the current directory's path
dir ; list the current directory's file list or the specified path
ls ; prints the current folder's file list
run ; run a program, optionally takes parameters
racket ; edit a file using DrRacket
cat ; display a text file on the screen
edit ; edit a file using notepad
edit-me ; edit a file using DrRacket
url ; browse to an url
google ; google an url
search ; search and open first matching link
Advanced commands:
echo [something] ; displays something on the screen
cp src dst ; copy a file or folder
mkdir dst ; create a folder
touch [file path] ; create an empty file
find ; walk the current path
find [wildcard] ; walk and filter the current path
find pred ... ; same as find-files
show v ; pretty-prints result of a command that returns a list
rm file ; delete a file
rmdir dir ; delete a folder
set var = value ; set a local variable
set ; list local variables and their values
start-recording ; start recording a script
save-script [file path] ; stops recording and save the script"))
;; generic +
(require (except-in racket +) (rename-in racket [+ old+]))
(define +
(lambda args
(cond [(no args) null]
[(andmap string? args) (apply string-append args)] ; adding strings? string-append!
[(andmap number? args) (apply old+ args)] ; adding numbers? add them using the old +
[(andmap list? args) (apply append args)] ; adding list? append!
[else (apply ~a args)]))) ; else brute-force ~a arguments :)
;; better displayln/string-append
(define echo
(λ args
(displayln (apply ~a args))))
;; all-but-last-element of list
(define (all-but-last l) (reverse (cdr (reverse l))))
;; predicate returns true if current lsh session is being run from inside DrRacket
(define (debug-mode) (string-contains? (path->string (find-system-path 'run-file)) "DrRacket"))
;; Define a global namespace to allow input-loop eval to understand our commands
(define-namespace-anchor a)
(define input-loop-ns (namespace-anchor->namespace a))
;; double-quote command parameters
(define (double-quote-params command-line)
(let* ((parts (string-split command-line " "))
(command (first parts))
(params (rest parts))
(quoted-params (if (= (length params) 1)
(+ "\"" (first params) "\"")
(+ "\"" (string-join params " ") "\""))))
(if (= (length parts) 1) (string-replace command-line "\\" "/")
(string-replace (string-join (list command quoted-params) " ") "\\" "/"))))
;; Clean up an exception for display
(define (clean-exception e)
(string-join (cdr (string-split (~a e) " ")) " "))
;; Main evaluation proc
(define (evaluate v)
(if (non-empty-string? v)
(with-handlers ([exn:fail:syntax?
(λ (e) (displayln (clean-exception e)))]
[exn:fail?
(λ (e) (displayln (clean-exception e)))])
(eval (call-with-input-string v read) input-loop-ns))
(void)))
;; generic invalid command error message
(define (invalid-command command)
(displayln (+ command " : unknown command or missing parameter. Type 'help' for help.\n")))
;; check that a command is either the exact command alone or the command followed by a space
(define (alone-or-got-param? command-line command)
(or (string=? command-line command)
(string-prefix? command-line (+ command " "))))
;; display a nice prompt with the current directory
(define (display-prompt)
(display (+ (path->string (current-directory)) "> ")))
;; predicate that returns true if given command is built-in
(define (built-in? command)
(or (string=? command "pwd")
(string=? command "edit-me")
(string=? command "start-recording")
(string-prefix? command "cp ")
(string-prefix? command "rm ")
(string-prefix? command "cd ") ; built-in commands
(string-prefix? command "cd/")
(string-prefix? command "cd..")
(string-prefix? command "cd\\")
(string-prefix? command "cat ")
(string-prefix? command "run ")
(string-prefix? command "url ")
(string-prefix? command "show ")
(string-prefix? command "edit ")
(string-prefix? command "rmdir ")
(string-prefix? command "touch ")
(string-prefix? command "mkdir ")
(alone-or-got-param? command "ls")
(alone-or-got-param? command "ll")
(alone-or-got-param? command "dir")
(alone-or-got-param? command "set")
(alone-or-got-param? command "find")
(alone-or-got-param? command "help")
(alone-or-got-param? command "google")
(alone-or-got-param? command "save-script")
(string-prefix? command "search ")
(string-prefix? command "racket ")))
;; predicate returns true when command is a macro
(define (macro? command)
(or (alone-or-got-param? command "set")
(alone-or-got-param? command "get")))
;; multiple non-empty-string? predicate
(define non-empty-strings?
(λ args
(andmap non-empty-string? args)))
;; local variable list
(define local-vars null)
;; adds a variable to the local variable list
(define (add-local-var var)
(set! local-vars (cons var local-vars)))
;; predicate returns true if variable is in the local variable list
(define (local-var? var)
(member var local-vars))
;; pretty prints variables set through the 'SET' command
(define (display-local-vars)
(if (null? local-vars) (displayln "No local variable set.")
(for-each (λ (var) (displayln (+ var " = " (evaluate var)))) local-vars))) ; for each variable in the list, display varable-name = variable-value
;; get macro
(define (matches-get command params)
(if (and (string=? command "get")
(null? params)) (display-local-vars)
#f))
;; set macro
(define (matches-set command params p1 p2 p3)
(cond ((and (string=? command "set")
(string=? p2 "=")
(non-empty-strings? p1 p3)) (add-local-var p1) ; save variable in local variable list
(+ "(define " p1 " " p3 ")"))
((and (string=? command "set")
(null? params)) (display-local-vars) "(void)")
(else #f)))
;; syntax rules
(define (matches-syntax-rules command params p1 p2 p3)
(or (matches-get command params)
(matches-set command params p1 p2 p3)))
;; transform syntax to match racket's
(define (transform-syntax stx)
(if (non-empty-string? stx)
(let* ((parts (string-split stx " ")) ; split syntax parts
(count (length parts)) ; get syntax part count
(command (car parts)) ; first syntax part
(params (cdr parts)) ; rest of syntax parts
(p1 (if (> count 1) (cadr parts) "")) ; second syntax part
(p2 (if (> count 2) (caddr parts) "")) ; third syntax part
(p3 (if (> count 3) (cadddr parts) "")) ; fourth syntax part
(others (if (> count 4) (cdddr parts) ""))) ; rest of the syntax parts
(unless (matches-syntax-rules command params p1 p2 p3)
(+ "(echo \"Macro transformer error: I don't understand '" (~a parts) "'.
command: " (~a command) "
param1: " (~a p1) "
param2: " (~a p2) "
param3: " (~a p3) "
param-rest: " (~a others) "\")")))
"")) ; return empty string as default
;; handle built-in commands
(define (handle-built-in command)
(begin
(define transformed-command (if (macro? command) (transform-syntax command) ; if command is a macro, transform syntax,
(double-quote-params command))) ; else automatically double-quote parameters
;(echo "Transformed command: '" (~a transformed-command) "'") ; for debugging
(define final-command (cond ((string=? transformed-command "") "") ; return nothing if transformed command is empty
((string-prefix? transformed-command "find") ; if this is one of the commands returning a list - like find
(+ "(show (" transformed-command "))")) ; automatically use show to pretty-print list
((string-prefix? transformed-command "(") transformed-command) ; if the command is already an s-expression, return it
(else (+ "(" transformed-command ")")))) ; else transform into s-expression
;(echo "About to execute: '" (~a final-command) "'") ; for debugging
(if (non-empty-strings? transformed-command final-command) ; make sure transformed and final syntaxes are not empty
(evaluate final-command) (invalid-command command)) ; Evaluate final command
(newline)))
;; clean up entry from line-feeds and carriage returns
(define (clean-up command)
(string-trim (string-replace2 command "\n" "\r" "" "")))
;; currently recording a script?
(define recording-script? #f)
(define current-script null)
;; adds a line to the script currently being recorded
(define (record-script line)
(set! current-script (cons line current-script)))
;; generic confirmation line
(define (show-confirmation-line msg)
(display (+ msg " "))
(let ((answer (read-line)))
(if (string-prefix? answer "y") #t #f)))
;; start recording a script
(define (start-recording)
(set! current-script null)
(set! recording-script? #t))
;; save the current script to file and replace existing
(define (save-script file)
(let ((write-file (λ () (begin
(with-handlers ([exn:fail?
(λ (e) (displayln "Access denied writing file. Try again."))])
(display-lines-to-file (all-but-last (reverse current-script)) file #:exists 'replace #:separator #"\r"))
(set! recording-script? #f)))))
(if (file-exists? file)
(when (show-confirmation-line "File exists. Overwrite?")
(write-file))
(write-file))))
;; Input loop
(define (input-loop)
(let/ec break
(let loop ()
(display-prompt) ; display command prompt
(define command (clean-up (read-line))) ; get input from user; trim and remove annoying enters and returns
(when recording-script? (record-script command))
(cond [(string=? command "") (loop)] ; if nothing entered, loop
[(string-prefix? command "exit") (break)] ; the only thing that breaks the loop apart from ctrl-c
[(built-in? command) (handle-built-in command)] ; detect built-in commands and handle them
[(local-var? command) (displayln (evaluate command))] ; if the command is recognized as a local variable, display its value
[(string-prefix? command "(") (begin (evaluate command) (newline))] ; Evaluate s-expressions directly
[(file-exists? command) (run# command)] ; if the file specified exists, run it
[(cond ((file-exists? (+ command ".exe")) (run# (+ command ".exe"))) ; else,
((file-exists? (+ command ".com")) (run# (+ command ".com"))) ; if a similar file with an executable extension is found,
((file-exists? (+ command ".bat")) (run# (+ command ".bat"))) ; run
((file-exists? (+ command ".sh")) (run# (+ command ".sh"))))] ; it.
[else (invalid-command command)])
(loop)))
(displayln "Goodbye!"))
;; macros
;; a cosmetic macro -- adds then, else
(define-syntax my-if ; macro name
(syntax-rules (then else) ; literals it uses, if any
((my-if e1 then e2 else e3) ; pattern
(if e1 e2 e3)))) ; template
;; shortcuts
(define no null?)
(define mkdir make-directory)
(define cp copy-directory/files)
(define rm delete-file)
(define rmdir delete-directory)
(define (show v)
(for-each displayln v))
;; double string-replace
(define (string-replace2 s p1 p2 r1 r2)
(string-replace (string-replace s p1 r1) p2 r2))
;; displays current directory or changes it - supports 'cd ~' and 'cd ~/Downloads'
(define cd
(λ args
(cond ((no args) (current-directory))
(else (let ((fa (first args)))
(cond ((string? fa) (cond ((string=? fa "~") (current-directory (find-system-path 'home-dir)))
((string-prefix? fa "~/") (current-directory (+ (path->string (find-system-path 'home-dir)) (string-replace fa "~/" ""))))
(else (current-directory fa))))
(else (current-directory args))))))))
(define (cd/) (cd "/"))
(define (cd\\) (cd "\\"))
(define (cd..) (cd ".."))
;; create an empty file
(define (touch file)
(display-to-file "" file))
;; prints the current working directory path as a string
(define (pwd)
(displayln (path->string (current-directory))))
;; lists the files in the current directory
(define dir directory-list)
;; dir
(define (ll)
(display (string-replace
(with-output-to-string (λ () (system (cond ((equal? (system-type 'os) 'windows) "dir")
((equal? (system-type 'os) 'unix) "ls -la")
((equal? (system-type 'os) 'macosx) "ls -la")
(else "ls -la")))))
"\r" "")))
;; unix cat equivalent
(define (cat file)
(if (> (file-size file) 64000) (displayln "File too big for display.")
(let ([in (open-input-file file #:mode 'text)])
(displayln (read-string (file-size file) in)))))
;; prints the current working directory listing as a string
(define (ls)
(for-each displayln (map path->string (directory-list))))
;; prints the current working directory listing as a string with file sizes and types
(define (ll#)
(let* ((paths (directory-list))
(listing (map path->string paths))
(sizes (map number->string (map file-size paths)))
(files-and-sizes (map
(λ (s1 s2) (+ s1 " " s2))
listing sizes)))
(for-each displayln files-and-sizes)))
;; run a program from the current directory
(define (run program [params ""])
(void (shell-execute #f (+ (path->string (current-directory)) program) params
(current-directory) 'sw_shownormal)))
;; run a program from the path supplied and detects the absolute path
(define (run# program [params ""])
(void (shell-execute #f (if (or (string-contains? program "/")
(string-contains? program "\\")) program (+ (path->string (current-directory)) program))
params
(current-directory) 'sw_shownormal)))
;; edit a file using DrRacket
(define (racket file)
(void (shell-execute "open" file ""
(current-directory) 'sw_shownormal)))
;; edit the present lsh source file using DrRacket
(define (edit-me)
(void (shell-execute "open" (+ (current-directory-for-user) "lsh.rkt") ""
(current-directory-for-user) 'sw_shownormal)))
;; edit a file using notepad
(define (edit file)
(void (shell-execute "open" "notepad" file
(current-directory) 'sw_shownormal)))
;; open an URL
(define (url url)
(void (shell-execute #f (+ "http://" url) ""
(current-directory) 'sw_shownormal)))
;; google something
(define (google something)
(void (shell-execute #f (+ "https://www.google.com/search?q=" (string-replace something " " "+")) ""
(current-directory) 'sw_shownormal)))
;; google I'm feeling lucky
(define (search something)
(void (shell-execute #f (+ "https://www.google.com/search?q=" (string-replace something " " "+") "&btnI") ""
(current-directory) 'sw_shownormal)))
;; better find-files
(define (any file) #t)
(define (all-but-first-two s) (list->string (cddr (string->list s))))
(define (all-but-last-two s) (list->string (reverse (cddr (reverse (string->list s))))))
(define (all-but-last-three s) (list->string (reverse (cdddr (reverse (string->list s))))))
(define begins-with? string-prefix?)
(define ends-with? string-suffix?)
(define find
(λ args
(cond ((no args) (find-files any))
(else (let ((fa (first args)))
(cond ((string? fa) (cond ((begins-with? fa "*.") (find-files (λ (path) (ends-with? (path->string path) (+ "." (all-but-first-two fa))))))
((ends-with? fa "*.*") (find-files (λ (path) (begins-with? (path->string path) (all-but-last-three fa)))))
((ends-with? fa ".*") (find-files (λ (path) (begins-with? (path->string path) (+ (all-but-last-two fa) ".")))))
(else (find-files (λ (s) (string=? s fa))))))
(else (find-files args))))))))
;;; main
(about)
(newline)
; (when (not (debug-mode)) (input-loop)) ; for debugging only
(input-loop)
| true |
a4d6aebc4506300aeff0d787cfb82a650f4a376b | 0031a2836d69c76773f63a60949c02668adfd602 | /chapter1/ex1.27-carmichael.rkt | 8cca371da603656fb3a31793e78d6500966e3d6d | []
| no_license | hitalex/SICP-solutions | 3a9be86ade702661e8965b9d730e0514be66cedf | d3c7f34fb513c197d037f99afa0abc88dbaa6a3e | refs/heads/master | 2020-06-24T17:36:18.457082 | 2017-01-08T14:49:40 | 2017-01-08T14:49:40 | 74,629,242 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 503 | rkt | ex1.27-carmichael.rkt | #lang racket
(define (square x)
(* x x)
)
(define (even? x)
(= (remainder x 2) 0)
)
(define (fast-expt b n)
(cond ((= n 0) 1)
((even? n) (square (fast-expt b (/ n 2))))
(else (* b (fast-expt b (- n 1))))
)
)
(define (carmichael? n)
(check? n 2)
)
(define (mod? n a)
(= (remainder (fast-expt a n) n) a)
)
(define (check? n a)
(if (>= a n) true
(if (mod? n a) (check? n (+ a 1))
(= 1 0))
)
)
(carmichael? 8)
(carmichael? 1105) | false |
88fa54e12f829f2ae47b5f4753393c0f78a364a7 | 34306522a096b820d94dfa6b6fd58b4b0eb8274b | /src/system-lpc17xx.rkt | 6d99266c31d969b7d43dbd98946c68c76649ecea | []
| no_license | LoEE/lpc1xxx-hw | 2b3ee8a3be2ff307ef88885bba94c1dbf932632b | a919fae73098b3a0f450dadf51733a164a1a0f91 | refs/heads/master | 2021-01-23T09:53:30.795638 | 2015-12-11T21:18:58 | 2015-12-11T21:22:00 | 12,655,628 | 2 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 13,177 | rkt | system-lpc17xx.rkt | #lang at-exp racket
(require scribble/text
"common.rkt")
(define output-dir "../system")
(define (main)
(parameterize ([current-directory output-dir])
(with-output-to-file "LPC17xx.h" #:exists 'replace
(λ () (output (generate-17xx-system))))))
(define (decl name . args)
@list{INLINE void @|name|_setup (@(add-newlines #:sep ", " args))})
(define (clksrc-switch arg var options)
@list{switch (@arg) {
@(for/nl ([opt (in-list options)])
@list{case @(car opt): @var = @(cdr opt); break;})
case KEEP_SRC: @var = -1; break;
default: ERROR("Invalid clock source.");
}})
(define (check-range min var max desc)
@list{if (@var < @min || @var > @max) ERROR("@desc value out of range [@|min|-@|max|].");})
(define (set/mask reg mask val)
@list{@reg = (@reg & ~(@mask)) | (@val);})
(define (set/bit reg bit val)
(set/mask reg @list{1 << @bit} @list{@val ? 1 << @bit : 0}))
(define (assoc/if in out error pairs)
@list{@(add-newlines #:sep "\nelse "
(for/list ([p (in-list pairs)])
@list{if (@in == @(car p)) @out = @(cdr p);}))
else ERROR ("@error");})
(define (generate-17xx-system)
@list{
@header[url]{System configuration functions for the LPC17xx processors.}
@cpp-wrap['SYSTEM]{
enum sysosc_mode {
SYSOSC_OFF,
@;SYSOSC_BYPASS,
SYSOSC_SLOW,
SYSOSC_FAST,
};
@(decl 'sysosc "enum sysosc_mode range")
{
if (range == SYSOSC_OFF) {
@(set/bit 'LPC_SC->SCS 5 0)
} else {
int t = 1 << 5;
if (range == SYSOSC_FAST) {
t |= 1 << 4;
}
LPC_SC->SCS = t;
while (!(LPC_SC->SCS & (1 << 6)));
}
}
enum clock_source {
CLK_OFF = -2,
KEEP_SRC = -1,
OSC_IRC,
OSC_SYS,
OSC_RTC,
};
@(decl 'system_clock_source "enum clock_source src")
{
int s = 0;
@(clksrc-switch 'src 's '([OSC_IRC 0]
[OSC_SYS 1]
[OSC_RTC 2]))
if (s != -1) {
LPC_SC->CLKSRCSEL = s;
}
}
@(decl 'cpu_clock_divider "int div")
{
@check-range[1 'div 256]{CPU clock divider}
LPC_SC->CCLKCFG = div - 1;
}
@(decl 'usb_clock_divider "int div")
{
switch(div) {
case 6:
case 8:
case 10:
LPC_SC->USBCLKCFG = div - 1; break;
default:
ERROR("Invalid USB clock divider (not 6, 8 or 10)."); break;
}
}
INLINE void pll_setup_shared (int in, int out, int evenpost, volatile uint32_t *reg, volatile uint32_t *postdivreg)
{
int mul = 0, prediv = 0, postdiv = 0, ok = 0;
#define PLL_SETUP_PREDIV_CHECK(p) ({ \
prediv = p; \
mul = out * prediv / in / 2; \
double freq = in * mul * 2 / prediv; \
postdiv = (275000000 + freq - 1) / freq; \
if (evenpost) postdiv = (postdiv + 1) / 2 * 2; \
mul *= postdiv; \
if (in * mul * 2 / prediv < 550000000) \
if (in * mul * 2 / prediv / postdiv == out) { ok = 1; goto ok; } \
})
@(for/nl ([i (in-range 1 33)])
@list{PLL_SETUP_PREDIV_CHECK(@i);})
#undef PLL_SETUP_PREDIV_CHECK
if(!ok) ERROR("The PLL cannot synthesize the desired output frequency.");
ok:
@check-range[6 'mul 512]{Required PLL frequency multiplier}
@check-range[1 'postdiv 256]{Required PLL post divider}
mul--; prediv--; postdiv--;
*reg = mul << 0 | prediv << 16;
*postdivreg = postdiv;
}
INLINE void syspll_feed (void)
{
LPC_SC->PLL0FEED = 0xAA;
LPC_SC->PLL0FEED = 0x55;
}
INLINE void syspll_connect (int on)
{
@(set/bit 'LPC_SC->PLL0CON 1 'on)
syspll_feed();
}
INLINE void syspll_power (int on)
{
syspll_connect(0);
@(set/bit 'LPC_SC->PLL0CON 0 'on)
syspll_feed();
}
INLINE int syspll_locked (void)
{
return LPC_SC->PLL0STAT & (1 << 26);
}
@(decl 'syspll "int in" "int out")
{
syspll_power(0);
if (out == 0) return;
pll_setup_shared (in, out, 0, &LPC_SC->PLL0CFG, &LPC_SC->CCLKCFG);
syspll_feed();
syspll_power(1);
while (!syspll_locked());
syspll_connect(1);
}
INLINE void set_power (int bit, int on)
{
@(set/bit 'LPC_SC->PCONP 'bit 'on)
}
INLINE void set_pclk (int shift, int div)
{
if(div == 0) return;
if(shift & 1 || shift == 10 || shift == 18 || shift == 40)
ERROR("Invalid PCLK divider register shift.");
if(shift == 18 && div != 4)
ERROR("RTC PCLK can only be divided by 4.");
int is_can = (shift == 26 || shift == 28 || shift == 30);
switch (div) {
case 1: break;
case 2: break;
case 4: div = 0; break;
case 6:
if(!is_can)
ERROR("PCLK division by 6 is only possible for CAN");
div = 3;
break;
case 8:
if(is_can)
ERROR("PCLK division by 8 is not possible for CAN");
div = 3;
break;
default:
if(is_can)
ERROR("Invalid PCLK divider value for CAN (not 1, 2, 4 or 6)");
else
ERROR("Invalid PCLK divider value (not 1, 2, 4 or 8)");
}
if (shift < 32)
@(set/mask 'LPC_SC->PCLKSEL0 "3 << shift" "div << shift")
else {
shift -= 32;
@(set/mask 'LPC_SC->PCLKSEL1 "3 << shift" "div << shift")
}
}
@(decl 'wdt_pclk "int div") { set_pclk (1, div); }
@(decl 'timer0_pclk "int div") { set_power (1, div != 0); set_pclk (2, div); }
@(decl 'timer1_pclk "int div") { set_power (2, div != 0); set_pclk (4, div); }
@(decl 'uart0_pclk "int div") { set_power (3, div != 0); set_pclk (6, div); }
@(decl 'uart1_pclk "int div") { set_power (4, div != 0); set_pclk (8, div); }
@(decl 'pwm1_pclk "int div") { set_power (6, div != 0); set_pclk (12, div); }
@(decl 'i2c0_pclk "int div") { set_power (7, div != 0); set_pclk (14, div); }
@(decl 'spi_pclk "int div") { set_power (8, div != 0); set_pclk (16, div); }
@(decl 'rtc_pclk "int div") { set_power (9, div != 0); set_pclk (18, div); }
@(decl 'ssp1_pclk "int div") { set_power (10, div != 0); set_pclk (20, div); }
@(decl 'dac_pclk "int div") { set_pclk (22, div); }
@(decl 'adc_pclk "int div") { set_power (12, div != 0); set_pclk (24, div); }
@(decl 'can1_pclk "int div") { set_power (13, div != 0); set_pclk (26, div); }
@(decl 'can2_pclk "int div") { set_power (14, div != 0); set_pclk (28, div); }
@(decl 'can_acf_pclk "int div") { set_pclk (30, div); }
@(decl 'gpio_pclk "int div") { set_power (15, div != 0); set_pclk (34, div); set_pclk (36, div); }
@(decl 'rit_pclk "int div") { set_power (16, div != 0); set_pclk (58, div); }
@(decl 'mcpwm_pclk "int div") { set_power (17, div != 0); set_pclk (62, div); }
@(decl 'qei_pclk "int div") { set_power (18, div != 0); set_pclk (32, div); }
@(decl 'i2c1_pclk "int div") { set_power (19, div != 0); set_pclk (38, div); }
@(decl 'ssp0_pclk "int div") { set_power (21, div != 0); set_pclk (42, div); }
@(decl 'timer2_pclk "int div") { set_power (22, div != 0); set_pclk (44, div); }
@(decl 'timer3_pclk "int div") { set_power (23, div != 0); set_pclk (46, div); }
@(decl 'uart2_pclk "int div") { set_power (24, div != 0); set_pclk (48, div); }
@(decl 'uart3_pclk "int div") { set_power (25, div != 0); set_pclk (50, div); }
@(decl 'i2c2_pclk "int div") { set_power (26, div != 0); set_pclk (52, div); }
@(decl 'i2s_pclk "int div") { set_power (27, div != 0); set_pclk (54, div); }
@(decl 'dma_pclk "int div") { set_power (29, div != 0); }
@(decl 'enet_pclk "int div") { if(div != 0 && div != 1) ERROR("Ethernet clock cannot be divided, only disabled."); set_power (30, div != 0); }
@(decl 'usb_pclk "int div") { set_power (31, div != 0); }
@(decl 'syscon_pclk "int div") { if(div == 0) ERROR("SYSCON PCLK cannot be disabled."); set_pclk (60, div); }
}
@;{
#ifdef CPU_HAS_USB
@(decl 'usbpll "int on" "enum clock_source src" "int in" "int out")
{
set_power (8, 0);
if (!on) return;
pll_setup_shared (in, out, &LPC_SYSCON->USBPLLCTRL);
int s = 0;
@(clksrc-switch 'src 's '([OSC_IRC 0]
[OSC_SYS 1]))
if (s != -1) {
LPC_SYSCON->USBPLLCLKSEL = s;
LPC_SYSCON->USBPLLCLKUEN = 0;
LPC_SYSCON->USBPLLCLKUEN = 1;
}
set_power (8, 1);
while (!LPC_SYSCON->USBPLLSTAT);
}
#endif // CPU_HAS_USB
INLINE void set_power (int bit, int on)
{
@(set/bit 'LPC_SYSCON->PDRUNCFG 'bit "!on")
}
@(decl 'rom "int on") { set_clock (1, on); }
@(decl 'ram "int on") { set_clock (2, on); }
#define FLASHCFG (*(volatile uint32_t *)(0x4003C010))
@(decl 'flash_timing "int clock")
{
int t = 0;
if (clock > 72e6) ERROR("Clock frequency too high (> 72 Mhz).");
if (clock > 40e6) t = 2;
else if (clock > 20e6) t = 1;
else t = 0;
@(set/mask 'FLASHCFG #x3 't)
}
@(decl 'flash_registers "int on") { set_clock (3, on); }
@(decl 'flash_array "int on") { set_clock (4, on); }
@(decl 'i2c_system "int on")
{
set_clock (5, on);
@(set/bit 'LPC_SYSCON->PRESETCTRL 1 'on)
}
@(decl 'gpio "int on") { set_clock (6, on); }
@(decl 'ct16b0 "int on") { set_clock (7, on); }
@(decl 'ct16b1 "int on") { set_clock (8, on); }
@(decl 'ct32b0 "int on") { set_clock (9, on); }
@(decl 'ct32b1 "int on") { set_clock (10, on); }
@(decl 'iocon "int on") { set_clock (16, on); }
@(decl 'irc "int on") { set_power (1, on); set_power (0, on); }
@(decl 'flash "int on") { set_power (2, on); }
@(decl 'bod "int on" "int reset" "float int_level")
{
set_power (3, on);
int lvl = 0;
@(assoc/if 'int_level 'lvl "Invalid BOD interrupt level."
`([1.69f . 0]
[2.29f . 1]
[2.59f . 2]
[2.87f . 3]))
LPC_SYSCON->BODCTRL = (lvl << 2) | (reset ? 1 << 4 : 0);
}
@(decl 'wdtosc "int clk" "int div") {
set_power (6, clk ? 1 : 0);
int freq;
@check-range[2 'div 64]{Watchdog clock divider}
if (div % 2) ERROR("Watchdog clock divider must be even.");
div = div / 2 - 1;
if (clk) {
@(assoc/if 'clk 'freq "Invalid watchdog oscillator frequency."
`([0.5 . 1]
[0.8 . 2]
[1.1 . 3]
[1.4 . 4]
[1.6 . 5]
[1.8 . 6]
[2.0 . 7]
[2.2 . 8]
[2.4 . 9]
[2.6 . 10]
[2.7 . 11]
[2.9 . 12]
[3.1 . 13]
[3.2 . 14]
[3.4 . 15]))
}
LPC_SYSCON->WDTOSCCTRL = div << 0 | freq << 5;
}
@(decl 'system_clock "enum clock_source src" "int div")
{
@check-range[0 'div 255]{System (AHB) clock divider}
int s = 0;
@(clksrc-switch 'src 's '([OSC_IRC 0]
[PLL_SYS_IN 1]
[OSC_WDT 2]
[PLL_SYS 3]))
if (s != -1) {
LPC_SYSCON->SYSAHBCLKDIV = 255;
LPC_SYSCON->MAINCLKSEL = s;
LPC_SYSCON->MAINCLKUEN = 0;
LPC_SYSCON->MAINCLKUEN = 1;
}
LPC_SYSCON->SYSAHBCLKDIV = div;
}
@(decl 'clkout "enum clock_source src" "int div")
{
@check-range[0 'div 255]{CLKOUT divider}
int s = 0;
LPC_SYSCON->CLKOUTDIV = div;
@(clksrc-switch 'src 's '([OSC_IRC 0]
[OSC_SYS 1]
[OSC_WDT 2]
[CLK_MAIN 3]))
if (s != -1) {
LPC_SYSCON->CLKOUTCLKSEL = s;
LPC_SYSCON->CLKOUTUEN = 0;
LPC_SYSCON->CLKOUTUEN = 1;
}
}
@(decl 'wdt "enum clock_source src" "int div")
{
@check-range[0 'div 255]{Watchdog clock divider}
set_clock (15, div ? 1 : 0);
int s = 0;
LPC_SYSCON->WDTCLKDIV = div;
@(clksrc-switch 'src 's '([OSC_IRC 0]
[CLK_MAIN 1]
[OSC_WDT 2]))
if (s != -1) {
LPC_SYSCON->WDTCLKSEL = s;
LPC_SYSCON->WDTCLKUEN = 0;
LPC_SYSCON->WDTCLKUEN = 1;
}
}
#ifdef CPU_HAS_USB
@(decl 'usb_clock "enum clock_source src" "int div")
{
@check-range[0 'div 255]{USB clock divider}
set_power (10, div ? 1 : 0); set_clock (14, div ? 1 : 0);
int s = 0;
LPC_SYSCON->USBCLKDIV = div;
@(clksrc-switch 'src 's '([PLL_USB 0]
[CLK_MAIN 1]))
if (s != -1) {
LPC_SYSCON->USBCLKSEL = s;
LPC_SYSCON->USBCLKUEN = 0;
LPC_SYSCON->USBCLKUEN = 1;
}
}
#endif // CPU_HAS_USB
@(decl 'systick_clock "int div")
{
@check-range[0 'div 255]{SYSTICK timer clock divider}
LPC_SYSCON->SYSTICKCLKDIV = div;
}
@(decl 'trace_clock "int div")
{
@check-range[0 'div 255]{ARM trace clock divider}
LPC_SYSCON->TRACECLKDIV = div;
}
@(decl 'uart_clock "int div")
{
@check-range[0 'div 255]{UART clock divider}
set_clock (12, div ? 1 : 0);
LPC_SYSCON->UARTCLKDIV = div;
}
#define ssp_clock_setup ssp0_clock_setup
@(decl 'ssp0_clock "int div")
{
@check-range[0 'div 255]{SSP clock divider}
set_clock (11, div ? 1 : 0);
LPC_SYSCON->SSP0CLKDIV = div;
@(set/bit 'LPC_SYSCON->PRESETCTRL 0 'div)
}
@(decl 'ssp1_clock "int div")
{
@check-range[0 'div 255]{SSP clock divider}
set_clock (18, div ? 1 : 0);
LPC_SYSCON->SSP1CLKDIV = div;
@(set/bit 'LPC_SYSCON->PRESETCTRL 2 'div)
}
@(decl 'adc_system "int on") { set_power (4, on); set_clock (13, on); }
enum memory_map {
MEMORY_MAP_BOOT = 0,
MEMORY_MAP_RAM = 1,
MEMORY_MAP_FLASH = 2,
};
@(decl 'memory_map "enum memory_map map")
{
LPC_SYSCON->SYSMEMREMAP = map;
}
}
})
(main)
| false |
0d13386b102ce1e65681c06753b6c43b74e64e95 | b3e61e6f9433fc153f8b17943b08d9ef56b076a1 | /examples/hello.rkt | ade13bac6f32c75b25426281ce8d24feab2f5727 | [
"CC0-1.0"
]
| permissive | dyoo/brainfudge | f32ae3748683208732fb3ed84567f5af6b5c491a | cafaa03cf710f13a2ce5f381ba17c6dfd2ef493a | refs/heads/master | 2021-06-03T23:38:33.296177 | 2016-03-18T18:51:45 | 2016-03-18T18:51:45 | 1,878,008 | 26 | 9 | CC0-1.0 | 2020-05-05T18:32:26 | 2011-06-10T21:14:18 | Racket | UTF-8 | Racket | false | false | 919 | rkt | hello.rkt | #lang s-exp (planet dyoo/bf/language)
(plus)(plus)(plus)(plus)(plus) (plus)(plus)(plus)(plus)(plus)
(brackets
(greater-than) (plus)(plus)(plus)(plus)(plus) (plus)(plus)
(greater-than) (plus)(plus)(plus)(plus)(plus) (plus)(plus)(plus)(plus)(plus)
(greater-than) (plus)(plus)(plus)
(greater-than) (plus)
(less-than)(less-than)(less-than)(less-than) (minus))
(greater-than) (plus)(plus) (period)
(greater-than) (plus) (period)
(plus)(plus)(plus)(plus)(plus) (plus)(plus) (period)
(period)
(plus)(plus)(plus) (period)
(greater-than) (plus)(plus) (period)
(less-than)(less-than) (plus)(plus)(plus)(plus)(plus)
(plus)(plus)(plus)(plus)(plus) (plus)(plus)(plus)(plus)(plus) (period)
(greater-than) (period)
(plus)(plus)(plus) (period)
(minus)(minus)(minus)(minus)(minus) (minus) (period)
(minus)(minus)(minus)(minus)(minus) (minus)(minus)(minus) (period)
(greater-than) (plus) (period)
(greater-than) (period) | false |
a5412bb22e61996c623cf0bb66ede6c5164e04ce | 2bee16df872240d3c389a9b08fe9a103f97a3a4f | /racket/P131.rkt | 2b7eee85b0c99de377b5724901cb7a74aae69e48 | []
| no_license | smrq/project-euler | 3930bd5e9b22f2cd3b802e36d75db52a874bd542 | 402419ae87b7180011466d7443ce22d010cea6d1 | refs/heads/master | 2021-01-16T18:31:42.061121 | 2016-07-29T22:23:05 | 2016-07-29T22:23:05 | 15,920,800 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,049 | rkt | P131.rkt | #lang racket
(require "primes.rkt")
(define (cube n) (* n n n))
(define limit (expt 10 6))
(define primes (primes-up-to limit))
(define perfect-cubes (mutable-set))
(define perfect-cubes-highest-n 0)
(define perfect-cubes-highest 0)
; Ensures the precomputed set of cubes contains all cubes up to at least x
(define (expand-cube-set x)
(let loop ()
(when (> x perfect-cubes-highest)
(set! perfect-cubes-highest-n (add1 perfect-cubes-highest-n))
(set! perfect-cubes-highest (cube perfect-cubes-highest-n))
(set-add! perfect-cubes perfect-cubes-highest)
(loop))))
(define (perfect-cube? n)
(expand-cube-set n)
(set-member? perfect-cubes n))
(define (has-partner? p)
(let loop ([cube-root-n 1] [n 1])
(or (perfect-cube? (+ n p))
(let ([next-n (cube (add1 cube-root-n))])
(and (> p (- next-n n))
(loop (add1 cube-root-n) next-n))))))
(define partnered-primes
(for/list ([p primes]
#:when (has-partner? p))
p))
partnered-primes
(length partnered-primes)
| false |
ecf7cec28d02a02ef4f8b3b6656679c96cb283dd | c26e458dcb84efa956becc2631bdea43a2b36965 | /cegis/core/util.rkt | 11e094cdfa34de6d698b4b2f9c52302243438205 | []
| no_license | remysucre/fgh | ad69af9843d685999c591a27ce2762847400d5f4 | 74cf744f43c54f86c1f918d6ef9217795934cc12 | refs/heads/main | 2023-06-23T03:28:40.501571 | 2021-07-09T20:02:49 | 2021-07-09T20:02:49 | 382,478,541 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,825 | rkt | util.rkt | #lang rosette
(require "ops.rkt")
(require rosette/lib/destruct)
(provide (all-defined-out))
(define (exp->struct e var rel fun)
(define (run e)
(match e
[`(I ,e) (op-I (run e))]
[`(inv ,e) (op-inv (run e))]
[`(* ,x ,y) (op-* (run x) (run y))]
[`(+ ,x ,y) (op-+ (run x) (run y))]
[`(- ,x ,y) (op-- (run x) (run y))]
[`(div ,x ,y) (op-/ (run x) (run y))]
[`(= ,x ,y) (op-eq? (run x) (run y))]
[`(<= ,x ,y) (op-leq (run x) (run y))]
[`(sum ,y ,e) (op-sum (run y) (run e))]
[`(rel ,r ,vs ...) (op-rel (hash-ref rel r) (map run vs))]
[`(,f ,vs ...) (op (hash-ref fun f) (map run vs))]
[_ (hash-ref var e e)]))
(run e))
(define (struct->exp e var rel fun)
(define (run e)
(match e
[(op-I e) `(I ,(run e))]
[(op-inv e) `(inv ,(run e))]
[(op-* x y) `(* ,(run x) ,(run y))]
[(op-+ x y) `(+ ,(run x) ,(run y))]
[(op-- x y) `(- ,(run x) ,(run y))]
[(op-/ x y) `(div ,(run x) ,(run y))]
[(op-eq? x y) `(= ,(run x) ,(run y))]
[(op-leq x y) `(<= ,(run x) ,(run y))]
[(op-sum v b) `(sum ,(run v) ,(run b))]
[(op-rel r es) `(rel ,(hash-ref rel r) ,@(map run es))]
[(op f es) `(,(hash-ref fun f) ,@(map run es))]
[_ (hash-ref var e e)]))
(run e))
(define (make-pattern e)
(match e
[`(rel ,r ,xs ...) `(rel ,r ,@(map make-pattern xs))]
[`(,o ,xs ...) `(,o ,@(map make-pattern xs))]
[(? symbol? e) (~a '? e)]
[_ e]))
(define semiring-path "../semiring/target/release/semiring")
(define (semiring e . args)
(define out
(with-output-to-string
(λ () (parameterize
([current-input-port (open-input-string (~s e))])
(apply system* (cons semiring-path args))))))
(read (open-input-string (string-normalize-spaces out))))
| false |
f516d8e8624db94224ca7878c1fdf81023a5bfc8 | 47962cdf51f076ca3ddee9111d0de2456c6db505 | /private/simple/aggregate.rkt | 4322cf64efbb366df562b1e683e94ddbac190ed6 | []
| no_license | MislankaNova/racket-llvm | 77a1b8651fcfd31c4be82d9d9b5f64bddb0029f7 | 3eb557b0fe4bddfdfce8e8f4659d218535daa061 | refs/heads/master | 2020-03-31T23:39:12.664847 | 2015-06-06T21:32:24 | 2015-06-06T21:32:24 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 6,497 | rkt | aggregate.rkt | #lang racket/base
(require
racket/contract
unstable/contract
racket/list
"parameters.rkt"
"types.rkt"
"indexed-types.rkt"
"values.rkt"
"util.rkt"
"convertible.rkt"
"predicates.rkt"
"../ffi/safe.rkt")
(provide
(contract-out
;Predicates
(llvm:array? predicate/c)
(llvm:struct? predicate/c)
(llvm:vector? predicate/c)
(llvm-extract-element llvm-extract-element/c)
(llvm-insert-element llvm-insert-element/c)
(llvm-extract-value llvm-extract-value/c)
(llvm-insert-value llvm-insert-value/c)
(llvm-vector llvm-vector/c)
(llvm-vector* llvm-vector*/c)
(llvm-constant-array llvm-constant-array/c)
(llvm-constant-array* llvm-constant-array*/c)
(llvm-struct
(->* () (#:context llvm:context?
#:packed boolean?)
#:rest (listof llvm-value/c) llvm:value?))
(llvm-named-struct
(->* (llvm:named-struct-type?)
#:rest (listof llvm-value/c) llvm:value?)))) ;TODO Make contract tighter
;Predicates
(define (llvm:array? v)
(and (llvm:value/c v)
(llvm:array-type?
(value->llvm-type v))))
(define (llvm:struct? v)
(and (llvm:value/c v)
(llvm:struct-type?
(value->llvm-type v))))
(define (llvm:vector? v)
(and (llvm:value/c v)
(llvm:vector-type?
(value->llvm-type v))))
;Contracts
(define llvm-extract-element/c
(->* (llvm:vector?
llvm-integer32/c)
(#:builder llvm:builder?
#:name string?)
llvm:value?))
(define llvm-insert-element/c
(->i ((vector llvm:vector?)
(arg llvm-value/c)
(index llvm-integer32/c))
(#:builder (builder llvm:builder?)
#:name (name string?))
#:pre/name (vector arg)
"Element and vector types don't match"
(equal? (llvm-get-element-type (value->llvm-type vector))
(value->llvm-type arg))
(_ llvm:value?)))
(define llvm-extract-value/c
(->i ((aggregate (or/c llvm:array? llvm:struct?))
(index exact-nonnegative-integer?))
(#:builder (builder llvm:builder?)
#:name (name string?))
#:pre/name (aggregate index)
"Invalid array index"
(or (not (llvm:array? aggregate))
(let ((size (llvm-get-array-type-length (value->llvm-type aggregate))))
(or (zero? size)
(< index size))))
#:pre/name (aggregate index)
"Invalid struct index"
(or (not (llvm:struct? aggregate))
(llvm-is-valid-type-index (value->llvm-type aggregate) index))
(_ llvm:value?)))
(define llvm-insert-value/c
(->i ((aggregate (or/c llvm:array? llvm:struct?))
(arg llvm-value/c)
(index exact-nonnegative-integer?))
(#:builder (builder llvm:builder?)
#:name (name string?))
#:pre/name (aggregate index)
"Invalid array index"
(or (not (llvm:array? aggregate))
(let ((size (llvm-get-array-type-length (value->llvm-type aggregate))))
(or (zero? size)
(< index size))))
#:pre/name (aggregate index)
"Invalid struct index"
(or (not (llvm:struct? aggregate))
(llvm-is-valid-type-index (value->llvm-type aggregate) index))
#:pre/name (aggregate index arg)
"Element and aggregate types don't match"
(equal? (llvm-get-type-at-index (value->llvm-type aggregate) index)
(value->llvm-type arg))
(_ llvm:value?)))
(define llvm-vector/c
(->i ()
(#:builder (builder llvm:builder?))
#:rest (args (non-empty-listof llvm-value/c))
#:pre/name (args)
"Element types don't match"
(let ((t (value->llvm-type (first args))))
(andmap (lambda (e) (equal? t (value->llvm-type e)))
(rest args)))
(_ llvm:value?)))
(define llvm-vector*/c
(->i ()
(#:builder (builder llvm:builder?))
#:rest (args (non-empty-list*/c llvm-value/c))
#:pre/name (args)
"Element types don't match"
(let ((args (apply list* args)))
(let ((t (value->llvm-type (first args))))
(andmap (lambda (e) (equal? t (value->llvm-type e)))
(rest args))))
(_ llvm:value?)))
(define llvm-constant-array/c
(->i ()
()
#:rest (args (non-empty-listof llvm-constant-value/c))
#:pre/name (args)
"Element types don't match"
(let ((elem-type (value->llvm-type (first args))))
(for ((arg (rest args)))
(equal? elem-type (value->llvm-type arg))))
(_ llvm:value?)))
(define llvm-constant-array*/c
(->i ()
()
#:rest (args (non-empty-list*/c llvm-constant-value/c))
#:pre/name (args)
"Element types don't match"
(let ((args (apply list* args)))
(let ((elem-type (value->llvm-type (first args))))
(for ((arg (rest args)))
(equal? elem-type (value->llvm-type arg)))))
(_ llvm:value?)))
(define (llvm-extract-element v index #:builder (builder (current-builder)) #:name (name ""))
(LLVMBuildExtractElement builder (value->llvm v) (value->llvm index) name))
(define (llvm-insert-element v arg index #:builder (builder (current-builder)) #:name (name ""))
(LLVMBuildInsertElement builder (value->llvm v) (value->llvm arg) (value->llvm index) name))
(define (llvm-extract-value v index #:builder (builder (current-builder)) #:name (name ""))
(LLVMBuildExtractValue builder (value->llvm v) index name))
(define (llvm-insert-value v arg index #:builder (builder (current-builder)) #:name (name ""))
(LLVMBuildInsertValue builder (value->llvm v) (value->llvm arg) index name))
(define (llvm-vector #:builder (builder (current-builder)) . args)
(for/fold ((acc (llvm-null (llvm-vector-type (value->llvm-type (first args)) (length args)))))
((arg args) (i (in-naturals)))
(llvm-insert-element acc arg i #:builder builder)))
(define (llvm-vector* #:builder (builder (current-builder)) . args)
(apply llvm-vector #:builder builder (apply list* args)))
(define (llvm-constant-array . args)
(LLVMConstArray (value->llvm-type (first args))
(map value->llvm args)))
(define (llvm-constant-array* . args)
(apply llvm-constant-array (apply list* args)))
(define (llvm-struct #:context (context (current-context)) #:packed (packed #f) . args)
(LLVMConstStructInContext context (map value->llvm args) packed))
(define (llvm-named-struct ty . args)
(LLVMConstNamedStruct ty (map value->llvm args)))
| false |
78b8f0520ce23559f7b0ce0ee7df92e529f39bf5 | 71060ffeffa3469ec44ba661b04118b487fc0602 | /ch_2_general_arithmetic_package/complex_numbers.package.rkt | 41712158ad9a64d81ec413f82f07699a0a1c8504 | []
| no_license | ackinc/sicp | 18741d3ffc46041ecd08021d57a50702be2e0f92 | 4ee2250f8b7454fb88bc27edb41a1349d7a3016c | refs/heads/master | 2021-09-13T08:55:37.171840 | 2018-04-27T10:02:08 | 2018-04-27T10:02:08 | 114,095,803 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 3,058 | rkt | complex_numbers.package.rkt | #lang racket
(require "apply_generic.rkt")
(require "complex_numbers__polar.package.rkt")
(require "complex_numbers__rectangular.package.rkt")
(require "general_arithmetic_ops.rkt")
(require "hash_ops.rkt")
(require "type_tag_helpers.rkt")
(provide make-complex-from-real-imag make-complex-from-mag-ang
real-part imag-part magnitude angle)
(define (install-complex-number-package)
(define (make-from-real-imag x y)
((get 'make-from-real-imag 'rect) x y))
(define (make-from-mag-ang r a)
((get 'make-from-mag-ang 'polar) r a))
(define (real-part z) (apply-generic 'real-part z))
(define (imag-part z) (apply-generic 'imag-part z))
(define (magnitude z) (apply-generic 'magnitude z))
(define (angle z) (apply-generic 'angle z))
(define (add_c z1 z2)
(make-from-real-imag (add (real-part z1) (real-part z2))
(add (imag-part z1) (imag-part z2))))
(define (sub_c z1 z2)
(make-from-real-imag (sub (real-part z1) (real-part z2))
(sub (imag-part z1) (imag-part z2))))
(define (mul_c z1 z2)
(make-from-mag-ang (mul (magnitude z1) (magnitude z2))
(add (angle z1) (angle z2))))
(define (div_c z1 z2)
(make-from-mag-ang (div (magnitude z1) (magnitude z2))
(sub (angle z1) (angle z2))))
(define (equ?_c z1 z2)
(and (equ? (real-part z1) (real-part z2))
(equ? (imag-part z1) (imag-part z2))))
(define (=zero?_c z)
(and (equ? (real-part z) 0) (equ? (imag-part z) 0)))
(define (tag datum) (attach-tag 'complex datum))
(put 'make-from-real-imag 'complex (lambda (x y) (tag (make-from-real-imag x y))))
(put 'make-from-mag-ang 'complex (lambda (r a) (tag (make-from-mag-ang r a))))
(put 'real-part '(complex) real-part)
(put 'imag-part '(complex) imag-part)
(put 'magnitude '(complex) magnitude)
(put 'angle '(complex) angle)
(put 'add '(complex complex) (lambda (z1 z2) (tag (add_c z1 z2))))
(put 'sub '(complex complex) (lambda (z1 z2) (tag (sub_c z1 z2))))
(put 'mul '(complex complex) (lambda (z1 z2) (tag (mul_c z1 z2))))
(put 'div '(complex complex) (lambda (z1 z2) (tag (div_c z1 z2))))
(put 'equ? '(complex complex) equ?_c)
(put '=zero? '(complex) =zero?_c)
; ex 2.83
(put-coercion '(rational complex)
(lambda (rat)
(tag (make-from-real-imag (/ ((get 'numer 'rational) rat) ((get 'denom 'rational) rat)) 0))))
; ex 2.85
(put 'project '(complex) (lambda (z) ((get-coercion '(complex rational)) z)))
; ex 2.88
(put 'negate '(complex) (lambda (z) (tag (negate z))))
'installed-complex-number-package)
(install-complex-number-package)
(define (make-complex-from-real-imag x y)
((get 'make-from-real-imag 'complex) x y))
(define (make-complex-from-mag-ang r a)
((get 'make-from-mag-ang 'complex) r a))
(define (real-part z) (apply-generic 'real-part z))
(define (imag-part z) (apply-generic 'imag-part z))
(define (magnitude z) (apply-generic 'magnitude z))
(define (angle z) (apply-generic 'angle z)) | false |
61d27a3df2b16fd897df440d638be20559d80377 | 17126876cd4ff4847ff7c1fbe42471544323b16d | /beautiful-racket-demo/injunction-demo/test.rkt | 29c4131fb9b1d2c8bce60bed16024f51dc8ac713 | [
"MIT"
]
| permissive | zenspider/beautiful-racket | a9994ebbea0842bc09941dc6d161fd527a7f4923 | 1fe93f59a2466c8f4842f17d10c1841609cb0705 | refs/heads/master | 2020-06-18T11:47:08.444886 | 2019-07-04T23:21:02 | 2019-07-04T23:21:02 | 196,293,969 | 1 | 0 | NOASSERTION | 2019-07-11T00:47:46 | 2019-07-11T00:47:46 | null | UTF-8 | Racket | false | false | 54 | rkt | test.rkt | #lang injunction-demo
"hello world"
(+ 1 (* 2 (- x))) | false |
17903baafbb60f8610ca6be507a498b282131a4f | 9611e3784cc65b8ff07798c9c4de98b54cc90990 | /kernel/src/core/control.rkt | faf4cf6c952d088790e1971a6d53fb995b14c976 | []
| no_license | mikeurbach/kernel-racket | d9551e21420bb1e2c59a73af10da07a57f36dc12 | 2db5a91009877f20e58ee8343ee96a3bbe3b2cee | refs/heads/master | 2022-10-23T11:42:59.739043 | 2020-06-09T02:41:22 | 2020-06-09T02:41:22 | 169,695,648 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 554 | rkt | control.rkt | #lang racket
(require "boolean.rkt" "evaluator.rkt")
(provide kernel-inert kernel-inert? kernel-if)
(define (kernel-inert)
(void))
(define (kernel-inert? object)
(void? object))
(define (kernel-if args env)
(letrec ([predicate (car args)]
[consequent (cadr args)]
[alternative (caddr args)]
[result (kernel-eval predicate env)])
(cond [(eqv? result #t) (kernel-eval consequent env)]
[(eqv? result #f) (kernel-eval alternative env)]
[#t (raise-argument-error '$if "boolean?" result)])))
| false |
41fd99c39314dad96f5cf29fdc492d65217bee1c | 1a57d2f221dac189fa407998a1821e4dc5998f4c | /bf/lang/scanner.rkt | 164aae4fe94f70d32dded62b86898fabe8d399e7 | [
"CC0-1.0",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | thulsadum/racket-language-boilerplates | 90ba2afa0f4620891ff2f57392e33acf4ea5678d | e0f73daa889e32a7fc7295dd4510eef69ae15003 | refs/heads/master | 2021-07-08T00:43:03.397218 | 2017-10-04T20:48:35 | 2017-10-04T20:48:35 | 105,070,024 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 378 | rkt | scanner.rkt | #lang racket
(require brag/support)
(module+ test
(println (apply-tokenizer-maker make-tokenizer " + - < > [ \n ] . , weg")))
(define bf-lexer
(lexer-srcloc
[(eof) eof]
[(char-set "+-<>[].,") lexeme]
[any-char (return-without-srcloc (bf-lexer input-port))]))
(define (make-tokenizer in)
(port-count-lines! in)
(λ () (bf-lexer in)))
(provide make-tokenizer) | false |
f0d69647048a74c9b2dd4438ada892b70f81826f | 799b5de27cebaa6eaa49ff982110d59bbd6c6693 | /soft-contract/test/gradual-typing-benchmarks/lnm/summary.rkt | 804e63fa371d5dcce43ac28e72ff3a5f8e084838 | [
"MIT"
]
| permissive | philnguyen/soft-contract | 263efdbc9ca2f35234b03f0d99233a66accda78b | 13e7d99e061509f0a45605508dd1a27a51f4648e | refs/heads/master | 2021-07-11T03:45:31.435966 | 2021-04-07T06:06:25 | 2021-04-07T06:08:24 | 17,326,137 | 33 | 7 | MIT | 2021-02-19T08:15:35 | 2014-03-01T22:48:46 | Racket | UTF-8 | Racket | false | false | 5,658 | rkt | summary.rkt | #lang racket/base
;; Data structure representing the results of one experiment.
;; Handles queries for raw data and statistical summary data.
(provide
all-variations
from-rktd
get-num-variations
get-project-name
predicate->variations
(struct-out summary)
untyped-mean
variation->mean-runtime
)
;; -----------------------------------------------------------------------------
(require
racket/path
racket/stream
math/statistics
(only-in racket/file file->value)
(only-in racket/vector vector-append)
(only-in "modulegraph.rkt"
from-tex
module-names
path->project-name
project-name)
(only-in "bitstring.rkt"
bitstring->natural
log2
natural->bitstring)
)
;; =============================================================================
;; -- data definition: summary
(struct summary (
source ;; Path-String, the data's origin
dataset ;; (Vectorof (Listof Index)), the underlying experimental data
modulegraph ;; ModuleGraph, the adjacency list of the represented project
))
;; -----------------------------------------------------------------------------
;; -- constants
;; Default location for TiKZ module graphs
(define MODULE_GRAPH_DIR "module-graphs")
;; -----------------------------------------------------------------------------
;; -- parsing
(define-syntax-rule (parse-error msg arg* ...)
(error 'summary (format msg arg* ...)))
;; Create a summary from a raw dataset.
;; Infers the location of the module graph if #:graph is not given explicitly
;; (: from-rktd (->* [String] [#:graph (U Path #f)] Summary))
(define (from-rktd filename #:graph [graph-path #f])
(define path (string->path filename))
(define dataset (rktd->dataset path))
(define mg (from-tex (or graph-path (infer-graph path))))
(validate-modulegraph dataset mg)
(summary path dataset mg))
;; Parse a dataset from a filepath.
;; (: rktd->dataset (-> Path (Vectorof (Listof Index))))
(define (rktd->dataset path)
;; Check .rktd
(unless (bytes=? #"rktd" (filename-extension path))
(parse-error "Cannot parse dataset '~a', is not .rktd" (path->string path)))
;; Get data
(define vec (file->value path))
;; Check invariants
(validate-dataset vec))
;; Confirm that the dataset `vec` is a well-formed vector of experiment results.
;; (: validate-dataset (-> Any (Vectorof (Listof Index))))
(define (validate-dataset vec)
(unless (vector? vec) (parse-error "Dataset is not a vector"))
(unless (< 0 (vector-length vec)) (parse-error "Dataset is an empty vector, does not contain any entries"))
;; Record the number of runs in the first vector, match against other lengths
(define num-runs (box #f))
(for ([row-index (in-range (vector-length vec))])
(define inner (vector-ref vec row-index))
(unless (list? inner) (parse-error "Dataset is not a vector of lists found non-list entry '~a'" inner))
(if (not (unbox num-runs))
(set-box! num-runs (length inner))
(unless (= (unbox num-runs) (length inner)) (parse-error "Rows 0 and ~a of dataset have different lengths; all variations must describe the same number of runs.\n Bad row: ~a" row-index inner)))
(for ([val (in-list inner)])
(unless (exact-positive-integer? val)
(parse-error "Row ~a contains non-integer entry '~a'" row-index val))))
vec)
;; Check that the dataset and module graph agree
;; (: validate-modulegraph (-> (Vectorof (Listof Index)) ModuleGraph Void))
(define (validate-modulegraph dataset mg)
(define ds-num-modules (log2 (vector-length dataset)))
(define mg-num-modules (length (module-names mg)))
(unless (= ds-num-modules mg-num-modules)
(parse-error "Dataset and module graph represent different numbers of modules. The dataset says '~a' but the module graph says '~a'" ds-num-modules mg-num-modules)))
;; Guess the location of the module graph matching the dataset
;; (: infer-graph (-> Path Path-String))
(define (infer-graph path)
;; Get the prefix of the path
(define tag (path->project-name path))
;; Search in the MODULE_GRAPH_DIR directory for a matching TeX file
(define relative-pathstring (format "../~a/~a.tex" MODULE_GRAPH_DIR tag))
(build-path (path-only path)
(string->path relative-pathstring)))
;; -----------------------------------------------------------------------------
;; -- querying
(define (all-variations sm)
(define M (get-num-modules sm))
(stream-map (lambda (n) (natural->bitstring n #:pad M))
(in-range (get-num-variations sm))))
(define (get-module-names sm)
(module-names (summary-modulegraph sm)))
(define (get-num-variations sm)
(vector-length (summary-dataset sm)))
(define (get-num-modules sm)
(length (get-module-names sm)))
(define (get-project-name sm)
(project-name (summary-modulegraph sm)))
(define (predicate->variations sm p)
(stream-filter p (all-variations sm)))
;; Return all data for the untyped variation
(define (untyped-runtimes sm)
(vector-ref (summary-dataset sm) 0))
(define (untyped-mean sm)
(mean (untyped-runtimes sm)))
;; Return all data for the typed variation
(define (typed-runtimes sm)
(define vec (summary-dataset sm))
(vector-ref vec (sub1 (vector-length vec))))
;; Return all data for all gradually-typed variations
(define (gradual-runtimes sm)
(define vec (summary-dataset sm))
;; Efficient enough?
(apply append
(for/list ([i (in-range 1 (sub1 (vector-length vec)))])
(vector-ref vec i))))
(define (variation->mean-runtime sm var)
(index->mean-runtime sm (bitstring->natural var)))
(define (index->mean-runtime sm i)
(mean (vector-ref (summary-dataset sm) i)))
| true |
240310908913c7d0a8daa00571e25e06cbdb9c50 | 422ab8c69d8fa105596e580345053ae7deb9f2f1 | /ace.rkt | 27695b3abef0175a5194caaaf7b35c5057324524 | []
| no_license | rurbina/ace-server | f47802acf8bd731da75de770630058056a5735c0 | 6ef0877a83a684411852f59317a8f985ddab1f22 | refs/heads/master | 2022-09-01T15:33:14.548423 | 2022-08-03T21:55:46 | 2022-08-03T21:55:46 | 28,045,457 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 2,802 | rkt | ace.rkt | #lang web-server
(require web-server/servlet-env)
(provide (rename-out [ace-start ace]))
(define hosts #hash{["localhost" . #hash{}]})
(define (ace-server req)
(let ([tns (make-base-namespace)]
[hostname (hash-ref (make-hash (request-headers req)) 'host)]
[uri (regexp-replace #rx"\\?.*$" (url->string (request-uri req)) "")]
[query (url-query (request-uri req))]
[body null]
[filename null]
[filepath null]
[base-path "/www"]
[content-type TEXT/HTML-MIME-TYPE]
[settings null]
[http-code (list 200 #"OK")]
[query-hash null])
(for ([hostre (hash-keys hosts)])
(let ([hre (if (regexp? hostre) hostre (regexp hostre))])
(when (regexp-match hre hostname)
(set! settings (hash-ref hosts hostre)))))
(when (hash? settings)
(set! base-path (hash-ref settings 'base-path))
(eval '(require web-server/templates) tns)
(for ([mod (hash-ref settings 'modules '())])
(eval `(require ,mod) tns))
(eval `(current-directory ,base-path) tns)
(set! query-hash (make-hash query))
(namespace-set-variable-value! 'request req #f tns)
(namespace-set-variable-value! 'query query-hash #t tns)
(set! filename (string-join (list base-path uri) ""))
(set! body
(with-handlers
([exn:fail:filesystem? (lambda (v)
(set! http-code (list 404 #"Not Found"))
(set! content-type #"text/plain")
(format "~a" (exn-message v)))]
[exn:fail? (lambda (v)
(set! http-code (list 500 #"Server Error"))
(set! content-type #"text/plain")
(format "exception:\n~a" v))])
(set! filepath (build-path filename))
(set! filepath (find-relative-path (current-directory) filepath))
(unless (file-exists? filepath)
(raise (make-exn:fail:filesystem (format "File not found: ~a" uri)
(current-continuation-marks))))
(eval `(include-template ,(path->string filepath)) tns)))
(set! body (list (string->bytes/utf-8 body)))
(response/full (first http-code)
(second http-code)
(current-seconds)
content-type
null
body))))
(define (ace-start
#:hosts [ace-hosts null]
#:port [port 8086])
(when (hash? ace-hosts)
(set! hosts ace-hosts))
(serve/servlet ace-server
#:launch-browser? #f
#:servlet-regexp #px""
#:port port))
| false |
b89e93d5436fc054891413a7d38caa29ef400a31 | 56c17ee2a6d1698ea1fab0e094bbe789a246c54f | /2018/09.rkt | 7f2f90d72aacd8c42c8de8cf760c53232e690771 | [
"MIT"
]
| permissive | mbutterick/aoc-racket | 366f071600dfb59134abacbf1e6ca5f400ec8d4e | 14cae851fe7506b8552066fb746fa5589a6cc258 | refs/heads/master | 2022-08-07T10:28:39.784796 | 2022-07-24T01:42:43 | 2022-07-24T01:42:43 | 48,712,425 | 39 | 5 | null | 2017-01-07T07:47:43 | 2015-12-28T21:09:38 | Racket | UTF-8 | Racket | false | false | 2,006 | rkt | 09.rkt | #lang debug br
(require racket/file)
#|
This puzzle seemed annoying at first but turned out to be educational.
An epic difference between the naive solution (= make a list and iterate from the start)
and using a double-linked list, which minimizes traversal.
|#
(struct dll (val prev next) #:mutable)
(define (move-by dll n)
(define iterator
(match n
[(? positive?) dll-next]
[(? negative?) dll-prev]
[_ values]))
(for/fold ([dll dll])
([i (in-range (abs n))])
(iterator dll)))
(define (remove-marble! marble)
(set-dll-next! (dll-prev marble) (dll-next marble))
(set-dll-prev! (dll-next marble) (dll-prev marble)))
(define (find-winner player-count max-marbles)
(define scores (make-hasheqv))
(define first-marble (dll 0 #f #f))
(set-dll-prev! first-marble first-marble)
(set-dll-next! first-marble first-marble)
(for/fold ([current-marble first-marble]
#:result (cdr (argmax cdr (hash->list scores))))
([marble (in-range 1 max-marbles)])
(cond
[(zero? (modulo marble 23))
(define marble-to-remove (move-by current-marble -7))
(remove-marble! marble-to-remove)
(define player (modulo marble player-count))
(hash-update! scores player (λ (sc) (+ (dll-val marble-to-remove) marble sc)) 0)
(dll-next marble-to-remove)]
[else
(define left-marble (move-by current-marble 1))
(define right-marble (dll-next left-marble))
(define new-marble (dll marble left-marble right-marble))
(set-dll-next! left-marble new-marble)
(set-dll-prev! right-marble new-marble)
new-marble])))
(match-define (list player-count max-marbles)
(map string->number (regexp-match* #px"\\d+" (file->string "09.txt"))))
(define (★) (find-winner player-count max-marbles))
(define (★★) (find-winner player-count (* 100 max-marbles)))
(module+ test
(require rackunit)
(check-equal? (time (★)) 437654)
(check-equal? (time (★★)) 3689913905)) | false |
2f6e82e90f64f9ca480cb6999b9e0aeef144e855 | 166682ad09ff59a36ee9159abd0f937c45d244a1 | /check-ex-spec.rkt | bd2c34bbc8a65fb52cdff88bdf7956a59d818835 | []
| no_license | cemcutting/forgeOld | 01b03686e6fac6c09cd858fc3b61a738ea841d5d | 1d32f797b374d8236fe89d79dcaa88cf0e8bd044 | refs/heads/master | 2020-06-23T16:03:44.781834 | 2019-07-24T16:29:55 | 2019-07-24T16:29:55 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 158 | rkt | check-ex-spec.rkt | #lang racket
(require "webserver/eval-model.rkt")
(define (check-ex-spec-backend instance gold-standard)
(andmap (lambda (x) (eval-form x instance 7))))
| false |
c776f3131336c900635da7381a0ae07c0ef2803c | 56c5f129167943f60dab3a7256db3d0cf5be33cf | /libgit2/include/global.rkt | 56a1316c9682c4c66be92b566e14bb09eb54e2af | [
"MIT"
]
| permissive | guygastineau/libgit2 | d21111384afbfe4068bd5f289bd1de811c94b93e | 6d6a007543900eb7a6fbbeba55850288665bdde5 | refs/heads/master | 2022-12-12T15:21:28.849065 | 2019-05-06T20:59:17 | 2019-05-06T20:59:17 | 294,779,175 | 0 | 0 | null | 2020-09-11T18:26:21 | 2020-09-11T18:26:20 | null | UTF-8 | Racket | false | false | 193 | rkt | global.rkt | #lang racket
(require ffi/unsafe
"define.rkt")
(provide (all-defined-out))
(define-libgit2 git_libgit2_init
(_fun -> _int))
(define-libgit2 git_libgit2_shutdown
(_fun -> _int))
| false |
3145690ec45b44161a950708f0211bf963f85510 | 01ed4efac0c29caeb9388c0c5c1e069da7c1eebf | /object.rkt | b75c185352a0c1603b94fa381520255256452bb9 | [
"Apache-2.0"
]
| permissive | karinies/coast | 2124d69d467130b7efb03351fbcc974f9a9f4646 | b520003d9c4ebb2775db2f07688e58bbd3199195 | refs/heads/master | 2020-04-01T23:02:24.547845 | 2017-05-26T21:43:27 | 2017-05-26T21:43:27 | 33,692,208 | 8 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 5,396 | rkt | object.rkt | #lang racket/base
(require
(only-in racket/unsafe/ops unsafe-struct*-ref)
"persistent/environ.rkt"
"uuid.rkt")
(provide
Object
root@
reroot@
methods@
define/subobject
root/extend
methods/extend
define/object/flavor ; Object type definition.
define/object? ; Define object type predicate.
object? ; Base object predicate.
object/id ; Extract id of object instance.
object/method? ; Test for methods of object by name.
object/new ; Construct an object instance.
:: ; Method invocation.
::@ ; Extract state environ of an object.
::! ; Update state environ of an object.
:. ; Shorthand for extracting value of binding in an environ.
:! ; Shorthand for extending an environ with a binding.
:!! ; Shorthand for extending an environ with a function application to a binding.
environ/new ; Helper for defining a new environ.
environ/extend ; Helper for extending an environ (adding bindings)
environ/trim ; Helper for trimming an environ (removing bindings)
)
;; Prototype-like objects whose instance state and methods are based on environs.
(define-syntax-rule (define/object/flavor flavor)
(struct
flavor
(id) ; UUID
#:property
prop:procedure (lambda (self) (unsafe-struct*-ref self 0))))
(struct object (id (state #:mutable) methods) #:transparent)
;; Returns the id of object o.
(define (object/id o) ((object-id o)))
;; Define the type? predicate for an object with type predicate flavor?
(define-syntax-rule (define/object? name flavor?)
(define name (lambda (x) (and (object? x) (flavor? (object-id x))))))
;(struct Object ((state #:mutable) methods) #:transparent) ; The primal base class.
(struct Object ((root #:mutable)))
;; Access to object components from the root on down.
(define-syntax root@
(syntax-rules ()
[(_ self) (Object-root self)]
[(_ self name) (environ/ref (Object-root self) 'name #f)]
[(_ self name ...) (environ/ref/vector (Object-root self) #(name ...) #f)]))
(define-syntax methods@
(syntax-rules ()
[(_ self) (root@ self methods)]
[(_ self name ...) (root@ self methods name ...)]))
(define-syntax-rule (reroot@ self r) (set-Object-root! self r))
(define-syntax-rule (root/extend self name ...) (environ/extend (Object-root self) name ...))
(define-syntax-rule (methods/extend self name ...) (environ/extend (environ/ref (Object-root self) 'methods #f) name ...))
;; Extend the environ whose fully qualified root name is (name ...).
(define-syntax-rule (any/extend self (name ...) other ...) (environ/extend (root@ self name ...) other ...))
(define-syntax-rule (define/subobject sub super) (struct sub super ()))
(define-syntax state@
(syntax-rules ()
[(_ self) (Object-state self)]
[(_ self name) (environ/ref (Object-state self) 'name #f)]
[(_ self name ...) (environ/ref/vector (Object-state self) #(name ...) #f)]))
(define-syntax-rule (restate@ self s) (set-Object-state! self s))
;(define (methods@ self) (Object-methods self))
(define-syntax-rule (state/extend self name ...) (environ/extend (Object-state self) name ...))
;; flavor - an object flavor (type) defined via define/object/flavor
;; state - an environ containing instance bindings
;; methods - an environ containing object methods
(define (object/new flavor state methods)
(object (flavor (uuid/symbol)) state methods))
;; Method invocation for an object o.
(define-syntax-rule (:: o method argument ...)
((environ/ref/symbol (object-methods o) 'method #f) o argument ...))
;; Extract and return the instance state of object o.
(define-syntax-rule (::@ o) (object-state o))
;; Set the instance state of object o.
(define-syntax-rule (::! o s) (set-object-state! o s))
;; Returns the value of the environ binding given by name.
(define-syntax-rule (:. e name) (environ/ref e 'name #f))
;; Returns the environ derived from environ e in which name is bound to value.
(define-syntax-rule (:! e name value) (environ/cons e 'name value))
;; Returns the environ derived from environ e in which name is bound to (f value).
(define-syntax-rule (:!! e name f) (environ/cons e 'name (f (environ/ref e 'name #f))))
;; Construct a new environ containing the bindings given by name ...
(define-syntax-rule (environ/new name ...)
(let ((symbols #(name ...))
(values (vector name ...)))
(vectors/environ environ/null symbols values)))
;; Extend an existing environ e with the bindings given by name ...
(define-syntax-rule (environ/extend e name ...)
(let ((symbols #(name ...))
(values (vector name ...)))
(vectors/environ e symbols values)))
;; Trim an existing environ e by removing the bindings denoted by name ...
(define-syntax environ/trim
(syntax-rules ()
[(_ e name) (environ/remove e name)]
[(_ e name ...) (environ/vector/remove e #(name ...))]))
;; Returns #t if name is a method in object o and #f otherwise.
(define (object/method? o name)
(and (environ/ref (methods@ o) name #f) #t))
;; Examples of use.
;(define/object/flavor example)
;(define/object? object/example? example?)
;(define test (object/new example environ/null environ/null))
(struct foo (id) #:transparent)
(struct bar foo ())
(define x (foo 77))
(define y (bar 99))
| true |
3833e0118cb226b1fa6f74041acdba166a1368a2 | 4cc0edb99a4c5d945c9c081391ae817b31fc33fd | /crazy8s/info.rkt | 30f0e5370b602527fb027b5c7267d230482fb2bd | [
"Apache-2.0",
"MIT",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | racket/games | c8eaa92712405890cd1db19b8ba32b1620d885b8 | eba5c6fa54c524871badb8b0e205fe37640d6c3e | refs/heads/master | 2023-08-19T00:41:23.930448 | 2023-07-24T23:29:05 | 2023-07-24T23:29:05 | 27,138,761 | 54 | 33 | NOASSERTION | 2020-05-04T13:46:50 | 2014-11-25T17:59:40 | Racket | UTF-8 | Racket | false | false | 96 | rkt | info.rkt | #lang info
(define name "Crazy 8s")
(define game "crazy8s.rkt")
(define game-set "Card Games")
| false |
6c1c854b8f60905314d2c708b5299cf8d70ac7da | cc06424c5203c28d6aea69f8d5734f9acc067075 | /experiments/bonsai/permutation-bonsai.rkt | 0b4fa244a74b48a4a5e50c143c2c0d0b29bb9ebc | []
| no_license | uwplse/syncro | 48e5ab79793dfb631b85e39a19803e1b407854d0 | cd89d345293f9512350b716ed9e938ff308a162b | refs/heads/master | 2021-01-23T10:55:06.557355 | 2017-11-24T23:26:15 | 2017-11-24T23:26:15 | 93,102,017 | 2 | 1 | null | 2017-11-24T23:26:16 | 2017-06-01T21:43:17 | Racket | UTF-8 | Racket | false | false | 7,174 | rkt | permutation-bonsai.rkt | #lang rosette
; Bonsai grammar for Syncro
; https://github.com/uwplse/syncro
; The Bonsai tree data structure
(require "tree-lib.rkt")
; The syntax of our Syncro language, in BNF
; TODO: Improve incrementally to get all the benchmarks through
(define syncro-stx
'([stmt
(((vector-set! . vec-name) . int-term) . int-term) ; vector set operation
void-stmt
]
[int-term
((vector-ref . vec-name) . int-term) ; vector ref operation
(op-type . (int-term . int-term)) ; see op-type
name ; variable
int-hole ; integer hole
]
[type int ; integer
vector ; vector
any ; any type
void ; void
]
[op-type
+ ; addition
* ; multiplication
- ; subtraction
]
[name i j]
[vec-name permutation inverse-permutation]
))
(nonterminals! (harvest syncro-stx))
(define INT (symbol->enum 'int))
(define VEC (symbol->enum 'vector))
(define VOID (symbol->enum 'void))
; Check if t* > t.
(define (is-instance? t t*)
(tree-match t*
'int
(λ () (equal? t INT))
'vector
(λ () (equal? t VEC))
'void
(λ () (equal? t VOID))
'any
(λ () #t)
))
(define (type-expr t env)
(tree-match t
'void-stmt
(λ () VEC)
'int-hole
(λ () INT)
'(((vector-set! . _) . _) . _)
(λ (vec x y)
(define vec+ (type-expr vec env))
(define x+ (type-expr x env))
(define y+ (type-expr y env))
(assert (is-instance? vec+ VEC) "vector-set! called on a non-vector!")
(assert (is-instance? x+ INT) "second arg to vector-set! a non-integer!")
(assert (is-instance? y+ INT) "third arg to vector-set! a non-integer!")
VEC)
'((vector-ref . _) . _)
(λ (vec x)
(define vec+ (type-expr vec env))
(define x+ (type-expr x env))
(assert (is-instance? vec+ VEC) "vector-ref called on a non-vector!")
(assert (is-instance? x+ INT) "second arg to vector-ref a non-integer!")
INT)
'(_ . (_ . _))
(λ (op-type x y)
(define x+ (type-expr x env))
(define y+ (type-expr y env))
(assert (is-instance? x+ INT) "Arith op on non-integer!")
(assert (is-instance? y+ INT) "Arith op on non-integer!")
INT)
'_
(λ (name)
(define r (table-find* env name))
(assert r "Undefined variable usage!")
r)
))
(define (eval-expr t env)
(tree-match t
'void-stmt
(λ () #())
'int-hole
(λ () (define-symbolic new-int integer?)
new-int)
'(((vector-set! . _) . _) . _)
(λ (vec x y)
(define vec+ (eval-expr vec env))
(define x+ (eval-expr x env))
(define y+ (eval-expr y env))
(vector-set! vec+ x+ y+)
vec+)
'((vector-ref . _) . _)
(λ (vec x)
(define vec+ (eval-expr vec env))
(define x+ (eval-expr x env))
(vector-ref vec+ x+))
'(_ . (_._))
(λ (op-type x y)
(define x+ (eval-expr x env))
(define y+ (eval-expr y env))
(assert (integer? x+) "non-integer")
(assert (integer? y+) "non-integer")
(tree-match op-type
'+
(λ ()
(+ x+ y+))
'-
(λ ()
(- x+ y+))
'*
(λ ()
(* x+ y+))
))
'_
(λ (name)
(define r (table-find* env name))
(assert r "Undefined variable usage!")
r)
))
(define test-expr
(expression->enumtree
'(((vector-set! . inverse-permutation)
. ((vector-ref . permutation)
. i))
. i)
))
(define (depth t)
(if
(not (pair? t)) 1
(+ 1 (max (depth (car t)) (depth (cdr t))))))
(echo test-expr)
(display "Testing expression of size ")
(displayln (depth test-expr))
(displayln "stx test...")
(assert (syntax-matches? syncro-stx 'stmt test-expr) "Test stx")
(displayln "type test...")
(define init-type-env '())
(set! init-type-env (table-add init-type-env (symbol->enum 'i) INT))
(set! init-type-env (table-add init-type-env (symbol->enum 'j) INT))
(set! init-type-env (table-add init-type-env (symbol->enum 'permutation) VEC))
(set! init-type-env (table-add init-type-env (symbol->enum 'inverse-permutation) VEC))
; ; (displayln init-type-env)
; (echo (type-expr test-expr init-type-env))
(displayln "eval test...")
(define init-eval-env '())
; (set! init-eval-env (table-add init-eval-env (symbol->enum 'i) 0))
; (set! init-eval-env (table-add init-eval-env (symbol->enum 'j) 1))
; (set! init-eval-env (table-add init-eval-env (symbol->enum 'permutation) (vector 1 2 0)))
; (set! init-eval-env (table-add init-eval-env (symbol->enum 'inverse-permutation) (vector 1 2 0)))
; (echo (eval-expr test-expr init-eval-env))
; (displayln init-eval-env)
(newline)
(displayln "Generating program from IO examples ...")
(displayln "Time for constructing tree for statement 1 ...")
(define stmt1* (time (make! syncro-stx 'stmt 5)))
(displayln "Time for constructing tree for statement 2 ...")
(define stmt2* (time (make! syncro-stx 'stmt 5)))
(displayln "Time for typechecking statement 1 ...")
(define typecheck1 (time (type-expr stmt1* init-type-env)))
(displayln "Time for typechecking statement 2 ...")
(define typecheck2 (time (type-expr stmt2* init-type-env)))
(displayln "Time for synthesis by examples")
(define perms (list (vector 0 1 3 4 2) (vector 1 2 0 3 4) (vector 0 4 1 2 3) (vector 4 1 2 0 3) (vector 4 3 1 2 0)))
(define init-inv-perms (list (vector 0 4 1 2 3) (vector 2 4 1 3 0) (vector 1 2 3 4 0) (vector 1 3 2 4 0) (vector 4 3 2 1 0)))
(define res-inv-perms (list (vector 0 1 4 2 3) (vector 2 0 1 3 4) (vector 0 2 3 4 1) (vector 3 1 2 4 0) (vector 4 2 3 1 0)))
(define i-list (list 4 0 1 3 2))
(define j-list (list 1 4 0 1 3))
(define synth
(time (solve (for ([perm perms] [initinv init-inv-perms] [resinv res-inv-perms] [i i-list] [j j-list])
(set! init-eval-env '())
(set! init-eval-env (table-add init-eval-env (symbol->enum 'i) i))
(set! init-eval-env (table-add init-eval-env (symbol->enum 'j) j))
(set! init-eval-env (table-add init-eval-env (symbol->enum 'permutation) perm))
(set! init-eval-env (table-add init-eval-env (symbol->enum 'inverse-permutation) initinv))
(eval-expr stmt1* init-eval-env)
(assert (equal? (eval-expr stmt2* init-eval-env) resinv))))))
(if (sat? synth)
(begin
(echo (evaluate stmt1* synth))
(echo (evaluate stmt2* synth)))
(displayln "No program found"))
(displayln "End of program")
| false |
143fe05125bb0ce2e1f932822f7a9971d7417f59 | 82c76c05fc8ca096f2744a7423d411561b25d9bd | /typed-racket-test/succeed/pr13646.rkt | dfa0fdab2d99dc0339795212a1b94331c1bc9850 | [
"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 | 410 | rkt | pr13646.rkt | #lang typed/racket
(struct: (A) Queue ([elem : A]))
(: qmap :
(All (A B ...)
(case->
((A -> A) (Queue A) -> (Queue A))
((A B ... B -> A) (Queue A) (Queue B) ... B -> (Queue A)))))
(define qmap
(pcase-lambda:
(A B ...)
[([func : (A -> A)] [deq : (Queue A)])
deq]
[([func : (A B ... B -> A)]
[deq : (Queue A)] . [deqs : (Queue B) ... B])
deq]))
| false |
38f0c68b8e64b1f574e161455afde4697976db42 | 5990618629d710f65b3dfa7b857bc790ccaac8e9 | /2-syntax/server.rkt | 7c5849d93ca8c614ebb0d8a749a2e66b183ab630 | []
| no_license | mflatt/web-macro-tutorial | bcf3fe9ec8b3058bc0c0ac285fca209a87896a62 | 3337dcddc827d8a4f1cfcce9a9fd34cabc849540 | refs/heads/master | 2021-01-13T01:30:00.522032 | 2014-04-11T16:05:45 | 2014-04-11T16:05:45 | 18,652,850 | 2 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 2,651 | rkt | server.rkt | #lang racket
(require web-server/servlet-env
web-server/http/xexpr
(for-syntax syntax/parse))
(define-syntax (div stx)
(syntax-parse stx
[(div ([attrib attrib-expr]) content-expr)
(unless (equal? (syntax-e #'attrib) 'style)
(raise-syntax-error #f "bad attribute" stx #'attrib))
#'`(div ([attrib ,attrib-expr]) ,content-expr)]))
(serve/servlet
(lambda (req)
(response/xexpr
(div ([style "font-size: xx-large"])
"Hello"))))
;; Exercises:
;;
;; 1. Define a `smiley` macro that expands to just the number
;; 9786.
;;
;; For example,
;; (+ smiley 1)
;; should produce 9787, but more usefully,
;; (div ([style "color: blue"]) smiley)
;; should produce a blue-smiley HTML page.
;;
;; As a first cut, your `smiley` macro can ignore its syntax-object
;; argument. Then, improve the macro so that it complains if
;; `smiley` is used after an open parenthesis (which is the
;; opportunity created by defining `smiley` as a macro, instead of
;; simply as a constant).
;;
;; 2. Define an `rarr` macro that expands to the 'rarr symbol.
;;
;; Then,
;; (div ([style "color: blue"]) rarr)
;; should produce a blue-arrow HTML page. Like `smiley`, make
;; misuse of `rarr` produce a syntax error.
;;
;; 3. Add an `a` syntactic form that requires an `href` attribute
;; and produces an X-expression for <a>. Use `a` to hyperlink
;; "Hello" in the web page generated by the server.
;;
;; 4. Make the `style` part of `div` optional.
;;
;; To do that, use the fact that `syntax-parse` allows a sequence
;; of pattern clauses, where it uses the first clause that
;; matches. That is, your revised `div` will have this form:
;; (define-syntax (div stx)
;; (syntax-parse stx
;; [(div content-expr)
;; ......]
;; [(div ([attrib attrib-expr]) content-expr)
;; ......])))
;;
;; 5. Allow multiple expressions in the body of `div` or `a`.
;;
;; To do that, use the fact that `...` in a pattern enables
;; repetition, where pattern variables from a repetition must
;; be similarly followed by `...` in a template.
;;
;; For example, here a `b` macro that doesn't allow any
;; attributes, but does allow multiple content expressions:
;; (define-syntax (b stx)
;; (syntax-parse stx
;; [(b content-expr ...)
;; #'`(b ,content-expr ...)]))
;;
;; 6. Change `a` to allow any number of attributes, as long as
;; each attribute is either `href` or `style`.
;;
;; The `member` function may be useful; it checks whether a
;; given value is in a given list.
| true |
3c8d4e716a274267fc7d270985a3572d30417393 | 631764b5f40576a6857e7d31d207a5ece7ccba43 | /Scheme/Higher-Order/constantly.rkt | f5e11a874498e5dff54a392bf28784d053d93128 | []
| no_license | Ralitsa-Vuntsova/fp | ea37a40aaf3c42a70a1abc5fdb6736b875393543 | 7cca3819079de98108c70aed4d79f42c1fc294cc | refs/heads/main | 2023-06-07T03:24:18.405190 | 2021-06-28T15:59:34 | 2021-06-28T15:59:34 | 381,085,860 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 213 | rkt | constantly.rkt | ; Да се напише функция от по-висок ред (constantly c), която по дадена константа c връща функцията f(x)=c:
(define (constantly c)
(lambda (x) c)) | false |
99735a11777c46f6198af7a2de5212495ecfd3e8 | 09521b6ecde0ca52202c73a44990e3337f2cb123 | /main.rkt | fb22edd29b410721eba8a3966f0b23ed91d3daf2 | [
"MIT"
]
| permissive | schuster/csa | 7e79275839bbe3df17cf0f277ed8b83ba701b09b | 50d6b5a190a4e838266a5f12d43288ce26d159ad | refs/heads/master | 2021-05-16T17:07:35.808219 | 2018-07-06T17:00:19 | 2018-07-06T17:00:19 | 31,333,616 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 9,900 | rkt | main.rkt | #lang racket
(provide
(rename-out [module-begin #%module-begin])
#%datum
#%app
#%top
program
receptionists
externals
actors
quote
list
begin
let
(rename-out [csa-case case])
+
(rename-out [csa- -])
(rename-out [* mult])
(rename-out [csa/ /])
arithmetic-shift
(rename-out [csa= =])
(contract-out (rename csa< < (-> natural-number/c natural-number/c any/c))
(rename csa<= <= (-> natural-number/c natural-number/c any/c))
(rename csa> > (-> natural-number/c natural-number/c any/c))
(rename csa>= >= (-> natural-number/c natural-number/c any/c)))
(rename-out [csa-and and])
(rename-out [csa-or or])
(rename-out [csa-not not])
(rename-out [csa-cond cond])
(rename-out [csa-if if])
else
define-state
timeout
send
spawn
goto
goto-this-state
define-actor
variant
record
:
coerce
fold
unfold
list
dict
dict-has-key?
dict-ref
dict-empty?
(rename-out [hash-keys dict-keys]
[hash-values dict-values]
[hash-set dict-set]
[hash-remove dict-remove])
;; basic operations, for examples
(rename-out [string-length byte-length])
random
cons
list-as-variant
list-ref
take
drop
list-copy
append
remove
length
;; loops
for/fold
;; for debugging only
displayln
printf
)
;; ---------------------------------------------------------------------------------------------------
(require racket/async-channel
racket/stxparam
(for-syntax syntax/parse
racket/syntax))
(define-syntax (module-begin stx)
(syntax-parse stx
[(_ the-program)
#`(#%module-begin
(provide csa-program)
(define csa-program the-program))]))
(define-syntax (program stx)
(syntax-parse stx
#:literals (receptionists externals actors)
[(_ (receptionists [recs:id _] ...)
(externals [exts:id _] ...)
(let-actors ([actor-names actor-inits] ...) rec-actors ...))
#`(lambda (exts ...)
(define actor-names actor-inits) ...
(values rec-actors ...))]))
(begin-for-syntax
(define-syntax-class state-definition
#:literals (timeout)
;; TODO: there's probably a way to get the scope for "channel" worked out without resorting to the
;; run-time overhead of a function call, but I don't know enough about macros to figure that out
;; yet
#:attributes (transition-func-generator)
(pattern (define-state (name:id [formal:id _] ...) message-var:id
body
(~optional [(timeout timeout-amount) timeout-body ...]))
#:attr transition-func-generator
(lambda (chan)
(with-syntax ([chan chan])
#`(define (name formal ...)
(define handler-event
(handle-evt chan
(lambda (message-var)
(define transition-thunk body)
(transition-thunk))))
(define timeout-event
#,(if (not (attribute timeout-amount))
#`never-evt
#`(handle-evt (alarm-evt (+ (current-inexact-milliseconds) timeout-amount))
(lambda (x)
(define transition-thunk (begin timeout-body ...))
(transition-thunk)))))
(lambda ()
(define current-state-body
(lambda ()
(sync/timeout #f handler-event timeout-event)))
(current-state-thunk current-state-body)
(current-state-body))))))))
(define-syntax (spawn stx)
(syntax-parse stx
[(_ _ _ init state-def:state-definition ...)
;; TODO: figure out why we have to use #'init here instead of stx
(with-syntax* ([self (datum->syntax #'init 'self)]
[(state-def-function ...)
(map (lambda (gen) (gen #'self)) (attribute state-def.transition-func-generator))])
#'(let ()
(define self (make-async-channel))
(thread (lambda ()
state-def-function ...
(current-state-thunk #f)
(let ([transition-thunk init])
(transition-thunk))))
self))]))
;; (define-keywords (func-name ...) keyword ...) defines each keyword as syntax that can only be used
;; in one of the given function names. Same for the case where (func-name ...) is replaced with
;; func-name.
(define-syntax (define-keywords stx)
(syntax-parse stx
[(_ function-name:id keyword ...)
(define error-message (format "can only be used inside ~s" (syntax->datum #'function-name)))
#`(begin
(define-syntax (keyword stx)
(raise-syntax-error #f #,error-message stx)) ...)]
[(_ (function-name:id ...) keyword ...)
(define error-message
(format "can only be used inside one of ~s" (syntax->datum #'(function-name ...))))
#`(begin
(define-syntax (keyword stx)
(raise-syntax-error #f #,error-message stx)) ...)]))
(define-keywords (spawn-agent) define-state)
(define-keywords define-state timeout)
(define-keywords program receptionists externals actors)
(define (send chan message)
(async-channel-put chan message))
(define-syntax (goto stx)
(syntax-parse stx
[(_ state args ...) #`(state args ...)]))
(define current-state-thunk (make-parameter #f))
(define-syntax-rule (goto-this-state)
(current-state-thunk))
;; ---------------------------------------------------------------------------------------------------
;; Equality
(define (csa= a b)
;; NOTE: should really check whether a or b *contains* an address, but this is good enough to
;; prevent the uses of address comparison I had in Raft
(if (or (async-channel? a) (async-channel? b))
(error 'csa= "Cannot compare addresses for equality. Given: ~s, ~s" a b)
(boolean->variant (equal? a b))))
(define (boolean->variant b)
(if b (variant True) (variant False) ))
;; ---------------------------------------------------------------------------------------------------
;; Natural number operations
(match-define (list csa< csa<= csa> csa>=)
(for/list ([op (list < <= > >=)])
(lambda (a b)
(if (op a b) (variant True) (variant False)))))
(define (csa- a b)
(max 0 (- a b)))
(define (csa/ a b)
(floor (/ a b)))
;; ---------------------------------------------------------------------------------------------------
;; Boolean operators
(define (csa-true? a) (equal? a (variant True)))
(define (csa-and a b)
(define a? (csa-true? a))
(define b? (csa-true? b))
(if (and a? b?)
(variant True)
(variant False)))
(define (csa-or a b)
(define a? (csa-true? a))
(define b? (csa-true? b))
(if (or a? b?)
(variant True)
(variant False)))
(define (csa-not a)
(if (csa-true? a) (variant False) (variant True)))
;; ---------------------------------------------------------------------------------------------------
;; Case
(define-syntax (csa-case stx)
(syntax-parse stx
[(_ e [(label:id field:id ...) body] ...)
#`(let ([e-result e])
(match e-result
[(list 'variant 'label field ...) body] ...
[_ (error 'csa-case
"No match for variant ~s; patterns were ~s"
e-result
(list '(variant label field ...) ...))]))]))
;; ---------------------------------------------------------------------------------------------------
;; Conditionals
(define-syntax (csa-cond stx)
(syntax-parse stx #:literals (else)
[(_ [test result1 ...+] ... [else result2 ...+])
#`(cond
[test result1 ...] ...
[else result2 ...])]))
(define-syntax (csa-if stx)
(syntax-parse stx
[(_ test then else)
#'(if (csa-true? test)
then
else)]))
;; ---------------------------------------------------------------------------------------------------
;; Actor definitions (for presentation)
(define-syntax (define-actor stx)
(syntax-parse stx
[(_ (actor-name args ...) init states ...)
(syntax/loc stx
(define (actor-name args ...)
(spawn init states ...)))]))
;; ---------------------------------------------------------------------------------------------------
;; Data types
(define (list-as-variant l)
(if (empty? l) (variant Empty) (variant Cons (car l) (cdr l))))
(define (list-copy l start end)
(drop (take l end) start))
(module+ test
(require rackunit)
(test-equal? "list-copy"
(list-copy (list 'a 'b 'c 'd 'e) 2 4)
(list 'c 'd)))
(define-syntax (dict stx)
(syntax-parse stx
[(_ [key val] ...)
#`(make-immutable-hash (list (cons key val) ...))]))
(define (dict-has-key? h k)
(if (hash-has-key? h k) (variant True) (variant False)))
(define (dict-empty? h)
(if (hash-empty? h) (variant True) (variant False)))
(define (dict-ref h k)
(match (hash-ref h k #f)
[#f (variant Nothing)]
[val (variant Just val)]))
(define-syntax (variant stx)
(syntax-parse stx
[(_ tag fields ...)
#'(list 'variant 'tag fields ...)]))
(define-syntax (record stx)
(syntax-parse stx
[(_ [field-label:id field-val] ...)
#`(make-immutable-hash (list (cons 'field-label field-val) ...))]))
(define-syntax (: stx)
(syntax-parse stx
[(_ rec field:id)
#`(hash-ref rec 'field)]))
;; ---------------------------------------------------------------------------------------------------
;; Types
(define-syntax (coerce stx)
(syntax-parse stx
[(_ exp _) #'exp]))
(define-syntax (fold stx)
(syntax-parse stx
[(_ _ exp) #`exp]))
(define-syntax (unfold stx)
(syntax-parse stx
[(_ _ exp) #`exp]))
| true |
23a47f79c2a04678c457365c1191e76f735f168f | 09420b91f32aeb34ec607c8f034805e3d86fe505 | /koans/iterations.rkt | 62262b36cd54edc27a8224b1696dd99e6558b69a | [
"Apache-2.0",
"MIT"
]
| permissive | zyrolasting/racket-koans | 66e36f95e7c4fb882cc772730104954ee8a69c92 | 358673d765cbded90b1b6b54528ad88caedcdecb | refs/heads/master | 2022-12-26T09:38:08.224375 | 2022-05-31T14:37:29 | 2022-05-31T14:37:29 | 141,904,502 | 86 | 16 | NOASSERTION | 2022-05-31T14:37:30 | 2018-07-22T14:50:46 | Racket | UTF-8 | Racket | false | false | 3,931 | rkt | iterations.rkt | #lang racket
(require rackunit)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Iterations with side-effects
(define mutable '())
(define sequences (list
'(#\a #\b #\c)
#(#\a #\b #\c)
"abc"
))
;; `for` iterates over sequences, and sequences are a supertype of many other types,
;; making it flexible for writing loops for many purposes.
;; https://docs.racket-lang.org/reference/sequences.html
(for ([seq sequences]) "?")
(check-equal? mutable '(#\c #\b #\a #\c #\b #\a #\c #\b #\a))
;; `for` forms support stepping through multiple sequences, stopping
;; at the end of the first seqeunce to run out of elements.
(define char-int-display-strings '())
(for ([ch mutable] [i "?"]) "?")
(check-equal?
char-int-display-strings
'("a = 97" "b = 98" "c = 99"))
;; for* is a shorthand for nesting loops.
(define colored-toys '())
(define colors '("red" "green"))
(define toys '("marble" "train" "doll"))
(for* ([col "?"] [toy "?"]) "?")
(check-equal?
colored-toys
'("red marble"
"red train"
"red doll"
"green marble"
"green train"
"green doll"))
;; You can use #:when and #:unless to control when the `for` body evaluates.
(for ([toy colored-toys]
#:when "?")
(check-true (string-prefix? toy "red")))
(for ([toy colored-toys]
#:unless "?")
(check-true (string-suffix? toy "doll")))
;; Bonus: Rewrite the above two tests with `for*`
;; `#:break` (or `#:final`) stops the iteration outright when its test returns #t.
(define counter 0)
(for ([i (in-range 10000)])
#:break "?"
(set! counter (add1 counter)))
(check-equal? counter 101)
;; You can bindings to multiple values where appropriate
(for ([(k v) (hash (first colors) (second toys))])
(check-equal? k "?")
(check-equal? v "?"))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Iterations with no side-effects
;; `for` has variants with all of the same powers shown above, but need not
;; rely on side-effects.
;; `for/list` creates a list in terms of another list. This implements comprehensions.
(check-equal?
(for/list ([i "?"]) "?")
'(1 9 25))
;; Comprehensions need not return lists. Needless to say there are a lot
;; of for/whatever functions used to generate sequences.
;; Build this one from scratch.
(check-equal?
(for*/vector () "?")
#("a1" "a2" "b1" "b2" "c1" "c2" "c3" "c4"))
;; But don't get the impression that the part of the identifier following `/`
;; is always a type. Sometimes the for/... form being used are shorthands for
;; flow control or full iteration patterns. For example, `for/and` and
;; `for/or` use `and` and `or` as means to break and return a result causing
;; said break.
(check-eqv? (for/and ([n (in-range 10)]) n) "?")
(check-eqv? (for/or ([n (in-range 10)]) n) "?")
;; `for/fold` and `for*/fold` capture the iteration pattern in which you accumulate
;; results into a value.
(define operands (in-range 0))
(check-eqv?
(for/fold ([sum 0]) ([i operands]) (+ sum i))
5050)
;; To further emphasize the point that some `for/...` forms summarize iteration patterns,
;; for/foldl accumulating a sum of values like the above is already built-in.
(check-eqv?
(for/sum ([total operands]) total)
5050)
;; So for/foldl is used to capture a common use of `for`,
;; and `for/sum` is used to capture a common use of `for/foldl`
;; The takeaway here is that before you write a complicated loop,
;; check the Racket reference and see if there's a clearer way
;; to express what you are doing.
;; To finish this up, gleen the pattern from the given data structure and
;; express a comprehension that produces it. You may use `let` or `let*`
;; if you need it. Avoid side-effects.
(check-equal?
"?"
(hash
#\a '(1 2 3 4 5)
#\b #(1 4 9 16 25)
#\c "bdcea")) ; Hint: `#\c`'s string has a mathematical relationship
; to both the keys AND values in this hashmap
| false |
be4e444b0fe22c1157f8adb6b7a60fbd0df878ed | 2c8445ed373b79cd508dbdd7608eb0a32cc5f6ce | /racket/artefacts/mime-headers.rkt | 18c4717e1f2e0f739224c004e77b21277ffb865a | []
| no_license | simonhaines/powermail | 639df8373d0523e526a0aa5a4e508ad7a0027ede | 07b0173c6236c626d01890b5dd8bbab9d96d51ac | refs/heads/main | 2023-06-21T17:10:33.284961 | 2022-07-06T01:09:51 | 2022-07-06T01:09:51 | 5,310,087 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 2,072 | rkt | mime-headers.rkt | #lang racket/base
(require racket/list racket/bool)
(require net/mime)
(require net/head)
(require srfi/19)
; Read mail file
(define f (open-input-file "sample.mail"))
; Parse message
(define m (mime-analyze f))
; Extract headers into association list
(define h (append-map extract-all-fields (cdr (message-fields m))))
; Extract name and address of 'From' field
(define from-name (extract-addresses (cdr (assoc "From" h)) 'name))
(define from-address (extract-addresses (cdr (assoc "From" h)) 'address))
; Extract the date of the message
(define d (string->date (cdr (assoc "Date" h)) "~a, ~d ~b ~Y ~H:~M:~S ~z"))
(display from-name)
(display from-address)
(display d)
(newline)
(define (read-email port)
(let ((out-port (open-output-string)))
(let loop ((line (read-line port)))
(cond ((eq? line eof) #f)
((string=? (substring line 0 5) "From ")
(open-input-string (get-output-string out-port)))
(else
(write-string line out-port)
(newline out-port)
(loop (read-line port)))))))
; Read the mbox file
(define mbox (open-input-file "guile-devel-2011-12.mbox"))
(let loop ((em (read-email mbox)))
(if (false? em) #t
(let* ((msg (mime-analyze em))
(headers (append-map extract-all-fields (message-fields msg))))
(if (eq? (length headers) 0)
(loop (read-email mbox))
(begin
(display "From name: ") (display (extract-addresses (cdr (assoc "From" headers)) 'name)) (newline)
(display "From address: ") (display (extract-addresses (cdr (assoc "From" headers)) 'address)) (newline)
(display "To name: ") (display (extract-addresses (cdr (assoc "To" headers)) 'name)) (newline)
(display "To address: ") (write (extract-addresses (cdr (assoc "To" headers)) 'address)) (newline)
(display (string->date (cdr (assoc "Date" headers)) "~a, ~d ~b ~Y ~H:~M:~S ~z")) (newline)
(newline)
(loop (read-email mbox)))))))
| false |
4eed44991d5362b8483f11d5d246f4f8da04de74 | fc6465100ab657aa1e31af6a4ab77a3284c28ff0 | /results/brutally-unfair-24/rvm-4-ordered-brutally-unfair.rktd | a931ddb2413e62517fad955fed03b334e4d6b032 | []
| no_license | maxsnew/Redex-Enum-Paper | f5ba64a34904beb6ed9be39ff9a5e1e5413c059b | d77ec860d138cb023628cc41f532dd4eb142f15b | refs/heads/master | 2020-05-21T20:07:31.382540 | 2017-09-04T14:42:13 | 2017-09-04T14:42:13 | 17,602,325 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 727,761 | rktd | rvm-4-ordered-brutally-unfair.rktd | (start 2015-06-20T12:40:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:40:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T12:40:05 (#:amount 27791208 #:time 294))
(heartbeat 2015-06-20T12:40:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:40:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:40:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:40:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:40:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:41:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:41:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:41:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:41:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:41:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:41:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:42:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:42:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:42:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:42:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:42:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:42:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:43:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:43:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T12:43:20 (#:amount 108475000 #:time 257))
(heartbeat 2015-06-20T12:43:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:43:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:43:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:43:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:44:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:44:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:44:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:44:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:44:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:44:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:45:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:45:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:45:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:45:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:45:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:45:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:46:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:46:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:46:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:46:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:46:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:46:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T12:47:01 (#:amount 111470920 #:time 259))
(heartbeat 2015-06-20T12:47:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:47:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:47:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:47:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:47:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:47:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:48:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:48:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:48:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:48:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:48:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:48:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:49:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:49:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:49:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:49:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:49:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:49:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:50:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T12:50:09 (#:amount 109553592 #:time 258))
(heartbeat 2015-06-20T12:50:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:50:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:50:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:50:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:50:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:51:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:51:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:51:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:51:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:51:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:51:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:52:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:52:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:52:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:52:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:52:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:52:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:53:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:53:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:53:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T12:53:27 (#:amount 111980784 #:time 301))
(heartbeat 2015-06-20T12:53:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:53:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:53:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:54:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:54:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:54:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:54:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:54:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:54:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:55:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:55:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:55:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:55:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:55:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:55:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:56:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:56:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:56:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:56:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T12:56:41 (#:amount 109600280 #:time 297))
(heartbeat 2015-06-20T12:56:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:56:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:57:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:57:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:57:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:57:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:57:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:57:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:58:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:58:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:58:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:58:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:58:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:58:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:59:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:59:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:59:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:59:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:59:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T12:59:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T12:59:59 (#:amount 111804472 #:time 301))
(heartbeat 2015-06-20T13:00:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:00:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:00:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:00:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:00:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:00:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:01:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:01:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:01:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:01:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:01:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:01:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:02:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:02:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:02:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:02:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:02:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:02:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:03:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:03:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:03:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T13:03:26 (#:amount 109632200 #:time 259))
(heartbeat 2015-06-20T13:03:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:03:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:03:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:04:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:04:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:04:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:04:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:04:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:04:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:05:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:05:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:05:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:05:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:05:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:05:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:06:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:06:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:06:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:06:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:06:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:06:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:07:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:07:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T13:07:18 (#:amount 111427608 #:time 304))
(heartbeat 2015-06-20T13:07:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:07:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:07:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:07:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:08:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:08:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:08:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:08:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:08:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:08:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:09:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:09:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:09:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:09:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:09:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:09:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:10:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:10:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:10:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:10:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:10:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:10:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:11:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:11:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T13:11:19 (#:amount 110589456 #:time 300))
(heartbeat 2015-06-20T13:11:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:11:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:11:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:11:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:12:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:12:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:12:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:12:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:12:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:12:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:13:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:13:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:13:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:13:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:13:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:13:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:14:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:14:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:14:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:14:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:14:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:14:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:15:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T13:15:14 (#:amount 111797544 #:time 304))
(heartbeat 2015-06-20T13:15:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:15:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:15:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:15:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:15:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:16:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:16:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:16:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:16:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:16:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:16:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:17:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:17:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:17:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:17:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:17:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:17:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:18:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:18:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:18:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:18:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:18:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T13:18:50 (#:amount 110708760 #:time 255))
(heartbeat 2015-06-20T13:18:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:19:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:19:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:19:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:19:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:19:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:19:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:20:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:20:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:20:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:20:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:20:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:20:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:21:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:21:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:21:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:21:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:21:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:21:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T13:21:57 (#:amount 111803632 #:time 260))
(heartbeat 2015-06-20T13:22:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:22:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:22:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:22:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:22:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:22:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:23:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:23:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:23:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:23:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:23:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:23:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:24:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:24:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:24:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:24:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:24:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:24:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T13:25:04 (#:amount 110574376 #:time 259))
(heartbeat 2015-06-20T13:25:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:25:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:25:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:25:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:25:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:25:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:26:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:26:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:26:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:26:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:26:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:26:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:27:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:27:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:27:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:27:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:27:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:27:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T13:28:06 (#:amount 111799800 #:time 266))
(heartbeat 2015-06-20T13:28:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:28:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:28:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:28:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:28:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:28:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:29:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:29:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:29:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:29:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:29:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:29:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:30:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:30:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:30:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:30:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:30:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:30:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:31:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T13:31:12 (#:amount 110558632 #:time 257))
(heartbeat 2015-06-20T13:31:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:31:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:31:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:31:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:31:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:32:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:32:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:32:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:32:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:32:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:32:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:33:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:33:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:33:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:33:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:33:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:33:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:34:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:34:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T13:34:18 (#:amount 111674448 #:time 261))
(heartbeat 2015-06-20T13:34:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:34:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:34:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:34:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:35:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:35:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:35:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:35:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:35:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:35:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:36:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:36:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:36:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:36:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:36:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:36:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:37:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:37:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T13:37:24 (#:amount 110365576 #:time 262))
(heartbeat 2015-06-20T13:37:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:37:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:37:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:37:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:38:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:38:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:38:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:38:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:38:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:38:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:39:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:39:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:39:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:39:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:39:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:39:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:40:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:40:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:40:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T13:40:33 (#:amount 111874824 #:time 261))
(heartbeat 2015-06-20T13:40:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:40:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:40:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:41:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:41:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:41:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:41:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:41:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:41:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:42:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:42:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:42:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:42:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:42:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:42:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:43:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:43:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T13:43:26 (#:amount 110498632 #:time 260))
(heartbeat 2015-06-20T13:43:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:43:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:43:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:43:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:44:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:44:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:44:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:44:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:44:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:44:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:45:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:45:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:45:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:45:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:45:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:45:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:46:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:46:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:46:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:46:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T13:46:45 (#:amount 111839352 #:time 263))
(heartbeat 2015-06-20T13:46:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:46:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:47:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:47:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:47:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:47:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:47:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:47:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:48:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:48:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:48:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:48:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:48:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:48:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:49:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:49:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:49:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:49:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T13:49:43 (#:amount 110592896 #:time 259))
(heartbeat 2015-06-20T13:49:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:49:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:50:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:50:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:50:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:50:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:50:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:50:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:51:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:51:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:51:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:51:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:51:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:51:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:52:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:52:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:52:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:52:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:52:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T13:52:48 (#:amount 111562776 #:time 262))
(heartbeat 2015-06-20T13:52:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:53:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:53:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:53:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:53:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:53:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:53:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:54:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:54:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:54:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:54:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:54:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:54:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:55:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:55:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:55:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:55:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:55:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T13:55:54 (#:amount 110810512 #:time 258))
(heartbeat 2015-06-20T13:55:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:56:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:56:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:56:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:56:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:56:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:56:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:57:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:57:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:57:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:57:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:57:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:57:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:58:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:58:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:58:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:58:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:58:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:58:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T13:58:59 (#:amount 111369184 #:time 262))
(heartbeat 2015-06-20T13:59:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:59:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:59:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:59:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:59:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T13:59:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:00:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:00:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:00:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:00:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:00:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:00:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:01:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:01:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:01:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:01:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:01:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:01:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T14:02:06 (#:amount 110435600 #:time 261))
(heartbeat 2015-06-20T14:02:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:02:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:02:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:02:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:02:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:02:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:03:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:03:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:03:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:03:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:03:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:03:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:04:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:04:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:04:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:04:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:04:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:04:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:05:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T14:05:18 (#:amount 110926264 #:time 304))
(heartbeat 2015-06-20T14:05:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:05:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:05:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:05:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:05:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:06:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:06:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:06:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:06:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:06:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:06:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:07:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:07:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:07:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:07:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:07:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:07:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:08:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:08:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:08:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:08:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:08:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:08:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:09:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T14:09:10 (#:amount 110676920 #:time 303))
(heartbeat 2015-06-20T14:09:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:09:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:09:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:09:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:09:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:10:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:10:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:10:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:10:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:10:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:10:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:11:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:11:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:11:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:11:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:11:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:11:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:12:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:12:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:12:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:12:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:12:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:12:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T14:13:01 (#:amount 111454928 #:time 305))
(heartbeat 2015-06-20T14:13:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:13:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:13:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:13:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:13:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:13:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:14:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:14:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:14:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:14:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:14:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:14:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:15:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:15:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:15:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:15:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:15:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:15:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:16:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:16:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:16:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:16:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T14:16:41 (#:amount 110479168 #:time 261))
(heartbeat 2015-06-20T14:16:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:16:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:17:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:17:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:17:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:17:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:17:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:17:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:18:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:18:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:18:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:18:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:18:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:18:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:19:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:19:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:19:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:19:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:19:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:19:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T14:20:01 (#:amount 111710144 #:time 303))
(heartbeat 2015-06-20T14:20:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:20:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:20:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:20:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:20:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:20:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:21:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:21:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:21:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:21:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:21:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:21:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:22:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:22:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:22:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:22:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:22:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:22:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:23:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:23:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:23:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:23:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T14:23:39 (#:amount 110674568 #:time 299))
(heartbeat 2015-06-20T14:23:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:23:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:24:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:24:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:24:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:24:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:24:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:24:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:25:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:25:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:25:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:25:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:25:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:25:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:26:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:26:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:26:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:26:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:26:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:26:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:27:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T14:27:12 (#:amount 110755136 #:time 303))
(heartbeat 2015-06-20T14:27:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:27:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:27:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:27:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:27:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:28:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:28:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:28:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:28:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:28:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:28:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:29:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:29:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:29:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:29:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:29:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:29:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:30:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:30:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T14:30:20 (#:amount 110857160 #:time 282))
(heartbeat 2015-06-20T14:30:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:30:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:30:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:30:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:31:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:31:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:31:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:31:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:31:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:31:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:32:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:32:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:32:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:32:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:32:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:32:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:33:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:33:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T14:33:27 (#:amount 111505080 #:time 302))
(heartbeat 2015-06-20T14:33:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:33:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:33:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:33:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:34:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:34:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:34:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:34:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:34:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:34:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:35:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:35:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:35:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:35:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:35:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:35:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:36:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:36:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T14:36:24 (#:amount 110620432 #:time 256))
(heartbeat 2015-06-20T14:36:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:36:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:36:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:36:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:37:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:37:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:37:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:37:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:37:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:37:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:38:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:38:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:38:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:38:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:38:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:38:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:39:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T14:39:18 (#:amount 110753512 #:time 261))
(heartbeat 2015-06-20T14:39:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:39:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:39:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:39:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:39:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:40:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:40:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:40:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:40:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:40:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:40:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:41:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:41:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:41:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:41:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:41:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:41:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:42:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T14:42:14 (#:amount 110535736 #:time 258))
(heartbeat 2015-06-20T14:42:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:42:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:42:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:42:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:42:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:43:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:43:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:43:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:43:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:43:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:43:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:44:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:44:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:44:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:44:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:44:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:44:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T14:45:08 (#:amount 111699320 #:time 289))
(heartbeat 2015-06-20T14:45:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:45:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:45:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:45:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:45:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:45:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:46:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:46:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:46:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:46:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:46:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:46:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:47:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:47:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:47:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:47:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:47:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:47:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T14:48:01 (#:amount 110298760 #:time 258))
(heartbeat 2015-06-20T14:48:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:48:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:48:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:48:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:48:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:48:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:49:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:49:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:49:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:49:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:49:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:49:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:50:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:50:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:50:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:50:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:50:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:50:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T14:51:00 (#:amount 111656448 #:time 261))
(heartbeat 2015-06-20T14:51:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:51:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:51:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:51:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:51:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:51:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:52:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:52:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:52:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:52:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:52:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:52:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:53:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:53:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:53:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:53:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:53:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T14:53:56 (#:amount 110630056 #:time 257))
(heartbeat 2015-06-20T14:53:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:54:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:54:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:54:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:54:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:54:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:54:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:55:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:55:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:55:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:55:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:55:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:55:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:56:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:56:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:56:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:56:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:56:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T14:56:51 (#:amount 110699520 #:time 261))
(heartbeat 2015-06-20T14:56:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:57:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:57:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:57:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:57:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:57:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:58:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:58:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:58:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:58:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:58:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:58:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:59:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:59:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:59:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:59:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T14:59:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T14:59:47 (#:amount 109798704 #:time 262))
(heartbeat 2015-06-20T14:59:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:00:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:00:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:00:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:00:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:00:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:00:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:01:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:01:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:01:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:01:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:01:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:01:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:02:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:02:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:02:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:02:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:02:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T15:02:41 (#:amount 111426096 #:time 261))
(heartbeat 2015-06-20T15:02:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:03:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:03:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:03:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:03:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:03:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:03:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:04:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:04:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:04:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:04:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:04:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:04:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:05:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:05:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:05:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:05:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T15:05:40 (#:amount 110445296 #:time 260))
(heartbeat 2015-06-20T15:05:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:05:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:06:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:06:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:06:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:06:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:06:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:06:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:07:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:07:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:07:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:07:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:07:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:07:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:08:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:08:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:08:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:08:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T15:08:32 (#:amount 111700208 #:time 261))
(heartbeat 2015-06-20T15:08:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:08:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:09:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:09:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:09:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:09:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:09:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:09:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:10:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:10:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:10:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:10:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:10:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:10:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:11:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:11:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:11:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T15:11:22 (#:amount 110775976 #:time 259))
(heartbeat 2015-06-20T15:11:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:11:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:11:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:12:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:12:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:12:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:12:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:12:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:12:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:13:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:13:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:13:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:13:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:13:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:13:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:14:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:14:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T15:14:13 (#:amount 111534632 #:time 261))
(heartbeat 2015-06-20T15:14:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:14:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:14:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:14:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:15:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:15:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:15:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:15:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:15:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:15:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:16:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:16:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:16:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:16:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:16:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:16:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:17:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:17:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:17:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T15:17:21 (#:amount 110630496 #:time 260))
(heartbeat 2015-06-20T15:17:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:17:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:17:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:18:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:18:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:18:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:18:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:18:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:18:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:19:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:19:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:19:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:19:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:19:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:19:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:20:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:20:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T15:20:16 (#:amount 110701544 #:time 259))
(heartbeat 2015-06-20T15:20:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:20:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:20:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:20:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:21:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:21:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:21:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:21:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:21:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:21:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:22:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:22:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:22:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:22:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:22:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:22:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:23:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:23:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T15:23:16 (#:amount 109995632 #:time 258))
(heartbeat 2015-06-20T15:23:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:23:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:23:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:23:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:24:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:24:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:24:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:24:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:24:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:24:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:25:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:25:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:25:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:25:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:25:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:25:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:26:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:26:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:26:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T15:26:22 (#:amount 111402104 #:time 261))
(heartbeat 2015-06-20T15:26:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:26:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:26:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:27:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:27:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:27:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:27:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:27:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:27:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:28:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:28:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:28:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:28:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:28:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:28:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:29:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:29:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:29:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:29:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:29:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:29:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T15:29:55 (#:amount 110661736 #:time 301))
(heartbeat 2015-06-20T15:30:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:30:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:30:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:30:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:30:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:30:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:31:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:31:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:31:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:31:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:31:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:31:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:32:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:32:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:32:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:32:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:32:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:32:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:33:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:33:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:33:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:33:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T15:33:39 (#:amount 111749968 #:time 303))
(heartbeat 2015-06-20T15:33:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:33:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:34:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:34:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:34:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:34:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:34:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:34:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:35:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:35:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:35:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:35:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:35:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:35:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:36:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:36:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:36:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:36:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:36:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:36:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T15:36:59 (#:amount 110754864 #:time 300))
(heartbeat 2015-06-20T15:37:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:37:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:37:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:37:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:37:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:37:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:38:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:38:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:38:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:38:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:38:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:38:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:39:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:39:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:39:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:39:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:39:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:39:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:40:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T15:40:02 (#:amount 111440000 #:time 263))
(heartbeat 2015-06-20T15:40:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:40:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:40:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:40:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:40:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:41:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:41:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:41:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:41:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:41:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:41:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:42:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:42:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:42:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:42:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:42:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:42:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:43:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T15:43:08 (#:amount 110732128 #:time 298))
(heartbeat 2015-06-20T15:43:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:43:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:43:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:43:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:43:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:44:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:44:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:44:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:44:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:44:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:44:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:45:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:45:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:45:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:45:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:45:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:45:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:46:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T15:46:11 (#:amount 111623000 #:time 299))
(heartbeat 2015-06-20T15:46:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:46:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:46:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:46:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:46:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:47:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:47:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:47:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:47:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:47:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:47:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:48:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:48:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:48:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:48:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:48:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:48:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:49:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:49:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T15:49:13 (#:amount 110683256 #:time 256))
(heartbeat 2015-06-20T15:49:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:49:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:49:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:49:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:50:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:50:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:50:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:50:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:50:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:50:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:51:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:51:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:51:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:51:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:51:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:51:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:52:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:52:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T15:52:20 (#:amount 111922960 #:time 263))
(heartbeat 2015-06-20T15:52:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:52:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:52:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:52:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:53:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:53:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:53:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:53:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:53:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:53:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:54:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:54:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:54:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:54:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:54:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:54:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:55:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:55:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:55:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T15:55:25 (#:amount 110784928 #:time 257))
(heartbeat 2015-06-20T15:55:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:55:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:55:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:56:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:56:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:56:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:56:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:56:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:56:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:57:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:57:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:57:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:57:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:57:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:57:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:58:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:58:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:58:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T15:58:27 (#:amount 111641592 #:time 299))
(heartbeat 2015-06-20T15:58:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:58:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:58:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:59:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:59:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:59:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:59:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:59:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T15:59:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:00:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:00:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:00:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:00:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:00:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:00:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:01:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:01:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:01:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T16:01:30 (#:amount 110653664 #:time 256))
(heartbeat 2015-06-20T16:01:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:01:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:01:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:02:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:02:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:02:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:02:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:02:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:02:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:03:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:03:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:03:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:03:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:03:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:03:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:04:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:04:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:04:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:04:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T16:04:34 (#:amount 111711320 #:time 261))
(heartbeat 2015-06-20T16:04:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:04:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:05:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:05:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:05:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:05:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:05:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:05:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:06:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:06:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:06:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:06:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:06:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:06:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:07:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:07:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:07:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:07:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T16:07:38 (#:amount 109736344 #:time 271))
(heartbeat 2015-06-20T16:07:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:07:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:08:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:08:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:08:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:08:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:08:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:08:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:09:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:09:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:09:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:09:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:09:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:09:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:10:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:10:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:10:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:10:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T16:10:37 (#:amount 111488112 #:time 258))
(heartbeat 2015-06-20T16:10:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:10:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:11:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:11:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:11:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:11:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:11:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:11:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:12:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:12:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:12:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:12:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:12:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:12:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:13:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:13:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:13:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:13:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T16:13:41 (#:amount 110537640 #:time 258))
(heartbeat 2015-06-20T16:13:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:13:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:14:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:14:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:14:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:14:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:14:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:14:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:15:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:15:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:15:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:15:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:15:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:15:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:16:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:16:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:16:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:16:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:16:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T16:16:43 (#:amount 111828176 #:time 262))
(heartbeat 2015-06-20T16:16:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:17:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:17:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:17:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:17:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:17:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:17:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:18:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:18:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:18:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:18:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:18:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:18:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:19:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:19:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:19:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:19:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:19:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T16:19:46 (#:amount 110609176 #:time 258))
(heartbeat 2015-06-20T16:19:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:20:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:20:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:20:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:20:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:20:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:20:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:21:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:21:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:21:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:21:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:21:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:21:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:22:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:22:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:22:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:22:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:22:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:22:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:23:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T16:23:04 (#:amount 111641408 #:time 302))
(heartbeat 2015-06-20T16:23:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:23:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:23:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:23:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:23:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:24:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:24:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:24:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:24:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:24:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:24:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:25:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:25:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:25:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:25:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:25:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:25:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:26:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:26:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:26:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:26:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:26:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:26:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T16:26:59 (#:amount 110485552 #:time 301))
(heartbeat 2015-06-20T16:27:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:27:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:27:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:27:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:27:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:27:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:28:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:28:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:28:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:28:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:28:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:28:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:29:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:29:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:29:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:29:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:29:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:29:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:30:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:30:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T16:30:19 (#:amount 111844936 #:time 307))
(heartbeat 2015-06-20T16:30:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:30:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:30:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:30:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:31:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:31:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:31:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:31:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:31:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:31:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:32:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:32:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:32:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:32:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:32:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:32:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:33:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:33:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:33:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T16:33:32 (#:amount 110570192 #:time 300))
(heartbeat 2015-06-20T16:33:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:33:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:33:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:34:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:34:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:34:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:34:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:34:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:34:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:35:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:35:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:35:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:35:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:35:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:35:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:36:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:36:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:36:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:36:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:36:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:36:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:37:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:37:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:37:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T16:37:29 (#:amount 111894952 #:time 301))
(heartbeat 2015-06-20T16:37:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:37:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:37:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:38:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:38:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:38:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:38:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:38:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:38:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:39:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:39:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:39:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:39:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:39:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:39:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:40:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:40:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:40:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:40:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T16:40:33 (#:amount 110755776 #:time 257))
(heartbeat 2015-06-20T16:40:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:40:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:41:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:41:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:41:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:41:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:41:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:41:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:42:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:42:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:42:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:42:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:42:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:42:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:43:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:43:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:43:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:43:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T16:43:40 (#:amount 111722832 #:time 259))
(heartbeat 2015-06-20T16:43:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:43:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:44:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:44:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:44:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:44:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:44:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:44:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:45:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:45:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:45:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:45:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:45:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:45:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:46:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:46:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:46:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:46:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T16:46:42 (#:amount 110413992 #:time 260))
(heartbeat 2015-06-20T16:46:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:46:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:47:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:47:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:47:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:47:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:47:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:47:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:48:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:48:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:48:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:48:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:48:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:48:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:49:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:49:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:49:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:49:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:49:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T16:49:44 (#:amount 111983960 #:time 261))
(heartbeat 2015-06-20T16:49:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:50:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:50:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:50:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:50:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:50:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:50:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:51:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:51:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:51:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:51:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:51:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:51:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:52:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:52:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:52:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:52:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:52:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T16:52:48 (#:amount 110735160 #:time 258))
(heartbeat 2015-06-20T16:52:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:53:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:53:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:53:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:53:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:53:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:53:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:54:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:54:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:54:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:54:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:54:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:54:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:55:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:55:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:55:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:55:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:55:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:55:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:56:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:56:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:56:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T16:56:31 (#:amount 111612136 #:time 303))
(heartbeat 2015-06-20T16:56:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:56:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:56:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:57:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:57:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:57:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:57:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:57:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:57:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:58:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:58:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:58:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:58:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:58:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:58:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:59:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:59:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:59:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:59:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:59:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T16:59:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:00:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:00:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T17:00:21 (#:amount 110470904 #:time 300))
(heartbeat 2015-06-20T17:00:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:00:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:00:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:00:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:01:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:01:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:01:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:01:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:01:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:01:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:02:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:02:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:02:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:02:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:02:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:02:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:03:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:03:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:03:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:03:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:03:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:03:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:04:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:04:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T17:04:14 (#:amount 111888568 #:time 306))
(heartbeat 2015-06-20T17:04:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:04:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:04:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:04:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:05:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:05:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:05:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:05:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:05:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:05:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:06:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:06:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:06:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:06:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:06:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:06:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:07:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:07:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:07:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:07:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:07:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:07:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T17:08:03 (#:amount 110790168 #:time 302))
(heartbeat 2015-06-20T17:08:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:08:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:08:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:08:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:08:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:08:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:09:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:09:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:09:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:09:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:09:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:09:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:10:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:10:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:10:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:10:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:10:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:10:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:11:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:11:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:11:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:11:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:11:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:11:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:12:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T17:12:05 (#:amount 111593856 #:time 302))
(heartbeat 2015-06-20T17:12:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:12:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:12:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:12:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:12:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:13:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:13:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:13:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:13:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:13:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:13:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:14:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:14:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:14:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:14:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:14:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:14:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:15:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:15:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:15:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:15:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:15:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:15:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T17:16:01 (#:amount 110771424 #:time 298))
(heartbeat 2015-06-20T17:16:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:16:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:16:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:16:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:16:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:16:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:17:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:17:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:17:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:17:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:17:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:17:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:18:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:18:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:18:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:18:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:18:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:18:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:19:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:19:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:19:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:19:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:19:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:19:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T17:19:55 (#:amount 111650496 #:time 306))
(heartbeat 2015-06-20T17:20:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:20:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:20:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:20:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:20:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:20:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:21:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:21:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:21:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:21:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:21:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:21:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:22:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:22:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:22:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:22:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:22:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:22:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:23:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:23:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:23:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:23:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:23:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T17:23:51 (#:amount 110505136 #:time 300))
(heartbeat 2015-06-20T17:23:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:24:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:24:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:24:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:24:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:24:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:24:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:25:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:25:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:25:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:25:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:25:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:25:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:26:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:26:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:26:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:26:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:26:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:26:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:27:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:27:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:27:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:27:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:27:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T17:27:52 (#:amount 111617080 #:time 261))
(heartbeat 2015-06-20T17:27:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:28:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:28:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:28:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:28:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:28:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:28:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:29:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:29:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:29:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:29:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:29:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:29:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:30:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:30:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:30:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:30:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:30:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T17:30:49 (#:amount 110514608 #:time 261))
(heartbeat 2015-06-20T17:30:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:31:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:31:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:31:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:31:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:31:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:31:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:32:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:32:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:32:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:32:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:32:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:32:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:33:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:33:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:33:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:33:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:33:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T17:33:49 (#:amount 110891728 #:time 261))
(heartbeat 2015-06-20T17:33:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:34:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:34:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:34:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:34:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:34:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:34:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:35:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:35:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:35:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:35:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:35:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:35:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:36:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:36:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:36:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:36:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:36:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T17:36:45 (#:amount 110538680 #:time 257))
(heartbeat 2015-06-20T17:36:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:37:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:37:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:37:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:37:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:37:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:37:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:38:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:38:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:38:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:38:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:38:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:38:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:39:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:39:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:39:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:39:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T17:39:37 (#:amount 111893328 #:time 262))
(heartbeat 2015-06-20T17:39:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:39:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:40:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:40:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:40:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:40:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:40:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:40:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:41:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:41:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:41:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:41:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:41:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:41:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:42:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:42:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:42:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T17:42:34 (#:amount 110506968 #:time 259))
(heartbeat 2015-06-20T17:42:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:42:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:42:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:43:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:43:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:43:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:43:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:43:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:43:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:44:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:44:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:44:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:44:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:44:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:44:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:45:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:45:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:45:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T17:45:33 (#:amount 111704416 #:time 260))
(heartbeat 2015-06-20T17:45:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:45:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:45:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:46:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:46:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:46:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:46:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:46:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:46:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:47:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:47:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:47:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:47:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:47:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:47:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:48:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:48:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:48:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T17:48:26 (#:amount 110633928 #:time 258))
(heartbeat 2015-06-20T17:48:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:48:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:48:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:49:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:49:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:49:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:49:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:49:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:49:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:50:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:50:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:50:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:50:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:50:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:50:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:51:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:51:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T17:51:21 (#:amount 111850872 #:time 302))
(heartbeat 2015-06-20T17:51:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:51:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:51:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:51:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:52:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:52:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:52:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:52:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:52:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:52:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:53:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:53:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:53:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:53:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:53:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:53:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:54:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:54:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T17:54:25 (#:amount 110663912 #:time 257))
(heartbeat 2015-06-20T17:54:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:54:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:54:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:54:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:55:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:55:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:55:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:55:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:55:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:55:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:56:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:56:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:56:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:56:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:56:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:56:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:57:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:57:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:57:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T17:57:26 (#:amount 111707288 #:time 256))
(heartbeat 2015-06-20T17:57:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:57:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:57:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:58:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:58:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:58:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:58:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:58:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:58:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:59:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:59:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:59:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:59:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:59:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T17:59:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:00:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:00:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T18:00:24 (#:amount 110611552 #:time 255))
(heartbeat 2015-06-20T18:00:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:00:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:00:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:00:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:01:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:01:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:01:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:01:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:01:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:01:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:02:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:02:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:02:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:02:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:02:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:02:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:03:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:03:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T18:03:20 (#:amount 111834728 #:time 259))
(heartbeat 2015-06-20T18:03:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:03:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:03:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:03:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:04:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:04:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:04:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:04:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:04:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:04:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:05:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:05:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:05:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:05:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:05:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:05:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:06:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:06:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T18:06:18 (#:amount 110483608 #:time 299))
(heartbeat 2015-06-20T18:06:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:06:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:06:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:06:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:07:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:07:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:07:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:07:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:07:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:07:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:08:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:08:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:08:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:08:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:08:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:08:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:09:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T18:09:14 (#:amount 111814384 #:time 261))
(heartbeat 2015-06-20T18:09:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:09:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:09:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:09:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:09:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:10:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:10:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:10:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:10:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:10:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:10:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:11:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:11:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:11:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:11:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:11:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:11:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:12:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T18:12:13 (#:amount 110747336 #:time 256))
(heartbeat 2015-06-20T18:12:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:12:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:12:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:12:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:12:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:13:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:13:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:13:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:13:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:13:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:13:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:14:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:14:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:14:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:14:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:14:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:14:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:15:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T18:15:12 (#:amount 111779136 #:time 262))
(heartbeat 2015-06-20T18:15:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:15:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:15:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:15:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:15:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:16:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:16:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:16:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:16:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:16:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:16:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:17:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:17:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:17:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:17:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:17:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:17:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:18:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:18:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T18:18:16 (#:amount 110646376 #:time 258))
(heartbeat 2015-06-20T18:18:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:18:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:18:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:18:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:19:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:19:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:19:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:19:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:19:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:19:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:20:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:20:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:20:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:20:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:20:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:20:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:21:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:21:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T18:21:24 (#:amount 111728400 #:time 263))
(heartbeat 2015-06-20T18:21:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:21:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:21:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:21:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:22:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:22:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:22:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:22:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:22:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:22:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:23:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:23:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:23:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:23:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:23:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:23:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:24:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:24:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:24:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T18:24:36 (#:amount 110672000 #:time 259))
(heartbeat 2015-06-20T18:24:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:24:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:24:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:25:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:25:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:25:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:25:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:25:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:25:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:26:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:26:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:26:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:26:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:26:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:26:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:27:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:27:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:27:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T18:27:32 (#:amount 111688160 #:time 261))
(heartbeat 2015-06-20T18:27:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:27:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:27:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:28:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:28:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:28:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:28:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:28:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:28:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:29:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:29:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:29:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:29:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:29:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:29:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:30:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:30:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:30:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T18:30:31 (#:amount 110712960 #:time 258))
(heartbeat 2015-06-20T18:30:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:30:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:30:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:31:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:31:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:31:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:31:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:31:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:31:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:32:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:32:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:32:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:32:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:32:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:32:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:33:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:33:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:33:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T18:33:35 (#:amount 111588104 #:time 255))
(heartbeat 2015-06-20T18:33:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:33:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:33:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:34:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:34:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:34:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:34:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:34:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:34:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:35:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:35:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:35:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:35:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:35:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:35:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:36:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:36:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:36:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T18:36:33 (#:amount 109719232 #:time 302))
(heartbeat 2015-06-20T18:36:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:36:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:36:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:37:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:37:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:37:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:37:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:37:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:37:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:38:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:38:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:38:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:38:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:38:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:38:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:39:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:39:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:39:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:39:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T18:39:41 (#:amount 111610832 #:time 263))
(heartbeat 2015-06-20T18:39:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:39:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:40:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:40:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:40:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:40:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:40:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:40:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:41:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:41:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:41:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:41:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:41:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:41:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:42:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:42:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:42:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:42:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:42:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T18:42:54 (#:amount 110666808 #:time 261))
(heartbeat 2015-06-20T18:42:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:43:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:43:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:43:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:43:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:43:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:43:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:44:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:44:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:44:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:44:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:44:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:44:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:45:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:45:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:45:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:45:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:45:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:45:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T18:46:01 (#:amount 111790760 #:time 262))
(heartbeat 2015-06-20T18:46:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:46:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:46:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:46:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:46:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:46:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:47:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:47:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:47:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:47:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:47:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:47:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:48:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:48:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:48:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:48:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:48:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:48:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:49:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T18:49:09 (#:amount 110501224 #:time 299))
(heartbeat 2015-06-20T18:49:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:49:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:49:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:49:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:49:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:50:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:50:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:50:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:50:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:50:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:50:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:51:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:51:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:51:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:51:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:51:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:51:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:52:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:52:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T18:52:18 (#:amount 111497344 #:time 261))
(heartbeat 2015-06-20T18:52:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:52:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:52:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:52:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:53:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:53:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:53:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:53:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:53:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:53:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:54:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:54:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:54:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:54:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:54:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:54:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:55:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:55:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T18:55:21 (#:amount 110362152 #:time 287))
(heartbeat 2015-06-20T18:55:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:55:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:55:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:55:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:56:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:56:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:56:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:56:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:56:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:56:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:57:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:57:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:57:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:57:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:57:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:57:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:58:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:58:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:58:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:58:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:58:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:58:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:59:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T18:59:15 (#:amount 111764848 #:time 304))
(heartbeat 2015-06-20T18:59:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:59:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:59:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:59:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T18:59:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:00:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:00:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:00:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:00:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:00:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:00:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:01:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:01:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:01:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:01:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:01:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:01:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:02:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:02:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:02:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:02:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:02:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:02:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T19:03:05 (#:amount 109724280 #:time 301))
(heartbeat 2015-06-20T19:03:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:03:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:03:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:03:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:03:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:03:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:04:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:04:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:04:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:04:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:04:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:04:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:05:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:05:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:05:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:05:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:05:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:05:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:06:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:06:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T19:06:20 (#:amount 111752296 #:time 263))
(heartbeat 2015-06-20T19:06:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:06:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:06:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:06:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:07:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:07:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:07:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:07:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:07:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:07:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:08:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:08:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:08:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:08:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:08:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:08:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:09:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T19:09:11 (#:amount 110576464 #:time 258))
(heartbeat 2015-06-20T19:09:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:09:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:09:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:09:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:09:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:10:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:10:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:10:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:10:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:10:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:10:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:11:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:11:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:11:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:11:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:11:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:11:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:12:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T19:12:10 (#:amount 111634704 #:time 260))
(heartbeat 2015-06-20T19:12:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:12:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:12:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:12:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:12:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:13:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:13:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:13:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:13:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:13:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:13:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:14:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:14:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:14:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:14:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:14:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:14:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:15:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T19:15:09 (#:amount 110623416 #:time 298))
(heartbeat 2015-06-20T19:15:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:15:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:15:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:15:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:15:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:16:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:16:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:16:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:16:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:16:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:16:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:17:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:17:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:17:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:17:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:17:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:17:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:18:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T19:18:09 (#:amount 111750848 #:time 259))
(heartbeat 2015-06-20T19:18:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:18:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:18:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:18:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:18:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:19:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:19:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:19:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:19:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:19:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:19:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:20:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:20:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:20:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:20:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:20:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:20:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:21:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T19:21:12 (#:amount 110487832 #:time 255))
(heartbeat 2015-06-20T19:21:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:21:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:21:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:21:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:21:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:22:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:22:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:22:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:22:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:22:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:22:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:23:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:23:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:23:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:23:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:23:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:23:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:24:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:24:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T19:24:24 (#:amount 111963488 #:time 261))
(heartbeat 2015-06-20T19:24:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:24:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:24:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:24:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:25:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:25:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:25:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:25:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:25:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:25:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:26:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:26:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:26:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:26:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:26:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:26:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:27:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T19:27:13 (#:amount 110772360 #:time 261))
(heartbeat 2015-06-20T19:27:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:27:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:27:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:27:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:27:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:28:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:28:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:28:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:28:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:28:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:28:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:29:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:29:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:29:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:29:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:29:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:29:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T19:30:04 (#:amount 111628928 #:time 262))
(heartbeat 2015-06-20T19:30:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:30:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:30:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:30:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:30:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:30:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:31:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:31:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:31:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:31:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:31:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:31:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:32:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:32:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:32:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:32:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:32:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:32:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T19:33:01 (#:amount 110645688 #:time 257))
(heartbeat 2015-06-20T19:33:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:33:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:33:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:33:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:33:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:33:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:34:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:34:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:34:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:34:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:34:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:34:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:35:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:35:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:35:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:35:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:35:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T19:35:54 (#:amount 111472232 #:time 261))
(heartbeat 2015-06-20T19:35:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:36:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:36:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:36:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:36:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:36:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:36:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:37:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:37:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:37:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:37:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:37:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:37:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:38:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:38:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:38:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:38:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T19:38:48 (#:amount 110753688 #:time 255))
(heartbeat 2015-06-20T19:38:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:38:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:39:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:39:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:39:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:39:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:39:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:39:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:40:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:40:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:40:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:40:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:40:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:40:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:41:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:41:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:41:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:41:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T19:41:43 (#:amount 111784344 #:time 260))
(heartbeat 2015-06-20T19:41:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:41:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:42:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:42:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:42:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:42:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:42:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:42:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:43:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:43:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:43:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:43:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:43:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:43:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:44:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:44:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:44:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:44:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T19:44:39 (#:amount 110502840 #:time 259))
(heartbeat 2015-06-20T19:44:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:44:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:45:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:45:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:45:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:45:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:45:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:45:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:46:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:46:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:46:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:46:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:46:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:46:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:47:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:47:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:47:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:47:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T19:47:41 (#:amount 111743936 #:time 289))
(heartbeat 2015-06-20T19:47:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:47:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:48:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:48:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:48:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:48:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:48:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:48:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:49:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:49:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:49:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:49:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:49:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:49:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:50:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:50:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:50:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:50:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:50:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:50:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:51:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:51:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:51:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T19:51:34 (#:amount 110491824 #:time 301))
(heartbeat 2015-06-20T19:51:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:51:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:51:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:52:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:52:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:52:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:52:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:52:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:52:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:53:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:53:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:53:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:53:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:53:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:53:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:54:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:54:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:54:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:54:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:54:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:54:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:55:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:55:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:55:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T19:55:32 (#:amount 111931368 #:time 302))
(heartbeat 2015-06-20T19:55:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:55:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:55:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:56:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:56:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:56:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:56:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:56:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:56:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:57:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:57:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:57:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:57:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:57:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:57:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:58:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:58:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:58:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:58:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:58:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:58:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:59:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:59:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T19:59:24 (#:amount 110546864 #:time 300))
(heartbeat 2015-06-20T19:59:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:59:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:59:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T19:59:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:00:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:00:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:00:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:00:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:00:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:00:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:01:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:01:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:01:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:01:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:01:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:01:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:02:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:02:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:02:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:02:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:02:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:02:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:03:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:03:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T20:03:27 (#:amount 111729592 #:time 303))
(heartbeat 2015-06-20T20:03:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:03:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:03:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:03:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:04:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:04:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:04:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:04:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:04:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:04:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:05:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:05:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:05:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:05:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:05:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:05:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:06:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:06:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:06:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:06:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:06:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:06:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:07:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:07:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T20:07:26 (#:amount 110611552 #:time 303))
(heartbeat 2015-06-20T20:07:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:07:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:07:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:07:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:08:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:08:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:08:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:08:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:08:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:08:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:09:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:09:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:09:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:09:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:09:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:09:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:10:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:10:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:10:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:10:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:10:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:10:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T20:11:05 (#:amount 111031856 #:time 259))
(heartbeat 2015-06-20T20:11:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:11:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:11:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:11:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:11:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:11:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:12:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:12:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:12:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:12:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:12:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:12:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:13:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:13:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:13:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:13:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:13:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T20:13:58 (#:amount 110593168 #:time 258))
(heartbeat 2015-06-20T20:13:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:14:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:14:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:14:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:14:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:14:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:14:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:15:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:15:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:15:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:15:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:15:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:15:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:16:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:16:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:16:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:16:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:16:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T20:16:51 (#:amount 111777848 #:time 260))
(heartbeat 2015-06-20T20:16:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:17:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:17:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:17:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:17:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:17:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:17:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:18:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:18:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:18:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:18:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:18:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:18:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:19:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:19:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:19:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:19:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T20:19:43 (#:amount 110747432 #:time 259))
(heartbeat 2015-06-20T20:19:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:19:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:20:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:20:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:20:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:20:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:20:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:20:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:21:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:21:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:21:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:21:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:21:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:21:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:22:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:22:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:22:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T20:22:34 (#:amount 111647376 #:time 259))
(heartbeat 2015-06-20T20:22:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:22:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:23:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:23:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:23:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:23:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:23:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:23:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:24:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:24:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:24:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:24:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:24:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:24:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:25:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:25:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:25:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T20:25:23 (#:amount 109834504 #:time 260))
(heartbeat 2015-06-20T20:25:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:25:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:25:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:26:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:26:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:26:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:26:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:26:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:26:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:27:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:27:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:27:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:27:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:27:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:27:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:28:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:28:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T20:28:16 (#:amount 111479144 #:time 302))
(heartbeat 2015-06-20T20:28:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:28:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:28:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:28:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:29:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:29:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:29:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:29:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:29:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:29:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:30:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:30:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:30:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:30:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:30:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:30:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:31:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:31:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T20:31:10 (#:amount 109696232 #:time 257))
(heartbeat 2015-06-20T20:31:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:31:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:31:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:31:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:32:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:32:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:32:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:32:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:32:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:32:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:33:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:33:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:33:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:33:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:33:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:33:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:34:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T20:34:06 (#:amount 111648336 #:time 258))
(heartbeat 2015-06-20T20:34:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:34:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:34:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:34:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:34:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:35:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:35:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:35:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:35:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:35:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:35:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:36:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:36:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:36:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:36:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:36:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:36:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:37:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T20:37:03 (#:amount 110384472 #:time 259))
(heartbeat 2015-06-20T20:37:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:37:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:37:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:37:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:37:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:38:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:38:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:38:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:38:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:38:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:38:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:39:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:39:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:39:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:39:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:39:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:39:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:40:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T20:40:02 (#:amount 111997520 #:time 261))
(heartbeat 2015-06-20T20:40:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:40:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:40:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:40:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:40:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:41:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:41:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:41:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:41:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:41:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:41:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:42:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:42:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:42:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:42:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:42:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:42:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T20:43:00 (#:amount 110676008 #:time 259))
(heartbeat 2015-06-20T20:43:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:43:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:43:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:43:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:43:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:43:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:44:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:44:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:44:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:44:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:44:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:44:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:45:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:45:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:45:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:45:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:45:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:45:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T20:45:58 (#:amount 111789304 #:time 259))
(heartbeat 2015-06-20T20:46:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:46:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:46:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:46:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:46:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:46:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:47:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:47:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:47:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:47:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:47:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:47:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:48:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:48:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:48:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:48:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:48:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:48:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T20:48:55 (#:amount 110633728 #:time 257))
(heartbeat 2015-06-20T20:49:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:49:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:49:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:49:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:49:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:49:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:50:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:50:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:50:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:50:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:50:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:50:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:51:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:51:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:51:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:51:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:51:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T20:51:48 (#:amount 111545848 #:time 260))
(heartbeat 2015-06-20T20:51:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:52:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:52:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:52:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:52:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:52:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:52:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:53:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:53:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:53:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:53:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:53:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:53:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:54:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:54:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:54:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:54:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:54:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T20:54:41 (#:amount 109759920 #:time 259))
(heartbeat 2015-06-20T20:54:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:55:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:55:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:55:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:55:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:55:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:55:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:56:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:56:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:56:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:56:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:56:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:56:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:57:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:57:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:57:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:57:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T20:57:38 (#:amount 111502328 #:time 259))
(heartbeat 2015-06-20T20:57:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:57:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:58:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:58:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:58:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:58:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:58:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:58:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:59:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:59:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:59:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:59:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:59:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T20:59:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:00:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:00:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:00:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:00:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T21:00:36 (#:amount 110747080 #:time 256))
(heartbeat 2015-06-20T21:00:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:00:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:01:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:01:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:01:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:01:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:01:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:01:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:02:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:02:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:02:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:02:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:02:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:02:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:03:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:03:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:03:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:03:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T21:03:35 (#:amount 110866832 #:time 267))
(heartbeat 2015-06-20T21:03:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:03:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:04:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:04:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:04:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:04:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:04:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:04:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:05:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:05:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:05:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:05:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:05:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:05:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:06:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:06:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:06:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T21:06:31 (#:amount 110701536 #:time 254))
(heartbeat 2015-06-20T21:06:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:06:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:06:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:07:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:07:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:07:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:07:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:07:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:07:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:08:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:08:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:08:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:08:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:08:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:08:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:09:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:09:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:09:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T21:09:29 (#:amount 111951888 #:time 258))
(heartbeat 2015-06-20T21:09:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:09:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:09:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:10:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:10:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:10:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:10:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:10:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:10:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:11:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:11:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:11:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:11:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:11:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:11:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:12:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:12:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:12:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T21:12:23 (#:amount 110582064 #:time 257))
(heartbeat 2015-06-20T21:12:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:12:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:12:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:13:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:13:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:13:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:13:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:13:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:13:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:14:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:14:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:14:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:14:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:14:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:14:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:15:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:15:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T21:15:19 (#:amount 111889488 #:time 261))
(heartbeat 2015-06-20T21:15:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:15:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:15:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:15:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:16:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:16:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:16:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:16:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:16:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:16:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:17:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:17:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:17:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:17:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:17:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:17:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:18:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:18:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T21:18:22 (#:amount 110716992 #:time 277))
(heartbeat 2015-06-20T21:18:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:18:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:18:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:18:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:19:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:19:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:19:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:19:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:19:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:19:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:20:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:20:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:20:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:20:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:20:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:20:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:21:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:21:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T21:21:16 (#:amount 111683024 #:time 261))
(heartbeat 2015-06-20T21:21:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:21:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:21:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:21:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:22:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:22:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:22:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:22:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:22:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:22:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:23:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:23:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:23:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:23:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:23:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:23:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:24:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:24:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T21:24:15 (#:amount 109789784 #:time 260))
(heartbeat 2015-06-20T21:24:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:24:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:24:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:24:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:25:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:25:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:25:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:25:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:25:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:25:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:26:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:26:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:26:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:26:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:26:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:26:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:27:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:27:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T21:27:15 (#:amount 111865448 #:time 261))
(heartbeat 2015-06-20T21:27:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:27:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:27:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:27:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:28:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:28:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:28:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:28:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:28:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:28:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:29:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:29:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:29:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:29:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:29:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:29:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:30:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T21:30:06 (#:amount 110635456 #:time 260))
(heartbeat 2015-06-20T21:30:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:30:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:30:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:30:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:30:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:31:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:31:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:31:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:31:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:31:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:31:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:32:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:32:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:32:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:32:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:32:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:32:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T21:33:01 (#:amount 111938512 #:time 260))
(heartbeat 2015-06-20T21:33:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:33:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:33:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:33:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:33:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:33:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:34:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:34:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:34:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:34:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:34:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:34:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:35:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:35:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:35:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:35:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:35:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:35:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:36:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T21:36:04 (#:amount 110789224 #:time 262))
(heartbeat 2015-06-20T21:36:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:36:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:36:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:36:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:36:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:37:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:37:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:37:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:37:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:37:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:37:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:38:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:38:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:38:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:38:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:38:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:38:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:39:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T21:39:05 (#:amount 111727472 #:time 263))
(heartbeat 2015-06-20T21:39:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:39:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:39:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:39:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:39:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:40:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:40:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:40:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:40:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:40:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:40:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:41:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:41:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:41:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:41:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:41:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:41:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:42:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:42:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T21:42:14 (#:amount 110695136 #:time 258))
(heartbeat 2015-06-20T21:42:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:42:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:42:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:42:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:43:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:43:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:43:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:43:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:43:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:43:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:44:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:44:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:44:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:44:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:44:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:44:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:45:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:45:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:45:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:45:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:45:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T21:45:46 (#:amount 111710840 #:time 308))
(heartbeat 2015-06-20T21:45:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:46:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:46:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:46:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:46:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:46:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:46:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:47:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:47:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:47:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:47:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:47:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:47:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:48:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:48:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:48:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:48:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:48:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:48:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:49:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:49:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:49:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:49:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:49:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T21:49:46 (#:amount 110846304 #:time 301))
(heartbeat 2015-06-20T21:49:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:50:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:50:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:50:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:50:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:50:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:50:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:51:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:51:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:51:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:51:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:51:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:51:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:52:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:52:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:52:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:52:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:52:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:52:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:53:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:53:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:53:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:53:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:53:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T21:53:46 (#:amount 110941304 #:time 261))
(heartbeat 2015-06-20T21:53:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:54:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:54:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:54:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:54:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:54:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:54:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:55:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:55:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:55:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:55:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:55:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:55:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:56:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:56:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:56:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:56:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:56:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:56:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:57:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T21:57:04 (#:amount 110694424 #:time 256))
(heartbeat 2015-06-20T21:57:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:57:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:57:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:57:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:57:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:58:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:58:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:58:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:58:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:58:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:58:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:59:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:59:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:59:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:59:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:59:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T21:59:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T21:59:58 (#:amount 111927376 #:time 261))
(heartbeat 2015-06-20T22:00:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:00:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:00:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:00:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:00:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:00:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:01:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:01:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:01:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:01:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:01:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:01:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:02:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:02:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:02:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:02:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:02:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:02:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T22:03:00 (#:amount 110534920 #:time 255))
(heartbeat 2015-06-20T22:03:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:03:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:03:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:03:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:03:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:03:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:04:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:04:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:04:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:04:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:04:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:04:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:05:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:05:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:05:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:05:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:05:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:05:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T22:05:58 (#:amount 111729008 #:time 262))
(heartbeat 2015-06-20T22:06:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:06:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:06:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:06:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:06:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:06:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:07:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:07:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:07:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:07:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:07:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:07:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:08:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:08:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:08:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:08:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:08:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T22:08:52 (#:amount 110540464 #:time 261))
(heartbeat 2015-06-20T22:08:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:09:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:09:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:09:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:09:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:09:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:09:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:10:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:10:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:10:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:10:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:10:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:10:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:11:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:11:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:11:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:11:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:11:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T22:11:53 (#:amount 111952136 #:time 262))
(heartbeat 2015-06-20T22:11:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:12:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:12:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:12:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:12:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:12:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:12:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:13:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:13:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:13:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:13:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:13:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:13:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:14:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:14:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:14:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:14:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:14:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T22:14:46 (#:amount 110661016 #:time 259))
(heartbeat 2015-06-20T22:14:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:15:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:15:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:15:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:15:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:15:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:15:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:16:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:16:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:16:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:16:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:16:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:16:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:17:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:17:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:17:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:17:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T22:17:41 (#:amount 111829976 #:time 261))
(heartbeat 2015-06-20T22:17:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:17:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:18:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:18:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:18:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:18:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:18:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:18:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:19:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:19:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:19:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:19:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:19:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:19:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:20:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:20:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:20:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:20:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T22:20:38 (#:amount 110689944 #:time 296))
(heartbeat 2015-06-20T22:20:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:20:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:21:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:21:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:21:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:21:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:21:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:21:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:22:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:22:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:22:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:22:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:22:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:22:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:23:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:23:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:23:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:23:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T22:23:40 (#:amount 111937544 #:time 263))
(heartbeat 2015-06-20T22:23:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:23:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:24:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:24:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:24:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:24:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:24:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:24:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:25:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:25:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:25:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:25:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:25:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:25:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:26:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:26:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:26:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:26:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:26:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:26:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:27:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:27:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T22:27:22 (#:amount 110646392 #:time 256))
(heartbeat 2015-06-20T22:27:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:27:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:27:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:27:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:28:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:28:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:28:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:28:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:28:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:28:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:29:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:29:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:29:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:29:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:29:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:29:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:30:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:30:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:30:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T22:30:27 (#:amount 110782176 #:time 260))
(heartbeat 2015-06-20T22:30:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:30:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:30:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:31:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:31:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:31:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:31:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:31:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:31:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:32:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:32:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:32:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:32:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:32:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:32:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:33:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:33:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:33:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T22:33:30 (#:amount 110571040 #:time 294))
(heartbeat 2015-06-20T22:33:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:33:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:33:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:34:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:34:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:34:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:34:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:34:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:34:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:35:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:35:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:35:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:35:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:35:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:35:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:36:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:36:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:36:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T22:36:35 (#:amount 111835624 #:time 260))
(heartbeat 2015-06-20T22:36:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:36:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:36:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:37:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:37:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:37:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:37:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:37:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:37:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:38:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:38:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:38:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:38:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:38:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:38:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:39:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:39:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:39:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:39:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T22:39:42 (#:amount 110444368 #:time 258))
(heartbeat 2015-06-20T22:39:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:39:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:40:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:40:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:40:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:40:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:40:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:40:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:41:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:41:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:41:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:41:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:41:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:41:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:42:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:42:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:42:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:42:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T22:42:45 (#:amount 111734632 #:time 302))
(heartbeat 2015-06-20T22:42:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:42:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:43:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:43:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:43:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:43:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:43:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:43:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:44:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:44:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:44:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:44:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:44:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:44:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:45:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:45:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:45:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:45:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:45:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:45:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:46:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T22:46:16 (#:amount 110628696 #:time 300))
(heartbeat 2015-06-20T22:46:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:46:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:46:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:46:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:46:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:47:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:47:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:47:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:47:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:47:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:47:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:48:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:48:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:48:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:48:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:48:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:48:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:49:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:49:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:49:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:49:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:49:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:49:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:50:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T22:50:10 (#:amount 111958104 #:time 303))
(heartbeat 2015-06-20T22:50:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:50:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:50:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:50:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:50:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:51:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:51:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:51:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:51:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:51:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:51:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:52:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:52:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:52:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:52:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:52:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:52:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:53:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:53:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:53:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:53:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:53:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:53:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T22:54:05 (#:amount 110835856 #:time 298))
(heartbeat 2015-06-20T22:54:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:54:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:54:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:54:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:54:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:54:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:55:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:55:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:55:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:55:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:55:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:55:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:56:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:56:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:56:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:56:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:56:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:56:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:57:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:57:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:57:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:57:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:57:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:57:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T22:58:06 (#:amount 111858488 #:time 302))
(heartbeat 2015-06-20T22:58:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:58:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:58:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:58:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:58:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:58:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:59:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:59:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:59:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:59:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:59:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T22:59:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:00:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:00:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:00:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:00:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:00:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:00:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:01:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:01:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:01:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:01:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:01:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:01:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T23:02:06 (#:amount 110626200 #:time 300))
(heartbeat 2015-06-20T23:02:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:02:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:02:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:02:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:02:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:02:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:03:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:03:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:03:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:03:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:03:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:03:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:04:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:04:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:04:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:04:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:04:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:04:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:05:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:05:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:05:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:05:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:05:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:05:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T23:05:57 (#:amount 111704040 #:time 306))
(heartbeat 2015-06-20T23:06:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:06:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:06:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:06:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:06:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:06:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:07:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:07:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:07:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:07:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:07:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:07:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:08:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:08:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:08:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:08:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:08:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:08:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:09:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:09:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:09:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:09:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:09:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T23:09:53 (#:amount 110562568 #:time 301))
(heartbeat 2015-06-20T23:09:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:10:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:10:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:10:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:10:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:10:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:10:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:11:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:11:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:11:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:11:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:11:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:11:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:12:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:12:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:12:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:12:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:12:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:12:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:13:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T23:13:10 (#:amount 111630824 #:time 258))
(heartbeat 2015-06-20T23:13:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:13:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:13:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:13:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:13:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:14:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:14:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:14:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:14:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:14:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:14:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:15:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:15:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:15:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:15:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:15:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:15:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T23:16:00 (#:amount 110559392 #:time 259))
(heartbeat 2015-06-20T23:16:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:16:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:16:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:16:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:16:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:16:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:17:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:17:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:17:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:17:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:17:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:17:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:18:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:18:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:18:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:18:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:18:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:18:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T23:19:03 (#:amount 111609088 #:time 304))
(heartbeat 2015-06-20T23:19:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:19:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:19:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:19:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:19:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:19:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:20:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:20:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:20:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:20:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:20:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:20:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:21:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:21:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:21:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:21:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:21:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:21:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:22:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T23:22:10 (#:amount 110472752 #:time 260))
(heartbeat 2015-06-20T23:22:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:22:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:22:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:22:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:22:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:23:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:23:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:23:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:23:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:23:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:23:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:24:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:24:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:24:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:24:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:24:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:24:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T23:25:05 (#:amount 111889824 #:time 262))
(heartbeat 2015-06-20T23:25:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:25:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:25:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:25:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:25:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:25:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:26:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:26:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:26:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:26:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:26:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:26:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:27:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:27:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:27:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:27:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:27:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:27:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T23:28:00 (#:amount 110592784 #:time 261))
(heartbeat 2015-06-20T23:28:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:28:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:28:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:28:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:28:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:28:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:29:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:29:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:29:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:29:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:29:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:29:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:30:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:30:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:30:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:30:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:30:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T23:30:54 (#:amount 111802344 #:time 262))
(heartbeat 2015-06-20T23:30:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:31:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:31:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:31:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:31:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:31:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:31:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:32:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:32:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:32:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:32:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:32:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:32:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:33:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:33:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:33:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:33:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:33:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T23:33:48 (#:amount 110844008 #:time 258))
(heartbeat 2015-06-20T23:33:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:34:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:34:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:34:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:34:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:34:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:34:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:35:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:35:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:35:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:35:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:35:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:35:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:36:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:36:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:36:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:36:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T23:36:40 (#:amount 111751880 #:time 264))
(heartbeat 2015-06-20T23:36:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:36:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:37:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:37:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:37:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:37:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:37:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:37:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:38:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:38:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:38:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:38:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:38:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:38:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:39:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:39:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:39:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T23:39:35 (#:amount 110681848 #:time 261))
(heartbeat 2015-06-20T23:39:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:39:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:39:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:40:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:40:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:40:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:40:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:40:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:40:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:41:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:41:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:41:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:41:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:41:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:41:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:42:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:42:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:42:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T23:42:31 (#:amount 112048456 #:time 305))
(heartbeat 2015-06-20T23:42:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:42:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:42:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:43:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:43:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:43:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:43:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:43:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:43:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:44:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:44:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:44:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:44:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:44:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:44:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:45:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:45:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:45:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:45:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:45:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:45:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T23:46:07 (#:amount 110708328 #:time 262))
(heartbeat 2015-06-20T23:46:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:46:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:46:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:46:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:46:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:46:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:47:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:47:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:47:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:47:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:47:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:47:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:48:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:48:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:48:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:48:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:48:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:48:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:49:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:49:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:49:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:49:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T23:49:43 (#:amount 111934320 #:time 304))
(heartbeat 2015-06-20T23:49:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:49:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:50:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:50:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:50:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:50:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:50:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:50:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:51:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:51:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:51:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:51:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:51:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:51:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:52:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:52:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:52:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:52:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:52:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:52:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T23:53:01 (#:amount 109743240 #:time 297))
(heartbeat 2015-06-20T23:53:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:53:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:53:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:53:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:53:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:53:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:54:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:54:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:54:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:54:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:54:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:54:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:55:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:55:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:55:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:55:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:55:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:55:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:56:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T23:56:09 (#:amount 111802856 #:time 257))
(heartbeat 2015-06-20T23:56:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:56:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:56:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:56:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:56:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:57:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:57:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:57:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:57:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:57:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:57:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:58:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:58:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:58:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:58:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:58:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:58:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:59:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-20T23:59:17 (#:amount 110657368 #:time 257))
(heartbeat 2015-06-20T23:59:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:59:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:59:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:59:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-20T23:59:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:00:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:00:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:00:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:00:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:00:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:00:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:01:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:01:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:01:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:01:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:01:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:01:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:02:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:02:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T00:02:29 (#:amount 112016952 #:time 278))
(heartbeat 2015-06-21T00:02:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:02:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:02:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:02:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:03:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:03:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:03:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:03:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:03:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:03:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:04:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:04:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:04:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:04:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:04:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:04:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:05:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:05:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:05:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:05:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T00:05:39 (#:amount 110833864 #:time 258))
(heartbeat 2015-06-21T00:05:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:05:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:06:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:06:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:06:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:06:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:06:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:06:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:07:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:07:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:07:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:07:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:07:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:07:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:08:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:08:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:08:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:08:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T00:08:46 (#:amount 111694920 #:time 258))
(heartbeat 2015-06-21T00:08:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:08:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:09:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:09:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:09:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:09:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:09:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:09:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:10:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:10:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:10:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:10:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:10:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:10:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:11:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:11:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:11:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:11:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:11:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T00:11:55 (#:amount 110660544 #:time 256))
(heartbeat 2015-06-21T00:11:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:12:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:12:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:12:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:12:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:12:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:12:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:13:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:13:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:13:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:13:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:13:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:13:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:14:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:14:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:14:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:14:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:14:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:14:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T00:14:59 (#:amount 111850528 #:time 274))
(heartbeat 2015-06-21T00:15:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:15:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:15:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:15:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:15:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:15:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:16:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:16:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:16:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:16:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:16:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:16:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:17:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:17:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:17:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:17:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:17:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:17:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:18:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T00:18:12 (#:amount 110674200 #:time 257))
(heartbeat 2015-06-21T00:18:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:18:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:18:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:18:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:18:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:19:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:19:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:19:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:19:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:19:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:19:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:20:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:20:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:20:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:20:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:20:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:20:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:21:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T00:21:19 (#:amount 111913168 #:time 260))
(heartbeat 2015-06-21T00:21:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:21:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:21:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:21:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:21:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:22:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:22:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:22:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:22:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:22:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:22:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:23:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:23:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:23:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:23:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:23:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:23:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:24:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:24:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:24:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T00:24:36 (#:amount 109843360 #:time 257))
(heartbeat 2015-06-21T00:24:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:24:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:24:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:25:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:25:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:25:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:25:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:25:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:25:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:26:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:26:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:26:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:26:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:26:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:27:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:27:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:27:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:27:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:27:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:27:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T00:27:54 (#:amount 111888456 #:time 302))
(heartbeat 2015-06-21T00:28:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:28:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:28:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:28:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:28:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:28:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:29:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:29:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:29:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:29:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:29:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:29:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:30:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:30:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:30:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:30:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:30:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:30:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:31:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T00:31:02 (#:amount 110898312 #:time 260))
(heartbeat 2015-06-21T00:31:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:31:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:31:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:31:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:31:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:32:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:32:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:32:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:32:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:32:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:32:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:33:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:33:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:33:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:33:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:33:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:33:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:34:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:34:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:34:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:34:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T00:34:38 (#:amount 111815648 #:time 260))
(heartbeat 2015-06-21T00:34:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:34:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:35:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:35:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:35:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:35:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:35:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:35:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:36:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:36:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:36:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:36:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:36:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:36:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:37:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:37:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:37:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:37:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:37:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:37:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T00:37:57 (#:amount 110722104 #:time 303))
(heartbeat 2015-06-21T00:38:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:38:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:38:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:38:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:38:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:38:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:39:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:39:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:39:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:39:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:39:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:39:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:40:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:40:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:40:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:40:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:40:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:40:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:41:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:41:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T00:41:18 (#:amount 111827512 #:time 256))
(heartbeat 2015-06-21T00:41:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:41:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:41:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:41:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:42:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:42:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:42:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:42:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:42:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:42:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:43:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:43:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:43:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:43:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:43:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:43:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:44:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:44:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:44:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T00:44:25 (#:amount 110763488 #:time 268))
(heartbeat 2015-06-21T00:44:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:44:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:44:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:45:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:45:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:45:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:45:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:45:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:45:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:46:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:46:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:46:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:46:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:46:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:46:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:47:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:47:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:47:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:47:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T00:47:32 (#:amount 111622912 #:time 262))
(heartbeat 2015-06-21T00:47:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:47:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:48:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:48:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:48:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:48:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:48:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:48:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:49:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:49:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:49:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:49:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:49:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:49:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:50:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:50:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:50:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:50:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:50:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:50:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T00:50:52 (#:amount 110555680 #:time 302))
(heartbeat 2015-06-21T00:51:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:51:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:51:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:51:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:51:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:51:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:52:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:52:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:52:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:52:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:52:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:52:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:53:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:53:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:53:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:53:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:53:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:53:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:54:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:54:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:54:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T00:54:25 (#:amount 111891992 #:time 261))
(heartbeat 2015-06-21T00:54:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:54:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:54:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:55:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:55:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:55:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:55:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:55:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:55:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:56:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:56:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:56:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:56:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:56:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:56:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:57:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:57:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:57:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T00:57:26 (#:amount 110718440 #:time 257))
(heartbeat 2015-06-21T00:57:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:57:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:57:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:58:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:58:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:58:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:58:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:58:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:58:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:59:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:59:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:59:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:59:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:59:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T00:59:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:00:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:00:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:00:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T01:00:30 (#:amount 111924504 #:time 306))
(heartbeat 2015-06-21T01:00:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:00:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:00:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:01:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:01:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:01:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:01:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:01:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:01:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:02:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:02:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:02:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:02:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:02:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:02:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:03:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:03:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:03:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:03:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:03:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:03:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:04:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T01:04:07 (#:amount 110721880 #:time 299))
(heartbeat 2015-06-21T01:04:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:04:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:04:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:04:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:04:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:05:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:05:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:05:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:05:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:05:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:05:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:06:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:06:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:06:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:06:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:06:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:06:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:07:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:07:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:07:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:07:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:07:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:07:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T01:08:01 (#:amount 111663360 #:time 271))
(heartbeat 2015-06-21T01:08:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:08:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:08:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:08:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:08:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:08:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:09:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:09:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:09:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:09:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:09:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:09:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:10:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:10:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:10:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:10:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:10:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:10:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:11:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:11:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:11:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:11:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:11:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:11:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T01:11:56 (#:amount 110689200 #:time 301))
(heartbeat 2015-06-21T01:12:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:12:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:12:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:12:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:12:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:12:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:13:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:13:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:13:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:13:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:13:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:13:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:14:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:14:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:14:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:14:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:14:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:14:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:15:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T01:15:05 (#:amount 112033344 #:time 260))
(heartbeat 2015-06-21T01:15:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:15:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:15:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:15:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:15:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:16:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:16:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:16:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:16:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:16:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:16:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:17:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:17:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:17:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:17:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:17:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:17:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:18:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:18:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:18:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:18:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:18:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T01:18:46 (#:amount 110719192 #:time 299))
(heartbeat 2015-06-21T01:18:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:19:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:19:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:19:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:19:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:19:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:19:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:20:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:20:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:20:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:20:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:20:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:20:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:21:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:21:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:21:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:21:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:21:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:21:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:22:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:22:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T01:22:15 (#:amount 111017456 #:time 295))
(heartbeat 2015-06-21T01:22:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:22:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:22:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:22:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:23:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:23:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:23:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:23:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:23:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:23:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:24:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:24:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:24:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:24:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:24:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:24:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:25:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:25:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T01:25:12 (#:amount 110696072 #:time 260))
(heartbeat 2015-06-21T01:25:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:25:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:25:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:25:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:26:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:26:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:26:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:26:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:26:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:26:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:27:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:27:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:27:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:27:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:27:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:27:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T01:28:00 (#:amount 112030544 #:time 263))
(heartbeat 2015-06-21T01:28:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:28:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:28:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:28:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:28:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:28:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:29:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:29:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:29:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:29:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:29:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:29:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:30:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:30:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:30:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:30:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:30:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:30:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T01:31:00 (#:amount 110683656 #:time 258))
(heartbeat 2015-06-21T01:31:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:31:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:31:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:31:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:31:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:31:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:32:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:32:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:32:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:32:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:32:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:32:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:33:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:33:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:33:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:33:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:33:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:33:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T01:34:01 (#:amount 111819872 #:time 260))
(heartbeat 2015-06-21T01:34:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:34:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:34:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:34:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:34:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:34:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:35:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:35:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:35:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:35:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:35:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:35:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:36:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:36:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:36:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:36:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:36:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:36:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:37:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T01:37:08 (#:amount 110904152 #:time 299))
(heartbeat 2015-06-21T01:37:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:37:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:37:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:37:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:37:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:38:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:38:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:38:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:38:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:38:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:38:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:39:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:39:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:39:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:39:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:39:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:39:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:40:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T01:40:10 (#:amount 111820736 #:time 269))
(heartbeat 2015-06-21T01:40:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:40:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:40:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:40:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:40:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:41:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:41:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:41:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:41:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:41:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:41:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:42:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:42:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:42:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:42:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:42:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:42:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:43:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:43:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T01:43:15 (#:amount 109732088 #:time 257))
(heartbeat 2015-06-21T01:43:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:43:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:43:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:43:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:44:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:44:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:44:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:44:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:44:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:44:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:45:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:45:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:45:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:45:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:45:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:45:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:46:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:46:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T01:46:18 (#:amount 111907424 #:time 259))
(heartbeat 2015-06-21T01:46:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:46:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:46:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:46:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:47:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:47:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:47:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:47:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:47:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:47:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:48:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:48:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:48:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:48:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:48:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:48:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:49:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:49:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T01:49:22 (#:amount 110553280 #:time 261))
(heartbeat 2015-06-21T01:49:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:49:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:49:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:49:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:50:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:50:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:50:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:50:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:50:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:50:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:51:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:51:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:51:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:51:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:51:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:51:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:52:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:52:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:52:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T01:52:26 (#:amount 111781344 #:time 261))
(heartbeat 2015-06-21T01:52:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:52:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:52:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:53:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:53:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:53:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:53:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:53:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:53:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:54:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:54:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:54:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:54:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:54:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:54:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:55:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:55:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:55:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T01:55:28 (#:amount 110725096 #:time 260))
(heartbeat 2015-06-21T01:55:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:55:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:55:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:56:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:56:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:56:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:56:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:56:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:56:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:57:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:57:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:57:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:57:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:57:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:57:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:58:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:58:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:58:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T01:58:26 (#:amount 111902704 #:time 260))
(heartbeat 2015-06-21T01:58:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:58:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:58:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:59:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:59:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:59:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:59:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:59:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T01:59:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:00:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:00:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:00:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:00:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:00:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:00:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:01:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:01:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:01:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T02:01:26 (#:amount 110554232 #:time 257))
(heartbeat 2015-06-21T02:01:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:01:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:01:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:02:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:02:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:02:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:02:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:02:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:02:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:03:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:03:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:03:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:03:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:03:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:03:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:04:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:04:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:04:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:04:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:04:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T02:04:44 (#:amount 110906160 #:time 304))
(heartbeat 2015-06-21T02:04:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:05:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:05:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:05:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:05:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:05:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:05:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:06:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:06:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:06:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:06:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:06:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:06:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:07:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:07:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:07:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:07:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:07:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:07:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:08:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:08:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T02:08:15 (#:amount 110561056 #:time 257))
(heartbeat 2015-06-21T02:08:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:08:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:08:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:08:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:09:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:09:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:09:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:09:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:09:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:09:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:10:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:10:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:10:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:10:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:10:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:10:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:11:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:11:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:11:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T02:11:28 (#:amount 111861952 #:time 305))
(heartbeat 2015-06-21T02:11:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:11:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:11:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:12:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:12:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:12:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:12:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:12:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:12:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:13:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:13:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:13:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:13:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:13:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:13:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:14:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:14:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:14:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:14:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:14:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T02:14:45 (#:amount 110784136 #:time 277))
(heartbeat 2015-06-21T02:14:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:15:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:15:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:15:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:15:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:15:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:15:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:16:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:16:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:16:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:16:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:16:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:16:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:17:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:17:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:17:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:17:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:17:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T02:17:54 (#:amount 111840400 #:time 256))
(heartbeat 2015-06-21T02:17:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:18:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:18:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:18:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:18:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:18:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:18:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:19:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:19:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:19:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:19:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:19:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:19:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:20:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:20:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:20:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:20:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:20:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:20:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T02:21:00 (#:amount 110578584 #:time 260))
(heartbeat 2015-06-21T02:21:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:21:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:21:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:21:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:21:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:21:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:22:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:22:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:22:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:22:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:22:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:22:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:23:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:23:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:23:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:23:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:23:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:23:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:24:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T02:24:09 (#:amount 111914840 #:time 260))
(heartbeat 2015-06-21T02:24:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:24:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:24:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:24:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:24:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:25:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:25:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:25:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:25:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:25:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:25:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:26:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:26:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:26:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:26:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:26:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:26:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:27:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:27:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T02:27:16 (#:amount 110703992 #:time 259))
(heartbeat 2015-06-21T02:27:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:27:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:27:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:27:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:28:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:28:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:28:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:28:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:28:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:28:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:29:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:29:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:29:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:29:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:29:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:29:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:30:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:30:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T02:30:21 (#:amount 111871304 #:time 262))
(heartbeat 2015-06-21T02:30:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:30:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:30:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:30:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:31:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:31:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:31:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:31:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:31:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:31:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:32:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:32:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:32:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:32:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:32:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:32:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:33:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:33:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:33:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T02:33:26 (#:amount 110796592 #:time 260))
(heartbeat 2015-06-21T02:33:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:33:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:33:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:34:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:34:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:34:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:34:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:34:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:34:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:35:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:35:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:35:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:35:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:35:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:35:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:36:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:36:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:36:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T02:36:32 (#:amount 112047344 #:time 260))
(heartbeat 2015-06-21T02:36:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:36:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:36:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:37:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:37:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:37:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:37:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:37:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:37:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:38:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:38:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:38:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:38:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:38:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:38:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:39:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:39:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:39:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T02:39:33 (#:amount 110895424 #:time 257))
(heartbeat 2015-06-21T02:39:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:39:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:39:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:40:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:40:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:40:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:40:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:40:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:40:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:41:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:41:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:41:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:41:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:41:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:41:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:42:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:42:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:42:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:42:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T02:42:42 (#:amount 111700840 #:time 259))
(heartbeat 2015-06-21T02:42:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:42:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:43:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:43:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:43:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:43:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:43:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:43:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:44:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:44:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:44:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:44:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:44:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:44:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:45:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:45:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:45:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:45:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:45:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T02:45:48 (#:amount 110630864 #:time 260))
(heartbeat 2015-06-21T02:45:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:46:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:46:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:46:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:46:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:46:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:46:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:47:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:47:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:47:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:47:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:47:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:47:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:48:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:48:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:48:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:48:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:48:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T02:48:51 (#:amount 111153000 #:time 263))
(heartbeat 2015-06-21T02:48:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:49:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:49:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:49:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:49:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:49:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:49:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:50:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:50:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:50:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:50:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:50:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:50:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:51:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:51:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:51:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:51:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:51:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:51:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T02:51:56 (#:amount 109871400 #:time 299))
(heartbeat 2015-06-21T02:52:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:52:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:52:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:52:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:52:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:52:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:53:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:53:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:53:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:53:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:53:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:53:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:54:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:54:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:54:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:54:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:54:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:54:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T02:55:04 (#:amount 111814392 #:time 262))
(heartbeat 2015-06-21T02:55:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:55:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:55:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:55:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:55:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:55:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:56:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:56:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:56:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:56:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:56:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:56:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:57:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:57:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:57:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:57:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:57:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:57:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:58:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:58:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T02:58:21 (#:amount 110822272 #:time 264))
(heartbeat 2015-06-21T02:58:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:58:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:58:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:58:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:59:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:59:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:59:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:59:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:59:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T02:59:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:00:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:00:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:00:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:00:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:00:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:00:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:01:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:01:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:01:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:01:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T03:01:38 (#:amount 111925904 #:time 303))
(heartbeat 2015-06-21T03:01:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:01:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:02:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:02:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:02:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:02:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:02:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:02:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:03:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:03:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:03:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:03:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:03:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:03:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:04:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:04:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:04:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:04:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:04:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T03:04:48 (#:amount 110605176 #:time 256))
(heartbeat 2015-06-21T03:04:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:05:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:05:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:05:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:05:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:05:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:05:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:06:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:06:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:06:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:06:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:06:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:06:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:07:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:07:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:07:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:07:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:07:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:07:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T03:07:59 (#:amount 111802704 #:time 258))
(heartbeat 2015-06-21T03:08:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:08:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:08:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:08:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:08:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:08:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:09:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:09:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:09:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:09:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:09:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:09:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:10:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:10:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:10:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:10:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:10:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:10:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T03:11:03 (#:amount 110674016 #:time 258))
(heartbeat 2015-06-21T03:11:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:11:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:11:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:11:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:11:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:11:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:12:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:12:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:12:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:12:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:12:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:12:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:13:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:13:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:13:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:13:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:13:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:13:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T03:14:06 (#:amount 111861656 #:time 261))
(heartbeat 2015-06-21T03:14:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:14:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:14:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:14:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:14:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:14:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:15:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:15:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:15:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:15:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:15:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:15:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:16:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:16:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:16:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:16:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:16:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:16:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:17:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T03:17:13 (#:amount 110656872 #:time 257))
(heartbeat 2015-06-21T03:17:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:17:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:17:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:17:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:17:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:18:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:18:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:18:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:18:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:18:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:18:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:19:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:19:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:19:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:19:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:19:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:19:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:20:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:20:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T03:20:22 (#:amount 111796320 #:time 258))
(heartbeat 2015-06-21T03:20:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:20:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:20:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:20:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:21:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:21:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:21:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:21:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:21:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:21:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:22:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:22:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:22:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:22:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:22:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:22:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:23:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:23:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T03:23:25 (#:amount 110612544 #:time 258))
(heartbeat 2015-06-21T03:23:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:23:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:23:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:23:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:24:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:24:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:24:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:24:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:24:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:24:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:25:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:25:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:25:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:25:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:25:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:25:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:26:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:26:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:26:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:26:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:26:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T03:26:53 (#:amount 111991888 #:time 306))
(heartbeat 2015-06-21T03:26:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:27:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:27:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:27:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:27:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:27:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:27:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:28:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:28:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:28:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:28:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:28:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:28:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:29:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:29:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:29:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:29:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:29:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:29:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:30:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:30:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T03:30:26 (#:amount 110656384 #:time 304))
(heartbeat 2015-06-21T03:30:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:30:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:30:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:30:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:31:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:31:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:31:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:31:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:31:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:31:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:32:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:32:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:32:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:32:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:32:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:32:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:33:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:33:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:33:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T03:33:36 (#:amount 111862808 #:time 260))
(heartbeat 2015-06-21T03:33:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:33:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:33:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:34:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:34:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:34:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:34:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:34:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:34:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:35:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:35:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:35:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:35:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:35:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:35:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:36:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:36:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:36:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T03:36:31 (#:amount 110812760 #:time 270))
(heartbeat 2015-06-21T03:36:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:36:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:36:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:37:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:37:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:37:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:37:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:37:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:37:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:38:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:38:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:38:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:38:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:38:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:38:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:39:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:39:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T03:39:26 (#:amount 111727504 #:time 303))
(heartbeat 2015-06-21T03:39:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:39:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:39:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:39:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:40:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:40:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:40:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:40:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:40:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:40:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:41:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:41:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:41:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:41:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:41:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:41:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:42:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:42:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T03:42:22 (#:amount 110838120 #:time 257))
(heartbeat 2015-06-21T03:42:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:42:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:42:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:42:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:43:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:43:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:43:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:43:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:43:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:43:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:44:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:44:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:44:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:44:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:44:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:44:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:45:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:45:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T03:45:20 (#:amount 111848760 #:time 285))
(heartbeat 2015-06-21T03:45:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:45:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:45:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:45:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:46:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:46:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:46:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:46:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:46:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:46:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:47:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:47:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:47:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:47:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:47:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:47:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:48:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T03:48:17 (#:amount 109866544 #:time 259))
(heartbeat 2015-06-21T03:48:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:48:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:48:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:48:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:48:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:49:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:49:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:49:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:49:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:49:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:49:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:50:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:50:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:50:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:50:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:50:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:50:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:51:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T03:51:09 (#:amount 111997840 #:time 261))
(heartbeat 2015-06-21T03:51:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:51:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:51:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:51:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:51:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:52:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:52:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:52:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:52:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:52:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:52:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:53:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:53:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:53:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:53:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:53:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:53:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:54:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T03:54:11 (#:amount 110662840 #:time 260))
(heartbeat 2015-06-21T03:54:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:54:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:54:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:54:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:54:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:55:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:55:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:55:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:55:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:55:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:55:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:56:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:56:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:56:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:56:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:56:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:56:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T03:57:07 (#:amount 112054536 #:time 262))
(heartbeat 2015-06-21T03:57:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:57:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:57:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:57:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:57:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:57:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:58:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:58:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:58:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:58:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:58:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:58:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:59:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:59:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:59:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:59:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:59:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T03:59:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T04:00:06 (#:amount 110719152 #:time 259))
(heartbeat 2015-06-21T04:00:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:00:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:00:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:00:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:00:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:00:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:01:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:01:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:01:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:01:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:01:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:01:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:02:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:02:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:02:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:02:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:02:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:02:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:03:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:03:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T04:03:28 (#:amount 111816872 #:time 260))
(heartbeat 2015-06-21T04:03:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:03:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:03:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:03:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:04:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:04:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:04:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:04:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:04:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:04:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:05:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:05:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:05:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:05:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:05:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:05:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:06:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:06:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:06:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:06:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T04:06:40 (#:amount 110580680 #:time 284))
(heartbeat 2015-06-21T04:06:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:06:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:07:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:07:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:07:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:07:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:07:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:07:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:08:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:08:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:08:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:08:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:08:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:08:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:09:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:09:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:09:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:09:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:09:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T04:09:57 (#:amount 110972352 #:time 263))
(heartbeat 2015-06-21T04:09:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:10:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:10:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:10:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:10:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:10:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:10:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:11:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:11:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:11:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:11:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:11:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:11:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:12:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:12:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:12:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:12:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:12:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:12:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:13:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:13:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:13:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T04:13:32 (#:amount 110633288 #:time 305))
(heartbeat 2015-06-21T04:13:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:13:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:13:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:14:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:14:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:14:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:14:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:14:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:14:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:15:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:15:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:15:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:15:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:15:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:15:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:16:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:16:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:16:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:16:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:16:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:16:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:17:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:17:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T04:17:27 (#:amount 111752816 #:time 304))
(heartbeat 2015-06-21T04:17:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:17:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:17:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:17:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:18:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:18:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:18:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:18:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:18:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:18:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:19:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:19:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:19:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:19:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:19:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:19:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:20:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:20:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:20:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:20:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T04:20:42 (#:amount 110587112 #:time 255))
(heartbeat 2015-06-21T04:20:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:20:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:21:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:21:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:21:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:21:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:21:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:21:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:22:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:22:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:22:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:22:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:22:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:22:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:23:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:23:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:23:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T04:23:37 (#:amount 111606904 #:time 263))
(heartbeat 2015-06-21T04:23:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:23:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:23:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:24:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:24:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:24:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:24:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:24:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:24:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:25:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:25:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:25:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:25:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:25:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:25:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:26:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:26:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:26:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T04:26:37 (#:amount 110803488 #:time 286))
(heartbeat 2015-06-21T04:26:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:26:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:26:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:27:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:27:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:27:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:27:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:27:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:27:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:28:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:28:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:28:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:28:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:28:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:28:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:29:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:29:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:29:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T04:29:39 (#:amount 111975720 #:time 300))
(heartbeat 2015-06-21T04:29:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:29:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:29:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:30:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:30:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:30:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:30:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:30:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:30:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:31:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:31:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:31:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:31:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:31:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:31:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:32:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:32:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:32:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:32:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:32:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T04:32:57 (#:amount 110501192 #:time 259))
(heartbeat 2015-06-21T04:32:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:33:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:33:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:33:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:33:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:33:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:33:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:34:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:34:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:34:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:34:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:34:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:34:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:35:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:35:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:35:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:35:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:35:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:35:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T04:36:00 (#:amount 111876064 #:time 258))
(heartbeat 2015-06-21T04:36:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:36:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:36:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:36:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:36:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:36:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:37:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:37:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:37:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:37:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:37:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:37:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:38:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:38:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:38:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:38:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:38:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:38:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T04:39:08 (#:amount 110707336 #:time 254))
(heartbeat 2015-06-21T04:39:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:39:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:39:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:39:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:39:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:39:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:40:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:40:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:40:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:40:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:40:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:40:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:41:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:41:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:41:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:41:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:41:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:41:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:42:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T04:42:17 (#:amount 111092152 #:time 260))
(heartbeat 2015-06-21T04:42:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:42:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:42:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:42:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:42:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:43:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:43:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:43:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:43:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:43:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:43:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:44:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:44:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:44:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:44:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:44:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:44:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:45:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:45:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T04:45:22 (#:amount 110691224 #:time 260))
(heartbeat 2015-06-21T04:45:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:45:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:45:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:45:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:46:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:46:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:46:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:46:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:46:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:46:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:47:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:47:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:47:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:47:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:47:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:47:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:48:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:48:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T04:48:29 (#:amount 111822712 #:time 261))
(heartbeat 2015-06-21T04:48:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:48:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:48:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:48:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:49:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:49:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:49:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:49:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:49:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:50:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:50:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:50:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:50:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:50:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:50:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:51:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:51:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:51:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:51:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T04:51:31 (#:amount 110690168 #:time 291))
(heartbeat 2015-06-21T04:51:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:51:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:52:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:52:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:52:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:52:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:52:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:52:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:53:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:53:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:53:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:53:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:53:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:53:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:54:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:54:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:54:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:54:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T04:54:35 (#:amount 111623472 #:time 259))
(heartbeat 2015-06-21T04:54:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:54:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:55:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:55:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:55:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:55:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:55:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:55:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:56:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:56:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:56:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:56:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:56:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:56:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:57:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:57:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:57:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:57:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:57:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T04:57:41 (#:amount 110864344 #:time 258))
(heartbeat 2015-06-21T04:57:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:58:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:58:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:58:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:58:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:58:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:58:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:59:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:59:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:59:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:59:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:59:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T04:59:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:00:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:00:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:00:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:00:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:00:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T05:00:42 (#:amount 111932864 #:time 262))
(heartbeat 2015-06-21T05:00:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:01:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:01:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:01:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:01:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:01:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:01:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:02:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:02:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:02:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:02:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:02:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:02:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:03:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:03:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:03:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:03:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:03:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T05:03:47 (#:amount 110845040 #:time 258))
(heartbeat 2015-06-21T05:03:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:04:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:04:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:04:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:04:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:04:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:04:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:05:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:05:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:05:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:05:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:05:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:05:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:06:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:06:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:06:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:06:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:06:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T05:06:46 (#:amount 111991312 #:time 261))
(heartbeat 2015-06-21T05:06:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:07:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:07:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:07:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:07:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:07:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:07:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:08:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:08:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:08:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:08:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:08:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:08:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:09:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:09:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:09:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:09:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:09:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T05:09:48 (#:amount 110839640 #:time 255))
(heartbeat 2015-06-21T05:09:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:10:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:10:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:10:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:10:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:10:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:10:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:11:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:11:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:11:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:11:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:11:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:11:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:12:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:12:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:12:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:12:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:12:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:12:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T05:12:52 (#:amount 111143328 #:time 259))
(heartbeat 2015-06-21T05:13:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:13:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:13:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:13:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:13:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:13:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:14:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:14:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:14:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:14:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:14:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:14:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:15:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:15:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:15:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:15:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:15:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:15:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T05:15:52 (#:amount 110837080 #:time 301))
(heartbeat 2015-06-21T05:16:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:16:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:16:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:16:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:16:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:16:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:17:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:17:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:17:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:17:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:17:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:17:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:18:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:18:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:18:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:18:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:18:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T05:18:49 (#:amount 111852008 #:time 261))
(heartbeat 2015-06-21T05:18:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:19:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:19:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:19:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:19:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:19:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:19:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:20:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:20:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:20:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:20:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:20:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:20:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:21:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:21:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:21:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:21:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:21:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T05:21:47 (#:amount 110696512 #:time 256))
(heartbeat 2015-06-21T05:21:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:22:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:22:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:22:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:22:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:22:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:22:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:23:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:23:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:23:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:23:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:23:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:23:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:24:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:24:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:24:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:24:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:24:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T05:24:48 (#:amount 111851848 #:time 259))
(heartbeat 2015-06-21T05:24:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:25:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:25:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:25:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:25:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:25:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:25:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:26:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:26:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:26:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:26:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:26:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:26:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:27:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:27:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:27:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:27:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:27:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T05:27:51 (#:amount 109919496 #:time 258))
(heartbeat 2015-06-21T05:27:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:28:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:28:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:28:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:28:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:28:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:28:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:29:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:29:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:29:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:29:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:29:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:29:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:30:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:30:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:30:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:30:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:30:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:30:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:31:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T05:31:07 (#:amount 111678456 #:time 306))
(heartbeat 2015-06-21T05:31:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:31:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:31:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:31:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:31:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:32:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:32:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:32:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:32:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:32:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:32:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:33:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:33:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:33:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:33:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:33:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:33:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:34:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:34:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:34:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:34:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:34:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T05:34:51 (#:amount 109799064 #:time 301))
(heartbeat 2015-06-21T05:34:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:35:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:35:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:35:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:35:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:35:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:35:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:36:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:36:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:36:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:36:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:36:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:36:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:37:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:37:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:37:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:37:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:37:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:37:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:38:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:38:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T05:38:18 (#:amount 112013680 #:time 269))
(heartbeat 2015-06-21T05:38:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:38:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:38:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:38:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:39:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:39:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:39:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:39:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:39:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:39:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:40:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:40:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:40:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:40:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:40:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:40:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:41:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:41:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:41:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T05:41:28 (#:amount 110762352 #:time 302))
(heartbeat 2015-06-21T05:41:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:41:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:41:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:42:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:42:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:42:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:42:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:42:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:42:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:43:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:43:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:43:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:43:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:43:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:43:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:44:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:44:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:44:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:44:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:44:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:44:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T05:45:00 (#:amount 112095672 #:time 305))
(heartbeat 2015-06-21T05:45:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:45:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:45:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:45:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:45:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:45:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:46:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:46:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:46:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:46:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:46:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:46:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:47:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:47:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:47:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:47:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:47:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:47:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:48:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T05:48:03 (#:amount 110926352 #:time 258))
(heartbeat 2015-06-21T05:48:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:48:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:48:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:48:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:48:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:49:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:49:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:49:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:49:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:49:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:49:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:50:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:50:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:50:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:50:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:50:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:50:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:51:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T05:51:07 (#:amount 111800336 #:time 258))
(heartbeat 2015-06-21T05:51:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:51:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:51:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:51:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:51:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:52:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:52:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:52:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:52:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:52:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:52:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:53:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:53:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:53:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:53:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:53:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:53:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:54:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T05:54:11 (#:amount 110663776 #:time 258))
(heartbeat 2015-06-21T05:54:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:54:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:54:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:54:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:54:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:55:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:55:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:55:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:55:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:55:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:55:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:56:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:56:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:56:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:56:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:56:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:56:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:57:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:57:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T05:57:16 (#:amount 110932648 #:time 262))
(heartbeat 2015-06-21T05:57:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:57:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:57:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:57:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:58:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:58:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:58:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:58:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:58:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:58:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:59:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:59:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:59:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:59:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:59:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T05:59:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:00:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:00:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T06:00:21 (#:amount 110845704 #:time 259))
(heartbeat 2015-06-21T06:00:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:00:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:00:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:00:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:01:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:01:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:01:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:01:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:01:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:01:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:02:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:02:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:02:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:02:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:02:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:02:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:03:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:03:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:03:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T06:03:25 (#:amount 111825848 #:time 262))
(heartbeat 2015-06-21T06:03:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:03:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:03:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:04:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:04:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:04:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:04:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:04:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:04:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:05:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:05:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:05:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:05:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:05:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:05:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:06:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:06:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:06:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:06:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:06:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T06:06:43 (#:amount 110713760 #:time 300))
(heartbeat 2015-06-21T06:06:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:07:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:07:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:07:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:07:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:07:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:07:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:08:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:08:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:08:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:08:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:08:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:08:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:09:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:09:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:09:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:09:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:09:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:09:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T06:09:55 (#:amount 111132592 #:time 304))
(heartbeat 2015-06-21T06:10:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:10:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:10:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:10:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:10:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:10:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:11:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:11:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:11:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:11:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:11:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:11:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:12:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:12:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:12:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:12:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:12:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:12:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T06:13:00 (#:amount 110727776 #:time 302))
(heartbeat 2015-06-21T06:13:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:13:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:13:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:13:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:13:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:13:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:14:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:14:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:14:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:14:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:14:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:14:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:15:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:15:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:15:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:15:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:15:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:15:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:16:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T06:16:06 (#:amount 112059136 #:time 263))
(heartbeat 2015-06-21T06:16:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:16:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:16:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:16:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:16:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:17:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:17:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:17:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:17:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:17:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:17:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:18:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:18:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:18:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:18:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:18:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:18:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:19:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T06:19:10 (#:amount 110821128 #:time 256))
(heartbeat 2015-06-21T06:19:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:19:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:19:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:19:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:19:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:20:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:20:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:20:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:20:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:20:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:20:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:21:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:21:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:21:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:21:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:21:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:21:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:22:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:22:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T06:22:15 (#:amount 111711328 #:time 256))
(heartbeat 2015-06-21T06:22:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:22:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:22:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:22:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:23:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:23:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:23:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:23:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:23:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:23:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:24:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:24:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:24:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:24:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:24:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:24:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:25:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:25:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T06:25:18 (#:amount 110740280 #:time 261))
(heartbeat 2015-06-21T06:25:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:25:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:25:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:25:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:26:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:26:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:26:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:26:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:26:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:26:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:27:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:27:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:27:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:27:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:27:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:27:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:28:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:28:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:28:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T06:28:26 (#:amount 111634544 #:time 260))
(heartbeat 2015-06-21T06:28:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:28:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:28:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:29:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:29:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:29:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:29:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:29:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:29:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:30:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:30:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:30:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:30:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:30:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:30:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:31:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:31:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:31:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:31:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T06:31:35 (#:amount 109983672 #:time 262))
(heartbeat 2015-06-21T06:31:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:31:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:32:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:32:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:32:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:32:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:32:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:32:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:33:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:33:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:33:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:33:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:33:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:33:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:34:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:34:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:34:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:34:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T06:34:42 (#:amount 111702120 #:time 260))
(heartbeat 2015-06-21T06:34:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:34:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:35:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:35:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:35:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:35:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:35:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:35:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:36:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:36:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:36:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:36:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:36:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:36:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:37:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:37:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:37:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:37:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:37:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T06:37:47 (#:amount 110788576 #:time 300))
(heartbeat 2015-06-21T06:37:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:38:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:38:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:38:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:38:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:38:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:38:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:39:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:39:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:39:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:39:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:39:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:39:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:40:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:40:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:40:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:40:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:40:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:40:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T06:40:54 (#:amount 111671160 #:time 262))
(heartbeat 2015-06-21T06:41:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:41:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:41:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:41:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:41:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:41:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:42:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:42:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:42:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:42:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:42:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:42:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:43:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:43:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:43:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:43:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:43:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:43:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T06:44:01 (#:amount 110616560 #:time 260))
(heartbeat 2015-06-21T06:44:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:44:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:44:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:44:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:44:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:44:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:45:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:45:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:45:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:45:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:45:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:45:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:46:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:46:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:46:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:46:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:46:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:46:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:47:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T06:47:07 (#:amount 111803672 #:time 258))
(heartbeat 2015-06-21T06:47:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:47:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:47:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:47:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:47:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:48:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:48:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:48:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:48:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:48:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:48:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:49:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:49:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:49:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:49:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:49:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:49:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:50:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T06:50:12 (#:amount 109809032 #:time 257))
(heartbeat 2015-06-21T06:50:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:50:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:50:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:50:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:50:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:51:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:51:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:51:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:51:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:51:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:51:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:52:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:52:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:52:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:52:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:52:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:52:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:53:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:53:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T06:53:19 (#:amount 111996496 #:time 263))
(heartbeat 2015-06-21T06:53:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:53:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:53:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:53:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:54:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:54:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:54:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:54:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:54:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:54:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:55:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:55:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:55:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:55:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:55:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:55:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:56:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:56:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:56:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:56:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:56:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:56:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T06:57:00 (#:amount 110727488 #:time 259))
(heartbeat 2015-06-21T06:57:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:57:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:57:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:57:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:57:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:57:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:58:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:58:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:58:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:58:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:58:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:58:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:59:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:59:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:59:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:59:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:59:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T06:59:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:00:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:00:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:00:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:00:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:00:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T07:00:51 (#:amount 110995624 #:time 260))
(heartbeat 2015-06-21T07:00:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:01:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:01:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:01:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:01:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:01:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:01:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:02:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:02:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:02:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:02:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:02:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:02:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:03:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:03:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:03:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:03:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:03:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:03:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:04:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:04:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:04:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:04:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T07:04:44 (#:amount 110559944 #:time 298))
(heartbeat 2015-06-21T07:04:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:04:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:05:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:05:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:05:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:05:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:05:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:05:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:06:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:06:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:06:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:06:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:06:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:06:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:07:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:07:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:07:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:07:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:07:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:07:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T07:08:00 (#:amount 110962712 #:time 265))
(heartbeat 2015-06-21T07:08:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:08:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:08:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:08:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:08:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:08:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:09:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:09:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:09:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:09:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:09:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:09:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:10:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:10:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:10:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:10:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:10:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:10:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:11:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:11:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T07:11:18 (#:amount 110816928 #:time 257))
(heartbeat 2015-06-21T07:11:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:11:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:11:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:11:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:12:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:12:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:12:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:12:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:12:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:12:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:13:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:13:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:13:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:13:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:13:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:13:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:14:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:14:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T07:14:20 (#:amount 111788136 #:time 262))
(heartbeat 2015-06-21T07:14:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:14:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:14:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:14:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:15:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:15:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:15:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:15:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:15:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:15:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:16:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:16:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:16:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:16:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:16:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:16:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:17:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:17:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:17:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:17:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T07:17:40 (#:amount 109852168 #:time 260))
(heartbeat 2015-06-21T07:17:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:17:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:18:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:18:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:18:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:18:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:18:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:18:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:19:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:19:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:19:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:19:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:19:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:19:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:20:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:20:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:20:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:20:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T07:20:44 (#:amount 112006432 #:time 267))
(heartbeat 2015-06-21T07:20:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:20:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:21:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:21:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:21:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:21:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:21:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:21:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:22:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:22:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:22:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:22:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:22:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:22:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:23:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:23:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:23:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:23:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T07:23:43 (#:amount 110706544 #:time 262))
(heartbeat 2015-06-21T07:23:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:23:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:24:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:24:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:24:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:24:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:24:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:24:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:25:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:25:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:25:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:25:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:25:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:25:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:26:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:26:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:26:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:26:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:26:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T07:26:48 (#:amount 111018216 #:time 261))
(heartbeat 2015-06-21T07:26:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:27:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:27:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:27:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:27:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:27:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:27:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:28:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:28:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:28:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:28:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:28:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:28:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:29:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:29:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:29:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:29:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:29:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T07:29:49 (#:amount 110853824 #:time 259))
(heartbeat 2015-06-21T07:29:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:30:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:30:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:30:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:30:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:30:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:30:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:31:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:31:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:31:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:31:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:31:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:31:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:32:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:32:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:32:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:32:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:32:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:32:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T07:32:57 (#:amount 111924120 #:time 262))
(heartbeat 2015-06-21T07:33:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:33:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:33:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:33:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:33:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:33:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:34:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:34:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:34:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:34:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:34:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:34:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:35:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:35:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:35:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:35:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:35:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T07:35:52 (#:amount 110907120 #:time 261))
(heartbeat 2015-06-21T07:35:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:36:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:36:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:36:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:36:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:36:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:36:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:37:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:37:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:37:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:37:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:37:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:37:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:38:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:38:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:38:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:38:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:38:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:38:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:39:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:39:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T07:39:23 (#:amount 111781680 #:time 304))
(heartbeat 2015-06-21T07:39:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:39:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:39:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:39:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:40:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:40:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:40:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:40:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:40:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:40:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:41:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:41:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:41:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:41:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:41:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:41:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:42:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:42:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:42:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T07:42:30 (#:amount 111044472 #:time 255))
(heartbeat 2015-06-21T07:42:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:42:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:42:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:43:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:43:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:43:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:43:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:43:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:43:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:44:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:44:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:44:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:44:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:44:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:44:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:45:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:45:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:45:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:45:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:45:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:45:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T07:46:03 (#:amount 110850112 #:time 304))
(heartbeat 2015-06-21T07:46:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:46:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:46:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:46:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:46:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:46:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:47:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:47:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:47:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:47:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:47:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:47:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:48:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:48:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:48:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:48:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:48:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T07:48:56 (#:amount 110414016 #:time 256))
(heartbeat 2015-06-21T07:48:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:49:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:49:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:49:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:49:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:49:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:49:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:50:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:50:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:50:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:50:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:50:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:50:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:51:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:51:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:51:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:51:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:51:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:51:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T07:52:02 (#:amount 112060568 #:time 300))
(heartbeat 2015-06-21T07:52:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:52:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:52:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:52:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:52:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:52:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:53:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:53:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:53:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:53:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:53:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:53:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:54:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:54:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:54:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:54:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:54:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:54:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T07:55:01 (#:amount 110695936 #:time 259))
(heartbeat 2015-06-21T07:55:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:55:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:55:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:55:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:55:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:55:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:56:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:56:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:56:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:56:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:56:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:56:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:57:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:57:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:57:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:57:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:57:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:57:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:58:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T07:58:08 (#:amount 111843640 #:time 305))
(heartbeat 2015-06-21T07:58:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:58:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:58:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:58:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:58:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:59:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:59:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:59:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:59:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:59:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T07:59:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:00:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:00:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:00:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:00:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:00:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:00:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:01:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:01:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:01:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T08:01:34 (#:amount 110805032 #:time 260))
(heartbeat 2015-06-21T08:01:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:01:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:01:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:02:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:02:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:02:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:02:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:02:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:02:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:03:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:03:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:03:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:03:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:03:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:03:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:04:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:04:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:04:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:04:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T08:04:39 (#:amount 111665552 #:time 263))
(heartbeat 2015-06-21T08:04:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:04:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:05:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:05:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:05:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:05:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:05:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:05:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:06:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:06:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:06:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:06:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:06:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:06:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:07:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:07:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:07:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:07:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T08:07:38 (#:amount 110758000 #:time 257))
(heartbeat 2015-06-21T08:07:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:07:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:08:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:08:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:08:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:08:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:08:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:08:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:09:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:09:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:09:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:09:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:09:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:09:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:10:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:10:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:10:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:10:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T08:10:42 (#:amount 111875952 #:time 258))
(heartbeat 2015-06-21T08:10:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:10:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:11:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:11:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:11:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:11:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:11:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:11:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:12:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:12:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:12:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:12:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:12:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:12:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:13:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:13:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:13:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:13:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:13:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T08:13:51 (#:amount 110881200 #:time 258))
(heartbeat 2015-06-21T08:13:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:14:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:14:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:14:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:14:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:14:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:14:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:15:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:15:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:15:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:15:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:15:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:15:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:16:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:16:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:16:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:16:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:16:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T08:16:56 (#:amount 111841168 #:time 261))
(heartbeat 2015-06-21T08:16:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:17:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:17:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:17:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:17:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:17:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:17:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:18:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:18:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:18:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:18:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:18:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:18:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:19:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:19:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:19:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:19:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:19:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:19:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T08:20:03 (#:amount 110773624 #:time 259))
(heartbeat 2015-06-21T08:20:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:20:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:20:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:20:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:20:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:20:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:21:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:21:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:21:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:21:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:21:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:21:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:22:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:22:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:22:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:22:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:22:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:22:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:23:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:23:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:23:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:23:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:23:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T08:23:57 (#:amount 112052744 #:time 258))
(heartbeat 2015-06-21T08:23:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:24:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:24:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:24:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:24:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:24:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:24:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:25:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:25:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:25:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:25:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:25:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:25:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:26:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:26:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:26:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:26:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:26:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T08:26:54 (#:amount 110601952 #:time 259))
(heartbeat 2015-06-21T08:26:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:27:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:27:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:27:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:27:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:27:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:27:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:28:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:28:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:28:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:28:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:28:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:28:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:29:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:29:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:29:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:29:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:29:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:29:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:30:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:30:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T08:30:25 (#:amount 112003920 #:time 304))
(heartbeat 2015-06-21T08:30:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:30:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:30:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:30:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:31:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:31:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:31:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:31:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:31:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:31:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:32:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:32:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:32:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:32:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:32:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:32:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:33:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:33:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:33:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T08:33:31 (#:amount 110801384 #:time 261))
(heartbeat 2015-06-21T08:33:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:33:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:33:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:34:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:34:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:34:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:34:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:34:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:34:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:35:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:35:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:35:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:35:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:35:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:35:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:36:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:36:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:36:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:36:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:36:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:36:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T08:36:59 (#:amount 111919632 #:time 261))
(heartbeat 2015-06-21T08:37:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:37:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:37:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:37:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:37:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:37:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:38:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:38:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:38:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:38:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:38:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:38:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:39:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:39:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:39:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:39:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:39:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:39:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T08:40:04 (#:amount 110948504 #:time 261))
(heartbeat 2015-06-21T08:40:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:40:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:40:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:40:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:40:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:40:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:41:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:41:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:41:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:41:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:41:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:41:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:42:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:42:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:42:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:42:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:42:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:42:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:43:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T08:43:09 (#:amount 111948768 #:time 264))
(heartbeat 2015-06-21T08:43:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:43:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:43:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:43:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:43:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:44:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:44:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:44:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:44:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:44:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:44:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:45:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:45:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:45:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:45:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:45:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:45:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:46:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T08:46:16 (#:amount 109914656 #:time 259))
(heartbeat 2015-06-21T08:46:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:46:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:46:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:46:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:46:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:47:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:47:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:47:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:47:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:47:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:47:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:48:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:48:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:48:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:48:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:48:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:48:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:49:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:49:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T08:49:20 (#:amount 111917824 #:time 263))
(heartbeat 2015-06-21T08:49:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:49:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:49:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:49:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:50:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:50:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:50:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:50:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:50:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:50:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:51:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:51:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:51:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:51:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:51:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:51:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:52:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:52:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T08:52:25 (#:amount 110808424 #:time 259))
(heartbeat 2015-06-21T08:52:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:52:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:52:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:52:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:53:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:53:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:53:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:53:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:53:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:53:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:54:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:54:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:54:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:54:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:54:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:54:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:55:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:55:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:55:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T08:55:31 (#:amount 111888672 #:time 269))
(heartbeat 2015-06-21T08:55:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:55:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:55:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:56:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:56:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:56:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:56:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:56:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:56:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:57:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:57:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:57:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:57:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:57:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:57:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:58:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:58:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:58:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T08:58:35 (#:amount 110657128 #:time 262))
(heartbeat 2015-06-21T08:58:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:58:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:58:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:59:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:59:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:59:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:59:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:59:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T08:59:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:00:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:00:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:00:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:00:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:00:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:00:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:01:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:01:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:01:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:01:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T09:01:45 (#:amount 112057296 #:time 261))
(heartbeat 2015-06-21T09:01:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:01:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:02:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:02:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:02:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:02:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:02:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:02:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:03:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:03:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:03:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:03:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:03:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:03:59 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:04:09 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:04:19 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:04:29 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:04:39 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T09:04:49 (#:amount 109940816 #:time 256))
(heartbeat 2015-06-21T09:04:49 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:05:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:05:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:05:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:05:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:05:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:05:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:06:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:06:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:06:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:06:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:06:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:06:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:07:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:07:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:07:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:07:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:07:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:07:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T09:07:54 (#:amount 111859832 #:time 263))
(heartbeat 2015-06-21T09:08:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:08:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:08:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:08:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:08:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:08:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:09:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:09:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:09:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:09:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:09:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:09:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:10:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:10:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:10:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:10:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:10:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:10:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T09:10:57 (#:amount 110749072 #:time 259))
(heartbeat 2015-06-21T09:11:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:11:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:11:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:11:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:11:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:11:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:12:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:12:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:12:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:12:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:12:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:12:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:13:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:13:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:13:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:13:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:13:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:13:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:14:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:14:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:14:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T09:14:25 (#:amount 111721192 #:time 301))
(heartbeat 2015-06-21T09:14:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:14:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:14:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:15:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:15:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:15:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:15:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:15:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:15:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:16:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:16:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:16:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:16:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:16:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:16:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:17:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:17:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:17:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:17:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:17:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:17:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:18:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T09:18:05 (#:amount 110979728 #:time 257))
(heartbeat 2015-06-21T09:18:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:18:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:18:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:18:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:18:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:19:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:19:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:19:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:19:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:19:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:19:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:20:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:20:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:20:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:20:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:20:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:20:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:21:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T09:21:08 (#:amount 111820456 #:time 260))
(heartbeat 2015-06-21T09:21:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:21:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:21:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:21:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:21:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:22:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:22:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:22:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:22:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:22:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:22:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:23:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:23:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:23:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:23:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:23:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:23:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:24:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T09:24:10 (#:amount 110825488 #:time 300))
(heartbeat 2015-06-21T09:24:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:24:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:24:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:24:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:24:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:25:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:25:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:25:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:25:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:25:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:25:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:26:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:26:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:26:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:26:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:26:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:26:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:27:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:27:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T09:27:16 (#:amount 112015280 #:time 261))
(heartbeat 2015-06-21T09:27:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:27:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:27:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:27:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:28:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:28:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:28:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:28:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:28:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:28:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:29:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:29:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:29:20 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:29:30 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:29:40 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:29:50 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:30:00 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:30:10 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:30:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T09:30:21 (#:amount 110634320 #:time 259))
(heartbeat 2015-06-21T09:30:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:30:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:30:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:31:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:31:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:31:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:31:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:31:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:31:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:32:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:32:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:32:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:32:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:32:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:32:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:33:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:33:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:33:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T09:33:25 (#:amount 112029768 #:time 259))
(heartbeat 2015-06-21T09:33:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:33:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:33:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:34:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:34:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:34:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:34:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:34:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:34:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:35:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:35:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:35:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:35:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:35:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:35:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:36:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:36:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:36:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:36:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T09:36:32 (#:amount 110716960 #:time 258))
(heartbeat 2015-06-21T09:36:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:36:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:37:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:37:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:37:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:37:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:37:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:37:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:38:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:38:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:38:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:38:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:38:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:38:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:39:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:39:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:39:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:39:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T09:39:32 (#:amount 111821832 #:time 262))
(heartbeat 2015-06-21T09:39:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:39:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:40:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:40:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:40:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:40:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:40:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:40:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:41:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:41:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:41:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:41:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:41:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:41:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:42:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:42:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:42:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:42:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T09:42:34 (#:amount 110877528 #:time 303))
(heartbeat 2015-06-21T09:42:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:42:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:43:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:43:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:43:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:43:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:43:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:43:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:44:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:44:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:44:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:44:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:44:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:44:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:45:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:45:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:45:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:45:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:45:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:45:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:46:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:46:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:46:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T09:46:29 (#:amount 111854016 #:time 307))
(heartbeat 2015-06-21T09:46:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:46:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:46:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:47:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:47:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:47:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:47:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:47:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:47:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:48:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:48:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:48:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:48:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:48:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:48:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:49:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:49:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:49:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:49:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:49:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:49:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:50:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:50:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T09:50:15 (#:amount 110927152 #:time 301))
(heartbeat 2015-06-21T09:50:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:50:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:50:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:50:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:51:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:51:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:51:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:51:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:51:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:51:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:52:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:52:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:52:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:52:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:52:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:52:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:53:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:53:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:53:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:53:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:53:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T09:53:42 (#:amount 111832880 #:time 261))
(heartbeat 2015-06-21T09:53:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:54:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:54:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:54:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:54:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:54:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:54:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:55:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:55:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:55:21 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:55:31 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:55:41 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:55:51 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:56:01 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:56:11 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:56:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:56:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:56:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T09:56:49 (#:amount 109837200 #:time 259))
(heartbeat 2015-06-21T09:56:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:57:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:57:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:57:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:57:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:57:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:57:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:58:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:58:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:58:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:58:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:58:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:58:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:59:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:59:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:59:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:59:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T09:59:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T09:59:49 (#:amount 111173176 #:time 302))
(heartbeat 2015-06-21T09:59:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:00:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:00:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:00:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:00:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:00:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:00:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:01:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:01:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:01:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:01:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:01:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:01:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:02:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:02:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:02:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:02:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:02:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:02:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T10:02:52 (#:amount 110633200 #:time 256))
(heartbeat 2015-06-21T10:03:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:03:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:03:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:03:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:03:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:03:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:04:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:04:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:04:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:04:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:04:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:04:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:05:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:05:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:05:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:05:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:05:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:05:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T10:06:01 (#:amount 111014264 #:time 285))
(heartbeat 2015-06-21T10:06:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:06:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:06:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:06:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:06:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:06:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:07:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:07:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:07:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:07:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:07:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:07:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:08:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:08:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:08:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:08:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:08:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:08:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:09:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T10:09:08 (#:amount 110513472 #:time 260))
(heartbeat 2015-06-21T10:09:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:09:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:09:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:09:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:09:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:10:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:10:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:10:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:10:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:10:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:10:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:11:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:11:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:11:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:11:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:11:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:11:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:12:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T10:12:05 (#:amount 111891768 #:time 262))
(heartbeat 2015-06-21T10:12:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:12:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:12:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:12:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:12:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:13:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:13:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:13:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:13:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:13:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:13:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:14:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:14:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:14:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:14:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:14:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:14:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:15:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T10:15:07 (#:amount 110661616 #:time 261))
(heartbeat 2015-06-21T10:15:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:15:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:15:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:15:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:15:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:16:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:16:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:16:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:16:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:16:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:16:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:17:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:17:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:17:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:17:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:17:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:17:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:18:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:18:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T10:18:18 (#:amount 111924632 #:time 269))
(heartbeat 2015-06-21T10:18:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:18:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:18:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:18:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:19:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:19:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:19:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:19:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:19:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:19:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:20:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:20:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:20:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:20:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:20:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:20:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:21:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:21:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:21:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:21:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:21:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T10:21:44 (#:amount 110690896 #:time 298))
(heartbeat 2015-06-21T10:21:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:22:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:22:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:22:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:22:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:22:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:22:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:23:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:23:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:23:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:23:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:23:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:23:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:24:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:24:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:24:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:24:32 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:24:42 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:24:52 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:25:02 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:25:12 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:25:22 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:25:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T10:25:36 (#:amount 111969064 #:time 306))
(heartbeat 2015-06-21T10:25:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:25:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:26:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:26:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:26:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:26:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:26:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:26:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:27:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:27:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:27:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:27:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:27:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:27:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:28:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:28:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:28:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:28:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:28:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:28:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:29:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T10:29:07 (#:amount 110636560 #:time 261))
(heartbeat 2015-06-21T10:29:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:29:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:29:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:29:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:29:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:30:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:30:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:30:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:30:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:30:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:30:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:31:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:31:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:31:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:31:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:31:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:31:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:32:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:32:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:32:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:32:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:32:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T10:32:43 (#:amount 112300952 #:time 305))
(heartbeat 2015-06-21T10:32:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:33:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:33:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:33:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:33:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:33:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:33:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:34:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:34:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:34:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:34:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:34:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:34:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:35:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:35:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:35:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:35:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:35:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:35:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:36:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:36:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:36:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T10:36:24 (#:amount 110888376 #:time 288))
(heartbeat 2015-06-21T10:36:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:36:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:36:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:37:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:37:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:37:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:37:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:37:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:37:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:38:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:38:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:38:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:38:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:38:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:38:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:39:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:39:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:39:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:39:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:39:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:39:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T10:40:02 (#:amount 111852896 #:time 304))
(heartbeat 2015-06-21T10:40:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:40:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:40:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:40:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:40:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:40:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:41:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:41:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:41:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:41:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:41:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:41:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:42:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:42:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:42:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:42:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:42:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:42:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:43:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:43:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:43:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:43:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T10:43:41 (#:amount 110555224 #:time 259))
(heartbeat 2015-06-21T10:43:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:43:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:44:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:44:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:44:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:44:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:44:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:44:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:45:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:45:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:45:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:45:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:45:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:45:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:46:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:46:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:46:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:46:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:46:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:46:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T10:46:54 (#:amount 111068112 #:time 305))
(heartbeat 2015-06-21T10:47:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:47:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:47:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:47:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:47:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:47:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:48:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:48:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:48:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:48:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:48:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:48:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:49:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:49:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:49:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:49:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:49:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:49:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:50:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T10:50:07 (#:amount 110713944 #:time 291))
(heartbeat 2015-06-21T10:50:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:50:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:50:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:50:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:50:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:51:03 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:51:13 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:51:23 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:51:33 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:51:43 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:51:53 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:52:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:52:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:52:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:52:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:52:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:52:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:53:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:53:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T10:53:19 (#:amount 111953888 #:time 302))
(heartbeat 2015-06-21T10:53:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:53:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:53:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:53:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:54:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:54:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:54:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:54:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:54:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:54:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:55:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:55:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:55:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:55:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:55:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:55:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:56:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:56:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:56:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:56:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:56:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:56:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:57:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T10:57:10 (#:amount 110818632 #:time 300))
(heartbeat 2015-06-21T10:57:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:57:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:57:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:57:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:57:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:58:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:58:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:58:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:58:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:58:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:58:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:59:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:59:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:59:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:59:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:59:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T10:59:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:00:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:00:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:00:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:00:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T11:00:44 (#:amount 111774456 #:time 261))
(heartbeat 2015-06-21T11:00:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:00:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:01:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:01:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:01:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:01:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:01:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:01:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:02:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:02:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:02:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:02:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:02:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:02:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:03:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:03:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:03:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:03:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:03:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T11:03:45 (#:amount 110791816 #:time 258))
(heartbeat 2015-06-21T11:03:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:04:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:04:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:04:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:04:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:04:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:04:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:05:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:05:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:05:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:05:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:05:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:05:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:06:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:06:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:06:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:06:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T11:06:42 (#:amount 112008480 #:time 258))
(heartbeat 2015-06-21T11:06:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:06:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:07:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:07:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:07:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:07:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:07:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:07:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:08:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:08:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:08:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:08:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:08:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:08:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:09:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:09:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:09:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:09:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T11:09:38 (#:amount 110537624 #:time 256))
(heartbeat 2015-06-21T11:09:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:09:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:10:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:10:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:10:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:10:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:10:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:10:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:11:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:11:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:11:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:11:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:11:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:11:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:12:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:12:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:12:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:12:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T11:12:40 (#:amount 111960312 #:time 262))
(heartbeat 2015-06-21T11:12:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:12:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:13:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:13:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:13:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:13:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:13:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:13:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:14:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:14:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:14:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:14:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:14:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:14:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:15:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:15:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:15:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:15:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T11:15:36 (#:amount 110731368 #:time 259))
(heartbeat 2015-06-21T11:15:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:15:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:16:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:16:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:16:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:16:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:16:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:16:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:17:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:17:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:17:24 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:17:34 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:17:44 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:17:54 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:18:04 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:18:14 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:18:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:18:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T11:18:36 (#:amount 112156344 #:time 259))
(heartbeat 2015-06-21T11:18:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:18:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:19:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:19:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:19:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:19:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:19:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:19:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:20:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:20:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:20:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:20:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:20:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:20:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:21:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:21:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:21:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:21:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T11:21:42 (#:amount 110517440 #:time 259))
(heartbeat 2015-06-21T11:21:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:21:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:22:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:22:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:22:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:22:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:22:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:22:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:23:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:23:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:23:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:23:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:23:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:23:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:24:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:24:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:24:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:24:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:24:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T11:24:50 (#:amount 111890312 #:time 303))
(heartbeat 2015-06-21T11:24:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:25:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:25:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:25:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:25:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:25:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:25:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:26:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:26:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:26:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:26:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:26:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:26:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:27:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:27:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:27:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:27:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:27:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T11:27:53 (#:amount 110815000 #:time 262))
(heartbeat 2015-06-21T11:27:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:28:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:28:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:28:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:28:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:28:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:28:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:29:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:29:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:29:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:29:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:29:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:29:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:30:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:30:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:30:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:30:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:30:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T11:30:54 (#:amount 111687608 #:time 261))
(heartbeat 2015-06-21T11:30:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:31:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:31:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:31:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:31:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:31:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:31:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:32:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:32:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:32:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:32:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:32:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:32:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:33:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:33:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:33:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:33:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:33:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:33:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T11:33:57 (#:amount 110821544 #:time 258))
(heartbeat 2015-06-21T11:34:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:34:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:34:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:34:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:34:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:34:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:35:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:35:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:35:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:35:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:35:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:35:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:36:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:36:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:36:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:36:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:36:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:36:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:37:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T11:37:10 (#:amount 111866992 #:time 301))
(heartbeat 2015-06-21T11:37:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:37:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:37:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:37:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:37:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:38:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:38:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:38:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:38:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:38:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:38:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:39:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:39:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:39:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:39:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:39:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:39:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:40:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:40:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T11:40:24 (#:amount 110719424 #:time 258))
(heartbeat 2015-06-21T11:40:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:40:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:40:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:40:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:41:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:41:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:41:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:41:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:41:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:41:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:42:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:42:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:42:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:42:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:42:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:42:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:43:05 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:43:15 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:43:25 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T11:43:31 (#:amount 111841408 #:time 260))
(heartbeat 2015-06-21T11:43:35 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:43:45 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:43:55 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:44:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:44:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:44:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:44:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:44:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:44:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:45:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:45:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:45:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:45:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:45:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:45:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:46:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:46:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:46:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T11:46:35 (#:amount 110914760 #:time 291))
(heartbeat 2015-06-21T11:46:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:46:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:46:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:47:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:47:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:47:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:47:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:47:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:47:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:48:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:48:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:48:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:48:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:48:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:48:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:49:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:49:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:49:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:49:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:49:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:49:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:50:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:50:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T11:50:23 (#:amount 111865320 #:time 306))
(heartbeat 2015-06-21T11:50:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:50:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:50:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:50:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:51:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:51:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:51:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:51:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:51:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:51:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:52:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:52:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:52:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:52:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:52:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:52:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:53:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:53:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:53:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:53:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:53:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T11:53:47 (#:amount 110742704 #:time 259))
(heartbeat 2015-06-21T11:53:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:54:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:54:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:54:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:54:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:54:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:54:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:55:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:55:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:55:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:55:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:55:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:55:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:56:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:56:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:56:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:56:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T11:56:46 (#:amount 111706688 #:time 303))
(heartbeat 2015-06-21T11:56:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:56:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:57:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:57:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:57:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:57:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:57:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:57:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:58:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:58:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:58:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:58:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:58:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:58:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:59:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:59:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:59:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:59:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T11:59:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T11:59:47 (#:amount 109893288 #:time 258))
(heartbeat 2015-06-21T11:59:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:00:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:00:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:00:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:00:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:00:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:00:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:01:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:01:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:01:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:01:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:01:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:01:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:02:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:02:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:02:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:02:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:02:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T12:02:52 (#:amount 111764104 #:time 262))
(heartbeat 2015-06-21T12:02:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:03:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:03:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:03:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:03:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:03:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:03:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:04:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:04:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:04:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:04:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:04:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:04:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:05:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:05:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:05:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:05:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:05:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T12:05:55 (#:amount 110835848 #:time 258))
(heartbeat 2015-06-21T12:05:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:06:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:06:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:06:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:06:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:06:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:06:56 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:07:06 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:07:16 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:07:26 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:07:36 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:07:46 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:07:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:08:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:08:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:08:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:08:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:08:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:08:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T12:08:58 (#:amount 111901424 #:time 263))
(heartbeat 2015-06-21T12:09:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:09:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:09:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:09:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:09:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:09:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:10:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:10:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:10:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:10:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:10:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:10:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:11:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:11:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:11:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:11:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:11:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:11:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T12:11:59 (#:amount 110549616 #:time 259))
(heartbeat 2015-06-21T12:12:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:12:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:12:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:12:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:12:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:12:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:13:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:13:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:13:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:13:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:13:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:13:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:14:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:14:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:14:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:14:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:14:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T12:14:52 (#:amount 112218776 #:time 263))
(heartbeat 2015-06-21T12:14:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:15:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:15:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:15:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:15:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:15:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:15:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:16:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:16:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:16:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:16:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:16:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:16:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:17:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:17:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:17:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:17:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T12:17:43 (#:amount 109766808 #:time 260))
(heartbeat 2015-06-21T12:17:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:17:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:18:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:18:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:18:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:18:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:18:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:18:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:19:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:19:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:19:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:19:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:19:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:19:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:20:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:20:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:20:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T12:20:37 (#:amount 111780440 #:time 261))
(heartbeat 2015-06-21T12:20:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:20:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:20:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:21:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:21:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:21:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:21:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:21:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:21:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:22:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:22:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:22:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:22:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:22:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:22:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:23:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:23:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:23:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T12:23:33 (#:amount 110596960 #:time 258))
(heartbeat 2015-06-21T12:23:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:23:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:23:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:24:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:24:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:24:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:24:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:24:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:24:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:25:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:25:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:25:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:25:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:25:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:25:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:26:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:26:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T12:26:27 (#:amount 112076808 #:time 274))
(heartbeat 2015-06-21T12:26:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:26:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:26:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:26:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:27:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:27:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:27:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:27:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:27:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:27:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:28:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:28:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:28:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:28:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:28:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:28:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:29:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:29:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T12:29:23 (#:amount 110785568 #:time 257))
(heartbeat 2015-06-21T12:29:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:29:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:29:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:29:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:30:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:30:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:30:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:30:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:30:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:30:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:31:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:31:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:31:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:31:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:31:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:31:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:32:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T12:32:17 (#:amount 111979728 #:time 259))
(heartbeat 2015-06-21T12:32:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:32:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:32:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:32:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:32:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:33:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:33:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:33:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:33:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:33:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:33:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:34:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:34:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:34:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:34:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:34:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:34:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:35:07 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T12:35:15 (#:amount 110978616 #:time 258))
(heartbeat 2015-06-21T12:35:17 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:35:27 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:35:37 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:35:47 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:35:57 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:36:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:36:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:36:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:36:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:36:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:36:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:37:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:37:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:37:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:37:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:37:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:37:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:38:08 (#:model "rvm-4" #:type ordered-brutally-unfair))
(gc-major 2015-06-21T12:38:11 (#:amount 111002728 #:time 292))
(heartbeat 2015-06-21T12:38:18 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:38:28 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:38:38 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:38:48 (#:model "rvm-4" #:type ordered-brutally-unfair))
(heartbeat 2015-06-21T12:38:58 (#:model "rvm-4" #:type ordered-brutally-unfair))
(finished 2015-06-21T12:39:03 (#:model "rvm-4" #:type ordered-brutally-unfair #:time-ms 86400001 #:attempts 107318489 #:num-counterexamples 0 #:rate-terms/s 1242.112126827406 #:attempts/cexp N/A))
| false |
d32c4b484f5b09fbf4032c54b610c6131c21a526 | 76df16d6c3760cb415f1294caee997cc4736e09b | /rosette-benchmarks-3/wallingford/applications/geothings.rkt | 86d00752d1fc18c5298564f60dccff98e5f00051 | [
"MIT"
]
| permissive | uw-unsat/leanette-popl22-artifact | 70409d9cbd8921d794d27b7992bf1d9a4087e9fe | 80fea2519e61b45a283fbf7903acdf6d5528dbe7 | refs/heads/master | 2023-04-15T21:00:49.670873 | 2021-11-16T04:37:11 | 2021-11-16T04:37:11 | 414,331,908 | 6 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 5,320 | rkt | geothings.rkt | #lang s-exp rosette
; geometric things in Wallingford/Rosette
(require "../core/wallingford.rkt")
(provide point point? point-x point-y make-point point-plus point-minus point-scale
line line? line-end1 line-end2 make-line
circle circle? circle-center circle-radius make-circle contains-point
color label circle-color
midpointline midpointline? midpointline-line midpointline-midpoint make-midpointline make-midpointline-with-stays
showthing)
; Define colors as a mapping from integers to strings, so that we can put constraints on colors.
(define colors '("red" "green" "blue" "black"))
(define (color-index? i) (<= 0 i (length colors)))
; Returns the index of the given color.
(define (color str)
(let loop ([i 0][colors colors])
(if (equal? (car colors) str)
i
(loop (+ i 1) (cdr colors)))))
; Returns the color at the given index.
(define (label i) (list-ref colors i))
;; structs for geometric objects (including colored objects)
(struct point (x y) #:transparent)
(struct line (end1 end2) #:transparent)
(struct circle (center radius color) #:transparent)
; (struct colored-circle circle (color) #:transparent)
(struct midpointline (line midpoint) #:transparent)
; functions to make symbolic objects
(define (make-point)
(define-symbolic* x y real?)
(point x y))
(define (make-line)
(line (make-point) (make-point)))
; make-circle includes default values (if this works OK, add this to other functions as well)
(define (make-circle owner [initial-value (circle (point 150 150) 50 (color "blue"))])
(define-symbolic* r real?)
(define-symbolic* c integer?)
(define circ (circle (make-point) r c))
; give it a default value
(assert (equal? circ initial-value))
(stay (circle-radius circ) #:owner owner)
(stay (circle-center circ) #:owner owner)
(stay (circle-color circ) #:owner owner)
(send owner solve)
circ)
(define (make-midpointline owner)
(define line1 (make-line))
(define midpoint (make-point))
(always (equal? midpoint (point-scale (point-plus (line-end1 line1) (line-end2 line1)) 0.5)) #:owner owner)
(midpointline line1 midpoint))
(define (make-midpointline-with-stays owner)
(define line1 (make-line))
(define midpoint (make-point))
; the midpoint constraint and stays on the endpoints of the line
; We want to put the stays on the two endpoints of the line rather than the line as a whole, so
; that we prefer solutions that leave one endpoint where it was even if we need to move the other.
; And we don't put the stays all the way down on the x and y values, to avoid the split stay problem.
(always (equal? midpoint (point-scale (point-plus (line-end1 line1) (line-end2 line1)) 0.5)) #:owner owner)
(stay (line-end1 line1) #:priority low #:owner owner)
(stay (line-end2 line1) #:priority low #:owner owner)
; we could put a stay on the midpoint but it's not actually needed
(midpointline line1 midpoint))
; show function for all geometric types (oh for objects!!)
; unfortunately though objects aren't lifted in Rosette, so for now they remain structs
(define (showthing g dc)
(cond [(point? g) (send dc draw-ellipse (point-x g) (point-y g) 5 5)]
[(line? g) (send dc draw-line (point-x (line-end1 g)) (point-y (line-end1 g))
(point-x (line-end2 g)) (point-y (line-end2 g)))]
[(circle? g) #;(send dc set-brush (send the-color-database find-color (label (circle-color g))) 'solid)
; (send dc set-pen (make-object color% "blue") 2 'solid)
; (printf "color ~a \n" (label (colored-circle-color g)))
#;(send dc set-pen (make-object color% (label (circle-color g))) 2 'solid)
(send dc draw-ellipse
(- (point-x (circle-center g)) (circle-radius g))
(- (point-y (circle-center g)) (circle-radius g))
(* 2 (circle-radius g)) (* 2 (circle-radius g)))]
; [(circle? g) (send dc draw-ellipse
; (- (point-x (circle-center g)) (circle-radius g))
; (- (point-y (circle-center g)) (circle-radius g))
; (* 2 (circle-radius g)) (* 2 (circle-radius g)))]
[(midpointline? g) (showthing (midpointline-line g) dc) (showthing (midpointline-midpoint g) dc)]
; compound graphical things are represented as lists. The first thing should be on top,
; so reverse the list to show
[(null? g) #t]
[(pair? g) (for ([thing (reverse g)]) (showthing thing dc))]
[(box? g) (showthing (unbox g) dc)]
[else (error "unknown type of thing to show" g)]))
(define (contains-point thing pt)
(cond [(circle? thing)
(let ([x (- (point-x (circle-center thing)) (point-x pt))]
[y (- (point-y (circle-center thing)) (point-y pt))]
[r (circle-radius thing)])
(<= (+ (* x x) (* y y)) (* r r)))]))
;; utility functions to operate on points
(define (point-plus p1 p2)
(point (+ (point-x p1) (point-x p2)) (+ (point-y p1) (point-y p2))))
(define (point-minus p1 p2)
(point (- (point-x p1) (point-x p2)) (- (point-y p1) (point-y p2))))
(define (point-scale p1 s)
(point (* (point-x p1) s) (* (point-y p1) s)))
| false |
2e07344c96a58523873950775d88c7102e72d12a | ef61a036fd7e4220dc71860053e6625cf1496b1f | /HTDP2e/01-fixed-size-data/intermezzo-1-bsl/ex-120-discriminate-senteces.rkt | 99fedd54d053cd3c116487456fe28fcb023afe3a | []
| no_license | lgwarda/racket-stuff | adb934d90858fa05f72d41c29cc66012e275931c | 936811af04e679d7fefddc0ef04c5336578d1c29 | refs/heads/master | 2023-01-28T15:58:04.479919 | 2020-12-09T10:36:02 | 2020-12-09T10:36:02 | 249,515,050 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 878 | rkt | ex-120-discriminate-senteces.rkt | ;; The first three lines of this file were inserted by DrRacket. They record metadata
;; about the language level of this file in a form that our tools can easily process.
#reader(lib "htdp-beginner-reader.ss" "lang")((modname ex-120-discriminate-senteces) (read-case-sensitive #t) (teachpacks ((lib "universe.rkt" "teachpack" "2htdp") (lib "image.rkt" "teachpack" "2htdp"))) (htdp-settings #(#t constructor repeating-decimal #f #t none #f ((lib "universe.rkt" "teachpack" "2htdp") (lib "image.rkt" "teachpack" "2htdp")) #f)))
; Both 1 and 2 are ilegal sentences. 1. is a single variable surrounded by parentheses,
; 2 mixed two opperands. "1" belongs to class of numbers and "not" belongs to class of boolean.
; The last one is legal expression with the syntax (primitive expr expr expr).
; Since the last misses the leading keyward "define" it belongs to the category of expr | false |
aaaee8c9c8f86ca84e82d6daa212ca0a68afd9ad | e12d461e9e5a6268d9ecfa0a208a2d78e167d527 | /binaryio-lib/unchecked/fixup-port.rkt | f6628a747d457ef1f95096124e6400be55e676a1 | [
"MIT",
"Apache-2.0"
]
| permissive | rmculpepper/binaryio | e7c23fe37be6a3abdf5abbf03efae42a1e339b2a | 34ad07e9e33cf835670c4697572e93e8a0af5f02 | refs/heads/master | 2023-02-02T20:10:54.879562 | 2023-01-25T09:48:48 | 2023-01-25T15:01:05 | 92,235,699 | 6 | 2 | null | 2023-01-25T15:01:06 | 2017-05-24T01:13:55 | Racket | UTF-8 | Racket | false | false | 3,617 | rkt | fixup-port.rkt | ;; Copyright 2019 Ryan Culpepper
;; SPDX-License-Identifier: Apache-2.0 OR MIT
#lang racket/base
(require racket/match)
(provide fixup-port?
open-fixup-port
push-fixup
pop-fixup
fixup-port-flush)
(define UFIXLEN 4) ;; bytes reserved in outbuf for unsized fixup
;; A Fixup is (fixup Nat (U #f Nat) (U Nat Bytes))
;; When it is at the top of the stack:
;; - value is length of all fixups since this one
;; After popped (unsized, |value| <= UFIXLEN)
;; - value is Nat, length of value
;; After popped (unsized, |value| > UFIXLEN)
;; - value is Bytes
;; After popped (sized, value fits exactly)
;; - nothing left to do; fixup is discarded
(struct fixup (bufpos size [value #:mutable]))
;; A fixup-port support fixups in stack discipline.
(struct fixup-port
(bufout ;; BytesOutputPort
[pending #:mutable] ;; (Listof Fixup) -- stack, newest first
[unsized #:mutable] ;; (Listof Fixup) -- newest first, only unsized fixups
)
#:property prop:output-port (struct-field-index bufout))
(define (open-fixup-port)
(fixup-port (open-output-bytes) null null))
(define (-bufpos fx)
(file-position (fixup-port-bufout fx)))
(define (push-fixup fx [size #f])
(define f (fixup (-bufpos fx) size 0))
(set-fixup-port-pending! fx (cons f (fixup-port-pending fx)))
(write-bytes (make-bytes (or size UFIXLEN) 0) fx)
(unless size
(set-fixup-port-unsized! fx (cons f (fixup-port-unsized fx)))))
(define (-patch bufout pos value len)
(define saved-position (file-position bufout))
(file-position bufout pos)
(write-bytes value bufout 0 len)
(file-position bufout saved-position))
(define (pop-fixup fx proc)
(match (fixup-port-pending fx)
['() (error 'fixup-port-pop "empty fixup stack")]
[(cons (and f (fixup f-bufpos f-size f-since)) pending)
(set-fixup-port-pending! fx pending)
(define bufpos (-bufpos fx))
(define since (+ (- bufpos f-bufpos (or f-size UFIXLEN)) f-since))
(define value (proc since))
(define value-len (bytes-length value))
(cond [f-size
(unless (= value-len f-size)
(error 'fixup-port-pop
"function returned wrong size\n expected: ~s bytes\n got: ~s bytes"
f-size value-len))
(-patch (fixup-port-bufout fx) f-bufpos value f-size)]
[(<= (bytes-length value) UFIXLEN)
(-patch (fixup-port-bufout fx) f-bufpos value value-len)
(set-fixup-value! f value-len)]
[else
(set-fixup-value! f value)])
(when (pair? pending)
(define prev (car pending))
(set-fixup-value! prev (+ (fixup-value prev) f-since
(if f-size 0 (- (bytes-length value) UFIXLEN)))))]))
(define (fixup-port-flush fx out)
(when (pair? (fixup-port-pending fx))
(error 'fixup-port-flush "fixup stack not empty"))
(define buf (get-output-bytes (fixup-port-bufout fx) #t))
(define buflen (bytes-length buf))
(define (loop pos fixups)
(cond [(null? fixups) (write-bytes buf out pos buflen)]
[else (loop-fixup pos (car fixups) (cdr fixups))]))
(define (loop-fixup pos f fixups)
(match-define (fixup f-bufpos #f f-value) f)
(cond [(bytes? f-value)
(when (< pos f-bufpos) (write-bytes buf out pos f-bufpos))
(write-bytes f-value out)]
[else ;; f-value is Nat
(write-bytes buf out pos (+ f-bufpos f-value))])
(loop (+ f-bufpos UFIXLEN) fixups))
(define fixups (reverse (fixup-port-unsized fx)))
(set-fixup-port-unsized! fx null)
(void (loop 0 fixups)))
| false |
0607d541674a5fc066aa65fb052c886cb95a8e8d | ddcff224727303b32b9d80fa4a2ebc1292eb403d | /3. Modularity, Objects, and State/3.3/3.25.rkt | c762b7a744b5d6d02dd97df78ab99e0d8fcccc4d | []
| no_license | belamenso/sicp | 348808d69af6aff95b0dc5b0f1f3984694700872 | b01ea405e8ebf77842ae6a71bb72aef64a7009ad | refs/heads/master | 2020-03-22T02:01:55.138878 | 2018-07-25T13:59:18 | 2018-07-25T13:59:18 | 139,345,220 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,792 | rkt | 3.25.rkt | #lang sicp
(define (displayln x)
(display x)
(newline))
(define (assoc key records)
(cond [(null? records) #f]
[(eq? key (caar records)) (car records)]
[else (assoc key (cdr records))]))
(define (lookup* keys table)
(let traverse ([keys (cdr keys)]
[found (assoc (car keys) (cdr table))])
(if (or (eq? #f found)
(null? keys))
found
(traverse (cdr keys) (assoc (car keys) (cdr found))))))
(define (insert*! keys value table)
(let traverse ([key (car keys)]
[keys (cdr keys)]
[found (assoc (car keys) (cdr table))]
[root table])
(displayln key)
(displayln keys)
(displayln found)
(displayln root)
(displayln "")
(cond
[(and found (null? keys)) (set-cdr! found value)] ; found variable
[found ; found subtable
(traverse (car keys)
(cdr keys)
(assoc (car keys) (cdr found))
found)]
[(null? keys) ; inserting value?
(set-cdr! root (cons (cons key value)
(cdr root)))]
[else ; inserting subtable
(set-cdr! root (cons (list key)
(cdr root)))
(traverse (car keys) (cdr keys) #f (cadr root))])))
;;
(define t
'(table
(math
(arithmetic (+ . plus) (- . minus))
(calculus (lim . limit) (int . integral) (sup . supremum)))
(numbers
(naturals (0 . zero) (1 . one) (2 . two))
(reals (pi . 3.14159)))))
#|
(lookup* '(math arithmetic) t)
(lookup* '(math arithmetic +) t)
(lookup* '(math calculus nothing +) t)
|#
;t
(insert*! '(math arithmetic +) 101 t)
(lookup* '(math arithmetic +) t)
(insert*! '(math arithmetic +) 1012 t)
(lookup* '(math arithmetic +) t)
| false |
a5fd2b9a38859151621888ff083a68339c6b4c63 | 14208b07347b67eefeb7c807a1e02301410558da | /model/viewer.rkt | f76ca6c8803f2375cc25208184c58bd9e682c072 | []
| no_license | mflatt/scope-sets | a6444696901fe3da350ddf9803655b9818a46e0f | 4d3ae9d8a0f6ff83aa597612d280406cb6d82f5b | refs/heads/master | 2021-01-21T13:41:15.662388 | 2016-05-04T01:56:21 | 2016-05-04T01:57:48 | 45,715,601 | 8 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 549 | rkt | viewer.rkt | #lang racket/base
(require racket/gui/base
racket/class
pict)
(provide view)
(define (view . picts)
(define f (new frame%
[label "Model"]))
(define (pict->screen-bitmap p)
(define (c n) (inexact->exact (ceiling n)))
(define bm (make-screen-bitmap (c (pict-width p)) (c (pict-height p))))
(define dc (send bm make-dc))
(send dc clear)
(draw-pict p dc 0 0)
bm)
(new message%
[parent f]
[label (pict->screen-bitmap (apply vc-append picts))])
(send f show #t))
| false |
064c90c3d08384cd4e52d34566e15e6ec30d8241 | 592ccef7c8ad9503717b2a6dff714ca233bc7317 | /docs-src/guide-reach.scrbl | 7ee70b6b4c21a579436189f66c3f53a490d670cc | [
"Apache-2.0"
]
| permissive | Thegaram/reach-lang | 8d68183b02bfdc4af3026139dee25c0a3e856662 | 4fdc83d9b9cfce4002fa47d58d2bcf497783f0ee | refs/heads/master | 2023-02-25T00:10:31.744099 | 2021-01-26T22:41:38 | 2021-01-26T22:41:38 | 333,350,309 | 1 | 0 | Apache-2.0 | 2021-01-27T08:17:28 | 2021-01-27T08:17:27 | null | UTF-8 | Racket | false | false | 1,587 | scrbl | guide-reach.scrbl | #lang scribble/manual
@(require "lib.rkt")
@title[#:version reach-vers #:tag "guide-reach"]{How does Reach work?}
It is not necessary to understand how Reach works to use it effectively, but many users are curious about how it works.
The Reach compiler uses the following strategy for analysis and compiling programs:
@itemize[
#:style 'ordered
@item{A partial evaluation of the source program that removes all function calls & compile-time values.}
@item{A linearization of the residual program that removes the need for a runtime stack to track any consensus state.}
@item{A conservative (sound) analysis of the knowledge of each participant.}
@item{A reduction of the program to an instance of a SMT (@link["http://en.wikipedia.org/wiki/Satisfiability_Modulo_Theories"]{satisfiability modulo theories}) theory of decentralized applications.}
@item{An end-point projection of the linearization to produce a perspective for each participant, as well as the consensus.}
@item{A single-pass top-down construction of backend and consensus programs.}
]
Reach is proud to: be implemented in @link["https://en.wikipedia.org/wiki/Haskell_(programming_language)"]{Haskell} using the @link["https://en.wikipedia.org/wiki/Glasgow_Haskell_Compiler"]{Glorious Haskell Compiler}; use the @link["https://en.wikipedia.org/wiki/Z3_Theorem_Prover"]{Z3 theorem prover} for verification; use @link["https://www.racket-lang.org/"]{Racket}'s @link["https://docs.racket-lang.org/scribble/"]{Scribble} tool for documentation; and use @link["https://www.docker.com/"]{Docker} for containerization.
| false |
1db59c669bf5aa03b986df56ddd29a77d59e5b9f | 9d8d4a20295d23d92c68c1ebad69e060dd0b1683 | /transpile.rkt | 5029739595e7fb16b69b782f5f018ecb9beb7f90 | []
| no_license | kstrafe/lisping | 213d6ff38cbe9df8b4da587ff7578a33ceb58302 | 9fd292c78439e3bb1da695869b15e93c098595bd | refs/heads/master | 2023-05-26T01:00:31.038986 | 2017-01-07T22:25:22 | 2017-01-07T22:25:22 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 6,068 | rkt | transpile.rkt | #! /usr/bin/env racket
#lang racket
[require rackunit sugar]
[require "typed.rkt"]
[distance 0.3 "dude"]
[exit]
[define (nth list n)
[if [= n 0]
[car list]
[nth [cdr list] [sub1 n]]]]
[struct Point (x y) #:prefab]
[define [find-between comparator elements]
[match elements
[(list left right _ ...)
[if [comparator left right]
[list left right]
[find-between comparator [cdr elements]]]]
[(list left right)
[if [comparator left right]
[list left right]
empty]]
[else empty]]]
[check-equal? '[6 8]
[find-between [lambda (left right) [< left 7 right]] '[1 2 3 6 8 9 10]]
"Find the numbers surrounding a test number in a sequence"]
[define (get-slope left right)
[/ [- [Point-y right] [Point-y left]] [- [Point-x right] [Point-x left]]]]
[define (map-x-to-y left right x)
[+ [Point-y left] [* [- x [Point-x left]] [get-slope left right]]]]
[define [find-between-points x-pos elements]
[find-between [lambda (left right) [<= [Point-x left] x-pos [Point-x right]]]
elements]]
[define (adjust-height x foothold-group)
[let ([points [find-between-points x foothold-group]])
[if [empty? points]
empty
[map-x-to-y [car points] [cadr points] x]]]]
[define (list-to-points list)
[map [lambda (x) [Point [car x] [cadr x]]] list]]
[define (semi-circle-foothold start-x start-y)
[for/list ([x-value [range start-x [+ start-x pi] 1/100]])
[Point x-value [+ [sin [- x-value start-x]] start-y]]]]
[define (semi-circle-map positions)
[for/list ([pos positions])
[semi-circle-foothold [car pos] [cadr pos]]]]
[define (map-empty function iterable)
[map [lambda (x) [if [empty? x] empty [function x]]] iterable]]
[define (find-y-foothold-collision x old-y new-y footholds)
[let* ([heights [map [lambda (foothold-group) [adjust-height x foothold-group]] footholds]]
[heights [map-empty [lambda (height) [if [< height old-y] height empty]] heights]]
[heights [map-empty [lambda (height) [if [< new-y height] height empty]] heights]]
[maxima [values->list
[for/fold ([max-height -inf.f]
[max-index empty])
([element heights]
[index (in-naturals)])
[if [empty? element]
[values max-height max-index]
[if [> element max-height]
[values element index]
[values max-height max-index]]]]]])
[if [empty? [cadr maxima]]
[list new-y empty]
maxima]]]
[define (resolve-y x old-y new-y foothold-index footholds)
[if [empty? foothold-index]
[find-y-foothold-collision x old-y new-y footholds]
[let* ([foothold-group [nth footholds foothold-index]]
[new-state [list [adjust-height x foothold-group] foothold-index]])
[if [empty? [car new-state]]
[resolve-y x old-y new-y '[] footholds]
new-state]]]]
[define (semi-circle start-x start-y)
[for/list ([x-value [range start-x [+ start-x 2] 1/1000]])
[list x-value [/ [+ x-value [sin [* 12.0 x-value]] start-y] 4]]]]
[define m [semi-circle-map '[[0 0] [1 0] [2 0] [0 -2]]]]
; [define footholds '[[-1 0] [-0.5 -0.3] [0 0.2] [0.5 0.3] [1 0.1]]]
[define footholds [semi-circle -1 0]]
[define point-footholds [list [list-to-points footholds]]]
;; The machinery needed to compute a new y value
;; It takes the new x position, the old y value, and the new y value
;; If it falls off a foothold, the new-y will be assumed. Else, the y value
;; is interpolated from the foothold.
;[resolve-y 0.2 1 -10.3 '[] m]
;point-footholds
;point-footholds
[require ffi/vector finalizer math/matrix opengl opengl/util racket/generic racket/gui racket/serialize]
[require [for-syntax "logger.rkt" racket/list]]
[require "classes.rkt" "util.rkt" "logger.rkt" "window.rkt"]
[define mychar '[[0 0] [0.2 0] [0.2 0.2] [0 0.2]]]
[define-for-syntax [replace-first]
[let ([found #f])
[define [replacer exp old new]
[cond
[[null? exp] '[]]
[[not [pair? exp]]
[cond
[[and [eq? exp old] [not found]]
[set! found #t] new]
[else exp]]]
[else
[cons [replacer [car exp] old new]
[replacer [cdr exp] old new]]]]]
replacer]]
[define-syntax (loop syn)
[let* ([elements [cdr [syntax->datum syn]]]
[names [for/list ([i [car elements]]) [car i]]]
[expression [cdr elements]]
[to-ret [[replace-first] expression 'game-loop [cons 'game-loop names]]]
[to-ret `[let game-loop ,[car elements] ,[cons 'begin to-ret]]])
[trce to-ret]
[datum->syntax syn to-ret]]]
[define (clamp number range)
[if [> number range]
0
number]]
[let-values ([(program window) [new-game-window]])
[trce "Initializing main state"]
[let init ([continue? #t]
[character [send window with-gl-context [lambda () [create-vertex-buffer mychar GL_TRIANGLE_FAN]]]]
[footing [send window with-gl-context [lambda () [create-vertex-buffer footholds GL_LINE_STRIP]]]]
[monsters #f]
[footholds empty])
[trce "Initialized main state finished OK"]
[let loop ([last-time [current-inexact-milliseconds]]
[an 0.0]
[x-pos 0]
[y-pos 0.5]
[y-speed 0.0]
[current-fh empty])
[logic]
[let* ([x-pos [+ x-pos [if [send window key-down? #\a] -0.01 [if [send window key-down? #\d] 0.01 0.0]]]]
[y-speed [if [send window key-down? #\w] 0.05 0.0]]
[current-fh [if [send window key-down? #\w] empty current-fh]]
[y-pos [+ y-pos y-speed]]
[collision [resolve-y x-pos y-pos [- y-pos 0.01] current-fh point-footholds]]
[y-pos [car collision]]
[current-fh [cadr collision]])
[draw]
[when continue?
[loop [current-inexact-milliseconds]
an
x-pos
y-pos
y-speed
current-fh]]]]]]
| true |
cdbf6ceea06e97371db09387723a703297da2fba | de114750d35ea8adb859a23ab432e554157e4373 | /rackunit-doc/rackunit/scribblings/quick-start.scrbl | fefa7210681851ce12ad8ed75d78f00104737b99 | [
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | racket/rackunit | d1dd569b421a751f5a72c0ba634c89a4746c3bd5 | 8c5f0b42295805d763aea2b09b7ee4eb66912c1b | refs/heads/master | 2023-08-22T14:38:50.816420 | 2023-01-11T02:01:14 | 2023-01-11T02:01:14 | 27,409,555 | 17 | 36 | NOASSERTION | 2023-02-15T20:48:25 | 2014-12-02T01:42:38 | Racket | UTF-8 | Racket | false | false | 4,201 | scrbl | quick-start.scrbl | #lang scribble/doc
@(require "base.rkt")
@title[#:tag "quick-start"]{Quick Start Guide for RackUnit}
Suppose we have code contained in @tt{file.rkt}, which
implements buggy versions of @racket[+] and @racket[*]
called @racket[my-+] and @racket[my-*]:
@racketmod[
racket/base
(define (my-+ a b)
(if (zero? a)
b
(my-+ (sub1 a) (add1 b))))
(define (my-* a b)
(if (zero? a)
b
(my-* (sub1 a) (my-+ b b))))
(provide my-+
my-*)
]
We want to test this code with RackUnit. We start by
creating a file called @tt{file-test.rkt} to contain our
tests. At the top of @tt{file-test.rkt} we import
RackUnit and @tt{file.rkt}:
@racketmod[
racket/base
(require rackunit
"file.rkt")
]
Now we add some tests to check our library:
@racketblock[
(check-equal? (my-+ 1 1) 2 "Simple addition")
(check-equal? (my-* 1 2) 2 "Simple multiplication")
]
This is all it takes to define tests in RackUnit. Now
evaluate this file and see if the library is correct.
Here's the result I get:
@verbatim{
--------------------
FAILURE
name: check-equal?
location: (file-test.rkt 7 0 117 27)
expression: (check-equal? (my-* 1 2) 2)
params: (4 2)
message: "Simple multiplication"
actual: 4
expected: 2
--------------------}
The first test passed and so prints nothing. The
second test failed, as shown by the message.
Requiring RackUnit and writing checks is all you need to
get started testing, but let's take a little bit more time
to look at some features beyond the essentials.
Let's say we want to check that a number of properties hold.
How do we do this? So far we've only seen checks of a
single expression. In RackUnit a check is always a single
expression, but we can group checks into units called test
cases. Here's a simple test case written using the
@racket[test-begin] form:
@racketblock[
(test-begin
(let ([lst (list 2 4 6 9)])
(check = (length lst) 4)
(for-each
(lambda (elt)
(check-pred even? elt))
lst)))
]
Evalute this and you should see an error message like:
@verbatim{
--------------------
A test
... has a FAILURE
name: check-pred
location: (#<path:/Users/noel/programming/schematics/rackunit/branches/v3/doc/file-test.rkt> 14 6 252 22)
expression: (check-pred even? elt)
params: (#<procedure:even?> 9)
--------------------
}
This tells us that the expression @racket[(check-pred even?
elt)] failed. The arguments of this check were
@racket[even?] and @racket[9], and as 9 is not even the
check failed. A test case fails as soon as any check within
it fails, and no further checks are evaluated once this
takes place.
Naming our test cases is useful as it helps remind us what
we're testing. We can give a test case a name with the
@racket[test-case] form:
@racketblock[
(test-case
"List has length 4 and all elements even"
(let ([lst (list 2 4 6 9)])
(check = (length lst) 4)
(for-each
(lambda (elt)
(check-pred even? elt))
lst)))
]
Now if we want to structure our tests a bit more we can
group them into a test suite:
@racketblock[
(define file-tests
(test-suite
"Tests for file.rkt"
(check-equal? (my-+ 1 1) 2 "Simple addition")
(check-equal? (my-* 1 2) 2 "Simple multiplication")
(test-case
"List has length 4 and all elements even"
(let ([lst (list 2 4 6 9)])
(check = (length lst) 4)
(for-each
(lambda (elt)
(check-pred even? elt))
lst)))))
]
Evaluate the module now and you'll see the tests no longer
run. This is because test suites delay execution of their
tests, allowing you to choose how you run your tests. You
might, for example, print the results to the screen or log
them to a file.
Let's run our tests, using RackUnit's simple textual user
interface (there are fancier interfaces available but this
will do for our example). In @tt{file-test.rkt} add the
following lines:
@racketblock[
(require rackunit/text-ui)
(run-tests file-tests)
]
Now evaluate the file and you should see similar output
again.
These are the basics of RackUnit. Refer to the
documentation below for more advanced topics, such as
defining your own checks. Have fun!
| false |
141016f6b15e851f14b9ff9df05567713c482f63 | 05acd32769e873a795433169209a6a4f9ba53c6e | /vestige-doc/vestige/vestige.scrbl | a21403e0901268c8dcf13f923d2ccd67dc9ea4ab | []
| no_license | haakonhr/vestige | 67479e394203d3c46079f7b8693c59102ba1b349 | ee7f0b35ba5e5d1a3e5ec90976c658bce24d0ba4 | refs/heads/master | 2023-03-04T23:51:34.753447 | 2021-02-16T16:17:35 | 2021-02-16T16:17:35 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 31,825 | scrbl | vestige.scrbl | #lang scribble/manual
@(require (for-label json
(except-in racket/base #%app)
racket/contract
racket/class
racket/format
racket/logging
syntax/define
syntax/name
vestige/tracing
vestige/tracing/class
vestige/logging
vestige/app
vestige/receiving)
scribble/example)
@; A way to get links to things from racket/base and racket/trace that
@; are shadowed by vestige. IIRC I learned this from typed/racket.
@(module shadowed racket/base
(require (for-label racket/base
racket/trace)
scribble/manual)
(define trace-id (racket trace))
(define untrace-id (racket untrace))
(define trace-define-id (racket trace-define))
(define trace-lambda-id (racket trace-lambda))
(define trace-let-id (racket trace-let))
(define #%app-id (racket #%app))
(provide (all-defined-out)))
@(require 'shadowed)
@(define (tech/ref . pre-content)
(apply tech #:doc '(lib "scribblings/reference/reference.scrbl") pre-content))
@(define-syntax-rule (defmapping key type pre-content ...)
(defthing #:kind "mapping" #:link-target? #f key type pre-content ...))
@;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@title{Vestige}
@margin-note{Because ``trace'' is already used so much ---
@hyperlink["https://pkgs.racket-lang.org/package/trace"]{trace},
@hyperlink["https://pkgs.racket-lang.org/package/errortrace-lib"]{errortrace},
@racketmodname[racket/trace] --- this package is named after a
synonym, ``vestige''.}
This package enhances logging generally, and, treats tracing as a
special case of logging.
@table-of-contents[]
@;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@section{Logging}
@defmodule[vestige/logging]
This module provides forms that use @tech/ref{continuation marks} to
associate extra information with the predefined
@racketkeywordfont{log-@italic{level}} forms like @racket[log-debug],
as well as the @racketkeywordfont{log-@italic{topic}-@italic{level}}
forms defined by @racket[define-logger]. (This also works with
@racket[log-message], provided its @racket[data] parameter is
@racket[current-continuation-marks], as is the case with the preceding
forms.)
A @tech/ref{log receiver} must know to look for this information.
Although the default log receiver created by Racket does not, it is
easy to create your own log receiver --- which you would do anyway if
you wanted to direct logging information to a destination like a local
or cloud logging database. See @racketmodname[vestige/receiving].
@defform[(with-more-logging-depth result-expr)]{Increases the depth
for all logging calls within the dynamic extent of
@racket[result-expr]. This allows for a grouping/indenting
presentation in a log receiver that knows how to retrieve the depth.
The default depth is zero. Each use of this form temporarily increases
the depth by one for the dynamic extent of the form.
When you use a @racketmodname[vestige/tracing] module, the depth at
any point is the depth of the traced call(s). Other, ordinary logging
is ``at that depth'' automatically. For example a @racket[log-info] in
the body of a traced function is automatically at the same depth as
the tracing of the function call. You only need use
@racket[with-more-logging-depth] if you want to increase the depth
even more.
See also @racket[cms->logging-depth].}
@defform[(with-more-logging-data result-expr)]{Eagerly captures
information like @racket[current-inexact-milliseconds] and
@racket[current-thread] in a continuation mark. Capturing such
information eagerly matters because logger events are received later
and in a different thread.
Also records @racket[srcloc] for the use site, enabling a tool to show
the source of logging within the dynamic extent of this form.
See also @racket[cms->logging-data].}
@defform[(log-expression expr)]{Emits a logger event whose message
shows the quoted form of @racket[expr] and its result.
The result of @racket[expr] is the result of the
@racket[log-expression] form.
Effectively a composition of @racket[with-more-logging-data] and a
@racket[log-message] using @racket[vestige-topic] and
@racket[vestige-level].
A @racket[log-expression] within the dynamic extent of a call to a
function defined using @racketmodname[vestige/tracing] or a
@racket[with-more-logging-depth] form is automatically at that depth.}
@;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@section{Tracing}
@subsection{Specific functions}
@defmodule[vestige/tracing]
@margin-note{See also @racket[log-expression].}
The @racketmodname[vestige/tracing] module provides distinctly named
forms. Use this when you want to instrument only some functions in a
module.
@defform[(trace-lambda [#:name name] kw-formals body ...+)]{
Like @|trace-lambda-id|.}
@defform[(trace-case-lambda [formals body ...+] ...+)]{
Like @racket[case-lambda] but expands to multiple
@racket[trace-lambda] forms, one for each clause, and each having
distinct source locations.}
@defform*[((trace-define id expr)
(trace-define (head args) body ...+))]{
Like @|trace-define-id|.
The ``curried'' syntax --- e.g. @racket[(define ((f x) y) ____)] ---
expands to nested @racket[trace-lambda]s, each of which has distinct
source locations.}
@defform*[((trace-let proc-id ([id init-expr] ...) body ...+)
(trace-let ([id init-expr] ...) body ...+))]{
The first form is like @|trace-let-id| --- it instruments the function
implicitly defined and called by a ``named let''. The initial and
subsequnt calls have distinct source locations.
The second form defers to plain @racket[let].}
@subsection{All functions defined in a module}
@defmodule[vestige/tracing/implicit]
Provides the same forms as does @racketmodname[vestige/tracing], but
renamed without the @racketfont{trace-} prefix. For example
@racket[trace-define] is provided as @racketfont{define}. As a result,
requiring this module shadows those definitions from the
@racketmodname[racket/base] language.
Also provides @racketmodname[vestige/app].
In other words, @racket[(require vestige/tracing/implicit)] is a
convenient way to trace everything in a module without otherwise
needing to litter its source with individual changes.
@subsection{Caller sites}
@defmodule[vestige/app]
Requiring @racket[(require vestige/app)] in a module records the
locations of @emph{calls from} that module. Then, when a module uses
@racketmodname[vestige/tracing] to trace @emph{calls to} a defined
function, tracing can check whether the direct caller was instrumented
and if so report its location.
@defform[(#%app proc-expr expr ...)]{
Adds a continuation mark with @racket[proc-expr] and the source
location of the entire application expression, then invokes the
@|#%app-id| of @racketmodname[racket/base].
Using this is optional. Although it enhances tracing by enabling
caller sites to be reported, it imposes some runtime overhead.}
@subsection{Specific @racketmodname[racket/class] method definitions}
@defmodule[vestige/tracing/class]
Provides the exports of @racketmodname[racket/class] plus tracing
variants of the method definitions forms:
@deftogether[(
@defform*[((trace-define/private id expr)
(trace-define/private (head args) body ...+))]
@defform*[((trace-define/public id expr)
(trace-define/public (head args) body ...+))]
@defform*[((trace-define/pubment id expr)
(trace-define/pubment (head args) body ...+))]
@defform*[((trace-define/override id expr)
(trace-define/override (head args) body ...+))]
@defform*[((trace-define/overment id expr)
(trace-define/overment (head args) body ...+))]
@defform*[((trace-define/augride id expr)
(trace-define/augride (head args) body ...+))]
@defform*[((trace-define/augment id expr)
(trace-define/augment (head args) body ...+))]
@defform*[((trace-define/public-final id expr)
(trace-define/public-final (head args) body ...+))]
@defform*[((trace-define/override-final id expr)
(trace-define/override-final (head args) body ...+))]
@defform*[((trace-define/augment-final id expr)
(trace-define/augment-final (head args) body ...+))] )]{}
@subsection{All @racketmodname[racket/class] methods defined in a module}
@defmodule[vestige/tracing/class/implicit]
Provides the exports of @racketmodname[racket/class], except for the
method definition forms like @racket[define/private], for which it
substitutes the same forms as does
@racketmodname[vestige/tracing/class] but renamed without the
@racketfont{trace-} prefix. For example @racket[trace-define/private]
is provided as @racketfont{define/private}.
@;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@section{Receiving}
@defmodule[vestige/receiving]
@subsection{Logger topic and level}
@deftogether[(
@defthing[vestige-topic symbol?]
@defthing[vestige-level log-level/c]
)]{
The topic and level used for logger events emitted by
@racketmodname[vestige/tracing],
@racketmodname[vestige/tracing/class], and @racket[log-expression].
To receive those events you will need to supply these topic and level
values when making a log receiver. See @secref["receiver-example"].}
@subsubsection{High level}
@defproc[(log-receiver-vector->hasheq [v (vector/c log-level/c
string?
(or/c continuation-mark-set? any/c)
(or/c symbol? #f))])
(and/c hash? hash-eq? immutable?)]{
Extracts information from a @tech/ref{log receiver} event vector.
When the vector's @racket[_data] member is a continuation mark set,
retrieves mark values set by various tracing and logging
instrumentation.
When @racket[cms->tracing-data] produces a hasheq with a
@racket['message] mapping, substitutes that value for the original
message from the event vector (which is formatted for plain old log
receivers).
Effectively this is a convenience function you could write yourself:
@racketblock[
(define (log-receiver-vector->hasheq v)
(match v
[(vector level message (? continuation-mark-set? cms) topic)
(define tracing (cms->tracing-data cms))
(hasheq 'message (or (and tracing (hash-ref tracing 'message #f))
message)
'topic topic
'level level
'depth (cms->logging-depth cms)
'context (cms->context-srcloc cms)
'data (cms->logging-data cms)
'tracing tracing)]
[(vector level message _unknown-data topic)
(hasheq 'message message
'topic topic
'level level
'depth 0)]))
]
Although most values in the main and child hash-tables are primitives
like strings and numbers, some may be ``live'' values such as thread
descriptors. This is intentional, so that your log receiver can use
them to obtain additional information if desired. On the other hand it
means you will need to apply @racket[serializable-hasheq] to this
hash-table before giving it to a function such as
@racket[jsexpr->string].}
@defproc[(add-presentation-sites [ht (and/c hash? hash-eq? immutable?)])
(and/c hash? hash-eq? immutable?)]{
Given a hash-table produced by @racket[log-receiver-vector->hasheq],
returns one with @racket['primary-site] and @racket['secondary-site]
mappings. These can be used by an interactive tool to show the primary
and secondary sites, if any, associated with the logging event.
Although the original hash-table has all the necessary information,
the logic to translate that into a simple ``presentation action'' ---
what to show, where, and how --- is not necessarily immediate obvious.
This function is provided as a convenient, reasonable way to handle
this.
@nested[#:style 'inset
@deftogether[(
@defmapping['primary-site (or/c #f _presentation)]
@defmapping['secondary-site (or/c #f _presentation)]
)]{
When the logging event originated from a
@racketmodname[vestige/tracing] form: The primary site is a span
within the formals or header of the traced, called function. The
secondary site is the location of the caller (if available, else
@racket[#f]).
When the logging event originated in the dynamic extent of
@racket[with-more-logging-data]: The primary site is the location of
the @racket[with-more-logging-data] form. The secondary site is
@racket[#f].
Otherwise, both values will be @racket[#f].}
@defthing[#:kind " " #:link-target? #f _presentation
(list* (or/c 'highlight 'replace 'after)
(and/c string? path-string?)
exact-nonnegative-integer?
exact-nonnegative-integer?
(or/c (list)
(list string?)))]{
For either site, the @racket[presentation] value is one of:
@itemlist[
@item{@racket[(list 'highlight _path _from _upto)]:
Highlight the span [@racket[_from] @racket[_upto]) in
@racket[_path].
Used e.g. to show application with actual arguments at caller
sites, or called functions with no formal parameters (thunks).}
@item{@racket[(list 'replace _path _from _upto _str)]:
Replace the span [@racket[_from] @racket[_upto]) in @racket[_path]
with @racket[_str] and highlight that.
Used e.g. for called functions, to replace their formal parameters
with actual arguments.}
@item{@racket[(list 'after _path _from _upto _str)]:
Insert @racket[_str] at @racket[_upto] in @racket[_path] --- that
is, insert after the span [@racket[_from] @racket[_upto]), leaving
that intact. Highlight the inserted @racket[_str]. If you wish,
also highlight the span [@racket[_from] @racket[_upto]).
Used e.g. for function result values.}]
In summary, when the user moves to a logging message in one buffer,
you can make visible in one or more other buffers the primary and
secondary sites, if any, using the suggested presentation action for
each site.}]
}
@subsubsection{Low level}
Various forms from @racketmodname[vestige/logging] and
@racketmodname[vestige/tracing] add continuation marks. These
functions retrieve the mark values.
When values are hash-tables, keep in mind that it is possible that
additional mappings may be defined in the future; indeed this is one
reason for the choice of a @racket[hasheq] instead of a
@racket[struct]. For future compatibility, look for mappings you know
about and ignore others. For example use @racket[hash-ref] or use the
@racketmodname[racket/match] @racket[hash-table] match pattern.
@defthing[srcloc-as-list/c contract?
#:value
(list/c (or/c #f (and/c string? path-string?))
(or/c #f exact-positive-integer?)
(or/c #f exact-nonnegative-integer?)
(or/c #f exact-positive-integer?)
(or/c #f exact-nonnegative-integer?))]{
For ease of serialization, values that represent a @racket[srcloc]
structure are instead represented as a list, where the first,
``source'' value is either a @racket[path] converted with
@racket[path->string], or @racket[#f].}
@defproc[(cms->logging-depth [cms continuation-mark-set?])
(or/c #f exact-nonnegative-number?)]{
Returns the depth as set by @racket[with-more-logging-depth] and/or
the tracing forms.}
@defproc[(cms->context-srcloc [cms continuation-mark-set?])
(or/c #f srcloc-as-list/c)]{
Returns the first non-false srcloc value, if any, from
@racket[continuation-mark-set->context] whose source is
@racket[complete-path?] and is not within the source of the vestige
library itself.}
@defproc[(cms->logging-data [cms continuation-mark-set?])
(or/c #f (and/c hash? hash-eq? immutable?))]{
When a logger event is emitted in the dynamic extent of
@racket[with-more-logging-data] a mark can be retrieved by this
function. The value is a @racket[hasheq] with at least the following
mappings:
@nested[#:style 'inset
@defmapping['srcloc (or/c #f srcloc-as-list/c)]{The source location
of the @racket[with-more-logging-data] form.
Note: Internal uses of @racket[with-more-logging-data] by
@racketmodname[vestige/tracing] forms set this value false, because
the internal location is not relevant --- instead
@racket[cms->tracing-data] supplies the interesting srclocs.
See also the high level @racket[add-presentation-sites].}
@defmapping['msec real?]{The @racket[(current-inexact-milliseconds)]
value at the time of logging.}
@defmapping['thread thread?]{The @racket[(current-thread)] value at
the time of logging.
The @racket['thread] mapping values can be especially useful when
you keep in mind that the @racket[object-name] of a Racket
@tech/ref{thread descriptor} defaults to the name of its thunk
procedure. You can even use @racket[procedure-rename] to give each
thread thunk a unique name related to a ``job'' or ``request'', as
discussed in
@hyperlink["https://www.greghendershott.com/2018/11/thread-names.html"]{this
blog post}.}
@defmapping['performance-stats (vector/c vector? vector?)]{Vectors
from @racket[vector-set-performance-stats!] for global stats and for
@racket[current-thread]. For efficiency these are the ``raw''
vectors. If you want a hash-table representation you can give these
to @racket[performance-vectors->hasheq]. If you process the vectors
yourself, be aware that the length of the vectors may increase in
later versions of Racket.}]}
@defproc[(performance-vectors->hasheq [global vector?][thread vector?])
(or/c #f (and/c hash? hash-eq? immutable?))]{
Given global and per-thread vectors from
@racket[vector-set-performance-stats!] or from
@racket[cms->logging-data], return a hasheq representation.}
@defproc[(cms->tracing-data [cms continuation-mark-set?])
(or/c #f (and/c hash? hash-eq? immutable?))]{
When a logger event was emitted by @racketmodname[vestige/tracing], a
mark can be retrieved by this function. The value is a @racket[hasheq]
with at least the following mappings:
@nested[#:style 'inset
@defmapping['call boolean?]{True when the event represents the
evaluation of a function call.
False when the event represents a function returning results.}
@defmapping['tail boolean?]{True when @racket['call] is true and
this is a tail call.
Note that function return results are not logged for tail calls.}
@defmapping['name symbol?]{The name of the function.}
@defmapping['message string?]{When @racket['call] is true, the
function name with the arguments in parentheses.
When @racket['call] is false, the value(s) resulting from calling
the function.
Similar to the logger event vector's ``message'' slot string, but
@italic{not} prefixed by any @litchar{>} or @litchar{<} characters
to show depth and call vs. return. Intended for a tool that will
present this another way, such as using indentation for depth and
other labels for call vs. return.}
@deftogether[(
@defmapping['args-from (or/c #f exact-nonnegative-integer?)]
@defmapping['args-upto (or/c #f exact-nonnegative-integer?)]
)]{
When @racket['call] is true, @racket[(substring message args-from
args-upto)] is the string with the actual arguments to show
@italic{in situ} at the @racket['formals] srcloc. Intended for a
tool that correlates tracing with source. Note that these two values
may be equal (indicating an empty string) when a function has no
formal parameters (a ``thunk'').}
@defmapping['called (and/c hash? hash-eq? immutable?)]{
Several source locations are available for the called/traced
function. Because they all share the same source file path string,
and furthermore path strings take the most space, these are
respresented as a hash-table stating the source file once, and each
of the locations as the @racket[cdr] of the
@racket[srcloc-as-list/c] (i.e. slicing off the first, file
element):
@nested[#:style 'inset
@defmapping['file (and/c string? path-string?)]{The source file.}
@defmapping['formals (cdr srcloc-as-list/c)]{The location of the
formal parameters. To show a function call, when @racket['call] is
true, this is usually a good span to @italic{replace} with the
actual arguments.
However note that this can be an empty span, when a function has
no formal parameters (a ``thunk''); in that case it is better
simply to highlight the text at the @racket['header] location
to indicate the call.}
@defmapping['header (cdr srcloc-as-list/c)]{The location of the
function header. What this means varies among the forms, but
consists of at least the formals including parentheses, as well as
the name if the form specifies one.}
@defmapping['definition (cdr srcloc-as-list/c)]{The location of
the entire function definition form. To show a function call
result, when @racket['call] is false, a good location is probably
just after the end of this span.}
]}
@defmapping['caller (or/c #f (and/c hash? hash-eq? immutable?))]{
When a traced function is called in the dynamic extent of a use of
@racketmodname[vestige/app] returns a hash-table with at least the
following mappings.
@nested[#:style 'inset
@defmapping['immediate boolean?]{Did the call site directly call
the traced function (in which case it could make sense to show the
traced function result also at the call site) or not.}
@defmapping['srcloc srcloc-as-list/c]{The caller site location.}]}]
See also the high level @racket[add-presentation-sites].}
@subsubsection{Serializing}
@defproc[(serializable-hasheq [h hash-eq?]) (and/c jsexpr? hash-eq? immutable?)]{
Given a hash-table --- such as one from
@racket[log-receiver-vector->hasheq], @racket[cms->logging-data], or
@racket[cms->tracing-data] --- returns one coerced to satisfy
@racket[jsexpr?].
For example, symbols are converted to strings, and thread descriptors
are converted to strings using @racket[object-name].
The function is applied recursively (to values that are also
hash-tables, as well as to elements of lists and vectors).
A hash-table satisfying @racket[jsexpr?] is obviously necessary to use
@racket[jsexpr->string], and generally is more likely ready to
serialize/marshal using most other formats.}
@;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@section{Examples}
@(define-syntax-rule (ex pre-content ...)
(examples #:no-prompt
#:label #f
#:preserve-source-locations
pre-content ...))
@subsection{Example: Tracing}
Here is a small example program:
@examples[#:no-result
(require vestige/app
vestige/tracing
vestige/logging)
(define-logger example)
(log-example-info "I am outside, my depth is 0")
(trace-define (f x)
(log-example-info "I am automatically at the depth of `f`: 1.")
(with-more-logging-depth
(log-example-info "I am one deeper: 2."))
(+ 1 x))
(trace-define (g x)
(+ 1 (f x)))
(g 42)
(log-expression (* 2 3))
]
Here is the resulting structured logging data, as produced by
@racket[log-receiver-vector->hasheq] (but with some mappings removed
to make the output less overwhelming):
@(require racket/logging
racket/pretty
vestige/receiving
vestige/app
vestige/tracing
vestige/logging)
@(verbatim
(let ([out (open-output-string)])
(with-intercepted-logging
(λ (v)
(newline out)
(pretty-print (for/fold ([ht (log-receiver-vector->hasheq v)])
([k (in-list '(info context))])
(hash-remove ht k))
out
1))
(λ ()
(define-logger example)
(log-example-info "I am outside, my depth is 0")
(trace-define (f x)
(log-example-info "I am automatically under the depth of `f`: 2.")
(with-more-logging-depth
(log-example-info "I am one deeper: 3."))
(+ 1 x))
(trace-define (g x)
(+ 1 (f x)))
(g 42)
(log-expression (* 2 3)))
vestige-level vestige-topic
'info 'example
'fatal #f)
(get-output-string out)))
The @racket[trace-define] forms cause logger events for function calls
and results, with extra information under the @racket['tracing] key.
Also note the depths of the @racket[log-example-info] forms:
The first @racket[log-example-info] is not within any traced function
call or @racket[with-more-logging-depth] form, so its depth is the
default, 0.
The second @racket[log-example-info] is inside the call to @racket[f]
at depth 1, so automatically its depth is 1.
The third @racket[log-example-info] is within a
@racket[with-more-logging-depth] form; as a result, its depth is one
greater: 2. The use case here is for more detailed logging that a
receiver could show indented, folded, or hidden, depending on its user
interface options.
@subsection[#:tag "receiver-example"]{Example: Making a log receiver thread}
Although @racketmodname[racket/trace] prints output,
@racketmodname[vestige/tracing] does not --- instead it emits logger
events.
The previous example showed logger data because, here in the
documentation environment, we arranged a simple @tech/ref{log
receiver} thread somewhat like this:
@racketblock[
(require vestige/receiving)
(define receiver
(make-log-receiver (current-logger)
(code:comment "A sequence of levels and topics...")
(code:comment "vestige")
vestige-level vestige-topic
(code:comment "(define-logger example) / log-example-info")
'info 'example
(code:comment "only fatal for all other topics")
'fatal #f))
(define (get-event)
(pretty-print (log-receiver-vector->hasheq (sync receiver)))
(get-event))
(thread get-event)
]
We ask @racket[make-log-receiver] to accept events from vestige's
level and topic, as well as from the @racket['info] level of the
@racket['example] topic (since our example used @racket[(define-logger
example)] and @racket[log-example-info]). Finally, we only want to see
@racket['fatal] level events for all other topics (which effectively
means we'll see almost nothing for them).
@subsection{Using @racket[with-intercepted-logging] and JSON}
Another way to make a log receceiver is to use the
@racketmodname[racket/logging] convenience function
@racket[with-intercepted-logging], and supplying it level and topic
values from @racketmodname[vestige/receiving]. The following example
shows that.
Furthermore it shows using @racket[serializable-hasheq] and
@racket[jsexpr->string] to convert the hash-table to its JSON string
representation.
@examples[#:no-prompt #:preserve-source-locations
(code:comment "The code being instrumented")
(module ex racket/base
(require vestige/tracing)
(define (example)
(trace-define (f x) (+ 1 x))
(trace-define (g x) (+ 1 (f x)))
(g 42))
(provide example))
(code:comment "Running the code and capturing logging")
(require 'ex
json
racket/logging
vestige/receiving)
(with-intercepted-logging (compose displayln
jsexpr->string
serializable-hasheq
log-receiver-vector->hasheq)
example
vestige-level vestige-topic)
]
Instead of @racket[displayln], this code could give the JSON string to
a function that sends it to AWS CloudWatch Logs or a similar
structured logging service.
@;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@section{Discussion}
@subsection{Comparison with @racketmodname[racket/trace]}
The @racketmodname[vestige/tracing] module mimics some of the forms of
@racketmodname[racket/trace] such as @racket[trace-define], and adds a
@racket[trace-case-lambda].
Furthermore the @racketmodname[vestige/tracing/class] module adds
tracing flavors of @racketmodname[racket/class] method definitions.
More information is captured, and, its disposition is different:
@itemlist[
@item{Instrumentation happens upon definition; there is no mutating
@|trace-id| or @|untrace-id|.}
@item{Information is emitted as @tech/ref{logger} events.}
@item{Call depth is tracked through a continuation mark also used by
@racket[with-more-logging-depth].}
@item{As well as the arguments, results, and call depth reported by
@racketmodname[racket/trace], more information is captured:
@itemlist[
@item{Timing and thread information is captured eagerly using
@racket[with-more-logging-data].}
@item{@racket[srcloc] for various interesting things, when
available:
@itemlist[
@item{The @emph{definition} of the function being called.}
@item{The @emph{header} and @emph{formals} spans within the
definition. Tools can use this to present logs in a UI resembling
a step debugger.}
@item{Other srcloc information captured by
@racketmodname[vestige/logging] like the context.}]}]}]
@subsection{Two main use cases: ``debugging'' and ``devops''}
Structured tracing logs can be used in two main ways:
@itemlist[
@item{As a debugging technique, this approach is sometimes the ``warm
bowl of porridge'' between simple @racket[print]s and a full
step-debugger.
@itemlist[
@item{Manual @racket[print]s or @racket[log-debug]s tend to litter
code, aren't so ``simple'' by the time you format various values and
information, and the resulting output messages aren't always easy to
correlate with their producing source.}
@item{At the other extreme, full step-debugging can be ``heavy'', as
a result of a special evaluator needing to rewrite your program into
a ``step-debuggable'' program.}
@item{The (possibly) warm porridge: You can @racket[(require
vestige/tracing/implicit)] to instrument all functions defined in a
module -- but not otherwise changing the source.
Or if that is too ``heavy'', you can @racket[(require
vestige/tracing)] and instrument select items by replacing e.g.
``define'' with ``trace-define'' --- but not otherwise changing the
source.
As a rough analogy, this is like using Racket
@racketmodname[racket/contract] or @racketmodname[syntax/parse]:
Although you do change the source, the change is minimal and feels
more @italic{*waves hands*} ``declarative''.
Then, for example, a tool such as
@hyperlink["https://racket-mode.com"]{Racket Mode} can use the
structured logs to provide a better experience --- such as
navigating the ``tree'' of calls, jumping to a call site or function
definition site, filtering items by thread, and so on. It can even
show function call arguments @italic{in situ}, starting to resemble
@italic{*waves hands*} a low-granularity ``time travel debugger''.}]}
@item{As a devops technique, logging certain function calls is often
something you want to do for a long-running server. But again, this
is a cross-cutting concern; it can be tedious and distracting to
litter code with such logging.
You can minimize that with this package, as described in the previous
bullet point. Furthermore, your program can use a @tech/ref{log
receiver} to forward the information to logging systems that support
a richer format than plain text, for example the JSON option of
Amazon CloudWatch Logs.}]
| true |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.